@import "section-bg.generated.css";

/* ========================================
   Base / Variables
======================================== */
:root {
  --max-width-container: 2000px;
  --max-width-inner: 1200px;
  --color-orange: #f18e38;
  --color-pink: #e06b7f;
  --color-pink-deep: #e16c80;
  --color-pink-border: #d07281;
  --color-teal: #23a2ae;
  --color-cream: #ffeec0;
  --color-cream-soft: #fcf1e6;
  --color-yellow: #fff479;
  --color-text: #231815;
  --color-text-sub: #333;
  --color-alert: #f31818;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
  line-height: 1.8;
}

img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.wrapper {
  max-width: var(--max-width-container);
  margin: 0 auto;
}

.wrap {
  width: 100%;
  max-width: var(--max-width-inner);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section_bg--white { background: #fff; }

/* ========================================
   Common components
======================================== */
.btn_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  padding: 15px 44px;
  border-radius: 999px;
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  transition:
    background-color .35s ease,
    color .35s ease,
    border-color .35s ease;
}

.btn_pill:hover,
.btn_pill:focus-visible {
  background: #fff;
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.btn_pill--pink {
  background: var(--color-pink);
  border-color: #fff;
  border-width: 2px;
  box-shadow: 0 3px 4px rgba(0,0,0,.25);
  min-height: 44px;
  padding: 11px 29px;
  font-size: 17px;
}

.btn_pill--pink:hover,
.btn_pill--pink:focus-visible {
  background: #fff;
  color: var(--color-pink);
  border-color: var(--color-pink);
}

.heading_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  padding: 10px 50px;
}

.heading_badge__deco {
  position: absolute;
  top: 16px;
  width: 54px;
  height: 72px;
  pointer-events: none;
}

.heading_badge__deco--left { left: -37px; transform: scaleX(-1); }
.heading_badge__deco--right { right: -37px; }

.program_heading {
  display: flex;
  justify-content: center;
  width: 100%;
}

.program_heading img {
  display: block;
  width: min(389px, 100%);
  height: auto;
}

.heading_section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-orange);
  text-align: center;
}

/* ========================================
   Header
======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 5px solid var(--color-orange);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 50px;
}

.header__logo { display: block; width: 188px; flex-shrink: 0; }
.header__logo img { width: 100%; height: auto; }

.header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.header__nav a {
  position: relative;
  display: inline-block;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  text-decoration: none;
}

/* グロナビ アニメその5・矢印がにゅっと伸びる（銀ねこアトリエ） */
.header__nav a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-orange);
  transition: width .3s;
}

.header__nav a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 8px;
  width: 2px;
  background: var(--color-orange);
  transform: skew(42deg);
  transform-origin: bottom left;
  transition: left .3s;
  opacity: 0;
}

.header__nav a:hover::after,
.header__nav a:focus-visible::after {
  width: calc(100% - 1px);
}

.header__nav a:hover::before,
.header__nav a:focus-visible::before {
  left: calc(100% - 1px);
  opacity: 1;
}

.header__toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.header__toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
  transition:
    top .35s cubic-bezier(0.22, 1, 0.36, 1),
    transform .35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity .25s ease;
}

.header__toggle span:nth-child(1) { top: 14px; }
.header__toggle span:nth-child(2) { top: 20.5px; }
.header__toggle span:nth-child(3) { top: 27px; }

.header.is-open .header__toggle span:nth-child(1) {
  top: 20.5px;
  transform: rotate(45deg);
}

.header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle span:nth-child(3) {
  top: 20.5px;
  transform: rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}

/* ========================================
   Top FV
======================================== */
.top_fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 0 30px;
}

.top_fv__visual,
.top_fv__date {
  display: block;
  width: 100%;
}

.top_fv__visual img,
.top_fv__date img {
  width: 100%;
  height: auto;
}

.top_fv__date {
  max-width: 666px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   News
======================================== */
.news { padding: 0 0 50px; }

.news__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 50px;
  background: var(--color-cream);
  border-radius: 20px;
}

.news__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-orange);
  text-align: center;
}

.news__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #fff;
}

.news__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  line-height: 1.8;
}

.news__date { flex-shrink: 0; width: 122px; }

.news__text,
.news__link {
  flex: 1;
  min-width: 0;
}

.news__link {
  text-decoration: underline;
}

.news__link:hover { color: var(--color-orange); }

/* ========================================
   Forum
======================================== */
.forum {
  padding: 50px 0;
  border-top: 5px solid var(--color-orange);
  border-bottom: 5px solid var(--color-orange);
}

