/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Utility ===== */
.pc-only {
  display: none;
}

.sp-only {
  display: inline;
}

/* ===== Variables ===== */
:root {
  --color-pink: #e73277;
  --color-pink-light: rgba(231, 50, 119, 0.1);
  --color-pink-lighter: rgba(231, 50, 119, 0.2);
  --color-white: #ffffff;
  --color-bg: #f7f8f8;
  --color-text: #3d4545;
  --color-text-gray: #616f6f;
  --color-text-dark: #000000;
  --color-blue: #2f6cdc;
  --color-green: #3f9a39;
  --color-green-dark: #126894ab;
  --color-orange: #e97400;
  --color-yellow-bg: #fbe6b4;
  --color-green-bg: #d5f3c2;
  --color-orange-bg: #ffd1a9;
  --color-amber: #e89011;
  --color-border: rgba(0, 0, 0, 0.2);
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-schedule-outline: #efc064;
  --color-contact-border: #b2bbbb;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-yellow-bg-overlay: rgba(251, 230, 180, 0.5);
  --color-amber-overlay: rgba(232, 144, 17, 0.5);
  --color-green-overlay: rgba(63, 154, 57, 0.5);
  --color-flow-header-bg: rgba(249, 231, 187, 0.6);
  --color-flow-body-bg: rgba(249, 231, 187, 0.2);
  --shadow-card: 0px 2px 0px 1px rgba(0, 0, 0, 0.06);
  --shadow-btn: 0px 4px 0px 0px rgba(0, 0, 0, 0.1);
  --radius-card: 32px;
  --radius-pill: 52px;
  --max-width: 520px;
}

/* ===== Layout ===== */
/* lp-container は削除 - セクションが直接bodyの子として全幅で配置される */

/* footer-area は下部の ===== Footer area ===== セクションで定義 */

/* ===== Hero ===== */
.hero {
  width: 100%;
  box-shadow: 0px 4px 0px 0px var(--color-shadow);
}

.hero picture {
  display: block;
  width: 100%;
}

.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Section Common ===== */
.section {
  width: 100%;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 24px 20px 0;
}

/* 白カード（開催概要・当日のご案内セクション内） */
.white-card {
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 24px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-inner-white {
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 24px 0 0;
  gap: 16px;
}

/* Section titles */
.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.section-title-row-sub {
  padding: 4px 0;
  flex-wrap: wrap;
}

.section-title-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  color: var(--color-pink);
  text-align: center;
}

.section-title-label-narrow {
  letter-spacing: 1px;
}

.section-title-label-dark {
  color: var(--color-text-dark);
}

.section-title-sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-dark);
  text-align: center;
}

/* Stars */
.star-icon {
  display: inline-block;
  width: 13.5px;
  height: 13.5px;
  background-image: url("https://d1pirzpgglw35x.cloudfront.net/campaign/auspecialday2026/assets/ico_star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ===== Summary Section ===== */
.section-overview {
  background-color: var(--color-yellow-bg);
  background-image:
    linear-gradient(
      var(--color-yellow-bg-overlay),
      var(--color-yellow-bg-overlay)
    ),
    url("https://d1pirzpgglw35x.cloudfront.net/campaign/auspecialday2026/assets/bg_pattern.webp");
  background-repeat: repeat;
  background-size: cover, 100%;
  padding-bottom: 64px;
}

.summary-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0179em;
  color: var(--color-text);
}

.summary-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0179em;
  color: var(--color-text);
  padding-left: 1em;
  text-indent: -1em;
}

/* Special program */
.special-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.special-program-title-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.special-program-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-pink);
  text-align: center;
}

.special-program-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0179em;
  color: var(--color-text-dark);
  text-align: center;
}

/* Event info */
.event-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.event-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.event-info-label {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-gray);
  border: 0.75px solid var(--color-border);
  border-radius: 78px;
  white-space: nowrap;
  height: 20px;
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}

