/*
Theme Name: booster_origin
Author: Crossroad Co., Ltd.
*/
@charset "utf-8";

:root {
  /* テーマカラー */
  --color-primary: #E65C00;
  --color-primary-hover: #CC5200;
  --color-callcenter: #E65C00;
  --color-callcenter-sub: #f4760a;
  --color-villa: #3B823E;
  --color-villa-sub: #67c05e;
  --color-villa-hover: #2e6a30;
  --color-villa-light: rgba(59, 130, 62, 0.08);
  --color-main-focus: rgba(59, 130, 62, 0.2);

  /* ベースカラー */
  --color-text-main: #1a1a1a;
  --color-text-sub: #555555;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-bg-base: #FFFFFF;
  --color-bg-warm: #fbf6eb;
  --color-bg-light: #F4F6F8;
  --color-bg-beige: #FDFBF7;
  --color-bg-gray: #F4F6F8;
  --color-dark: #2C3643;
  --color-cta-dark: #1E2D3D;
  --color-border: #dbd8d2;
  --color-border2: #d1cdc4;
  --color-border-tree: #D1D5DB;
  --color-danger: #D94436;

  /* フォント */
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Noto Sans", sans-serif;
}
html :where([style*=border-color]){
  border-style: initial;
}
body {
  font-family: var(--font-base);
  font-size: 17px;
  color: var(--color-text-main);
  line-height: 1.8;
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.small-text {
  font-size: 15px;
}

.text-primary-custom {
  color: var(--color-primary) !important;
}

/* ボタン共通 */
.btn-primary-custom {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  transition: background-color 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
}

/* セクション見出し（中央） */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* セクション見出し（左寄せ） */
.section-subtitle {
  position: relative;
  padding-bottom: 12px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* ==============================================
       ヘッダー
       ============================================== */
.site-header {
  border-bottom: 1px solid #EAEAEA;
  background-color: #fff;
  z-index: 10000;
}

.custom-logo {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 9999;
}

/* wp_nav_menu対応（PC） */
.header-nav ul.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li {
  position: relative;
}

.header-nav ul.menu a {
  color: var(--color-text-main);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  white-space: nowrap;
  display: block;
  padding: 10px 0;
}

.header-nav ul.menu a:hover {
  color: var(--color-primary);
}

/* サブメニュー（PC） */
.header-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  z-index: 1000;
}

.header-nav li:hover>.sub-menu,
.header-nav li.is-keyboard-open>.sub-menu {
  display: flex;
}

.header-nav .sub-menu {
  list-style: none;
}

.header-nav .sub-menu li {
  width: 100%;
}

.header-nav ul.sub-menu a {
  padding: 8px 20px;
  font-size: 14px;
}

.header-nav .sub-menu a:hover {
  background-color: rgba(230, 92, 0, 0.05);
  color: var(--color-primary);
}

/* ハンバーガーボタン */
.hamburger-btn {
  width: 48px;
  height: 48px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 9999;
}

.hamburger-btn span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 3px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger-btn span:nth-child(1) {
  top: 14px;
}

.hamburger-btn span:nth-child(2) {
  top: 22px;
}

.hamburger-btn span:nth-child(3) {
  top: 30px;
}

.hamburger-btn.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9998;
  padding: 80px 24px 40px;
  /* 上部に余白 */
  overflow-y: auto;
  /* アニメーション */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.mobile-menu-nav>li {
  border-bottom: 1px solid #eee;
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 0;
  color: var(--color-text-main);
  font-weight: 500;
  font-size: 17px;
}

/* サブメニュー（モバイル） */
.mobile-menu-nav .sub-menu {
  display: none;
  /* JSで開閉 */
  list-style: none;
  padding-left: 16px;
  margin-bottom: 16px;
}

.mobile-menu-nav .sub-menu a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-text-muted);
}

/* アコーディオンの矢印アイコン */
.mobile-menu-nav li.menu-item-has-children>a {
  position: relative;
}

.mobile-menu-nav li.menu-item-has-children>a::after {
  content: '\f078';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  font-size: 14px;
  color: var(--color-text-muted);
}

.mobile-menu-nav li.menu-item-has-children.is-active>a::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-menu-cta {
  margin-top: 24px;
}

/* ==============================================
       ファーストビュー（FV）
       ============================================== */
.fv-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
}

/* PC: 右側に画像エリア（幅を40%に縮小） */
.fv-image-area {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background: url('./img/fv_image.jpg') no-repeat center center;
  background-size: cover;
}

