@charset "UTF-8";

/*
Theme Name: TKペイント
Description: TKペイント（愛知県半田市／塗装業）オリジナルテーマ
Version: 1.0
*/

/* このファイルは build-css.php が style.scss から生成しています。直接編集しないでください。 */

/* =====================================================================
   TKペイント  style.scss（ルート）

   ・このファイルは「設定 ＋ 読み込み」だけを持ちます
   ・実際のスタイルは各パーシャル（_◯◯.scss）に、ページ単位で分けています
   ・ブレイクポイント： sp 768px / tab 1024px / pc 1441px（min-width指定）
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. ブレイクポイント
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   2. カラー（実装指示書のデザイントークン）
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   3. フォント
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   4. 余白（左右のページ余白：sp / tab / pc）
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   5. mixin（ブレイクポイント）
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   6. mixin（左右余白をまとめて指定）
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   7. パーシャル読み込み
   --------------------------------------------------------------------- */
/* =====================================================================
   _common.scss ／ リセット・共通パーツ

   ・全ページで使う土台（body / 見出し / ボタン / 下層ヒーロー など）
   ===================================================================== */

/* ---------------------------------------------------------------------
   リセット
   --------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0c0708;
  color: #f3ebe8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

/* ---------------------------------------------------------------------
   フォント切り替え用のユーティリティ
   --------------------------------------------------------------------- */
.k {
  font-family: "Shippori Mincho", serif;
}

.c {
  font-family: "Cormorant Garamond", serif;
}

/* ---------------------------------------------------------------------
   スクロール発火アニメーション
   （JS で .on が付いたら表示される）
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .12s;
}

.d2 {
  transition-delay: .24s;
}

.d3 {
  transition-delay: .36s;
}

/* ---------------------------------------------------------------------
   ローディング

   サイトのトーン（生成りの面・明朝・細いワインの罫線）に合わせた静かな演出。
   ① 生成りの面
   ② ロゴが下からせり上がる（マスク＝ヒーローの見出しと同じ動き）
   ③ 細いワインの線が引かれ、英文が浮かぶ
   ④ そのままフェードアウト
   --------------------------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f3ebe8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .8s ease .15s, visibility .8s ease .15s;
}

/* 中央から外側へ、わずかに沈む陰影（単色べたを避ける） */
#loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(12, 7, 8, .07) 100%);
  pointer-events: none;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__in {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ロゴはマスクの中でせり上がる */
.loader__mask {
  overflow: hidden;
  padding: 4px 0;
}

.loader__logo {
  width: auto;
  height: 46px;
  object-fit: contain;
  transform: translateY(115%);
  animation: loaderRise 1s cubic-bezier(.16, 1, .3, 1) .25s forwards;
}

.loader__logo--txt {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 14vw, 96px);
  line-height: 1;
  color: #0c0708;
  height: auto;
}

.loader__logo--txt b {
  color: #7a1420;
  font-weight: 600;
}

@keyframes loaderRise {
  to {
  transform: none;
  }
}

/* 細いワインの罫線が左から引かれる */
.loader__line {
  width: 132px;
  height: 2px;
  margin-top: 20px;
  background: #7a1420;
  transform: scaleX(0);
  transform-origin: left center;
  animation: loaderLine .7s cubic-bezier(.65, 0, .2, 1) .95s forwards;
}

@keyframes loaderLine {
  to {
  transform: scaleX(1);
  }
}

/* 英文がふわりと */
.loader__en {
  margin-top: 14px;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .16em;
  color: #9c827e;
  opacity: 0;
  animation: loaderFade .8s ease 1.25s forwards;
}

@keyframes loaderFade {
  to {
  opacity: 1;
  }
}

/* ---------------------------------------------------------------------
   簡易ローディング（サイト内のページ移動）
   ロゴがふわっと出るだけ。線と英文は出さない。
   --------------------------------------------------------------------- */
#loader.is-simple .loader__logo {
  transform: none;
  opacity: 0;
  animation: loaderFade .4s ease .05s forwards;
}

#loader.is-simple .loader__line,
#loader.is-simple .loader__en {
  display: none;
}

/* 動きを抑える設定の端末では、完成状態で静止させる */
@media (prefers-reduced-motion: reduce) {
  .loader__logo,
  .loader__line,
  .loader__en {
  animation: none;
  transform: none;
  opacity: 1;
  }
}

/* ---------------------------------------------------------------------
   共通ボタン
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #7a1420;
  color: #f3ebe8;
  padding: 16px 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .06em;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color .4s;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #3a0a11;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.7, 0, .2, 1);
  z-index: 1;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-o {
  background: transparent;
  border: 1.5px solid #a8323a;
}

.btn-o::after {
  background: #7a1420;
}

.btn.is-disabled {
  opacity: .5;
  cursor: default;
}

.btn.is-disabled::after {
  display: none;
}

/* ---------------------------------------------------------------------
   セクション見出し（下層ページ共通）
   --------------------------------------------------------------------- */
.slabel {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: #a8323a;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.slabel::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #a8323a;
}

.slabel.dk {
  color: #7a1420;
}

.slabel.dk::before {
  background: #7a1420;
}

.sttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(21px, 5.8vw, 40px);
  line-height: 1.5;
}

.sttl .r {
  color: #a8323a;
}

.sttl.dk .r {
  color: #7a1420;
}

/* ---------------------------------------------------------------------
   下層ページ ヒーロー（全下層共通）
   --------------------------------------------------------------------- */
.page {
  padding-bottom: 0;
}

.phero {
  position: relative;
  height: 44vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.phero__ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #150c0d;
}

.phero__ph img {
  transform: scale(1.06);
  animation: kb 8s ease-out forwards;
}

@keyframes kb {
  to {
  transform: scale(1);
  }
}

/* 写真全体にフィルターはかけない。見出しが乗る下側だけを締める */
.phero__ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 7, 8, .85) 0%, rgba(12, 7, 8, .4) 34%, transparent 66%);
}

.phero__in {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 24px 34px;
}

.phero__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 13vw, 72px);
  color: #a8323a;
  line-height: .95;
}

.phero__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .1em;
  margin-top: 6px;
  color: #f3ebe8;
}

.phero__crumb {
  position: absolute;
  top: 76px;
  left: 24px;
  z-index: 3;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: #c98a86;
}

.phero__crumb span {
  color: #d9c9c6;
  opacity: .7;
}

/* ---------------------------------------------------------------------
   下層ページ 下部CTA
   --------------------------------------------------------------------- */
.page-cta {
  background: #0c0708;
  text-align: center;
  padding: 0 24px 76px;
}

