/* ============================================================
   eHitotoki LP — styles
   Palette
   ------------------------------------------------------------ */
:root{
  --orange:        #E4885A;          /* primary */
  --orange-deep:   #D87446;          /* hover / accent */
  --orange-soft:   #F6E1D2;          /* tint */
  --peach-bg:      #FCF5EE;          /* warm canvas */
  --cream:         #FFFAF3;
  --ink:           #2A2421;
  --ink-soft:      #5C5249;
  --line:          #E8DDD0;
  --line-soft:     #F1E6D7;
  --shadow-sm: 0 2px 6px rgba(60, 32, 12, .06);
  --shadow-md: 0 10px 30px rgba(60, 32, 12, .08);
  --shadow-lg: 0 24px 60px rgba(60, 32, 12, .14);
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing:.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul, ol{ list-style:none; padding:0; margin:0; }
em{ font-style: normal; }

.container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ===== Brand mark ===== */
.brand{
  display:inline-flex;
  align-items:baseline;
  gap:1px;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing:.01em;
  line-height:1;
}
.brand-mark{
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  margin-right: -1px;
}
.brand-word{
  color: var(--ink);
  font-weight: 600;
}
.brand-inline{
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand-inline::first-letter{
  color: var(--orange);
  font-style: italic;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arr{ font-size: 18px; line-height: 1; transform: translateY(-1px); }
.btn-primary{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 14px rgba(228, 136, 90, .35);
}
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost{
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover{ border-color: var(--orange); color: var(--orange); }
.btn-ghost-light{
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-sm{ padding: 10px 22px; font-size: 13px; }

/* ===== Header ===== */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255, 250, 243, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(232, 221, 208, .6);
}
.header-inner{
  display:flex;
  align-items:center;
  gap: 28px;
  height: 72px;
}
.primary-nav{
  display:flex;
  gap: 28px;
  margin-left: 28px;
  flex: 1;
}
.primary-nav a{
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  position:relative;
  padding: 4px 0;
}
.primary-nav a:hover{ color: var(--orange); }

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 70px 0 96px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 88% 20%, rgba(246,225,210,.55), transparent 60%),
    radial-gradient(700px 400px at 0% 90%, rgba(252,245,238,1), transparent 70%);
  pointer-events:none;
}
.deco{ position:absolute; pointer-events:none; opacity:.55; z-index:0; }
.deco-leaf-tl{ width: 110px; top: 36px; left: -38px; transform: rotate(-22deg); opacity:.45; }
.deco-leaf-bl{ width: 140px; bottom: 24px; left: -50px; transform: rotate(18deg); opacity:.4; }
.deco-circle-peach{ width: 320px; right: -120px; bottom: -90px; opacity:.55; z-index:0; }

.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  position:relative;
  z-index: 2;
}
.hero-copy{ position:relative; z-index: 3; }
.eyebrow{
  color: var(--orange);
  font-size: 13.5px;
  letter-spacing:.16em;
  margin: 0 0 14px;
  font-weight: 500;
}
.hero-title{
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.45;
  letter-spacing:.04em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero-title .quote{
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
  margin: 0 .12em;
  font-size: 1em;
}
.hero-lead{
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.95;
}
.hero-ctas{
  display:flex;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.hero-badges li{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-badges .bi{ width:16px; height:16px; color: var(--orange); flex:none; }

/* Hero visual — phone + flanking photos */
.hero-visual{
  position: relative;
  height: 560px;
}
.phone-card{
  position: absolute;
  inset: 0;
}
.phone{
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-58%);
  width: 268px;
  height: 540px;
  background: #1c1612;
  border-radius: 42px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.phone-screen{
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #FFFCF7 0%, #FBEDDD 100%);
  position: relative;
  overflow: hidden;
  padding: 26px 22px 18px;
  text-align: center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.phone-notch{
  position:absolute;
  top: 18px;
  left:50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background:#1c1612;
  border-radius: 14px;
  z-index: 2;
}
.phone-brand{
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing:.02em;
  color: var(--ink);
  margin-top: 10px;
}
.phone-brand::first-letter{ color: var(--orange); font-style:italic; }
.phone-gift{ width: 130px; margin: 6px auto 0; }
.phone-gift img{ width:100%; }
.phone-msg{
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 4px 0 8px;
}
.phone-msg em{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--orange);
}
.phone-qr{
  width: 86px;
  height: 86px;
  background:#fff;
  padding: 4px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.phone-cta{
  margin-top: 12px;
  background: var(--orange);
  color:#fff;
  border:none;
  font-size: 11.5px;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-weight:500;
  cursor: pointer;
}

.phone-stack-img{
  position:absolute;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.phone-stack-img img{ width: 100%; height: 100%; object-fit: cover; }
.phone-stack-storefront{
  width: 200px; height: 230px;
  right: 0; top: 30px;
  z-index: 2;
}
.phone-stack-dessert{
  width: 220px; height: 200px;
  right: -30px; bottom: 30px;
  z-index: 2;
  border-radius: 24px;
}

/* ===== Pain points ===== */
.problems{
  background: #fff;
  padding: 84px 0;
  position:relative;
  overflow:hidden;
}
.deco-leaf-pain-r{
  width: 160px; right: -20px; top: 60%; opacity:.5; transform: rotate(20deg);
}
.problems-inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-title{
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: .06em;
  text-align:center;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-title.small{ text-align:left; font-size: 22px; margin-bottom: 18px; }
.section-sub{
  text-align:center;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 48px;
  letter-spacing: .04em;
}
.problems-sub{
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 26px;
}
.problems-list{
  display:grid;
  gap: 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.problems-list li{
  display:flex; align-items:flex-start; gap:12px;
  padding: 6px 0;
}
.problems-list .check{
  width: 20px; height: 20px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  flex:none;
  position: relative;
  margin-top: 4px;
}
.problems-list .check::after{
  content:"";
  position:absolute;
  left: 4px; top: 8px;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--orange);
  border-bottom: 1.8px solid var(--orange);
  transform: rotate(-45deg);
}
.problems-visual{
  position:relative;
  height: 320px;
}
.problems-photo{
  position:absolute;
  width: 78%;
  height: 240px;
  left: 0; top: 30px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.problems-photo img{ width:100%; height:100%; object-fit:cover; }
.problems-portrait{
  position:absolute;
  width: 200px; height: 200px;
  right: 0; top: 0;
  border-radius: 50%;
  overflow:visible;
  z-index:2;
}
.problems-portrait img{
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.problems-portrait .speech{
  position:absolute;
  top: -20px; left: -200px;
  background: #fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.problems-portrait .speech::after{
  content:"";
  position:absolute;
  right: -10px; top: 36px;
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-45deg);
}

/* ===== Cycle (4-actor circular layout) ===== */
.cycle{
  padding: 86px 0 96px;
  background: var(--peach-bg);
  position:relative;
  overflow:hidden;
}
.cycle-leaf{ z-index:0; }
.cycle-leaf-l{ width: 130px; left: 30px; top: 200px; transform: rotate(-12deg); opacity:.5; }
.cycle-leaf-r{ width: 140px; right: 30px; bottom: 60px; transform: rotate(12deg); opacity:.5; }
.cycle-title{ margin-bottom: 36px; }
.cycle-title-accent{ color: var(--orange); }

.cycle-stage{
  position: relative;
  width: 980px;
  max-width: 100%;
  height: 600px;
  margin: 0 auto;
}

/* corner photos — larger */
.cycle-photo{
  position:absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow:hidden;
  margin: 0;
  background:#fff;
  box-shadow: 0 6px 18px rgba(60,32,12,.10);
  z-index: 2;
}
.cycle-photo img{ width:100%; height:100%; object-fit: cover; }
.cp-tl{ top: 20px;   left: 0; }
.cp-tr{ top: 20px;   right: 0; }
.cp-bl{ bottom: 20px; left: 0; }
.cp-br{ bottom: 20px; right: 0; }

/* svg arrows overlay */
.cycle-arrows{
  position:absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* center cluster */
.cycle-center{
  position:absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align:center;
  z-index: 1;
}
.cycle-center-flow{
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1.95;
  margin: 0 0 8px;
  white-space: nowrap;
}
.cycle-center-flow .ar{
  color: var(--orange);
  margin: 0 .35em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: .95em;
}
.cycle-center-shop{ width: 80px; height: auto; opacity: .7; margin-top: 4px; }

/* 4 actor cards */
.cyc-card{
  position:absolute;
  width: 200px;
  background: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 14px;
  padding: 18px 16px 16px;
  text-align:center;
  box-shadow: 0 6px 18px rgba(228,136,90,.08);
  z-index: 3;
}
.cyc-num{
  position:absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 2px 10px;
  border-radius: 999px;
}
.cyc-name{
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin: 4px 0 10px;
  letter-spacing: .02em;
}
.cyc-icon{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 10px;
  border: 1px solid var(--orange-soft);
}
.cyc-icon-eh{ font-family: 'Cormorant Garamond', serif; }
.cyc-eh{
  color: var(--orange);
  font-weight: 600;
  font-size: 16px;
  font-style: italic;
  letter-spacing:.02em;
}
.cyc-desc{
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* card placement around the central cluster */
.cyc-card{ width: 210px; }
.cyc-01{ top: 26px;     left: 50%; transform: translateX(-50%); }   /* top  */
.cyc-02{ top: 50%;      right: 220px; transform: translateY(-50%); } /* right of center */
.cyc-03{ bottom: 26px;  left: 50%; transform: translateX(-50%); }   /* bottom */
.cyc-04{ top: 50%;      left: 220px; transform: translateY(-50%); }  /* left of center */

/* ===== Features ===== */
.features{ padding: 90px 0; background: #fff; }
.feature-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.f-card{
  background: #fff;
  border:1px solid var(--line-soft);
  border-radius: 14px;
  padding: 22px 16px 22px;
  text-align:center;
  box-shadow: 0 2px 0 rgba(60, 32, 12, .03);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.f-card:hover{
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.f-icon{
  height: 60px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
  position:relative;
}
.f-icon img{ height: 50px; width:auto; max-width: 100%; object-fit:contain; }
.f-icon-line{ gap: 6px; }
.f-icon-mini{ height: 38px !important; }
.f-card h3{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.5;
}
.f-card p{
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ===== Industries ===== */
.industries{ padding: 90px 0; background: var(--peach-bg); }
.industry-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.ind-card{
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ind-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ind-img{ height: 180px; overflow:hidden; }
.ind-img img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.ind-card:hover .ind-img img{ transform: scale(1.04); }
.ind-body{
  padding: 20px 22px 24px;
  position: relative;
}
.ind-icon{
  position:absolute;
  left: 22px; top: -28px;
  width: 56px; height: 56px;
  background:#fff;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
}
.ind-icon img{ width: 30px; height: 30px; object-fit:contain; }
.ind-body h3{
  margin: 24px 0 6px;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
}
.ind-body p{
  margin:0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ===== Industry detail ===== */
.ind-detail{ padding: 90px 0; background: #fff; }
.ind-detail-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  margin-top: 20px;
}
.d-card{
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 4px 22px;
}
.d-head{
  display:flex; align-items:center; gap: 12px;
  margin-bottom: 8px;
}
.d-head img, .d-head svg{ width: 32px; height: 32px; flex: none; }
.d-head h3{
  font-family: 'Noto Serif JP', serif;
  font-size: 15.5px;
  font-weight: 600;
  margin: 0;
  color: var(--orange);
  letter-spacing: .04em;
}
.d-card p{
  margin:0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  padding-left: 44px;
}

/* ===== Benefits ===== */
.benefits{ padding: 86px 0; background: var(--peach-bg); }
.benefit-row{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.b-card{
  text-align: center;
  padding: 8px;
}
.b-icon{
  height: 60px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
}
.b-icon img{ height: 52px; width:auto; }
.b-card h3{
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.b-card p{
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ===== Flow ===== */
.flow{ padding: 86px 0; background:#fff; }
.flow-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 28px;
  counter-reset: step;
}
.step{
  text-align:center;
  position:relative;
}
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px; height:32px;
  border-radius: 50%;
  background: var(--orange);
  color:#fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}
.step h3{
  font-family: 'Noto Serif JP', serif;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing:.04em;
}
.step-img{
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 12px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.step-img img{ width:100%; height:100%; object-fit: cover; }
.step p{
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.step + .step::before{
  content: "›";
  position:absolute;
  left: -22px; top: 4px;
  font-size: 28px;
  color: var(--orange);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* ===== CTA banner ===== */
.cta-banner{
  position: relative;
  background: linear-gradient(95deg, #E89262 0%, #E07647 100%);
  color: #fff;
  padding: 64px 0 70px;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 88% 50%, rgba(255,255,255,.18), transparent 60%);
  pointer-events:none;
}
.cta-leaf{
  position:absolute;
  width: 200px;
  right: 22%; top: -10px;
  opacity: .3;
  filter: brightness(1.4) saturate(.4);
  pointer-events:none;
}
.cta-gift{
  position:absolute;
  width: 280px;
  right: 20px; bottom: -30px;
  pointer-events:none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.18));
}
.cta-inner{ position:relative; z-index:2; }
.cta-copy{ max-width: 640px; }
.cta-lead{
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 26px;
  letter-spacing:.04em;
}
.cta-actions{ display:flex; gap: 14px; }
.cta-actions .btn-primary{
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.cta-actions .btn-primary:hover{ background: var(--cream); }

/* ===== Footer ===== */
.site-footer{
  background: #fff;
  padding: 56px 0 0;
  border-top: 1px solid var(--line-soft);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foot-tag{
  font-size: 12px;
  color: var(--ink-soft);
  margin: 14px 0 18px;
}
.foot-social{ display:flex; gap: 8px; color: var(--ink); }
.foot-social a{
  width: 34px; height: 34px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  border-radius: 8px;
  transition: all .15s ease;
}
.foot-social a:hover{ color: var(--orange); border-color: var(--orange); }
.foot-col{ display:flex; flex-direction:column; gap: 12px; font-size: 13px; padding-top: 6px; }
.foot-col a{ color: var(--ink); }
.foot-col a:hover{ color: var(--orange); }
.foot-contact{ font-size: 13px; padding-top: 4px; }
.foot-label{ margin: 0 0 4px; font-weight: 600; }
.foot-hours{ margin: 0 0 8px; color: var(--ink-soft); font-size: 12px; }
.foot-tel{ margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.foot-mail{ margin: 0; color: var(--ink-soft); }
.copyright{
  text-align:center;
  font-size: 11px;
  color: var(--ink-soft);
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

/* ===== Campaign Banner ===== */
.campaign-banner{
  background: var(--orange-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 48px 0;
}
.campaign-inner{ text-align: center; }
.campaign-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 10px;
}
.campaign-title{
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: .04em;
}
.campaign-sub{
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.campaign-benefit{
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.campaign-benefit strong{
  font-size: 18px;
  color: var(--orange-deep);
  font-weight: 700;
}
.campaign-benefit span{
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===== Pricing ===== */
.pricing{
  padding: 86px 0;
  background: #fff;
}
.plan-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 32px;
}
.plan-card{
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.plan-card--popular{
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.plan-badge{
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 18px;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-name{
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: .04em;
}
.plan-desc{
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  min-height: 40px;
}
.plan-price{
  margin-bottom: 6px;
}
.plan-yen{
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.plan-cycle{
  font-size: 14px;
  color: var(--ink-soft);
}
.plan-fee{
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.plan-fee strong{ color: var(--orange); font-weight: 700; }
.plan-features{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  min-height: 160px;
}
.plan-features li{
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--orange);
  border-bottom: 1.6px solid var(--orange);
  transform: rotate(-45deg);
}
.plan-btn{ width: 100%; justify-content: center; }
.plan-note{
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 2;
}

@media(max-width: 640px){
  .plan-grid{ grid-template-columns: 1fr; }
  .campaign-benefit{ padding: 16px 20px; }
  .campaign-title{ font-size: 22px; }
}
