@charset "UTF-8";

/* =========================================================
   Common
========================================================= */
@font-face {
  font-family: "Brice SemiExpanded";
  src: url("./brice-regular-semiexpanded.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-en: "Brice SemiExpanded", "Zen Kaku Gothic New", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;

  --cream: #fffaf0;
  --ivory: #fffdf4;
  --yellow: #fff2a8;
  --aqua: #d9f5f0;
  --pink: #ffe2da;
  --coral: #ef6b5e;
  --turquoise: #0098b5;
  --ink: #3f4243;
  --muted: #707b78;
  --line: rgba(116, 130, 126, 0.2);
  --shadow: 0 26px 60px rgba(125, 92, 58, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 15%, rgba(255, 241, 151, 0.5), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(209, 247, 240, 0.65), transparent 28%),
    linear-gradient(135deg, #fff9dc 0%, #ffe8df 49%, #dff8f2 100%);
  font-family: var(--font-ja);
  font-feature-settings: "palt";
  letter-spacing: 0;
}

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

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

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
  scroll-margin-top: 24px;
}

.section-title {
  margin: 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.section-title--center {
  text-align: center;
}

.section-title--coral {
  color: var(--coral);
}

.section-kicker {
  margin: 18px 0 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.section-kicker--center {
  text-align: center;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.button--primary {
  min-width: 190px;
  padding: 0 22px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 22px rgba(239, 107, 94, 0.22);
}

.button--ghost {
  min-width: 144px;
  padding: 0 20px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(239, 107, 94, 0.48);
}

/* =========================================================
   Sticky Side Areas
========================================================= */
/* =========================================================
   Three-column layout
========================================================= */
.site-layout {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(210px, 1fr)
    minmax(520px, 560px)
    minmax(240px, 1fr);
  gap: 0;
  align-items: start;
  margin: 0;

  /* 全体のベースカラー */
  background: linear-gradient(
    90deg,
    #fff5ce 0%,
    #fff9e8 30%,
    #fffaf0 50%,
    #f2f9ec 72%,
    #e9f6ee 100%
  );
}

/* FVからCONCEPTへつなぐ淡いフェード */
.site-layout::before {
  position: absolute;
  z-index: 0;
  top: -90px;
  right: 0;
  left: 0;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 246, 215, 0) 0%,
    rgba(255, 246, 215, 0.86) 48%,
    rgba(255, 248, 226, 0) 100%
  );
  filter: blur(12px);
}

/* 左右・上下に広がるパステルのもや */
.site-layout::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.82;
  background:
    /* 左上：淡いオレンジ */
    radial-gradient(
      ellipse 48% 24% at -8% 7%,
      rgba(255, 202, 139, 0.48) 0%,
      rgba(255, 220, 170, 0.22) 48%,
      transparent 76%
    ),

    /* 右上：淡い水色 */
    radial-gradient(
      ellipse 48% 26% at 108% 12%,
      rgba(177, 229, 231, 0.52) 0%,
      rgba(205, 239, 235, 0.24) 50%,
      transparent 78%
    ),

    /* 左中央：淡いピンク */
    radial-gradient(
      ellipse 42% 22% at -4% 44%,
      rgba(255, 190, 204, 0.36) 0%,
      rgba(255, 220, 224, 0.18) 52%,
      transparent 78%
    ),

    /* 右中央：淡いオレンジピンク */
    radial-gradient(
      ellipse 44% 24% at 106% 59%,
      rgba(255, 204, 178, 0.42) 0%,
      rgba(255, 229, 209, 0.18) 52%,
      transparent 80%
    ),

    /* 左下：淡い水色 */
    radial-gradient(
      ellipse 52% 25% at -6% 88%,
      rgba(174, 225, 234, 0.44) 0%,
      rgba(211, 241, 239, 0.2) 52%,
      transparent 80%
    ),

    /* 右下：淡いピンク */
    radial-gradient(
      ellipse 52% 27% at 108% 94%,
      rgba(255, 190, 207, 0.4) 0%,
      rgba(255, 220, 224, 0.18) 52%,
      transparent 80%
    ),

    /* 上部中央の明るさ */
    radial-gradient(
      ellipse 60% 16% at 50% 0%,
      rgba(255, 234, 168, 0.27) 0%,
      transparent 76%
    ),

    /* 下部中央の水色 */
    radial-gradient(
      ellipse 62% 18% at 50% 100%,
      rgba(188, 232, 235, 0.24) 0%,
      transparent 78%
    );

  filter: blur(30px);
}

.left-brand,
.right-menu,
.lp {
  position: relative;
  z-index: 1;
}

.left-brand,
.right-menu {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: visible;
  background: transparent;
}

.lp {
  width: 100%;
  max-width: 560px;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.38);
  box-shadow: none;
}

.left-brand,
.right-menu {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: visible;
}

.left-brand__logo {
  display: block;
  width: max-content;
  max-width: none;
  overflow: visible;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  text-overflow: clip;
  text-decoration: none; 
}

.left-brand__logo:hover,
.left-brand__logo:focus-visible {
  text-decoration: none;
}



.left-brand__logo span {
  display: block;
  margin-top: 16px;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

body {
  background: linear-gradient(
    180deg,
    #fff8df 0%,
    #f6faee 54%,
    #eaf6f2 100%
  );
}

/* =========================================================
   Floating pastel menu
========================================================= */
.right-menu__panel {
  position: relative;
  isolation: isolate;
  width: min(100%, 264px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 36px 30px 30px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 252, 0.84) 0%,
    rgba(255, 247, 213, 0.68) 46%,
    rgba(226, 246, 239, 0.72) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.9);

  /* 半円アーチではなく、柔らかな非対称形 */
  border-radius: 30px;

  box-shadow:
    0 28px 65px rgba(88, 115, 99, 0.14),
    0 8px 24px rgba(255, 205, 128, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px) saturate(125%);
  animation: menu-float 5.5s ease-in-out infinite;
}

/* パネル内部の淡い色の重なり */
.right-menu__panel::before {
  position: absolute;
  z-index: -1;
  inset: -30%;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 218, 133, 0.32),
    rgba(255, 244, 221, 0.1) 45%,
    rgba(171, 229, 217, 0.3)
  );
  filter: blur(38px);
}

.right-menu__panel::after {
  position: absolute;
  z-index: -1;
  inset: 9px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius:22px;
}

.right-menu__panel a:not(.right-menu__button) {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 50px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 2px;
  color: var(--turquoise);
  border-bottom: 1px solid rgba(239, 107, 94, 0.2);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.18;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.right-menu__number {
  display: block;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.right-menu__label {
  display: block;
  min-width: 0;
  font-size: 15px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.right-menu__panel a:not(.right-menu__button):hover {
  padding-left: 6px;
  color: var(--coral);
}

/* パネル内CTA */
.right-menu__button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 28px;
  padding: 14px 18px;
  color: #fff;
  background: var(--coral);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 13px 27px rgba(239, 107, 94, 0.27);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.right-menu__button:hover {
  color: #fff;
  background: #e95e53;
  box-shadow: 0 16px 32px rgba(239, 107, 94, 0.32);
  transform: translateY(-2px);
}

@keyframes menu-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .right-menu__panel {
    animation: none;
  }
}

/* =========================================================
   First View
========================================================= */
.fv {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 251, 215, 0.96) 0%, rgba(255, 251, 215, 0.78) 34%, rgba(231, 249, 244, 0.28) 58%, rgba(255, 227, 218, 0.16) 100%),
    linear-gradient(180deg, #fffbd5 0%, #eafaf5 52%, #ffe6dd 100%);
}

.fv__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 251, 215, 0.94) 0%, rgba(255, 251, 215, 0.72) 31%, rgba(255, 251, 215, 0.12) 56%, rgba(255, 251, 215, 0) 100%);
}

.fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.fv__content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 24px;
  padding-left: 0;
}

.fv__lead {
  margin: 0 0 20px;
  color: var(--turquoise);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fv__title {
  width: min(650px, 49vw);
  margin: 0;
  color: var(--turquoise);
  font-size: clamp(40px, 3.65vw, 54px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.02em;
}

.fv__brand-wrap {
  width: min(520px, 48vw);
  margin-top: 28px;
  text-align: center;
}

.fv__brand {
  margin: 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.fv__sub {
  margin: 4px 0 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.fv__bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(650px, 49vw);
  margin-top: 36px;
}
/* FV CTAボタン */
.fv__bottom .button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 62px;
  padding: 18px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background-color: var(--coral);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(239, 103, 91, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.fv__bottom .button--primary:hover {
  background-color: #e95e53;
  box-shadow: 0 10px 22px rgba(239, 103, 91, 0.3);
  transform: translateY(-2px);
}

.fv__bottom .button--primary:focus-visible {
  outline: 3px solid rgba(0, 151, 178, 0.35);
  outline-offset: 3px;
}
.fv__month {
  margin: 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.fv__month span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* =========================================================
   Concept
========================================================= */
.concept {
  position: relative;
  isolation: isolate;
  min-height: 980px;
  padding: 88px 34px 90px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(255, 249, 226, 0) 0%,
    rgba(255, 252, 241, 0.68) 10%,
    rgba(255, 251, 237, 0.9) 50%,
    rgba(255, 252, 241, 0.68) 90%,
    rgba(255, 249, 226, 0) 100%
  );
}

.concept::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(
    145deg,
    rgba(255, 225, 150, 0.2),
    rgba(255, 244, 220, 0.08) 46%,
    rgba(203, 239, 229, 0.18)
  );
  filter: blur(24px);
}

.concept .section-title {
  margin: 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.concept .section-kicker {
  margin-top: 16px;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 物語カード */
.concept__card {
  position: relative;
  width: min(100%, 468px);
  min-height: 650px;
  box-sizing: border-box;
  margin: 42px auto 0;
  padding: 52px 52px 46px;
  background: rgba(255, 255, 252, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(132, 105, 70, 0.1);
  backdrop-filter: blur(12px);
}

/* 太陽の中心 */
.concept__card::before {
  position: absolute;
  z-index: 3;
  top: 46px;
  right: 46px;
  width: 20px;
  height: 20px;
  content: "";
  pointer-events: none;
  background: #ffd55f;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 213, 95, 0.26);
}

/* 太陽の光 */
.concept__card::after {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  content: "";
  pointer-events: none;
  background: repeating-conic-gradient(
    from 3deg,
    rgba(255, 207, 74, 0.92) 0deg 7deg,
    transparent 7deg 17deg
  );
  border-radius: 50%;
  -webkit-mask: radial-gradient(
    circle,
    transparent 0 29%,
    #000 30% 64%,
    transparent 65%
  );
  mask: radial-gradient(
    circle,
    transparent 0 29%,
    #000 30% 64%,
    transparent 65%
  );
}

.concept__card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  padding-right: 72px;
  color: #38534f;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.concept__card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #5f5149;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.035em;
}
.concept__card .concept__quote {
  margin: 24px 0;
  color: #ff523e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: left;
}

/* =========================================================
   What's In The Box
========================================================= */
.box {
  padding: 94px 42px 88px;
  background: var(--ivory);
}

/* 見出しと導入文 */
.box__head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 54px;
}

.box .section-title {
  margin: 0;
  color: var(--coral);
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.035em;

  /* IN THEを途中で折り返さない */
  white-space: nowrap;
}

/* 右側の文章ブロック */
.box__intro {
  width: 100%;
  max-width: 225px;
  justify-self: end;
  align-self: end;
  padding: 0 0 4px;
  text-align: right;
}

.box__intro h2 {
  margin: 0 0 13px;
  color: #3f4c49;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: right;
}

.box__intro p {
  margin: 0;
  color: #68716e;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.015em;
  text-align: right;
}

/* 商品一覧 */
.box__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 48px;
}

/* 商品カード */
.item-card {
  position: relative;
  min-width: 0;
  min-height: 0;
}

/* 商品画像 */
.item-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ffe9df;
  box-shadow: 0 12px 28px rgba(126, 93, 62, 0.08);
}



/* 商品タイトル */
.item-card h3 {
  width: max-content;
  max-width: 100%;
  display: block;
  margin: -1px 0 12px;
  padding: 7px 10px;
  color: #fff;
  background: var(--coral);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}

/* 商品説明 */
.item-card p {
  margin: 0;
  padding: 0 4px 0 0;
  color: #56615d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-align: left;
}

/* =========================================================
   WHAT'S IN THE BOX animation
========================================================= */


/* 導入文 */
#box .box__intro {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease 0.35s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

#box .box__head.is-visible .box__intro {
  opacity: 1;
  transform: translateX(0);
}

/* カード */
#box .item-card {
  position: relative;
  overflow: hidden;
  transform: translateY(55px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  will-change: opacity, transform;
}

#box .item-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* カードを順番に表示 */
#box .item-card:nth-child(1) {
  transition-delay: 0ms;
}

#box .item-card:nth-child(2) {
  transition-delay: 100ms;
}

#box .item-card:nth-child(3) {
  transition-delay: 200ms;
}

#box .item-card:nth-child(4) {
  transition-delay: 300ms;
}

#box .item-card:nth-child(5) {
  transition-delay: 400ms;
}

#box .item-card:nth-child(6) {
  transition-delay: 500ms;
}

/* 画像 */
#box .item-card img {
  display: block;
  transform: scale(1.08);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

#box .item-card.is-visible img {
  transform: scale(1);
}



/* カードタイトル・説明 */
#box .item-card h3,
#box .item-card p {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#box .item-card h3 {
  transition-delay: 0.3s;
}

#box .item-card p {
  transition-delay: 0.4s;
}

#box .item-card.is-visible h3,
#box .item-card.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

/* PCのホバー演出 */
@media (hover: hover) {
  #box .item-card.is-visible:hover {
    z-index: 2;
    box-shadow: 0 20px 42px rgba(91, 67, 49, 0.14);
    transform: translateY(-8px);
  }

  #box .item-card:hover img {
    filter: saturate(1.06) brightness(1.02);
    transform: scale(1.045);
  }
}

/* スマートフォンでは表示間隔を短くする */
@media (max-width: 767px) {
  #box .box__intro {
    transform: translateY(25px);
  }

  #box .box__head.is-visible .box__intro {
    transform: translateY(0);
  }

  #box .item-card:nth-child(n) {
    transition-delay: 0ms;
  }
}

/* アニメーションを減らすOS設定 */
@media (prefers-reduced-motion: reduce) {
  #box .box__head,
  #box .box__intro,
  #box .item-card,
  #box .item-card img,
  #box .item-card > span,
  #box .item-card h3,
  #box .item-card p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #box .section-title::after {
    display: none;
  }
}

/* =========================================================
   12 Month Themes
========================================================= */
/* 12 MONTH上部のぼかしグラデーション */
.theme::before {
  position: absolute;
  z-index: 0;
  top: -20px;
  right: -5%;
  left: -5%;
  height: 170px;
  content: "";
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 250, 244, 1) 0%,
    rgba(235, 248, 242, 0.78) 42%,
    rgba(223, 246, 242, 0) 100%
  );

  filter: blur(14px);
}

