@charset "UTF-8";
/* ==========================================================================
   合同会社リノア コーポレートサイト — style.css
   Concept: 白を基調に、モーヴピンクを一点差しした「知的で親しみやすい」世界観。
   明朝(見出し) × ゴシック(本文) の組み合わせ。派手さ・安っぽさを避ける。
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700;800&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root{
  /* --- カラートークン --- */
  --ink:        #2a2431;   /* 見出し・本文の濃色 */
  --ink-soft:   #5c5560;   /* 本文サブ・キャプション */
  --ink-faint:  #8b8590;   /* 補足テキスト */
  --rose:       #a85a76;   /* アクセント（控えめに使用） */
  --rose-deep:  #7e4459;   /* アクセント濃色・hover等 */
  --rose-soft:  #ecd7dd;   /* アクセント淡色 */
  --bg-0:       #fbf9f8;   /* 背景メイン */
  --bg-1:       #f6eef1;   /* 背景セクション区切り */
  --bg-card:    #ffffff;   /* カード背景 */
  --line:       #e7dfe2;   /* 罫線 */
  --line-soft:  #f0e9ec;

  /* --- タイポグラフィ --- */
  --font-display: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;

  /* --- レイアウト --- */
  --wrap: 1120px;
  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 20px;
  --shadow-card: 0 12px 32px -20px rgba(42,36,49,.35);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg-0);
  line-height:1.85;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  letter-spacing:.01em;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:700; color:var(--ink); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline:2px solid var(--rose);
  outline-offset:3px;
}

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 24px;
}

/* --- 共通の見出しパーツ --- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-size:12.5px;
  letter-spacing:.22em;
  color:var(--rose-deep);
  font-weight:700;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--rose);
  display:inline-block;
}
.section-title{
  font-size:clamp(24px,3.4vw,34px);
  line-height:1.5;
  letter-spacing:.03em;
}
.section-lead{
  color:var(--ink-soft);
  font-size:15.5px;
  max-width:640px;
  margin-top:14px;
  line-height:1.95;
}
.section-head{
  margin-bottom:44px;
}
.section-head.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-head.center .section-lead{
  margin-left:auto;
  margin-right:auto;
}

section{ padding:96px 0; }
.section-alt{ background:var(--bg-1); }

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(251,249,248,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand svg{ width:34px; height:34px; flex-shrink:0; }
.brand-type{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}
.brand-type .ja{
  font-family:var(--font-display);
  font-size:16.5px;
  font-weight:700;
  letter-spacing:.06em;
}
.brand-type .en{
  font-size:9.5px;
  letter-spacing:.24em;
  color:var(--ink-faint);
  margin-top:3px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:38px;
}
.main-nav a{
  font-size:14px;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:6px 0;
}
.main-nav a:hover{ color:var(--ink); }
.main-nav a.active{ color:var(--ink); }
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background:var(--rose);
  border-radius:2px;
}
.header-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 22px;
  background:var(--rose-deep);
  color:#fff;
  font-size:13.5px;
  font-weight:500;
  border-radius:999px;
  transition:background .2s ease, transform .2s ease;
}
.header-cta:hover{ background:var(--rose); transform:translateY(-1px); }

.nav-toggle{
  display:none;
  width:40px;height:40px;
  border:none;
  background:none;
  position:relative;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:"";
  position:absolute;
  left:9px; right:9px;
  height:2px;
  background:var(--ink);
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle span{ top:19px; }
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span::after{ transform:translateY(-7px) rotate(-45deg); }

.mobile-panel{
  display:none;
  position:fixed;
  inset:78px 0 0 0;
  background:var(--bg-0);
  z-index:99;
  padding:32px 24px;
  overflow-y:auto;
}
.mobile-panel.open{ display:block; }
.mobile-panel .brand-lockup{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:28px;
}
.mobile-panel .brand-lockup svg{ width:28px;height:28px; }
.mobile-panel a{
  display:block;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  font-family:var(--font-display);
  font-size:19px;
}
.mobile-panel .header-cta{
  display:inline-flex;
  margin-top:28px;
}

/* ==========================================================================
   ヒーロー & Canvasアニメーション
   ========================================================================== */
