@charset "UTF-8";

/* ==========================================================
   Base
   ========================================================== */
:root {
  --c-text: #3d4245;
  --c-brown: #412f1b;
  --c-brown-light: #7e6a54;
  --c-gold: #9b7a50;
  --c-gold-dark: #7d582d;
  --c-gold-light: #d4b897;
  --c-star: #b8964a;
  --c-gray: #706b6b;
  --c-gray-dark: #575a5c;
  --c-red: #dd796f;
  --c-cream: #fdfaf5;
  --c-line: #1fa53c;

  --ff-serif: "Noto Serif JP", serif;
  --ff-sans: "Noto Sans JP", sans-serif;
  --ff-mincho: "Shippori Mincho", "Noto Serif JP", serif;
  --ff-en: "Cormorant", "Noto Serif JP", serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #f1ece4;
  color: var(--c-text);
  font-family: var(--ff-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* SP デザイン（幅402px）を基準に、PC では中央寄せで表示 */
.page {
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 0, 0, .06);
}

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background: #fff;
}
.header__logo { display: block; }
.header__logo img {
  width: 92px;
  height: 40px;
  object-fit: contain;
}

/* ==========================================================
   Section heading
   ========================================================== */
.sec-head { text-align: center; }
.sec-head__en {
  font-family: var(--ff-en);
  font-size: 12px;
  line-height: 1.294;
  letter-spacing: .22em;
  color: var(--c-gold);
}
.sec-head__ja {
  margin-top: 10px;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 3px;
  color: var(--c-text);
}
.sec-head__ja::after {
  content: "";
  display: block;
  width: 50px;
  height: 1.5px;
  margin: 20px auto 0;
  background: var(--c-gold-light);
}
.sec-head--strengths .sec-head__en { color: var(--c-gold-light); }
.sec-head--strengths .sec-head__ja::after { margin-top: 14px; }
.sec-head--strengths .sec-head__ja span {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 2.25px;
  color: var(--c-gold);
}
.sec-head--dark .sec-head__ja {
  line-height: 1.294;
  letter-spacing: 1px;
  color: var(--c-brown);
}
.sec-head--dark .sec-head__ja::after { margin-top: 25px; height: 1px; }
.entry .sec-head__ja { font-weight: 500; }

/* ── ✦ ── */
.deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  line-height: 17px;
  color: var(--c-star);
}
.deco::before,
.deco::after {
  content: "";
  width: 49px;
  height: .5px;
  background: var(--c-star);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  min-height: 616px;
  padding: 279px 0 30px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 117.62%;
  height: 115.21%;
  max-width: none;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 259px 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 34.69%);
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__title {
  padding-left: 20px;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 35px;
  line-height: 1.294;
  letter-spacing: 2.45px;
  text-shadow: 1px 2px 3px #fff;
}
.hero__title span { color: var(--c-gold-dark); }
.hero__title::after {
  content: "";
  display: block;
  width: 50px;
  height: .8px;
  margin-top: 15px;
  background: #9a836a;
}
.hero__lead {
  margin-top: 15px;
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.294;
  letter-spacing: .6px;
  color: var(--c-gold-dark);
  text-shadow: 1px 2px 3px #fff;
}
.hero__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 13px;
  margin-top: 30px;
  padding: 0 29px;
}
.hero__points li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 65px;
  border: .8px solid rgba(214, 203, 188, .6);
  border-radius: 10px;
  background: rgba(255, 253, 252, .75);
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.504;
  color: var(--c-gray-dark);
  white-space: nowrap;
}
.hero__points strong {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-gold);
}
.hero__points li:first-child { letter-spacing: 1.6px; }
.hero__points .lg { font-size: 18px; }
.hero__points .sm { font-size: 12px; }

/* ==========================================================
   Strengths
   ========================================================== */
.strengths { padding: 30px 20px 50px; }

.feature {
  margin-top: 30px;
  padding: 15px 6px 16px 26px;
  border: .5px solid rgba(155, 122, 80, .15);
  background: var(--c-cream);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.feature__title {
  font-family: var(--ff-serif);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1.44px;
}
.feature__title span { color: var(--c-gold); }
.feature__text {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 2.25px;
  color: var(--c-gray);
}
.feature__text span {
  display: block;
  padding-top: 11px;
  line-height: 3;
  margin-bottom: -9px;
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.reason {
  min-height: 165px;
  padding: 9px 8px 12px 12px;
  border: .5px solid rgba(155, 122, 80, .15);
  background: rgba(255, 253, 252, .75);
}
.reason__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding-right: 4px;
}
.reason:nth-child(odd) .reason__top,
.reason:nth-child(odd) .reason__en { padding-left: 2px; }
.reason__icon--privacy { margin-left: -2px; }
.reason__num {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 2.25px;
  color: rgba(155, 122, 80, .5);
}
.reason__en {
  margin-top: 3px;
  font-family: var(--ff-en);
  font-style: italic;
  font-size: 10px;
  line-height: 2.5;
  color: var(--c-gold);
}
.reason__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: min(16px, 3.98vw);
  line-height: 1.55;
  letter-spacing: .6px;
  color: var(--c-brown);
}
.reason__title--sm { font-size: min(15px, 3.73vw); }
.reason__text {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .6px;
  color: var(--c-brown-light);
}