.event-info-value {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

.event-info-value span {
  white-space: nowrap;
}

.event-info-address {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 4px;
}

.event-info-address .link {
  flex-wrap: wrap;
}

/* Links */
.link {
  color: var(--color-blue);
  text-decoration: underline;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.modal-list .link {
  display: inline;
  word-break: break-all;
}

/* Access map */
.access-map {
  width: 100%;
  height: 233px;
  object-fit: cover;
  border-radius: 0;
}

/* Kidzania images */
.kidzania-images {
  max-width: var(--max-width);
  margin: 16px auto 0;
  padding: 0 20px;
}

.kidzania-images picture {
  display: block;
  width: 100%;
}

.kidzania-images .kidzania-images-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
/* ===== Buttons ===== */
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 8px;
}

.white-card .btn-wrap {
  padding: 8px 8px 32px;
}

.section-inner-white .btn-wrap {
  padding: 24px 24px 32px;
}

.is-app .btn-wrap-download {
  padding-top: 0;
}

.section-inner-white > .section-title-wrap {
  margin-bottom: 16px;
}

.btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-outline {
  padding: 12px 40px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-pink);
  background-color: var(--color-pink-light);
}

.btn-sm {
  padding: 12px 40px;
  font-size: 14px;
}

.btn-primary {
  height: 48px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-pink);
  border: 3px solid var(--color-white);
  box-shadow: 0px 4px 0px 1px var(--color-shadow);
}

.btn-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2.5px solid var(--color-white);
  border-top: 2.5px solid var(--color-white);
  transform: rotate(45deg);
}

/* Fixed button */
.fixed-btn-wrap {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  z-index: 100;
  filter: drop-shadow(0px 4px 0px var(--color-shadow));
}

.fixed-btn-wrap .btn-primary {
  width: 100%;
  border-radius: var(--radius-pill);
  box-shadow: none;
}

/* ===== Entry Section ===== */
.section-campaign {
  background-color: var(--color-amber);
  background-image:
    linear-gradient(var(--color-amber-overlay), var(--color-amber-overlay)),
    url("https://d1pirzpgglw35x.cloudfront.net/campaign/auspecialday2026/assets/bg_pattern.webp");
  background-repeat: repeat;
  background-size: cover, 100%;
  position: relative;
  padding-bottom: 64px;
}

.section-campaign::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 20px;
  background: radial-gradient(
    ellipse 36px 30px at 50% 100%,
    var(--color-amber) 50%,
    transparent 50%
  );
  background-size: 36px 20px;
  background-repeat: repeat-x;
  background-position: left top;
}

.section-campaign .section-inner {
  padding: 40px 20px 0;
  gap: 32px;
}

/* Entry details */
.entry-details {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 0;
}

.entry-details-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 0 16px;
}

.entry-details-label {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-gray);
  border: 0.75px solid var(--color-border);
  border-radius: 78px;
  width: fit-content;
  height: 20px;
  flex-shrink: 0;
}

.entry-details-value {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 4px;
  padding-left: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0288em;
  color: var(--color-text);
}

.entry-details-value-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
  font-size: 13px;
  color: var(--color-text);
}

.entry-details-list {
  padding-left: 20px;
  list-style: disc;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

.entry-details-list li {
  margin-bottom: 4px;
}

.entry-details-note {
  display: flex;
  flex-direction: row;
  gap: 2px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text);
}

.entry-details-note-mark {
  flex-shrink: 0;
}

.entry-details-note-text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.0313em;
  color: var(--color-text);
}

/* Entry method */
.entry-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
}

.entry-method-title-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.entry-method-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1875em;
  color: var(--color-pink);
  text-align: center;
}

.entry-method-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: 100%;
}

.entry-method-steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
}

.step-num {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.0179em;
  color: var(--color-pink);
  flex-shrink: 0;
  width: 15px;
  text-align: left;
}

