/* ============================================================
   JIROKEN 工務店 LP - Sample by soraha design
   コンセプト：「絵本のページをめくる、木の家。」
   既存サイトの "親しみ・温度感" を継承しつつ、4 課題を解決
   ============================================================ */

:root{
  /* ── Color Palette ── */
  --c-base:       #FBF8F2;   /* 生成りオフホワイト 65% */
  --c-base-soft:  #F4EFE3;   /* ベース更にトーン落とし */
  --c-surface:    #FFFFFF;   /* カード白 */
  --c-text:       #2B2A26;   /* 墨黒・本文 */
  --c-text-sub:   #5B574F;   /* 補助文字 */
  --c-text-mute:  #8F8A80;   /* キャプション */
  --c-line:       #E8DFCF;   /* 罫線・薄 */
  --c-line-mid:   #D6CAB3;   /* 罫線・中 */
  --c-main:       #3D4A2A;   /* 杉葉グリーン・メイン 15% */
  --c-main-d:     #2A3320;   /* グリーン濃 */
  --c-accent:     #C8643C;   /* 焙煎テラコッタ・CTA 8% */
  --c-accent-d:   #A04E2C;   /* テラコッタ濃 */
  --c-accent-soft:#F2D9CC;   /* テラコッタ淡 */
  --c-warm:       #A8946F;   /* 麻ベージュ・装飾 2% */
  --c-warm-soft:  #E8DCC4;   /* ベージュ淡 */

  /* ── Fonts ── */
  --f-h:    "Zen Old Mincho", "Yu Mincho", serif;        /* 大見出し */
  --f-h2:   "Zen Kaku Gothic New", sans-serif;            /* 中見出し */
  --f-jp:   "Noto Sans JP", sans-serif;                   /* 本文 */
  --f-en:   "Fraunces", "Cormorant Garamond", serif;      /* 英字 */
  --f-num:  "Cormorant Garamond", "Fraunces", serif;      /* 数字 */
  --f-klee: "Klee One", "Yu Mincho", serif;               /* 手書き・ひと言だけ */

  /* ── Radii・Shadow ── */
  --r-sm: 4px; --r-md: 10px; --r-lg: 18px; --r-pill: 999px;
  --shadow-soft: 0 4px 16px rgba(60, 50, 30, 0.06);
  --shadow-md:   0 12px 36px rgba(60, 50, 30, 0.10);
}

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

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

body{
  font-family: var(--f-jp);
  color: var(--c-text);
  background: var(--c-base);
  line-height: 1.9;
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  padding-top: 40px;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover{ opacity: .8; }
ul,ol{ list-style: none; }

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .18s; }
.reveal-delay-3{ transition-delay: .28s; }
.reveal-delay-4{ transition-delay: .38s; }
.reveal-delay-5{ transition-delay: .48s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
body.skip-reveal .reveal{ opacity:1 !important; transform:none !important; }

/* ============================================================
   Sample notice
   ============================================================ */
.sample-notice{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--c-main);
  color: var(--c-base);
  font-size: 12px;
}
.sample-notice-inner{
  max-width: 1180px; margin: 0 auto;
  padding: 10px 32px;
  display: flex; align-items: center; gap: 12px;
}
.sample-badge{
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-en); font-style: italic; font-weight: 600;
  padding: 2px 9px;
  border-radius: var(--r-sm);
  letter-spacing: .12em;
  font-size: 11px;
}
.sample-notice-text{ flex: 1; opacity: .92; }
.sample-notice-close{
  background: none; border: none; color: var(--c-base);
  font-size: 18px; cursor: pointer; padding: 0 6px; opacity: .7;
}
.sample-notice-close:hover{ opacity: 1; }
body.sample-closed{ padding-top: 0; }
body.sample-closed .sample-notice{ display: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: fixed; top: 40px; left: 0; right: 0; z-index: 90;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled{
  background: rgba(255, 253, 247, 0.98);
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-soft);
}
body.sample-closed .site-header{ top: 0; }

.header-inner{
  display: flex; align-items: center; gap: 24px;
  padding: 14px 32px;
}
.logo{ display: flex; align-items: center; gap: 12px; }
.logo-mark{
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-mark svg{ width: 100%; height: 100%; }
.logo-text{ display: flex; flex-direction: column; line-height: 1.1; }
.logo-name{
  font-family: var(--f-h);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-main);
  letter-spacing: .04em;
}
.logo-sub{
  font-family: var(--f-jp);
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: .14em;
  margin-top: 2px;
}