.page-cta.on-paper {
  background: #f3ebe8;
}

/* ---------------------------------------------------------------------
   汎用固定ページ（プライバシーポリシー等）
   --------------------------------------------------------------------- */
.basic-content {
  background: #f3ebe8;
  color: #0c0708;
  padding: 70px 24px 80px;
}

.basic-content__in {
  max-width: 800px;
  font-size: 14px;
  line-height: 2.1;
  color: #4a3d3b;
}

.basic-content__in h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  color: #0c0708;
  margin: 36px 0 14px;
}

.basic-content__in h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #0c0708;
  margin: 28px 0 10px;
}

.basic-content__in p + p {
  margin-top: 1.2em;
}

.basic-content__in ul,
.basic-content__in ol {
  margin: 10px 0 10px 1.4em;
}

.basic-content__in li {
  margin-bottom: 4px;
}

.basic-content__in a {
  color: #7a1420;
  text-decoration: underline;
}

/* =====================================================================
   _header.scss ／ ヘッダー・ドロワーメニュー

   ・TOP はスクロール 60px 超で .solid（背景ぼかし）
   ・下層は最初から .solid
   ===================================================================== */

/* ---------------------------------------------------------------------
   ヘッダー本体
   --------------------------------------------------------------------- */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* ドロワー(940)より必ず上。下げるとハンバーガーがドロワーに覆われて閉じられなくなる */
  z-index: 960;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  /* ロゴ（黒文字＋赤三角）をそのままの色で見せるため、ヘッダーは生成り面 */
  background: rgba(243, 235, 232, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 7, 8, .08);
  transition: box-shadow .5s, padding .4s;
}

#hdr.solid {
  box-shadow: 0 2px 22px rgba(12, 7, 8, .16);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ---------------------------------------------------------------------
   ロゴ（画像未設定のときは CSS の簡易マーク＋文字）
   --------------------------------------------------------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: .04em;
  color: #0c0708;
  font-weight: 600;
}

/* ロゴ画像は支給されたまま無加工で表示する（色の変更は禁止） */
.logo__img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.logo .mk {
  width: 26px;
  height: 26px;
  position: relative;
  flex: 0 0 auto;
}

.logo .mk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0c0708;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 70% 100%, 50% 42%, 30% 100%);
}

.logo .mk::after {
  content: "";
  position: absolute;
  left: 32%;
  bottom: 0;
  width: 36%;
  height: 42%;
  background: #7a1420;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* ---------------------------------------------------------------------
   ヘッダー右側（PCナビ ＋ 電話番号 ＋ ハンバーガー）
   --------------------------------------------------------------------- */
.hdr__act {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hdr__tel {
  display: none;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #7a1420;
}

/* ---------------------------------------------------------------------
   PCグローバルナビ（1024px以上でハンバーガーの代わりに表示）
   --------------------------------------------------------------------- */
.gnav {
  display: none;
}

.gnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  position: relative;
  padding-bottom: 4px;
}

.gnav a .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  color: #0c0708;
  transition: color .3s;
}

.gnav a .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .06em;
  color: #7a1420;
  opacity: .75;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #7a1420;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.7, 0, .2, 1);
}

.gnav a:hover::after,
.gnav a.current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gnav a.current .ja {
  color: #7a1420;
}

.gnav__cta {
  padding: 10px 16px;
  background: #7a1420;
  border-radius: 3px;
  transition: background .3s;
}

.gnav__cta::after {
  display: none;
}

.gnav__cta:hover {
  background: #3a0a11;
}

/* ワイン地のボタン内は白で統一。
   ※ .gnav a .ja（黒）の方が詳細度が高いので、a.gnav__cta まで書いて上書きする */
.gnav a.gnav__cta .ja,
.gnav a.gnav__cta:hover .ja {
  color: #fff;
}

.gnav a.gnav__cta .en {
  color: rgba(255, 255, 255, .85);
  opacity: 1;
}

.navbtn {
  width: 46px;
  height: 46px;
  background: #7a1420;
  border: none;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 950;
  transition: .3s;
}

.navbtn span {
  width: 20px;
  height: 2px;
  background: #f3ebe8;
  border-radius: 2px;
  transition: .3s;
}

.navbtn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbtn.open span:nth-child(2) {
  opacity: 0;
}

.navbtn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------------------
   ドロワーメニュー（円形にひらく）
   --------------------------------------------------------------------- */
#drawer {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: #150c0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  clip-path: circle(0% at calc(100% - 38px) 38px);
  transition: clip-path .75s cubic-bezier(.76, 0, .24, 1);
  overflow-y: auto;
}

#drawer.open {
  clip-path: circle(150% at calc(100% - 38px) 38px);
}

#drawer a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(243, 235, 232, .14);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 27px;
  color: #f3ebe8;
  opacity: 0;
  transform: translateX(-18px);
  transition: .5s;
  cursor: pointer;
}

#drawer.open a {
  opacity: 1;
  transform: none;
}

#drawer.open a:nth-child(1) {
  transition-delay: .2s;
}

#drawer.open a:nth-child(2) {
  transition-delay: .27s;
}

#drawer.open a:nth-child(3) {
  transition-delay: .34s;
}

#drawer.open a:nth-child(4) {
  transition-delay: .41s;
}

#drawer.open a:nth-child(5) {
  transition-delay: .48s;
}

#drawer.open a:nth-child(6) {
  transition-delay: .55s;
}

#drawer a .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: #c98a86;
  font-weight: 500;
}

/* ---------------------------------------------------------------------
   ドロワー内の電話番号
   --------------------------------------------------------------------- */
.drawer__tel {
  margin-top: 28px;
  opacity: 0;
  transform: translateX(-18px);
  transition: .5s;
}

#drawer.open .drawer__tel {
  opacity: 1;
  transform: none;
  transition-delay: .62s;
}

.drawer__tel a {
  display: inline-block;
  padding: 0;
  border: none;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  color: #a8323a;
  opacity: 1;
  transform: none;
}

.drawer__tel span {
  display: block;
  font-size: 12px;
  color: #9c827e;
  letter-spacing: .04em;
}

/* ---------------------------------------------------------------------
   PCではハンバーガー・ドロワーを出さない（グローバルナビに切り替わる）
   ※ #drawer の定義より後ろに置くこと（同じ詳細度なので後勝ち）
   --------------------------------------------------------------------- */
/* =====================================================================
   _footer.scss ／ フッター・スマホ追従バー
   ===================================================================== */

/* ---------------------------------------------------------------------
   フッター本体
   --------------------------------------------------------------------- */
