/* -------- Reset (mini) -------- */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* デザイントークン */
:root{
  --hdr-h: 80px;
  --charcoal: 38,38,38;
  --hdr-alpha: .85;
  --band-alpha: .55;
  --txt: #fff;
  --container: 1120px;
  --page-bg: #fff2e9;
}

/* ★html / body の共通設定をまとめる */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;              /* ここ追加 */
  background-color: var(--page-bg);
}

/* ★bodyを縦並びのflexコンテナにする */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;         /* 画面の高さ以上を保証 */
  overflow-x: hidden;        /* 横スクロール抑止はこっちへ移動 */
}

main{
  flex: 1 0 auto;   /* 余った高さを main に食わせる */
}

/* ★メイン部分を「伸び縮み担当」にする */
.page-main {
  flex: 1;                   /* 余った高さをここで受ける */
}

body{
  padding-top: var(--hdr-h);   /* ヘッダーの高さぶん下げる */
}

html{
  scroll-behavior: smooth;
}


/* footerは何もいじらなくてOK（勝手に一番下に行く） */


/* ===========================================================
   Header
   =========================================================== */

   
.site-header{
   position: fixed;           /* ← sticky から fixed に変更 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;

  height: var(--hdr-h);
  background: rgba(var(--charcoal), var(--hdr-alpha));
 color: var(--txt);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.06); /* 薄い境界線(お好みで) */
}

