:root {
  --green-main: #23352b;
  --text-main: #000000;
  --text-sub: #444444;
  --chip-border: #a8a8a8;
  --bg-page: #f5f5f5;
  --section-bg: #ffffff;
  --max-width: 1200px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter",
    "Noto Sans JP", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}


html, body {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

/* ========== ベース ==========*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-page);
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}



/* =========================
   HERO / TOP 部分
   ========================= */

/* 追尾ヘッダーと被らないように上に余白をつける */
.hero {
  position: relative;
  min-height: 100vh;
  color: #ffffff;
  overflow: hidden; 
  padding-top: 72px; /* ヘッダーの高さ分 */
}

/* 背景画像レイヤー（ここを動かしたりボカしたりする） */
.hero-bg {
  top: 0; height: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  inset: -10vh 0 0; 
  background:
    url("../images/hero_main.jpg") center center / cover no-repeat;
  transform: translateY(0);
  will-change: transform, filter;
  transition: filter 0.2s ease-out;
  z-index: 0;
}

/* 暗さ調整用のオーバーレイ（グラデで下を暗く） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(19, 20, 23, 1) 0%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0.0) 65%
    );
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
  z-index: 1;
}



/* 追尾ヘッダー本体（色はJSで切り替え） */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 9999;  /* ← これ必要 */

  display: block;
  background-color: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.25s ease;
}



/* ────────────── */
/* ハンバーガーボタン */
/* ────────────── */
/* fade-styles.css */
.hamburger-fade {
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; /* 白に変更して目立たせる */
  transition: all 0.4s ease;
}


.hamburger-fade__line:nth-child(1) { top: 0; }
.hamburger-fade__line:nth-child(2) { top: 9px; }
.hamburger-fade__line:nth-child(3) { top: 18px; }

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 25vh 30vw;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  position: relative;
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) { transition-delay: 0.2s; }
.nav-fade.active .nav-fade__item:nth-child(2) { transition-delay: 0.3s; }
.nav-fade.active .nav-fade__item:nth-child(3) { transition-delay: 0.4s; }
.nav-fade.active .nav-fade__item:nth-child(4) { transition-delay: 0.5s; }

.nav-fade__number {
  position: absolute;
  left: 0;
  color: #666;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.nav-fade__link {
  display: inline-block;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-fade__link:hover {
  color: #4a6865;
}

.nav-fade__info {
  margin-top: auto;
  padding-left: 60px;
  color: #666;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__address,
.nav-fade__tel {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-fade__link {
    font-size: 24px;
  }
  
  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 1.5vh;
  }
  
  .nav-fade__info {
    padding-left: 40px;
  }
}
.nav-fade__wrapper{
    padding: 25vh 10vw;
  }

/* スクロール後（色だけ反転） */

.site-logo,
.hamburger-fade__line {
  mix-blend-mode: color-burn;
  color: rgb(0, 0, 0);
}

.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .hamburger-fade__line {
  mix-blend-mode: normal;
  color: #ffffff;

}
/* 初期状態（TOPなど：白） */
.hamburger-fade__line {
  background-color: #ffffff;
  transition: background-color 0.25s ease;
}

/* スクロール後 */
.site-header.is-scrolled .hamburger-fade__line {
  background-color: #000000;
}
.site-header.is-scrolled .site-logo {
  mix-blend-mode: normal;
  color: #ffffff;
}


/* =========================
   HERO（TOP）テキスト
========================= */

/* HERO 内の中央寄せレイアウト */
.hero-inner {
  position: relative;
  z-index: 2; /* 背景・オーバーレイの上 */
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;

  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 英語キャッチ */
.hero-tagline-en {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: 67px;
  line-height: 1;
  letter-spacing: 0.18em;
  margin-bottom: 20px;

  /* ★ 常に表示 */
  opacity: 1;
  transform: none;
}

/* 日本語キャッチ */
.hero-tagline-ja {
    font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    opacity: 1;
    transform: none;

  /* ★ 常に表示 */
  opacity: 1;
  transform: none;
}

.hero-tagline-ja p {
  margin: 0;
}





/* =========================
   Page Hero 共通（About / Privacy / TOP 共用）
========================= */



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


/* =========================
   HERO 背景レイヤー
========================= */

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero_main.jpg") center / cover no-repeat;
  transform: translateY(0);
  will-change: transform, filter;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 20, 23, 1),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}