.g-nav{
  display: flex; gap: 22px;
  margin-left: auto;
  font-family: var(--f-h);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
}
.g-nav a{ color: var(--c-text-sub); }
.g-nav a:hover{ color: var(--c-main); opacity: 1; }

.header-cta-area{ display: flex; align-items: center; gap: 14px; }

.header-star{
  display: inline-flex; align-items: baseline; gap: 4px;
  padding: 4px 10px;
  background: var(--c-warm-soft);
  border-radius: var(--r-pill);
  font-family: var(--f-num);
  color: var(--c-accent-d);
  line-height: 1;
}
.header-star .star-mark{ color: var(--c-accent); font-size: 13px; }
.header-star .star-num{ font-weight: 600; font-size: 14px; letter-spacing: .04em; }

.header-tel{
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-num);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-main-d);
  letter-spacing: .04em;
}
.tel-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  font-family: var(--f-jp);
}
.header-cta{
  display: inline-flex; align-items: center;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-jp);
  font-size: 13px; font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
  transition: background .2s, transform .2s;
}
.header-cta:hover{
  background: var(--c-accent-d);
  opacity: 1;
  transform: translateY(-1px);
}

.hamburger{
  display: none;
  background: none; border: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; padding: 0;
}
.hamburger span{
  display: block; width: 22px; height: 2px;
  background: var(--c-main);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.drawer{
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--c-main);
  color: var(--c-base);
  z-index: 95;
  padding: 84px 32px 40px;
  transform: translateY(-110%);
  transition: transform .35s ease;
}
.drawer.is-open{ transform: translateY(0); }
.drawer-nav{
  display: flex; flex-direction: column; gap: 18px;
  font-family: var(--f-h); font-size: 17px;
}
.drawer-nav a{ padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.drawer-cta{
  margin-top: 18px;
  background: var(--c-accent);
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: var(--r-md);
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-jp);
  font-size: 14px; font-weight: 500;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer; border: none;
}
.btn-primary{
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(200, 100, 60, 0.25);
}
.btn-primary:hover{
  opacity: 1;
  background: var(--c-accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 100, 60, 0.35);
}
.btn-ghost{
  background: transparent;
  color: var(--c-main);
  border: 1.5px solid var(--c-main);
}
.btn-ghost:hover{
  opacity: 1;
  background: var(--c-main);
  color: var(--c-base);
  transform: translateY(-2px);
}
.btn-large{ padding: 16px 32px; font-size: 15px; }
.btn-xlarge{ padding: 22px 44px; font-size: 18px; font-weight: 600; gap: 14px; }
.btn-arrow{ display:inline-block; transition: transform .2s; }
.btn:hover .btn-arrow{ transform: translateX(3px); }
.btn-tel-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}
.btn-xlarge .btn-tel-icon{ width: 32px; height: 32px; font-size: 15px; }
.btn-tel-num{ font-family: var(--f-num); letter-spacing: .04em; font-size: 22px; }
.btn-xlarge .btn-tel-num{ font-size: 26px; }

/* ============================================================
   Section common
   ============================================================ */
.section{
  padding: 120px 0;
  position: relative;
}
.section-head{ max-width: 740px; margin-bottom: 72px; }
.section-head-center{ text-align: center; margin-left: auto; margin-right: auto; }