.fv-image-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.fv-text-area {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.fv-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.fv-sub {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* FV内ナビボタン */
.fv-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  /* 横に伸びすぎないよう制限 */
}

.fv-nav-btn {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s;
  overflow: hidden;
  /* 画像の角丸処理 */
}

/* コールセンター：薄いオレンジ背景 */
.fv-nav-btn.cc {
  background-color: rgba(230, 92, 0, 0.07);
  border: 1.5px solid rgba(230, 92, 0, 0.3);
  box-shadow: 0 2px 12px rgba(230, 92, 0, 0.12);
  color: var(--color-callcenter);
}

.fv-nav-btn.cc:hover {
  background-color: rgba(230, 92, 0, 0.13);
  color: var(--color-callcenter);
  box-shadow: 0 4px 18px rgba(230, 92, 0, 0.2);
}

/* 別荘地：薄いグリーン背景 */
.fv-nav-btn.villa {
  background-color: rgba(59, 130, 62, 0.07);
  border: 1.5px solid rgba(59, 130, 62, 0.3);
  box-shadow: 0 2px 12px rgba(59, 130, 62, 0.12);
  color: var(--color-villa);
}

.fv-nav-btn.villa:hover {
  background-color: rgba(59, 130, 62, 0.13);
  color: var(--color-villa);
  box-shadow: 0 4px 18px rgba(59, 130, 62, 0.2);
}

/* ボタン左の写真エリア（余白なし） */
.fv-nav-btn-img {
  flex-shrink: 0;
  width: 90px;
  object-fit: cover;
  display: block;
  margin: 0;
}

/* ボタン右のテキストエリア */
.fv-nav-btn-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px 14px 18px;
  flex: 1;
}

.fv-nav-btn-text-main {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.fv-nav-btn-text-sub {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.fv-nav-btn-chevron {
  display: flex;
  align-items: center;
  padding-right: 14px;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 991.98px) {
  .fv-section {
    min-height: auto;
    flex-direction: column;
  }

  .fv-image-area {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .fv-image-area::before {
    display: none;
  }

  .fv-text-area {
    padding: 32px 0 24px;
  }

  .fv-nav-btns {
    flex-direction: column;
  }

  .fv-nav-btn {
    min-width: 100%;
    flex: auto;
  }
}
@media(min-width:800px){
  .fv-heading{
    font-size: 3.6vw;
  }
}
@media(min-width:992px){
  .fv-heading{
    font-size: 2.4rem;
  }
}
@media(min-width:1200px){
  .fv-heading{
    font-size: 2.6rem;
  }
}
/* ==============================================
       大切にしていること（仕組みセクション）
       ============================================== */
.value-section {
  background-color: #DCE4EC;
  padding: 80px 0;
}

/* フロー矢印レイアウト */
.value-flow-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.value-flow-item {
  flex: 1;
  background: #fff;
  border: 1px solid #E0E4E8;
  border-radius: 12px;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.value-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--color-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-ill {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.value-step-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 12px 2px;
}

.value-step-label.c1 {
  background-color: var(--color-primary);
}

.value-step-label.c2 {
  background-color: #4A90D9;
}

.value-step-label.c3 {
  background-color: #3B823E;
}

.value-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* SP：縦積み＋下向き矢印 */
@media (max-width: 767.98px) {
  .value-flow-row {
    flex-direction: column;
  }

  .value-flow-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* ==============================================
       支援領域（ジグザグレイアウト）
       ============================================== */
.domain-section {
  padding: 80px 0;
  background: #fff;
}

.domain-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 80px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  width: calc(50% - 1.5rem);
}

.domain-row:last-child {
  margin-bottom: 0;
}

.btn-domain-primary,
.btn-domain-ghost {
  justify-content: center;
}

/* イラストエリア */
.domain-ill-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  flex: auto;
  max-width: 100%;
}

.domain-ill-col img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* テキストエリア */
.domain-text-col {
  padding: 20px 40px 48px;
}

/* ジグザグ: 偶数行は画像右・テキスト左 */
@media (max-width: 991.98px) {
  .domain-text-col {
    padding: 32px 24px;
  }
}

/* カラー帯背景 */
.domain-row.cc-row {
  background-color: #FFF8F4;
  border-radius: 16px;
}

.domain-row.villa-row {
  background-color: #F4FAF4;
  border-radius: 16px;
}

/* 対象ラベル */
.domain-target-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.cc-row .domain-target-label {
  color: var(--color-callcenter);
}

.villa-row .domain-target-label {
  color: var(--color-villa);
}

/* 事業名 */
.domain-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cc-row .domain-title {
  color: var(--color-callcenter);
}

.villa-row .domain-title {
  color: var(--color-villa);
}

/* チェックリスト */
.domain-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.domain-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 8px;
}

.domain-checklist li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cc-row .domain-checklist li::before {
  color: var(--color-callcenter);
}

.villa-row .domain-checklist li::before {
  color: var(--color-villa);
}

/* 業務内容リスト */
.domain-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.domain-list-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px dotted #ccc;
}

.domain-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

.cc-row .domain-list-icon {
  background-color: var(--color-callcenter-sub);
}

.villa-row .domain-list-icon {
  background-color: var(--color-villa-sub);
}

/* マイクロコピー */
.domain-micro-copy {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.domain-micro-copy::before {
  content: "＼";
  margin-right: 4px;
}

.domain-micro-copy::after {
  content: "／";
  margin-left: 4px;
}

/* ボタン：プライマリ（塗りつぶし） */
.btn-domain-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s;
}

.cc-row .btn-domain-primary {
  background-color: var(--color-callcenter);
}

.cc-row .btn-domain-primary:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
}

