* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, -apple-system, Segoe UI, sans-serif;
  color: #1e293b;
  background:
    radial-gradient(1000px 600px at 10% -20%, rgba(56, 189, 248, 0.24), transparent 60%),
    radial-gradient(900px 500px at 95% -10%, rgba(34, 197, 94, 0.2), transparent 62%),
    #f8fafc;
  line-height: 1.7;
}

.frw-headerShell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0.75rem 1rem;
  pointer-events: none;
}

.frw-headerControls {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.frw-headerShell .l-logo {
  width: auto;
  height: 60px;
  margin: 0;
}

.frw-headerShell .l-logo a {
  display: inline-block;
  width: auto;
  height: 100%;
  padding: 0;
}

.frw-headerShell .l-utility.frw-headerUtility {
  width: auto;
  margin-left: auto;
}

.frw-navBtnWrap.nav-btn-mobile-menu {
  position: static;
  display: block;
  width: auto;
  height: auto;
}

.frw-logoLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.frw-logoLink img {
  display: block;
  width: auto;
  height: 60px;
}

.frw-menuBtn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #475569;
  cursor: pointer;
}

.frw-menuBtn span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.frw-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  border: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.frw-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.frw-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  width: min(480px, 85vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  box-shadow: -16px 0 40px rgba(16, 24, 40, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

@media (max-width: 480px) {
  .frw-drawer {
    width: 100vw;
  }
}

.frw-drawer.is-open {
  transform: translateX(0);
}

.frw-drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eceff3;
}

.frw-drawerTitle {
  margin: 0;
  color: #1f2937;
  font-size: 1.6rem;
  font-weight: 700;
}

.frw-closeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d6dbe1;
  border-radius: 8px;
  background: #fff;
  color: #666;
  font-size: 1.8rem;
  cursor: pointer;
}

.frw-drawerNav {
  display: block;
  padding: 0.75rem;
  margin-bottom: 0;
}

.frw-drawerNav ul + .frw-drawerDivider,
.frw-drawerNav .frw-drawerDivider + ul {
  margin-top: 0.4rem;
}

.frw-drawerDivider {
  height: 1px;
  margin: 0.4rem 0.75rem;
  background: #e5e7eb;
}

.frw-langBlock {
  padding: 0.55rem 0.75rem 0.85rem;
}

.frw-langForm {
  margin: 0;
}

.frw-langSelect {
  width: 100%;
  min-height: 36px;
  padding: 0.35rem 2.1rem 0.35rem 0.7rem;
  border: 1px solid #d6dbe1;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 1.4rem;
  font-weight: 600;
}

.frw-langSelect:focus {
  outline: 2px solid #99f6e4;
  outline-offset: 1px;
  border-color: #0f766e;
}

.frw-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.frw-authMeta {
  padding: 0.1rem 0.9rem 0.55rem;
  color: #6b7280;
  font-size: 1.3rem;
}

.frw-authRow {
  display: flex;
  gap: 0.5rem;
  padding: 0.1rem 0.75rem 0.9rem;
}

.frw-authRow > * {
  flex: 1;
}

.frw-authForm {
  display: flex;
  margin: 0;
}

.frw-authBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.7rem;
  border: 1px solid #d6dbe1;
  border-radius: 10px;
  color: #1f2937;
  text-decoration: none;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.frw-authBtn:hover {
  background: #f3f4f6;
  color: #111827;
}

.frw-authForm .frw-authBtn {
  width: 100%;
}

.frw-snsRow {
  display: flex;
  gap: 0.5rem;
  padding: 0.2rem 0.75rem 0.6rem;
}

.frw-snsBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d6dbe1;
  border-radius: 10px;
  color: #374151;
  background: #ffffff;
  text-decoration: none;
}

.frw-snsBtn:hover {
  background: #f3f4f6;
  color: #111827;
}

.frw-snsBtn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frw-snsBtn[aria-label='Facebook'] svg,
.frw-snsBtn[aria-label='X'] svg {
  fill: currentColor;
  stroke: none;
}

.frw-main {
  flex: 1;
  width: 100%;
  padding: 5.6rem 1rem 2.2rem;
}

h1 {
  margin-top: 0;
  line-height: 1.3;
}

a {
  color: #0f766e;
}

ul {
  padding-left: 1.2rem;
}

.frw-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

.frw-discoveryHero {
  margin-bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(14, 165, 233, 0.14), rgba(34, 197, 94, 0.1));
}