/* 文字やカードをグラデーションより前に表示 */
.theme > * {
  position: relative;
  z-index: 1;
}
.theme {
  min-height: 760px;
  padding: 76px 0 70px;
  overflow: hidden;
  padding-bottom: clamp(120px, 12vw, 170px);
  background:
    radial-gradient(
      circle at 86% 10%,
      rgba(255, 234, 92, 0.42),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #dff6f2 0%,
      #f4fbf2 50%,
      #fff4b8 100%
    );
}

/* 左右のタイトルエリア */
.theme__header {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(360px, 1.1fr);
  gap: 64px;
  align-items: start;
  padding: 0 70px;
}

/* 左側：12 MONTH THEMES＋説明文 */
.theme__title-area {
  text-align: left;
}

/* 12 MONTH THEMES */
.theme__title-area .section-title {
  margin: 0;
  color: #0799b5;
  font-family: var(--font-en);
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.theme__title-area .section-title span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* タイトル下の説明文 */
.theme__description {
  width: 100%;
  margin: 54px 0 0;
  color: #536965;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: left;
}

/* 右側のタイトルグループ */
.theme__intro {
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 0;
  text-align: right;
}

/* A SEASON FOR EVERY MONTH */
.theme__kicker {
  margin: 0 0 22px;
  padding: 0;
  font-family: var(--font-en);
  line-height: 1;
  text-align: right;
}

/* 12か月、それぞれの季節を ひと箱に。 */
.theme__intro h2 {
  margin: 0;
  text-align: right;
}

/* ← SCROLL TO EXPLORE → */
.theme__drag {
  margin: 34px 70px 0;
  color: var(--coral);
  font-family: var(--font-en);
}

.theme__drag span {
  color: inherit;
}
/* カードエリア */
.theme__slider {
  width: 100%;
  min-width: 0;
  margin-top: 50px;
}


.theme__rail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 42px;

  width: 100%;
  padding: 10px 70px 24px;
  box-sizing: border-box;

  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;

  /* Firefoxのスクロールバー */
  scrollbar-width: auto;
  scrollbar-color: #0799b5 rgba(7, 153, 181, 0.16);
}

/* Chrome・Edge・Safariのスクロールバー */
.theme__rail::-webkit-scrollbar {
  height: 10px;
}

.theme__rail::-webkit-scrollbar-track {
  margin-inline: 70px;
  background: rgba(7, 153, 181, 0.16);
  border-radius: 999px;
}

.theme__rail::-webkit-scrollbar-thumb {
  min-width: 120px;
  background: #0799b5;
  border-radius: 999px;
}

.theme__rail::-webkit-scrollbar-thumb:hover {
  background: #057e97;
}

.month-card {
  flex: 0 0 170px;
  width: 170px;
  min-width: 170px;
  padding: 0 0 22px;
  background: transparent;
  text-align: center;
  scroll-snap-align: start;
}

