/*
Theme Name: ゆうデザイン舎 LP
Author: ゆうデザイン舎
Description: 写真・デザイン・Web制作についての1ページ完結型ランディングページ用テーマです。写真・デザイン・Web制作をワンストップで提供する制作会社様向けに作成しました。
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yuu-design-lp
*/

/* ============================================================
   ゆうデザイン舎 LP - スタイルシート
   ============================================================
   目次（Ctrl+F / Cmd+F でセクション名を検索すると該当箇所へ移動できます）

   1.  共通変数（カラー・フォント・グラデーション）… :root
   2.  基本設定・リセット
   3.  フェードインアニメーション（.reveal）
   4.  ボタン（.btn）
   5.  ヘッダー（固定ナビゲーション）
   6.  ファーストビュー / ヒーロー
   7.  LIVE STATUS（対応実績・対応履歴）
   8.  対応エリア情報バー
   9.  課題提起セクション（制作会社選びのお悩み）
   10. ソリューションセクション（一貫制作の流れ）
   11. 比較セクション（一般的な流れ vs 当社）
   12. 中間CTAセクション
   13. 選ばれる理由セクション（01/02/03）
   14. 比較表セクション（他社との違い）
   15. お客様（クライアント）セクション
   16. 制作実績セクション
   17. 20の品質基準セクション
   18. お客様の声セクション
   19. FAQセクション（タブ切り替え）
   20. 運営会社セクション
   21. 最終CTAセクション
   22. フッター
   23. スマホ用固定CTAバー
   24. レスポンシブ（タブレット / スマホ）

   カラーや余白を変更したいときは、まず一番上の :root 内の
   CSS変数（--gold-main など）を書き換えると、サイト全体に
   反映されます。個別のセクションだけ変更したい場合は、目次の
   セクション名で検索して該当ブロックを編集してください。
   ============================================================ */

:root{
  --bg-main:#FCFAF6;
  --bg-sub:#F7F2E9;
  --bg-card:#FFFFFF;
  --text-main:#2C2823;
  --text-sub:#6B645C;
  --gold-main:#B48A43;
  --gold-light:#C9A568;
  --gold-dark:#8B642D;
  --line:#E8DFD2;
  --beige-pale:#F3ECE2;

  --grad-cta: linear-gradient(135deg, #C7A15F 0%, #A9792F 100%);
  --grad-cta-hover: linear-gradient(135deg, #B78D49 0%, #8F6428 100%);
  --grad-bg-soft: linear-gradient(180deg, #FFFFFF 0%, #FCFAF6 100%);
  --grad-radial: radial-gradient(circle at top left, rgba(180,138,67,0.08), transparent 55%);

  --font-jp-body: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  --font-jp-heading: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
  --font-en: "Cormorant Garamond","Playfair Display",serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
#difference,#works,#genre,#faq,#contact{
  scroll-margin-top:100px;
}
body{
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-jp-body);
  font-size:16px;
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}

.wrap-wide{
  max-width:1440px;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}

/* ---------- reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease-out, transform .6s ease-out;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:60px;
  padding:0 40px;
  border-radius:9999px;
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
  transition:transform .3s ease, background .3s ease, box-shadow .3s ease;
  cursor:pointer;
  border:none;
}
.btn-primary{
  background:var(--grad-cta);
  color:#FFFFFF;
  box-shadow:0 12px 28px rgba(139,100,45,0.22);
}
.btn-primary:hover{
  background:var(--grad-cta-hover);
  transform:translateY(-2px);
}
.btn-outline{
  background:#FFFFFF;
  color:var(--text-main);
  border:1px solid var(--line);
}
.btn-outline:hover{
  transform:translateY(-2px);
  border-color:var(--gold-main);
}
.btn svg{flex-shrink:0;}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:84px;
  background:rgba(252,250,246,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  z-index:1000;
  display:flex;
  align-items:center;
}
.site-header .wrap-wide{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-mark{
  font-family:var(--font-en);
  font-style:italic;
  font-size:34px;
  color:var(--gold-main);
  line-height:1;
}
.logo-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.logo-text .jp{
  font-family:var(--font-jp-heading);
  font-size:19px;
  font-weight:600;
  letter-spacing:0.03em;
  color:var(--text-main);
}
.logo-text .en{
  font-family:var(--font-en);
  font-size:11px;
  letter-spacing:0.22em;
  color:var(--text-sub);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:0;
}
.main-nav li{
  display:flex;
  align-items:center;
}
.main-nav li + li{
  border-left:1px solid var(--line);
}
.main-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:0 28px;
}
.main-nav .nav-jp{
  font-family:var(--font-jp-heading);
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
}
.main-nav .nav-en{
  font-family:var(--font-en);
  font-size:11px;
  letter-spacing:0.2em;
  color:var(--gold-main);
}
.header-cta{
  min-height:52px;
  padding:0 30px;
  font-size:15px;
}
.header-cta svg{width:16px;height:16px;}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  align-items:center;
  justify-content:center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  display:block;
  width:18px;height:1.5px;
  background:var(--text-main);
  position:relative;
}
.nav-toggle span::before{position:absolute;top:-6px;}
.nav-toggle span::after{position:absolute;top:6px;}
.nav-toggle.is-active span{background:transparent;}
.nav-toggle.is-active span::before{top:0;transform:rotate(45deg);}
.nav-toggle.is-active span::after{top:0;transform:rotate(-45deg);}

/* ---------- Mobile Nav Drawer ---------- */
.mobile-nav-backdrop{
  position:fixed;
  inset:0;
  background:rgba(44,40,35,0.45);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
  z-index:1090;
}
.mobile-nav-backdrop.is-open{
  opacity:1;
  visibility:visible;
}
.mobile-nav{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  width:82%;
  max-width:360px;
  background:#FFFFFF;
  box-shadow:-16px 0 40px rgba(44,40,35,0.14);
  z-index:1100;
  padding:24px 28px 32px;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .32s ease;
  overflow-y:auto;
}
.mobile-nav.is-open{
  transform:translateX(0);
}
.mobile-nav-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:36px;
}
.mobile-nav-close{
  width:40px;height:40px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-main);
}
.mobile-nav-list{
  display:flex;
  flex-direction:column;
}
.mobile-nav-list li{
  border-bottom:1px solid var(--line);
}
.mobile-nav-list li:first-child{border-top:1px solid var(--line);}
.mobile-nav-list a{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding:18px 4px;
}
.mobile-nav-list .nav-jp{
  font-family:var(--font-jp-heading);
  font-size:16px;
  font-weight:600;
  color:var(--text-main);
}
.mobile-nav-list .nav-en{
  font-family:var(--font-en);
  font-size:12px;
  letter-spacing:0.15em;
  color:var(--gold-main);
}
.mobile-nav-cta{
  width:100%;
  margin-top:32px;
}