.site-header__inner{
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.site-logo{
  font-family: "Anton", system-ui, -apple-system, sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
}

/* ===========================================================
   Hamburger (pixel-perfect)
   =========================================================== */
.site-nav__toggle{
  position: relative;
  width: 44px; height: 44px;
  padding: 0; border: 0; background: transparent; cursor: pointer;
}
.site-nav__toggle .bar{
  position: absolute; left: 50%; top: 50%;
  width: 24px; height: 2px;               /* 偶数pxでにじみを回避 */
  background: var(--txt);
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform .22s ease, opacity .18s ease;
  backface-visibility: hidden;
}
/* 初期位置（整数pxだけ動かす） */
.site-nav__toggle .bar:nth-child(1){ transform: translate(-50%,-8px); }
.site-nav__toggle .bar:nth-child(2){ transform: translate(-50%, 0); }
.site-nav__toggle .bar:nth-child(3){ transform: translate(-50%, 8px); }
/* 開いたときに X へ */
.site-nav__toggle[aria-expanded="true"] .bar:nth-child(1){ transform: translate(-50%,0) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .bar:nth-child(2){ opacity: 0; }
.site-nav__toggle[aria-expanded="true"] .bar:nth-child(3){ transform: translate(-50%,0) rotate(-45deg); }

/* PCは少し大きめでもOK */
@media (min-width:1200px){
  .site-nav__toggle{ width: 48px; height: 48px; }
  .site-nav__toggle .bar{ width: 26px; }
}




/*==========================================================
  メニュー開いた時のナビ調整
==========================================================*/
/* ナビ内の2行表示の調整 */
.site-nav ul li a {
  display: block;
  padding: 12px 0;
  text-align: center;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-nav ul li a span {
  display: block;
  font-size: 0.8em;
  color: #ccc;
  margin-top: 2px;
}

/* ホバー時にやさしく反応 */
.site-nav ul li a:hover {
  opacity: 0.7;
}

/* ハンバーガーメニュー展開中の背景に軽い影 */
.site-nav {
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
}

/* Coming Soon文字をもう少し映える感じに */
.comingsoon {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

/* ───── 現在ページのメニュー強調 ───── */
.site-nav a.is-current{
  color: #ffa93a;           /* 英字の方の色 */
}

.site-nav a.is-current span{
  color: #ffa93a;           /* 下の日本語も同じ色に */
}

/* つけたければ、左に小さな丸マーカーとか */
.site-nav a.is-current::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #ffa93a;
}




/* ===========================================================
   Drawer Navigation
   （器は透明＆クリック透過／板＝ulだけスライド）
   =========================================================== */
.site-nav{
  position: fixed; inset: 0; z-index: 2000;
  background: transparent;
  pointer-events: none;      /* 器は触れない＝ボタンを邪魔しない */
}
.site-nav > ul{
  position: fixed; right: 0; top: var(--hdr-h); bottom: 0;
  width: min(92vw, 360px);
  margin: 0; padding: 18px;
  list-style: none;
  background: rgba(var(--charcoal), .96);
  color: #fff;
  box-shadow: -8px 0 16px rgba(0,0,0,.25);

  transform: translateX(100%);          /* 閉じているときは画面外 */
  transition: transform .28s ease;
  pointer-events: auto;                 /* ここだけ操作可能 */
  overflow-y: auto; overscroll-behavior: contain;
}
.site-nav.is-open > ul{ transform: translateX(0); }

.site-nav li + li{ margin-top: 14px; }
.site-nav a{
  display: block; padding: 10px 8px;
  color: #fff; font-weight: 600; letter-spacing: .06em;
}

/* ===========================================================
   Hero
   =========================================================== */
.hero{
  position: relative; width: 100%;
  height: calc(100vh - var(--hdr-h));         /* 画面高からヘッダー分を差し引き */
  overflow: hidden;
  background: linear-gradient(90deg,#f6efe7 0 50%, #f2ebe3 50% 100%);
}
.hero__media{ position: absolute; inset: 0; }
.hero__media img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===== Hero帯：PC基準 ===== */
.hero__tagline-band{
  position: absolute;
  left: 0; right: 0;
  bottom: 24%;                /* PC用の位置 */
  background: rgba(0,0,0,0.45);
  padding: 32px 0;
  text-align: center;
  backdrop-filter: blur(2px);
}

.tagline-en{
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.tagline-ja{
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

/* -------- Title animation: fade-up → gentle blink loop -------- */
@media (prefers-reduced-motion: reduce){
  .hero__title{ animation: none !important; }
}
.fx-fadeup-blinkloop{
  opacity: 0; transform: translateY(16px);
  animation: fadeup 1.2s cubic-bezier(.25,.7,.3,1) forwards,
             blinkloop 3.6s ease-in-out 1.3s infinite;
}
@keyframes fadeup{ to{ opacity:1; transform:translateY(0); } }
@keyframes blinkloop{
  0%,100%{ opacity:1; text-shadow:0 2px 6px rgba(0,0,0,.25); }
  50%{ opacity:.65; text-shadow:0 4px 12px rgba(0,0,0,.45); }
}

/* ===========================================================
   Responsive
   =========================================================== */
/* Tablet */
@media (max-width: 1199.98px){
  :root{ --hdr-h: 72px; }
  .site-nav > ul{ width: min(92vw, 360px); }
}
/* Mobile */
@media (max-width: 767.98px){
  :root{ --hdr-h: 64px; }
  .site-header__inner{ padding: 0 16px; }
  .site-logo{ font-size: 22px; letter-spacing: .09em; }
  .site-nav__toggle{ width: 44px; height: 44px; gap: 4px; }
  .site-nav__toggle .bar{ width: 24px; height: 2.6px; }
  .hero__band{ padding: 32px 12px; }
  .hero__title{ font-size: clamp(28px, 7.5vw, 60px); }
}


.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* ← PC用：全面フィット */
  object-position: center 60%; /* ← 顔+ロゴが中央に来るよう少し下げ */
}

/* スマホ用はcontainでトリミング回避 */
@media (max-width: 768px) {
  .hero__media img {
    object-fit: contain;
    background-color: #f6efe7; /* 余白馴染ませ */
    object-position: center center;
  }
}

/* ===== 全体背景を #fff2e9 に統一 ===== */
:root {
  --page-bg: #fff2e9;
}

html, body {
  background-color: var(--page-bg);
}

/* 画像の外側に余白や透過がある場合でも色を馴染ませる */
.hero,
.hero__media img {
  background-color: var(--page-bg);
}

/* スマホ共通：画像表示と帯の位置・サイズ */
@media (max-width: 768px){

  /* 画像はスマホだけ contain に */
  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background-color: #f6efe7;
  }

  /* 帯：スマホではちょい下げ＆コンパクトに */
  .hero__tagline-band{
    bottom: 34%;        /* ★ここだけいじれば全スマホ共通で調整できる */
    padding: 18px 8px;
  }

  .tagline-en{
    font-size: clamp(22px, 5.2vw, 28px);
    margin-bottom: 6px;
  }

  .tagline-ja{
    font-size: clamp(12px, 3.6vw, 16px);
  }
}



/*====================================================================
             フッター
====================================================================*/
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 24px 16px 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;   /* 狭い画面で折り返し */
  gap: 28px;         /* SNS間の距離を確保 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.sns-links li {
  display: flex;
  align-items: center;
  gap: 8px;          /* テキストとアイコンの距離 */
}



.sns-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← 中央より上寄せにする */
  gap: 6px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.sns-links a span {
  font-size: 0.8em;
  color: #ccc;
}

/* 共通（SNS全体） */
.sns-links img {
  object-fit: contain;
  border-radius: 10px;
  vertical-align: middle;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

/* Instagramアイコン */
.sns-links img.ig-icon {
  width: 104px;
  height: 104px;
  margin-top: -2px;  /* ← 少し下げて中央揃え感を出す */
}

/* X（旧Twitter）アイコン */
.sns-links img.x-icon {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 2px;   /* ← アイコンを少し上げる（調整ポイント） */
}

/* ホバー時のエフェクト */
.sns-links a:hover img {
  opacity: 1;
  transform: scale(1.05);
}


/* ====== タブレット（～1024px） ====== */
@media (max-width: 1024px) {
  .sns-links { gap: 24px; }
  .sns-links img.ig-icon { width: 68px; height: 68px; }
  .sns-links img.x-icon  { width: 40px; height: 40px; }
  .sns-links a span { font-size: 0.78rem; }
  .sns-links li:nth-child(3) a {
    gap: 12px;        /* ← 文字とアイコンの間をインスタと統一 */
    margin-top: -2px; /* ← アイコンを少し上げて水平に揃える */
  }
}


/* ====== スマホ（～600px） ====== */
@media (max-width: 600px) {
  .site-footer { padding: 18px 14px 16px; }

  .sns-links {
    gap: 20px;                /* 近すぎず離れすぎず */
  }

  /* 視認性を保ちつつ、指で押しやすいサイズに */
  .sns-links img.ig-icon { width: 60px; height: 60px; }
  .sns-links img.x-icon  { width: 36px; height: 36px; }

  .sns-links a { gap: 4px; min-width: 56px; }
  .sns-links a span { font-size: 0.75rem; }

  /* ====== スマホ専用：Xの上下余白を詰める ====== */
  .sns-links li:nth-child(3) a {
    gap: 9px;       /* ← IGと同じ感覚に統一 */
    margin-top: -2px; /* ← アイコンを少し上げる */
  }
}


/* 動きを抑えたい人向け（OS設定尊重） */
@media (prefers-reduced-motion: reduce) {
  .sns-links img { transition: none; }
}

@media (max-width: 600px) {
  .sns-links a {
    gap: 4px;
    justify-content: flex-start;
  }
  .sns-links img.x-icon { margin-top: 1px; }
}

/* 行の縦揃えを“上揃え”に変更 */
.sns-links {
  align-items: flex-start;   /* ← center から変更 */
}

/* 画像のベースライン余白を消す */
.sns-links img {
  display: block;            /* ← これで微妙な下ズレ解消 */
}

/* 念のため：余計な微調整は外す（残っていたら） */
/* .sns-links img.x-icon { margin-top: 〇px; } は削除 or 0に */

/* ===== PC表示でのX位置補正 ===== */
@media (min-width: 1025px) {
  /* Xのアイコンサイズを少し拡大し、上方向に寄せる */
  .sns-links img.x-icon {
    width: 58px;
    height: 58px;
    margin-top: 18px;  /* ← 下がってる分を上げる */
  }

  /* Xラベルの行間を少し詰める */
.sns-links li:nth-child(3) a {
  gap: 7px; /* ← 現状たぶん4px前後 → 2pxでぴったり揃う */
}

}


/* ▼ スマホ専用調整（～768px） */
@media (max-width: 768px){

  /* ヒーロー枠を画像サイズに合わせる */
  .hero{
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 中身のラッパーがあれば同じくリセット */
  .hero__inner{
    min-height: auto;
    height: auto;
  }

  /* 画像まわりの指定をシンプルに */
  .hero__media{
    position: relative;   /* 必要なら absolute → relative に */
    height: auto;
  }

  .hero__media img{
    display: block;
    width: 100%;
    height: auto;         /* ← 100% をやめる */
    object-fit: cover;    /* か、いっそ指定を外すでもOK */
  }
}


/* ラッパー：右寄せ用 */
.page-top-area {
  text-align: right;
  margin: 80px 0 60px;
}

/* ===== PAGE TOP ボタン ===== */
.page-top-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #333;            /* 上品に細めライン */
  border-radius: 4px;                /* ほんの少し角丸 */
  
  font-size: 15px;                   /* 控えめだけど読みやすい */
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: none;

  transition: all 0.3s ease;
  text-align: center;
}

/* ホバー時の演出（濃いグレー反転＋白文字） */
.page-top-btn:hover {
  background: #333;
  color: #fff;
}


/*=========================================================
              　　　　　CONTACTページ
=========================================================*/

/* ===== Contact Page ===== */
.page-main{
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 16px 120px;
}



.contact-section{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 40px 32px 48px;
}

.contact-heading-en{
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
  margin-bottom: 4px;
}

.contact-heading-ja{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.contact-lead{
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,.7);
  margin-bottom: 24px;
}

/* フォーム */
.contact-form{
  display: grid;
  gap: 18px;
}

.contact-form label{
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 14px;
}

.contact-form textarea{
  min-height: 160px;
  resize: vertical;
}

.contact-form button{
  margin-top: 12px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #ffa93a;
  background: #ffa93a;
  color: #222;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover{
  opacity: .85;
}



/*=======================================
             ヘッダー帯修正
=======================================*/
.site-header{
  height: 80px !important;      /* 高さを固定 */
  min-height: 80px !important;
  /* display: flex;  ← 消す */
  /* align-items: center;  ← 消す */
}

.site-header__inner{
  height: 100% !important;      /* ラッパーも同じ高さに */
}








/*===============================================
               aboutページ
===============================================*/
/* ▼ Aboutページ専用フォント設定 */
.about h1,
.about h2,
.about-block__title {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.03em; /* 少し詰めると綺麗 */
}

.about-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.about-lead {
  font-size: 1.25rem;         /* 少し大きくして存在感UP */
  line-height: 1.8;           /* 読みやすい行間 */
  margin-top: -8px;           /* ABOUTとの縦距離を詰める */
  margin-bottom: 40px;        /* STANCE との距離を確保 */
  color: #333;                /* 黒100%より少し弱めの黒で馴染む */
  letter-spacing: 0.03em;     /* 微細な字間調整で上質に */
}


.about-block__title {
  position: relative;
  padding-bottom: .3em;
}

.about-block__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #333;
  margin-top: .3em;
}


/* ===== ABOUTページ ===== */

.about h1,
.about h2,
.about-block__title {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* 見出しの装飾 */
.about-block__title {
  font-size: clamp(26px, 4vw, 40px);
  position: relative;
  padding-bottom: .3em;
}

.about-block__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #000;    /* 兄貴のサイトに合わせて調整OK */
  margin-top: .3em;
}

.about-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.2em;
  color: #333;
}


/* ================================
   About レイアウト
   ================================ */

.about {
  padding: 80px 0 120px;
}

.about__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出しエリア */
.about__header {
  margin-bottom: 56px;
}

.about-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

/* 各ブロックの基本 */
.about-block {
  margin-bottom: 80px;
}

.about-block__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  position: relative;
}

.about-block__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #222;
  margin-top: 10px;
}