.hero{
  position:relative;
  overflow:hidden;
  padding:0;
  border-bottom:1px solid var(--line);
}
#hero-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:112px 24px 100px;
  max-width:var(--wrap);
  margin:0 auto;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 18px 8px 14px;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12.5px;
  color:var(--rose-deep);
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:30px;
}
.hero-tag .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--rose);
  flex-shrink:0;
}
.hero h1{
  font-size:clamp(30px,5vw,52px);
  line-height:1.55;
  letter-spacing:.02em;
  max-width:820px;
}
.hero h1 em{
  font-style:normal;
  color:var(--rose-deep);
  background:linear-gradient(transparent 62%, var(--rose-soft) 62%);
}
.hero-sub{
  margin-top:26px;
  font-size:16px;
  color:var(--ink-soft);
  max-width:560px;
  line-height:2;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:42px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-size:14.5px;
  font-weight:500;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary{
  background:var(--rose-deep);
  color:#fff;
}
.btn-primary:hover{ background:var(--rose); transform:translateY(-2px); }
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--line);
}
.btn-ghost:hover{ border-color:var(--rose); color:var(--rose-deep); }

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:38px;
  margin-top:70px;
  padding-top:34px;
  border-top:1px solid var(--line);
  max-width:720px;
}
.hero-stat .num{
  font-family:var(--font-display);
  font-size:28px;
  color:var(--ink);
}
.hero-stat .num span{ color:var(--rose-deep); }
.hero-stat .label{
  margin-top:6px;
  font-size:12.5px;
  color:var(--ink-faint);
  letter-spacing:.04em;
}

/* ==========================================================================
   課題提示 / Issue
   ========================================================================== */
.issue-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}
.issue-card{
  background:var(--bg-card);
  padding:38px 32px;
}
.issue-card .mark{
  font-family:var(--font-display);
  font-size:13px;
  color:var(--rose-deep);
  letter-spacing:.1em;
}
.issue-card h3{
  font-size:18px;
  margin-top:16px;
  line-height:1.7;
}
.issue-card p{
  margin-top:14px;
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.9;
}

/* ==========================================================================
   MVV
   ========================================================================== */
.mvv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.mvv-card{
  padding:38px 30px;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  background:var(--bg-card);
}
.mvv-card .kicker{
  font-size:11.5px;
  letter-spacing:.2em;
  color:var(--ink-faint);
  font-weight:700;
}
.mvv-card h3{
  margin-top:14px;
  font-size:20px;
  line-height:1.6;
}
.mvv-card p{
  margin-top:16px;
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.95;
}

/* ==========================================================================
   サービス概要（HOME）/ サービス一覧（service.html）
   ========================================================================== */
.service-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.service-card{
  position:relative;
  padding:36px 32px;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{
  border-color:var(--rose-soft);
  box-shadow:var(--shadow-card);
  transform:translateY(-3px);
}
.service-card .icon{
  width:46px;height:46px;
}
.service-card h3{
  margin-top:22px;
  font-size:19px;
}
.service-card .num{
  position:absolute;
  top:34px; right:32px;
  font-family:var(--font-display);
  font-size:13px;
  color:var(--ink-faint);
}
.service-card p{
  margin-top:14px;
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.9;
}
.service-card .tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}
.service-card .tags span{
  font-size:11.5px;
  color:var(--rose-deep);
  background:var(--rose-soft);
  padding:5px 12px;
  border-radius:999px;
}
.service-card a.more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:22px;
  font-size:13px;
  font-weight:500;
  color:var(--ink);
  border-bottom:1px solid var(--ink);
  padding-bottom:2px;
}