.entry-method-steps span:not(.step-num) {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

/* 保護者向け画像 */
.img-parents {
  width: 100%;
  height: auto;
  margin-top: 16px;
}

/* Schedule card */
.schedule-card {
  background-color: var(--color-white);
  outline: 5px solid var(--color-schedule-outline);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 8px 16px 24px;
}

.schedule-item {
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.schedule-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 12px solid currentColor;
  z-index: 1;
}

.schedule-item-green::after {
  color: var(--color-green-bg);
}

.schedule-item-yellow::after {
  color: var(--color-yellow-bg);
}

.schedule-item-green {
  background-color: var(--color-green-bg);
}

.schedule-item-yellow {
  background-color: var(--color-yellow-bg);
}

.schedule-item-orange {
  background-color: var(--color-orange-bg);
}

.schedule-item-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  text-align: center;
  letter-spacing: 3px;
}

.schedule-item-dates {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.schedule-item-dates span {
  white-space: nowrap;
}

/* Notes card */
.notes-card {
  background-color: var(--color-orange-bg);
  border: 5px solid var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.notes-card .section-title-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.notes-card .section-title-label {
  flex: 1;
  text-align: center;
}

.notes-card-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.notes-card-icon {
  position: absolute;
  right: 0;
  flex-shrink: 0;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
}

.modal {
  background-color: var(--color-white);
  border-radius: 24px 24px 0 0;
  max-width: 480px;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal {
    transition: none;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 20px 12px;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-pink);
  text-align: center;
  letter-spacing: 3px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.modal-close img {
  width: 100%;
  height: 100%;
}

.modal-body {
  padding: 0 20px 24px;
  overflow-y: auto;
}

.modal-section {
  padding: 12px 0;
}

.modal-section:last-child {
  border-bottom: none;
}

.modal-section-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-pink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-section-title span:not(.star-icon) {
  text-align: center;
  min-width: 0;
}

.modal-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

/* ===== On The Day Section ===== */
.section-eventday {
  background-color: var(--color-yellow-bg);
  background-image:
    linear-gradient(
      var(--color-yellow-bg-overlay),
      var(--color-yellow-bg-overlay)
    ),
    url("https://d1pirzpgglw35x.cloudfront.net/campaign/auspecialday2026/assets/bg_pattern.webp");
  background-repeat: repeat;
  background-size: cover, 100%;
  position: relative;
  padding-bottom: 64px;
}

.section-eventday .section-inner {
  padding-top: 40px;
}

.section-eventday::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 20px;
  background: radial-gradient(
    ellipse 36px 30px at 50% 100%,
    var(--color-yellow-bg) 50%,
    transparent 50%
  );
  background-size: 36px 20px;
  background-repeat: repeat-x;
  background-position: left top;
}

.eventday-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.eventday-block .link {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: -10px;
  margin-bottom: 12px;
}

.eventday-subtitle-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.eventday-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-pink);
  text-align: center;
}

.eventday-list {
  width: 100%;
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0288em;
  color: var(--color-text);
}

.eventday-list li {
  margin-bottom: 8px;
}

.eventday-list li:last-child {
  margin-bottom: 0;
}

.eventday-list-indent {
  padding-left: 20px;
  margin-top: 8px;
  list-style: disc;
  font-size: 13px;
  color: var(--color-text-gray);
}

/* Flow cards */
.flow-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 36px;
}

.flow-card {
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
}

.flow-card-header {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  background-color: var(--color-flow-header-bg);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.flow-card-header span:first-child {
  flex: 1;
  text-align: center;
}

.flow-card-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.flow-card-icon-wrap {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-header[aria-expanded="true"] .flow-card-icon {
  transform: rotate(180deg);
}

.flow-card-body {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-flow-body-bg);
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.flow-card-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-card-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}

.flow-card-note {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 4px;
}

.flow-card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.flow-card-link-wrap {
  display: block;
  text-align: right;
  margin: 10px 0 8px;
}

/* ===== FAQ Section ===== */
.section-faq {
  background-color: var(--color-green);
  background-image:
    linear-gradient(var(--color-green-overlay), var(--color-green-overlay)),
    url("https://d1pirzpgglw35x.cloudfront.net/campaign/auspecialday2026/assets/bg_pattern.webp");
  background-repeat: repeat;
  background-size: cover, 100%;
  position: relative;
  padding-bottom: 40px;
}

.section-faq::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 20px;
  background: radial-gradient(
    ellipse 36px 30px at 50% 100%,
    var(--color-green) 50%,
    transparent 50%
  );
  background-size: 36px 20px;
  background-repeat: repeat-x;
  background-position: left top;
}