/* 画像＋テキストを左右に並べる部分 */
.about-block__body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* 画像サイズ：正方形 */
.about-block__visual img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* テキスト側 */
.about-block__text {
  flex: 1;
  max-width: 620px;
}

.about-block__text p + p {
  margin-top: 1em;
  line-height: 1.9;
}



/* ============================
   About：タイトル下線スタイル
   ============================ */

.about-block__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.about-block__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;     /* タイトルとの距離 */
  width: 60px;      /* アンダーラインの長さ */
  height: 2px;      /* アンダーラインの太さ */
  background-color: #000;  /* 色 */
}

/* スマホ */
@media (max-width: 768px) {
  .about-block__title::after {
    width: 36px;
  }
}



/* スマホ：縦積み */
@media (max-width: 768px) {
  .about {
    padding: 56px 0 80px;
  }

  .about-block__body {
    flex-direction: column;
  }

  .about-block__visual img {
    width: 100%;
    height: auto;
  }

  .about-block__text {
    max-width: 100%;
  }
}


/* ================================
   スクロールフェードイン
   ================================ */

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   共通フェードイン
   ============================ */

.fadein {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ちょい遅らせたい要素用 */
.fadein.fadein--delay {
  transition-delay: 0.2s;
}





/*=============================================
                serviceページ
=============================================*/


/* ベース */
.service-hero {
  background-color: #1c1c1c;
  color: #fff;
}

.service-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  min-height: 380px;
}