/* スマホ調整 */
@media (max-width: 768px) {
  .site-header-inner {
    padding: 0 16px;
  }

  .site-logo {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .site-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }

  .site-menu-btn span {
    width: 16px;
  }

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-tagline-en {
    font-size: 32px;
    letter-spacing: 0.12em;
  }

  .hero-tagline-ja {
    font-size: 22px;
  }
}
.hero-inner,
.page-hero__inner {
  position: relative;
  z-index: 2;
}

/* =========================
   クリエイティブメッセージセクション
   ========================= */

   .creative-partner-message {
  text-align: center;
  padding: 4rem 2rem;
  background-color:rgb(19, 20, 23);
  color: rgb(255, 255, 255);
}

.creative-partner-message__heading {
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 1rem;
  font-weight: 500;
}

.creative-partner-message__text {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.8;
  color: rgb(145, 145, 145);
}

@media screen and (max-width: 768px) {
  .creative-partner-message__heading {
    font-size: 1rem; 
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    
  }
    .creative-partner-message__text {
    font-size: 0.8rem; 
    
  }
}
/* =========================
   関連会社様セクション
   ========================= */

.clients-section {
  background: #131417;
  color: #ffffff;
  padding: 120px 24px 140px;
}

.clients-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.clients-heading {
  margin-bottom: 24px;
}

.clients-title-main {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: 20px;
  margin: 0;
}

.clients-title-sub {
  font-size: 12px;
  margin: 0px;
}

/* ▼ ここが「テキストをズラッと3行」部分 */

.clients-lines {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.clients-lines p {
  margin: 0 0 4px;
}


@media (max-width: 768px) {
 .clients-section {
    padding: 0px 24px 3px;
  }
}


/* =========================
   WE ARE / ABOUT TEASER
   ========================= */

.about-teaser {
  background: #131417;
  color: #ffffff;
  padding: 160px 24px 340px;
  position: relative;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

/* 写真（中央配置・角丸なし） */
.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 780px;
  height: 480px;
  background: url("../images/about_main.jpg") center center / cover no-repeat;
  transform: translateY(0);
  will-change: transform;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

/* =====================
   左側テキスト（はみ出し配置）
   ===================== */

.about-text-left {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 410px), -60%);
    text-align: left;
    z-index: 3;
    max-width: 410px;
}
.about-title {
  font-family: "YuMincho", serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  line-height: 1;
}

.about-body-ja {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
}

.about-body-en {
  font-family: "YuMincho", serif;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin: 0;
}

/* =====================
   右側ボタン（はみ出し配置）
   ===================== */

.about-button-right {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 550px), 70%);
  /* ↑ 写真中央から右へ 300px ずらす（はみ出し） */
  z-index: 3;
}

.about-button {
  display: inline-flex;
  padding: 12px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.about-button:hover {
  background: #ffffff;
  color: #111111;
}

/* =====================
   スマホ対応
   ===================== */

@media (max-width: 768px) {

  .about-photo {
    height: 300px;
  }
  .about-teaser {
    padding: 160px 24px 80px;
  }

  /* ▼ 左テキスト：absolute を解除 */
  .about-text-left {
    position: static;          /* ← ここ重要 */
    transform: none;           /* ← translate解除 */
    max-width: 90%;
    margin: 24px auto 0;       /* 写真の下に余白 */
    text-align: center;
  }

  /* ▼ 右ボタン：absolute を解除 */
  .about-button-right {
    position: static;          /* ← ここ重要 */
    transform: none;
    margin: 24px auto 0;
    text-align: center;
  }

  .about-title {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }

  .about-body-ja {
      line-height: 1.3;
    }
  

  .about-body-en {
      font-family: "YuMincho", serif;
      font-size: 10px;
      line-height: 1.8;
      letter-spacing: 0.12em;
      margin: 0;
       color: rgb(145, 145, 145);
}
}



/* =========================
   OUR GENRE セクション
   ========================= */

/* ページ全体の中央寄せ用（GENRE部分） */

.page-wrap {
  max-width: 1280px;      
  margin: 0 auto;
  padding: 80px 24px 120px;
}

@media (max-width: 768px) {
  .page-wrap {
    padding: 48px 16px 64px;
  }
}

/* セクション本体 */

.genre-section {
  max-width: 100%;     
  width: 100%;
  padding: 80px 0 100px; 
  box-shadow: none;      
  border-radius: 0;    
}


@media (max-width: 960px) {
  .genre-section {
    padding: 32px 20px 48px;
    box-shadow: none;
  }
}

/* 上部：OUR GENRE 見出し */

.genre-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.genre-pill-circle {
  width: 37.072px;
  height: 37.68px;
  border-radius: 23.591px;
  background: var(--green-main);
  position: relative;
  flex-shrink: 0;
}

.genre-pill-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.7;
}