.month-card__image {
  display: block;
  width: 170px;
  height: 170px;
  margin: 0;
  object-fit: cover;
  background: #fff;
  border: 9px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 14px 34px rgba(83, 111, 100, 0.15);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.theme-card:nth-child(odd) img {
  transform: rotate(-2deg);
}

.theme-card:nth-child(even) img {
  transform: rotate(2deg);
}

.theme-card:hover img {
  transform: rotate(0) scale(1.05);
  box-shadow: 0 18px 40px rgba(83, 111, 100, 0.22);
}

/* JAN・FEBなどの季節名*/
.month-card {
  margin: 18px 0 7px;
   color: var(--coral); 
  font-family: var(--font-en);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.month-card h3 {
  margin: 0;
  color: #343b3f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

/*
  以前の装飾用進捗バーは非表示
  実際に操作できるスクロールバーへ変更
*/
.theme__scrollbar {
  display: none;
}

/* 下部注釈：12px以上・濃い文字色 */
.theme__disclaimer {
  margin: 32px 70px 0;
  color: #53615e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* CTA全体 */
.theme__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 58px;
  text-align: center;
}

/* ボタン上のテキスト */
.theme__cta-note {
  width: auto;
  margin: 0 0 16px;
  color: #596762;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
}

/* CTAボタン */
.theme__cta-button {
  width: min(100%, 360px);
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 30px;
  box-sizing: border-box;

  font-size: 15px;
  box-shadow: 0 16px 32px rgba(239, 107, 94, 0.3);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* 矢印 */
.theme__cta-button span {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.theme__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(239, 107, 94, 0.36);
}

.theme__cta-button:hover span {
  transform: translateX(5px);
}
/* REASONとのつなぎ目をぼかす */
.theme::after {
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: -35px;
  left: -5%;

  height: 150px;
  content: "";
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 244, 184, 0) 0%,
    rgba(255, 246, 210, 0.52) 42%,
    rgba(255, 250, 240, 0.96) 100%
  );

  filter: blur(16px);
}

/* 内容をぼかし背景より前へ出す */
.theme > * {
  position: relative;
  z-index: 1;
}

/* スマートフォン */
@media (max-width: 768px) {
  .theme {
    padding-bottom: 110px;
  }

  .theme__cta {
    margin-top: 44px;
  }

  .theme__cta-note {
    font-size: 11px;
  }

  .theme__cta-button {
    width: 100%;
    max-width: 290px;
    min-width: 0;
    padding-inline: 20px;
    font-size: 13px;
  }
}

/* タブレット・スマートフォン */
@media (max-width: 768px) {
  .theme {
    padding: 56px 0 60px;
  }

  .theme__head {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  .theme__title {
    font-size: clamp(52px, 17vw, 72px);
  }

  .theme__heading {
    text-align: right;
  }

  .theme__heading h2 {
    font-size: 21px;
  }

  .theme__lead {
    width: auto;
    margin: 40px 24px 0;
    font-size: 14px;
  }

  .theme__drag {
    margin: 28px 24px 0;
  }

  .theme__rail {
    gap: 26px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .theme__rail::-webkit-scrollbar-track {
    margin-inline: 24px;
  }

  .theme__disclaimer {
    margin: 28px 24px 0;
    font-size: 12px;
  }
}
/* =========================================================
   Reason
========================================================= */
.reason {
  width: 100%;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(180px, 22%) minmax(0, 78%);
  column-gap: 32px;
  align-items: start;

  padding: 34px 7vw 52px 4vw;
  box-sizing: border-box;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 244, 194, 0.34) 0%,
      rgba(255, 250, 238, 0.88) 46%,
      rgba(232, 247, 236, 0.5) 100%
    ),
    #fffaf0;
}

/* 左側：縦書きのREASON */
.reason__axis {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

.reason .section-title {
  margin: 0;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: clamp(56px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* 右側コンテンツ全体 */
.reason__content {
  min-width: 0;
  padding-top: 70px;
}

/* 上部：商品画像＋右側テキスト */
.reason__intro {
  display: grid;
  grid-template-columns: minmax(220px, 36%) minmax(340px, 64%);
  column-gap: clamp(50px, 7vw, 110px);
  align-items: start;
  margin: 0;
}

/* 商品画像 */
.reason__image {
  width: clamp(150px, 16vw, 210px);
  margin: 0 auto;
  align-self: start;
  justify-self: center;
}

.reason__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 16px 24px rgba(119, 91, 62, 0.14));
  transform: translateX(60px) translateY(90px);
}


/* 右側のテキストグループ */
.reason__intro-copy {
  grid-column: 2;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  justify-self: center;
  align-self: start;
  padding-top: 0;
  text-align: center;
}

/* WHY KISETSU BOX? */
.reason__sub {
  width: 100%;
  margin: 0 0 28px;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

/* KISETSU BOXだから叶う、5つのこと。 */
.reason__heading,
.reason__intro-copy h2 {
  width: 100%;
  margin: 0 0 18px;
  color: #4d5251;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-align: center;
}

/* 説明文 */
.reason__small {
  width: fit-content;
  margin: 0 auto;
  color: #4f5b57;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: left;
}

/* 01〜05のリスト */
.reason-list {
  width: 100%;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

/* 01〜05の番号 */
.reason-list li > span {
  padding: 24px 0;
  color: var(--coral);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

/* 各理由の本文 */
.reason-list li > p {
  margin: 0;
  padding: 24px 0;
  color: #4d5754;
  border-bottom: 1px dashed rgba(89, 106, 100, 0.32);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: left;
}

.reason-list li:last-child > p {
  border-bottom: 0;
}

/* タブレット・スマートフォン */
@media (max-width: 768px) {
  .reason {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 18px;
    padding: 54px 22px 48px 14px;
  }

  .reason .section-title {
    font-size: 42px;
  }

  .reason__content {
    padding-top: 0;
  }

  .reason__intro {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .reason__image {
    width: 150px;
  }

  .reason__intro-copy {
    justify-self: stretch;
  }

  .reason__sub,
  .reason__heading,
  .reason__intro-copy h2 {
    text-align: center;
  }

  .reason__small {
    font-size: 12px;
  }

  .reason-list {
    margin-top: 42px;
  }

  .reason-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
  }

  .reason-list li > span {
    font-size: 18px;
  }

  .reason-list li > p {
    font-size: 13px;
  }
}
/* =========================================================
   Reason Scroll Animation
========================================================= */

/* JavaScriptが動作する場合のみ非表示にする */
.reason-list.is-animated li {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* スクロールで表示 */
.reason-list.is-animated.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

/* 01〜05を順番に表示 */
.reason-list.is-animated li:nth-child(1) {
  transition-delay: 0s;
}

.reason-list.is-animated li:nth-child(2) {
  transition-delay: 0.12s;
}

.reason-list.is-animated li:nth-child(3) {
  transition-delay: 0.24s;
}

.reason-list.is-animated li:nth-child(4) {
  transition-delay: 0.36s;
}

.reason-list.is-animated li:nth-child(5) {
  transition-delay: 0.48s;
}

/* 動きを減らす設定をしている端末への対応 */
@media (prefers-reduced-motion: reduce) {
  .reason-list.is-animated li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .reason__intro {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
  }

  .reason__image {
    width: 132px;
  }

  .reason__sub {
    font-size: 12.5px;
  }

  .reason__small {
    font-size: 13px;
  }
}

.reason::after {
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: -24px;
  left: -5%;
  height: 130px;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 0) 0%,
    rgba(255, 243, 233, 0.48) 44%,
    rgba(255, 226, 218, 0.94) 100%
  );
  filter: blur(14px);
}

.reason > * {
  position: relative;
  z-index: 1;
}
/* =========================================================
   Reason CTA
========================================================= */

.reason {
  position: relative;

  /* SCENEとの間に広めの余白を確保 */
  padding-bottom: clamp(120px, 12vw, 170px);
}

/* CTA全体 */
.reason__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 54px;
  text-align: center;
}

/* ボタン上の補足文 */
.reason__cta-note {
  margin: 0 0 16px;
  color: #596762;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* REASON専用CTAボタン */
.reason__cta-button {
  width: min(100%, 360px); /* 300px → 360px */
  min-height: 60px;        /* 52px → 60px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 32px;

  font-size: 15px;
  box-sizing: border-box;
  box-shadow: 0 16px 32px rgba(239, 107, 94, 0.3);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
/* 矢印 */
.reason__cta-button span {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* ホバー */
.reason__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(239, 107, 94, 0.34);
}

.reason__cta-button:hover span {
  transform: translateX(5px);
}

/* スマートフォン */
@media (max-width: 768px) {
  .reason {
    padding-bottom: 110px;
  }

  .reason__cta {
    margin-top: 42px;
  }

  .reason__cta-note {
    font-size: 11px;
  }

  .reason__cta-button {
    width: calc(100% - 48px);
    max-width: 330px;
    min-height: 56px;
    padding-inline: 22px;
    font-size: 14px;
  }
}

/* 動きを減らす設定への対応 */
@media (prefers-reduced-motion: reduce) {
  .reason__cta-button,
  .reason__cta-button span {
    transition: none;
  }

  .reason__cta-button:hover {
    transform: none;
  }
}

/* ==============================
   SCENE
================================= */

.scene {
  --scene-coral: #f06f62;
  --scene-text: #38322f;
  --scene-bg: #fff4ee;

  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 24px;
  color: var(--scene-text);
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.82) 0,
      rgba(255, 255, 255, 0) 42%
    ),
    linear-gradient(180deg, #fde9e2 0%, var(--scene-bg) 100%);
}

.scene::before,
.scene::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.35;
}

.scene::before {
  top: -180px;
  left: -160px;
  background: #ffd9d1;
}

.scene::after {
  right: -180px;
  bottom: -210px;
  background: #fff0bd;
}

.scene__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.scene__header {
  text-align: center;
}

.scene__label {
  margin: 0;
  color: var(--scene-coral);
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}

.scene__title {
  margin: 20px 0 0;
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.scene__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(30px, 6vw, 76px);
  margin-top: clamp(80px, 11vw, 140px);
  padding-inline: clamp(0px, 3vw, 30px);
}

.scene-card {
  position: relative;
  margin: 0;
  padding: 18px 18px 28px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(113, 73, 55, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}

.scene-card--open {
  transform: rotate(-7deg);
}

.scene-card--decorate {
  margin-top: 22px;
  transform: rotate(3deg);
}

.scene-card--share {
  transform: rotate(8deg);
}

.scene-card:hover {
  z-index: 2;
  box-shadow: 0 28px 55px rgba(113, 73, 55, 0.17);
}

.scene-card--open:hover {
  transform: rotate(-3deg) translateY(-14px);
}

.scene-card--decorate:hover {
  transform: rotate(0deg) translateY(-14px);
}

.scene-card--share:hover {
  transform: rotate(3deg) translateY(-14px);
}

.scene-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f1ebe7;
}

.scene-card__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 50%
  );
  content: "";
  pointer-events: none;
}

.scene-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-card:hover .scene-card__photo img {
  transform: scale(1.06);
}

.scene-card__body {
  padding: 16px 6px 0;
}

.scene-card h3 {
  margin: 0 0 10px;
  color: #ff594c;
  font-family: var(--font-en);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.scene-card p {
  margin: 0;
  font-family: inherit;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.scene__closing {
  margin-top: clamp(80px, 10vw, 130px);
  text-align: center;
}

.scene__closing-lead {
  margin: 0;
  font-family: inherit;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.12em;
}

.scene__message {
  margin: 20px 0 0;
  color: #ff594c;
  font-family: inherit;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.scene__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: min(100%, 320px);
  margin-top: 38px;
  padding: 18px 30px;
  border: 1px solid var(--scene-coral);
  border-radius: 100px;
  color: #fff;
  background: var(--scene-coral);
  box-shadow: 0 12px 30px rgba(240, 111, 98, 0.25);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.scene__cta:hover {
  color: var(--scene-coral);
  background: #fff;
  box-shadow: 0 16px 34px rgba(240, 111, 98, 0.2);
  transform: translateY(-4px);
}

.scene__cta-arrow {
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

.scene__cta:hover .scene__cta-arrow {
  transform: translateX(7px);
}

/* スクロールアニメーション */
.js-scene-reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scene-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* カード本来の傾きを維持 */
.scene-card--open.js-scene-reveal {
  transform: translateY(55px) rotate(-7deg);
}

.scene-card--decorate.js-scene-reveal {
  transform: translateY(70px) rotate(3deg);
}

.scene-card--share.js-scene-reveal {
  transform: translateY(55px) rotate(8deg);
}

.scene-card--open.js-scene-reveal.is-visible {
  transform: translateY(0) rotate(-7deg);
}

.scene-card--decorate.js-scene-reveal.is-visible {
  transform: translateY(0) rotate(3deg);
}

.scene-card--share.js-scene-reveal.is-visible {
  transform: translateY(0) rotate(8deg);
}

.scene-card--open.is-visible:hover {
  transform: rotate(-3deg) translateY(-14px);
}

.scene-card--decorate.is-visible:hover {
  transform: rotate(0deg) translateY(-14px);
}

.scene-card--share.is-visible:hover {
  transform: rotate(3deg) translateY(-14px);
}

/* タブレット・スマートフォン */
@media (max-width: 767px) {
  .scene {
    padding-inline: 20px;
  }

  .scene__flow {
    grid-template-columns: 1fr;
    gap: 58px;
    width: min(82vw, 340px);
    margin-inline: auto;
  }

  .scene-card--open,
  .scene-card--decorate,
  .scene-card--share {
    margin-top: 0;
  }

  .scene-card--open {
    transform: rotate(-4deg);
  }

  .scene-card--decorate {
    transform: rotate(3deg);
  }

  .scene-card--share {
    transform: rotate(-2deg);
  }

  .scene-card--open.js-scene-reveal.is-visible {
    transform: translateY(0) rotate(-4deg);
  }

  .scene-card--decorate.js-scene-reveal.is-visible {
    transform: translateY(0) rotate(3deg);
  }

  .scene-card--share.js-scene-reveal.is-visible {
    transform: translateY(0) rotate(-2deg);
  }

  .scene-card:hover {
    transform: translateY(-8px);
  }

  .scene__closing-lead {
    line-height: 1.8;
  }
}

/* 動きを減らすOS設定への対応 */
@media (prefers-reduced-motion: reduce) {
  .js-scene-reveal {
    opacity: 1;
    transform: none !important;
    transition: none;
  }

  .scene-card,
  .scene-card__photo img,
  .scene__cta,
  .scene__cta-arrow {
    transition: none;
  }
}

/* =========================================================
   Scene to Campaign transition
========================================================= */

/* SCENE下部の余白 */
.scene.section {
  position: relative;
  isolation: isolate;
  padding-bottom: 190px;
  overflow: hidden;
}

/* SCENE下部からCAMPAIGNへつなぐグラデーション */
.scene.section::after {
  position: absolute;
  z-index: 0;
  right: -6%;
  bottom: -34px;
  left: -6%;
  height: 160px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(203, 245, 241, 0.66) 0%,
      rgba(246, 255, 248, 0.4) 48%,
      rgba(255, 228, 107, 0.46) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 250, 240, 0) 0%,
      rgba(246, 255, 248, 0.64) 50%,
      rgba(238, 250, 240, 0.94) 100%
    );
  filter: blur(16px);
}

/* SCENEの文章や画像をグラデーションより手前へ */
.scene.section > * {
  position: relative;
  z-index: 1;
}

/* CAMPAIGN側のつなぎ目 */
.campaign.section {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
}

.campaign.section::before {
  position: absolute;
  z-index: 0;
  top: -32px;
  right: -6%;
  left: -6%;
  height: 150px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(203, 245, 241, 0.74) 0%,
      rgba(246, 255, 248, 0.34) 48%,
      rgba(255, 228, 107, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(238, 250, 240, 0.92) 0%,
      rgba(246, 255, 248, 0.54) 48%,
      rgba(246, 255, 248, 0) 100%
    );
  filter: blur(15px);
}

/* 背景文字と料金パネルを前面に維持 */
.campaign__bg {
  z-index: 1;
}

.campaign__panel {
  z-index: 2;
}

@media (max-width: 767px) {
  .scene.section {
    padding-bottom: 90px;
  }

  .scene.section::after {
    height: 130px;
  }
}

/* =========================================================
   CAMPAIGN
  
========================================================= */

.campaign {
  --campaign-blue: #079db8;
  --campaign-blue-dark: #058ba4;
  --campaign-coral: var(--coral, #ef6b5e);
  --campaign-text: #303735;
  font-family: var(--font-ja);
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 940px;
  padding: clamp(76px, 9vw, 130px) 24px 170px;
  overflow: hidden;

  /*
   * 上部を前セクションと馴染ませ、下部は次セクションへ
   * 自然につながるグラデーション
   */
  background:
    radial-gradient(
      circle at 13% 8%,
      rgba(194, 245, 239, 0.92) 0,
      rgba(194, 245, 239, 0) 34%
    ),
    radial-gradient(
      circle at 88% 7%,
      rgba(255, 224, 111, 0.72) 0,
      rgba(255, 224, 111, 0) 35%
    ),
    linear-gradient(
      180deg,
      #f6fff9 0%,
      #fffdf8 40%,
      #fff5ee 82%,
      #ffe8df 100%
    );
}

/* 上端・下端の境目をさらに柔らかくする */
.campaign::before,
.campaign::after {
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  height: 150px;
  content: "";
  pointer-events: none;
}

.campaign::before {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0)
  );
}

.campaign::after {
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 232, 223, 0),
    rgba(255, 232, 223, 0.85)
  );
}

/* 背景装飾文字 */
.campaign__bg {
  position: absolute;
  z-index: 0;
  bottom: 24px;
  left: 50%;
  width: max-content;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(56px, 9vw, 118px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

/* メインパネル */
.campaign__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 990px);
  min-height: 660px;
  padding: clamp(38px, 5vw, 68px)
    clamp(24px, 5.5vw, 64px)
    clamp(42px, 6vw, 72px);
  background:
    radial-gradient(
      circle at 5% 8%,
      rgba(214, 252, 248, 0.58),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 92%,
      rgba(255, 234, 146, 0.32),
      transparent 27%
    ),
    rgba(255, 255, 255, 0.93);
  box-shadow: 0 28px 70px rgba(109, 82, 59, 0.11);
}

/* 左側の説明 */
.campaign__intro {
  width: min(100%, 400px);
  text-align: left;
}

.campaign .campaign__title {
  margin: 0;
  color: var(--campaign-blue);
  font-size: clamp(48px, 7vw, 76px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  text-align: left;
}

.campaign__kicker {
  display: flex;
  width: min(100%, 260px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 25px;
  padding: 5px 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    90deg,
    #ff3f3b,
    #ff8053
  );
  border-radius: 999px;
  font-size: 9px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

.campaign__kicker span + span {
  position: relative;
}

.campaign__kicker span + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  content: "";
  transform: translateY(-50%);
}

.campaign__intro h2 {
  margin: 0 0 22px;
  color: var(--campaign-text);
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.campaign__text {
  margin: 0;
  color: #606966;
  font-size: clamp(10px, 1.2vw, 12px);
  line-height: 2;
}

/* =========================================================
   オファーエリア
========================================================= */

.campaign__offer {
  position: relative;
  width: min(100%, 610px);
  margin: -150px 0 0 auto;
  font-family: var(--font-ja);
  text-align: center;
}

/* =========================================================
   50% OFFバッジ
========================================================= */

.campaign-badge {
  position: relative;
  z-index: 2;
  width: clamp(154px, 19vw, 196px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #fff;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(255, 255, 255, 0.18),
      transparent 36%
    ),
    var(--campaign-coral);
  border-radius: 50%;
  box-shadow:
    0 22px 42px rgba(239, 107, 94, 0.28),
    0 0 28px rgba(239, 107, 94, 0.18);
}

.campaign-badge::after {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(239, 107, 94, 0.1);
  content: "";
  animation: campaignPulse 2.8s ease-in-out infinite;
}

.campaign-badge__caption {
  margin-bottom: 9px;
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
}

.campaign-badge strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 0.8;
}

.campaign-badge__number {
  font-family: var(--font-en);
  font-size: clamp(49px, 6vw, 66px);
  font-weight: 400;
  line-height: 0.8;
}

.campaign-badge__percent {
  margin-left: 3px;
  font-family: var(--font-en);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
}

.campaign-badge__off {
  margin-top: 12px;
  font-family: var(--font-en);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.08em;
}

/* =========================================================
   価格表示
========================================================= */

.campaign-price {
  position: relative;
  z-index: 3;
  width: min(100%, 510px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  margin: 6px auto 0;
  padding: 27px clamp(20px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(230, 207, 140, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(218, 249, 245, 0.5) 0%,
      rgba(218, 249, 245, 0.2) 27%,
      transparent 56%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 228, 127, 0.42) 0%,
      rgba(255, 228, 127, 0.16) 32%,
      transparent 60%
    ),
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 254, 248, 0.8) 47%,
      rgba(255, 249, 223, 0.74) 100%
    );
  box-shadow:
    0 18px 42px rgba(129, 101, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-family: var(--font-ja);
}

/* 背景の色境界を柔らかくする */
.campaign-price::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.38),
    transparent 28%,
    transparent 72%,
    rgba(255, 246, 203, 0.2)
  );
  content: "";
  pointer-events: none;
}