.villa-row .btn-domain-primary {
  background-color: var(--color-villa);
}

.villa-row .btn-domain-primary:hover {
  background-color: var(--color-villa-hover);
  color: #fff;
}

/* ボタン：セカンダリ（ゴーストボタン） */
.btn-domain-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  background: #fff;
  transition: all 0.3s;
}

.cc-row .btn-domain-ghost {
  border: 1.5px solid var(--color-callcenter);
  color: var(--color-callcenter);
}

.cc-row .btn-domain-ghost:hover {
  background: var(--color-callcenter);
  color: #fff;
}

.villa-row .btn-domain-ghost {
  border: 1.5px solid var(--color-villa);
  color: var(--color-villa);
}

.villa-row .btn-domain-ghost:hover {
  background: var(--color-villa);
  color: #fff;
}

/* ボタングループ */
.domain-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* SP: domain-row縦積み */
@media (max-width: 991.98px) {
  .domain-row {
    width: 100%;
  }

  .domain-row,
  .domain-row.reverse {
    margin-bottom: 48px;
  }

  .domain-ill-col {
    padding: 24px 16px 0;
  }

  .domain-ill-col img {
    max-width: 200px;
  }
}
@media(max-width:767px){
  .domain-btn-group>a{
    width: 100%;
  }
}
@media(min-width:992px) {
  .domain-row {
    margin-bottom: 0 !important;
  }
}

/* ==============================================
       実績セクション（統合）
       ============================================== */
.results-section {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

.results-h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.results-h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.results-h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.interview-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.interview-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.interview-card-body {
  padding: 14px 16px;
}

.interview-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.interview-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.logo-box {
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px;
  background: #fff;
  font-weight: bold;
  font-size: 13px;
  color: #999;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==============================================
       代表プロフィール
       ============================================== */
.profile-section {
  padding: 80px 0;
  background-color: var(--color-bg-beige);
}

.profile-img {
  width: 180px;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-block-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.profile-block p {
  font-size: 16px;
  margin-bottom: 0;
}

/* ==============================================
       お知らせ
       ============================================== */
.home .news-section {
  padding: 60px 0;
}

.home .news-section .news-list {
  list-style: none;
  padding: 0;
}

.home .news-section .news-list li {
  border-bottom: 1px solid #EAEAEA;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .home .news-section .news-list li {
    flex-direction: row;
    align-items: center;
  }
}

.news-date {
  color: var(--color-text-muted);
  font-size: 15px;
  min-width: 120px;
  margin-bottom: 4px;
}

/* ==============================================
       Bottom CTA
       ============================================== */
.bottom-cta {
  padding: 40px 0 60px;
}

.bottom-cta-box {
  background-color: var(--color-cta-dark);
  border-radius: 20px;
  padding: 56px 48px;
  color: #fff;
}

.bottom-cta-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.bottom-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

@media (max-width: 767.98px) {
  .bottom-cta-box {
    padding: 40px 24px;
  }

  .bottom-cta-box h2 {
    font-size: 20px;
  }
}

/* ==============================================
  フッター
============================================== */
.site-footer {
  background-color: #2C3643;
  color: #FFFFFF;
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: color 0.3s;
}
.footer-sub-nav a {
  font-size: 15px;
}
.footer-nav a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.footer-nav .sub-menu {
  list-style: none;
  padding-left: 12px;
  margin-top: 8px;
}
.footer-nav a:not([href]) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  pointer-events: none;
  cursor: default;
}

.footer-nav .sub-menu a:hover {
  color: #fff;
}
.footer-nav .sub-menu a::before {
  content: "- ";
  margin-right: 4px;
  opacity: 0.6;
}

/* AOSアニメーションの上書き（移動幅を30pxに変更） */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}

/* ==============================================
  ページヘッダー（ヒーロー型）
============================================== */
.page-hero {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    height: 250px;
  }
}