/* --- サービス詳細ページ用の大ブロック --- */
.service-detail{
  padding:80px 0;
  border-bottom:1px solid var(--line);
}
.service-detail:last-of-type{ border-bottom:none; }
.service-detail-head{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:36px;
  align-items:start;
}
.service-detail-head .index{
  font-family:var(--font-display);
  font-size:44px;
  color:var(--rose-soft);
}
.service-detail-body{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  margin-top:36px;
}
.service-detail-body .desc p{
  color:var(--ink-soft);
  font-size:15px;
  line-height:2;
}
.service-detail-body .desc .points{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.service-detail-body .desc .points li{
  display:flex;
  gap:12px;
  font-size:14px;
  color:var(--ink);
  align-items:flex-start;
}
.service-detail-body .desc .points li::before{
  content:"";
  width:6px;height:6px;
  border-radius:50%;
  background:var(--rose);
  margin-top:8px;
  flex-shrink:0;
}
.price-box{
  background:var(--bg-1);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:28px 26px;
}
.price-box h4{
  font-size:13px;
  letter-spacing:.1em;
  color:var(--ink-faint);
  font-weight:700;
}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.price-row:last-child{ border-bottom:none; }
.price-row .plan{
  font-size:14.5px;
  font-weight:500;
}
.price-row .plan small{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--ink-faint);
  font-weight:400;
}
.price-row .price{
  font-family:var(--font-display);
  font-size:17px;
  color:var(--rose-deep);
  white-space:nowrap;
}
.price-note{
  margin-top:16px;
  font-size:11.5px;
  color:var(--ink-faint);
  line-height:1.8;
}

/* ==========================================================================
   ご利用の流れ（Flow）
   ========================================================================== */
.flow-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
}
.flow-item{
  position:relative;
  padding:0 22px;
}
.flow-item:first-child{ padding-left:0; }
.flow-item:last-child{ padding-right:0; }
.flow-item .step-num{
  font-family:var(--font-display);
  font-size:34px;
  color:var(--rose-soft);
}
.flow-item h3{
  margin-top:14px;
  font-size:16.5px;
}
.flow-item p{
  margin-top:10px;
  font-size:13.5px;
  color:var(--ink-soft);
  line-height:1.85;
}
.flow-item .arrow{
  position:absolute;
  top:14px;
  right:-2px;
  color:var(--line);
  font-size:20px;
}

/* ==========================================================================
   選ばれる理由 / Strength
   ========================================================================== */
.strength-list{
  display:flex;
  flex-direction:column;
}
.strength-row{
  display:grid;
  grid-template-columns:80px 1fr 1fr;
  gap:40px;
  align-items:center;
  padding:40px 0;
  border-top:1px solid var(--line);
}
.strength-list .strength-row:last-child{ border-bottom:1px solid var(--line); }
.strength-row .snum{
  font-family:var(--font-display);
  font-size:15px;
  color:var(--ink-faint);
}
.strength-row h3{
  font-size:19px;
  line-height:1.7;
}
.strength-row p{
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.95;
}

/* ==========================================================================
   アプローチ（フォトバンド）
   ========================================================================== */
