/* =========================================================
   命名書刺繍LP - スタイル
   モックアップの配色・余白・フォントサイズを忠実に再現
   ベージュ背景 #f7f1e7 / テキスト #5b4f45 / アクセント #c96585
   見出し・名前は明朝体(.mincho)、本文は丸ゴシック
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

.lp-root {
  position: relative;
  overflow: hidden;
  min-width: 320px;
  background: #f7f1e7;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #5b4f45;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
.lp-root ::selection { background: #e7c3ce; }

/* 明朝体（見出し・お名前） */
.mincho { font-family: 'Shippori Mincho', serif; }
.accent { color: #c96585; }

a { color: inherit; text-decoration: none; }
img { display: block; }

/* 共通セクション見出し */
.section-title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #5b4f45;
  margin: 0 0 34px;
  letter-spacing: 0;
  line-height: 1.5;
}

/* =========================================================
   背景の装飾フローラル
   ========================================================= */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.deco--top-left      { top: 52px;  left: -18px;  width: 150px; opacity: .8; }
.deco--bottom-right  { right: -12px; bottom: 30px;  width: 244px; opacity: .82; }
.deco--bottom-right-2{ right: 4px;   bottom: 210px; width: 130px; opacity: .68; transform: scaleX(-1); }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 231, .86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ece1d0;
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
/* サービスロゴ：角を丸くして表示 */
.brand__mark { width: 38px; height: 38px; object-fit: cover; border-radius: 11px; }
.brand__name {
  font-size: 20px;
  font-weight: 700;
  color: #6b5a4c;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.nav-links > a { font-size: 14.5px; color: #6b5a4c; }
.nav-cta {
  background: #c96585;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(201, 101, 133, .28);
}

/* =========================================================
   ファーストビュー（ヒーロー）
   ========================================================= */
.hero {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 68px 28px 62px;
}
.hero__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.hero__copy { flex: 1 1 460px; min-width: 320px; }
.hero__title {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.35;
  color: #5b4f45;
  letter-spacing: 0;
}
.hero__desc {
  margin: 18px 0 0;
  font-size: 16px;
  color: #6b5a4c;
  line-height: 2;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(120, 90, 70, .12);
}
.hero__btn--primary {
  background: #c96585;
  color: #fff;
}
.hero__btn--secondary {
  background: #fffdf8;
  color: #6b5a4c;
  border: 1px solid #e6d8c6;
}

/* β版特典ボックス */
.beta-box {
  position: relative;
  margin-top: 34px;
  border: 2px dashed #d99cb1;
  border-radius: 20px;
  background: linear-gradient(158deg, #fffaf5 0%, #fdeef1 100%);
  padding: 36px 28px 26px;
  max-width: 452px;
  box-shadow: 0 16px 34px rgba(201, 101, 133, .13);
}
.beta-box__ribbon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.beta-box__ribbon img {
  width: 238px;
  height: auto;
  filter: drop-shadow(0 5px 9px rgba(201, 101, 133, .26));
}
.beta-box__ribbon-text {
  position: absolute;
  inset: 0;
  top: 1px;
  left: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 4px;
  white-space: nowrap;
  letter-spacing: 0;
}
.beta-box__note {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #6b5a4c;
}
.beta-box__note strong { font-weight: 700; color: #5b4f45; }
.beta-box__price {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 16px 0 6px;
  flex-wrap: wrap;
}
.beta-box__price-label { font-size: 13px; color: #8a7c6c; }
.beta-box__price-value {
  font-size: 46px;
  font-weight: 700;
  color: #c96585;
  line-height: 1;
}
.beta-box__price-value .unit { font-size: 21px; margin-left: 2px; }
.beta-box__discount {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.beta-box__old-price {
  font-size: 15px;
  font-weight: 600;
  color: #8a7c6c;
  text-decoration: line-through;
  text-decoration-color: #c96585;
  text-decoration-thickness: 1.5px;
}
.beta-box__off {
  background: #c96585;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
  letter-spacing: 0;
}
.beta-box__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4739a 0%, #c15578 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(201, 101, 133, .34);
  letter-spacing: 0;
}
.beta-box__cta-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.beta-box__caption {
  margin: 11px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: #9a8a78;
}

/* ヒーロー右：UIモックアップ（デスクトップ＋スマホ） */
.hero__mockup {
  flex: 1 1 440px;
  min-width: 320px;
  position: relative;
  min-height: 420px;
}
.hero__mockup-desktop {
  position: absolute;
  top: 91px;
  left: -38px;
  width: 692px;
  height: 500px;
  filter: drop-shadow(0 20px 34px rgba(120, 90, 70, .16));
}
.hero__mockup-phone {
  position: absolute;
  top: 215px;
  left: 431px;
  width: 260px;
  height: 427px;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(120, 90, 70, .22));
}

/* =========================================================
   課題への共感（お悩み）
   ========================================================= */
.pain {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 28px 54px;
}
.pain__title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #5b4f45;
  margin: 0 0 10px;
  line-height: 1.5;
}
.pain__sub {
  text-align: center;
  font-size: 14.5px;
  color: #8a7c6c;
  margin: 0 0 36px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}
.pain-card {
  background: #fffdf8;
  border: 1px solid #ece1d0;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 6px 14px rgba(120, 90, 70, .06);
}
.pain-card__num {
  font-size: 25px;
  font-weight: 700;
  color: #c96585;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.pain-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #6b5a4c;
  text-align: center;
}

/* =========================================================
   6ステップの業務フロー
   ========================================================= */
.steps {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 28px 64px;
}
.steps__eyebrow {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #c96585;
  letter-spacing: 0;
  margin: 0 0 12px;
}
.steps .section-title { margin-bottom: 18px; }
.steps__lead {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #6b5a4c;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.step {
  position: relative; /* ステップ番号をカード左上に固定するための基準 */
  text-align: center;
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 24px 22px 24px;
  box-shadow: 0 8px 18px rgba(120, 90, 70, .06);
}
/* 番号はカード左上へ移動したため、アイコン枠は位置基準にしない */
.step__icon-wrap { position: static; display: inline-block; }
.step__icon {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon img { max-width: 104px; max-height: 104px; object-fit: contain; }
.step__num {
  position: absolute;
  top: 12px;   /* カードの左上に配置 */
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c96585;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 7px rgba(201, 101, 133, .3);
}
.step__title {
  margin: 14px 0 8px;
  font-size: 19px;
  line-height: 1.7;
  color: #6b5a4c;
  font-weight: 700;
}
.step__desc {
  margin: 0;
  color: #6b5a4c;
  font-size: 13.5px;
  line-height: 1.9;
}

/* =========================================================
   テンプレート紹介
   ========================================================= */
.templates {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 58px;
}
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tpl-card {
  background: #fffdf8;
  border: 1px solid #ece1d0;
  border-radius: 14px;
  padding: 14px 12px 18px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(120, 90, 70, .06);
}
.tpl-card__tag {
  font-size: 12.5px;
  font-weight: 700;
  color: #c96585;
  margin-bottom: 8px;
}
.tpl-card__thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tpl-card__thumb img { max-width: 100%; max-height: 150px; object-fit: contain; }
.tpl-card__name {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #6b5a4c;
  writing-mode: vertical-rl;
}
.tpl-card__desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #7a6c5e;
}

/* =========================================================
   自作テンプレート
   ========================================================= */
.custom-template {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 28px 62px;
}
.custom-template__inner {
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  box-shadow: 0 10px 22px rgba(120, 90, 70, .07);
}
.custom-template__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #c96585;
}
.custom-template__title {
  margin: 0;
  font-size: 35px;
  line-height: 1.55;
  color: #5b4f45;
}
.custom-template__desc {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 2;
  color: #6b5a4c;
  max-width: 820px;
}
.custom-template__cards {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.custom-template__card {
  background: #fbf6ee;
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 18px;
}
.custom-template__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 999px;
  background: #c96585;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.custom-template__card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.55;
  color: #5b4f45;
}
.custom-template__card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b5a4c;
}