footer {
  /* ロゴ（黒文字＋赤三角）をそのままの色で見せるため、フッターは生成り面 */
  background: #f3ebe8;
  color: #0c0708;
  border-top: 3px solid #7a1420;
  padding: 56px 24px 90px;
}

.ft__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  color: #0c0708;
}

/* ロゴ画像は支給されたまま無加工で表示する（色の変更は禁止） */
.ft__logo-img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.ft__logo .mk {
  width: 26px;
  height: 26px;
  position: relative;
  flex: 0 0 auto;
}

.ft__logo .mk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0c0708;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 70% 100%, 50% 42%, 30% 100%);
}

.ft__logo .mk::after {
  content: "";
  position: absolute;
  left: 32%;
  bottom: 0;
  width: 36%;
  height: 42%;
  background: #7a1420;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* ---------------------------------------------------------------------
   住所・連絡先
   --------------------------------------------------------------------- */
.ft__addr {
  font-size: 12px;
  color: #4a3d3b;
  line-height: 2;
  margin-top: 16px;
}

.ft__addr a {
  color: #7a1420;
}

/* ---------------------------------------------------------------------
   フッターナビ
   --------------------------------------------------------------------- */
.ft__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 7, 8, .14);
}

.ft__nav a {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  color: #0c0708;
  transition: color .3s;
}

.ft__nav a:hover {
  color: #7a1420;
}

/* ---------------------------------------------------------------------
   コピーライト
   --------------------------------------------------------------------- */
.ft__copy {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: #8a716d;
  margin-top: 26px;
}

/* ---------------------------------------------------------------------
   スマホ追従バー（電話 / お問い合わせ）
   --------------------------------------------------------------------- */
.fixbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 930;
  display: flex;
  border-top: 1px solid #7a1420;
  background: rgba(21, 12, 13, .95);
  backdrop-filter: blur(8px);
}

.fixbar a {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  color: #f3ebe8;
  line-height: 1.5;
}

.fixbar a span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 10px;
  color: #c98a86;
}

.fixbar__mail {
  background: #7a1420;
}

/* =====================================================================
   _top.scss ／ TOPページ（front-page.php）

   セクション順：
   HERO → FLOW → ABOUT → WORKS → SERVICE → STRENGTH → RECRUIT → CONTACT
   ===================================================================== */

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  /* スマホは写真の見せ場を上に取りたいので、文言を下寄りに置く */
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #150c0d;
}

/* PHOTO:hero → 職人作業・現場写真（PC=横長 / スマホ=縦長 を picture で出し分け）
   最大3枚をクロスフェードで自動切替。JSは footer.php 内。 */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  transform: scale(1.08);
}

/* 表示中のスライドだけ Ken Burns（ゆっくり寄る）を効かせる */
.hero__slide.is-active img {
  animation: kb 8s ease-out forwards;
}

/* 写真の上にフィルターは一切かけない。
   文字の可読性は text-shadow（下の .hero__ttl など）で確保する。 */
.hero__in {
  position: relative;
  z-index: 5;
  width: 100%;
  /* 下端の Scroll 表示に被らない位置まで下げる */
  padding: 0 24px 15vh;
}

.hero__tag {
  display: inline-flex;
  text-shadow: 0 1px 10px rgba(12, 7, 8, .9);
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .14em;
  color: #c98a86;
  margin-bottom: 18px;
  opacity: 0;
  animation: fi .9s 1s forwards;
}

.hero__tag::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: #a8323a;
}

.hero__eng {
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 2px 14px rgba(12, 7, 8, .85);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 9vw, 58px);
  color: #a8323a;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0;
  animation: fi .9s 1.15s forwards;
}

.hero__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(12, 7, 8, .85), 0 1px 4px rgba(12, 7, 8, .7);
  font-size: clamp(40px, 13vw, 88px);
  line-height: 1.26;
  letter-spacing: .06em;
  color: #f3ebe8;
}

.hero__ttl .line {
  display: block;
  overflow: hidden;
  padding: 2px 0;
}

.hero__ttl .line i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero__ttl .l1 i {
  animation-delay: 1.3s;
}

.hero__ttl .l2 i {
  animation-delay: 1.5s;
}

.hero__ttl .r {
  color: #a8323a;
}

.hero__sub {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(12, 7, 8, .9);
  font-size: 14px;
  color: #d9c9c6;
  letter-spacing: .05em;
  margin-top: 20px;
  opacity: 0;
  animation: fi .9s 1.9s forwards;
}

@keyframes rise {
  to {
  transform: none;
  }
}

@keyframes fi {
  to {
  opacity: 1;
  }
}

.hero__side {
  position: absolute;
  text-shadow: 0 1px 10px rgba(12, 7, 8, .9);
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .16em;
  color: #c98a86;
  opacity: .75;
  z-index: 5;
}

.hero__scr {
  position: absolute;
  text-shadow: 0 1px 10px rgba(12, 7, 8, .9);
  left: 24px;
  bottom: 24px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .16em;
  color: #c98a86;
}

.hero__scr::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #a8323a;
  animation: scl 1.9s infinite;
}

@keyframes scl {
  0% {
  transform: scaleX(0);
  transform-origin: left;
  }
  50% {
  transform: scaleX(1);
  transform-origin: left;
  }
  51% {
  transform-origin: right;
  }
  100% {
  transform: scaleX(0);
  transform-origin: right;
  }
}

/* =====================================================================
   2. FLOW（流れるライン・CSSのみで無限ループ）
   ===================================================================== */
.flow {
  background: #7a1420;
  color: #f3ebe8;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.flow__track {
  display: inline-flex;
  gap: 34px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  letter-spacing: .04em;
  animation: mv 26s linear infinite;
}

.flow__track span {
  display: inline-flex;
  gap: 34px;
  align-items: center;
}

@keyframes mv {
  to {
  transform: translateX(-50%);
  }
}

/* =====================================================================
   3. ABOUT（生成り面）
   ===================================================================== */
.about {
  position: relative;
  background: #f3ebe8;
  color: #0c0708;
  padding: 84px 24px 78px;
}

.about__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: #7a1420;
  margin-bottom: 26px;
}

.about__label::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: #7a1420;
}

.about__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.2vw, 46px);
  line-height: 1.5;
  letter-spacing: .02em;
  color: #0c0708;
}

.about__ttl .r {
  color: #7a1420;
}

.about__body {
  margin-top: 24px;
  font-size: 14px;
  color: #4a3d3b;
  line-height: 2.15;
  max-width: 560px;
}