/* 左の黒帯 */
/* 左の黒帯 */
.service-hero__side {
  width: 32%;
  padding: 56px 32px; /* ← 少し広げて高級感 */
  background-color: #222;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ← 上寄せに変更 */
}

.service-hero__label {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  opacity: 0.85;
}

.service-hero__title {
  
  font-size: 44px;  /* ← 4pxUPで存在感UP */
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.service-hero__line {
  display: block;
  width: 60px; /* 少しだけ幅を長く */
  height: 3px;
  margin: 8px 0 12px;
  background-color: #d9b15b; /* ゴールド系 */
}

.service-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-hero__list li {
  font-size: 20px;          /* ← 気持ち大きく */
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;      /* ← 行間ゆったり */
}

/* 右側ビジュアル */
.service-hero__visual {
  position: relative;
  width: 68%;
  background-image: url("../image/s_hero_mojinasi.png");
  background-size: cover;
  background-position: center;
}

.service-hero__copy-wrap {
  position: absolute;
  inset: auto 40px 40px 40px;
  background: rgba(0, 0, 0, 0.35);
  padding: 16px 24px;
}

.service-hero__copy {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.8;
}

/* ▼ SERVICE Overview */
.service-overview {
  padding: 80px 16px 96px;
  background-color: #f7efe7;
}

.service-overview__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  text-align: left;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.service-card__title {
  font-family: "Noto Sans JP", sans-serif!important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 14px;
  line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .service-hero__inner {
    flex-direction: column;
  }

  .service-hero__side,
  .service-hero__visual {
    width: 100%;
  }

  .service-hero__side {
    padding: 24px 20px;
  }

  .service-hero__copy-wrap {
    position: static;
    margin: 16px;
  }

  .service-overview__inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
  }
}