/* =========================================================
   オーダーの流れ
   ========================================================= */
.flow {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 62px;
}
.flow__heading {
  text-align: center;
  margin-bottom: 30px;
}
.flow__ribbon { position: relative; display: inline-block; }
.flow__ribbon img { width: 602px; height: 110px; max-width: 100%; }
.flow__ribbon-text {
  position: absolute;
  inset: 0;
  top: -14px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  padding-bottom: 2px;
}
.flow__table {
  border: 1px solid #e6d8c6;
  border-radius: 14px;
  overflow: hidden;
  background: #fffdf8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.flow-col {
  border-right: 1px solid #eee2d2;
}
.flow-col:last-child { border-right: none; }
.flow-col__head {
  background: #f3ebdd;
  text-align: center;
  padding: 16px 10px;
  font-size: 17px;
  font-weight: 700;
  color: #6b5a4c;
  border-bottom: 1px solid #e6d8c6;
}
.flow-col__list {
  list-style: none;
  margin: 0;
  padding: 24px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow-col__list li {
  font-size: 15.5px;
  color: #6b5a4c;
  text-align: center;
  line-height: 1.65;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.flow-step {
  position: relative;
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 14px;
  padding: 22px 18px 20px;
  box-shadow: 0 6px 14px rgba(120, 90, 70, .06);
}
.flow-step__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c96585;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 14px;
  font-weight: 700;
}
.flow-step h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #5b4f45;
  text-align: center;
}
.flow-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #7a6c5e;
  text-align: center;
}