/* ---------- Page content (privacy policy etc.) ---------- */
.page-content-section{
  padding-top:calc(84px + 80px);
  padding-bottom:100px;
}
.page-content-title{
  font-family:var(--font-jp-heading);
  font-size:clamp(26px, 3vw, 38px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:36px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
}
.page-content-body{
  font-size:15px;
  line-height:2;
  color:var(--text-main);
}
.page-content-body h2{
  font-family:var(--font-jp-heading);
  font-size:22px;
  font-weight:700;
  color:var(--text-main);
  margin:44px 0 16px;
}
.page-content-body h3{
  font-size:17px;
  font-weight:700;
  color:var(--text-main);
  margin:32px 0 12px;
}
.page-content-body p{margin-bottom:18px;}
.page-content-body ul,
.page-content-body ol{
  margin:0 0 18px 1.4em;
}
.page-content-body li{margin-bottom:6px;}
.page-content-body a{
  color:var(--gold-main);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* ---------- Hero ---------- */
/* ============================================================
   ヒーロー v2（斜めカット写真モザイク + LIVE STATUSカード + INFORMATION）
   ============================================================ */
.hero-v2{
  position:relative;
  height:80vh;
  min-height:560px;
  background:var(--bg-main);
  overflow:hidden;
}
.hero-v2-photo{
  position:absolute;
  top:0;
  right:0;
  width:60%;
  height:100%;
  background-image:url('assets/images/hero-v2-photo.jpg');
  background-size:cover;
  background-position:center;
  background-color:#3d3730;
  z-index:1;
}
.hero-v2-flex{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  height:100%;
  padding-top:84px;
  padding-left:max(40px, calc((100vw - 1440px) / 2 + 40px));
  padding-right:0;
}

/* ---------- 左：キャッチコピー ---------- */
.hero-v2-left{
  flex:0 0 auto;
  width:480px;
  max-width:44vw;
}
.hero-v2-tags{
  font-size:13px;
  color:var(--text-sub);
  letter-spacing:0.02em;
  margin-bottom:22px;
  line-height:1.8;
}
.hero-v2-sub{
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
  margin-bottom:14px;
}
.hero-v2-title{
  font-family:var(--font-jp-heading);
  font-size:clamp(30px, 3.4vw, 46px);
  font-weight:600;
  line-height:1.4;
  letter-spacing:0.01em;
  color:var(--text-main);
  margin-bottom:22px;
}
.hero-v2-lead{
  font-size:15px;
  line-height:1.9;
  color:var(--text-sub);
  margin-bottom:32px;
}

/* ---------- LIVE STATUS ミニカード（右下フロート） ---------- */
.hero-v2-live-card{
  position:absolute;
  right:max(40px, calc((100vw - 1440px) / 2 + 40px));
  bottom:0;
  width:320px;
  max-width:80%;
  background:#FFFFFF;
  border-radius:20px;
  box-shadow:0 20px 44px rgba(44,40,35,0.18);
  padding:22px 24px;
  z-index:10;
}
.hero-v2-live-head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
}
.hero-v2-live-head .label{
  font-family:var(--font-en);
  font-size:13px;
  letter-spacing:0.1em;
  font-weight:600;
  color:var(--text-main);
}
.hero-v2-live-head .tag{
  font-size:11px;
  color:var(--gold-dark);
  background:var(--beige-pale);
  padding:2px 10px;
  border-radius:9999px;
  margin-left:2px;
}
.hero-v2-live-head.is-offline .live-dot{
  background:#B9B0A2;
  box-shadow:0 0 0 4px rgba(185,176,162,0.15);
}
.hero-v2-live-head.is-offline .live-dot::before,
.hero-v2-live-head.is-offline .live-dot::after{
  display:none;
}
.hero-v2-live-head.is-offline .tag{
  color:#6B645C;
  background:#EDE9E1;
}
.hero-v2-live-list li{
  display:flex;
  gap:14px;
  padding:10px 0;
  border-top:1px solid var(--line);
  font-size:12px;
  line-height:1.7;
}
.hero-v2-live-list li:first-child{border-top:none;padding-top:0;}
.hero-v2-live-list .date{
  font-family:var(--font-en);
  color:var(--gold-main);
  font-weight:600;
  flex-shrink:0;
  width:66px;
}
.hero-v2-live-list .txt{color:var(--text-sub);}

/* ---------- ゆっくり自動スクロールするリスト（LIVE STATUS / INFORMATION 共通） ---------- */
.marquee-viewport{
  position:relative;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image:linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.marquee-track{
  position:absolute;
  top:0;left:0;right:0;
  animation-name:marquee-scroll;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
}
@keyframes marquee-scroll{
  0%{transform:translateY(0);}
  100%{transform:translateY(-50%);}
}
.hero-v2-live-viewport{
  height:132px; /* 3件分の高さ */
}

/* ---------- INFORMATION（軽いセクション） ---------- */
.information-section{
  padding:30px 40px 64px;
}
.information-card{
  max-width:1000px;
  margin:0 auto;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 40px;
}
.information-label{
  font-family:var(--font-en);
  font-size:12px;
  letter-spacing:0.2em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:8px;
}
.information-list li{
  display:flex;
  gap:28px;
  padding:8px 0;
  border-top:1px solid var(--line);
  font-size:13px;
  line-height:1.6;
}
.information-list li:first-child{border-top:none;padding-top:0;}
.information-list .date{
  font-family:var(--font-en);
  font-style:italic;
  color:var(--gold-main);
  flex-shrink:0;
  width:88px;
}
.information-list .txt{color:var(--text-main);}

/* ---------- Live Status ---------- */
.live-dot{
  position:relative;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--gold-main);
  box-shadow:0 0 0 4px rgba(180,138,67,0.15);
}
.live-dot::before,
.live-dot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:var(--gold-main);
  animation:live-ripple 2.4s ease-out infinite;
}
.live-dot::after{
  animation-delay:1.2s;
}
@keyframes live-ripple{
  0%{
    transform:scale(1);
    opacity:0.55;
  }
  100%{
    transform:scale(5.5);
    opacity:0;
  }
}
@keyframes history-scroll{
  0%{transform:translateY(0);}
  100%{transform:translateY(-50%);}
}
@keyframes tc-swipe-fade{
  0%{opacity:0;}
  15%{opacity:1;}
  80%{opacity:1;}
  100%{opacity:0;}
}
@keyframes tc-swipe-move{
  0%{transform:translateX(-6px);}
  50%{transform:translateX(6px);}
  100%{transform:translateX(-6px);}
}

