.btn {
  white-space: nowrap;
}

/* ================= header ================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 244, 0.95) 0%,
    rgba(255, 248, 244, 0.78) 55%,
    rgba(255, 248, 244, 0) 100%
  );
  transition: background-color var(--duration) var(--ease-out-expo),
    backdrop-filter var(--duration) var(--ease-out-expo);
}

.site-header.is-stuck {
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rose);
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: auto;
  height: clamp(30px, 5vw, 42px);
  filter: drop-shadow(0 4px 10px rgba(180, 110, 140, 0.28));
}

.brand__name {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: var(--text-sm);
  line-height: 1.25;
  color: var(--text);
}

.brand__name span {
  display: block;
  font-family: var(--font-en);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

@media (max-width: 30rem) {
  .brand__name span {
    display: none;
  }
}

.gnav {
  display: none;
  align-items: center;
  gap: clamp(0.7rem, 0.2rem + 1.1vw, 1.5rem);
}

/* WordPressのメニューは<li>で出るので、liを消してaだけを並べる */
.gnav__list {
  display: contents;
}

.gnav li {
  display: contents;
  list-style: none;
}

.gnav a {
  position: relative;
  font-family: var(--font-en);
  font-size: clamp(0.7rem, 0.6rem + 0.2vw, 0.78rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: var(--text);
  transition: color var(--duration-fast) linear;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45em;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  box-shadow: var(--glow-pink);
  scale: 0 1;
  transition: scale var(--duration) var(--ease-out-expo);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (hover: hover) {
  .gnav a:hover {
    color: var(--white);
  }

  .gnav a:hover::after {
    scale: 1 1;
  }
}

@media (min-width: 62rem) {
  .gnav {
    display: flex;
  }
}

/* ================= hero ================= */

/* キービジュアル自体にロゴとコピーが入っているため、文字は重ねずに下へ置く */
.hero {
  position: relative;
  display: grid;
  background: var(--cream);
}

.hero__media {
  position: relative;
  line-height: 0;
}

.hero__media img {
  width: 100%;
  height: auto;
}

/* 画像の下端を背景へ溶かす */
.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 20%;
  background: linear-gradient(to bottom, transparent, var(--cream) 94%);
  pointer-events: none;
}

.hero__panel {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(0.8rem, 0.5rem + 1vw, 1.3rem);
  margin-top: clamp(-1.6rem, -0.6rem - 1.6vw, -0.4rem);
  padding-bottom: clamp(2.6rem, 2rem + 3vw, 4.5rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 1.3em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: clamp(0.68rem, 0.62rem + 0.3vw, 0.82rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(216, 164, 95, 0.35), inset 0 0 14px rgba(216, 164, 95, 0.1);
}

.hero__badge::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: var(--glow-pink);
  animation: pulse 2.4s var(--ease-out-expo) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    scale: 1;
  }
  50% {
    opacity: 0.4;
    scale: 0.7;
  }
}

/* スマホ用の切り抜きにはコピーが入らないので、そこだけ文字で補う */
.hero__catch {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.2rem);
  line-height: 1.4;
  color: var(--text);
}

.hero__lead {
  max-width: 34rem;
  color: var(--text-mid);
  font-size: var(--text-lead);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-mid);
}

.hero__info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.hero__info span::before {
  content: "";
  width: 0.42em;
  height: 0.42em;
  rotate: 45deg;
  background: var(--gold);
  box-shadow: var(--glow-gold);
}

/* PCではキービジュアル側にコピーがあるので重複を消す */
@media (min-width: 48rem) {
  .hero__catch {
    display: none;
  }
}

/* スマホは縦位置のキービジュアルに差し替わる。
   ヘッダーが画像内のロゴに被らないよう、画像はヘッダーの下から始める */
@media (max-width: 47.99rem) {
  .hero {
    padding-top: 3.4rem;
  }

  /* 縦画像にはキャッチコピーが入っているので、HTML側の文字は出さない */
  .hero__catch {
    display: none;
  }

  .hero__panel {
    margin-top: clamp(-2.4rem, -1.4rem - 2vw, -0.8rem);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ================= marquee ================= */

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-block: 0.8rem;
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 50%, var(--pink) 100%);
  border-block: 0;
  user-select: none;
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: 2.2rem;
  padding-right: 2.2rem;
  animation: marquee 32s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(0.82rem, 0.76rem + 0.35vw, 1rem);
  letter-spacing: 0.08em;
  color: var(--white);
}