/* =========================================================
   便利機能
   ========================================================= */
.benefits {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 58px;
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.benefit__icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit__icon img { max-width: 148px; max-height: 148px; object-fit: contain; }
.benefit__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #6b5a4c;
  font-weight: 500;
}

/* =========================================================
   選ばれるデザイン紹介
   ========================================================= */
.designs {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 28px 58px;
}
.designs__row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.design-card {
  position: relative;
  width: 240px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.design-card__date {
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 13px;
  color: #4D4A47;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.design-card__name {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 36px;
  font-weight: 700;
  color: #5b4f45;
  letter-spacing: 0;
  line-height: 1.1;
}
.design-card__yomi {
  position: absolute;
  top: 50%;
  left: calc(50% + 26px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #b07f92;
  letter-spacing: 0;
  line-height: 1;
}
.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.pill {
  background: #fffdf8;
  border: 1px solid #ece1d0;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #6b5a4c;
}

/* =========================================================
   お客さまの声・活用シーン
   ========================================================= */
.voices {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 58px;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-content: center;
}
.voice-card {
  background: #fffdf8;
  border: 1px solid #ece1d0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(120, 90, 70, .06);
}
/* 素材を上下・中央揃えにし、サイズを大きめに */
.voice-card__body { display: flex; gap: 16px; align-items: center; }
.voice-card__portrait {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex: none;
}
.voice-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #c96585;
}
.voice-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #6b5a4c;
}
.voice-card__who {
  margin: 12px 0 0;
  font-size: 12px;
  color: #9a8a78;
  text-align: right;
}

/* =========================================================
   Before / After
   ========================================================= */
.beforeafter {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 28px 58px;
}
.ba__title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #5b4f45;
  margin: 0 0 34px;
  line-height: 1.5;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.ba-card { border-radius: 18px; padding: 28px 26px; }