.about__body p + p {
  margin-top: 1.2em;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.stat .n {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(46px, 14vw, 72px);
  line-height: .9;
  color: #7a1420;
}

.stat .n small {
  font-family: "Shippori Mincho", serif;
  font-size: .3em;
  color: #a8323a;
  margin-left: 5px;
}

.stat .l {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  color: #8a716d;
  letter-spacing: .06em;
  margin-top: 8px;
}

/* =====================================================================
   4. WORKS（横スクロール・scroll-snap）
   ===================================================================== */
.works {
  padding: 14px 0 84px;
}

.works__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding: 0 24px;
}

.works__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(46px, 15vw, 84px);
  line-height: .9;
  color: #f3ebe8;
}

.works__en small {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .16em;
  color: #a8323a;
  margin-top: 8px;
}

/* スワイプの案内。矢印が右へ繰り返し動いて、横に続くことを示す */
.works__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: #c98a86;
  border: 1px solid rgba(243, 235, 232, .14);
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

.works__nav::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: #a8323a;
  position: relative;
  animation: swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint {
  0%,
  100% {
  transform: translateX(0);
  opacity: .5;
  }
  50% {
  transform: translateX(7px);
  opacity: 1;
  }
}

.works__scr {
  display: flex;
  /* スマホでは左右の余白と同じ幅をカード間に取る。
  こうすると次のカードが画面の外に出て、1枚だけが見える状態になる */
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  padding: 0 24px 18px;
  -webkit-overflow-scrolling: touch;
}

.works__scr::-webkit-scrollbar {
  height: 0;
}

/* スマホは画面にちょうど1枚。
   scroll-snap-stop: always で、勢いよくスワイプしても1枚ずつしか送られない */
.wc {
  /* 100% はスクローラーの「内側の幅」（左右の padding を除いた幅）。
  ここで余白を引くとカードが小さくなり、2枚目が覗いてしまうので引かない */
  flex: 0 0 100%;
  max-width: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}

/* スマホ：写真＋文字の「紹介カード」。タブレット以上：写真に重ねる従来型 */
.wc {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(12, 7, 8, .8);
}

.wc__ph {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #1a0e0f;
}

/* PHOTO:works → 施工写真（屋根／外壁／before-after 等） */
.wc__ph img {
  filter: brightness(.9) contrast(1.02);
  transition: .7s;
}

.wc:hover .wc__ph img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* 文字を重ねるタブレット以上でだけ、下側を締める */
.wc__no {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: #f3ebe8;
  opacity: .9;
}

.wc__meta {
  padding: 14px 16px 16px;
  color: #0c0708;
}

.wc__meta .cat {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .06em;
  color: #f3ebe8;
  background: #7a1420;
  padding: 2px 12px;
  border-radius: 20px;
}

.wc__meta .t {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #0c0708;
  margin-top: 8px;
}

.wc__meta .p {
  display: block;
  font-size: 12.5px;
  color: #8a716d;
  margin-top: 4px;
}

/* 「詳しく見る →」はスマホのカード表示のときだけ */
.wc__meta .more {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(12, 7, 8, .14);
  font-style: italic;
  font-size: 13px;
  color: #7a1420;
}

/* ---- スマホ用インジケーター（何枚あるか・いま何枚目か） ---- */
.works__ind {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
  padding: 0 24px;
}

.works__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.works__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(243, 235, 232, .28);
  cursor: pointer;
  transition: width .3s, background .3s;
}

.works__dots button.active {
  width: 22px;
  border-radius: 20px;
  background: #a8323a;
}

.works__count {
  font-style: italic;
  font-size: 13px;
  letter-spacing: .08em;
  color: #9c827e;
}

.works__count span {
  color: #f3ebe8;
  font-size: 15px;
}

/* =====================================================================
   5. SERVICE（深ワイングラデ面）
   ===================================================================== */
.svc {
  position: relative;
  background: linear-gradient(165deg, #3a0a11 0%, #28090e 60%, #150c0d 100%);
  padding: 80px 24px 86px;
}

.svc__head {
  margin-bottom: 36px;
}

.svc__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: #a8323a;
  margin-bottom: 16px;
}

.svc__label::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: #a8323a;
}

.svc__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(21px, 5.8vw, 42px);
  line-height: 1.45;
}

.svc__ttl .r {
  color: #a8323a;
}

.svc__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
}

.sc__ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #150c0d;
}

/* PHOTO:service0x → 各工種の施工写真 */
/* 写真全体にフィルターはかけず、文字が乗る左下だけを軽く締める */
.sc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 7, 8, .88) 0%, rgba(12, 7, 8, .45) 38%, transparent 72%);
  z-index: 1;
}

.sc__body {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.sc__no {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: #c98a86;
}

.sc__t {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(21px, 5.6vw, 28px);
  line-height: 1.35;
  margin-top: 4px;
}

.sc__d {
  font-size: 13px;
  color: #d9c9c6;
  line-height: 1.85;
  margin-top: 10px;
  max-width: 440px;
}

.sc__tag {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: #f3ebe8;
  border: 1px solid rgba(243, 235, 232, .14);
  padding: 4px 14px;
  border-radius: 20px;
}

.sc__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* =====================================================================
   6. STRENGTH
   ===================================================================== */
.stg {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
}

.stg__ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #150c0d;
}

/* PHOTO:strength → 職人の手元アップ */
/* 写真はそのまま。文字が乗る左側だけ軽く締める */
.stg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 7, 8, .82) 0%, rgba(12, 7, 8, .45) 45%, transparent 80%);
  z-index: 1;
}

.stg__in {
  position: relative;
  z-index: 2;
}

.stg__label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: #c98a86;
  margin-bottom: 18px;
}

.stg__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.2vw, 50px);
  line-height: 1.45;
}

.stg__ttl .r {
  color: #a8323a;
}

.stg__q {
  display: inline-flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 16px 24px;
  background: rgba(12, 7, 8, .55);
  backdrop-filter: blur(3px);
  border-left: 3px solid #a8323a;
  border-radius: 0 3px 3px 0;
}

.stg__q .kk {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #c98a86;
}

.stg__q .v {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 21px;
  margin-top: 2px;
}

/* =====================================================================
   7. RECRUIT（黒面）
   ===================================================================== */
.rec {
  position: relative;
  overflow: hidden;
  padding: 82px 24px 88px;
}

.rec__en {
  position: absolute;
  left: 12px;
  top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(70px, 24vw, 160px);
  color: rgba(168, 50, 58, .09);
  line-height: .8;
  pointer-events: none;
}

.rec__label {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: #a8323a;
  margin-bottom: 18px;
}

.rec__ttl {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.4vw, 54px);
  line-height: 1.45;
}