/* ▼ Service Overview カード（ホバーアニメ） */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* ▼ 画像もアニメさせたい場合 */
.service-card__icon {
  transition: transform .35s ease;
}

/* ▼ ホバー時：カードが少し浮く＆影が深くなる */
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* ▼ ホバー時：画像がほんの少しズーム */
.service-card:hover .service-card__icon {
  transform: scale(1.03);
}



/* ============================
   デザイン価値セクション
============================ */

.design-value {
  background: #f8f5f2; /* 少し温かいトーン */
  padding: 120px 0;
}

.design-value-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.design-value .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
  line-height: 1.4;
}

.design-value-lead {
  text-align: center;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 60px;
}

/* ポイントカード */
.design-value-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .design-value-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #333;
}







/* ▼ SERVICE Detail（各サービスの2カラム） */
.service-detail {
  padding: 80px 16px 96px;
  background-color: #f7efe7;
}

.service-detail__item {
  max-width: 1120px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* 偶数番目だけ左右反転でリズムを出す */
.service-detail__item:nth-child(even) {
  direction: rtl;
}
.service-detail__item:nth-child(even) > * {
  direction: ltr;
}

.service-detail__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.service-detail__body {
  font-size: 16px;
  line-height: 1.9;
}

.service-detail__title {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail__text {
  margin-bottom: 16px;
}

.service-detail__price {
  font-size: 20px;
  font-weight: 700;
  color: #b88427; /* ゴールド寄りのアクセント */
  margin-bottom: 8px;
}

.service-detail__price span {
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
}

.service-detail__note {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .service-detail__item {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
}


/* ▼ Service Detail：画像の小さい動き */
.service-detail__image img {
  transition: transform .35s ease, box-shadow .35s ease;
  border-radius: 12px; /* ここは好みで */
}

/* ▼ ホバー時：ほんの少しズーム＋影アップ */
.service-detail__item:hover .service-detail__image img {
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}




/* ▼ SET PLAN（画像1枚＋テキストカード） */
.service-plan {
  background-color: #f7efe7;
  padding: 96px 16px 112px;
}

.service-plan__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.service-plan__visual {
  margin-bottom: 40px;
}

.service-plan__visual img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.service-plan__heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 8px;
}

.service-plan__lead {
  font-size: 16px;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* カードの並び：PCで2〜3列、スマホで1列 */
.service-plan__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* 各プランカード */
.plan-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0d5c9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 24px 20px 20px;
}

.plan-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-card__price {
  font-size: 22px;
  font-weight: 800;
  color: #b88427;
  margin-bottom: 12px;
}

.plan-card__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
}

.plan-card__note {
  font-size: 12px;
  opacity: 0.75;
}

/* ▼ Set Plan カード（控えめホバー） */
.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* ▼ ホバー時：ほんのり浮く（1〜2px）＋影が少し深まる */
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}


/* スマホ調整 */
@media (max-width: 768px) {
  .service-plan {
    padding: 72px 16px 88px;
  }

  .service-plan__visual {
    margin-bottom: 32px;
  }
}

/* 税込表記の注意文 */
.note-tax {
  text-align: center;
  font-size: 13px;
  color: #8a837b; /* ベージュ系の落ち着いた色 */
  margin: 40px 0 20px;
  letter-spacing: 0.03em;
}