.genre-top-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.genre-pill-text {
  font-weight: 500;
  font-size: 18.6px;
  line-height: 22.3px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.genre-pill-sub {
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .genre-top {
    flex-direction: column;
    align-items: flex-start;

  /* OUR GENRE 全体を横並びに */
  .genre-top {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  /* 丸はそのまま装飾として */
  .genre-pill-circle {
    width: 28px;
    height: 28px;
  }

  /* テキスト群を横並び用に調整 */
  .genre-top-texts {
    gap: 2px;
  }

  /* OUR GENRE（装飾ラベル） */
  .genre-pill-text {
    font-size: 12px;
    letter-spacing: 0.18em;
    opacity: 0.6;
    line-height: 1;
  }

  /* メインコピー */
  .genre-pill-sub {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    white-space: normal; /* 折り返し許可 */
  }

  }
}

/* 下段レイアウト：左追尾＋右カード */

.genre-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .genre-layout {
    grid-template-columns: 1fr;
  }
}

/* 左：02 / Genre / 各対応ジャンルについて（sticky） */

.genre-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.genre-index-num {
  font-size: 95.5px;
  line-height: 99px;
  color: var(--green-main);
  letter-spacing: 0.2px;
}

.genre-index-title {
  font-weight: 500;
  font-size: 20.1px;
  line-height: 32.2px;
  letter-spacing: 0.6px;
}

.genre-index-sub {
  font-size: 13.4px;
  line-height: 28.2px;
  letter-spacing: 0.2px;
  color: var(--text-sub);
}

@media (max-width: 768px) {
  .genre-side {
    position: static;   /* ← これで追従終了 */
    top: auto;
  }
  .genre-index-num {
    font-size: 40px;
    line-height: 39px;
  }
  .genre-side{
   gap:0px;
  }

}


/* 右：カードグリッド */

.genre-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(388.17px, 1fr)); /* ★ 1列の最低幅をカード幅に合わせる */
  gap: 32px 32px;
}

@media (max-width: 960px) {
  .genre-cards-grid {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .genre-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* カード全体リンク */

.genre-card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.genre-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 写真（388.17 × 485.21 固定） */

.genre-card-media {
  position: relative;
  width: 388.17px;
  height: 485.21px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  /* verflow: hidden;*/
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

@media (max-width: 420px) {
  .genre-card-media {
    width: 100%;
    height: auto;
    aspect-ratio: 388.17 / 485.21;
  }
}

.genre-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 0,
      rgba(0, 0, 0, 0.16),
      transparent 55%
    )
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.35));
  mix-blend-mode: multiply;
  transition: opacity 0.2s ease;
}

/* ダミー画像背景（ここを自社写真に差し替え） */

.genre-card-media--01 {
  background-image:  url("../images/genre1.jpg") 
}
.genre-card-media--02 {
  background-image: url("../images/genre2.jpg") ;
}
.genre-card-media--03 {
  background-image: url("../images/genre3.jpg") ;
}
.genre-card-media--04 {
  background-image: url("../images/genre4.jpg") ;
}
.genre-card-media--05 {
  background-image: url("../images/genre5.jpg") ;
}
.genre-card-media--06 {
  background-image: url("../images/genre6.jpg") ;
}