.section-eyebrow{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.section-head-center .section-eyebrow{ display: block; }

.section-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.6;
  color: var(--c-main-d);
  letter-spacing: .04em;
}
.section-title-em{
  position: relative;
  color: var(--c-accent-d);
  display: inline-block;
}
.section-title-em::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: rgba(200, 100, 60, 0.18);
  border-radius: var(--r-pill);
  z-index: -1;
}
.section-lead{
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-text-sub);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  margin-top: 70px;
  padding: 80px 0 100px;
  background: var(--c-base);
  overflow: hidden;
}
.hero::before{
  /* 装飾：左側に淡い円 */
  content: "";
  position: absolute;
  top: -120px; left: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--c-warm-soft) 0%, transparent 70%);
  opacity: .7;
  pointer-events: none;
}
.hero-wave{
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  width: 100%; height: 40px;
  pointer-events: none;
  opacity: .6;
}
.hero-inner{
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--c-accent);
  margin-bottom: 32px;
}
.hero-title{
  font-family: var(--f-h);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.55;
  color: var(--c-main-d);
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-title-klee{
  display: block;
  font-family: var(--f-klee);
  font-weight: 600;
  font-size: 38px;
  color: var(--c-accent-d);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.hero-title-em{
  color: var(--c-accent-d);
  position: relative;
}
.hero-title-em::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: rgba(200, 100, 60, 0.22);
  border-radius: var(--r-pill);
  z-index: -1;
}
.hero-tagline{
  font-family: var(--f-h2);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-main);
  letter-spacing: .08em;
  padding: 8px 0;
  border-top: 1px solid var(--c-warm);
  border-bottom: 1px solid var(--c-warm);
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 28px;
}
.hero-lead{
  font-size: 16px;
  line-height: 2;
  color: var(--c-text-sub);
  margin-bottom: 36px;
}
.hero-actions{
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-handwrite{
  font-family: var(--f-klee);
  font-size: 18px;
  color: var(--c-warm);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 8px;
}

.hero-photo{
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin-left: auto;
}
.hero-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  position: relative; z-index: 2;
}
.hero-photo-frame{
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 2px solid var(--c-accent);
  border-radius: var(--r-lg);
  z-index: 1;
}
.hero-photo-star{
  position: absolute;
  bottom: -24px; left: -24px;
  z-index: 5;
  width: 120px; height: 120px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200, 100, 60, 0.35);
  transform: rotate(-8deg);
}
.star-big{ font-size: 22px; line-height: 1; margin-bottom: 2px; }
.star-num-big{
  font-family: var(--f-num);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: .04em;
}
.star-cap{
  font-family: var(--f-jp);
  font-size: 10px;
  line-height: 1.4;
  margin-top: 6px;
  font-weight: 400;
}

/* ============================================================
   Key Message
   ============================================================ */