.marquee span::after {
  content: "♡";
  color: var(--gold-soft);
}

@keyframes marquee {
  to {
    translate: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ================= news ================= */

.news {
  background: var(--cream);
}

.news__card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 52rem);
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 79, 157, 0.12), rgba(216, 164, 95, 0.1));
  border: 1.5px solid rgba(255, 140, 189, 0.5);
  box-shadow: var(--shadow-card), inset 0 0 40px rgba(255, 79, 157, 0.08);
}

.news__tag {
  justify-self: center;
  padding: 0.35em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  box-shadow: var(--glow-pink);
}

.news__title {
  font-size: var(--text-h3);
  color: var(--text);
}

.news__title em {
  display: inline-block;
  margin-top: 0.35em;
  font-style: normal;
  color: var(--gold-soft);
}

.news__body {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.9;
}

/* ================= concept ================= */

.concept {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.concept__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.6rem, 1rem + 2.4vw, 3rem);
  justify-items: center;
  text-align: center;
}

.concept__catch {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.7rem, 1.1rem + 2.8vw, 3.4rem);
  line-height: 1.5;
  color: var(--text);
}

.concept__lead {
  max-width: 42rem;
  color: var(--text-mid);
  line-height: 2.1;
}

.concept__creed {
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 0.95rem + 1.2vw, 1.9rem);
  color: var(--gold-soft);
}

.concept__cards {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.concept-card {
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.3rem, 1rem + 1.2vw, 2rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 201, 214, 0.9);
  text-align: left;
  transition: border-color var(--duration) var(--ease-out-expo),
    translate var(--duration) var(--ease-spring), box-shadow var(--duration) var(--ease-out-expo);
}

.concept-card__icon {
  width: 2.4rem;
  height: 1.2rem;
  background: var(--pink);
  mask: var(--ears) center / contain no-repeat;
  -webkit-mask: var(--ears) center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(255, 79, 157, 0.35));
}

.concept-card h3 {
  font-size: var(--text-h3);
  color: var(--text);
}

.concept-card p {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.95;
}

@media (hover: hover) {
  .concept-card:hover {
    translate: 0 -6px;
    border-color: var(--pink);
    box-shadow: 0 0 26px rgba(255, 79, 157, 0.18);
  }
}

/* ================= system ================= */

.system {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--champagne) 100%);
}

.system__grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.price-card {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1.5px solid rgba(216, 164, 95, 0.3);
  box-shadow: inset 0 0 30px rgba(216, 164, 95, 0.08);
}

.price-card--main {
  border-color: var(--pink);
  background: linear-gradient(150deg, rgba(255, 79, 157, 0.14) 0%, rgba(247, 230, 210, 0.9) 100%);
  box-shadow: var(--shadow-card);
}

.price-card__label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  color: var(--gold);
}

.price-card--main .price-card__label {
  color: var(--pink-deep);
}

.price-card__name {
  font-size: var(--text-h3);
  color: var(--text);
}

.price-card__price {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
}

.price-card__price small {
  font-size: 0.42em;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.price-card__note {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.9;
}

.price-card__tbd {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-lead);
  color: var(--gold-soft);
}

.system__notes {
  margin-top: clamp(1.2rem, 0.8rem + 1.4vw, 2rem);
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.1rem, 0.9rem + 1vw, 1.7rem);
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 140, 189, 0.55);
}

.system__notes li {
  position: relative;
  padding-left: 1.5em;
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.9;
}

.system__notes li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ================= cast ================= */

.cast {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.cast__list {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(1.1rem, 0.7rem + 1.6vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.cast-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem 0.85rem 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 234, 0.95));
  border: 1px solid rgba(255, 140, 189, 0.45);
  transition: translate var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease-out-expo), border-color var(--duration) linear;
}

.cast-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush-2);
}

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

.cast-card__photo--none {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(216, 164, 95, 0.55);
  background: repeating-linear-gradient(
    -45deg,
    rgba(216, 164, 95, 0.08) 0 10px,
    transparent 10px 20px
  );
}

.cast-card__noface {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--pink-deep);
  text-align: center;
}