/* ホバー演出 */

.genre-card-link:hover .genre-card-media,
.genre-card-link:focus-visible .genre-card-media {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.genre-card-link:hover .genre-card-media::before,
.genre-card-link:focus-visible .genre-card-media::before {
  opacity: 0.8;
}

/* 写真上のラベル */

.genre-card-media-label {
    position: absolute;
    left: 26px;
    top: 37px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    backdrop-filter: blur(2px);

}

.genre-card-media-num {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}

.genre-card-media-en {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #ffffff;
  white-space: nowrap;
}

/* 写真下のテキスト */

.genre-card-ja {
  font-size: 16px;
  line-height: 28px;
  margin-top: 4px;
}

.genre-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.genre-chip {
  border-radius: 70px;
  border: 1px solid var(--chip-border);
  padding: 2px 16px;
  font-size: 12px;
  line-height: 29px;
  letter-spacing: 0.19px;
  white-space: nowrap;
  color: #23352b;
  background: #ffffff;
}


@media (max-width: 768px) {
  .genre-card-chips{
    margin-top: 0px;
  }
  .genre-chip{
    padding: 2px 16px;
    line-height: 20px;
    font-size: 10px;
  }
  .genre-card-ja{
    line-height: 18px;
  }
  .genre-card-media-en {
    white-space: normal;
  }
}



/* =========================
   OUR GENRE / SERVICE 列
   ========================= */

/* 右側：Photo / WEB / Graphic を縦に並べるコンテナ */
.genre-services {
  display: flex;
  flex-direction: column;
  gap: 72px;               /* ブロック間の余白（Figma の感覚に寄せて調整） */
}

/* 1ブロック（Photo / WEB / Graphic） */
.genre-service-block {
  max-width: 810px;        /* 本文の行長を適度に制限 */
}

/* 見出し行（左にタイトル、右に矢印ボタン） */
.genre-service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

/* Photo / WEB / Graphic の書体感 */
.genre-service-title {
  margin: 0;
  font-size: 60px;         /* Figma の印象に近い大きめサイズ */
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* 説明文（日本語） */
.genre-service-body {
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
  color: var(--text-main);
}

/* 区切り線（Photo─WEB / WEB─Graphic の間） */
.genre-service-divider {
  margin-top: 40px;
  border-bottom: 1px solid #e3e3e3;
}

/* 矢印ボタン（上の Photo 行右端の白いカプセル） */
.genre-service-arrow {
  width: 60px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.genre-service-arrow-icon {
  font-size: 16px;
  transform: translateX(1px); /* ほんの少し右寄せっぽく */
}

/* ホバー時はうっすらトーン変化 */
.genre-service-arrow:hover {
  border-color: #bbbbbb;
}

/* モバイル調整 */
@media (max-width: 768px) {
  .genre-service-title {
    font-size: 40px;
  }
  .genre-services {
    gap: 56px;
  }
}


/* フッター直前のビジュアルセクション */
.footer-visual {
  position: relative;
  width: 100%;
  max-width: none;
}

.footer-visual__bg {
  width: 100%;
  height: 32vh;
  background-image:  url("../images/F_visual_main.jpg"); /* 木漏れ日の背景など */
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.footer-visual__text {
position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 23vw;
    color: white;
    font-weight: 300;
    white-space: nowrap;
    animation: slide-left 49s 
linear infinite;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-visual__image {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 200px;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}



.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("../images/hero_main.jpg") center center / cover no-repeat;
  transform: scale(1) translateY(0); /* ← scaleも使う */
  will-change: transform, filter;
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
  z-index: 0;
}


 /* フッター */

/* ========= フッター全体 ========= */
.site-footer {
  width: 100%;
  background-color: #e7eee6;
  padding: 60px 0;
}

/* ========= フッター中身（中央に幅制限） ========= */
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;

  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

/* ========= 左エリア（ロゴ） ========= */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
}

.footer-copyright {
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

/* ========= 中央エリア（ナビ） ========= */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}

.footer-nav a {
  text-decoration: none;
  color: #000;
  padding-left: 0;
  border-left: 4px solid transparent;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}

/* ========= 右エリア（お問い合わせなど） ========= */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.footer-links a {
  font-size: 24px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #999;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.footer-links .privacy {
  font-size: 11px;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-links a:last-child {
  padding: 8px 20px;
  font-size: 16px;
  border: 1px solid #999;
  border-radius: 30px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.footer-links a:last-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* ========= レスポンシブ対応 ========= */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-logo{
    font-size: 28px;
  }

  .footer-year{
    font-size:12px;
  }

  .footer-menu {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-right {
    align-items: center;
  }
}









/* 下層ページ作ったら解放してください */
.genre-card-link {
  pointer-events: none;
  cursor: default;
}









/* ■ nav を最前面に */
.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3000 !important;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ■ nav 開いた状態 */
.nav-fade.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

/* ■ ヘッダーとボタン順 */
.site-header {
  z-index: 2500 !important;
}
.hamburger-fade {
  z-index: 2600 !important;
}

/* ■ hero 周りがクリック奪わないよう */
.hero-overlay,
.hero-bg {
  pointer-events: none !important;
}

/* ■（必要に応じ）page-root の transform/filter を解除
.page-root {
  transform: none !important;
  filter: none !important;
}
   */

.hamburger-fade {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3100 !important;
}


.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 3100; /* ← ここを十分に高く */
}

.hamburger-fade {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3200; /* ← メニューよりさらに上にする */
}

.hero-bg,
.hero-overlay {
  z-index: 0 !important;
}


.hamburger-fade {
  position: fixed; /* ← relative ではなく fixed にするのが安全 */
  top: 24px;       /* お好みで調整 */
  right: 24px;
  z-index: 9999;   /* nav-fade や nav-fade__bg より高く */

pointer-events: auto;}


.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  z-index: 1; /* 背景なので低く */
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade__wrapper {
  position: relative;
  z-index: 2; /* 背景の上に来るように */
}

.nav-fade {
  z-index: 3000; /* かなり高めに設定 */
}



/* =========================
   下層ページ共通（About / Service / Works）
   ========================= */

/* 下層KV */
.page-hero {
  position: relative;
  height: 90vh;
  min-height: 420px;
  padding-top: 72px; /* 固定ヘッダー分 */
  overflow: hidden;
  background: #000;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  text-align: center;         /* 文字も中央 */
}

.page-hero__title {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.18em;
  color: #ffffff;
  font-weight: 400;
}

/* 下層ページ HERO タイトル */
.page-hero__title {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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


/* =========================
   パンくず
   ========================= */

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

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-sub);
}

.breadcrumb li::after {
  content: "—";
  margin-left: 12px;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb a {
  color: var(--text-sub);
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

/* =========================
   パンくず フェードイン
   ========================= */

.breadcrumb {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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



/* =========================
   下層KV パララックス用
   ========================= */

.page-hero__bg {
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

/* =========================
   下層KV タイトル フェードイン
   ========================= */



/* 表示状態 */
.page-hero.is-visible .page-hero__title {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   下層コンテンツ領域
   ========================= */

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

/* =========================
   下層ページ 本文 スクロール表示（共通）
   ========================= */

.js-scroll-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scroll-reveal > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Aboutページ：スクロール演出を無効化（保険）
   ========================= */

.about-intro .js-scroll-reveal > * {
  opacity: 1;
  transform: none;
}

/* =========================
   About us 本文
   ========================= */

.about-intro {
  max-width: 820px;
}

.about-intro__lead {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  font-weight: 400;
}

.about-intro__text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--text-sub);
}


/* =========================
   About Mission Value Vision 
   ========================= */

   .mvv-section {
  padding: 120px 40px;
  background: #fff;
}

.mvv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.mvv-title {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
}

.mvv-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #444;
  margin-left: 6px;
}

.mvv-heading {
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mvv-heading-sub {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.mvv-metric {
  margin-bottom: 32px;
}

.mvv-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
}

.mvv-row span:last-child {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.mvv-list {
  padding-left: 1.2em;
  margin-bottom: 24px;
  line-height: 1.9;
}

.mvv-text {
  font-size: 14px;
  line-height: 2;
}

.mvv-block {
  margin-bottom: 40px;
}

.mvv-block h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.mvv-block ul {
  padding-left: 1.2em;
  line-height: 1.8;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .mvv-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .mvv-title {
    font-size: 54px;
  }
  .mvv-sub{
    font-size: 15px;
  }
  .mvv-heading{
    margin-bottom: 0px;
  }
  .mvv-section{
    padding: 80px 20px;
    border-bottom: 1px solid #e5e5e5;
  }
  
}



/* =========================
   About Journey（最終）
   ========================= */

.about-journey {
  padding: 160px 24px 200px;
}

.about-journey__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* 左：固定写真 */
.about-journey__image-wrap {
  position: sticky;
  top: 120px;
  overflow: hidden;
   z-index: 2; 
}


.about-journey__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: url("../images/about_journey.jpg") center / cover no-repeat;

  transform: translateY(0) scale(1.03);
  filter: brightness(0.9);
  opacity: 1;

  will-change: transform, filter;
}

.about-journey__image {
  position: relative;
  z-index: 1; /* ← これ */
}

/* 右：テキスト */
.about-journey__text {
  max-width: 520px;
}

.about-journey__en {
  font-size: 14px;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.about-journey__title {
  font-family: "YuMincho", serif;
  font-size: 28px;
  margin-bottom: 64px;
  font-weight: 400;
}

.about-journey__block {
  margin-bottom: 64px;
}

.about-journey__year {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  color: var(--text-sub);
}

.about-journey__block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}


.about-journey__block p {
  font-size: 14px;
  line-height: 2;
}
/* =========================
   About Journey：読ませる色・存在感演出
   ========================= */

/* 初期状態：静かに沈める */
.about-journey__block h3,
.about-journey__block p {
  color: #c6c6c6;
  opacity: 0.85;
  transition:
    color 0.9s ease,
    opacity 0.9s ease;
}

/* is-active：まず存在感を立ち上げる */
.about-journey__block.is-active h3,
.about-journey__block.is-active p {
  opacity: 1;
}

/* タイトル：先に黒く */
.about-journey__block.is-active h3 {
  color: #111111;
}

/* 本文：ワンテンポ遅れて濃く */
.about-journey__block.is-active p {
  color: #444444;
  transition-delay: 0.35s;
}




/* =========================
   スマホ調整
   ========================= */
@media (max-width: 900px) {
  .about-journey{
    padding: 160px 24px 60px;
  }
  .about-journey__inner {
    grid-template-columns: 1fr;
  }

  .about-journey__image-wrap {
    position: relative;
    top: auto;
  }
}




/* =========================
   スマホ調整
   ========================= */

@media (max-width: 768px) {


  .page-hero__title {
    font-size: 36px;
    letter-spacing: 0.14em;
  }

  .content {
    margin: 80px auto 120px;
  }

  .about-intro__lead {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .about-intro__text{
    font-size: 15px;
    line-height: 1.5;
  }
}

  .page-about .page-hero {
    height: 40vh;
    min-height: 240px; /* 文字が潰れない保険 */
  }



/* =========================
   Company Information
========================= */

.company-info {
  background: #26352d; /* 今のトーンに合わせた深緑 */
  padding: 160px 24px 200px;
  color: #ffffff;
}

.company-info__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 左テキスト */

.company-info__en {
  font-size: 13px;
  letter-spacing: 0.14em;
  opacity: 0.7;
  margin-bottom: 12px;
}

.company-info__jp {
  font-family: "YuMincho", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}

.company-info__list {
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 12px;
  column-gap: 16px;
  margin-bottom: 48px;
  font-size: 14px;
}

.company-info__list dt {
  opacity: 0.7;
}

.company-info__list dd {
  margin: 0;
}

.company-info__sub {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}

.company-info__desc {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
}

/* =========================
   右：クロスフェード画像
========================= */

.company-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

 .company-visual__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}

.company-visual__image.is-active {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   SP
========================= */

@media (max-width: 900px) {
  .company-info{
    padding: 110px 24px 90px;
  }
  
  .company-info__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .company-info__jp{
    margin-bottom: 20px;
  }
  .company-info__en{
    margin-bottom: 0px;
  }
.company-info__desc{
    line-height: 1.5;
}
  .company-visual {
    max-width: 100%;
    justify-self: center;
  }
  .company-info__list{
    row-gap: 2px;
  }

}

/* =========================
   Privacy Policy 専用
   ========================= */



/* 本文エリア */

.content--policy {
  max-width: 780px;
  margin: 120px auto 160px;
  padding: 0 24px;

  color: #000;
}

/* 見出し */
.content--policy h2 {
  margin-top: 64px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
}

/* 本文 */
.content--policy p {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}



/* =========================
   Lower Page HERO（Simple / Plain）
   ========================= */

/* 本体 */
.page-hero.page-hero--simple {
  position: relative;
  height: auto;
  min-height: unset;
  padding-top: 72px;   /* 固定ヘッダー分 */
  padding-bottom: 56px;
  background: #ffffff;
  overflow: hidden;
}

/* 疑似要素（暗転）を完全に無効化 */
.page-hero.page-hero--simple::after {
  display: none;
  content: none;
}

/* 背景画像レイヤーを無効化 */
.page-hero.page-hero--simple .page-hero__bg {
  display: none;
}

/* 中身の高さ（最低限） */
.page-hero.page-hero--simple .page-hero__inner {
  min-height: 160px;
}

/* 左寄せレイアウト */
.page-hero.page-hero--simple .page-hero__inner {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

/* タイトル */
.page-hero.page-hero--simple .page-hero__title {
  color: #000;
  font-weight: 400;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  .page-hero.page-hero--simple {
    padding-top: 0px;
  }
}

/* =========================
   404 Page
   ========================= */

.error-404 {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.error-404__inner {
  max-width: 520px;
  text-align: center;
}

/* 404 数字 */
.error-404__code {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN",
    "Noto Serif JP", serif;
  font-size: 56px;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

/* 見出し */
.error-404__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* 説明文 */
.error-404__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--text-sub);
  margin-bottom: 48px;
}

/* TOPへ戻るボタン */
.error-404__button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 999px;
  border: 1px solid #000;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.error-404__button:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* スマホ調整 */
@media (max-width: 768px) {
  .error-404__code {
    font-size: 42px;
  }
  .error-404__text{
    line-height: 1.25;
  }
}



/* =========================
   Contact Page
========================= */

.contact-page {
  max-width: 780px;
  margin: 120px auto 160px;
}

.contact-header {
  margin-bottom: 56px;
}

.contact-title {
  font-family: "YuMincho", serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-lead {
  font-size: 14px;
  color: var(--text-sub);
}

/* フォーム */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
}

.required {
  color: #e53935;
  font-size: 11px;
  margin-left: 8px;
  border: 1px solid #e53935;
  padding: 2px 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  background: #fff;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* プライバシー */

.form-privacy {
  margin-top: 16px;
  font-size: 13px;
}



/* 送信ボタン */

/* =========================
   プライバシーポリシー同意
   ========================= */

.form-privacy {
  margin: 40px 0 48px;
  text-align: center; /* 全体は中央 */
}

.form-privacy label {
  display: inline-flex;       /* 横並びにする */
  align-items: center;        /* 縦位置を揃える */
  gap: 12px;

  font-size: 14px;
  color: #111;
  cursor: pointer;
}

/* チェックボックス */
.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* =========================
   送信ボタン
   ========================= */

.form-submit {
  text-align: center;
}

.form-submit button {
  min-width: 240px;
  padding: 16px 32px;

  background: #111;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;

  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.form-submit button:hover {
  opacity: 0.8;
}

/* =========================
   Contact Confirm Page
========================= */

/* レイアウトは contact-page をそのまま使う */
.contact-page.confirm {
  max-width: 780px;
  margin: 120px auto 160px;
}

/* フォーム構造も共通 */
.contact-form.confirm {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 各項目 */
.contact-form.confirm .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ラベルはそのまま */
.contact-form.confirm .form-group label {
  font-size: 13px;
}


/* =========================
   Contact Confirm（Visual Tune）
========================= */

/* 全体 */
.contact-page.confirm {
  max-width: 780px;
  margin: 120px auto 160px;
}

/* 説明文 */
.confirm-lead {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 64px;
}

/* フォーム */
.contact-form.confirm {
  display: flex;
  flex-direction: column;
  gap: 56px; /* ← 余白を大きめに */
}

/* 各項目 */
.contact-form.confirm .form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ラベル */
.contact-form.confirm .form-group label {
  font-size: 13px;
  color: #111;
}

/* 必須バッジ（スクショ寄せ） */
.contact-form.confirm .required {
  color: #e53935;
  font-size: 11px;
  margin-left: 8px;
  border: 1px solid #e53935;
  padding: 1px 6px;
  line-height: 1.4;
}

/* =========================
   確認用テキスト（下線のみ）
========================= */

.form-confirm {
  padding: 0 0 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #555;

  border-bottom: 1px solid #bdbdbd;
}

/* textarea 相当 */
.form-confirm--textarea {
  padding-bottom: 20px;
}

/* =========================
   アクションエリア
========================= */

.confirm-actions {
  margin-top: 80px;
  text-align: center;
}

/* 修正リンク */
.confirm-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}

/* 送信ボタン */
.confirm-actions button {
  min-width: 280px;
  padding: 18px 40px;

  background: #111;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;

  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.confirm-actions button:hover {
  opacity: 0.85;
}



/* =========================
   Contact Thanks Page
========================= */

.contact-thanks {
  max-width: 780px;
  margin: 160px auto 200px;
  text-align: center;
}

/* タイトル */
.thanks-title {
  font-family: "YuMincho", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
  
}

/* 日本語メッセージ */
.thanks-message-ja {
  font-size: 14px;
  line-height: 2.2;
  color: #111;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* 英語メッセージ（グレー） */
.thanks-message-en {
  font-size: 13px;
  line-height: 2;
  color: #999; /* ★ 指定どおりグレー */
  margin-bottom: 64px;
  line-height: 1.75;
}

/* ボタン */
.thanks-action {
  text-align: center;
}

.thanks-button {
  display: inline-block;
  min-width: 200px;
  padding: 14px 32px;

  font-size: 13px;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;

  border: 1px solid #999;
  border-radius: 999px;

  transition: background 0.3s ease, color 0.3s ease;
}

.thanks-button:hover {
  background: #111;
  color: #fff;
}


/* =========================
   CTA Section
========================= */

.cta-section {
  position: relative;
  background: #fff;
}

.cta-border {
  width: 100%;
  height: 1px;
  background: #d6d6d6;
}

.cta-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

/* =========================
   左：ビジュアル
========================= */

.cta-visual__bg {
  background: #e3eadf; 
  aspect-ratio: 1 / 1;    
  width: 100%;
  max-width: 520px;         

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0;                /* 正方形を崩さない */
}

/* 中の写真 */
.cta-visual__bg img {
  width: 55%;                
  height: auto;
  display: block;
}

/* =========================
   右：テキスト
========================= */

.cta-content {
  max-width: 520px;
}

.cta-title {
  font-family: "YuMincho", serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-flow {
  margin-bottom: 64px;
  padding-left: 1.2em;
  line-height: 2;
  font-size: 14px;
}

/* =========================
   ボタン
========================= */

.cta-button-wrap {
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #111;
  color: #fff;
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

/* =========================
   レスポンシブ
========================= */

@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .cta-visual__bg {
    padding: 48px;
  }

  .cta-visual__bg img {
    width: 70%;
  }
}



/* =========================
  recaptcha
========================= */
.grecaptcha-badge {
  display: none !important;
}
.recaptcha-note {
  margin: 24px;
  font-size: 11px;
  color: #999;
  text-align: center;
}



.wpcf7 .wpcf7-submit:disabled{
    background: #000;
    color: #fff;
}