.key-message{
  background: var(--c-main);
  color: var(--c-base);
  padding: 80px 0;
  text-align: center;
}
.key-quote{
  font-family: var(--f-h);
  font-weight: 500;
  font-size: 28px;
  line-height: 2;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.key-em{
  position: relative;
  color: #fff;
  border-bottom: 2px dashed rgba(200, 100, 60, 0.7);
  padding-bottom: 4px;
}
.key-sign{
  font-family: var(--f-klee);
  font-size: 16px;
  color: var(--c-accent-soft);
}

/* ============================================================
   Assurance (3 つのお約束)
   ============================================================ */
.section-assurance{
  background: var(--c-base);
}
.assurance-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.assurance-item{
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.assurance-num{
  font-family: var(--f-num);
  font-style: italic;
  font-size: 40px;
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.assurance-icon{
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  display: block;
}
.assurance-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.65;
  color: var(--c-main-d);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.assurance-text{
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-sub);
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================
   Story (カナダ修行)
   ============================================================ */
.section-story{
  background: var(--c-base-soft);
}
.story-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.story-image{
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.story-image img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-image-tag{
  position: absolute;
  top: 24px; right: 24px;
  background: var(--c-base);
  color: var(--c-main-d);
  padding: 12px 18px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  font-family: var(--f-en);
  text-align: right;
  box-shadow: var(--shadow-soft);
}
.story-image-tag .tag-en{
  font-style: italic; font-size: 12px;
  color: var(--c-accent);
  letter-spacing: .12em;
}
.story-image-tag .tag-jp{
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 17px;
  color: var(--c-main-d);
  letter-spacing: .04em;
  margin-top: 2px;
}

.story-body{
  margin-top: 36px;
}
.story-body p{
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-text-sub);
  margin-bottom: 18px;
}
.story-body p strong{
  color: var(--c-accent-d);
  font-weight: 600;
}
.story-quote{
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--c-base);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.quote-handwrite{
  font-family: var(--f-klee);
  font-size: 22px;
  line-height: 1.8;
  color: var(--c-main-d);
}
.quote-author{
  display: block;
  margin-top: 12px;
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  color: var(--c-accent);
  letter-spacing: .14em;
}

/* ============================================================
   About (夫婦)
   ============================================================ */
.section-about{
  background: var(--c-base);
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.about-card{
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.about-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-photo{
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--c-warm-soft);
}
.about-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-body{ padding: 36px 32px 40px; }

/* 賢次郎 ─ 硬め */
.about-card-hard .about-role{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--c-main);
  margin-bottom: 6px;
}
/* 裕美子 ─ 柔らかめ */
.about-card-soft .about-role-soft{
  font-family: var(--f-klee);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--c-accent-d);
  margin-bottom: 6px;
  transform: rotate(-1deg);
  display: inline-block;
}

.about-name{
  font-family: var(--f-h);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-main-d);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.about-name-en{
  display: block;
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  color: var(--c-warm);
  font-weight: 400;
  letter-spacing: .12em;
  margin-top: 6px;
}

/* 賢次郎の資格バッジ */
.about-badge-list{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.about-badge-list .badge{
  display: inline-block;
  background: var(--c-main);
  color: #fff;
  font-family: var(--f-h2);
  font-weight: 500;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  letter-spacing: .04em;
  line-height: 1.3;
}

/* 裕美子の柔らかリスト */
.about-soft-list{
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px dashed var(--c-warm);
  border-bottom: 1px dashed var(--c-warm);
  font-size: 13px;
  color: var(--c-text-sub);
}
.about-soft-list .soft-icon{
  display: inline-block;
  width: 22px;
  color: var(--c-accent);
  font-family: var(--f-klee);
  text-align: center;
}

.about-bio{
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-sub);
}
.about-bio strong{
  color: var(--c-accent-d);
  font-weight: 600;
}

.about-quote{
  text-align: center;
  padding: 40px 28px;
  background: var(--c-base-soft);
  border-radius: var(--r-lg);
  position: relative;
}
.about-quote p{
  font-family: var(--f-h);
  font-weight: 500;
  font-size: 22px;
  line-height: 2;
  color: var(--c-main-d);
  letter-spacing: .04em;
}
.about-quote strong{
  color: var(--c-accent-d);
  font-weight: 700;
  font-size: 28px;
}
.quote-small{
  display: block;
  margin-top: 8px;
  font-family: var(--f-klee);
  font-size: 15px;
  color: var(--c-text-sub);
}

/* ============================================================
   CTA Block (繰り返し用)
   ============================================================ */
.cta-block{
  background: var(--c-warm-soft);
  padding: 72px 0;
  position: relative;
}
.cta-inner{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-kicker{
  font-family: var(--f-klee);
  font-size: 14px;
  color: var(--c-accent-d);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.cta-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.7;
  color: var(--c-main-d);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.cta-em{ color: var(--c-accent-d); }
.cta-lead{
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 32px;
}
.cta-actions{
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Service (4 本柱)
   ============================================================ */
.section-service{
  background: var(--c-base);
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}
.service-card{
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-bottom: 1px dashed var(--c-warm);
  padding-bottom: 36px;
}
.service-icon-wrap{
  width: 90px; height: 90px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg{ width: 100%; height: 100%; }
.service-num{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  color: var(--c-accent);
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.service-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-main-d);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.service-desc{
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-sub);
}

/* ============================================================
   Works (施工事例) ─ マソンリー
   ============================================================ */
.section-works{
  background: var(--c-base-soft);
}
.works-masonry{
  column-count: 3;
  column-gap: 28px;
}
.work-card{
  break-inside: avoid;
  margin-bottom: 28px;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
}
.work-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.work-thumb{
  overflow: hidden;
}
.work-thumb img{
  width: 100%; height: auto; display: block;
  transition: transform .4s;
}
.work-card:hover .work-thumb img{
  transform: scale(1.04);
}
.work-body{ padding: 22px 24px 26px; }
.work-meta{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  color: var(--c-accent);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.work-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-main-d);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.work-desc{
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-sub);
}
.works-note{
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--c-text-mute);
}

/* ============================================================
   Voice (★4.9 口コミ)
   ============================================================ */
.section-voice{
  background: var(--c-base);
}
.voice-headline{
  text-align: center;
  margin-bottom: 64px;
}
.voice-badge{
  display: inline-flex; flex-direction: column;
  align-items: center;
  padding: 20px 36px;
  background: var(--c-base-soft);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-lg);
  margin-bottom: 36px;
}
.voice-badge-stars{
  font-size: 22px;
  color: var(--c-accent);
  letter-spacing: 6px;
  margin-bottom: 4px;
}
.voice-badge-num{
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--c-accent-d);
  letter-spacing: .02em;
}
.voice-badge-cap{
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: .08em;
}
.voice-title{ font-size: 32px; }

.voice-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice-card{
  background: var(--c-base-soft);
  padding: 36px 32px 28px;
  border-radius: var(--r-md);
  position: relative;
}
.voice-wave{
  position: absolute;
  top: 12px; left: 28px;
  width: calc(100% - 56px);
  height: 12px;
}
.voice-body{
  font-family: var(--f-jp);
  font-size: 14px;
  line-height: 2.1;
  color: var(--c-text);
  margin-top: 18px;
  margin-bottom: 20px;
}
.voice-meta{
  padding-top: 16px;
  border-top: 1px dashed var(--c-warm);
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--c-text-mute);
}
.voice-stars{
  color: var(--c-accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.voice-source{
  margin-top: 32px;
  text-align: center;
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: .08em;
}

/* ============================================================
   Flow (ご相談の流れ ─ 絵本の章)
   ============================================================ */
.section-flow{
  background: var(--c-base-soft);
}
.flow-list{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.flow-step{
  background: var(--c-surface);
  padding: 32px 22px;
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.flow-step:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.flow-chapter{
  font-family: var(--f-klee);
  font-size: 14px;
  color: var(--c-accent-d);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.flow-step-title{
  font-family: var(--f-h);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-main-d);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.flow-step-desc{
  font-size: 12px;
  line-height: 1.85;
  color: var(--c-text-sub);
}

/* ============================================================
   Access
   ============================================================ */
.section-access{
  background: var(--c-base);
}
.access-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.access-lead{
  margin: 24px 0 32px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--c-text-sub);
}
.access-info{
  display: flex; flex-direction: column;
  gap: 4px;
}
.access-info-row{
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.access-info-row dt{
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c-accent);
  padding-top: 2px;
}
.access-info-row dd{
  color: var(--c-text);
  line-height: 1.85;
}
.access-info-row a{
  color: var(--c-accent-d);
  border-bottom: 1px solid var(--c-line);
}
.info-sub{
  display: block;
  font-size: 12px;
  color: var(--c-text-mute);
  margin-top: 4px;
}

.access-map{
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.access-map img{
  width: 100%; height: 100%; object-fit: cover;
}
.access-map-cap{
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(43, 42, 38, 0.84);
  color: var(--c-base);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-klee);
  font-size: 14px;
}

/* ============================================================
   Contact
   ============================================================ */
.section-contact{
  background: var(--c-main);
  color: var(--c-base);
  text-align: center;
  padding: 110px 0;
}
.contact-inner{ max-width: 680px; margin: 0 auto; }
.contact-handwrite{
  font-family: var(--f-klee);
  font-size: 20px;
  color: var(--c-accent-soft);
  margin-bottom: 18px;
  transform: rotate(-1deg);
  display: inline-block;
}
.contact-title{
  color: #fff;
  margin-bottom: 22px;
}
.contact-title .section-title-em{
  color: var(--c-accent-soft);
}
.contact-title .section-title-em::after{
  background: rgba(242, 217, 204, 0.25);
}
.contact-lead{
  font-size: 15px;
  line-height: 2.1;
  color: rgba(251, 248, 242, 0.85);
  margin-bottom: 40px;
}
.contact-actions{
  display: flex; justify-content: center;
  margin-bottom: 24px;
}
.contact-actions .btn-primary{
  background: var(--c-accent);
  color: #fff;
}
.contact-actions .btn-primary:hover{
  background: #fff;
  color: var(--c-accent-d);
}
.contact-actions .btn-primary:hover .btn-tel-icon{
  background: var(--c-accent);
  color: #fff;
}
.contact-sub{
  display: flex; gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  color: rgba(251, 248, 242, 0.85);
}
.contact-sub-link{
  border-bottom: 1px solid rgba(251, 248, 242, 0.3);
}
.contact-sub-sep{ opacity: .4; }
.contact-note{
  font-size: 12px;
  color: rgba(251, 248, 242, 0.55);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  background: #1F1E1A;
  color: rgba(251, 248, 242, 0.7);
  padding: 60px 0 80px;
  font-size: 12px;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(251, 248, 242, 0.1);
}
.footer-brand{
  display: flex; flex-direction: column; gap: 8px;
}
.footer-logo-mark{ width: 44px; height: 44px; }
.footer-logo-mark svg{ width: 100%; height: 100%; }
.footer-logo{
  font-family: var(--f-h);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-accent);
  letter-spacing: .06em;
}
.footer-tag{
  font-family: var(--f-klee);
  font-size: 14px;
  color: rgba(251, 248, 242, 0.85);
}
.footer-info p{
  line-height: 2;
  font-size: 12px;
  color: rgba(251, 248, 242, 0.78);
}
.footer-info a{
  color: var(--c-accent-soft);
  border-bottom: 1px solid rgba(242, 217, 204, 0.2);
}
.footer-license{
  margin-top: 10px;
  font-size: 11px;
  color: rgba(251, 248, 242, 0.5) !important;
  line-height: 1.9 !important;
}
.footer-sample{
  font-size: 11px;
  margin-bottom: 12px;
  line-height: 1.8;
}
.footer-sample a{
  color: var(--c-accent-soft);
  border-bottom: 1px solid rgba(242, 217, 204, 0.3);
}
.footer-copy{
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(251, 248, 242, 0.45);
}
.footer-copy strong{
  color: var(--c-accent-soft);
  font-style: italic;
  font-weight: 600;
}

/* ============================================================
   Fixed CTA (mobile)
   ============================================================ */
.fixed-cta{
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--c-main);
  border-top: 2px solid var(--c-accent);
}
.fixed-cta-btn{
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 8px;
  color: var(--c-base);
  text-align: center;
  font-size: 11px;
  letter-spacing: .08em;
  gap: 4px;
}
.fixed-cta-btn:first-child{ border-right: 1px solid rgba(200, 100, 60, 0.3); }
.fixed-cta-tel{ background: var(--c-accent); }
.fixed-cta-tel .cta-icon{ color: #fff; font-size: 20px; }
.fixed-cta-mail .cta-icon{ color: var(--c-accent-soft); font-size: 20px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px){
  .g-nav{ display: none; }
  .hamburger{ display: flex; }
  .header-cta-area{ display: none; }
  .header-inner{ padding: 12px 20px; }

  .section{ padding: 80px 0; }
  .section-head{ margin-bottom: 48px; }
  .section-title{ font-size: 26px; line-height: 1.6; }
  .container{ padding: 0 22px; }

  .hero{ margin-top: 60px; padding: 60px 0 80px; }
  .hero-inner{ grid-template-columns: 1fr; gap: 48px; }
  .hero-title{ font-size: 34px; line-height: 1.5; }
  .hero-title-klee{ font-size: 24px; }
  .hero-photo{ max-width: 360px; margin: 0 auto; }
  .hero-photo-star{ width: 96px; height: 96px; left: -16px; bottom: -16px; }
  .star-num-big{ font-size: 26px; }

  .key-message{ padding: 56px 0; }
  .key-quote{ font-size: 20px; line-height: 1.95; }

  .assurance-list{ grid-template-columns: 1fr; gap: 32px; }

  .story-grid{ grid-template-columns: 1fr; gap: 36px; }

  .about-grid{ grid-template-columns: 1fr; }
  .about-quote p{ font-size: 17px; }
  .about-quote strong{ font-size: 22px; }

  .cta-title{ font-size: 22px; }

  .service-grid{ grid-template-columns: 1fr; gap: 28px; }

  .works-masonry{ column-count: 2; column-gap: 16px; }

  .voice-grid{ grid-template-columns: 1fr; }
  .voice-badge-num{ font-size: 44px; }
  .voice-title{ font-size: 24px; }

  .flow-list{ grid-template-columns: 1fr; }

  .access-grid{ grid-template-columns: 1fr; gap: 32px; }
  .access-map{ aspect-ratio: 16/10; }

  .section-contact{ padding: 80px 0; }
  .contact-handwrite{ font-size: 17px; }
  .btn-xlarge{ padding: 18px 28px; font-size: 15px; gap: 10px; }
  .btn-xlarge .btn-tel-num{ font-size: 20px; }

  .footer-inner{ grid-template-columns: 1fr; gap: 24px; }

  .fixed-cta{ display: flex; }
  body{ padding-bottom: 68px; }
}

@media (max-width: 560px){
  .hero-title{ font-size: 28px; }
  .hero-title-klee{ font-size: 20px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; width: 100%; }
  .works-masonry{ column-count: 1; }
  .voice-badge-num{ font-size: 38px; }
}