.cast-card__noface small {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.cast-card__no {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.3em 0.85em;
  border-radius: 0 var(--radius) 0 var(--radius);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.9rem;
  line-height: 1.3;
  box-shadow: var(--glow-pink);
}

.cast-card__body {
  display: grid;
  gap: 0.5rem;
  padding-inline: 0.5rem;
}

.cast-card__meta {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--gold);
}

.cast-card__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  color: var(--text);
}

.cast-card__mbti {
  padding: 0.25em 0.8em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--font-en);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.cast-card__gap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
}

.cast-card__gap .from {
  color: var(--text-dim);
  text-decoration: line-through;
}

.cast-card__gap .arrow {
  color: var(--gold);
}

.cast-card__gap .to {
  color: var(--pink-soft);
}

.cast-card__profile {
  display: grid;
  gap: 0.1rem;
  margin: 0;
}

.cast-card__profile div {
  display: grid;
  gap: 0.05rem;
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(249, 201, 214, 0.8);
}

.cast-card__profile dt {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.cast-card__profile dd {
  margin: 0;
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.75;
}

@media (hover: hover) {
  .cast-card:hover {
    translate: 0 -8px;
    border-color: var(--pink);
    box-shadow: 0 0 34px rgba(255, 79, 157, 0.2);
  }
}

/* ================= membership ================= */

.membership {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush-2) 0%, var(--cream-2) 60%, var(--cream) 100%);
}

.membership__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.4rem, 1rem + 1.8vw, 2.4rem);
}

.membership__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4rem);
  color: var(--white);
}

.membership__price small {
  font-size: 0.32em;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

.membership__perks {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.perk {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 140, 189, 0.42);
}

.perk__num {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--pink-soft);
}

.perk h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.perk p {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.85;
}

.membership__limit {
  justify-self: center;
  padding: 0.5em 1.4em;
  border-radius: var(--radius-pill);
  border: 1.5px dashed var(--gold);
  color: var(--gold-soft);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
}

/* ================= access ================= */

.access {
  background: var(--cream);
}

.access__grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.6vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.info-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 201, 214, 0.9);
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-h3);
  color: var(--text);
}

.info-list {
  display: grid;
  gap: 0.1rem;
}

.info-list div {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 0.6rem;
  padding-block: 0.65rem;
  border-bottom: 1px solid rgba(249, 201, 214, 0.8);
}

.info-list dt {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
}

.info-list dd {
  margin: 0;
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.85;
}

.map-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--gold-soft);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  border-bottom: 1px solid currentColor;
}

/* ================= recruit ================= */

.recruit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blush) 0%, var(--champagne) 100%);
}

.recruit__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  text-align: center;
}

.recruit__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.recruit__points span {
  padding: 0.45em 1.2em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--pink);
  color: var(--pink-soft);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
}

/* ================= footer ================= */

.site-footer {
  padding-block: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
  background: var(--blush);
  border-top: 1px solid var(--rose);
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer img {
  width: clamp(150px, 22vw, 210px);
  filter: drop-shadow(0 8px 18px rgba(180, 110, 140, 0.24));
}

.site-footer p {
  color: var(--text-dim);
  font-size: var(--text-sm);
}

.sns {
  display: flex;
  gap: 0.8rem;
}

.sns a {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1.5px solid var(--pink-soft);
  background: var(--white);
  color: var(--pink-deep);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--duration-fast) linear, translate var(--duration-fast) var(--ease-spring);
}

@media (hover: hover) {
  .sns a:hover {
    translate: 0 -3px;
    border-color: var(--pink);
    box-shadow: 0 12px 24px rgba(255, 79, 157, 0.28);
  }
}

.copyright {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

/* ================= sticky cta ================= */

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: grid;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--rose);
  box-shadow: 0 -8px 24px rgba(180, 110, 140, 0.16);
  translate: 0 120%;
  transition: translate var(--duration) var(--ease-out-expo);
}

.sticky-cta.is-shown {
  translate: 0 0;
}

@media (min-width: 62rem) {
  .sticky-cta {
    display: none;
  }
}

/* ================= news list ================= */

.news__list {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 52rem);
  margin-inline: auto;
}

.news-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 0.6rem 1rem;
  padding: clamp(1rem, 0.8rem + 0.8vw, 1.5rem) clamp(1.1rem, 0.9rem + 1vw, 1.8rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 201, 214, 0.9);
  transition: border-color var(--duration) linear, box-shadow var(--duration) var(--ease-out-expo);
}

.news-item__date {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--gold);
}