.forum__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.forum__fv {
  width: min(1380px, 100%);
  padding: 0 16px;
}

.forum__fv img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 5px solid var(--color-orange);
  border-radius: 20px;
  background: #fff;
}

.forum__program {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  width: 100%;
}

.forum__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.program_card {
  display: flex;
  gap: 29px;
  align-items: stretch;
  min-height: 200px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}

.program_card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: .9;
}

.program_card__label--am { background: var(--color-pink); }
.program_card__label--pm { background: var(--color-teal); }

.program_card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.program_card__body--stack { gap: 29px; }

.program_card__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.program_card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-orange);
}

.program_card__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
}

.program_card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 5px 20px;
  border-radius: 10px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.program_card__cast {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
}

.speakers_mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.speaker_mini {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-cream);
  border-radius: 20px;
}

.speaker_mini__media {
  width: 100%;
  height: auto;
  aspect-ratio: 244 / 217;
  overflow: hidden;
  flex-shrink: 0;
}

.speaker_mini__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker_mini__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 17px;
  text-align: center;
}

.speaker_mini__name {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
}

.speaker_mini__role {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-orange);
}

.guest_talk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc((100% - 60px) / 4);
  gap: 20px 30px;
  align-items: start;
  width: 100%;
  padding-top: 30px;
  border-top: 3px solid var(--color-orange);
}

.guest_block__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.nursery_note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  grid-column: 1;
  grid-row: 2;
}

.nursery_note__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 10px 10px 40px;
  margin-left: 20px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.nursery_note__icon {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transform: translateY(-50%);
  pointer-events: none;
}

.nursery_note__balloon {
  display: inline-flex;
  align-items: center;
  background: var(--color-cream);
  border-radius: 0 100px 100px 0;
}

.nursery_note__arrow {
  width: 14px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nursery_note__text {
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}

.guest_block__photo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--color-cream);
  border-radius: 20px;
}

.guest_block__photo-media {
  width: 100%;
  height: auto;
  aspect-ratio: 244 / 217;
  overflow: hidden;
}

.guest_block__photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest_block__photo-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 17px;
  text-align: center;
}

.guest_block__photo-name {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
}

.guest_block__photo-role {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-orange);
}

.forum__cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 10px;
}

.forum__cta-lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-orange);
  text-align: center;
}

.btn_pill--cta {
  background: #ff7701;
  border: 3px solid #fff;
  box-shadow: 0 4px 5.5px rgba(0, 0, 0, 0.25);
  min-height: 0;
  padding: 15px 60px;
  font-size: 24px;
  border-radius: 70px;
}

.btn_pill--cta:hover,
.btn_pill--cta:focus-visible {
  background: #fff;
  color: #ff7701;
  border-color: #ff7701;
}

.forum__cta-note {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
  text-align: center;
}

.program_card__profile {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-cream);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
}

.program_card__profile-label {
  font-weight: 900;
  color: var(--color-orange);
}

/* ========================================
   Smile Fes
======================================== */
.smilefes {
  padding: 50px 0;
  background-color: #fdf6de;
  background-image: url("../img/smilefes_bg.webp");
  background-position: top left;
  background-size: 65.3px 63.4px;
  background-repeat: repeat;
}

.smilefes__inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}

.smilefes__main {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  width: 100%;
}

.smilefes__fv {
  width: min(1380px, 100%);
  padding: 0 16px;
}

.smilefes__fv img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 5px solid var(--color-pink-border);
  border-radius: 20px;
  background: #fff;
}

.smilefes__lead {
  max-width: 1200px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-pink);
  text-align: center;
}

.br_sp { display: none; }
.br_450 { display: none; }

.smilefes__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.smilefes__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.fes_card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
}

.fes_card--textonly {
  justify-content: flex-start;
  min-height: 160px;
}

.fes_card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 275 / 193;
  overflow: hidden;
  flex-shrink: 0;
}

.fes_card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fes_card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.fes_card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-pink);
  text-align: center;
}

.fes_card__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
}

.fes_card__note {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-pink);
  text-align: center;
}

.fes_card__cta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: stretch;
  width: 100%;
}

.fes_card .btn_pill--pink {
  width: 100%;
  min-height: 0;
  padding: 8px 18px;
  font-size: 15px;
}

.smilefes__note {
  width: 100%;
  font-size: 11px;
  line-height: 2;
  text-align: right;
  color: #000;
}

.smilefes__coming {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 220px;
  padding: 20px 36px 20px 0;
  background: var(--color-pink-deep);
  border-radius: 20px;
  overflow: visible;
}