.rec__ttl .r {
  color: #a8323a;
}

.rec__lead {
  position: relative;
  margin-top: 20px;
  font-size: 14px;
  color: #d9c9c6;
  line-height: 2;
  max-width: 480px;
}

/* スマホは3列グリッドで固定。
   横並び（flex）だと画面幅によって「4つ＋1つ」になって最終行が寂しくなるため、
   幅に関係なく必ず 3つ＋2つ で揃うようにする。 */
.rec__tags {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 22px;
}

.rec__tags span {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  border: 1px solid rgba(243, 235, 232, .14);
  padding: 7px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.rec .btn {
  margin-top: 30px;
}

/* =====================================================================
   8. CONTACT（生成り面）
   ===================================================================== */
.ct {
  background: #f3ebe8;
  color: #0c0708;
  padding: 60px 24px 36px;
}

.ct__label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .1em;
  color: #7a1420;
  margin-bottom: 10px;
}

.ct__ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.4vw, 50px);
  line-height: 1.45;
  letter-spacing: .01em;
  color: #0c0708;
}

.ct__ttl .r {
  color: #7a1420;
}

.ct__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.ctc {
  border: 1px solid rgba(12, 7, 8, .14);
  padding: 20px 18px;
  border-radius: 3px;
  background: #fff;
}

.ctc .kk {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #7a1420;
}

.ctc .l {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  color: #0c0708;
  margin-top: 4px;
}

.ctc .tel {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: .01em;
  color: #7a1420;
  margin-top: 6px;
  line-height: 1.2;
}

.ctc .n {
  font-size: 11.5px;
  color: #8a716d;
  margin-top: 4px;
}

.ctc .btn {
  margin-top: 14px;
  padding: 13px 26px;
  font-size: 15px;
}

/* =====================================================================
   _business.scss ／ 事業内容（page-business.php）

   構成：リード → 3事業カード → ご依頼の流れ
   ===================================================================== */

/* ---------------------------------------------------------------------
   リード（生成り面）
   --------------------------------------------------------------------- */
.biz-intro {
  background: #f3ebe8;
  color: #0c0708;
  padding: 70px 24px 20px;
}

.biz-intro .lead {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 5.6vw, 30px);
  line-height: 1.7;
  margin-top: 14px;
}

.biz-intro .lead .r {
  color: #7a1420;
}

.biz-intro .txt {
  margin-top: 18px;
  font-size: 14px;
  color: #4a3d3b;
  line-height: 2.1;
  max-width: 600px;
}

/* ---------------------------------------------------------------------
   3事業カード
   --------------------------------------------------------------------- */
.biz-list {
  background: #f3ebe8;
  color: #0c0708;
  padding: 30px 24px 76px;
}

.bz {
  margin-bottom: 22px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px -20px rgba(58, 10, 17, .4);
}

.bz__ph {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #d9c9c6;
}

/* PHOTO:biz0x → 各事業の施工写真（色は乗せず、そのまま見せる） */
.bz__ph img {
  filter: contrast(1.02);
  transition: .6s;
}

.bz:hover .bz__ph img {
  transform: scale(1.05);
}

.bz__ph .no {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

/* 写真の上に重ねる英字ラベル（Residential など）は、
   写真によって読めなくなるため廃止 */
.bz__body {
  padding: 24px;
}

.bz__t {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #0c0708;
}

.bz__t .r {
  color: #7a1420;
}

.bz__d {
  font-size: 13.5px;
  color: #4a3d3b;
  line-height: 1.95;
  margin-top: 12px;
}

.bz__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.bz__tags span {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  color: #7a1420;
  border: 1px solid rgba(122, 20, 32, .3);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------------------------------------------------------------------
   ご依頼の流れ（黒面・縦タイムライン）
   --------------------------------------------------------------------- */
.biz-flow {
  background: #0c0708;
  padding: 72px 24px 80px;
}

.biz-flow__ttl {
  margin-bottom: 34px;
}

.biz-flow .fl {
  position: relative;
  padding-left: 34px;
  padding-bottom: 30px;
  border-left: 1px solid rgba(243, 235, 232, .14);
}

.biz-flow .fl:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.biz-flow .fl::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #a8323a;
}

.biz-flow .fl .no {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #c98a86;
}

.biz-flow .fl .t {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  margin-top: 2px;
}

.biz-flow .fl .d {
  font-size: 13px;
  color: #d9c9c6;
  line-height: 1.85;
  margin-top: 6px;
}

/* =====================================================================
   _works.scss ／ 施工事例（page-works.php）

   構成：カテゴリ絞り込みボタン → グリッド（sp1列 / tab2列 / pc3列）
   ===================================================================== */

/* ---------------------------------------------------------------------
   カテゴリ絞り込み
   --------------------------------------------------------------------- */
/* スマホは3列グリッドで固定。
   横並びだと画面幅によって「4つ＋1つ」になり最終行が寂しくなるため、
   幅に関係なく 3つ＋2つ で列が揃うようにする。 */
.wk-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #0c0708;
  padding: 30px 24px 10px;
}

.wk-filter button {
  font-family: "Shippori Mincho", serif;
  font-size: 12.5px;
  color: #d9c9c6;
  background: none;
  border: 1px solid rgba(243, 235, 232, .14);
  padding: 9px 6px;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: .3s;
}

.wk-filter button:hover {
  border-color: #a8323a;
  color: #f3ebe8;
}

.wk-filter button.active {
  background: #7a1420;
  color: #fff;
  border-color: #7a1420;
}

/* ---------------------------------------------------------------------
   事例グリッド
   --------------------------------------------------------------------- */
.wk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: #0c0708;
  padding: 20px 24px 76px;
}

.wk {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #150c0d;
  cursor: pointer;
}

/* PHOTO:wk0x → 施工事例写真 */
.wk img {
  transition: .6s;
}

.wk:hover img {
  transform: scale(1.06);
}

.wk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(12, 7, 8, .9));
}

.wk__cat {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: #c98a86;
  background: rgba(12, 7, 8, .5);
  padding: 3px 12px;
  border-radius: 20px;
}

.wk__meta {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
}