/* ---------- Problem Section ---------- */
.problem-section{
  padding-top:120px;
  padding-bottom:0;
  background:var(--bg-main);
}
.problem-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
  padding-bottom:120px;
}
.problem-eyebrow{
  font-size:15px;
  font-weight:600;
  color:var(--gold-main);
  letter-spacing:0.04em;
  margin-bottom:20px;
}
.problem-title{
  font-family:var(--font-jp-heading);
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.5;
  font-weight:600;
  color:var(--text-main);
  margin-bottom:26px;
}
.problem-divider{
  width:64px;
  height:2px;
  background:var(--gold-main);
  margin-bottom:26px;
}
.problem-text{
  font-size:16px;
  line-height:1.9;
  color:var(--text-sub);
  margin-bottom:26px;
}
.problem-text + .problem-text{margin-top:-8px;}
.problem-highlight{
  font-size:16px;
  line-height:1.9;
  color:var(--gold-dark);
  font-weight:600;
}

.flow-card{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 12px 40px rgba(68,51,28,0.06);
  padding:32px 32px 28px;
}
.flow-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:28px;
}
.flow-head .line{
  flex:1;
  height:1px;
  background:var(--line);
  max-width:60px;
}
.flow-head .txt{
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
  white-space:nowrap;
}
.flow-row{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:center;
  gap:6px;
  margin-bottom:28px;
}
.flow-step{
  text-align:center;
}
.flow-step .label{
  font-size:14px;
  color:var(--text-main);
  font-weight:500;
  line-height:1.6;
}
.flow-arrow{
  color:var(--gold-main);
  display:flex;
  align-items:center;
}
.flow-checklist{
  border-top:1px solid var(--line);
  padding-top:24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
  position:relative;
}
.flow-checklist li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:13px;
  color:var(--text-main);
  line-height:1.6;
}
.flow-checklist .check{
  color:var(--gold-main);
  flex-shrink:0;
  margin-top:1px;
}
.flow-summary{
  text-align:center;
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
}

/* ---------- Solution Section ---------- */
.solution-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-main);
}
.solution-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 72px;
}
.solution-head .sub{
  font-family:var(--font-jp-heading);
  font-size:clamp(20px, 2.2vw, 28px);
  font-weight:600;
  color:var(--text-main);
  line-height:1.5;
  margin-bottom:12px;
}
.solution-head .main{
  font-family:var(--font-jp-heading);
  font-size:clamp(24px, 2.8vw, 34px);
  font-weight:700;
  color:var(--gold-main);
  line-height:1.5;
}

.process-row{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items:start;
  gap:8px;
  margin-bottom:64px;
}
.process-step{
  text-align:center;
}
.process-tag{
  display:inline-block;
  background:#2C2823;
  color:#FFFFFF;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.05em;
  padding:6px 18px;
  border-radius:9999px;
  margin-bottom:20px;
}
.process-photo{
  aspect-ratio:4/3;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  margin-bottom:20px;
}
.process-photo.p1{background-image:url('assets/images/process-photo-p1.jpg');background-size:cover;background-position:center;background-color:#1c1915;}
.process-photo.p2{background-image:url('assets/images/process-photo-p2.jpg');background-size:cover;background-position:center;background-color:#241f1a;}
.process-photo.p3{background-image:url('assets/images/process-photo-p3.jpg');background-size:cover;background-position:center;background-color:#232a30;}
.process-photo.p4{background-image:url('assets/images/process-photo-p4.jpg');background-size:cover;background-position:center;background-color:#3b3226;}
.process-photo.p5{background-image:url('assets/images/process-photo-p5.jpg');background-size:cover;background-position:center;background-color:#2b3138;}
.process-step p{
  font-size:12px;
  line-height:1.7;
  color:var(--text-sub);
}
.process-arrow{
  color:var(--gold-light);
  padding-top:64px;
}

.value-section{
  text-align:center;
}
.value-box{
  max-width:1200px;
  margin:0 auto 64px;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 12px 40px rgba(68,51,28,0.06);
  padding:44px 40px;
}
.value-box-inner{
  max-width:1000px;
  margin:0 auto;
}
.value-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-bottom:36px;
}
.value-head .line{
  flex:1;
  max-width:200px;
  height:1px;
  background:var(--line);
}
.value-head h3{
  font-size:20px;
  font-weight:600;
  color:var(--text-main);
  white-space:nowrap;
}
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.value-item{
  display:flex;
  gap:20px;
  text-align:left;
  align-items:flex-start;
}
.value-icon{
  width:52px;
  height:52px;
  flex-shrink:0;
  border-radius:50%;
  border:1.5px solid var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-main);
}
.value-icon svg{width:26px;height:26px;}
.value-item h4{
  font-size:16px;
  font-weight:600;
  color:var(--text-main);
  margin-bottom:8px;
}
.value-item p{
  font-size:13px;
  line-height:1.8;
  color:var(--text-sub);
}

.solution-note{
  background:var(--beige-pale);
  border-radius:20px;
  padding:32px 40px;
  text-align:center;
}
.solution-note p{
  font-size:15px;
  line-height:1.9;
  color:var(--text-main);
  font-weight:500;
}

/* ---------- Process Compare Section ---------- */
.compare-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-sub);
}
.compare-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  margin-bottom:56px;
}
.compare-head .line{
  flex:1;
  max-width:140px;
  height:1px;
  background:var(--gold-main);
}
.compare-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(24px, 2.8vw, 36px);
  font-weight:600;
  color:var(--text-main);
  white-space:nowrap;
}

.compare-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:24px;
  align-items:stretch;
}
.compare-mid{
  display:flex;
  align-items:center;
  color:var(--gold-main);
}
.compare-col{
  display:flex;
  flex-direction:column;
  height:100%;
}
.compare-col-head{
  text-align:center;
  padding:16px 20px;
  border-radius:14px 14px 0 0;
  font-size:14px;
  font-weight:600;
}
.compare-col.before .compare-col-head{
  background:#2C2823;
  color:#FFFFFF;
}
.compare-col.after .compare-col-head{
  background:var(--grad-cta);
  color:#FFFFFF;
}