.news-item__tag {
  padding: 0.15em 0.9em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--pink);
  color: var(--pink-soft);
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
}

.news-item__body {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.25rem;
}

.news-item__body h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.news-item__body p {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.9;
}

@media (min-width: 40rem) {
  .news-item__body {
    grid-column: 3;
  }
}

@media (hover: hover) {
  .news-item:hover {
    border-color: var(--pink);
    box-shadow: 0 0 24px rgba(255, 79, 157, 0.14);
  }
}

/* ================= today ================= */

.today {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream-2) 100%);
}

.today__board {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 2px dashed rgba(216, 164, 95, 0.5);
  box-shadow: inset 0 0 40px rgba(216, 164, 95, 0.08);
}

.today__label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.26em;
  color: var(--gold);
}

.today__lead {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: var(--text-h3);
  color: var(--text);
}

.today__note {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.95;
}

/* ================= contact ================= */

.contact {
  background: var(--cream);
}

.contact__card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 40rem);
  margin-inline: auto;
  padding: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(140deg, rgba(255, 79, 157, 0.12), rgba(216, 164, 95, 0.1));
  border: 1.5px solid rgba(255, 140, 189, 0.5);
  box-shadow: var(--shadow-card);
}

.contact__mail {
  font-family: var(--font-en);
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--text);
  word-break: break-all;
}

.contact__note {
  color: var(--text-mid);
  font-size: var(--text-sm);
}

/* ================= concept band ================= */

.concept-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.4rem, 2.4rem + 4vw, 6rem);
  background: linear-gradient(135deg, #ff5b9e 0%, #ff7fae 42%, #f0a878 100%);
}

/* 左右の人物。背景写真のまま置くと浮くので、外側へ向けて溶かす */
.concept-band__figure {
  position: absolute;
  bottom: 0;
  width: clamp(12rem, 22vw, 20rem);
  margin: 0;
  line-height: 0;
  opacity: 0.9;
  pointer-events: none;
}

.concept-band__figure img {
  width: 100%;
  height: auto;
  mask-image: radial-gradient(72% 62% at 50% 42%, #000 46%, transparent 78%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 42%, #000 46%, transparent 78%);
}

.concept-band__figure--l {
  left: clamp(-4rem, -2rem - 3vw, 0rem);
}

.concept-band__figure--r {
  right: clamp(-4rem, -2rem - 3vw, 0rem);
}

.concept-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
}

.concept-band__ja {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--cream);
}

.concept-band__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.concept-band__lead {
  max-width: 32rem;
  text-wrap: pretty;
  color: var(--cream);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.12rem);
  line-height: 2.1;
  text-shadow: 0 2px 14px rgba(150, 60, 100, 0.35);
}

.btn--cream {
  margin-top: 0.9rem;
  padding-inline: 2.6em;
  background: var(--cream);
  color: var(--pink-deep);
  box-shadow: 0 6px 0 rgba(255, 140, 189, 0.9), 0 18px 34px rgba(180, 110, 140, 0.28);
}

@media (hover: hover) {
  .btn--cream:hover {
    translate: 0 -3px;
    box-shadow: 0 8px 0 rgba(255, 140, 189, 0.9), 0 22px 40px rgba(180, 110, 140, 0.34);
  }
}

/* 狭い画面では人物を後ろに薄く敷く */
@media (max-width: 47.99rem) {
  .concept-band__figure {
    width: 9.5rem;
    opacity: 0.42;
  }

  .concept-band__figure--l {
    left: -3rem;
  }

  .concept-band__figure--r {
    right: -3rem;
  }
}

/* ================= lower page ================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6.5rem, 5rem + 6vw, 9rem) clamp(2.6rem, 2rem + 3vw, 4rem);
  background: linear-gradient(135deg, #ff5b9e 0%, #ff7fae 42%, #f0a878 100%);
  text-align: center;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.page-hero__ja {
  order: 2;
  max-width: 40rem;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.page-hero__en {
  order: 1;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: rgba(255, 244, 251, 0.72);
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumb {
  order: 3;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
  margin-top: 0.6rem;
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: rgba(255, 244, 251, 0.8);
}

.breadcrumb a {
  border-bottom: 1px solid currentColor;
}

/* コンセプト詳細ページの本文 */
.story {
  background: var(--cream-2);
}