/* ============================================== 
                    WORKS 共通 
============================================== */
.works-main {
  padding: 80px clamp(20px, 5vw, 60px) 100px;
  max-width: 1120px;
  margin: 0 auto;
}

/* HERO */
.works-hero__title {
  font-family: "Anton", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 3vw, 34px);
}

.works-hero__sub {
  margin-top: 18px;
  line-height: 1.8;
  font-size: 14px;
}

/* セクション見出し */
.works-section {
  margin-top: 64px;
}

.works-section__heading {
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 18px;
}

/* グリッド */
/* ===== カードのグリッド ===== */
.works-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* SPは2列 */
@media (max-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* カード */
.works-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.works-card__thumb {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;      /* 正方形 */
  object-fit: cover;
}

/* ホバー */
.works-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 10px 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.works-card__category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.works-card__title {
  font-size: 13px;
  font-weight: 600;
}

.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.works-card:hover .works-card__overlay {
  opacity: 1;
}

/* 通常は白で固定 */
.works-card__title {
  color: #fff;
}

/* ホバー時だけ、オーバーレイ上のタイトルのみ変更 */
.works-card:hover .works-card__overlay .works-card__title {
  color: #fff; /* 黒にしたいなら #000 */
}


/* ========== モーダル ========== */
.works-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}

.works-modal.is-open {
  display: flex;
}

.works-modal__overlay {
  position: absolute;
  inset: 0;
}

.works-modal__content {
  position: relative;
  max-width: 960px;
  max-height: 90vh;
  background: #fffdf8;
  padding: 24px 24px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: auto;
  z-index: 1;
}

.works-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.works-modal__category {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.works-modal__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.works-modal__image-wrap {
  margin-bottom: 14px;
}

.works-modal__image {
  max-width: 100%;
  height: auto;
  display: block;
}

.works-modal__desc {
  font-size: 14px;
  line-height: 1.8;
}

/* SP小さめ調整 */
@media (max-width: 600px) {
  .works-main {
    padding-inline: 16px;
  }

  .works-modal__content {
    width: calc(100% - 24px);
    padding: 20px 18px 22px;
  }
}


/* ===== カテゴリラベル ===== */
.works-card__category-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8a784f; /* TK BASEの雰囲気に合うゴールドブラウン */
  border: 1px solid #d3c2a0;
  z-index: 2;
}

/* ===== Coming Soon 用 ===== */
.works-card--soon {
  position: relative;
  cursor: default;
  pointer-events: none; /* モーダル開かない */
}

.works-card__thumb--soon {
  width: 100%;
  padding-top: 100%; /* 正方形 */
  background: #dcdcdc22;
  border: 1px solid #c8b37a80;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.works-card__soon-text {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #bda87c;
  font-weight: 600;
  opacity: .8;
  text-transform: uppercase;
}

/* タイトルの余白調整 */
.works-card__title {
  padding: 12px 16px 16px; /* 上・左右・下 */
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}


/* ===== セクション全体 ===== */
.works-section {
  margin-bottom: 80px;
}

/* ===== Heading ===== */
.works-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #6e5834;     /* TK BASEのブラウン系 */
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}



/*フッター住所等追記分*/
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.footer-detail {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}



/*==========================================
                HUBページ
==========================================*/
/* ================================
   Hub Page Minimum Styles
================================ */