.smilefes__coming-visual {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  width: min(506px, 42%);
  margin-top: -80px;
  margin-right: 0;
  margin-bottom: -30px;
  margin-left: -20px;
  pointer-events: none;
}

.smilefes__coming-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.smilefes__coming-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.smilefes__coming-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #fff;
  font-weight: 900;
  font-size: 20px;
  color: var(--color-teal);
  text-align: center;
}

.smilefes__coming-text {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.venue_map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 10px;
}

.venue_map__ribbon {
  position: absolute;
  z-index: 2;
  top: -31px;
  left: 18px;
  width: min(330px, 36%);
  margin: 0;
  line-height: 0;
}

.venue_map__ribbon img {
  display: block;
  width: 100%;
  height: auto;
}

.venue_map__body {
  width: 100%;
  line-height: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.venue_map__body img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Access / FAQ
======================================== */
.access {
  padding: 50px 0;
  border-top: 5px solid var(--color-orange);
}

.access__inner,
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}

.access__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.access_row {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
}

.access_row__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 300px;
  padding: 10px 30px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.access_row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 10px 30px;
  background: var(--color-cream-soft);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-sub);
}

.access_row__body .alert { color: var(--color-alert); }

.access_row__stack {
  margin: 0;
  line-height: 1.5;
}

.access__map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access__deco {
  display: flex;
  gap: 30px;
  justify-content: center;
  width: 100%;
  max-width: 1377px;
  margin: 0 auto;
  padding: 0 20px;
}

.access__deco img {
  width: min(439px, 30%);
  height: auto;
}

.faq { padding: 50px 0; }

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq_item {
  overflow: hidden;
  border-radius: 10px;
}

.faq_item__q {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: var(--color-orange);
  color: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}

.faq_item__mark {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
}

.faq_item__text {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
}

.faq_item__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq_item__icon::before,
.faq_item__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.faq_item__icon::before {
  top: 9.5px;
  left: 0;
  width: 22px;
  height: 3px;
}

.faq_item__icon::after {
  top: 0;
  left: 9.5px;
  width: 3px;
  height: 22px;
  transform-origin: center center;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq_item.is-open .faq_item__icon::after {
  transform: rotate(90deg);
}

.faq_item__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq_item.is-open .faq_item__a {
  grid-template-rows: 1fr;
}

.faq_item__a-inner {
  min-height: 0;
  overflow: hidden;
  background: var(--color-cream-soft);
}

.faq_item__a p {
  padding: 20px;
  font-size: 16px;
  line-height: 2;
}

/* ========================================
   Footer
======================================== */
.footer {
  border-top: 5px solid var(--color-orange);
  background: #fff;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 16px 20px;
  background: var(--color-cream-soft);
}

.footer__links a {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 18px;
}

.footer__links a:hover { text-decoration: underline; }

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
}

.footer__orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 54px;
  align-items: center;
  justify-content: center;
}

.footer__org {
  display: flex;
  gap: 27px;
  align-items: center;
}

.footer__org-label {
  font-weight: 700;
  font-size: 20px;
}

.footer__logo-cfa { width: 228px; }

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

.footer__contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__mail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 2;
}

.footer__contact a { font-weight: 700; }

/* ========================================
   News page
======================================== */
.page_news { padding: 60px 0 100px; }

.page_news__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page_news__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-orange);
  text-align: center;
}

.page_news__box {
  padding: 30px 50px;
  background: var(--color-cream);
  border-radius: 20px;
}

.page_news__article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page_news__article-date {
  font-size: 16px;
  color: var(--color-text-sub);
}

.page_news__article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
}

.page_news__article-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.page_news__article-body p + p { margin-top: 1em; }

.page_news__back { text-align: center; }

.page_news__back a {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: underline;
}