.section-faq .section-inner {
  background-color: transparent;
  padding: 40px 20px 0;
  gap: 32px;
}

.section-faq .section-inner .section-title-wrap {
  padding: 24px 8px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 0 8px 24px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

/* SP版: padding 12px 4px, gap 4px (Figma: status=close, device=sp) */
.faq-item-question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  text-align: left;
  cursor: pointer;
}

/* SP版: Q. = 18px/800 (Figma: style_e05c3887) */
.faq-item-q {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-green);
  flex-shrink: 0;
}

/* SP版: 質問テキスト = 14px/500 (Figma: EL-97e7be7c) */
.faq-item-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

/* アイコン */
.faq-item-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item-icon {
  width: 14px;
  height: 14px;
}

/* hidden属性をCSSのdisplayより優先させる */
[hidden] {
  display: none !important;
}

/* SP版: 回答エリア gap 4px, padding 12px 4px (Figma: status=open, device=sp 下部) */
.faq-item-answer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 4px 12px;
  background-color: transparent;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

/* SP版: A. = 18px/800 (Figma: style_e05c3887 の orange版) */
.faq-item-a {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-orange);
  flex-shrink: 0;
}

/* SP版: 回答テキスト = 13px/400 (Figma: EL-97e7be7c 回答版) */
.faq-item-answer span:last-child {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0025em;
  color: var(--color-text);
}

/* ===== Footer area ===== */
.footer-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  background-color: var(--color-bg);
  width: 100%;
}

/* Contact */
.contact {
  width: 100%;
  padding: 28px 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.contact-links {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.contact-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 15px;
  height: 38px;
  border: 1px solid var(--color-contact-border);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-gray);
  text-align: center;
}

.contact-date {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  margin-top: 25px; /* .contact の gap 15px と合わせて上40px */
}

.copyright {
  padding: 48px 0 12px;
  margin-bottom: calc(48px + 40px + 16px);
  font-size: 7px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-gray);
  text-align: center;
}