/* 全体の余白と中央寄せ */
.hub-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hub-title {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hub-subtitle {
  font-size: 16px;
  color: #555;
}

/* 説明文 */
.hub-intro {
  text-align: center;
  padding: 0 20px 40px;
  line-height: 1.7;
  color: #444;
}

/* セクションタイトル */
.hub-service {
  padding: 40px 20px;
  text-align: center;
}

.hub-service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

/* バナー画像 */
.hub-banner {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ボタン */
.hub-btn-wrap {
  margin-bottom: 30px;
}

.hub-btn {
  display: inline-block;
  background: #333;
  color: white;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.hub-btn:hover {
  opacity: 0.8;
}

/* 問い合わせ小セクション */
.hub-contact {
  text-align: center;
  padding: 40px 20px 80px;
  color: #444;
}

.hub-contact-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #666;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}

/* スマホ調整 */
@media (max-width: 480px) {
  .hub-title { font-size: 36px; }
  .hub-subtitle { font-size: 14px; }
  .hub-service-title { font-size: 18px; }
}


/* ================================
   Hover Effects（バナー & ボタン）
================================ */

/* ▼ バナー（ほんの少し拡大＋影強調） */
.hub-banner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hub-banner:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}


/* ▼ メインボタン（色を少し明るく） */
.hub-btn {
  transition: background 0.25s ease, transform 0.25s ease;
}

.hub-btn:hover {
  background: #555;
  transform: translateY(-2px);
}


/* ▼ お問い合わせボタン（薄い色 → 少し濃く） */
.hub-contact-btn {
  transition: background 0.25s ease, transform 0.25s ease;
}

.hub-contact-btn:hover {
  background: #444;
  transform: translateY(-2px);
}




/* ▼ ハンバーガーメニュー内のリフォームバナー */
.nav-reform-banner {
  padding: 20px;
  text-align: center;
}

.nav-reform-banner-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-reform-banner-img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.nav-reform-banner {
  margin-top: 24px;
  text-align: center;
}

.nav-reform-banner img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: opacity .25s ease;
}

.nav-reform-banner img:hover {
  opacity: 0.8;
}





/* =============================
    LINE CTA ボックス
============================= */
.cta-line {
  background: #ffffff;
  border: 2px solid #06c755;
  border-radius: 14px;
  padding: 24px 20px;
  margin: 60px auto 0;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cta-line-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.cta-line-btn {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: opacity .25s ease, transform .25s ease;
}

/* Hover 演出 */
.cta-line-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}










/*=========================================
           　　　　　priceページ
==========================================*/




/* ========================================
   PRICE PAGE 基本レイアウト
======================================== */
.price-page {
  margin-top: 80px; /* 固定ヘッダーの分 */
  background: #faede4;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

/* インナー（共通） */
.inner {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.inner.narrow {
  width: min(800px, 92%);
}

.section {
  padding: 80px 0;
}

/* ========================================
   1) HERO（兄貴のバナー画像）
======================================== */
/* PRICEヒーロー全体（背景チャコール＆画像小さめ） */
.price-hero {
  background: #232323;
  padding: 40px 0 ;   /* 黒背景の上下余白 */
  text-align: center; /* 中央寄せで綺麗に */
}

.price-hero img {
  width: 60%;          /* ← ★ 全体を縮小して表示（％で調整） */
  height: auto;        /* ← 縦横比そのまま・トリミングなし */
  display: block;
  margin: 0 auto;      /* 中央揃え */
}

@media (max-width: 900px) {
  .price-hero img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
  }

  .price-hero {
    padding: 0; /* お好みで */
  }
}

/* ========================================
   2) リード文
======================================== */
.price-lead-area {
  background: #faede4;
}

.price-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}

.price-lead {
  line-height: 1.9;
  font-size: 21px;
  color: #333;
}

/* ========================================
   3) 料金プラン（カード4枚）
======================================== */
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #232323;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 48px;
}

.section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: #c59645; /* ゴールド */
  margin: 6px auto 0;
  border-radius: 2px;
}


.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}


/* ============================
     料金プランカード（チャコール仕様）
============================ */

.plan-card {
  background: #232323;   /* チャコール */
  border-radius: 16px;
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;     /* ←縦並びにする */
  justify-content: space-between;  /* ←下端揃え */
  min-height: 520px;          /* ←カード高さ固定（調整可） */
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

/* hover 強めで高級感 */
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* プラン名 */
.plan-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* 金額（ゴールド） */
.plan-price {
  font-size: 26px;
  font-weight: 800;
  color: #c59645; /* ゴールド */
  margin-bottom: 24px;
}

/* 特徴リスト（白文字＋ゴールドの中点） */
.plan-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.plan-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.6;
}

.plan-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d9a441;      /* ゴールドの中点 */
  font-weight: bold;
}

/* 補足テキスト */
.plan-note {
  margin-top: auto;    /* ←一番下に押し下げる */
  color: #eaeaea;
  line-height: 1.6;
}

/* ★ 料金プランのドット（中点）消す */
.plan-grid {
  list-style: none;
  padding-left: 0;
}
.plan-grid > li {
  list-style: none;
}

.plan-title {
  position: relative;
  padding-bottom: 12px;     /* タイトルの下に余白 */
  margin-bottom: 18px;
}

.plan-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;              /* ラインの長さ（調整可） */
  height: 2px;
  background-color: #c59645;  /* ゴールド */
  border-radius: 2px;
}

@media (max-width: 900px) {
  .plan-card {
    margin: 0 12px 40px;
  }
}


/* ========================================
   4) 全プラン共通
======================================== */

.price-common.section.alt-bg {
  background: #f5e6d8;
  padding: 120px 0;
}

/* 横並びレイアウト */
.price-common-flex {
  display: flex;
  align-items: flex-start; /* ←ズレ防止 */
  justify-content: space-between;
  gap: 80px;
}