.before-list{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-top:none;
  padding:14px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.before-list li{
  display:flex;
  align-items:center;
  gap:14px;
  padding:8px 4px;
  font-size:13px;
}
.before-list li:nth-child(odd){background:var(--bg-sub);}
.before-list .n{
  font-family:var(--font-en);
  font-weight:600;
  color:var(--text-sub);
  width:22px;
  flex-shrink:0;
}
.before-list .t{
  color:var(--text-main);
  font-weight:500;
  width:130px;
  flex-shrink:0;
}
.before-list .d{
  color:var(--text-sub);
}

.before-bottom{
  background:#DFDBD3;
  border-radius:0 0 14px 14px;
  padding:24px 20px;
  text-align:center;
}
.before-bottom .s1{
  font-size:15px;
  color:var(--text-main);
  font-weight:500;
  margin-bottom:6px;
}
.before-bottom .s2{
  font-family:var(--font-jp-heading);
  font-size:30px;
  font-weight:700;
  color:var(--text-main);
}

.after-list{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-top:none;
  padding:8px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.after-step{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 0;
}
.after-step + .after-step{
  border-top:1px dashed var(--line);
}
.after-num{
  font-family:var(--font-en);
  font-size:26px;
  font-weight:600;
  color:var(--gold-main);
  width:40px;
  flex-shrink:0;
}
.after-icon{
  width:36px;
  height:36px;
  flex-shrink:0;
  color:var(--gold-main);
}
.after-icon svg{width:100%;height:100%;}
.after-title{
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
  width:120px;
  flex-shrink:0;
}
.after-desc{
  font-size:12px;
  line-height:1.7;
  color:var(--text-sub);
}

.after-bottom{
  background:var(--grad-cta);
  border-radius:0 0 14px 14px;
  padding:24px 20px;
  text-align:center;
}
.after-bottom .s1{
  font-size:17px;
  color:#FFFFFF;
  font-weight:600;
  margin-bottom:4px;
}
.after-bottom .s2{
  font-family:var(--font-jp-heading);
  font-size:24px;
  font-weight:700;
  color:#FFFFFF;
}

/* ---------- Reasons Section ---------- */
.reasons-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-main);
}
.reasons-head{
  text-align:center;
  margin-bottom:64px;
}
.reasons-head .sub{
  font-size:15px;
  font-weight:600;
  color:var(--gold-main);
  letter-spacing:0.06em;
  margin-bottom:10px;
}
.reasons-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(30px, 3.6vw, 48px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:20px;
}
.reasons-head .chevron{
  width:40px;
  height:16px;
  margin:0 auto;
  color:var(--gold-main);
}
.reasons-head .chevron svg{width:100%;height:100%;}

.reasons-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.reason-card{
  background:#FFFFFF;
  border-radius:16px;
  box-shadow:0 12px 32px rgba(68,51,28,0.05);
  padding:36px 32px;
}
.reason-card-head{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom:16px;
}
.reason-num{
  font-family:var(--font-en);
  font-size:32px;
  font-style:italic;
  font-weight:600;
  color:var(--gold-light);
  flex-shrink:0;
  line-height:1;
}
.reason-card h3{
  font-family:var(--font-jp-heading);
  font-size:19px;
  font-weight:600;
  color:var(--gold-dark);
  line-height:1.4;
}
.reason-card p{
  font-size:13px;
  line-height:1.9;
  color:var(--text-main);
}

/* ---------- Table Compare Section ---------- */
.tablecompare-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-main);
}
.tc-head-simple{
  text-align:center;
  max-width:720px;
  margin:0 auto 56px;
}
.tc-title{
  font-family:var(--font-jp-heading);
  font-size:clamp(28px, 3.2vw, 42px);
  font-weight:600;
  line-height:1.4;
  color:var(--text-main);
  margin-bottom:20px;
}
.tc-divider{
  width:64px;
  height:2px;
  background:var(--gold-main);
  margin:0 auto 26px;
}
.tc-lead-simple{
  font-size:15px;
  line-height:1.9;
  color:var(--text-sub);
}

.tc-scroll-outer{
  position:relative;
}
.tc-table-wrap{
  overflow-x:auto;
  margin-bottom:24px;
}
.tc-swipe-hint{
  display:none;
}
.tc-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.tc-table thead th{
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
  text-align:center;
  padding:20px 16px;
  border-bottom:1px solid var(--line);
}
.tc-table thead th:first-child{text-align:left;}
.tc-table tbody th{
  text-align:left;
  font-weight:500;
  font-size:13px;
  color:var(--text-main);
  padding:16px 16px 16px 4px;
  border-bottom:1px solid var(--line);
  white-space:nowrap;
}
.tc-table tbody td{
  text-align:center;
  font-size:15px;
  color:var(--text-sub);
  padding:16px;
  border-bottom:1px solid var(--line);
}
.tc-table tbody td .note{
  display:block;
  font-size:11px;
  color:var(--text-sub);
  margin-top:2px;
}
.tc-table tfoot th, .tc-table tfoot td{
  padding:20px 16px 20px 4px;
  font-size:13px;
  font-weight:600;
  color:var(--text-main);
  border-bottom:none;
  text-align:left;
}
.tc-table tfoot td{font-weight:500;color:var(--text-sub);text-align:center;}

.tc-col-highlight{
  background:#FFFFFF;
  border-left:1.5px solid var(--gold-main);
  border-right:1.5px solid var(--gold-main);
  box-shadow:0 14px 36px rgba(180,138,67,0.12);
}
.tc-table thead .tc-col-highlight{
  border-top:1.5px solid var(--gold-main);
  border-radius:14px 14px 0 0;
  color:var(--gold-main);
  font-family:var(--font-jp-heading);
  font-size:17px;
  font-weight:700;
}
.tc-table tbody tr:last-child .tc-col-highlight{
  border-bottom:1.5px solid var(--gold-main);
}
.tc-table tfoot .tc-col-highlight{
  border-bottom:1.5px solid var(--gold-main);
  border-radius:0 0 14px 14px;
  color:var(--gold-dark);
  font-weight:600;
}
.tc-double{
  color:var(--gold-main);
  font-size:18px;
}

.tc-notes{
  font-size:12px;
  line-height:1.7;
  color:var(--text-sub);
  margin-bottom:56px;
}

/* ---------- Clients Section ---------- */
.clients-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-sub);
}
.clients-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 56px;
}
.clients-eyebrow{
  font-family:var(--font-en);
  font-size:14px;
  letter-spacing:0.3em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:16px;
}
.clients-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(24px, 2.8vw, 34px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:20px;
}
.clients-head .divider{
  width:64px;
  height:2px;
  background:var(--gold-main);
  margin:0 auto;
}

.clients-card{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 12px 40px rgba(68,51,28,0.06);
  padding:44px 20px;
  margin-bottom:32px;
}
.clients-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}
.client-logo{
  text-align:center;
  padding:24px 16px;
  border-left:1px solid var(--line);
}
.client-logo:nth-child(5n+1){border-left:none;}
.client-logo:nth-child(n+6){border-top:1px solid var(--line);}
.client-logo .name-en{
  font-family:var(--font-en);
  font-size:21px;
  font-weight:600;
  color:var(--text-main);
  letter-spacing:0.01em;
  margin-bottom:8px;
}
.client-logo .name-jp{
  font-size:12px;
  color:var(--text-sub);
}