@media (min-width: 992px) {
  .page-hero {
    height: 300px;
  }
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* オーバーレイ（濃いグレー系） */
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
}
.page-about .page-hero-bg::after{
  background: rgba(255, 255, 255, 0.8);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #2C3643;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* パンくずリスト */
.breadcrumb-nav {
  background-color: var(--color-bg-base);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-nav .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 14px 0;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: var(--color-villa);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--color-text-main);
}

.breadcrumb-nav .breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  padding-right: 0.5rem;
  color: var(--color-text-light);
  content: ">";
}

/* ==============================================
  About page ミッション・メッセージセクション
============================================== */
.mission-section {
  background: linear-gradient(45deg, #03152c 0%, #4f6e94 100%);
  padding: 100px 0;
  position: relative;
}

/* 背景に控えめなパターン（ドットグリッド） */
.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.mission-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.mission-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-primary);
}

.mission-heading {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.mission-heading .em-text {
  color: var(--color-primary);
}

.mission-lead {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 2;
}

/* ==============================================
  3. コアメンバーセクション
============================================== */
.member-section {
  background-color: var(--color-bg-warm);
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-villa);
  margin-bottom: 12px;
  text-align: center;
}

.section-heading {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--color-text-main);
}

.section-heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--color-villa);
  margin: 20px auto 0;
  border-radius: 1px;
}

/* メンバーカード */
.member-card {
  background: transparent;
  height: 100%;
}

.member-photo-wrap {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.member-photo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.member-role-badge {
  display: inline-block;
  color: #51637a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
}

.member-body {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px 36px;
  margin-top: 16px;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.member-name-sub {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.member-bio {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.95;
}

.member-bio .highlight {
  color: var(--color-text-main);
  font-weight: 600;
  background: linear-gradient(transparent 65%, rgba(232, 122, 93, 0.18) 65%);
}
@media(min-width:992px){
  .member-photo{
    max-width: 400px;
  }
}
/* ==============================================
  4. 主要取引先（実績）セクション
============================================== */
.clients-section {
  background-color: var(--color-bg-base);
  padding: 100px 0;
}

.logo-box {
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px;
  background: #fff;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 20px;
}

/* ==============================================
  5. 会社情報テーブルセクション
 ============================================== */
.info-section {
  background-color: var(--color-bg-warm);
  padding: 100px 0;
}

.info-table-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border2);
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th,
.info-table td {
  padding: 20px 24px;
  vertical-align: top;
  font-size: 15px;
}

.info-table th {
  width: 180px;
  font-weight: 600;
  color: var(--color-villa-hover);
  background-color: var(--color-villa-light);
  white-space: nowrap;
  border-right: 2px solid var(--color-villa);
}

.info-table td {
  color: var(--color-text-main);
  line-height: 1.8;
  background-color: #FFFFFF;
}

@media (max-width: 575.98px) {

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .info-table th {
    border-right: none;
    border-left: 3px solid var(--color-villa);
    padding-bottom: 6px;
  }
}

@media (max-width: 991.98px) {
  .mission-section {
    padding: 72px 0;
  }

  .member-section {
    padding: 72px 0;
  }

  .clients-section {
    padding: 72px 0;
  }

  .info-section {
    padding: 72px 0;
  }
}

/* ==================================
 404 pageセクション全体
============================== */
.error-section {
  padding: 100px 0 140px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.error-wrapper {
  position: relative;
  background-color: var(--color-bg-base);
  border-radius: 24px;
  padding: 80px 48px 100px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-align: center;
}

.error-404-bg {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 900;
  color: var(--color-villa);
  opacity: 0.05;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-heading {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.error-text {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 2.0;
  margin-bottom: 32px;
}

.sitemap-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.2s ease;
  margin-bottom: 64px;
}

.sitemap-link:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.error-nav-area {
  max-width: 900px;
  margin: 0 auto;
}

.btn-outline-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--color-villa);
  border: 2px solid var(--color-villa);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  text-align: left;
  line-height: 1.4;
}

.btn-outline-main i {
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.btn-outline-main:hover {
  background-color: #FFFFFF;
  color: var(--color-villa);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 62, 0.2);
}

.btn-outline-main:hover i {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .error-section {
    padding: 40px 0 80px;
  }

  .error-wrapper {
    padding: 56px 24px 64px;
    border-radius: 16px;
  }

  .error-404-bg {
    top: 5%;
  }

  .error-text {
    font-size: 15px;
  }

  .sitemap-link {
    margin-bottom: 48px;
  }

  .btn-outline-main {
    padding: 16px 20px;
    font-size: 14px;
  }
}

/* ==============================================
   お知らせリストセクション (archive.php)
   ============================================== */
.news-section {
  padding: 80px 0 120px;
}

.news-list-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.news-item {
  display: block;
  border-bottom: 1px solid var(--color-border);
  padding: 32px 24px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.news-item:hover {
  background-color: var(--color-bg-gray);
}

.news-item-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 240px;
  flex-shrink: 0;
}

.news-date {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.news-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-villa);
  background-color: var(--color-villa-light);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.news-item:hover .news-title {
  color: var(--color-primary);
}

/* カテゴリーフィルター */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.filter-link {
  display: block;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.filter-link:hover {
  color: var(--color-villa);
  border-color: var(--color-villa);
}

.filter-link.active {
  background-color: var(--color-villa);
  color: #FFFFFF;
  border-color: var(--color-villa);
}

@media (max-width: 767.98px) {
  .news-item {
    padding: 24px 16px;
  }

  .news-item-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-meta {
    width: 100%;
  }

  .news-title {
    font-size: 15px;
    line-height: 1.5;
  }

  .category-filter {
    gap: 8px;
    margin-bottom: 32px;
  }

  .filter-link {
    font-size: 13px;
    padding: 6px 16px;
  }
}

/* ページネーション（WordPress標準クラス対応版） */
.pagination-wrap .pagination {
  margin-top: 64px;
}

.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
}

.pagination-wrap ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrap .page-numbers li {
  display: block;
}

.pagination-wrap .page-numbers a,
.pagination-wrap .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pagination-wrap .page-numbers a:hover {
  color: var(--color-villa);
  background-color: var(--color-villa-light);
}

.pagination-wrap .page-numbers span.current {
  color: #FFFFFF;
  background-color: var(--color-villa);
  border-color: var(--color-villa);
}

/* ==============================================
   単一記事セクション (single.php)
   ============================================== */
.single-news-section {
  padding: 80px 0 120px;
}

.article-header {
  margin-bottom: 40px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-date {
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.article-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-villa);
  background-color: var(--color-villa-light);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.article-title {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}

.article-eyecatch {
  margin-bottom: 48px;
}

.article-eyecatch img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.entry-content {
  color: #333333;
}

.entry-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 64px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--color-villa);
  line-height: 1.4;
}

.entry-content h2:first-child {
  margin-top: 0;
}

.entry-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.4;
}