/* 狭い端末ではデザイン上の改行を外して自然に折り返す */
@media (max-width: 389px) {
  .reason__text br { display: none; }
}

.message {
  margin-top: 20px;
  padding: 40px 0 17px;
  border: .5px solid rgba(249, 223, 194, .75);
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  text-align: center;
}
.message__text {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: min(18px, 4.48vw);
  line-height: 1.6;
  letter-spacing: 2.25px;
}
.message__text span { color: var(--c-gold); }
.message__en {
  font-family: var(--ff-en);
  font-style: italic;
  font-size: 7px;
  line-height: 4;
  letter-spacing: .7px;
  color: var(--c-gold);
}

/* ==========================================================
   Members
   ========================================================== */
.members {
  padding: 50px 20px 42px;
  background: var(--c-cream);
}
.members .sec-head { margin-top: 20px; }
.members__lead {
  margin-top: 20px;
  padding: 0 5px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: var(--c-brown);
}
.members__lead strong { font-weight: 500; }

.data {
  margin-top: 40px;
  padding: 18px 21px 42px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
}
.data__label {
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  color: var(--c-text);
}
.data__pie {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 0 46px 24px;
  border-bottom: .5px solid var(--c-gold);
}
/* SVG は影の分だけ外側に余白を含む（左右 -3.51%・下 -7.02%） */
.data__pie img {
  width: 121.91px;
  height: 121.91px;
  margin: 0 -4px -8px;
}
.data__legend {
  margin-left: 40px;
  font-family: "Inter", var(--ff-sans);
  font-size: 15px;
  line-height: 18px;
  color: var(--c-text);
}
.data__legend li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.data__legend li + li { margin-top: 11.6px; }
.data__legend b { margin-left: 20px; font-weight: 600; }
.dot {
  width: 9.11px;
  height: 9.11px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--c-gold);
}
.dot--light { background: #e6d3bc; }
.data__label--age { margin-top: 14px; }

.bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 297.4px;
  height: 123.8px;
  margin: 20px auto 0;
  font-family: "Inter", var(--ff-sans);
}
.bars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 55.92px;
}
.bars__val {
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--c-brown-light);
}
.bars__val small { font-size: 10px; }
.bars__bar {
  width: 100%;
  background: var(--c-gold);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
}
.bars__age {
  margin-top: 10px;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: var(--c-brown);
}

/* ==========================================================
   Campaign
   ========================================================== */