.frw-discoveryHeroSection .in-container,
.frw-discoveryFeedSection .in-container {
  width: 100%;
  max-width: 1080px;
}

.frw-discoveryTitle {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.frw-discoveryLead {
  margin: 0.45rem 0 0;
  color: #334155;
}

.frw-discoveryFeed {
  gap: 1rem;
}

.frw-discoveryFeed > .unit-ut > .in-unit {
  padding: 0;
}

.frw-discoveryEmptyUnit {
  grid-column: 1 / -1;
}

.frw-discoveryCard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.frw-discoveryImageLink {
  display: block;
  width: 100%;
}

.frw-discoveryPicFit {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.frw-discoveryPicFit > img.frw-discoveryImage {
  border-radius: 0;
  max-width: none;
  aspect-ratio: auto;
  object-fit: initial;
}

.frw-discoveryImagePlaceholder {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: linear-gradient(120deg, #e2e8f0, #cbd5e1);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.frw-discoveryBody {
  min-width: 0;
}

.frw-discoveryMetaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.frw-discoveryDate {
  color: #64748b;
  font-size: 1.3rem;
}

.frw-discoveryChip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  padding: 0.14rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.frw-discoveryChipStock {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.frw-discoverySummary {
  margin: 0 0 0.55rem;
  color: #334155;
  line-height: 1.7;
  word-break: break-word;
}

.frw-discoveryTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
}

.frw-discoveryTag {
  font-size: 1.2rem;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
}

.frw-discoveryFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.frw-discoveryProject {
  color: #475569;
  font-size: 1.3rem;
}

.frw-discoveryDetailLink {
  color: #0f766e;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
}

.frw-discoveryDetailLink:hover {
  text-decoration: underline;
}

.frw-discoveryEmpty {
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 1rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.75);
}

.frw-discoveryDetailGallery {
  display: grid;
  gap: 0.8rem;
}

.frw-discoveryDetailImageWrap {
  margin: 0;
}

.frw-discoveryDetailImage {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 760px) {
  .frw-discoveryImage,
  .frw-discoveryImagePlaceholder {
    aspect-ratio: 16 / 10;
  }
}

.frw-experienceDetailWrap .in-container {
  max-width: 1080px;
}

.frw-experienceDetailSticky {
  position: sticky;
  top: 4.8rem;
  z-index: 10;
  padding: 1rem;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  margin-bottom: 1rem;
}

.frw-experienceStatus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.frw-experienceTypeChip,
.frw-experienceStateChip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.frw-experienceTypeChip {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}

.frw-experienceStateChip {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.frw-experienceTitle {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.frw-experienceQuickFacts {
  margin: 0.8rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
}

.frw-experienceQuickFacts > div,
.frw-experienceMeta > div {
  margin: 0;
}

.frw-experienceQuickFacts dt,
.frw-experienceMeta dt {
  margin: 0;
  color: #475569;
  font-size: 1.2rem;
  font-weight: 700;
}

.frw-experienceQuickFacts dd,
.frw-experienceMeta dd {
  margin: 0.1rem 0 0;
  color: #0f172a;
}

.frw-experienceActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.frw-experiencePrimaryCta,
.frw-experienceSecondaryCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.frw-experiencePrimaryCta {
  background: #0f766e;
  color: #fff;
}

.frw-experiencePrimaryCta:hover {
  background: #0b5f58;
  color: #fff;
}

.frw-experienceSecondaryCta {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
}

.frw-experienceSecondaryCta:hover {
  background: #f8fafc;
}

.frw-experienceDetailCard {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.frw-experienceDescription {
  margin-top: 0;
  color: #334155;
}

.frw-experienceMeta {
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.frw-experienceSectionTitle {
  margin: 1rem 0 0.45rem;
}

.frw-experienceTicketList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.frw-experienceTicketList li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.frw-experienceTicketName {
  font-weight: 600;
}

.frw-experienceTicketPrice {
  color: #0f766e;
  font-weight: 700;
}

@media (max-width: 760px) {
  .frw-experienceDetailSticky {
    position: static;
    top: auto;
  }

  .frw-experienceQuickFacts {
    grid-template-columns: 1fr;
  }
}

.frw-experienceIndexWrap .in-container {
  max-width: 1080px;
}

.frw-experienceIndexHeader {
  margin-bottom: 1.1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #dbe7f4;
  border-radius: 18px;
  background:
    radial-gradient(900px 300px at 0% -80%, rgba(14, 165, 233, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 253, 255, 0.92));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.frw-experienceIndexTitle {
  margin: 0;
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  letter-spacing: 0.02em;
}

.frw-experienceIndexLead {
  margin: 0.45rem 0 0;
  color: #475569;
}

.frw-experienceIndexStats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.frw-experienceIndexStat {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  border: 1px solid #c8d8eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 700;
}

.frw-experienceFilterForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.15rem;
}

.frw-experienceFilterForm label {
  display: grid;
  gap: 0.25rem;
}

.frw-experienceFilterForm label > span {
  color: #475569;
  font-size: 1.2rem;
  font-weight: 700;
}

.frw-experienceFilterForm select,
.frw-experienceFilterForm input {
  width: 100%;
  min-height: 40px;
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.frw-experienceFilterForm select:focus,
.frw-experienceFilterForm input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.frw-experienceFilterActions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.frw-experienceFilterActions button,
.frw-experienceFilterActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}

.frw-experienceFilterActions button {
  border: 1px solid #0f766e;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.frw-experienceFilterActions button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.frw-experienceFilterActions a {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.frw-experienceList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.frw-experienceCard {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 0.95rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.frw-experienceCard::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.2), transparent 70%);
  pointer-events: none;
}

.frw-experienceCard:hover {
  transform: translateY(-2px);
  border-color: #b7d0ea;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.09);
}

.frw-experienceCard.is-external::after {
  background: radial-gradient(circle at 100% 0%, rgba(14, 116, 144, 0.24), transparent 70%);
}

.frw-experienceCardMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.frw-experienceStateChip-upcoming {
  border-color: #fcd34d;
  background: #fef3c7;
  color: #92400e;
}

.frw-experienceStateChip-closed {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #334155;
}

.frw-experienceCardTitle {
  margin: 0;
  font-size: 2rem;
  line-height: 1.45;
}

.frw-experienceCardTitle a {
  color: #0f172a;
  text-decoration: none;
}

.frw-experienceCardTitle a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.frw-experienceCardDate,
.frw-experienceCardVenue,
.frw-experienceCardCount {
  margin: 0.28rem 0 0;
  color: #334155;
}

.frw-experienceCardCount {
  color: #475569;
  font-size: 1.3rem;
}

.frw-experienceCardFooter {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.frw-experienceCardLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.25rem 0.62rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.frw-experienceCardLink:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.frw-experienceAdSlot {
  list-style: none;
  padding: 0.85rem;
  border: 1px dashed #a8b3c2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.frw-experienceAdLabel,
.frw-marcheAdLabel {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.08rem 0.42rem;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #334155;
  background: #e2e8f0;
}

.frw-experienceAdBody > *:last-child,
.frw-marcheAdBody > *:last-child {
  margin-bottom: 0;
}

.frw-marcheAdSlot {
  border: 1px dashed #a8b3c2;
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  .frw-experienceIndexHeader {
    padding: 0.95rem;
  }

  .frw-experienceFilterForm {
    grid-template-columns: 1fr;
  }

  .frw-experienceCardFooter {
    flex-wrap: wrap;
  }
}

/* support/contact */
.frw-formBlock {
  max-width: 760px;
  padding: 1.8rem;
  border: 1px solid #dbe3ea;
  border-radius: 16px;
  background: #ffffff;
}

.frw-formField {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.frw-formField label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #334155;
}

.frw-formField input,
.frw-formField select,
.frw-formField textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 1.4rem;
  color: #1e293b;
  background: #ffffff;
}

.frw-formField input:focus,
.frw-formField select:focus,
.frw-formField textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.25);
  outline-offset: 1px;
  border-color: #0ea5e9;
}

.frw-formField small {
  color: #64748b;
  font-size: 1.2rem;
}

.frw-formActions {
  margin-top: 0.9rem;
}

.frw-formActions button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #0f766e;
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.frw-formActions button:disabled {
  opacity: 0.7;
  cursor: default;
}

.frw-formResult {
  margin-top: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-size: 1.35rem;
}

.frw-formResult-info {
  background: #eff6ff;
  color: #1e40af;
}

.frw-formResult-success {
  background: #ecfdf5;
  color: #065f46;
}

.frw-formResult-error {
  background: #fef2f2;
  color: #991b1b;
}
