@charset "UTF-8";
/* =================================================================
   WEBRE株式会社 コーポレートサイト
   Figmaデザインを忠実に再現した素のCSS（Tailwind不使用）
   モバイルファースト：375px基準、768px以上でPCレイアウト
   ================================================================= */

/* -------- フォント読み込み -------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500&family=Cormorant+Infant:wght@300;400;500;600&family=Noto+Serif+JP:wght@400;500;600&display=swap');

/* -------- リセット -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* -------- カラー・変数 -------- */
:root {
  --bg: #edece7;
  --primary: #165e83;
  --ink: #333333;
  --white: #ffffff;
  --serif-jp: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --display-en: "Cormorant", serif;
  --serif-en: "Cormorant Infant", serif;
  --maxw: 1200px;
}

body {
  font-family: var(--serif-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* -------- 共通レイアウト -------- */
.inner { width: 100%; max-width: calc(var(--maxw) + 40px); margin: 0 auto; padding: 0 20px; }

/* セクション見出し（線 ＋ 英字） */
.sec-title { display: flex; align-items: center; gap: 30px; }
.sec-title::before { content: ""; width: 40px; height: 1px; background: var(--ink); flex-shrink: 0; }
.sec-title span {
  font-family: var(--display-en); font-weight: 500;
  font-size: 28px; letter-spacing: 0.84px; line-height: 1; color: var(--ink);
}

/* リンク（VIEW MORE 等） */
.more {
  display: inline-block; font-family: var(--serif-en); font-weight: 600;
  font-size: 12px; letter-spacing: 0.36px; text-decoration: underline;
}
.more--right { display: block; text-align: right; }

/* 矢印付きボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--primary); color: var(--white);
  font-family: var(--serif-jp); font-size: 14px; letter-spacing: 0.42px; line-height: 1.2;
  padding: 12px 40px;
}
.btn .arrow { width: 25px; height: 8px; flex-shrink: 0; }

/* タグ（カテゴリラベル） */
.tag {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 10px; letter-spacing: 0.3px; line-height: 1; padding: 5px;
}

/* =================================================================
   ヘッダー
   ================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 80px; background: var(--bg);
}
.header__bar {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; margin: 0 auto; padding: 20px;
}
.header__logo img { width: 133px; height: 30px; }
.header__nav { display: none; }

/* ハンバーガー */
.hamburger {
  width: 25px; height: 19px; position: relative; display: block;
}
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* =================================================================
   モーダルメニュー（SP）
   ================================================================= */
.modal {
  position: fixed; inset: 0; z-index: 200; background: var(--primary);
  display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__close {
  position: absolute; top: 40px; right: 30px; width: 32px; height: 32px;
}
.modal__close::before, .modal__close::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px;
  background: var(--white);
}
.modal__close::before { transform: rotate(45deg); }
.modal__close::after { transform: rotate(-45deg); }
.modal__body {
  display: flex; flex-direction: column; gap: 40px; align-items: flex-start;
  padding-left: 30px; width: 315px;
}
.modal__logo {
  width: 63px; height: 76px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.modal__nav { display: flex; flex-direction: column; gap: 40px; padding: 15px 0; }
.modal__nav a {
  font-family: var(--serif-en); font-weight: 500; font-size: 18px;
  letter-spacing: 0.5px; line-height: 1.1; color: var(--white); text-transform: uppercase;
}
.modal__sns { width: 115px; height: 25px; }
.modal__sns img { width: 100%; height: 100%; }
.modal__contact {
  background: var(--bg); color: var(--ink);
  font-family: var(--serif-en); font-weight: 500; font-size: 14px;
  letter-spacing: 0.42px; line-height: 1.2; padding: 10px 40px;
}

/* =================================================================
   FV（ファーストビュー）
   ================================================================= */
.fv { position: relative; height: 727px; overflow: hidden; background: var(--bg); }
.fv__img { position: absolute; top: 85px; left: 0; width: 100%; height: 393px; }
.fv__img img { width: 100%; height: 100%; object-fit: cover; }
.fv__text {
  position: absolute; left: 0; right: 0; top: 500px;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  padding: 0 20px; text-align: center;
}
.fv__copy { font-size: 28px; letter-spacing: 0.6px; line-height: 1.3; font-weight: 500; white-space: nowrap; }
.fv__lead { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; margin-top: 10px; }

/* =================================================================
   セクション共通余白
   ================================================================= */
.section { padding-top: 100px; }
.section--last { padding-bottom: 80px; }

/* -------- about / Our style -------- */
.about__head { display: flex; flex-direction: column; gap: 30px; }
.about__lead-ttl { font-size: 18px; letter-spacing: 0.54px; line-height: 1.4; font-weight: 500; }
.about__lead-txt { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; margin-top: 10px; }
.about__body { margin-top: 40px; display: flex; flex-direction: column; gap: 40px; }
.point-list { display: flex; flex-direction: column; gap: 30px; }
.point { display: flex; gap: 20px; }
.point__num {
  font-family: var(--serif-en); font-weight: 600; font-size: 13px;
  letter-spacing: 0.39px; line-height: 1.6; flex-shrink: 0;
}
.point__ttl { font-size: 16px; letter-spacing: 0.48px; line-height: 1.6; font-weight: 600; }
.point__txt { font-size: 12px; letter-spacing: 0.36px; line-height: 2; margin-top: 10px; }

/* 写真コラージュ */
.collage { position: relative; width: 331px; height: 400px; margin: 0 auto; }
.collage img { position: absolute; object-fit: cover; }
.collage img:nth-child(1) { width: 177px; height: 250px; left: 0; top: 114px; }
.collage img:nth-child(2) { width: 238px; height: 165px; left: 97px; top: 0; }
.collage img:nth-child(3) { width: 169px; height: 122px; left: 162px; top: 278px; }

/* -------- service -------- */
.service__head { display: flex; flex-direction: column; gap: 30px; }
.service__lead-ttl { font-size: 18px; letter-spacing: 0.54px; line-height: 1.4; font-weight: 500; }
.service__lead-txt { font-size: 12px; letter-spacing: 0.36px; line-height: 2; }
.service__list { margin-top: 40px; display: flex; flex-direction: column; gap: 60px; }
.service-item { display: flex; flex-direction: column; gap: 20px; }
.service-item__img { width: 100%; aspect-ratio: 485 / 343; }
.service-item__img img { width: 100%; height: 100%; object-fit: cover; }
.service-item__ttl { font-size: 16px; letter-spacing: 0.48px; line-height: 1; font-weight: 600; }
.service-item__sub { font-size: 12px; letter-spacing: 0.36px; font-weight: 600; line-height: 1.2; }
.service-item__menu { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; margin-top: 10px; }
.service-item__body { display: flex; flex-direction: column; gap: 15px; }

/* -------- vision -------- */
.vision__inner { margin-top: 30px; display: flex; flex-direction: column; gap: 40px; }
.vision__img { width: 211px; height: 194px; }
.vision__img img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.vision__ttl { font-size: 18px; letter-spacing: 0.54px; line-height: 1.6; font-weight: 500; }
.vision__txt { font-size: 12px; letter-spacing: 0.36px; line-height: 2; margin: 20px 0; }

/* -------- works -------- */
.works__lead { margin-top: 30px; font-size: 18px; letter-spacing: 0.54px; line-height: 1.6; font-weight: 500; }
.works__list { margin-top: 30px; display: flex; flex-direction: column; gap: 30px; }
.work-card__img { position: relative; height: 222px; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; }
.work-card__img::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.work-card__meta { padding-top: 10px; display: flex; flex-direction: column; gap: 10px; }
.work-card__name { font-size: 12px; letter-spacing: 0.36px; line-height: 1.2; font-weight: 600; }
.work-card__desc { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; }
.work-card--pc-only { display: none; }

/* -------- news + column -------- */
.news__list { margin-top: 30px; }
.news-row {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 10px; border-bottom: 1px solid rgba(51,51,51,.2);
}
.news-row__date {
  font-family: var(--serif-en); font-weight: 500; font-size: 10px;
  letter-spacing: 0.3px; line-height: 1.6; width: 51px; flex-shrink: 0;
}
.news-row__ttl { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; }
.news__more { padding: 20px 0 0; }

.column { padding-top: 100px; }
.column__intro {
  margin-top: 30px; font-size: 12px; letter-spacing: 0.36px;
  line-height: 1.6; text-align: center;
}
.column__list { margin-top: 30px; display: flex; flex-direction: column; gap: 30px; }
.column-card { display: flex; align-items: center; gap: 10px; }
.column-card__thumb { position: relative; width: 140px; height: 100px; flex-shrink: 0; }
.column-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.column-card__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.column-card__thumb .tag { position: absolute; top: 0; left: 0; z-index: 1; }
.column-card__date {
  font-family: var(--serif-en); font-weight: 500; font-size: 10px;
  letter-spacing: 0.3px; line-height: 1; padding: 5px;
}
.column-card__ttl {
  font-size: 12px; letter-spacing: 0.36px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.column__more { margin-top: 10px; }

/* =================================================================
   Contact
   ================================================================= */
.contact {
  position: relative; height: 360px; overflow: hidden; margin-top: 100px;
  display: flex; align-items: center; justify-content: center;
}
.contact__bg { position: absolute; inset: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.contact::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.5); z-index: 1;
}
.contact__body {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 30px; padding: 0 20px; text-align: center; color: var(--white);
}
.contact__ttl {
  font-family: var(--display-en); font-weight: 500; font-size: 40px;
  letter-spacing: 1.2px; line-height: 1;
}
.contact__txt { font-size: 12px; letter-spacing: 0.36px; line-height: 1.6; }

/* =================================================================
   フッター
   ================================================================= */
.footer { background: var(--primary); color: var(--white); padding: 40px 0; }
.footer__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  max-width: 1440px; margin: 0 auto; padding: 0 20px;
}
.footer__logo {
  width: 57px; height: 70px; flex-shrink: 0;
  object-fit: contain; object-position: left top;
  filter: brightness(0) invert(1);
}
.footer__nav { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.footer__nav a {
  font-family: var(--serif-en); font-weight: 300; font-size: 12px;
  letter-spacing: 0.5px; text-transform: uppercase; list-style: disc;
}
.footer__nav li { list-style: disc; margin-left: 18px; }
.footer__divider {
  max-width: 1440px; margin: 30px auto; padding: 0;
  border: 0; border-top: 1px solid rgba(255,255,255,.4);
}
.footer__bottom {
  display: flex; align-items: flex-start; justify-content: space-between;
  max-width: 1440px; margin: 0 auto; padding: 0 20px;
}
.footer__sns { width: 90px; height: 20px; }
.footer__sns img { width: 100%; height: 100%; }
.footer__links { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; text-align: right; }
.footer__links a, .footer__copy {
  font-size: 10px; letter-spacing: 0.3px; line-height: 1.2;
}
.footer__copy { font-family: var(--serif-en); font-weight: 400; font-size: 9px; }

/* =================================================================
   下層ページ共通（service / company / column / 記事）
   ================================================================= */
.page { padding-top: 80px; } /* 固定ヘッダー分 */

/* ページタイトル帯 */
.page-hero { padding: 50px 0; text-align: center; }
.page-hero__en {
  font-family: var(--display-en); font-weight: 500; font-size: 40px;
  letter-spacing: 1.2px; line-height: 1;
}
.page-hero__ja { font-size: 13px; letter-spacing: 0.39px; margin-top: 12px; }

/* パンくず */
.breadcrumb {
  font-size: 11px; letter-spacing: 0.33px; color: var(--ink);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { text-decoration: underline; }

/* 汎用本文セクション */
.prose h2 {
  font-size: 20px; letter-spacing: 0.6px; line-height: 1.5; font-weight: 600;
  margin: 40px 0 16px;
}
.prose h3 { font-size: 16px; letter-spacing: 0.48px; font-weight: 600; margin: 24px 0 10px; }
.prose p { font-size: 13px; letter-spacing: 0.39px; line-height: 2; margin-bottom: 14px; }

/* =================================================================
   PCレイアウト（768px以上）
   ================================================================= */
@media (min-width: 768px) {
  :root { --maxw: 1200px; }
  .inner { padding: 0 20px; }

  .sec-title { gap: 30px; }
  .sec-title span { font-size: 36px; letter-spacing: 1.08px; }
  .more { font-size: 13px; letter-spacing: 0.39px; }
  .btn { font-size: 16px; letter-spacing: 0.48px; }
  .tag { font-size: 12px; letter-spacing: 0.36px; }

  /* ヘッダー */
  .header__bar { padding: 20px 40px; }
  .header__logo img { width: 178px; height: 40px; }
  .header__nav { display: flex; align-items: center; gap: 25px; }
  .header__nav a {
    font-family: var(--serif-en); font-weight: 500; font-size: 16px;
    letter-spacing: 0.48px; line-height: 1.2; padding: 5px 0;
  }
  .header__cta {
    background: var(--primary); color: var(--white);
    width: 159px; height: 37px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--serif-en); font-weight: 500;
    font-size: 14px; letter-spacing: 0.42px; line-height: 1.2;
  }
  .header__menu-btn { display: none; }

  /* FV — flexで横並び（画面幅が縮んでも重ならない） */
  .fv { height: 850px; }
  .fv__inner {
    display: flex; flex-direction: row-reverse;
    align-items: center; justify-content: center; gap: 60px;
    height: 100%; max-width: 1440px; margin: 0 auto; padding: 0 120px;
  }
  .fv__img {
    position: static; width: 600px; height: 715px;
    align-self: flex-end; flex-shrink: 1; min-width: 0;
  }
  .fv__text {
    position: static; transform: none;
    align-items: flex-start; text-align: left; width: 549px;
    flex-shrink: 0; padding: 0; gap: 40px;
  }
  .fv__copy { font-size: 45px; letter-spacing: 1.35px; }
  .fv__lead { font-size: 14px; letter-spacing: 0.42px; }

  /* セクション余白 */
  .section { padding-top: 200px; }
  .section--last { padding-bottom: 160px; }
  .column { padding-top: 200px; }
  .contact { margin-top: 200px; }

  /* about */
  .about__head { flex-direction: row; gap: 80px; }
  .about__head .sec-title { flex-shrink: 0; }
  .about__lead-ttl { font-size: 24px; letter-spacing: 0.72px; }
  .about__lead-txt { font-size: 14px; letter-spacing: 0.42px; line-height: 2; }
  .about__body {
    margin-top: 60px; flex-direction: row-reverse;
    justify-content: space-between; align-items: flex-start; gap: 60px;
  }
  .about__points { flex: 1 1 320px; }
  .point-list { gap: 50px; }
  .point__num { font-size: 16px; letter-spacing: 0.48px; }
  .point__ttl { font-size: 18px; letter-spacing: 0.54px; }
  .point__txt { font-size: 14px; letter-spacing: 0.42px; }
  .about__points .more { margin-top: 60px; }
  /* 写真コラージュ：%ベースで可変（横並びを保ったまま縮小可能） */
  .collage {
    flex: 0 1 534px; width: auto; max-width: 534px; height: auto;
    aspect-ratio: 534 / 514; min-width: 0; margin: 0;
  }
  .collage img:nth-child(1) { width: 44.76%; height: 65.37%; left: 0;       top: 34.63%; }
  .collage img:nth-child(2) { width: 63.67%; height: 45.72%; left: 32.77%;  top: 0; }
  .collage img:nth-child(3) { width: 49.25%; height: 36.77%; left: 50.75%;  top: 53.5%; }

  /* service */
  .service__head { flex-direction: row; gap: 80px; }
  .service__head .sec-title { flex-shrink: 0; }
  .service__lead-ttl { font-size: 24px; letter-spacing: 0.72px; }
  .service__lead-txt { font-size: 14px; letter-spacing: 0.42px; }
  .service__list { margin-top: 60px; }
  .service-item { flex-direction: row; align-items: center; gap: 40px; }
  .service-item__img { width: 329px; height: 233px; aspect-ratio: auto; flex-shrink: 0; }
  .service-item__body { width: 340px; gap: 30px; }
  .service-item:nth-child(1) { padding-left: 200px; }
  /* 画面幅が縮むと 400px→200px へスライドし、1枚目と左端が揃う */
  .service-item:nth-child(2) { padding-left: clamp(200px, calc(100vw - 749px), 400px); }
  .service-item__ttl { font-size: 18px; letter-spacing: 0.54px; }
  .service-item__menu { font-size: 14px; letter-spacing: 0.42px; }

  /* vision */
  .vision .sec-title { margin-bottom: 40px; }
  .vision__inner { flex-direction: row; gap: 0; align-items: flex-start; }
  .vision__body { width: 600px; flex-shrink: 0; order: -1; }
  .vision__img { width: 300px; height: 275px; }
  .vision__ttl { font-size: 24px; letter-spacing: 0.72px; }
  .vision__txt { font-size: 14px; letter-spacing: 0.42px; }
  .vision__ttl, .vision__txt, .vision__body .more { max-width: 534px; }

  /* works */
  .works__lead { font-size: 24px; letter-spacing: 0.72px; }
  .works__list {
    margin-top: 40px; flex-direction: row; justify-content: space-between; gap: 20px;
  }
  .work-card { width: 276px; }
  .work-card__img { height: 204px; }
  .work-card__name { font-size: 14px; letter-spacing: 0.42px; line-height: 1.4; }
  .work-card__desc { font-size: 14px; letter-spacing: 0.42px; }
  .work-card--pc-only { display: block; }

  /* news + column */
  .news-column { display: flex; justify-content: space-between; gap: 80px; }
  .news, .column { flex: 1; padding-top: 200px; }
  .news-row { padding: 20px; gap: 20px; }
  .news-row__date { font-size: 12px; letter-spacing: 0.36px; width: 61px; }
  .news-row__ttl { font-size: 14px; letter-spacing: 0.42px; }
  .column__intro { font-size: 14px; letter-spacing: 0.42px; }
  .column__list { margin-top: 40px; }
  .column-card { gap: 10px; }
  .column-card__thumb { width: 200px; height: 142px; }
  .column-card__date { font-size: 12px; letter-spacing: 0.36px; }
  .column-card__ttl { font-size: 14px; letter-spacing: 0.42px; }

  /* contact */
  .contact { height: 590px; }
  .contact__ttl { font-size: 80px; letter-spacing: 2.4px; }
  .contact__body { gap: 40px; }
  .contact__txt { font-size: 16px; letter-spacing: 0.48px; }

  /* footer */
  .footer { padding: 59px 0 54px; }
  .footer__top { padding: 0 120px; }
  .footer__logo { width: 82px; height: 100px; }
  .footer__nav { flex-direction: row; gap: 40px; }
  .footer__bottom { padding: 0 120px; }
  .footer__sns { width: 115px; height: 25px; }
  .footer__links { flex-direction: row; gap: 50px; align-items: center; }
  .footer__links a, .footer__copy { font-size: 11px; letter-spacing: 0.33px; }
  .footer__copy { font-size: 11px; }

  /* 下層ページ */
  .page-hero { padding: 80px 0; }
  .page-hero__en { font-size: 80px; letter-spacing: 2.4px; }
  .page-hero__ja { font-size: 14px; }
  .prose h2 { font-size: 26px; letter-spacing: 0.78px; }
  .prose h3 { font-size: 18px; }
  .prose p { font-size: 15px; letter-spacing: 0.45px; }
}

/* =================================================================
   サービスページ
   ================================================================= */
.svc-fv { position: relative; background: var(--bg); padding-top: 80px; }
.svc-fv__ttl {
  font-family: var(--display-en); font-weight: 500; font-size: 33px;
  letter-spacing: 1px; line-height: 1; padding: 50px 20px 24px;
}
.svc-fv__img { width: 100%; aspect-ratio: 375 / 327; }
.svc-fv__img img { width: 100%; height: 100%; object-fit: cover; }

.svc-intro { padding-top: 80px; }
.svc-intro__ttl {
  font-size: 18px; letter-spacing: 0.54px; line-height: 1.4;
  font-weight: 500; text-align: center;
}
.svc-intro__txt {
  margin-top: 10px; font-size: 12px; letter-spacing: 0.36px;
  line-height: 2; text-align: center;
}
.svc-nav { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.svc-nav-card {
  position: relative; height: 100px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; color: var(--white); text-align: center;
}
.svc-nav-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.svc-nav-card::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.6); z-index: 1; }
.svc-nav-card > * { position: relative; z-index: 2; }
.svc-nav-card__no {
  font-family: var(--serif-en); font-weight: 500; font-size: 18px;
  letter-spacing: 0.54px; line-height: 1;
}
.svc-nav-card__ttl { font-size: 16px; letter-spacing: 0.48px; line-height: 1.6; }
.svc-nav-card__btn {
  background: #4b859e; color: var(--white); font-size: 10px;
  letter-spacing: 0.3px; line-height: 1.2; padding: 5px 20px;
}

/* サービス詳細ブロック */
.svc-block { padding-top: 100px; scroll-margin-top: 90px; }
/* 一覧ページ：サービスさわりブロックの「詳細を見る」 */
.svc-block__more { display: flex; }
.svc-block__more.btn--wide { margin-top: 10px; }
.svc-block__img { width: 100%; aspect-ratio: 1 / 1; }
.svc-block__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-block__body { margin-top: 30px; display: flex; flex-direction: column; gap: 24px; }
.svc-block__title { display: flex; align-items: center; gap: 30px; }
.svc-block__title::before { content: ""; width: 40px; height: 1px; background: var(--ink); flex-shrink: 0; }
.svc-block__title span { font-size: 28px; letter-spacing: 0.84px; line-height: 1; font-weight: 500; }
.svc-block__lead-ttl { font-size: 18px; letter-spacing: 0.54px; line-height: 1.4; font-weight: 500; }
.svc-block__lead-txt { margin-top: 10px; font-size: 12px; letter-spacing: 0.36px; line-height: 2; }
.svc-block__support-ttl { font-size: 16px; letter-spacing: 0.48px; line-height: 1.6; font-weight: 600; }
.check-list { margin-top: 10px; display: flex; flex-direction: column; gap: 15px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; letter-spacing: 0.42px; line-height: 1.6; font-weight: 600;
}
.check-list li::before {
  content: ""; width: 20px; height: 20px; flex-shrink: 0;
  background: url(../img/check.svg) center / contain no-repeat;
}

/* 料金・プラン */
.plan { padding-top: 60px; }
.plan__ttl {
  font-size: 24px; letter-spacing: 0.72px; line-height: 1.6;
  font-weight: 600; text-align: center;
}
.plan-list { margin-top: 24px; display: flex; flex-direction: column; gap: 24px; }
.plan-card {
  background: #fdfdfd; padding: 20px; text-align: center;
  display: flex; flex-direction: column; gap: 15px;
}
.plan-card__label {
  font-family: var(--serif-en); font-weight: 600; font-size: 20px;
  color: #4b859e; text-decoration: underline; line-height: 1;
}
.plan-card__name { font-size: 24px; letter-spacing: 0.5px; line-height: 1.4; }
.plan-card__name .num { font-size: 32px; }
.plan-card__detail {
  display: flex; flex-direction: column; gap: 5px;
  font-size: 12px; letter-spacing: 0.5px; line-height: 1.4;
}
.plan-card__price { font-family: var(--serif-en); font-weight: 600; font-size: 18px; }

/* 無料で相談するボタン */
.btn--wide { padding: 10px 80px; }
.svc-block .btn--wide, .plan + .btn--wide { margin: 40px auto 0; display: flex; }

/* Flow */
.flow { padding-top: 100px; padding-bottom: 60px; }
.flow__head { display: flex; flex-direction: column; gap: 20px; }
.flow__ttl { font-size: 24px; letter-spacing: 0.72px; line-height: 1.4; font-weight: 500; }
.flow__txt { font-size: 14px; letter-spacing: 0.42px; line-height: 1.6; }
.flow-steps {
  margin-top: 30px; border-left: 1px solid var(--ink);
  padding-left: 20px; display: flex; flex-direction: column; gap: 40px;
}
.flow-step { display: flex; gap: 20px; }
.flow-step__no {
  font-family: var(--serif-en); font-weight: 600; font-size: 16px;
  letter-spacing: 0.48px; line-height: 1.6; flex-shrink: 0;
}
.flow-step__ttl { font-size: 18px; letter-spacing: 0.54px; line-height: 1.6; font-weight: 600; }
.flow-step__txt { margin-top: 10px; font-size: 14px; letter-spacing: 0.42px; line-height: 2; }

@media (min-width: 768px) {
  /* サービスFV */
  .svc-fv { height: 699px; padding-top: 0; }
  .svc-fv__ttl {
    position: absolute; left: 120px; top: 190px; font-size: 48px;
    letter-spacing: 1.44px; padding: 0;
  }
  .svc-fv__img {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 1200px; height: 450px; aspect-ratio: auto;
  }

  .svc-intro__ttl { font-size: 24px; letter-spacing: 0.72px; }
  .svc-intro__txt { font-size: 14px; letter-spacing: 0.42px; }
  .svc-nav { margin-top: 40px; flex-direction: row; gap: 15px; justify-content: center; }
  .svc-nav-card { flex: 1; max-width: 236px; }

  .svc-block { padding-top: 200px; }
  .svc-block__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 0;
  }
  .svc-block__img { width: 470px; height: 600px; aspect-ratio: auto; flex-shrink: 0; }
  .svc-block--rev .svc-block__inner { flex-direction: row-reverse; }
  .svc-block__body { margin-top: 0; width: 600px; gap: 40px; }
  .svc-block__title span { font-size: 36px; letter-spacing: 1.08px; }
  .svc-block__lead, .svc-block__support { padding-left: 20px; }
  .svc-block__lead-ttl { font-size: 24px; letter-spacing: 0.72px; }
  .svc-block__lead-txt { font-size: 14px; letter-spacing: 0.42px; max-width: 534px; }
  .svc-block__support-ttl { font-size: 18px; letter-spacing: 0.54px; }

  .plan { padding-top: 60px; }
  .plan-list { flex-direction: row; gap: 24px; margin-top: 40px; }
  .plan-card { flex: 1; }

  .flow { padding-top: 200px; }
  .flow__inner { display: flex; justify-content: space-between; align-items: flex-start; }
  .flow__head { width: 600px; flex-shrink: 0; padding-left: 20px; }
  .flow__ttl { font-size: 24px; }
  .flow-steps { width: 600px; margin-top: 0; padding: 30px 0 30px 30px; gap: 50px; }
}

/* =================================================================
   会社概要ページ
   ================================================================= */
.cmp-fv { position: relative; background: var(--bg); padding-top: 80px; }
.cmp-fv__ttl {
  font-family: var(--display-en); font-weight: 500; font-size: 33px;
  letter-spacing: 1px; line-height: 1; padding: 50px 20px 24px;
}
.cmp-fv__banner {
  position: relative; width: 100%; aspect-ratio: 375 / 327; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cmp-fv__banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cmp-fv__banner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.cmp-fv__banner p {
  position: relative; color: var(--white); text-align: center;
  font-size: 14px; line-height: 1.4; letter-spacing: 0.42px; padding: 0 20px;
}

/* 会社概要 共通行（タイトル／見出し／内容） */
.cmp-row { padding-top: 100px; }
.cmp-row__inner { display: flex; flex-direction: column; gap: 20px; }
.cmp-row__head { font-size: 18px; letter-spacing: 0.54px; line-height: 1.4; font-weight: 500; }
.cmp-row .point__num { font-size: 16px; letter-spacing: 0.48px; }
.cmp-row .point__txt { font-size: 14px; letter-spacing: 0.42px; }
.cmp-row__txt { font-size: 14px; letter-spacing: 0.42px; line-height: 2; }

/* message */
.cmp-msg__photo { width: 190px; height: 174px; }
.cmp-msg__photo img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.cmp-msg__name {
  font-family: var(--display-en); font-weight: 500; font-size: 28px;
  letter-spacing: 0.84px; line-height: 1.4; margin-bottom: 20px;
}

/* 会社情報テーブル */
.cmp-logo { width: 178px; }
.cmp-info { display: flex; flex-direction: column; gap: 10px; }
.cmp-info div { display: flex; gap: 20px; font-size: 16px; letter-spacing: 0.48px; line-height: 1.6; }
.cmp-info dt { width: 71px; flex-shrink: 0; font-weight: 500; }

/* 取引実績グリッド */
.partner-grid {
  background: #f7f7f7; padding: 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.partner-grid div { aspect-ratio: 1 / 1; }
.partner-grid img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 768px) {
  .cmp-fv { height: 699px; padding-top: 0; }
  .cmp-fv__ttl {
    position: absolute; left: 120px; top: 190px; font-size: 48px;
    letter-spacing: 1.44px; padding: 0; z-index: 1;
  }
  .cmp-fv__banner {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 1200px; height: 450px; aspect-ratio: auto;
  }
  .cmp-fv__banner p { font-size: 24px; letter-spacing: 0.72px; }

  .cmp-row { padding-top: 300px; }
  .cmp-row__inner {
    flex-direction: row; justify-content: space-between;
    align-items: flex-start; gap: 0;
  }
  .cmp-row--partners { padding-top: 200px; }
  .cmp-row__title { width: 220px; flex-shrink: 0; }
  .cmp-row__head { width: 320px; flex-shrink: 0; font-size: 24px; letter-spacing: 0.72px; }
  .cmp-row__body { width: 600px; flex-shrink: 0; }
  .cmp-row__txt { font-size: 14px; }
  .cmp-row .point-list { gap: 50px; }
  .cmp-msg__name { font-size: 28px; }
  .cmp-info div { font-size: 16px; }
  .cmp-info dt { width: 90px; }
  .partner-grid { width: 600px; height: 600px; gap: 0; place-content: center; }
  .partner-grid div { width: 135px; height: 135px; aspect-ratio: auto; }
}

/* =================================================================
   コラム一覧ページ
   ================================================================= */
.col-fv {
  padding-top: 200px; text-align: center;
  font-family: var(--display-en); font-weight: 500;
  font-size: 33px; letter-spacing: 1px; line-height: 1; color: var(--ink);
}
.col-list {
  max-width: 840px; margin: 0 auto; padding: 100px 20px 0;
  display: flex; flex-direction: column; gap: 30px;
}
.col-item { background: #f7f7f7; display: flex; flex-direction: column; }
.col-item__thumb { position: relative; width: 100%; aspect-ratio: 335 / 188; flex-shrink: 0; }
.col-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.col-item__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.col-item__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.col-item__meta { display: flex; gap: 10px; align-items: center; }
.col-item__date {
  font-family: var(--serif-en); font-weight: 500; font-size: 12px;
  letter-spacing: 0.36px; line-height: 1;
}
.col-item__ttl { font-size: 14px; letter-spacing: 0.42px; line-height: 1.4; font-weight: 600; }
.col-item__txt {
  font-size: 12px; letter-spacing: 0.36px; line-height: 1.4;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden; min-height: 2.8em;
}
.col-more { display: flex; justify-content: center; padding: 60px 20px 100px; }

@media (min-width: 768px) {
  .col-fv { padding-top: 350px; font-size: 48px; letter-spacing: 1.44px; }
  .col-list { max-width: 840px; padding-top: 150px; }
  .col-item { flex-direction: row; align-items: stretch; }
  .col-item__thumb { width: 200px; height: 142px; aspect-ratio: auto; }
  .col-item__body { flex: 1; padding: 20px 30px; justify-content: center; }
}

/* =================================================================
   記事（コラム詳細）ページ
   ================================================================= */
.article { padding-top: 80px; }
.article__body { max-width: 840px; margin: 0 auto; padding: 0 20px; }
.article__head { padding-top: 60px; }
.article__title {
  font-size: 22px; letter-spacing: 0.66px; line-height: 1.4;
  font-weight: 500; text-align: center;
}
.article__eyecatch {
  margin-top: 50px; width: 100%; aspect-ratio: 335 / 287; background: #d9d9d9;
}
.article__eyecatch img { width: 100%; height: 100%; object-fit: cover; }
.article__meta {
  margin-top: 20px; display: flex; gap: 20px; align-items: center;
  font-size: 12px; letter-spacing: 0.36px;
}
.article__lead {
  margin-top: 50px; font-size: 14px; letter-spacing: 0.42px; line-height: 2;
}
.editor-box {
  margin-top: 50px; background: #f7f7f7; padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.editor-box__head { display: flex; gap: 5px; align-items: center; }
.editor-box__head img { width: 16px; height: 16px; }
.editor-box__head p { font-size: 12px; letter-spacing: 0.36px; line-height: 2; }
.editor-box__txt { font-size: 12px; letter-spacing: 0.36px; line-height: 2; }
.article__section { margin-top: 50px; }
.article__h2 {
  font-size: 24px; letter-spacing: -0.48px; line-height: 1.5; font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--primary);
  text-underline-offset: 4px; color: #000;
}
.article__p { margin-top: 20px; font-size: 14px; letter-spacing: 0.42px; line-height: 2; }
.article__h3 {
  margin-top: 30px; display: flex; gap: 7px; align-items: center;
  font-size: 20px; letter-spacing: -0.4px; line-height: 1.5; font-weight: 600; color: #000;
}
.article__h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

/* 記事内CTA */
.article-cta {
  margin: 60px auto 0; max-width: 1000px;
  background: linear-gradient(to top, #ffe5e9, #d6e6ff);
  padding: 60px 30px; display: flex; flex-direction: column;
  align-items: center; gap: 30px; text-align: center;
}
.article-cta p { font-size: 16px; letter-spacing: -0.32px; line-height: 1.6; }

/* 関連記事 */
.related { max-width: 1040px; margin: 0 auto; padding: 80px 20px; }
.related__ttl { font-size: 24px; letter-spacing: 0.72px; line-height: 1.6; font-weight: 500; }
.related__grid {
  margin-top: 40px; display: flex; flex-direction: column; gap: 30px;
}
.related-card__thumb { position: relative; width: 100%; aspect-ratio: 300 / 204; }
.related-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-card__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.related-card__meta { padding-top: 10px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.related-card__ttl { font-size: 14px; letter-spacing: 0.42px; line-height: 1.4; font-weight: 600; }

@media (min-width: 768px) {
  .article__head { padding-top: 120px; }
  .article__title { font-size: 32px; letter-spacing: 0.96px; }
  .article__eyecatch { aspect-ratio: 800 / 450; }
  .article-cta { padding: 69px 80px; }
  .article-cta p { white-space: nowrap; }
  .related__grid { flex-direction: row; justify-content: space-between; gap: 50px; }
  .related-card { width: 300px; }
}

/* =================================================================
   アニメーション（上品・洗練）
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  /* スクロール連動フェードアップ（JSで .reveal を付与） */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.16,.7,.3,1),
                transform .9s cubic-bezier(.16,.7,.3,1);
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* FV／ページ冒頭の読み込み演出 */
  @keyframes webreFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  @keyframes webreFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .fv__copy, .fv__lead, .fv .btn, .svc-fv__ttl, .cmp-fv__ttl, .col-fv {
    opacity: 0; animation: webreFadeUp 1s cubic-bezier(.16,.7,.3,1) both;
  }
  .fv__lead { animation-delay: .15s; }
  .fv .btn { animation-delay: .3s; }
  .fv__img, .svc-fv__img, .cmp-fv__banner {
    opacity: 0; animation: webreFadeIn 1.5s ease .1s both;
  }
}

/* ホバー演出（リンク・ボタンのみ） */
.btn, .header__cta, .modal__contact { transition: background-color .3s ease, transform .3s ease; }
.btn .arrow { transition: transform .3s ease; }
.btn:hover { background-color: #12516f; }
.btn:hover .arrow { transform: translateX(5px); }
.header__cta:hover, .modal__contact:hover { transform: translateY(-2px); }
.modal__contact:hover { background-color: #fff; }

.more, .header__nav a, .footer__nav a, .footer__links a, .modal__nav a { transition: opacity .25s ease; }
.more:hover, .header__nav a:hover, .footer__nav a:hover,
.footer__links a:hover, .modal__nav a:hover { opacity: .55; }

.hamburger span { transition: opacity .2s ease; }
.hamburger:hover span { opacity: .55; }

/* カード画像のゆるやかなズーム（リンクカードのみ） */
.column-card__thumb, .col-item__thumb, .related-card__thumb { overflow: hidden; }
.column-card__thumb img, .col-item__thumb img,
.related-card__thumb img, .svc-nav-card img {
  transition: transform .6s cubic-bezier(.16,.7,.3,1);
}
.column-card:hover .column-card__thumb img,
.col-item:hover .col-item__thumb img,
.related-card:hover .related-card__thumb img,
.svc-nav-card:hover img { transform: scale(1.06); }

.column-card, .col-item, .related-card { transition: opacity .25s ease; }
.column-card:hover, .col-item:hover, .related-card:hover { opacity: .92; }

/* =================================================================
   タブレット幅（768〜1239px）：横並びが窮屈な箇所を縦積みに
   ================================================================= */
@media (min-width: 768px) and (max-width: 1239px) {
  /* ヘッダー：ナビが入りきらないためハンバーガーに切り替え */
  .header__nav { display: none; }
  .header__menu-btn { display: block; }

  /* FV：横並びだと窮屈なため縦積みに */
  .fv { height: auto; }
  .fv__inner {
    flex-direction: column; justify-content: center;
    padding: 140px 40px 90px; gap: 50px;
  }
  .fv__img {
    width: 100%; max-width: 720px; height: 420px;
    align-self: center; flex-shrink: 0;
  }
  .fv__text {
    width: 100%; max-width: 600px;
    align-items: center; text-align: center;
  }
}

/* =================================================================
   サービス個別詳細ページ
   ================================================================= */
.svc-page-hero { padding: 130px 20px 0; text-align: center; }
.svc-page-hero__en {
  font-family: var(--serif-en); font-weight: 600; font-size: 13px;
  letter-spacing: 2px; color: var(--primary); text-transform: uppercase;
}
.svc-page-hero__ja {
  margin-top: 12px; font-size: 26px; letter-spacing: 0.78px;
  line-height: 1.4; font-weight: 500;
}
.svc-block--lead { padding-top: 50px; }

@media (min-width: 768px) {
  .svc-page-hero { padding-top: 160px; }
  .svc-page-hero__ja { font-size: 36px; letter-spacing: 1.08px; }
  .svc-block--lead { padding-top: 80px; }
}

/* =================================================================
   サービス詳細：お悩みセクション
   ================================================================= */
.svc-problem { padding-top: 60px; }
.svc-problem__ttl {
  text-align: center; font-size: 20px; letter-spacing: 0.6px;
  line-height: 1.5; font-weight: 600;
}
.svc-problem__list {
  margin-top: 30px; display: flex; flex-direction: column; gap: 16px;
}
.svc-problem-card {
  background: #fff; padding: 22px; border-top: 3px solid var(--primary);
  display: flex; gap: 14px; align-items: flex-start;
}
.svc-problem-card__no {
  font-family: var(--display-en); font-weight: 500; font-size: 24px;
  line-height: 1; color: var(--primary); flex-shrink: 0;
}
.svc-problem-card p { font-size: 14px; letter-spacing: 0.3px; line-height: 1.7; }

@media (min-width: 768px) {
  .svc-problem { padding-top: 110px; }
  .svc-problem__ttl { font-size: 26px; letter-spacing: 0.78px; }
  .svc-problem__list { flex-direction: row; gap: 24px; }
  .svc-problem-card { flex: 1; flex-direction: column; gap: 14px; padding: 30px 26px; }
}

/* =================================================================
   WordPress本文（the_content）用：エディタが出力する素のh2/h3/p等に
   記事用スタイルを適用（.article__h2 / __h3 / __p と同等の見た目）
   ================================================================= */
.article__content { margin-top: 50px; }
.article__content h2 {
  margin-top: 50px;
  font-size: 24px; letter-spacing: -0.48px; line-height: 1.5; font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--primary);
  text-underline-offset: 4px; color: #000;
}
.article__content h3 {
  margin-top: 30px; display: flex; gap: 7px; align-items: center;
  font-size: 20px; letter-spacing: -0.4px; line-height: 1.5; font-weight: 600; color: #000;
}
.article__content h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.article__content p { margin-top: 20px; font-size: 14px; letter-spacing: 0.42px; line-height: 2; }
.article__content ul,
.article__content ol { margin-top: 20px; padding-left: 1.4em; line-height: 2; font-size: 14px; }
.article__content ul { list-style: disc; }
.article__content ol { list-style: decimal; }
.article__content li { margin-top: 6px; }
.article__content img { margin-top: 30px; border-radius: 2px; }
.article__content a { color: var(--primary); text-decoration: underline; }
.article__content strong { font-weight: 600; }