.story__inner {
  display: grid;
  gap: clamp(2.4rem, 1.8rem + 2.6vw, 4rem);
  width: min(100%, 52rem);
  margin-inline: auto;
}

.story-block {
  display: grid;
  gap: 0.8rem;
}

.story-block__num {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--gold);
}

.story-block h2 {
  font-size: var(--text-h2);
  color: var(--text);
}

.story-block h2 .pink {
  color: var(--pink-soft);
}

.story-block p {
  color: var(--text-mid);
  line-height: 2.15;
}

.story-quote {
  display: grid;
  gap: 0.6rem;
  padding: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 79, 157, 0.12), rgba(216, 164, 95, 0.1));
  border: 1.5px solid rgba(255, 140, 189, 0.5);
  text-align: center;
}

.story-quote__label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.26em;
  color: var(--gold);
}

.story-quote p {
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 0.95rem + 1.2vw, 1.9rem);
  line-height: 1.7;
  color: var(--text);
}

.story-list {
  display: grid;
  gap: 0.7rem;
}

.story-list li {
  position: relative;
  padding-left: 1.7em;
  color: var(--text-mid);
  line-height: 2;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 1.1em;
  height: 0.55em;
  background: var(--pink);
  mask: var(--ears) center / contain no-repeat;
  -webkit-mask: var(--ears) center / contain no-repeat;
}

.story-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-round);
  font-weight: 900;
}

.page-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

/* 記号だけが行末に取り残されるのを防ぐ */
.nowrap {
  display: inline-block;
}

/* ================= price list / menu sheets ================= */

.price-list {
  display: grid;
  gap: 0.1rem;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.3rem 0.8rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid rgba(249, 201, 214, 0.8);
}

.price-list dt {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text);
}

.price-list dt span {
  display: block;
  margin-left: 0;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.price-list dd {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--pink-soft);
}

.menu-sheets {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.8rem);
  margin-top: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.menu-sheet {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0.7rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 140, 189, 0.45);
  transition: border-color var(--duration) linear, box-shadow var(--duration) var(--ease-out-expo);
}

.menu-sheet img {
  width: 100%;
  border-radius: var(--radius);
}

.menu-sheet figcaption {
  padding-bottom: 0.3rem;
  text-align: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold-soft);
}

@media (hover: hover) {
  .menu-sheet:hover {
    border-color: var(--pink);
    box-shadow: 0 0 28px rgba(255, 79, 157, 0.2);
  }
}

/* ================= reservation form ================= */

.reserve-form {
  display: grid;
  gap: 1.1rem;
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: clamp(1.4rem, 1rem + 1.8vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 140, 189, 0.45);
  box-shadow: var(--shadow-card);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.field label,
.check span {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text);
}

.field label small {
  display: block;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--gold);
}

.req {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.65em;
  border-radius: var(--radius-pill);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  vertical-align: 0.12em;
  box-shadow: 0 0 10px rgba(255, 79, 157, 0.35);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1.5px solid rgba(255, 140, 189, 0.55);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--duration-fast) linear, box-shadow var(--duration-fast) linear;
}

.field textarea {
  resize: vertical;
  min-height: 6em;
}

.field select {
  appearance: none;
  padding-right: 2.6em;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 1.25em) 55%, calc(100% - 0.85em) 55%;
  background-size: 0.42em 0.42em, 0.42em 0.42em;
  background-repeat: no-repeat;
}

/* 日付・時刻ピッカーのアイコンをブランド色に寄せる */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: sepia(1) saturate(6) hue-rotate(295deg) brightness(0.95);
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 164, 95, 0.3);
}

.reserve-form.is-checked :invalid {
  border-color: var(--pink);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(255, 140, 189, 0.5);
  cursor: pointer;
}

.check input {
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.2rem;
  accent-color: var(--pink);
}

.check span {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--text-mid);
}

.reserve-form.is-checked .check:has(:invalid) {
  border-color: var(--pink);
}

/* ハニーポット。人にもスクリーンリーダーにも見せない */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.reserve-form button[type="submit"] {
  justify-self: center;
  margin-top: 0.3rem;
}

.reserve-form button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  translate: none;
}

.reserve-form__status {
  min-height: 1.4em;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-mid);
}

.reserve-form__status.is-error {
  color: var(--pink-soft);
}

.reserve-done {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(140deg, rgba(255, 79, 157, 0.12), rgba(216, 164, 95, 0.1));
  border: 1.5px solid rgba(255, 140, 189, 0.55);
}