/* 左側 */
.common-left {
  flex: 1.2;
}

/* タイトル（センター揃え保持） */
.price-common .section-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  position: relative;
}

.price-common .section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: #c39a56;
  margin: 14px auto 0; /* ← 完全に中央寄せ */
  border-radius: 2px;
}

/* UL（ドットをゴールド化） */
.common-list {
  padding-left: 0;
  list-style: none;
  line-height: 2.3;
  font-size: 18px;
  color: #333;
}

.common-list li {
  position: relative;
  padding-left: 28px; /* ← 点との距離 */
  margin-bottom: 8px;
  line-height: 1.9; /* ← 本文とのバランス */
}

.common-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c39a56;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;        /* ← 行に対してちょうど真ん中 */
  transform: translateY(-50%);  /* ← ピッタリ中央配置 */
}

/* --- 右側画像 --- */
.common-right {
  flex: 1;
  display: flex;
  justify-content: center;
  
}

.common-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.15);
}



/* --- スマホレイアウト --- */
@media (max-width: 900px) {

  .price-common.section.alt-bg {
    padding: 80px 0; 
  }

  .price-common-flex {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .common-right {
    order: -1;
  }

  .common-img {
    max-width: 80%;
    margin-top: 20px;
  }

  .price-common .section-title {
    text-align: center;
  }

  .price-common .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}
.common-img,
.option-img,
.flow-img {
  max-width: 80%;
}


/* ========================================
   追加オプション (全プラン共通と同じスタイル)
======================================== */

.price-options.section.alt-bg {
  background: #faede4;
  padding: 120px 0;
}

/* 横並びレイアウト */
.options-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* 左側 */
.options-left {
  flex: 1.2;
}

/* タイトル */
.price-options .section-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  position: relative;
}

.price-options .section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: #c39a56;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* UL（ドット金色） */
.option-list {
  padding-left: 0;
  list-style: none;
  line-height: 2.3;
  font-size: 18px;
  color: #333;
}

.option-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.9;
}

.option-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c39a56;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 右画像 */
.options-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.option-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.15);
}

/* スマホ */
@media (max-width: 900px) {
  .price-options.section.alt-bg {
    padding: 80px 0;
  }

  .options-flex {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .options-right {
    order: -1;
  }

  .option-img {
    max-width: 80%;
    margin-top: 20px;
  }
}



/* ========================================
   6) 制作の流れ（FLOW）
======================================== */

.flow.section.alt-bg {
  background: #f5e6d8;
  padding: 120px 0;
}

/* 横並びレイアウト */
.flow-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* 左側（工程リスト） */
.flow-left {
  flex: 1.2;
}

/* タイトル */
.flow .section-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  position: relative;
}

.flow .section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: #c39a56;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* UL（番号付きだけど左揃えの調整用） */
.flow-list {
  padding-left: 0;
  list-style: none;
  line-height: 2.3;
  font-size: 18px;
  color: #333;
}

.flow-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.9;
}

.flow-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c39a56;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 右側画像 */
.flow-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.flow-img {
  width: 100%;
  max-width: 380px; /* 追加オプションと合わせる */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.15);
}

/* スマホ */
@media (max-width: 900px) {
  .flow.section.alt-bg {
    padding: 80px 0;
  }

  .flow-flex {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .flow-right {
    order: -1;
  }

  .flow-img {
    max-width: 80%;
    margin-top: 20px;
  }
}




/* ========================================
   7) CTA（黒背景）
======================================== */
.price-cta {
  background: #faede4;
  text-align: center;
}

.price-cta__text {
  color: #333;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.price-cta__btn {
  display: inline-block;
  background: #232323;
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.cta-button {
  padding: 18px 24px;
  font-size: 16px;
}


.price-cta__btn:hover {
  opacity: 0.8;
}

/* ========================================
   SP 調整
======================================== */
@media (max-width: 768px) {

  .price-title {
    font-size: 32px;
  }

  .price-lead {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-title {
    font-size: 20px;
  }

  .plan-price {
    font-size: 20px;
  }

  .price-cta__text {
    font-size: 18px;
  }
}





/* ================================
   CTA（アウトライン・静かな主張）
================================ */

.cta-section {
  text-align: center;
  padding: 60px 0 80px;
}

.cta-section p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 28px;
}

/* ボタン（静かに存在するタイプ） */
.cta-link-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.cta-link-outline:hover {
  background: #333;
  color: #fff;
}

/* 余白調整（Works / Serviceごとに適用OK） */
.works-cta,
.service-cta {
  margin-top: 80px;
}