.ba-card--before {
  background: #f4ece1;
  border: 1px solid #e3d6c3;
}
.ba-card--after {
  background: linear-gradient(158deg, #fffaf5 0%, #fdeef1 100%);
  border: 2px solid #d99cb1;
  box-shadow: 0 12px 26px rgba(201, 101, 133, .12);
}
.ba-card__label {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0;
}
.ba-card--before .ba-card__label { color: #9a8a78; }
.ba-card--after  .ba-card__label { color: #c96585; }
.ba-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-card__list li {
  font-size: 16px;
  line-height: 1.75;
  color: #7a6c5e;
}
.ba-card--after .ba-card__list li { color: #5b4f45; font-weight: 500; }
.ba-card__cat {
  display: block;
  font-size: 13.5px;
  color: #a89a86;
  margin-bottom: 3px;
}
.ba-card__cat--after { color: #c096a6; }

/* =========================================================
   料金プラン（4プラン）
   ========================================================= */
.pricing {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 28px 54px;
}
.pricing .section-title { margin-bottom: 38px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  border: 2px solid #d8ccb6;
  border-radius: 18px;
  background: #fffdf8;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(120, 90, 70, .08);
  display: flex;
  flex-direction: column;
}
.plan__head {
  text-align: center;
  padding: 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.plan__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan__price { text-align: center; }
.plan__price .mincho { font-size: 34px; font-weight: 700; color: #5b4f45; }
.plan__per { font-size: 14px; color: #8a7c6c; }
.plan__target {
  margin: 14px 0 16px;
  font-size: 13px;
  line-height: 1.75;
  color: #7a6c5e;
  text-align: center;
  min-height: 44px;
}
.plan__feats {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.plan__feats li {
  font-size: 13px;
  color: #6b5a4c;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.plan__feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.plan__btn {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(120, 90, 70, .16);
}

/* プラン別カラー（モックアップに合わせて設定） */
.plan--free   { border-color: #d9d3c8; }
.plan--free   .plan__head { background: #efeae1; color: #7a6c5e; }
.plan--free   .plan__feats li::before { background: #c3bcae; }
.plan--free   .plan__btn { background: #b3a897; }

.plan--light  { border-color: #d8ccb6; }
.plan--light  .plan__head { background: #f3ebdd; color: #6b5a4c; }
.plan--light  .plan__feats li::before { background: #a9b384; }
.plan--light  .plan__btn { background: #8b9a6f; }

.plan--standard { border-color: #c96585; }
.plan--standard .plan__head { background: #c96585; color: #fff; }
.plan--standard .plan__feats li::before { background: #c96585; }
.plan--standard .plan__btn { background: #c96585; }

.plan--pro { border-color: #c3b393; }
.plan--pro .plan__head { background: #efe6d6; color: #6b5a4c; }
.plan--pro .plan__feats li::before { background: #b8a67e; }
.plan--pro .plan__btn { background: #a89578; }

/* 注意書き */
.pricing__notes {
  border: 1px dashed #d9c8b3;
  border-radius: 14px;
  background: #fbf6ee;
  padding: 22px 26px;
  margin-top: 30px;
}
.pricing__notes p {
  margin: 0 0 8px;
  font-size: 12.5px;
  line-height: 1.85;
  color: #8a7c6c;
}
.pricing__notes p:last-child { margin-bottom: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 76px 28px 54px;
}
.faq__title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #5b4f45;
  margin: 0 0 34px;
  line-height: 1.5;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fffdf8;
  border: 1px solid #ece1d0;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 4px 10px rgba(120, 90, 70, .05);
}
.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #5b4f45;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  float: right;
  color: #c96585;
  font-weight: 700;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "－"; }
.faq-item p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6b5a4c;
}

/* =========================================================
   最終CTA
   ========================================================= */
.final-cta {
  position: relative;
  z-index: 2;
  padding: 72px 28px 92px;
}
.final-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.final-cta__wreath {
  position: relative;
  width: 220px;
  height: 220px;
  flex: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-cta__wreath img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.final-cta__wreath-text { position: relative; text-align: center; }
.final-cta__wreath-name { font-size: 44px; font-weight: 700; color: #5b4f45; }
.final-cta__wreath-yomi {
  font-size: 12px;
  color: #b07f92;
  letter-spacing: 0;
  margin-top: 2px;
}
.final-cta__wreath-date { font-size: 10.5px; color: #a89a86; margin-top: 8px; }
.final-cta__copy { flex: 1 1 420px; min-width: 300px; }
.final-cta__title {
  margin: 0 0 14px;
  font-size: 35px;
  font-weight: 700;
  color: #5b4f45;
  line-height: 1.5;
}
.final-cta__desc {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 2;
  color: #6b5a4c;
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c96585;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 17px 48px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(201, 101, 133, .32);
}
.final-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta__btn--outline {
  background: #fffdf8;
  color: #6b5a4c;
  border: 1px solid #e0d3bf;
  box-shadow: 0 8px 18px rgba(120, 90, 70, .12);
}
.final-cta__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: #8a7c6c;
  display: flex;
  align-items: center;
  gap: 7px;
}
.final-cta__note img { width: 16px; height: 16px; object-fit: contain; }

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 2;
  background: #efe7db;
  border-top: 1px solid #e0d3bf;
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 28px 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__brand { max-width: 320px; }
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.site-footer__logo img { width: 34px; height: 34px; object-fit: cover; border-radius: 10px; }
.site-footer__logo span {
  font-size: 18px;
  font-weight: 700;
  color: #6b5a4c;
  letter-spacing: 0;
}
.site-footer__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #8a7c6c;
}
.site-footer__cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.site-footer__heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #6b5a4c;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.site-footer__col a { font-size: 13px; color: #8a7c6c; }
.site-footer__bar { border-top: 1px solid #e0d3bf; }
.site-footer__bar p {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 28px;
  font-size: 12px;
  color: #a89a86;
  text-align: center;
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 980px) {
  /* ヒーロー右のUIモックアップを絶対配置から通常配置へ切替（崩れ防止） */
  .hero__mockup {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-top: 10px;
  }
  .hero__mockup-desktop {
    position: relative;
    top: auto; left: auto;
    width: 100%;
    max-width: 560px;
    height: auto;
  }
  .hero__mockup-phone {
    position: absolute;
    right: 0;
    bottom: -10px;
    top: auto; left: auto;
    width: 34%;
    max-width: 190px;
    height: auto;
  }
}

@media (max-width: 920px) {
  .section-title,
  .pain__title,
  .ba__title,
  .faq__title,
  .custom-template__title,
  .final-cta__title { font-size: 35px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .steps__lead br { display: none; }
  .tpl-grid   { grid-template-columns: repeat(3, 1fr); }
  .custom-template__cards { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .ben-grid   { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .pill-grid  { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid  { grid-template-columns: 1fr; }
  .ba-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .section-title,
  .pain__title,
  .ba__title,
  .faq__title,
  .custom-template__title,
  .final-cta__title { font-size: 35px; }
  .hero__title { font-size: 30px; }
  .hero__actions { flex-direction: column; }
  .hero__btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 22px 20px; }
  .tpl-grid   { grid-template-columns: repeat(2, 1fr); }
  .custom-template__inner { padding: 24px 20px; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow__ribbon-text { font-size: 22px; top: 0; left: 0; }
  .ben-grid   { grid-template-columns: repeat(2, 1fr); }
  .pill-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .beta-box { max-width: 100%; }
  .final-cta__actions { flex-direction: column; }
  .final-cta__btn { width: 100%; padding-left: 22px; padding-right: 22px; }
  .final-cta__desc br { display: none; }
}

/* =========================================================
   スクロール／読み込みアニメーション
   - .reveal   : フェード＋下から上（見出し・ブロック用）
   - .reveal-x : フェード＋左から右（ミニカード・素材の順次表示用）
   is-visible が付くと表示。遅延はJSが要素ごとに設定します。
   ========================================================= */
.anim-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.anim-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.anim-ready .reveal-x {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.anim-ready .reveal-x.is-visible {
  opacity: 1;
  transform: none;
}
/* 動きを減らす設定の環境では演出を無効化して常時表示 */
@media (prefers-reduced-motion: reduce) {
  .anim-ready .reveal,
  .anim-ready .reveal-x {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