.reserve-done__mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
}

.reserve-done h3 {
  font-size: var(--text-h3);
  color: var(--text);
}

.reserve-done p {
  color: var(--text-mid);
  font-size: var(--text-sm);
}

.contact__card {
  margin-top: clamp(1.4rem, 1rem + 1.6vw, 2.2rem);
}

.sns {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.today__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

/* ================= entry (news / blog) ================= */

.entry {
  display: grid;
  gap: 1rem;
}

.entry__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-en);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: var(--gold);
}

.entry__title {
  font-size: var(--text-h2);
  color: var(--text);
}

.entry__thumb {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.entry__body {
  display: grid;
  gap: 1.1rem;
  color: var(--text-mid);
  line-height: 2.1;
}

.entry__body h2 {
  margin-top: 1rem;
  font-size: var(--text-h3);
  color: var(--text);
}

.entry__body h3 {
  font-size: 1.1rem;
  color: var(--text);
}

.entry__body a {
  color: var(--pink-deep);
  border-bottom: 1px solid currentColor;
}

.entry__body ul,
.entry__body ol {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.4em;
  list-style: revert;
}

.entry__body img {
  border-radius: var(--radius);
}

.entry__body blockquote {
  margin: 0;
  padding: 1rem 1.3rem;
  border-left: 3px solid var(--pink-soft);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.news-item__body h3 a {
  color: inherit;
}

@media (hover: hover) {
  .news-item__body h3 a:hover {
    color: var(--pink-deep);
  }
}

/* ================= pagination ================= */

.pagination {
  margin-top: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding-inline: 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--rose);
  color: var(--text-mid);
  font-family: var(--font-en);
  font-size: var(--text-sm);
}

.pagination .page-numbers.current {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ================= intro (結論ファーストの要約) ================= */

.intro {
  background: var(--cream);
}

.intro__lead {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding: clamp(1.3rem, 1rem + 1.4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow-soft);
  font-size: var(--text-lead);
  line-height: 2.1;
  color: var(--text-mid);
}

.intro__lead strong {
  color: var(--text);
  font-weight: 700;
}

/* 事実の一覧。AIが拾いやすいよう定義リストで持つ */
.fact-table {
  width: min(100%, 52rem);
  margin: clamp(1.2rem, 0.9rem + 1.2vw, 1.8rem) auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--rose);
  background: var(--white);
}

.fact-table dl {
  margin: 0;
}

.fact-table div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.4rem 1rem;
  padding: 0.85rem clamp(1rem, 0.8rem + 1vw, 1.6rem);
  border-bottom: 1px solid var(--blush);
}

.fact-table div:last-child {
  border-bottom: 0;
}

.fact-table div:nth-child(odd) {
  background: var(--cream-2);
}

.fact-table dt {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--pink-deep);
}

.fact-table dd {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 30rem) {
  .fact-table div {
    grid-template-columns: 1fr;
  }
}

/* ================= fit (向き不向きの開示) ================= */

.fit {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.fit__grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.fit-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: clamp(1.3rem, 1rem + 1.2vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow-soft);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-h3);
  color: var(--text);
}

.fit-card h3::before {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--white);
}

.fit-card--yes h3::before {
  content: "◯";
  background: var(--pink);
}

.fit-card--no h3::before {
  content: "×";
  background: var(--text-dim);
}

.fit-card ul {
  display: grid;
  gap: 0.55rem;
}

.fit-card li {
  position: relative;
  padding-left: 1.2em;
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--text-mid);
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.5em;
  height: 0.5em;
  rotate: 45deg;
  background: var(--pink-soft);
}

.fit-card--no li::before {
  background: var(--text-dim);
}

/* ================= faq ================= */

.faq {
  background: var(--cream-2);
}

.faq__list {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 52rem);
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--rose);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem clamp(1rem, 0.8rem + 1vw, 1.5rem);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.85rem;
}

.faq-item summary h3 {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-item summary::after {
  content: "";
  flex: none;
  margin-left: auto;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.5rem;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  rotate: 45deg;
  transition: rotate var(--duration-fast) var(--ease-out-expo);
}

.faq-item details[open] summary::after {
  rotate: -135deg;
}

.faq-item__answer {
  display: flex;
  gap: 0.8rem;
  padding: 0 clamp(1rem, 0.8rem + 1vw, 1.5rem) 1.2rem;
}

.faq-item__answer::before {
  content: "A";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.85rem;
}

.faq-item__answer p {
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--text-mid);
}