.campaign-price > * {
  position: relative;
  z-index: 1;
}

.campaign-price__item {
  min-width: 0;
  font-family: var(--font-ja);
}

.campaign-price__caption {
  display: block;
  margin-bottom: 15px;
  color: #3d4542;
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 700;
}

.campaign-price__item--first .campaign-price__caption {
  color: #dc574e;
}

.campaign-price__item p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin: 0;
  white-space: nowrap;
}

.campaign-price__label {
  margin-right: 3px;
  color: #303735;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 700;
}

/* 金額にはZen Kaku Gothic Newを使用 */
.campaign-price__item strong {
  color: #252c2a;
  font-family: var(--font-ja);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.campaign-price__item--first strong {
  color: var(--campaign-coral);
  font-family: var(--font-ja);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
}

.campaign-price__yen {
  color: #303735;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 700;
}

.campaign-price__arrow {
  color: var(--campaign-coral);
  font-family: var(--font-ja);
  font-size: 31px;
  line-height: 1;
}

.campaign-price small {
  display: block;
  margin-top: 9px;
  color: #3e4744;
  font-family: var(--font-ja);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

/* =========================================================
   CTA
========================================================= */

.campaign__actions {
  width: min(100%, 600px);
  margin: 22px auto 0;
  font-family: var(--font-ja);
}

.campaign-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 64px;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ja);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.campaign-button--primary {
  color: #fff;
  background: var(--campaign-blue);
  box-shadow: 0 15px 30px rgba(7, 157, 184, 0.22);
}

.campaign-button--primary:hover {
  color: #fff;
  background: var(--campaign-blue-dark);
  box-shadow: 0 20px 38px rgba(7, 157, 184, 0.3);
  transform: translateY(-4px);
}

.campaign-button__arrow {
  font-family: var(--font-ja);
  font-size: 27px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.campaign-button:hover .campaign-button__arrow {
  transform: translateX(8px);
}

/* ギフトリンク */
.campaign-button--ghost {
  width: max-content;
  min-height: 44px;
  margin: 13px auto 0;
  padding: 10px 24px;
  color: #087f96;
  background: transparent;
  border-color: transparent;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.campaign-button--ghost:hover {
  color: #056d81;
  background: rgba(7, 157, 184, 0.08);
  border-color: rgba(7, 157, 184, 0.4);
  transform: translateY(-2px);
}

/* 注意書き */
.campaign__note {
  max-width: 620px;
  margin: 22px auto 0;
  color: #414a47;
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* =========================================================
   スマートフォン調整
========================================================= */

@media (max-width: 600px) {
  .campaign__offer {
    width: 100%;
    margin: 42px auto 0;
  }

  .campaign-price {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 18px;
    border-radius: 18px;
  }

  .campaign-price__arrow {
    transform: rotate(90deg);
  }

  .campaign-price small {
    font-size: 11px;
    text-align: center;
  }

  .campaign-button {
    min-height: 60px;
    gap: 15px;
    padding: 15px 20px;
    font-size: 15px;
  }

  .campaign-button--ghost {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .campaign__note {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.75;
  }
}
/* =========================================================
   CAMPAIGN FONT SETTINGS
========================================================= */

/* セクション全体・日本語・金額 */
.campaign {
  font-family: var(--font-ja);
}

/* CAMPAIGN */
.campaign .campaign__title {
  font-family: var(--font-en);
}

/* FIRST BOX ONLY / 50% OFF */
.campaign__kicker {
  font-family: var(--font-en);
}

/* 日本語見出し・説明文 */
.campaign__intro h2,
.campaign__text {
  font-family: var(--font-ja);
}

/* 50%OFFバッジ */
.campaign-badge {
  font-family: var(--font-ja);
}

.campaign-badge__caption {
  font-family: var(--font-ja);
}

/* 「50」はBrice */
.campaign-badge__number {
  font-family: var(--font-en);
  font-weight: 400;
}

/* 「%」「OFF」もBrice */
.campaign-badge__percent,
.campaign-badge__off {
  font-family: var(--font-en);
  font-weight: 400;
}

/* 通常価格・初回限定・月額など */
.campaign-price,
.campaign-price__caption,
.campaign-price__label,
.campaign-price__yen,
.campaign-price small {
  font-family: var(--font-ja);
}

/* 5,980円・2,990円はZen Kaku Gothic New */
.campaign-price__item strong,
.campaign-price__item--first strong {
  font-family: var(--font-ja);
  font-weight: 700;
}

/* CTA・注意書き */
.campaign-button,
.campaign__note {
  font-family: var(--font-ja);
}
/* =========================================================
   Scroll animation
========================================================= */

.campaign-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes campaignPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }

  50% {
    opacity: 0;
    transform: scale(1.15);
  }
}

.fv__title .fv__phrase {
  display: inline;
  white-space: nowrap;
}

/* スマホ専用の改行はPCでは非表示 */
.fv__break--sp {
  display: none;
}
/* =========================================================
   Tablet / Mobile
========================================================= */

@media (max-width: 900px) {
  .campaign {
    min-height: 0;
  }

  .campaign__panel {
    width: min(100%, 680px);
  }

  .campaign__intro {
    width: 100%;
    text-align: center;
  }

  .campaign .campaign__title {
    text-align: center;
  }

  .campaign__kicker {
    margin-inline: auto;
  }

  .campaign__offer {
    width: 100%;
    margin: 42px auto 0;
  }
}

@media (max-width: 600px) {
  .campaign {
    padding: 64px 16px 120px;
  }

  .campaign__panel {
    padding: 38px 18px 44px;
  }

  .campaign .campaign__title {
    font-size: clamp(43px, 15vw, 61px);
  }

  .campaign__text br {
    display: none;
  }

  .campaign-price {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 24px 18px;
  }

  .campaign-price__arrow {
    transform: rotate(90deg);
  }

  .campaign-price small {
    text-align: center;
  }

  .campaign-button {
    gap: 15px;
    padding-inline: 20px;
  }

  .campaign__bg {
    bottom: 28px;
    font-size: 53px;
  }
}

/* 動きを減らす設定への対応 */
@media (prefers-reduced-motion: reduce) {
  .campaign-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .campaign-badge::after {
    animation: none;
  }

  .campaign-button,
  .campaign-button__arrow {
    transition: none;
  }
}
/* =========================================================
   PC Narrow Width Adjustment
========================================================= */
@media (max-width: 1100px) {
  .site-layout {
    grid-template-columns: 160px 520px 190px;
    gap: 16px;
  }

  .lp {
    width: 520px;
  }

  .left-brand,
  .right-menu {
    padding: 18px;
  }

  .left-brand__logo {
    font-size: 25px;
  }

  .right-menu__panel {
    padding: 60px 20px 26px;
  }

  .right-menu__panel a:not(.right-menu__button) {
    grid-template-columns: 28px 1fr;
    font-size: 14px;
  }

  .fv__content {
    padding-right: 38px;
    padding-left: 38px;
  }

  .box,
  .theme {
    padding-right: 34px;
    padding-left: 34px;
  }

  .reason {
    grid-template-columns: 200px 1fr;
    gap: 22px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .scene {
    padding-right: 38px;
    padding-left: 38px;
  }
}
/* =========================================================
   Layout after 12 Month Themes
========================================================= */

.site-layout--two-column {
  width: min(100%, 1440px);
  grid-template-columns: minmax(190px, 412px) minmax(0, 1000px);
  gap: 28px;
}

.site-layout--two-column .lp--wide {
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 1279px) and (min-width: 768px) {
  .site-layout--two-column {
    width: 100%;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px;
    padding-right: 16px;
  }

  .site-layout--two-column .lp--wide {
    width: 100%;
    max-width: none;
  }

  .theme__head {
    grid-template-columns: minmax(250px, 0.8fr) minmax(330px, 1.2fr);
    gap: 42px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .theme__lead,
  .theme__drag {
    margin-left: 48px;
  }

  .theme__rail {
    padding-right: 48px;
    padding-left: 48px;
  }

  .theme__scrollbar,
  .theme__disclaimer {
    margin-right: 48px;
    margin-left: 48px;
  }
}

/* Smartphone */
@media (max-width: 767px) {
  body {
    min-width: 0;
  }

  .site-layout,
  .site-layout--three-column,
  .site-layout--two-column {
    width: 100%;
    display: block;
    padding: 0;
  }

  .left-brand,
  .right-menu {
    display: none;
  }

  .lp,
  .lp--narrow,
  .lp--wide,
  .site-layout--two-column .lp--wide {
    width: 100%;
    max-width: none;
  }

  .theme {
    min-height: auto;
    padding: 54px 0 50px;
  }

  .theme__head {
    display: block;
    padding: 0 28px;
  }

  .theme__title {
    font-size: 49px;
    line-height: 0.9;
  }

  .theme__heading {
    margin-top: 35px;
    padding: 0;
  }

  .theme__kicker {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .theme__heading h2 {
    font-size: 19px;
    line-height: 1.65;
  }

  .theme__lead {
    margin: 30px 28px 0;
    font-size: 13px;
    line-height: 1.85;
  }

  .theme__drag {
    margin: 24px 28px 0;
    font-size: 10px;
  }

  .theme__slider {
    margin-top: 32px;
  }

  .theme__rail {
    gap: 22px;
    padding: 8px 28px 24px;
    scroll-snap-type: x mandatory;
  }

  .theme-card {
    flex-basis: 138px;
  }

  .theme-card img {
    width: 138px;
    height: 138px;
    border-width: 7px;
  }

  .theme-card__month {
    margin-top: 15px;
    font-size: 20px;
  }

  .theme-card h3 {
    font-size: 12px;
  }

  .theme__scrollbar {
    margin: 30px 28px 0;
  }

  .theme__disclaimer {
    margin: 24px 28px 0;
    font-size: 9px;
  }
}
/* ========================================
   WHAT'S IN THE BOX以降・1カラムレイアウト
======================================== */

.single-column-layout {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

.single-column-layout .lp--wide {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

/* タブレット */
@media (max-width: 1024px) {
  .single-column-layout {
    padding-inline: 28px;
  }
}

/* スマートフォン */
@media (max-width: 767px) {
  .single-column-layout {
    padding-inline: 20px;
  }

  .single-column-layout .lp--wide {
    width: 100%;
  }
}

/* =========================================================
   Final responsive rules
   ここより下をスマートフォン表示の最終調整として使用
========================================================= */

.mobile-cta {
  display: none;
}

@media (max-width: 767px) {
  :root {
    --mobile-gutter: 20px;
  }

  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
    min-width: 0;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  main,
  .site-layout,
  .single-column-layout,
  .lp,
  .lp--narrow,
  .lp--wide {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .single-column-layout {
    padding-inline: 0;
  }

  .section {
    scroll-margin-top: 12px;
  }

  .section-title {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.95;
  }

  /* =========================================================
     First View
  ========================================================= */

  .fv {
    min-height: 100svh;
    align-items: start;
  }

  .fv__image::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 251, 215, 0.95) 0%,
        rgba(255, 251, 215, 0.84) 42%,
        rgba(255, 251, 215, 0.18) 72%,
        rgba(255, 251, 215, 0) 100%
      );
  }

  .fv__image img {
    object-position: 61% center;
  }

  /* ファーストビュー：文字を左側配置 */
.fv__content {
  width: 100%;
  padding: 54px 38px 38px;
  text-align: left;
}

.fv__lead {
  width: 100%;
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
}

/* メインタイトル */
.fv__title {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(22px, 6.4vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: left;
}

.fv__title .fv__phrase {
  display: inline;
  white-space: nowrap;
}

/* スマホ専用の改行を表示 */
.fv__break--sp {
  display: inline;
}

/* KISETSU BOXも左揃え */
.fv__brand-wrap {
  width: 100%;
  margin-top: 18px;
  text-align: left;
}

.fv__brand {
  font-size: 22px;
  line-height: 1;
  text-align: left;
}

.fv__brand-sub {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

/* CTAボタンと月表記だけ中央 */
.fv__bottom {
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  text-align: center;
}

.fv__bottom .button--primary {
  width: min(100%, 280px);
  min-height: 50px;
  padding: 12px 18px;
  font-size: 14px;
}

.fv__month {
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

  /* =========================================================
     Concept
  ========================================================= */

  .concept {
    min-height: 0;
    padding: 64px var(--mobile-gutter) 72px;
  }

  .concept .section-title {
    font-size: clamp(45px, 14vw, 58px);
  }

  .concept .section-kicker {
    margin-top: 12px;
    font-size: 10px;
  }

  .concept__card {
    width: 100%;
    min-height: 0;
    margin-top: 32px;
    padding: 72px 25px 34px;
  }

  .concept__card::before {
    top: 35px;
    right: 35px;
  }

  .concept__card::after {
    top: 13px;
    right: 13px;
  }

  .concept__card h2 {
    margin-bottom: 25px;
    padding-right: 0;
    font-size: 17px;
    line-height: 1.7;
  }

  .concept__card p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.95;
  }

  .concept__card .concept__quote {
    margin-block: 21px;
    font-size: 15px;
  }

  /* =========================================================
     What's in the Box
  ========================================================= */

  .box {
    padding: 68px var(--mobile-gutter) 76px;
  }

  .box__head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .box .section-title {
    font-size: clamp(45px, 13.5vw, 56px);
    white-space: normal;
    text-align: center;
  }

  .box__intro {
    max-width: none;
    justify-self: center;
    padding: 0;
    text-align: center;
  }

  .box__intro h2,
  .box__intro p {
    text-align: center;
  }

  .box__intro h2 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .box__intro p {
    font-size: 12px;
    line-height: 1.9;
  }

  .box__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 38px;
  }

  .item-card > span {
    top: -15px;
    font-size: 26px;
  }

  .item-card h3 {
    margin-bottom: 9px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .item-card p {
    padding: 0;
    font-size: 11px;
    line-height: 1.75;
  }

  /* =========================================================
     12 Month Themes
  ========================================================= */

  .theme {
    min-height: 0;
    padding: 66px 0 78px;
  }

  .theme__header {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-inline: var(--mobile-gutter);
  }

  .theme__title-area .section-title {
    font-size: clamp(48px, 15vw, 62px);
  }

  .theme__description {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.85;
  }

  .theme__intro {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .theme__kicker,
  .theme__intro h2 {
    text-align: left;
  }

  .theme__kicker {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .theme__intro h2 {
    font-size: 19px;
    line-height: 1.65;
  }

  .theme__drag {
    margin: 28px var(--mobile-gutter) 0;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .theme_rail {
    margin-top: 26px;
  }

  .theme__rail {
    gap: 20px;
    padding: 8px var(--mobile-gutter) 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .theme__rail::-webkit-scrollbar {
    display: none;
  }

  .month-card {
    flex: 0 0 146px;
    width: 146px;
    min-width: 146px;
    margin: 0;
    padding-bottom: 10px;
  }

  .month-card__image {
    width: 146px;
    height: 146px;
    border-width: 7px;
  }

  .month-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .month-card__month {
    margin: 15px 0 7px;
    color: var(--coral);
    font-family: var(--font-en);
    font-size: 20px;
    line-height: 1;
  }

  .month-card h3 {
    font-size: 12px;
    line-height: 1.55;
  }

  .theme-progress {
    height: 4px;
    margin: 18px var(--mobile-gutter) 0;
    overflow: hidden;
    background: rgba(7, 153, 181, 0.18);
    border-radius: 999px;
  }

  .theme-progress__bar {
    width: 100%;
    height: 100%;
    display: block;
    background: #0799b5;
    border-radius: inherit;
    transform: scaleX(0.25);
    transform-origin: left center;
    transition: transform 0.12s linear;
  }

  /* スクロール下の注意書きを中央揃え */
  .theme__disclaimer {
    margin: 25px var(--mobile-gutter) 0;
    font-size: 11px;
    line-height: 1.75;
    text-align: center;
  }

  .theme__cta {
    margin-top: 38px;
    padding-inline: var(--mobile-gutter);
  }

  .theme__cta-note {
    font-size: 12px;
  }

  .theme__cta-button {
    width: 100%;
    max-width: 330px;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 13px;
  }

  /* =========================================================
     Reason
  ========================================================= */

  .reason {
    display: block;
    min-height: 0;
    padding: 68px var(--mobile-gutter) 92px;
  }

  /* タイトル→画像の順で縦並び */
  .reason__axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    text-align: center;
  }

  .reason .section-title {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 1;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    text-align: center;
  }

  .reason__image {
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .reason__image img {
    max-height: none;
    transform: none;
  }

  .reason__content {
    width: 100%;
    padding-top: 36px;
    text-align: center;
  }

  .reason__intro-copy {
    grid-column: auto;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .reason__sub,
  .reason__heading,
  .reason__intro-copy h2 {
    text-align: center;
  }

  .reason__sub {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .reason__heading,
  .reason__intro-copy h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .reason__heading span {
    display: block;
  }

  .reason__small {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
  }

  .reason-list {
    margin-top: 34px;
  }

  .reason-list li {
    grid-template-columns: 35px minmax(0, 1fr);
    column-gap: 9px;
    align-items: start;
  }

  .reason-list li > span,
  .reason-list li > p {
    padding-block: 18px;
  }

  .reason-list li > span {
    font-size: 18px;
  }

  .reason-list li > p {
    font-size: 12px;
    line-height: 1.75;
  }

  .reason__cta {
    margin-top: 36px;
    text-align: center;
  }

  .reason__cta-button {
    width: 100%;
    max-width: 330px;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 14px;
  }

  /* =========================================================
     Scene
  ========================================================= */

  .scene,
  .scene.section {
    padding: 72px var(--mobile-gutter) 96px;
  }

  .scene__label {
    font-size: clamp(48px, 14vw, 62px);
  }

  .scene__title {
    margin-top: 16px;
    font-size: 12px;
  }

  .scene__flow {
    width: min(100%, 330px);
    gap: 48px;
    margin-top: 58px;
    padding-inline: 5px;
  }

  .scene-card {
    padding: 14px 14px 24px;
  }

  .scene-card h3 {
    font-size: 16px;
  }

  .scene-card p {
    font-size: 12px;
  }

  .scene__closing {
    margin-top: 66px;
  }

  .scene__closing-lead {
    font-size: 13px;
  }

  .scene__message {
    font-size: 17px;
  }

  .scene__cta {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    gap: 18px;
    padding: 16px 20px;
    font-size: 14px;
  }

  /* =========================================================
     Campaign
  ========================================================= */

  .campaign {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 66px var(--mobile-gutter) 120px;
    overflow: hidden;
    box-sizing: border-box;
  }

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

  .campaign__panel {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-inline: auto;
    padding: 38px 16px 42px;
    overflow: hidden;
  }

  .campaign .campaign__title {
  font-size: clamp(32px, 10vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
}
  .campaign__intro h2 {
    font-size: 21px;
  }

  .campaign__text {
    font-size: 12px;
    line-height: 1.9;
  }

  .campaign__offer {
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }

  .campaign-badge {
    width: 158px;
    max-width: 100%;
  }

  .campaign-price {
    width: 100%;
    max-width: 100%;
    padding: 22px 14px;
  }

  .campaign-price__item {
    min-width: 0;
  }

  .campaign-price__item strong {
    font-size: 26px;
  }

  .campaign-price__item--first strong {
    font-size: 38px;
  }

  .campaign-button {
    width: 100%;
    max-width: 100%;
    min-height: 58px;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .campaign-button--ghost {
    width: auto;
    max-width: 100%;
  }

  /* 注意書きの不自然な強制改行を解除 */
  .campaign__note {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    font-size: 11px;
    line-height: 1.8;
    text-align: center;
    white-space: normal;
    word-break: normal;
    line-break: strict;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .campaign__note br {
    display: none;
  }

  /* =========================================================
     Fixed CTA
  ========================================================= */

  .mobile-cta {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding:
      10px
      max(14px, env(safe-area-inset-right))
      calc(10px + env(safe-area-inset-bottom))
      max(14px, env(safe-area-inset-left));
    background: rgba(255, 253, 248, 0.94);
    border-top: 1px solid rgba(239, 107, 94, 0.2);
    box-shadow: 0 -10px 30px rgba(87, 69, 54, 0.12);
    backdrop-filter: blur(14px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .mobile-cta__label {
    color: var(--coral);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
  }

  .mobile-cta__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    color: #fff;
    background: var(--coral);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(239, 107, 94, 0.25);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
}

/* 359px以下の小さいスマートフォン */
@media (max-width: 359px) {
  :root {
    --mobile-gutter: 16px;
  }

  .box__grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta__label {
    display: none;
  }

  .mobile-cta__button {
    width: 100%;
  }
}

/* 動きを減らす設定を使用している端末 */
@media (prefers-reduced-motion: reduce) {
  .mobile-cta,
  .theme-progress__bar {
    transition: none;
  }
}