/* ========================================
   SP
======================================== */
@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  .header__inner {
    position: relative;
    z-index: 120;
    padding: 12px 16px;
  }

  .header__logo {
    position: relative;
    z-index: 121;
    width: 140px;
  }

  .header__toggle {
    display: block;
    z-index: 121;
  }

  .header__nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 100px 24px 40px;
    background: var(--color-cream-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .35s ease,
      visibility .35s ease;
  }

  .header.is-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav a {
    padding: 8px 12px;
    border-bottom: 0;
    font-size: 20px;
  }

  .header__nav a::after {
    left: 12px;
    bottom: 2px;
  }

  .header__nav a::before {
    left: 12px;
    bottom: 2px;
  }

  .header__nav a:hover::after,
  .header__nav a:focus-visible::after {
    width: calc(100% - 25px);
  }

  .header__nav a:hover::before,
  .header__nav a:focus-visible::before {
    left: calc(100% - 13px);
  }

  .heading_badge { font-size: 24px; padding: 8px 28px; }
  .heading_badge__deco { display: none; }
  .program_heading img { width: min(280px, 100%); }
  .heading_section,
  .news__title,
  .page_news__title { font-size: 24px; }

  .news { padding: 0 0 20px; }

  .news__box {
    gap: 8px;
    padding: 12px 16px;
  }

  .page_news__box { padding: 24px 16px; }

  .forum,
  .smilefes,
  .access,
  .faq {
    padding: 20px 0;
  }

  .forum__inner,
  .access__inner,
  .faq__inner {
    gap: 20px;
  }

  .forum__program,
  .forum__cards,
  .smilefes__cards,
  .program_card__body,
  .program_card__body--stack,
  .guest_talk,
  .forum__cta,
  .access__rows,
  .faq_list {
    gap: 20px;
  }

  .top_fv {
    gap: 0;
    padding: 0 0 20px;
  }

  .page_news {
    padding: 20px 0 40px;
  }

  .page_news__inner {
    gap: 20px;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
  }

  .news__date { width: auto; }

  .program_card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .program_card__label {
    width: 100%;
    min-height: 48px;
  }

  .speakers_mini {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .speaker_mini__name,
  .guest_block__photo-name {
    font-size: 16px;
  }

  .guest_talk {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }

  .guest_block__content {
    order: 1;
  }

  .guest_block__photo {
    order: 2;
    width: calc((100% - 12px) / 2);
    max-width: none;
    align-self: center;
  }

  .program_card__profile {
    order: 3;
  }

  .nursery_note {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 30px;
  }

  .forum__cta {
    order: 5;
  }

  .nursery_note__badge {
    width: 100%;
    margin-left: 0;
    padding: 36px 16px 10px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 20px 20px 0 0;
  }

  .nursery_note__icon {
    left: 50%;
    top: 12px;
    transform: translate(-50%, -50%);
  }

  .nursery_note__balloon {
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .nursery_note__arrow {
    width: 14px;
    height: 44px;
    margin-top: -15px;
    margin-bottom: -15px;
    object-fit: contain;
    transform: rotate(90deg);
    transform-origin: center center;
  }

  .nursery_note__text {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    text-align: center;
    white-space: normal;
  }

  .forum__cta-lead {
    font-size: 18px;
  }

  .btn_pill--cta {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }

  .btn_pill {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
    padding: 12px 24px;
  }

  .smilefes__lead {
    font-size: 16px;
    text-align: center;
  }

  .smilefes__main {
    gap: 20px;
  }

  .br_sp { display: inline; }
  .br_pc { display: none; }

  .smilefes__row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .smilefes__cards {
    gap: 12px;
  }

  .fes_card__title { font-size: 14px; }
  .fes_card__text { font-size: 13px; }
  .fes_card__note { font-size: 13px; }
  .fes_card .btn_pill--pink { font-size: 13px; }

  .smilefes__coming {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: calc(100% - 40px);
    min-height: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0 16px 20px;
  }

  .smilefes__coming-visual {
    width: 70%;
    margin-top: -48px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .smilefes__coming-body {
    width: 100%;
  }

  .smilefes__coming-label {
    width: 100%;
  }

  .smilefes__note {
    text-align: left;
  }

  .venue_map {
    width: calc(100% - 40px);
    margin-top: -5px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .access_row { flex-direction: column; }
  .access_row__label { width: 100%; }
  .access__map { height: 260px; }
  .access__deco { gap: 8px; }

  .faq_item__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer__orgs {
    flex-direction: column;
    gap: 24px;
  }

  .footer__org {
    flex-direction: column;
    gap: 12px;
  }

  .footer__links a {
    font-size: 14px;
  }

  .footer__org-label {
    font-size: 14px;
  }

  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 12px;
  }

  .footer__contact-label {
    text-align: center;
  }

  .footer__mail-badge {
    font-size: 10px;
  }

  .footer__logo-cfa {
    width: 160px;
  }
}

/* ========================================
   SP narrow (〜450px)
======================================== */
@media (max-width: 450px) {
  .br_450 { display: inline; }
}

/* ========================================
   SP narrow (〜430px)
======================================== */
@media (max-width: 430px) {
  .smilefes__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .fes_card--textonly {
    min-height: 0;
  }
}