@media (hover: hover) {
  .faq-item:hover {
    border-color: var(--pink-soft);
  }
}

/* ================= recruit page ================= */

.culture__grid,
.holiday__grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.culture-card {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: clamp(1.3rem, 1rem + 1.2vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow-soft);
}

.culture-card__label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--gold);
}

.culture-card h3 {
  font-size: var(--text-h3);
  color: var(--text);
}

.culture-card p:not(.culture-card__label) {
  font-size: var(--text-sm);
  line-height: 1.95;
  color: var(--text-mid);
}

.holiday {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--blush) 100%);
}

.holiday-card {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px dashed var(--pink-soft);
}

.holiday-card__emoji {
  font-size: 2rem;
  line-height: 1;
}

.holiday-card h3 {
  font-size: var(--text-h3);
  color: var(--pink-deep);
}

.holiday-card__lead {
  font-family: var(--font-hand);
  font-size: var(--text-lead);
  color: var(--text);
}

.holiday-card p:not(.holiday-card__lead):not(.holiday-card__emoji) {
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--text-mid);
}

.holiday-card strong {
  color: var(--pink-deep);
}

/* 応募の流れ */
.flow__steps {
  display: grid;
  gap: clamp(0.9rem, 0.6rem + 1.2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  counter-reset: step;
}

.flow-step {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  padding: clamp(1.2rem, 1rem + 1vw, 1.7rem);
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--rose);
}

.flow-step__num {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--pink);
}

.flow-step h3 {
  font-size: 1.1rem;
  color: var(--text);
}

.flow-step p {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--text-mid);
}

/* ================= blog ================= */

.blog {
  background: var(--cream);
}

.blog-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
}

.blog-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.5em 1.2em;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--rose);
  color: var(--text-mid);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: border-color var(--duration-fast) linear, color var(--duration-fast) linear;
}

.blog-nav__item span {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.blog-nav__item.is-current {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.blog-nav__item.is-current span {
  color: rgba(255, 255, 255, 0.8);
}

@media (hover: hover) {
  .blog-nav__item:hover {
    border-color: var(--pink);
    color: var(--pink-deep);
  }
}

.post-list {
  display: grid;
  gap: clamp(1rem, 0.7rem + 1.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
}

.post-list--3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}

.post-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow-soft);
  transition: translate var(--duration) var(--ease-spring), box-shadow var(--duration) var(--ease-out-expo),
    border-color var(--duration) linear;
}

.post-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.post-card__thumb {
  aspect-ratio: 16 / 10;
  background: var(--blush);
  overflow: hidden;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale var(--duration-slow) var(--ease-out-expo);
}

.post-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--pink-soft);
}

.post-card__body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: clamp(0.9rem, 0.7rem + 0.8vw, 1.3rem);
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.post-card__cat {
  padding: 0.15em 0.75em;
  border-radius: var(--radius-pill);
  background: var(--blush);
  color: var(--pink-deep);
  font-family: var(--font-jp);
  font-weight: 700;
}

.post-card__title {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
}

.post-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--text-mid);
}

@media (hover: hover) {
  .post-card:hover {
    translate: 0 -5px;
    border-color: var(--pink-soft);
    box-shadow: var(--shadow-lift);
  }

  .post-card:hover .post-card__thumb img {
    scale: 1.05;
  }
}

/* ---------- 目次 ---------- */

.toc {
  padding: clamp(1.1rem, 0.9rem + 1vw, 1.7rem) clamp(1.2rem, 1rem + 1vw, 1.9rem);
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 1.5px solid var(--rose);
}

.toc__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-round);
  font-weight: 900;
  color: var(--text);
}

.toc__title::before {
  content: "";
  width: 1.5em;
  height: 0.75em;
  background: var(--pink);
  mask: var(--ears) center / contain no-repeat;
  -webkit-mask: var(--ears) center / contain no-repeat;
}

.toc__list {
  display: grid;
  gap: 0.35rem;
  counter-reset: toc;
}

.toc__item a {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.8;
  border-bottom: 1px solid transparent;
}

.toc__item--h2 {
  font-weight: 700;
}

.toc__item--h2 a {
  color: var(--text);
}

.toc__item--h3 {
  padding-left: 1.2em;
}