.wk__meta .t {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.wk__meta .p {
  font-size: 12px;
  color: #d9c9c6;
  margin-top: 2px;
}

/* =====================================================================
   施工事例 詳細（single-works.php）
   ===================================================================== */
.wks {
  background: #f3ebe8;
  color: #0c0708;
  padding: 60px 24px 76px;
}

/* 施工データ表 */
.wks__data {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin: 0 auto;
}

.wks__data th,
.wks__data td {
  text-align: left;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(12, 7, 8, .14);
  font-size: 14px;
  vertical-align: top;
}

.wks__data th {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  color: #7a1420;
  width: 30%;
  white-space: nowrap;
}

.wks__data td {
  color: #4a3d3b;
}

/* コメント */
.wks__comment {
  max-width: 640px;
  margin: 30px auto 0;
  font-size: 14px;
  line-height: 2.1;
  color: #4a3d3b;
}

.wks__comment p + p {
  margin-top: 1.2em;
}

/* 本文に画像が残っていても大きくなりすぎないように */
.wks__comment img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 14px 0;
}

/* 写真ギャラリー（すべて同じサイズの正方形で並ぶ）
   スマホ3列 / PC4列。1枚が大きくなりすぎないよう max-width も控えめに */
.wks__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 680px;
  margin: 40px auto 0;
}

.wks__item {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 3px;
  background: #d9c9c6;
  border: none;
  padding: 0;
  cursor: pointer;
}

.wks__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.wks__item:hover img {
  transform: scale(1.05);
}

/* 拡大表示（ライトボックス） */
.wks-lb {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 7, 8, .9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.wks-lb.open {
  opacity: 1;
  visibility: visible;
}

/* 原寸まで（画面に収まらなければ画面いっぱいに縮小）で表示 */
.wks-lb__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .8);
  transform: scale(.96);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.wks-lb.open .wks-lb__img {
  transform: scale(1);
}

.wks-lb__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #f3ebe8;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
  transition: opacity .3s;
}

.wks-lb__close:hover {
  opacity: 1;
}

/* =====================================================================
   _company.scss ／ 会社概要（page-company.php）

   構成：代表メッセージ（生成り面）→ 会社概要テーブル（黒面）→ 地図
   ===================================================================== */

/* ---------------------------------------------------------------------
   代表メッセージ
   --------------------------------------------------------------------- */
.cmp-msg {
  position: relative;
  background: #f3ebe8;
  color: #0c0708;
  padding: 72px 24px 68px;
}

.cmp-msg .en {
  position: absolute;
  right: 16px;
  top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(44px, 15vw, 90px);
  color: rgba(122, 20, 32, .08);
  line-height: .8;
  pointer-events: none;
}

.cmp-msg .ttl {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.4vw, 34px);
  line-height: 1.6;
  margin-top: 14px;
}

.cmp-msg .ttl .r {
  color: #7a1420;
}

.cmp-msg .txt {
  position: relative;
  margin-top: 22px;
  font-size: 14px;
  color: #4a3d3b;
  line-height: 2.15;
  max-width: 600px;
}

.cmp-msg .txt p + p {
  margin-top: 1.2em;
}

.cmp-msg .sign {
  position: relative;
  margin-top: 26px;
  font-family: "Shippori Mincho", serif;
}

.cmp-msg .sign .r {
  font-size: 12px;
  color: #9c827e;
}

.cmp-msg .sign .n {
  font-size: 20px;
  font-weight: 700;
  color: #0c0708;
  margin-top: 2px;
}

/* ---------------------------------------------------------------------
   会社概要テーブル
   --------------------------------------------------------------------- */
.cmp-table {
  background: #0c0708;
  padding: 66px 24px 78px;
}

.cmp-table__ttl {
  margin-bottom: 24px;
}

.cmp-table table {
  width: 100%;
  border-collapse: collapse;
}

.cmp-table th,
.cmp-table td {
  text-align: left;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(243, 235, 232, .14);
  font-size: 14px;
  vertical-align: top;
}

.cmp-table th {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: #c98a86;
  width: 34%;
}

.cmp-table td {
  color: #d9c9c6;
}

/* ---------------------------------------------------------------------
   地図（Google Map 埋込）
   --------------------------------------------------------------------- */
/* 画面幅にかかわらず高さは固定。
   aspect-ratio にすると、PC幅では高さが800px近くまで伸びてしまう。 */
.cmp-map {
  position: relative;
  height: 240px;
  margin-top: 30px;
  background: #1a0e0f;
  border: 1px solid rgba(243, 235, 232, .14);
  border-radius: 4px;
  overflow: hidden;
}

.cmp-map:not(.has-map)::after {
  content: "MAP — Google Map 埋込予定";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: #9c827e;
}

.cmp-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =====================================================================
   _recruit.scss ／ 採用情報（page-recruit.php）

   構成：メッセージ（ワイン面）→ 働くPoint → 募集要項 → 応募CTA
   ===================================================================== */

/* ---------------------------------------------------------------------
   メッセージ
   --------------------------------------------------------------------- */
.rc-msg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #3a0a11, #28090e 60%, #150c0d);
  padding: 70px 24px 60px;
}

.rc-msg .en {
  position: absolute;
  left: 10px;
  bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(56px, 20vw, 140px);
  color: rgba(243, 235, 232, .05);
  line-height: .7;
  pointer-events: none;
}

.rc-msg .ttl {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.4vw, 46px);
  line-height: 1.5;
}

.rc-msg .ttl .r {
  color: #c98a86;
}

.rc-msg .txt {
  position: relative;
  margin-top: 20px;
  font-size: 14px;
  color: #d9c9c6;
  line-height: 2.1;
  max-width: 540px;
}

/* ---------------------------------------------------------------------
   働くPoint
   --------------------------------------------------------------------- */
.rc-point {
  background: #0c0708;
  padding: 64px 24px 40px;
}

.rc-point__ttl {
  margin-bottom: 22px;
}

.rc-point .pt {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 235, 232, .14);
}

.rc-point .pt:first-of-type {
  border-top: 1px solid rgba(243, 235, 232, .14);
}

.rc-point .pt .no {
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: #a8323a;
}

.rc-point .pt .t {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
}

.rc-point .pt .d {
  font-size: 13px;
  color: #d9c9c6;
  line-height: 1.85;
  margin-top: 6px;
}

/* ---------------------------------------------------------------------
   募集要項
   --------------------------------------------------------------------- */
.rc-table {
  background: #0c0708;
  padding: 20px 24px 72px;
}

.rc-table h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid #a8323a;
}

.rc-table table {
  width: 100%;
  border-collapse: collapse;
}

.rc-table th,
.rc-table td {
  text-align: left;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(243, 235, 232, .14);
  font-size: 14px;
  vertical-align: top;
}

.rc-table th {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  color: #c98a86;
  width: 32%;
}

.rc-table td {
  color: #d9c9c6;
}

/* ---------------------------------------------------------------------
   応募CTA
   --------------------------------------------------------------------- */
.rc-cta {
  background: #0c0708;
  text-align: center;
  padding: 0 24px 76px;
}