.entry-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.entry-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.entry-content li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
}

.entry-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}

.entry-content a:hover {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .single-news-section {
    padding: 40px 0 80px;
  }

  .entry-content h2 {
    font-size: 20px;
    margin-top: 48px;
  }

  .entry-content h3 {
    font-size: 17px;
    margin-top: 40px;
  }

  .entry-content p,
  .entry-content li {
    font-size: 15px;
  }
}

.article-nav-wrap {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.article-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.nav-link-prev,
.nav-link-next {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-link-prev:hover,
.nav-link-next:hover {
  color: var(--color-villa);
}

.nav-link-prev i,
.nav-link-next i {
  font-size: 12px;
}

.btn-back-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-villa);
  background-color: transparent;
  border: 1px solid var(--color-villa);
  border-radius: 40px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn-back-list:hover {
  background-color: var(--color-villa);
  color: #FFFFFF;
}

@media (max-width: 575.98px) {
  .article-nav-links {
    margin-bottom: 32px;
  }
}

/* ==============================================
   資料ダウンロード一覧セクション (archive-documents.php)
   ============================================== */
.downloads-section {
  padding: 80px 0 100px;
}

.document-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.doc-card-img-wrap {
  background-color: var(--color-bg-gray);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.doc-card-img-wrap img {
  width: 300px;
  max-width: 100%;
  object-fit: contain;
  height: auto;
  filter: drop-shadow(2px 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.document-card:hover .doc-card-img-wrap img {
  transform: scale(1.03);
}

.doc-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
  line-height: 1.5;
}

.doc-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  flex-grow: 1;
}

.archive .btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: var(--color-villa);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.archive .btn-download i {
  font-size: 24px;
}

.btn-download:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.btn-download:active {
  transform: translateY(1px);
}

/* ==============================================
   資料ダウンロード完了ページ (single-documents.php)
   ============================================== */
.download-page-wrapper {
  background-color: var(--color-bg-gray);
  padding: 80px 0 120px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.download-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.download-icon {
  font-size: 56px;
  color: var(--color-primary);
  /* #3B823E */
  margin-bottom: 24px;
  animation: fadeUpIcon 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUpIcon {
  0% {
    transform: translateY(16px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.download-heading {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.download-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.btn-download-wrapper {
  max-width: 360px;
  margin: 0 auto;
}

.single .btn-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-villa);
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230, 92, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single .btn-download:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(230, 92, 0, 0.35);
}

.btn-download-main {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-download-main i {
  font-size: 22px;
}

.file-size {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
  opacity: 0.8;
}

@media (max-width: 575.98px) {
  .download-page-wrapper {
    padding: 40px 0 80px;
  }

  .download-card {
    padding: 48px 24px;
    border-radius: 16px;
  }

  .download-icon {
    font-size: 48px;
  }

  .download-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .btn-download {
    padding: 16px 20px;
  }

  .btn-download-main {
    font-size: 16px;
  }
}

/* ==============================================
   インタビュー詳細ページ (single-interview.php)
   旧HTMLデータの互換＆新デザイン上書き用CSS
   ============================================== */
.interview-section {
  padding: 80px 0 100px;
}

.interview.article-header {
  margin-bottom: 48px;
}

.interview .article-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(59, 130, 62, 0.08);
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.interview .article-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0;
}

.interview .article-eyecatch img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background-color: var(--color-bg-gray);
  border-radius: 10px;
}

/* 旧要素の非表示 */
.c-article-title,
.c-article-mv,
.c-article-back-button,
.c-article-back,
.c-article-title-sub {
  display: none !important;
}

/* 企業・サービス概要 (.p-interview-about -> .company-summary互換) */
.p-interview-about {
  background-color: var(--color-bg-gray);
  border-radius: 0 0 10px 10px;
  padding: 32px 36px;
  margin-bottom: 56px;
}

.p-interview-about .p-interview-company-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.p-interview-about .p-interview-company-manager {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-interview-about .p-interview-service-head {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.p-interview-service-tags {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-interview-service-tags li a {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s;
}

.p-interview-service-tags li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* 本文内の見出し */
.entry-content .c-article-head01 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 72px;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--color-primary);
  line-height: 1.5;
}

.entry-content .c-article-head02 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}

/* 対話ブロック互換 (.c-article-detail -> .talk-row) */
.c-article-col2 {
  margin-bottom: 32px;
}

.c-article-col2:last-child {
  margin-bottom: 0;
}

.c-article-col2 .c-article-image {
  margin-bottom: 24px;
}
.c-article-col2 .c-article-image img {
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
  object-fit: contain;
}

.c-article-col2 .c-article-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.c-article-interviewee {
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  padding-top: 2px;
  line-height: 1.9;
  margin-bottom: 0;
}

.c-article-interviewee.interviewer {
  color: var(--color-villa);
}

.c-article-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 0;
}

/* インタビュー情報 (.c-article-interview-info -> .interview-afterword) */
.c-article-interview-info {
  background-color: rgba(59, 130, 62, 0.08);
  border-radius: 12px;
  padding: 40px;
  margin-top: 72px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-main);
}

.c-article-interview-info a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* スマホ表示対応 */
@media (max-width: 575.98px) {
  .p-interview-about {
    padding: 24px 20px;
  }

  .c-article-col2 .c-article-detail {
    flex-direction: column;
    gap: 4px;
  }

  .c-article-interviewee {
    width: 100%;
    font-size: 13px;
  }

  .c-article-text {
    font-size: 15px;
  }

  .c-article-interview-info {
    padding: 28px 24px;
  }
}

/* 関連記事セクション */
.related-section {
  background-color: var(--color-bg-gray);
  padding: 80px 0 100px;
}

.related-heading {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text-main);
}

.related-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.related-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-company {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.related-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
  transition: color 0.2s ease;
}

.related-card:hover .related-card-title {
  color: var(--color-villa);
}

/* 古い関連記事ブロックを非表示にする */
.l-related {
  display: none !important;
}

/* ==============================================
       サイトマップ セクション全体
       ============================================== */
body.page-sitemap,
body.page-contact {
  background-color: var(--color-bg-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
}

.sitemap-section {
  padding: 80px 0 120px;
}

/* --- セクションブロック（白カード） --- */
.sitemap-block {
  background-color: var(--color-bg-base);
  border-radius: 16px;
  padding: 56px 64px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  margin-bottom: 48px;
}

.sitemap-block:last-child {
  margin-bottom: 0;
}

/* セクション見出し */
.sitemap-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-villa);
  letter-spacing: 0.03em;
}

/* --- リスト全体の基本設定 --- */
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list>li {
  margin-bottom: 16px;
}

.sitemap-list>li:last-child {
  margin-bottom: 0;
}

.sitemap-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sitemap-link:hover {
  color: var(--color-villa);
  transform: translateX(4px);
}

.sitemap-parent-text {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  padding: 6px 0;
}

.sitemap-icon {
  color: var(--color-villa);
  font-size: 12px;
  margin-right: 12px;
  width: 14px;
  text-align: center;
  transition: color 0.2s ease;
}

.sitemap-parent-text .sitemap-icon {
  color: var(--color-text-muted);
  font-size: 14px;
}

.sitemap-sublist {
  list-style: none;
  padding-left: 36px;
  margin-top: 8px;
  margin-bottom: 16px;
  border-left: 1px dashed var(--color-border-tree);
  margin-left: 6px;
}

.sitemap-sublist>li {
  position: relative;
  margin-bottom: 8px;
}

.sitemap-sublist>li:last-child {
  margin-bottom: 0;
}

.sitemap-sublist>li::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 17px;
  width: 24px;
  height: 1px;
  background-color: var(--color-border-tree);
}