/* ===== PC (726px+) ===== */
@media (min-width: 726px) {
  :root {
    --max-width: 1200px;
    --radius-card: 64px;
  }

  /* Section inner */
  .section-inner {
    padding: 40px 40px 0;
    gap: 40px;
  }

  .section-inner-white .btn-wrap {
    padding: 40px 0 0;
  }

  .section-inner-white {
    padding: 32px clamp(24px, 5vw, 70px) 48px;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
  }

  /* Section titles */
  .section-title-label {
    font-size: 32px;
    letter-spacing: 6px;
  }

  .section-title-label-narrow {
    letter-spacing: 2px;
  }

  .section-title-row {
    gap: 12px;
  }

  .section-title-row-sub {
    margin-top: 24px;
  }

  .section-title-sub {
    font-size: 20px;
  }

  /* Stars (PC uses larger stars) */
  .star-icon {
    width: 18px;
    height: 18px;
  }

  /* Summary section */
  .section-overview {
    background-size: cover, 50%;
    padding-bottom: 96px;
  }

  /* Summary text */
  .summary-text {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.0278em;
  }

  .summary-note {
    font-size: 18px;
    text-align: center;
    padding-left: 0;
    text-indent: 0;
  }

  /* Special program */
  .special-program-title {
    font-size: 22px;
  }

  .special-program-text {
    font-size: 20px;
  }

  /* Event info */
  .event-info {
    gap: 24px;
    width: fit-content;
    margin: 0 auto;
  }

  .event-info-row {
    gap: 16px;
    align-items: center;
  }

  .event-info-label {
    font-size: 16px;
    padding: 4px 24px;
    width: 120px;
    height: 32px;
  }

  .event-info-value {
    font-size: 18px;
    gap: 0 8px;
  }

  .link {
    font-size: 16px;
  }

  /* Access map */
  .access-map {
    width: 480px;
    height: 360px;
    margin: 0 auto;
    border-radius: 16px;
  }

  /* Button */
  .btn-wrap {
    padding: 16px;
  }

  .btn-outline {
    padding: 18px 80px;
    font-size: 24px;
    width: 406px;
    margin: 0 auto;
  }

  .btn-outline.btn-sm {
    white-space: nowrap;
    font-size: 24px;
    font-weight: 700;
    width: 436px;
    height: 65px;
    padding: 0;
  }

  .btn-primary {
    font-size: 28px;
    height: 72px;
    border-width: 6px;
    box-shadow: 0px 8px 0px 2px var(--color-shadow);
  }

  /* Kidzania images */
  .kidzania-images {
    margin: 24px auto 0;
  }

  /* Entry section */
  .section-campaign {
    background-size: cover, 50%;
    padding-bottom: 96px;
  }

  .section-campaign::before {
    top: -28px;
    height: 30px;
    background: radial-gradient(
      ellipse 56px 46px at 50% 100%,
      var(--color-amber) 50%,
      transparent 50%
    );
    background-size: 56px 30px;
    background-repeat: repeat-x;
    background-position: left top;
  }

  .section-campaign .section-inner {
    padding: 64px 40px 0;
    gap: 64px;
  }

  /* White card PC */
  .white-card {
    padding: 40px clamp(24px, 5vw, 70px);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
  }

  .entry-details {
    padding: 24px 0;
    gap: 24px;
  }

  .entry-details-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .entry-details-label {
    font-size: 16px;
    padding: 4px 24px;
    width: 120px;
    text-align: center;
    height: 32px;
  }

  .entry-details-value {
    font-size: 18px;
  }

  .entry-details-value-col {
    font-size: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
  }

  .entry-details-list {
    font-size: 18px;
  }

  .entry-details-note {
    font-size: 14px;
  }

  .entry-details-note-text {
    font-size: 18px;
    display: block;
  }

  .pc-only {
    display: inline;
  }

  .sp-only {
    display: none;
  }

  /* Entry method */
  .entry-method {
    padding: 8px 0;
    gap: 16px;
  }

  .entry-method-title {
    font-size: 22px;
  }

  .entry-method-steps {
    gap: 8px;
  }

  .step-num {
    font-size: 20px;
    width: 22px;
  }

  .entry-method-steps span:not(.step-num) {
    font-size: 18px;
    line-height: 1.8;
  }

  /* 保護者向け画像 */
  .img-parents {
    object-fit: contain;
    border-radius: 20px;
  }

  /* Schedule card */
  .schedule-card {
    padding: 36px clamp(16px, 3vw, 32px) 48px;
    gap: 36px;
    outline-width: 10px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }

  .schedule-card .section-title-label {
    font-size: 32px;
  }

  .schedule-list {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 0;
  }

  .schedule-item {
    flex: 1;
    border-radius: 20px;
    padding: 16px 4px;
    gap: 16px;
    align-items: center;
  }

  .schedule-item-label {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .schedule-item:not(:last-child)::after {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -24px;
    transform: translateY(-50%);
    border-left: 24px solid currentColor;
    border-right: none;
    border-top: 48px solid transparent;
    border-bottom: 48px solid transparent;
  }

  .schedule-item-dates {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 16px;
  }

  /* Notes card */
  .notes-card {
    border-width: 10px;
    padding: 24px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }

  .modal-overlay {
    align-items: center;
    padding: 40px;
  }

  .modal {
    border-radius: 24px;
    max-width: 960px;
    transform: scale(0.92);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    opacity: 0;
  }

  .modal-overlay.is-open .modal {
    transform: scale(1);
    opacity: 1;
  }

  .modal-close {
    width: 48px;
    height: 48px;
  }

  .modal-title {
    font-size: 32px;
    letter-spacing: 6px;
  }

  .modal-section-title {
    font-size: 22px;
  }

  .modal-list {
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto;
  }

  /* On the day section */
  .section-eventday {
    background-size: cover, 50%;
    padding-bottom: 96px;
  }

  .section-eventday::before {
    top: -28px;
    height: 30px;
    background: radial-gradient(
      ellipse 56px 46px at 50% 100%,
      var(--color-yellow-bg) 50%,
      transparent 50%
    );
    background-size: 56px 30px;
    background-repeat: repeat-x;
    background-position: left top;
  }

  .section-eventday .section-inner {
    gap: 64px;
  }

  .eventday-block {
    gap: 16px;
  }

  .eventday-block .link {
    margin-top: -12px;
  }

  .eventday-subtitle-wrap {
    margin-bottom: 8px;
  }

  .eventday-subtitle {
    font-size: 22px;
  }

  .eventday-list {
    font-size: 18px;
    letter-spacing: 0.0278em;
  }

  /* Flow cards */
  .flow-cards {
    gap: 16px;
  }

  .flow-card {
    flex: 1;
  }

  .flow-card-header {
    height: 59px;
    font-size: 18px;
  }

  .flow-card-icon {
    width: 20px;
    height: 20px;
  }

  .flow-card-body {
    padding: 16px 24px;
    font-size: 18px;
  }

  .flow-card-list li {
    font-size: 18px;
  }

  /* FAQ section */
  .section-faq {
    background-size: cover, 50%;
    padding-bottom: 96px;
  }

  .section-faq::before {
    top: -28px;
    height: 30px;
    background: radial-gradient(
      ellipse 56px 46px at 50% 100%,
      var(--color-green) 50%,
      transparent 50%
    );
    background-size: 56px 30px;
    background-repeat: repeat-x;
    background-position: left top;
  }

  .section-faq .section-inner {
    padding: 40px 40px 0;
    gap: 40px;
  }

  .section-faq .section-inner .section-title-wrap {
    padding: 32px 24px 28px;
  }

  .faq-list {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 70px) 24px;
  }

  /* PC版: padding 12px 24px, gap 8px (Figma: status=close, device=pc) */
  .faq-item-question {
    padding: 12px 24px;
    gap: 8px;
  }

  /* PC版: Q. = 32px/800 (Figma: style_701ede8d) */
  .faq-item-q {
    font-size: 32px;
  }

  /* PC版: 質問テキスト = 20px/500 (Figma: EL-ca05e711) */
  .faq-item-text {
    font-size: 20px;
  }

  /* PC版アイコン: 18x18 */
  .faq-item-icon {
    width: 18px;
    height: 18px;
  }

  /* PC版: 回答エリア padding 12px 24px, gap 8px (Figma: status=open, device=pc) */
  .faq-item-answer {
    padding: 12px 24px 24px;
    gap: 8px;
  }

  /* PC版: A. = 32px/800 (Figma: style_701ede8d の orange版) */
  .faq-item-a {
    font-size: 32px;
  }

  /* PC版: 回答テキスト = 16px/400 (Figma: EL-ca05e711 回答版) */
  .faq-item-answer span:last-child {
    font-size: 16px;
    letter-spacing: 0.0313em;
  }

  /* Footer */
  .footer-area {
    padding: 0 0 24px;
  }

  .contact {
    max-width: var(--max-width);
    padding: 56px 30px 0;
    gap: 20px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-links {
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
  }

  .contact-link {
    font-size: 25px;
    height: 76px;
    padding: 0 24px;
  }

  .contact-date {
    font-size: 16px;
    margin-top: 0;
    padding: 60px 0 96px;
  }

  .copyright {
    font-size: 14px;
    padding: 0 0 24px;
  }

  /* Fixed button */
  .fixed-btn-wrap {
    width: 462px;
    bottom: 24px;
    filter: drop-shadow(0px 8px 0px var(--color-shadow));
  }

  .btn-arrow {
    width: 9px;
    height: 9px;
    border-right-width: 4px;
    border-top-width: 4px;
  }
}