/* =====================================================================
   _contact.scss ／ お問い合わせ（入力・確認・完了）

   構成：リード＋電話カード（生成り面）→ フォーム
   ※フォーム本体は Contact Form 7 の出力にも当たるようにしています
   ===================================================================== */

/* ---------------------------------------------------------------------
   リード＋電話カード
   --------------------------------------------------------------------- */
.ct-wrap {
  background: #f3ebe8;
  color: #0c0708;
  padding: 70px 24px 40px;
}

.ct-wrap .lead {
  margin-top: 14px;
  font-size: 14px;
  color: #4a3d3b;
  line-height: 2.1;
  max-width: 560px;
}

.ct-tel {
  margin-top: 30px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(12, 7, 8, .14);
  border-radius: 4px;
  text-align: center;
}

.ct-tel .k {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: #7a1420;
}

.ct-tel .num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #7a1420;
  margin-top: 6px;
}

.ct-tel .n {
  font-size: 12px;
  color: #9c827e;
  margin-top: 8px;
}

/* ---------------------------------------------------------------------
   フォーム
   --------------------------------------------------------------------- */
.ct-form {
  background: #f3ebe8;
  color: #0c0708;
  padding: 20px 24px 80px;
}

.ct-form .row {
  margin-bottom: 18px;
}

.ct-form label {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  color: #0c0708;
  margin-bottom: 7px;
}

.ct-form label .req {
  color: #7a1420;
  font-size: 11px;
  margin-left: 6px;
}

.ct-form input[type="text"],
.ct-form input[type="tel"],
.ct-form input[type="email"],
.ct-form select,
.ct-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(12, 7, 8, .14);
  border-radius: 3px;
  padding: 13px 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  color: #0c0708;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  outline: none;
  border-color: #7a1420;
}

.ct-form textarea {
  min-height: 130px;
  resize: vertical;
}

.ct-form .submit {
  text-align: center;
  margin-top: 26px;
}

.ct-form .priv {
  font-size: 12px;
  color: #9c827e;
  text-align: center;
  line-height: 1.8;
  margin-top: 22px;
}

.ct-form .priv a {
  color: #7a1420;
  text-decoration: underline;
}

.ct-form__note {
  font-size: 12px;
  color: #9c827e;
  line-height: 1.9;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px dashed rgba(12, 7, 8, .14);
  border-radius: 3px;
}

/* ---------------------------------------------------------------------
   Contact Form 7 本体（実フォームのマークアップに対応）

   入力画面のフォーム構造：
     <label> 氏名<span class="red">必須</span> [text*] </label>
     <label class="policy"> [checkbox* policy] </label>
     [submit] [multistep]
   --------------------------------------------------------------------- */
.ct-form .wpcf7 label {
  display: block;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 13px;
  color: #0c0708;
  letter-spacing: .04em;
}

.ct-form .wpcf7 label input,
.ct-form .wpcf7 label textarea,
.ct-form .wpcf7 label select {
  margin-top: 8px;
}

/* 必須・任意バッジ */
.ct-form .wpcf7 .red,
.ct-form .wpcf7 .blue {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.7;
  vertical-align: 2px;
  color: #fff;
}

.ct-form .wpcf7 .red {
  background: #7a1420;
}

.ct-form .wpcf7 .blue {
  background: #9c827e;
}

/* プライバシーポリシー同意のチェックボックス */
.ct-form .wpcf7 label.policy {
  margin: 28px 0 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(12, 7, 8, .14);
  border-radius: 3px;
  text-align: center;
}

.ct-form .wpcf7 .wpcf7-list-item {
  margin: 0;
}

.ct-form .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.ct-form .wpcf7 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #7a1420;
  cursor: pointer;
}

/* 送信・戻るボタン（同じ行に並べる） */
.ct-form .wpcf7-form p:has(input[type="submit"]) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.ct-form .wpcf7-previous {
  background: transparent;
  border: 1.5px solid #7a1420;
  color: #7a1420;
}

.ct-form .wpcf7-previous:hover {
  background: #7a1420;
  color: #f3ebe8;
}

/* ---------------------------------------------------------------------
   確認画面（[multiform] で入力値を表示）
   --------------------------------------------------------------------- */
.ct-form--confirm .wpcf7 label {
  margin-bottom: 0;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(12, 7, 8, .14);
  font-size: 13px;
  color: #9c827e;
  line-height: 2.2;
}

/* 入力値をタグで囲った場合（<span class="v">[multiform xxx]</span>）はより見やすく */
.ct-form--confirm .wpcf7 label .v {
  display: block;
  margin-top: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0c0708;
  line-height: 1.9;
}

/* ---------------------------------------------------------------------
   Contact Form 7 の共通調整
   --------------------------------------------------------------------- */
.ct-form .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-color: #7a1420;
  font-size: 13px;
  color: #0c0708;
}

.ct-form .wpcf7-not-valid-tip {
  color: #7a1420;
  font-size: 12px;
  margin-top: 5px;
}

.ct-form .wpcf7-list-item {
  margin: 0 16px 0 0;
}

.ct-form input[type="submit"],
.ct-form button[type="submit"],
.ct-form input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #7a1420;
  color: #f3ebe8;
  padding: 16px 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .06em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .4s;
  width: auto;
}

.ct-form input[type="submit"]:hover,
.ct-form button[type="submit"]:hover,
.ct-form input[type="button"]:hover {
  background: #3a0a11;
}

.ct-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