.sitemap-sublist .sitemap-link {
  font-size: 15px;
  color: var(--color-text-sub);
  font-weight: 400;
}

.sitemap-sublist .sitemap-link:hover {
  color: var(--color-villa);
}

.sitemap-sublist .sitemap-icon {
  font-size: 10px;
  margin-right: 10px;
  color: var(--color-text-muted);
}

.sitemap-sublist .sitemap-link:hover .sitemap-icon {
  color: var(--color-villa);
}

@media (max-width: 767.98px) {
  .sitemap-section {
    padding: 40px 0 80px;
  }

  .sitemap-block {
    padding: 40px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
  }

  .sitemap-heading {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .sitemap-link,
  .sitemap-parent-text {
    font-size: 15px;
    padding: 8px 0;
  }

  .sitemap-sublist {
    padding-left: 28px;
  }

  .sitemap-sublist>li::before {
    left: -28px;
    width: 16px;
    top: 18px;
  }

  .sitemap-sublist .sitemap-link {
    font-size: 14px;
  }
}

/*=============================
 Contact page
=============================*/
.contact-section {
  padding: 80px 0 120px;
}

.contact-lead {
  text-align: center;
  margin-bottom: 56px;
}

.contact-lead-text {
  font-size: 16px;
  color: var(--color-text-sub);
  max-width: 600px;
  margin: 0 auto;
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #D1D5DB;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-text {
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.05em;
}

.step.active .step-circle {
  background-color: var(--color-villa);
  border-color: var(--color-villa);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(59, 130, 62, 0.3);
}

.step.active .step-text {
  color: var(--color-villa);
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #E5E7EB;
  margin: 0 16px;
  margin-top: -24px;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-text {
    font-size: 11px;
  }

  .step-line {
    margin: 0 8px;
    margin-top: -20px;
  }
}

.contact-form-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 56px 64px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 767.98px) {
  .contact-form-card {
    padding: 40px 24px;
    border-radius: 12px;
  }
}