.clients-other-label{
  font-family:var(--font-en);
  font-size:12px;
  letter-spacing:0.15em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:12px;
}
.clients-other-line{
  font-size:13px;
  line-height:2;
  color:var(--text-main);
  margin-bottom:18px;
}
.clients-lead{
  font-size:13px;
  line-height:1.9;
  color:var(--text-sub);
  margin-bottom:8px;
}
.clients-note{
  font-size:12px;
  color:var(--text-sub);
}

/* ---------- Works Section ---------- */
.works-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-sub);
}
.works-head{
  text-align:center;
  margin-bottom:48px;
}
.works-eyebrow{
  font-family:var(--font-en);
  font-size:14px;
  letter-spacing:0.3em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:14px;
}
.works-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(26px, 3vw, 38px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:18px;
}
.works-divider{
  width:64px;
  height:2px;
  background:var(--gold-main);
  margin:0 auto 20px;
}
.works-head .lead{
  font-size:15px;
  color:var(--text-sub);
}

/* ---------- Portfolio Bento Grid ---------- */
.works-bento{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.portfolio-card{
  display:flex;
  flex-direction:column;
  background:#FFFFFF;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(68,51,28,0.05);
}
.portfolio-photo{
  width:100%;
  aspect-ratio:16/10;
  flex-shrink:0;
  background-size:cover;
  background-position:center;
}
.portfolio-photo.ph-1{background-image:url('assets/images/mockup-print-b-screen.jpg');background-color:#c9a878;}
.portfolio-photo.ph-2{background-image:url('assets/images/mockup-tablet-m-screen.jpg');background-color:#e9e2d2;}
.portfolio-photo.ph-3{background-image:url('assets/images/mockup-print-a-screen.jpg');background-color:#1a2028;}
.portfolio-photo.ph-4{background-image:url('assets/images/mockup-laptop-screen.jpg');background-color:#0f1116;}
.portfolio-body{
  flex:1;
  min-width:0;
  padding:18px;
}
.portfolio-tag{
  display:inline-block;
  background:var(--grad-cta);
  color:#FFFFFF;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.03em;
  padding:5px 12px;
  border-radius:6px;
  margin-bottom:12px;
}
.portfolio-body h3{
  font-family:var(--font-jp-heading);
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
  line-height:1.5;
  margin-bottom:8px;
}
.portfolio-body p{
  font-size:12px;
  line-height:1.7;
  color:var(--text-sub);
}

/* デスクトップ幅ではベントーグリッド配置に切り替え */
@media (min-width:1081px){
  .works-bento{
    display:grid;
    grid-template-columns:1fr 1.3fr 1.3fr;
    grid-template-rows:auto auto;
    gap:24px;
  }
  .portfolio-card{
    flex-direction:column;
  }
  .portfolio-card.card-1{
    grid-column:1;
    grid-row:1 / 3;
  }
  .portfolio-card.card-1 .portfolio-photo{
    width:100%;
    aspect-ratio:3/4;
    flex:none;
  }
  .portfolio-card.card-1 .portfolio-body{
    padding:24px;
  }
  .portfolio-card.card-2{
    grid-column:2 / 4;
    grid-row:1;
    flex-direction:row;
  }
  .portfolio-card.card-2 .portfolio-photo{
    width:46%;
    aspect-ratio:auto;
    align-self:stretch;
  }
  .portfolio-card.card-2 .portfolio-body{
    padding:28px;
    align-self:center;
  }
  .portfolio-card.card-3{
    grid-column:2;
    grid-row:2;
  }
  .portfolio-card.card-4{
    grid-column:3;
    grid-row:2;
  }
  .portfolio-card.card-3 .portfolio-photo,
  .portfolio-card.card-4 .portfolio-photo{
    width:100%;
    aspect-ratio:16/10;
    flex:none;
  }
  .portfolio-card.card-3 .portfolio-body,
  .portfolio-card.card-4 .portfolio-body{
    padding:22px;
  }
}

/* ---------- Genre Section (対応ジャンル) ---------- */
.genre-section{
  padding-top:100px;
  padding-bottom:100px;
  background:var(--bg-main);
}
.genre-head{
  text-align:center;
  margin-bottom:56px;
}
.genre-head .eyebrow{
  font-family:var(--font-en);
  font-size:14px;
  letter-spacing:0.25em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:14px;
}
.genre-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(24px, 2.8vw, 34px);
  font-weight:700;
  color:var(--text-main);
}

.genre-block{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:40px;
  padding:40px 0;
  border-top:1px solid var(--line);
}
.genre-block:first-child{border-top:none;padding-top:0;}
.genre-num-col{
  text-align:left;
}
.genre-num{
  font-family:var(--font-en);
  font-size:40px;
  font-weight:700;
  line-height:1;
  color:var(--genre-color, var(--gold-main));
  margin-bottom:6px;
}
.genre-name{
  font-family:var(--font-en);
  font-size:26px;
  font-weight:700;
  color:var(--genre-color, var(--gold-main));
  line-height:1.2;
}
.genre-name-jp{
  font-size:13px;
  color:var(--text-sub);
  margin-bottom:16px;
}
.genre-icon{
  width:32px;
  height:32px;
  color:var(--genre-color, var(--gold-main));
  margin-bottom:16px;
}
.genre-icon svg{width:100%;height:100%;}
.genre-count{
  font-family:var(--font-en);
  font-size:24px;
  font-weight:700;
  color:var(--text-main);
}
.genre-count span{
  font-size:13px;
  font-weight:600;
  letter-spacing:0.05em;
  margin-left:2px;
}

.genre-list{
  column-count:4;
  column-gap:28px;
  margin:0;
  padding:0;
  list-style:none;
}
.genre-block.genre-web .genre-list{
  column-count:2;
}
.genre-list li{
  display:flex;
  align-items:baseline;
  gap:8px;
  font-size:13px;
  line-height:1;
  color:var(--text-main);
  padding:7px 0;
  break-inside:avoid;
}
.genre-list li::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--genre-color, var(--gold-main));
  flex-shrink:0;
}

.genre-photo{ --genre-color:#8B642D; }
.genre-graphic{ --genre-color:#6B7A4F; }
.genre-web{ --genre-color:#7A6B94; }

/* ---------- AND MORE ---------- */
.genre-more{
  margin-top:32px;
  background:var(--beige-pale);
  border-radius:20px;
  padding:28px 32px;
  display:flex;
  align-items:center;
  gap:36px;
  flex-wrap:wrap;
}
.genre-more-label{
  flex-shrink:0;
  width:150px;
}
.genre-more-label .label{
  font-family:var(--font-en);
  font-size:13px;
  letter-spacing:0.1em;
  font-weight:700;
  color:var(--gold-main);
  margin-bottom:8px;
}
.genre-more-label .caption{
  font-size:13px;
  line-height:1.6;
  color:var(--text-main);
}
.genre-more-items{
  display:flex;
  flex-wrap:wrap;
  gap:20px 24px;
  flex:1;
}
.more-item{
  width:88px;
  text-align:center;
}
.more-item .icon{
  width:28px;
  height:28px;
  margin:0 auto 8px;
  color:var(--gold-main);
}
.more-item .icon svg{width:100%;height:100%;}
.more-item p{
  font-size:13px;
  line-height:1.5;
  color:var(--text-main);
}

/* ---------- Footer note ---------- */
.genre-footer{
  margin-top:24px;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:20px;
  padding:32px 36px;
  display:flex;
  align-items:center;
  gap:28px;
}
.genre-footer-icon{
  width:48px;
  height:48px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--beige-pale);
  color:var(--gold-main);
  display:flex;
  align-items:center;
  justify-content:center;
}
.genre-footer-icon svg{width:22px;height:22px;}
.genre-footer-text{flex:1.4;min-width:260px;}
.genre-footer-text h4{
  font-size:16px;
  font-weight:600;
  color:var(--text-main);
  margin-bottom:8px;
}
.genre-footer-text p{
  font-size:13px;
  line-height:1.8;
  color:var(--text-sub);
}
.genre-footer-cta{
  flex:1;
  min-width:260px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:20px;
  flex-wrap:wrap;
}
.genre-footer-cta p{
  font-size:13px;
  line-height:1.7;
  color:var(--text-main);
  text-align:right;
}
.genre-footer-cta .btn{
  background:#1E2A38;
  color:#FFFFFF;
  white-space:nowrap;
  min-height:52px;
  padding:0 26px;
  font-size:14px;
}
.genre-footer-cta .btn:hover{background:#16202C;}
/* ---------- FAQ Section ---------- */
.faq-section{
  padding-top:120px;
  padding-bottom:120px;
  background:var(--bg-sub);
}
.faq-head{
  text-align:center;
  margin-bottom:40px;
}
.faq-eyebrow{
  font-family:var(--font-en);
  font-size:14px;
  letter-spacing:0.25em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:14px;
}
.faq-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(26px, 3vw, 38px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:16px;
}
.faq-head .lead{
  font-size:14px;
  color:var(--text-sub);
}

.faq-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:9999px;
  padding:8px;
  max-width:560px;
  margin:0 auto 32px;
  position:sticky;
  top:100px;
  z-index:200;
  box-shadow:0 8px 24px rgba(68,51,28,0.08);
}
.faq-tab{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:9999px;
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
  cursor:pointer;
  transition:background .3s ease, color .3s ease;
  border:none;
  background:transparent;
}
.faq-tab svg{width:18px;height:18px;flex-shrink:0;}
.faq-tab.active{
  background:var(--grad-cta);
  color:#FFFFFF;
}

.faq-panel{
  display:none;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 12px 40px rgba(68,51,28,0.06);
  padding:12px 44px;
}
.faq-panel.active{display:block;}

.faq-item{
  display:flex;
  gap:20px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.faq-item:last-child{border-bottom:none;}
.faq-q-mark{
  font-family:var(--font-en);
  font-style:italic;
  font-size:26px;
  font-weight:700;
  color:var(--gold-main);
  flex-shrink:0;
  line-height:1.3;
}
.faq-body{flex:1;min-width:0;}
.faq-question-row{
  margin-bottom:10px;
}
.faq-question{
  font-family:var(--font-jp-heading);
  font-size:16px;
  font-weight:600;
  color:var(--text-main);
  line-height:1.6;
}
.faq-answer{
  font-size:13px;
  line-height:1.9;
  color:var(--text-sub);
}
.faq-answer .list-item{display:block;}

.faq-price-table-wrap{
  overflow-x:auto;
  margin-top:14px;
}
.faq-price-table{
  width:100%;
  border-collapse:collapse;
  min-width:560px;
  font-size:12px;
}
.faq-price-table th{
  background:var(--beige-pale);
  color:var(--text-main);
  font-weight:600;
  padding:10px 12px;
  border:1px solid var(--line);
  text-align:center;
  white-space:nowrap;
}
.faq-price-table td{
  padding:10px 12px;
  border:1px solid var(--line);
  text-align:center;
  color:var(--text-main);
}
.faq-note{
  font-size:12px;
  color:var(--text-sub);
  margin-top:8px;
}

.faq-tip{
  background:var(--beige-pale);
  border-radius:16px;
  padding:24px 28px;
  margin-top:16px;
  display:flex;
  gap:18px;
}
.faq-tip .icon{
  width:40px;
  height:40px;
  flex-shrink:0;
  border-radius:50%;
  border:1px solid var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-main);
}
.faq-tip .icon svg{width:20px;height:20px;}
.faq-tip-body p{
  font-size:13px;
  line-height:1.9;
  color:var(--text-main);
}
.faq-tip-body p.tip-title{
  font-weight:600;
  margin-bottom:8px;
}
.faq-tip-body .highlight{color:var(--gold-dark);font-weight:700;}

/* ---------- Company Section ---------- */
.company-section{
  position:relative;
  padding-top:120px;
  padding-bottom:120px;
  background:
    linear-gradient(180deg, rgba(252,250,246,0.94) 0%, rgba(252,250,246,0.88) 40%, rgba(252,250,246,0.94) 100%),
    linear-gradient(120deg, #e7dcc7 0%, #d8c8a8 30%, #cdbb96 55%, #b8a37e 75%, #a08d6a 100%);
  overflow:hidden;
}
.company-head{
  text-align:center;
  margin-bottom:56px;
}
.company-eyebrow{
  font-family:var(--font-en);
  font-size:14px;
  letter-spacing:0.3em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:14px;
}
.company-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(28px, 3.2vw, 42px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:18px;
}
.company-head .divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:20px;
}
.company-head .divider span{width:60px;height:1px;background:var(--gold-light);}
.company-head .divider i{
  width:6px;height:6px;background:var(--gold-main);
  transform:rotate(45deg);display:inline-block;
}
.company-head .lead{
  font-size:15px;
  color:var(--text-main);
  font-weight:500;
}

.company-table{
  max-width:820px;
  margin:0 auto;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(6px);
  border:1px solid rgba(232,223,210,0.8);
  border-radius:24px;
  box-shadow:0 20px 50px rgba(68,51,28,0.10);
  padding:12px 48px;
}
.company-row{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}
.company-row:last-child{border-bottom:none;}
.company-row dt{
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
}
.company-row dd{
  font-size:14px;
  line-height:1.9;
  color:var(--text-main);
}

/* ---------- Contact Section ---------- */
.contact-section{
  padding:120px 40px;
  background:var(--bg-main);
}
.contact-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 40px;
}
.contact-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-family:var(--font-en);
  font-size:13px;
  letter-spacing:0.25em;
  color:var(--gold-main);
  font-weight:600;
  margin-bottom:18px;
}
.contact-eyebrow span{
  width:32px;
  height:1px;
  background:var(--gold-light);
}
.contact-head h2{
  font-family:var(--font-jp-heading);
  font-size:clamp(26px, 3vw, 36px);
  font-weight:700;
  color:var(--text-main);
  margin-bottom:20px;
}
.contact-head p{
  font-size:14px;
  line-height:1.9;
  color:var(--text-sub);
}

.contact-card{
  max-width:1000px;
  margin:0 auto;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 12px 40px rgba(68,51,28,0.06);
  padding:48px;
}
.contact-form-group{
  display:grid;
  grid-template-columns:180px 1fr;
  align-items:start;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-form-group:first-child{padding-top:0;}
.contact-form-group:last-of-type{border-bottom:none;}
.contact-form-label{
  display:flex;
  align-items:center;
  gap:8px;
  padding-top:14px;
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
}
.contact-form-label .optional{
  font-size:11px;
  font-weight:500;
  color:var(--text-sub);
}
.contact-required{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  color:#FFFFFF;
  background:var(--gold-main);
  padding:2px 8px;
  border-radius:4px;
  line-height:1.5;
}
.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 16px;
  font-size:14px;
  font-family:var(--font-jp-body);
  color:var(--text-main);
  background:var(--bg-main);
  transition:border-color .2s ease;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus{
  outline:none;
  border-color:var(--gold-main);
}
.contact-form-group textarea{
  min-height:120px;
  resize:vertical;
  line-height:1.8;
}
.contact-form-group ::placeholder{
  color:#B0A99C;
}
.contact-hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contact-privacy{
  font-size:12px;
  line-height:1.8;
  color:var(--text-sub);
  margin-top:20px;
}
.contact-privacy a{
  color:var(--gold-main);
  text-decoration:underline;
  text-underline-offset:2px;
}

.contact-submit-wrap{
  text-align:center;
  margin-top:32px;
}
.contact-submit-wrap .btn{
  min-width:320px;
}
.contact-followup{
  font-size:13px;
  color:var(--text-sub);
  margin-top:16px;
}

.contact-alert{
  max-width:1000px;
  margin:0 auto 24px;
  border-radius:14px;
  padding:16px 24px;
  font-size:14px;
  text-align:center;
}
.contact-alert.success{
  background:#F0F6EE;
  color:#3E6B31;
  border:1px solid #CBE0C4;
}
.contact-alert.error{
  background:#FBEFEC;
  color:#A34324;
  border:1px solid #F0CFC4;
}

/* ---------- Footer ---------- */
.site-footer{
  background:#211D18;
  color:rgba(255,255,255,0.7);
  padding-top:64px;
  padding-bottom:32px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.12);
  margin-bottom:24px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-brand .logo-mark{
  font-family:var(--font-en);
  font-style:italic;
  font-size:28px;
  color:var(--gold-light);
  line-height:1;
}
.footer-brand .jp{
  font-family:var(--font-jp-heading);
  font-size:16px;
  font-weight:600;
  color:#FFFFFF;
}
.footer-brand .en{
  font-family:var(--font-en);
  font-size:11px;
  letter-spacing:0.2em;
  color:rgba(255,255,255,0.5);
  margin-top:2px;
}
.footer-company{
  font-size:12px;
  line-height:1.9;
  color:rgba(255,255,255,0.55);
  margin-top:16px;
}
.footer-cta{
  flex-shrink:0;
}
.footer-cta .btn{
  white-space:nowrap;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.footer-nav{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.footer-nav a{
  font-size:12px;
  color:rgba(255,255,255,0.6);
  transition:color .2s ease;
}
.footer-nav a:hover{color:var(--gold-light);}
.footer-copyright{
  font-size:11px;
  color:rgba(255,255,255,0.4);
  font-family:var(--font-en);
  letter-spacing:0.03em;
}

/* ---------- Mobile Fixed CTA ---------- */
.mobile-fixed-cta{
  display:none;
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:900;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(252,250,246,0.92);
  backdrop-filter:blur(8px);
  border-top:1px solid var(--line);
}
.mobile-fixed-cta .btn{
  width:100%;
  min-height:56px;
  font-size:16px;
}

.narrow-880{
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
}
.narrow-1200{
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.narrow-1300{
  max-width:1300px;
  margin-left:auto;
  margin-right:auto;
}
.narrow-1100{
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .wrap-wide,.wrap{padding-left:24px;padding-right:24px;}
  .main-nav{display:none;}
  .nav-toggle{display:flex;}
  .header-cta{display:none;}
  .hero-v2{height:auto;overflow:visible;}
  .hero-v2-photo{position:static;width:100%;height:300px;}
  .hero-v2-flex{flex-direction:column;align-items:flex-start;height:auto;padding:32px 24px 0;}
  .hero-v2-left{width:100%;max-width:100%;}
  .hero-v2-live-card{position:static;width:auto;max-width:none;margin:24px 24px 0;}
  .information-section{padding:24px 24px 56px;}
  .information-card{padding:28px 24px;}
  .problem-top{grid-template-columns:1fr;gap:48px;padding-bottom:80px;}
  .problem-section{padding-top:80px;}
  .flow-row{grid-template-columns:1fr 1fr;row-gap:24px;}
  .flow-arrow{display:none;}
  .flow-checklist{grid-template-columns:1fr;}
  .solution-section{padding-top:80px;padding-bottom:80px;}
  .solution-head{margin-bottom:48px;}
  .process-row{grid-template-columns:repeat(3,1fr);row-gap:36px;margin-bottom:48px;}
  .process-arrow{display:none;}
  .value-box{padding:32px 24px;}
  .value-grid{grid-template-columns:1fr;gap:28px;}
  .solution-note{padding:24px 24px;}
  .compare-section{padding-top:80px;padding-bottom:80px;}
  .compare-grid{grid-template-columns:1fr;}
  .compare-mid{transform:rotate(90deg);justify-content:center;padding:12px 0;}
  .before-list .d{display:none;}
  .after-step{flex-wrap:wrap;}
  .after-desc{width:100%;padding-left:58px;}
  .reasons-section{padding-top:80px;padding-bottom:80px;}
  .reasons-head{margin-bottom:44px;}
  .reasons-grid{grid-template-columns:1fr;gap:20px;}
  .tablecompare-section{padding-top:80px;padding-bottom:80px;}
  .tc-head-simple{margin-bottom:40px;}
  .clients-section{padding-top:80px;padding-bottom:80px;}
  .clients-head{margin-bottom:40px;}
  .clients-card{padding:28px 12px;margin-bottom:40px;}
  .clients-grid{grid-template-columns:repeat(2,1fr);}
  .client-logo{border-left:none !important;border-top:1px solid var(--line);}
  .client-logo:nth-child(1),.client-logo:nth-child(2){border-top:none;}
  .works-section{padding-top:80px;padding-bottom:80px;}
  .works-head{margin-bottom:36px;}
  .genre-section{padding-top:80px;padding-bottom:80px;}
  .genre-head{margin-bottom:40px;}
  .genre-block{grid-template-columns:1fr;gap:16px;padding:32px 0;}
  .genre-list{column-count:3;}
  .genre-block.genre-web .genre-list{column-count:2;}
  .genre-more{padding:24px 20px;gap:20px;}
  .genre-more-label{width:100%;}
  .genre-footer{flex-wrap:wrap;padding:24px 20px;}
  .genre-footer-cta{justify-content:flex-start;}
  .genre-footer-cta p{text-align:left;}
  .faq-section{padding-top:80px;padding-bottom:80px;}
  .faq-head{margin-bottom:32px;}
  .faq-panel{padding:8px 24px;}
  .faq-tip{flex-direction:column;}
  .company-section{padding-top:80px;padding-bottom:80px;}
  .company-head{margin-bottom:40px;}
  .company-table{padding:8px 28px;}
  .company-row{grid-template-columns:130px 1fr;gap:16px;}
  .contact-section{padding:80px 24px;}
  .contact-card{padding:32px 24px;}
  .contact-form-group{grid-template-columns:1fr;gap:8px;}
  .contact-form-label{padding-top:0;}
  .contact-submit-wrap .btn{min-width:0;width:100%;}
  .footer-top{flex-direction:column;gap:24px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:16px;}
}
@media (max-width:640px){
  body{padding-bottom:76px;}
  .mobile-fixed-cta{display:block;}
  .wrap-wide,.wrap{padding-left:20px;padding-right:20px;}
  .site-header{height:72px;}
  .page-content-section{padding-top:calc(72px + 48px);padding-bottom:64px;}
  #difference,#works,#genre,#faq,#contact{scroll-margin-top:84px;}
  .compare-head h2{white-space:normal;}
  .tc-swipe-hint{
    display:flex;
    align-items:center;
    gap:8px;
    position:absolute;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    background:rgba(44,40,35,0.82);
    color:#FFFFFF;
    font-size:13px;
    padding:8px 16px;
    border-radius:9999px;
    pointer-events:none;
    opacity:0;
    animation:tc-swipe-fade 3.2s ease-in-out 0.5s 1 both;
    z-index:5;
  }
  .tc-swipe-hint svg{width:16px;height:16px;flex-shrink:0;animation:tc-swipe-move 3.2s ease-in-out 0.5s 1 both;}
  .value-head h3{white-space:normal;}
  .flow-head .txt{white-space:normal;}
  .hero-v2{padding-top:0;}
  .hero-v2-flex{padding:32px 20px 0;gap:28px;}
  .hero-v2-title{font-size:clamp(26px,7vw,34px);}
  .hero-v2-photo{height:220px;}
  .hero-v2-live-card{position:static;width:auto;max-width:none;margin:20px 20px 0;}
  .information-section{padding:20px 20px 48px;}
  .information-card{padding:24px 18px;}
  .information-list li{gap:16px;}
  .information-list .date{width:70px;font-size:12px;}
  .btn{width:100%;}
  .problem-section{padding-top:64px;}
  .problem-top{padding-bottom:64px;gap:36px;}
  .problem-top > .reveal{text-align:center;}
  .problem-divider{margin-left:auto;margin-right:auto;}
  .flow-card{padding:24px 20px 22px;}
  .flow-row{grid-template-columns:1fr 1fr;gap:20px 8px;}
  .solution-section{padding-top:64px;padding-bottom:64px;}
  .solution-head{margin-bottom:36px;}
  .process-row{grid-template-columns:1fr 1fr;gap:24px;margin-bottom:36px;}
  .value-box{padding:24px 18px;}
  .value-head{gap:14px;}
  .value-item{gap:14px;}
  .solution-note{padding:22px 18px;}
  .solution-note p{font-size:14px;}
  .compare-section{padding-top:64px;padding-bottom:64px;}
  .compare-head{gap:14px;margin-bottom:32px;}
  .compare-head h2{text-align:center;}
  .before-list li{flex-wrap:wrap;}
  .before-list .t{width:auto;}
  .after-title{width:auto;}
  .after-step{gap:12px;}
  .reasons-section{padding-top:64px;padding-bottom:64px;}
  .reasons-head{margin-bottom:32px;}
  .reason-card{padding:28px 22px;}
  .tablecompare-section{padding-top:64px;padding-bottom:64px;}
  .tc-head-simple{margin-bottom:32px;}
  .clients-section{padding-top:64px;padding-bottom:64px;}
  .clients-head{margin-bottom:32px;text-align:center;}
  .clients-grid{grid-template-columns:repeat(2,1fr);}
  .client-logo{border-left:none !important;border-top:1px solid var(--line);padding:16px 8px;}
  .client-logo:nth-child(1),.client-logo:nth-child(2){border-top:none;}
  .client-logo .name-en{font-size:16px;}
  .works-section{padding-top:64px;padding-bottom:64px;}
  .works-head{margin-bottom:28px;}
  .genre-section{padding-top:64px;padding-bottom:64px;}
  .genre-head{margin-bottom:32px;}
  .genre-block{padding:24px 0;}
  .genre-list{column-count:2;}
  .genre-block.genre-web .genre-list{column-count:1;}
  .genre-more{flex-direction:column;align-items:center;padding:20px 16px;}
  .genre-more-label{text-align:center;}
  .genre-more-items{gap:16px;justify-content:center;}
  .more-item{width:76px;}
  .genre-footer{flex-direction:column;align-items:flex-start;padding:20px 16px;}
  .genre-footer-cta{width:100%;justify-content:flex-start;}
  .genre-footer-cta .btn{width:100%;justify-content:center;}
  .faq-section{padding-top:64px;padding-bottom:64px;}
  .faq-head{margin-bottom:28px;}
  .faq-tabs{border-radius:9999px;max-width:100%;top:84px;gap:6px;padding:6px;}
  .faq-tab{padding:10px 8px;font-size:13px;gap:6px;}
  .faq-tab svg{width:15px;height:15px;}
  .faq-panel{padding:6px 18px;}
  .faq-item{padding:20px 0;gap:12px;}
  .faq-q-mark{font-size:20px;}
  .faq-question{font-size:14px;}
  .company-section{padding-top:64px;padding-bottom:64px;}
  .company-head{margin-bottom:32px;}
  .company-table{padding:6px 20px;}
  .company-row{grid-template-columns:1fr;gap:6px;padding:18px 0;}
  .contact-section{padding:64px 20px;}
  .contact-card{padding:24px 18px;}
  .footer-cta .btn{width:100%;}
  .footer-nav{gap:16px;}
}