.toc__item--h3 a::before {
  content: "└ ";
  color: var(--pink-soft);
}

@media (hover: hover) {
  .toc__item a:hover {
    color: var(--pink-deep);
    border-bottom-color: currentColor;
  }
}

/* ---------- 記事メタ ---------- */

.entry__updated,
.entry__read {
  font-family: var(--font-jp);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0;
}

.entry__cats,
.entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.entry__cat {
  padding: 0.25em 0.9em;
  border-radius: var(--radius-pill);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-xs);
}

.entry__tags {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rose);
}

.entry__tags a {
  padding: 0.25em 0.85em;
  border-radius: var(--radius-pill);
  background: var(--cream-2);
  border: 1px solid var(--rose);
  color: var(--text-mid);
  font-size: var(--text-xs);
}

/* Gutenbergブロック */
.entry__body figure {
  margin: 0;
}

.entry__body figcaption {
  margin-top: 0.5rem;
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-align: center;
}

.entry__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.entry__body th,
.entry__body td {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rose);
  text-align: left;
}

.entry__body th {
  background: var(--blush);
  color: var(--text);
  font-weight: 700;
}

.entry__body tr:nth-child(even) td {
  background: var(--cream-2);
}

.entry__body .wp-block-table {
  overflow-x: auto;
}

.entry__body .wp-block-embed iframe,
.entry__body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius);
}

.entry__body hr {
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--pink-soft), transparent);
}

.entry__body code {
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: var(--cream-2);
  font-size: 0.9em;
}

/* ---------- 記事下CTA ---------- */

.entry-cta {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(140deg, rgba(255, 79, 157, 0.14), rgba(247, 230, 210, 0.9));
  border: 1.5px solid var(--pink-soft);
}

.entry-cta__label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  color: var(--pink-deep);
}

.entry-cta__title {
  font-size: var(--text-h2);
  color: var(--text);
}

.entry-cta__lead {
  max-width: 34rem;
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--text-mid);
}

.entry-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

/* ---------- 前後の記事 / 関連記事 ---------- */

.post-nav {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.post-nav__item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--rose);
}

.post-nav__item span {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--pink);
}

.post-nav__item strong {
  font-family: var(--font-round);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text);
}

.post-nav__item--next {
  text-align: right;
}

.related__title {
  margin-bottom: 1rem;
  font-size: var(--text-h3);
  color: var(--text);
}

/* ---------- 検索フォーム ---------- */

.searchform {
  display: flex;
  gap: 0.5rem;
  width: min(100%, 26rem);
  margin-inline: auto;
}

.searchform input {
  flex: 1;
  padding: 0.8em 1em;
  border: 1.5px solid var(--rose);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  color: var(--text);
}

.searchform input:focus {
  outline: none;
  border-color: var(--pink);
}

/* ---------- クラシックエディタで書かれた記事向け ---------- */

.entry__body dl {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--rose);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.entry__body dt {
  padding: 0.7rem 1rem 0.2rem;
  background: var(--blush);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text);
}

.entry__body dd {
  margin: 0;
  padding: 0.2rem 1rem 0.8rem;
  background: var(--blush);
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--text-mid);
}

@media (min-width: 40rem) {
  .entry__body dl {
    grid-template-columns: 11rem 1fr;
  }

  .entry__body dt,
  .entry__body dd {
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--rose);
  }

  .entry__body dt {
    background: var(--cream-2);
  }

  .entry__body dd {
    background: var(--white);
  }

  .entry__body dl > :nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

.entry__body mark {
  padding: 0.1em 0.2em;
  border-radius: 4px;
  color: var(--text);
}

.entry__body .wp-block-image,
.entry__body .size-large,
.entry__body .alignwide,
.entry__body .aligncenter {
  margin-inline: auto;
}

.entry__body .wp-block-image img,
.entry__body img {
  border-radius: var(--radius);
}

.entry__body .alignleft {
  float: left;
  margin: 0 1.2rem 0.8rem 0;
  max-width: 50%;
}

.entry__body .alignright {
  float: right;
  margin: 0 0 0.8rem 1.2rem;
  max-width: 50%;
}

.entry__body::after {
  content: "";
  display: block;
  clear: both;
}

.entry__body h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pink-soft);
}

.entry__body h3 {
  padding-left: 0.7rem;
  border-left: 4px solid var(--pink);
}