.contact-form-label {
  font-size: 15px;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
}
.contact-form-label .badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transform: translateY(-1px);
}
.contact-form-label .badge.bg-danger {
  background-color: var(--color-danger) !important;
  color: #FFFFFF;
}
.contact-form-label .badge.bg-secondary {
  background-color: #E5E7EB !important;
  color: #6B7280;
}

.form-control,
.form-select {
  background-color: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--color-text-main);
  transition: all 0.2s ease;
  box-shadow: none;
}

.form-control::placeholder {
  color: #9CA3AF;
}
.form-control:focus,
.form-select:focus {
  background-color: #FFFFFF;
  border-color: var(--color-villa);
  box-shadow: 0 0 0 4px var(--color-main-focus);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-acceptance {
  font-size: 14px;
  color: var(--color-text-sub);
}

.contact-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-villa);
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

.contact-acceptance a {
  color: var(--color-villa) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-acceptance a:hover {
  opacity: 0.7;
}

.contact-submit-btn {
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 64px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 4px 12px rgba(230, 92, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.05em;
}

.contact-submit-btn:hover {
  background-color: var(--color-primary-hover);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230, 92, 0, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(230, 92, 0, 0.2);
}

input.contact-submit-btn {
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 575.98px) {
  .contact-submit-btn {
    width: 100%;
    padding: 16px 24px;
  }
}
/* ==============================================
   確認画面 (contact-confirm)
   ============================================== */
.contact-confirm-table {
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 48px;
}
.contact-confirm-table th,
.contact-confirm-table td {
  padding: 24px 24px;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
.contact-confirm-table tr:last-child th,
.contact-confirm-table tr:last-child td {
  border-bottom: none;
}
.contact-confirm-table th {
  background-color: #FAFAFA;
  color: var(--color-text-main);
  font-weight: 600;
  width: 32%;
}
.contact-confirm-table td {
  color: var(--color-text-main);
  background-color: #FFFFFF;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767.98px) {
  .contact-confirm-table th,
  .contact-confirm-table td {
    display: block;
    width: 100%;
    padding: 16px 10px;
  }
  .contact-confirm-table th.w-25{
    width: 100%!important;
  }
}

.confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.contact-prev-btn {
  color: var(--color-text-sub);
  background-color: transparent;
  border: 1px solid #D1D5DB;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 40px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-prev-btn:hover {
  background-color: #F3F4F6;
  color: var(--color-text-main);
  border-color: #9CA3AF;
}
input.contact-prev-btn {
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 575.98px) {
  .confirm-buttons {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .contact-prev-btn {
    width: 100%;
    padding: 16px 24px;
  }
}

/* ==============================================
   完了画面 (contact-thanks)
   ============================================== */
.thanks-card-inner {
  padding: 40px 24px;
  text-align: center;
}
.thanks-icon {
  font-size: 72px;
  color: var(--color-villa);
  margin-bottom: 24px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.thanks-heading {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.thanks-text {
  font-size: 16px;
  line-height: 2.0;
  color: var(--color-text-sub);
  margin-bottom: 56px;
}
@media (max-width: 575.98px) {
  .thanks-card-inner {
    padding: 16px 0;
  }
  .thanks-icon {
    font-size: 56px;
  }
  .thanks-text {
    font-size: 15px;
    text-align: left;
  }
}

.btn-return-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-villa);
  background-color: transparent;
  border: 1px solid var(--color-villa);
  border-radius: 40px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.btn-return-top:hover {
  background-color: var(--color-villa);
  color: #FFFFFF;
}
@media (max-width: 575.98px) {
  .btn-return-top {
    width: 100%;
    padding: 16px 24px;
  }
}

/* ==============================================
   資料ダウンロードアーカイブ (Lead Section)
   ============================================== */
.lead-section {
  background-color: #FDF7ED; /* 指定の背景色 */
  padding: 80px 0;
  text-align: center;
}
.lead-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
}
.lead-text {
  font-size: 16px;
  color: var(--color-text-sub);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 768px) {
  .lead-text {
    text-align: center;
  }
}

/* インタビュー画像の代替（No Image） */
.interview-card-noimg {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF4EC; /* 白背景と少し差がつく淡いオレンジ・クリーム系 */
  color: #CC7A4D; /* 控えめなトーンのオレンジ・ブラウン系 */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(230, 92, 0, 0.05); /* ほんの少しだけ境界線を足す */
}

/* ============================================== 
   個人情報保護方針ページ スタイル
   ============================================== */
.privacy-section {
  padding: 80px 0 120px;
}

/* --- 1. 全体のベース --- */
.privacy-content {
  background-color: var(--color-bg-base);
  border-radius: 16px;
  padding: 72px 80px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.05); /* 独立したドキュメント感を出すシャドウ */
  border: 1px solid rgba(0, 0, 0, 0.02);
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* --- 2. 見出し --- */
.privacy-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 0;
  margin-bottom: 64px;
  text-align: center;
  letter-spacing: 0.05em;
}

.privacy-item {
  margin-bottom: 48px;
}

.privacy-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  padding-left: 16px;
  border-left: 4px solid var(--color-villa); /* スッキリとしたグリーンライン */
  margin-bottom: 20px;
  line-height: 1.4;
}

/* --- 3. リストとテキスト --- */
.privacy-item p {
  font-size: 16px;
  margin-bottom: 0;
}

.privacy-item ol {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 24px;
}

.privacy-item ol li {
  font-size: 16px;
  margin-bottom: 8px;
}
.privacy-item ol li:last-child {
  margin-bottom: 0;
}

/* --- 4. お問い合わせ窓口 --- */
.privacy-contact-box {
  background-color: var(--color-villa-light);
  border-radius: 12px;
  padding: 40px 48px;
  margin-top: 72px;
}

.privacy-contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-villa);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(59, 130, 62, 0.15);
}

.privacy-contact-box p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.privacy-contact-box a {
  transition: opacity 0.2s ease;
}

.privacy-contact-box a:hover {
  opacity: 0.6;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 991.98px) {
  .privacy-content {
    padding: 56px 40px;
  }
}

@media (max-width: 767.98px) {
  .privacy-section {
    padding: 40px 0 80px;
  }
  .privacy-content {
    padding: 40px 24px;
    border-radius: 12px;
  }
  .privacy-content h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .privacy-item {
    margin-bottom: 40px;
  }
  .privacy-item h3 {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .privacy-item p,
  .privacy-item ol li {
    font-size: 15px;
  }
  .privacy-contact-box {
    padding: 24px 20px;
    margin-top: 48px;
  }
  .privacy-contact-box h3 {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .privacy-contact-box p {
    font-size: 14px;
  }
}
/* サイトマップページ内のリンクのみマージンをリセット（404ページのレイアウト崩れ防止用） */
.sitemap-section .sitemap-link {
  margin-bottom: 0;
}