.approach-band{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.approach-photo{
  border-radius:var(--radius-l);
  overflow:hidden;
  aspect-ratio:4/3;
}
.approach-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.approach-copy h3{
  font-size:clamp(20px,2.6vw,26px);
  line-height:1.75;
}
.approach-copy p{
  margin-top:18px;
  font-size:14.5px;
  color:var(--ink-soft);
  line-height:2.05;
}
.approach-copy .points{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.approach-copy .points li{
  display:flex;
  gap:12px;
  font-size:13.5px;
  color:var(--ink);
  align-items:flex-start;
}
.approach-copy .points li::before{
  content:"";
  width:6px;height:6px;
  border-radius:50%;
  background:var(--rose);
  margin-top:8px;
  flex-shrink:0;
}

/* ==========================================================================
   実績
   ========================================================================== */
.result-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--bg-card);
}
.result-panel .figure-side{
  position:relative;
  min-height:360px;
  overflow:hidden;
}
.result-panel .figure-side img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.result-panel .figure-side .stat-chip{
  position:absolute;
  left:24px;
  bottom:24px;
  right:24px;
  background:rgba(251,249,248,.92);
  backdrop-filter:blur(6px);
  border-radius:var(--radius-m);
  padding:22px 24px;
  box-shadow:0 12px 28px -16px rgba(42,36,49,.35);
}
.result-panel .figure-side .big{
  font-family:var(--font-display);
  font-size:44px;
  line-height:1;
  color:var(--ink);
}
.result-panel .figure-side .big span{
  font-size:17px;
  margin-left:6px;
  color:var(--rose-deep);
}
.result-panel .figure-side .cap{
  margin-top:10px;
  font-size:12.5px;
  color:var(--ink-soft);
  line-height:1.8;
}
.result-panel .note-side{
  padding:52px 46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.result-panel .note-side p{
  font-size:14.5px;
  color:var(--ink-soft);
  line-height:2;
}
.result-panel .note-side p + p{ margin-top:16px; }

/* ==========================================================================
   会社概要
   ========================================================================== */
.company-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.company-visual{
  border-radius:var(--radius-m);
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:4/5;
}
.company-table{
  width:100%;
  border-collapse:collapse;
}
.company-table tr{ border-top:1px solid var(--line); }
.company-table tr:last-child{ border-bottom:1px solid var(--line); }
.company-table th,.company-table td{
  text-align:left;
  padding:18px 0;
  font-size:14px;
  font-weight:400;
  vertical-align:top;
}
.company-table th{
  width:130px;
  color:var(--ink-faint);
  letter-spacing:.05em;
  font-weight:500;
}
.company-table td{ color:var(--ink); line-height:1.85; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item{
  border-top:1px solid var(--line);
}
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:26px 4px;
  font-size:15.5px;
  font-weight:500;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .q-mark{
  font-family:var(--font-display);
  color:var(--rose);
  flex-shrink:0;
}
.faq-item summary .plus{
  flex-shrink:0;
  width:22px;height:22px;
  border:1px solid var(--line);
  border-radius:50%;
  position:relative;
}
.faq-item summary .plus::before,.faq-item summary .plus::after{
  content:"";
  position:absolute;
  background:var(--ink);
  top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.faq-item summary .plus::before{ width:9px;height:1px; }
.faq-item summary .plus::after{ width:1px;height:9px; transition:opacity .2s ease; }
.faq-item[open] summary .plus::after{ opacity:0; }
.faq-item .faq-a{
  padding:0 4px 26px 30px;
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.95;
}

/* ==========================================================================
   お問い合わせフォーム
   ========================================================================== */
.contact-panel{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--bg-card);
}
.contact-info{
  background:var(--bg-1);
  color:var(--ink);
  padding:36px 36px 40px;
  display:flex;
  flex-direction:column;
}
.contact-info .info-photo{
  border-radius:var(--radius-m);
  overflow:hidden;
  aspect-ratio:4/3;
  margin-bottom:24px;
}
.contact-info .info-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.contact-info h3{
  color:var(--ink);
  font-size:22px;
  line-height:1.7;
}
.contact-info p{
  margin-top:14px;
  font-size:13.5px;
  color:var(--ink-soft);
  line-height:2;
}
.contact-info .info-line{
  display:flex;
  gap:14px;
  margin-top:20px;
  font-size:13.5px;
  color:var(--ink-soft);
  align-items:flex-start;
}
.contact-info .info-line svg{ flex-shrink:0; margin-top:2px; }
.contact-form{
  padding:52px 44px;
}
.form-row{ margin-bottom:22px; }
.form-row label{
  display:block;
  font-size:13px;
  font-weight:500;
  margin-bottom:8px;
  color:var(--ink);
}
.form-row label .req{
  color:var(--rose);
  margin-left:4px;
  font-size:11px;
}
.form-row input,.form-row textarea{
  width:100%;
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:var(--radius-s);
  font-family:var(--font-body);
  font-size:14.5px;
  background:var(--bg-0);
  color:var(--ink);
  transition:border-color .2s ease;
}
.form-row input:focus,.form-row textarea:focus{
  outline:none;
  border-color:var(--rose);
  background:#fff;
}
.form-row textarea{ min-height:130px; resize:vertical; }
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 18px;
}
.hp{ position:absolute; left:-9999px; top:-9999px; }
.form-submit{
  width:100%;
  justify-content:center;
  border:none;
  margin-top:8px;
}
.form-note{
  margin-top:16px;
  font-size:11.5px;
  color:var(--ink-faint);
  line-height:1.8;
}

/* ==========================================================================
   CTA帯
   ========================================================================== */
.cta-band{
  background:linear-gradient(135deg, var(--rose-soft) 0%, var(--bg-1) 60%, var(--bg-0) 100%);
  color:var(--ink);
  padding:80px 0;
  text-align:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-band h2{
  color:var(--ink);
  font-size:clamp(22px,3.2vw,30px);
  line-height:1.7;
}
.cta-band p{
  margin-top:16px;
  color:var(--ink-soft);
  font-size:14.5px;
}
.cta-band .hero-actions{
  justify-content:center;
  margin-top:36px;
}
.cta-band .btn-ghost{
  color:var(--ink);
  border-color:var(--line);
  background:var(--bg-card);
}
.cta-band .btn-ghost:hover{ border-color:var(--rose); color:var(--rose-deep); }
.cta-band .btn-primary{ background:var(--rose-deep); }
.cta-band .btn-primary:hover{ background:var(--rose); }

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer{
  background:var(--bg-1);
  border-top:1px solid var(--line);
  padding:64px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
}
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{
  font-size:13px;
  color:var(--ink-soft);
  line-height:1.95;
  max-width:280px;
}
.footer-col h4{
  font-family:var(--font-body);
  font-size:12px;
  letter-spacing:.1em;
  color:var(--ink-faint);
  font-weight:700;
  margin-bottom:18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:13.5px; color:var(--ink-soft); }
.footer-col a:hover{ color:var(--rose-deep); }
.footer-bottom{
  margin-top:56px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom small{ font-size:12px; color:var(--ink-faint); }
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom .legal-links a{ font-size:12px; color:var(--ink-faint); }
.footer-bottom .legal-links a:hover{ color:var(--rose-deep); }

/* ==========================================================================
   プライバシーポリシー / 汎用ドキュメントページ
   ========================================================================== */
.doc-page{ padding:80px 0 100px; }
.doc-header{
  padding-bottom:44px;
  margin-bottom:44px;
  border-bottom:1px solid var(--line);
}
.doc-header .eyebrow{ margin-bottom:18px; }
.doc-body h2{
  font-size:19px;
  margin-top:52px;
  margin-bottom:16px;
}
.doc-body h2:first-child{ margin-top:0; }
.doc-body p, .doc-body li{
  font-size:14.5px;
  color:var(--ink-soft);
  line-height:2.05;
}
.doc-body ul{ padding-left:0; margin-top:10px; }
.doc-body ul li{
  position:relative;
  padding-left:20px;
  margin-bottom:8px;
}
.doc-body ul li::before{
  content:"";
  position:absolute;
  left:0; top:11px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--rose);
}
.doc-body table{
  width:100%;
  border-collapse:collapse;
  margin-top:16px;
}
.doc-body table th,.doc-body table td{
  border:1px solid var(--line);
  padding:12px 14px;
  font-size:13.5px;
  text-align:left;
  color:var(--ink-soft);
}
.doc-body table th{ background:var(--bg-1); color:var(--ink); font-weight:500; width:180px; }

/* ==========================================================================
   Thank you ページ
   ========================================================================== */
.thanks-page{
  min-height:calc(100vh - 78px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 24px;
  text-align:center;
}
.thanks-card{ max-width:520px; }
.thanks-card .check{
  width:64px;height:64px;
  margin:0 auto 30px;
  border-radius:50%;
  background:var(--rose-soft);
  display:flex;
  align-items:center;
  justify-content:center;
}
.thanks-card h1{ font-size:26px; line-height:1.7; }
.thanks-card p{
  margin-top:18px;
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:2;
}
.thanks-card .hero-actions{ justify-content:center; margin-top:36px; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 980px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:block; }
  section{ padding:70px 0; }
  .issue-grid{ grid-template-columns:1fr; }
  .mvv-grid{ grid-template-columns:1fr; }
  .service-list{ grid-template-columns:1fr; }
  .service-detail-head{ grid-template-columns:1fr; gap:10px; }
  .service-detail-body{ grid-template-columns:1fr; gap:30px; }
  .flow-list{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .flow-item .arrow{ display:none; }
  .strength-row{ grid-template-columns:1fr; gap:10px; }
  .strength-row p{ padding-left:0; }
  .result-panel{ grid-template-columns:1fr; }
  .approach-band{ grid-template-columns:1fr; gap:32px; }
  .approach-photo{ aspect-ratio:16/10; }
  .company-wrap{ grid-template-columns:1fr; gap:36px; }
  .company-visual{ aspect-ratio:16/9; }
  .contact-panel{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .hero-inner{ padding:88px 24px 76px; }
}
@media (max-width: 600px){
  .form-grid{ grid-template-columns:1fr; }
  .flow-list{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .hero-stats{ gap:26px; }
  .doc-body table th{ width:auto; }
}