@media (min-width: 768px) {
  .loader__logo {
  height: 60px;
  }
  .loader__en {
  font-size: 14px;
  }
  .sttl {
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.45;
  }
  .phero__in {
  padding: 0 44px 40px;
  }
  .phero__crumb {
  left: 44px;
  }
  .page-cta {
  padding: 0 44px 76px;
  }
  .basic-content {
  padding: 70px 44px 80px;
  }
  .hdr__tel {
  display: block;
  }
  footer {
  padding: 58px 44px 40px;
  }
  .fixbar {
  display: none;
  }
  .hero {
  align-items: center;
  }
  .hero__in {
  padding: 0 44px;
  }
  .about {
  padding: 84px 44px 78px;
  }
  .about__ttl {
  font-size: clamp(26px, 5.4vw, 46px);
  line-height: 1.55;
  letter-spacing: .04em;
  }
  .about__stats {
  gap: 48px;
  }
  .works__head {
  padding: 0 44px;
  }
  .works__nav {
  font-size: 14px;
  }
  .works__scr {
  gap: 14px;
  scroll-padding-left: 44px;
  padding: 0 44px 18px;
  }
  .wc {
  flex: 0 0 46%;
  max-width: 380px;
  scroll-snap-stop: normal;
  }
  .wc {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  }
  .wc__ph {
  aspect-ratio: 4/5;
  border-radius: 3px;
  }
  .wc__ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(12, 7, 8, .88));
  }
  .wc__meta {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 0;
  z-index: 2;
  }
  .wc__meta .cat {
  display: block;
  font-size: 14px;
  color: #c98a86;
  background: none;
  padding: 0;
  }
  .wc__meta .t {
  font-size: 19px;
  color: #f3ebe8;
  margin-top: 2px;
  }
  .wc__meta .p {
  font-size: 12px;
  color: #d9c9c6;
  margin-top: 2px;
  }
  .wc__meta .more {
  display: none;
  }
  .works__ind {
  display: none;
  }
  .svc {
  padding: 80px 44px 86px;
  }
  .svc__ttl {
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.4;
  }
  .svc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  }
  .sc {
  grid-column: 1/-1;
  }
  .sc:first-child {
  grid-column: 1/-1;
  }
  .stg {
  padding: 90px 44px;
  }
  .stg__ttl {
  font-size: clamp(26px, 5.6vw, 50px);
  line-height: 1.4;
  }
  .rec {
  padding: 82px 44px 88px;
  }
  .rec__ttl {
  font-size: clamp(28px, 5.6vw, 54px);
  line-height: 1.35;
  }
  .rec__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  }
  .rec__tags span {
  font-size: 13px;
  text-align: left;
  padding: 8px 16px;
  }
  .ct {
  padding: 80px 44px 44px;
  }
  .ct__label {
  font-size: 16px;
  margin-bottom: 16px;
  }
  .ct__ttl {
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.35;
  }
  .ct__cards {
  flex-direction: row;
  gap: 14px;
  margin-top: 32px;
  }
  .ctc {
  flex: 1;
  padding: 28px;
  }
  .ctc .kk {
  font-size: 15px;
  }
  .ctc .l {
  font-size: 19px;
  margin-top: 6px;
  }
  .ctc .tel {
  font-size: 34px;
  margin-top: 8px;
  }
  .ctc .n {
  font-size: 12px;
  margin-top: 6px;
  }
  .ctc .btn {
  margin-top: 16px;
  padding: 16px 32px;
  font-size: 16px;
  }
  .biz-intro {
  padding: 70px 44px 20px;
  }
  .biz-list {
  padding: 30px 44px 76px;
  }
  .bz {
  display: flex;
  }
  .bz__ph {
  flex: 0 0 46%;
  aspect-ratio: auto;
  }
  .bz__body {
  flex: 1;
  padding: 30px;
  }
  .biz-flow {
  padding: 72px 44px 80px;
  }
  .wk-filter {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 44px 10px;
  }
  .wk-filter button {
  font-size: 13px;
  padding: 8px 18px;
  }
  .wk-grid {
  grid-template-columns: 1fr 1fr;
  padding: 20px 44px 76px;
  }
  .wks {
  padding: 64px 44px 80px;
  }
  .cmp-msg {
  padding: 72px 44px 68px;
  }
  .cmp-table {
  padding: 66px 44px 78px;
  }
  .cmp-map {
  height: 300px;
  }
  .rc-msg {
  padding: 70px 44px 60px;
  }
  .rc-msg .ttl {
  font-size: clamp(26px, 5.4vw, 46px);
  }
  .rc-point {
  padding: 64px 44px 40px;
  }
  .rc-table {
  padding: 20px 44px 72px;
  }
  .rc-cta {
  padding: 0 44px 76px;
  }
  .ct-wrap {
  padding: 70px 44px 40px;
  }
  .ct-form {
  padding: 20px 44px 80px;
  }
  .ct-form .two {
  display: flex;
  gap: 16px;
  }
  .ct-form .two .row {
  flex: 1;
  }
}

@media (min-width: 1024px) {
  .phero {
  height: 50vh;
  }
  .phero__in {
  padding: 0 68px 46px;
  }
  .phero__crumb {
  left: 68px;
  }
  .page-cta {
  padding: 0 68px 84px;
  }
  .basic-content {
  padding: 80px 68px 90px;
  }
  #hdr {
  padding: 16px 48px;
  }
  .logo__img {
  height: 44px;
  }
  .hdr__act {
  gap: 24px;
  }
  .hdr__tel {
  font-size: 17px;
  }
  .gnav {
  display: flex;
  align-items: center;
  gap: 18px;
  }
  .navbtn {
  display: none;
  }
  #drawer {
  display: none;
  }
  footer {
  padding: 60px 68px 40px;
  }
  .hero__in {
  padding: 0 68px;
  }
  .hero__ttl {
  font-size: clamp(60px, 7vw, 90px);
  }
  .hero__scr {
  left: 68px;
  }
  .about {
  padding: 90px 68px 84px;
  }
  .works__head {
  padding: 0 68px;
  }
  .works__scr {
  scroll-padding-left: 68px;
  padding: 0 68px 18px;
  }
  .wc {
  flex: 0 0 31%;
  }
  .svc {
  padding: 88px 68px 92px;
  }
  .stg {
  padding: 100px 68px;
  }
  .rec {
  padding: 90px 68px 96px;
  }
  .ct {
  padding: 88px 68px 52px;
  }
  .biz-intro {
  padding: 80px 68px 24px;
  }
  .biz-list {
  padding: 34px 68px 84px;
  }
  .biz-flow {
  padding: 80px 68px 88px;
  }
  .wk-filter {
  padding: 34px 68px 12px;
  }
  .wk-grid {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 24px 68px 84px;
  }
  .wks {
  padding: 72px 68px 88px;
  }
  .wks__gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 760px;
  }
  .cmp-msg {
  padding: 84px 68px 76px;
  }
  .cmp-table {
  padding: 74px 68px 86px;
  }
  .cmp-map {
  height: 360px;
  }
  .rc-msg {
  padding: 80px 68px 68px;
  }
  .rc-point {
  padding: 72px 68px 44px;
  }
  .rc-table {
  padding: 24px 68px 80px;
  }
  .rc-cta {
  padding: 0 68px 84px;
  }
  .ct-wrap {
  padding: 80px 68px 44px;
  }
  .ct-form {
  padding: 24px 68px 88px;
  }
}

@media (min-width: 1441px) {
  .hdr__tel {
  font-size: 20px;
  }
  .gnav {
  gap: 26px;
  }
  .gnav a .ja {
  font-size: 14px;
  }
  .gnav__cta {
  padding: 10px 20px;
  }
  .hero__ttl {
  font-size: 92px;
  }
}