.campaign {
  position: relative;
  height: 115px;
  background: #fff2dd;
}
.campaign__title {
  position: absolute;
  z-index: 1;
  top: 13px;
  /* 狭い画面で左端が切れないよう下限を設ける */
  left: max(calc(50% - 25px), 166px);
  transform: translateX(-50%);
  font-family: var(--ff-mincho);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2px;
  white-space: nowrap;
  background: linear-gradient(to right, #9b7a50 15.385%, #c7a980 42.788%, #9b7a50);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .1));
}
.campaign__title .s19 { font-size: 19px; }
.campaign__title .s28 { font-size: 28px; }
.campaign__title .s15 { font-size: 15px; }
.campaign__title .s23 { font-size: 23px; letter-spacing: 1.84px; }
/* 狭い端末では見出しが写真に重ならないよう縮める */
@media (max-width: 389px) {
  .campaign__title { left: 12px; transform: none; }
  .campaign__title .s19 { font-size: 16px; }
  .campaign__title .s28 { font-size: 24px; }
  .campaign__title .s15 { font-size: 13px; }
  .campaign__title .s23 { font-size: 19px; }
}

.campaign__sub {
  position: absolute;
  z-index: 1;
  top: 67px;
  left: calc(50% - 151px);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 1.95px;
  color: var(--c-brown-light);
  white-space: nowrap;
}
.campaign__img {
  position: absolute;
  right: -3px;
  top: 2px;
  width: 101px;
  height: 113px;
  object-fit: cover;
  transform: scaleX(-1);
}

/* ==========================================================
   Steps
   ========================================================== */
.steps { padding: 40px 20px; }
.steps .sec-head { margin-top: 25px; }
.step-list { margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 70fr 292fr;
  aspect-ratio: 362 / 103;
  border-radius: 5px;
  overflow: hidden;
}
.step + .step { margin-top: 15px; }
.step__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(155, 122, 80, .5);
  font-family: "Cormorant Infant", var(--ff-en);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.step__num span {
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: 15px;
}
.step__img {
  position: relative;
  overflow: hidden;
  opacity: .9;
}
/* 3ステップ分を1枚にまとめた画像から各ステップを切り出し */
.step__img img {
  position: absolute;
  left: -23.33%;
  width: 127.41%;
  height: 543.16%;
  max-width: none;
}
.step__img--1 { top: -133.68%; }
.step__img--2 { top: -250.53%; }
.step__img--3 { top: -367.37%; }

/* ==========================================================
   Price
   ========================================================== */
.price {
  padding: 60px 20px 33px;
  background: var(--c-cream);
}
.price__lead {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1.294;
  letter-spacing: 1.2px;
  color: var(--c-brown);
}
.price-list { margin-top: 20px; }
.price-row {
  display: grid;
  grid-template-columns: 55px auto 1fr 1px 1fr;
  align-items: center;
  height: 100px;
  padding-left: 14px;
  border: .5px solid rgba(249, 223, 194, .75);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.price-row + .price-row { margin-top: 14px; }
.price-row__icon { width: 55px; height: 55px; }
.price-row__name {
  margin: 0 6px 0 13px;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.294;
  letter-spacing: 1.5px;
  color: var(--c-text);
  white-space: nowrap;
}
.price-row__name--sm {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
}
.price-row__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 15px 0 10px;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
}
.price-row__col--limited { color: var(--c-red); }
.price-row__sep {
  width: 1px;
  height: 80px;
  background: repeating-linear-gradient(to bottom, rgba(155, 122, 80, .5) 0 2px, transparent 2px 4px);
}
.badge {
  width: 59px;
  height: 17px;
  border: .8px solid currentColor;
  text-align: center;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: .5px;
  color: var(--c-gold);
}
.price-row__col--limited .badge { color: var(--c-red); }
.price-row__val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  line-height: 1.294;
}
.price-row__val p { letter-spacing: 2.5px; }
.v25 { font-size: 25px; }
.v35 { font-size: 35px; }
/* 33,000 と 5,500 は数字が間延びするため字間を詰める（500,000 は .tight で別指定） */
.v23 { font-size: min(23px, 5.72vw); letter-spacing: normal; }
.v20 { font-size: min(20px, 4.98vw); letter-spacing: -1px; }
.v23.tight { letter-spacing: -1.15px; }
.yen { font-size: 15px; }
.tax {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 8px;
  line-height: 1.404;
}
.strike { position: relative; }
.strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: 0;
  top: 60%;
  height: 1px;
  border-radius: 1px;
  background: var(--c-gray-dark);
}
.price__note {
  margin-top: 20px;
  font-size: 10px;
  line-height: 1.294;
  letter-spacing: 1px;
  color: var(--c-gold);
}

/* ==========================================================
   Entry
   ========================================================== */
.entry { padding: 50px 29px 75px; }
.entry .sec-head { margin-top: 25px; }
.entry__lead {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .55px;
  color: var(--c-brown);
}
.entry__list { margin-top: 30px; }
.entry__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding-left: 17px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.86px;
  color: var(--c-brown);
}
.entry__list li + li { border-top: .7px solid rgba(249, 223, 194, .75); }
.entry__list img { width: 24px; height: 24px; }

.line-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  height: 60px;
  margin: 30px auto 0;
  border-radius: 5px;
  background: var(--c-line);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #fff;
  transition: opacity .2s, transform .2s;
}
.line-btn img {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 25.98px;
  height: 25.98px;
  transform: translateY(-50%);
  transition: transform .2s;
}
@media (hover: hover) {
  .line-btn:hover { opacity: .9; }
  .line-btn:hover img { transform: translate(3px, -50%); }
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  padding: 22px 20px 18px;
  background: #d9d9d9;
  text-align: center;
  font-family: "Zen Old Mincho", var(--ff-serif);
  font-weight: 600;
  line-height: 1.294;
  color: var(--c-brown);
}
.footer__logo { width: 129px; height: 56px; object-fit: contain; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 8px;
}
@media (hover: hover) {
  .footer__links a:hover { text-decoration: underline; }
}
.footer__notice { margin-top: 7.8px; font-size: 6px; }
.footer__address { margin-top: 12.9px; font-size: 8px; }
.footer__copy { margin-top: 12.9px; font-size: 7px; }
.footer__copy small { font-size: inherit; }

/* ==========================================================
   Scroll fade-in
   ========================================================== */
.js .js-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .js-fade.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .js-fade { opacity: 1; transform: none; transition: none; }
}
