/*
Theme Name:  GIFTO経営コンパス Child
Theme URI:   https://gifto-compass.com
Description: Cocoon 子テーマ - GIFTO経営コンパス
Author:      Akinori Tsutsumi
Author URI:  https://gifto-compass.com
Template:    cocoon-master
Version:     1.0.0
License:     GNU General Public License v2 or later
*/

/* ============================================
   GIFTO経営コンパス — 共通スタイルシート
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Serif+JP:wght@300;400;500;600&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* --- CSS変数 --- */
:root {
  --navy:        #0D7A65;   /* フォレストグリーン（PPTX主色） */
  --navy-dark:   #085C4A;   /* 深緑（サイドバー・ヘッダー背景） */
  --navy-light:  #178A72;   /* ミディアムグリーン（ホバー等） */
  --gold:        #C9A84C;   /* ゴールド（コンパス針・アクセント） */
  --gold-light:  #e0bf74;
  --white:       #FFFFFF;
  --bg-light:    #F4F8F6;   /* 薄いグリーン寄りの背景 */
  --bg-section:  #E8F2EE;   /* セクション背景（緑みがかった薄灰） */
  --text:        #1E2D25;   /* 深緑寄りのテキスト */
  --text-muted:  #5A6B62;   /* グリーンがかったミュート */
  --border:      #C8DDD6;   /* 緑みのあるボーダー */
  --radius:      8px;
  --shadow:      0 4px 20px rgba(13,122,101,0.10);
  --shadow-sm:   0 2px 8px rgba(13,122,101,0.07);
  --transition:  0.25s ease;
  --max-width:   1100px;
}

/* --- リセット & ベース --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Serif JP', 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- ユーティリティ --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.9;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

section { padding: 80px 0; }
section.bg-light { background: var(--bg-light); }
section.bg-section { background: var(--bg-section); }

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- ナビゲーション --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 新ロゴアイコン（SVGファイル） */
.logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* フッター用：白背景の薄い円を追加して視認性確保 */
.logo-img-footer {
  background: #FFFFFF;
  border-radius: 50%;
  padding: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--bg-light);
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- フッター --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-main { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-tagline {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* --- カード共通 --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

/* --- ページヒーロー（内部ページ用） --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* --- バッジ・タグ --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-section);
  color: var(--navy);
}
.badge-gold {
  background: rgba(201,168,76,0.15);
  color: #8a6c1a;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-hamburger { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; margin-left: 0; margin-top: 8px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== index.html ページ固有スタイル ===== */
/* --- Hero --- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #178A72 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Compass decorative element */
.hero-compass {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.07;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
 /* --- 強み --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  transition: all var(--transition);
}
.strength-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.strength-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #085C4A 0%, #0D7A65 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(13, 122, 101, 0.25);
  flex-shrink: 0;
  color: #fff;
}
.strength-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}
.strength-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.strength-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}
 /* --- サービス概要 --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-section);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-body .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(201,168,76,0.12);
  color: #8a6c1a;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}
 /* --- プロフィール簡易 --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
  text-align: center;
}
.about-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.6);
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(13,122,101,0.2);
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(2.2);
  transform-origin: 80% 22%;
}
.about-card-visual h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.about-card-visual .title {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.about-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}
.about-text .highlight {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  color: var(--text);
  font-size: 0.95rem;
}
 /* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
 /* --- Responsive --- */
@media (max-width: 900px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 80px 0; }
  .hero-stats { gap: 24px; }
}

/* ===== about.html ページ固有スタイル ===== */
/* --- プロフィールカード --- */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.profile-card {
  background: var(--navy-dark);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow);
}
 /* --- フォト全面投影 --- */
.profile-photo-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.profile-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,92,74,0.95) 0%, rgba(8,92,74,0.6) 30%, transparent 100%);
  padding: 0 20px 14px;
}
.profile-photo-overlay h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}
.profile-photo-overlay .ruby {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 5px;
}
.profile-photo-overlay .profile-title {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}
 /* --- カード下部テキストエリア --- */
.profile-card-body {
  padding: 20px 24px 24px;
}
.profile-title {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.profile-info {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 4px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-label { color: rgba(255,255,255,0.55); }
.info-value { color: var(--white); font-weight: 600; }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}
.profile-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
}
.profile-cta {
  margin-top: 24px;
}
.profile-cta a {
  display: block;
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.profile-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
 /* --- 本文エリア --- */
.profile-main h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-section);
}
.profile-main p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}
.highlight-box {
  background: linear-gradient(135deg, rgba(13,122,101,0.05) 0%, rgba(201,168,76,0.08) 100%);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.highlight-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
 /* --- キャリアタイムライン --- */
.timeline { position: relative; margin-top: 12px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 1;
  margin-top: 2px;
}
.timeline-item.current .timeline-dot {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.timeline-body {}
.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
 /* --- 資格・スキル --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.skill-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.skill-icon { font-size: 1.8rem; margin-bottom: 8px; }
.skill-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.skill-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
 /* --- 想い --- */
.vision-block {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  margin-top: 48px;
}
.vision-block h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding: 0;
  border: none;
}
.vision-block p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 12px;
}
.vision-block .quote {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.gifto-name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.gifto-name-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.gifto-name-card .gifto-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.gifto-name-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}
@media(max-width:640px){
  .gifto-name-grid { grid-template-columns: 1fr; }
}
 /* --- 2都市バナー --- */
.dual-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  border-radius: 12px;
  margin-bottom: 40px;
}
.dual-banner-divider {
  flex: 0 0 3px;
  background: var(--gold);
  z-index: 2;
}
.dual-banner-pane {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 300px;
}
.dual-banner-pane img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.72) saturate(0.88);
}
.dual-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(8,92,74,0.20) 0%, rgba(8,92,74,0.06) 50%, rgba(8,92,74,0.62) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 26px;
}
.dual-banner-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--gold-light); background: rgba(0,0,0,0.32);
  padding: 3px 9px; border-radius: 3px;
}
.dual-banner-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px;
}
.dual-banner-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600;
  color: rgba(255,255,255,0.82); letter-spacing: 0.18em; line-height: 1.2;
}
.dual-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; margin-top: 5px; line-height: 1.5;
}
@media (max-width: 600px) {
  .dual-banner { flex-direction: column; height: 400px; }
  .dual-banner-divider { flex: 0 0 3px; width: 100%; height: 3px; }
  .dual-banner-pane { height: 50%; }
}
 /* --- セクション内padding調整 --- */
.profile-section { margin-bottom: 52px; }
 @media (max-width: 900px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .skills-grid { grid-template-columns: 1fr; }
  .vision-block { padding: 32px 24px; }
}

/* ===== services.html ページ固有スタイル ===== */
/* --- サービスカード詳細 --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
 .service-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.service-detail-card .service-features {
  flex: 1;
}
.service-detail-card.accent { border-top-color: var(--gold); }
 .service-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-detail-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.price-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.price-value { font-size: 1rem; font-weight: 800; color: var(--navy); }
.price-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }
 /* --- 対象業種 --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.industry-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.industry-icon { font-size: 2rem; margin-bottom: 8px; }
.industry-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.industry-item p { font-size: 0.75rem; color: var(--text-muted); }
 /* --- フロー --- */
.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 800;
  z-index: 1;
}
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.flow-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.flow-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
 /* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.faq-question.open::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  background: var(--white);
}
.faq-answer.open { display: block; }
 @media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; }
  .flow-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
}
@media (max-width: 500px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== contact.html ページ固有スタイル ===== */
/* --- コンタクトレイアウト --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
 /* --- サイドバー情報 --- */
.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info .lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
 .info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.info-row-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.info-row-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.info-text-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; }
.info-text-value { color: var(--text); font-weight: 600; line-height: 1.5; }
 .response-badge {
  background: linear-gradient(135deg, rgba(13,122,101,0.06) 0%, rgba(201,168,76,0.1) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: center;
}
.response-badge::before { content: '⚡'; font-size: 1.1rem; }
 /* --- フォーム --- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-lead {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
 .form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
label .required {
  color: #e05555;
  margin-left: 4px;
  font-size: 0.75rem;
}
label .optional {
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 0.72rem;
  font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.6;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,122,101,0.08);
}
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
 .form-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-privacy input[type="checkbox"] { width: auto; margin-top: 2px; flex-shrink: 0; }
.form-privacy a { color: var(--navy); text-decoration: underline; }
 .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,122,101,0.25);
}
.submit-btn:active { transform: translateY(0); }
 /* 送信後メッセージ */
.success-message {
  display: none;
  background: #ecf9f1;
  border: 1px solid #6dcf9a;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}
.success-message.show { display: block; }
.success-message h3 { color: #2d7a51; font-size: 1rem; margin-bottom: 6px; }
.success-message p { font-size: 0.85rem; color: #3a8a5e; }
 /* --- プライバシーポリシー --- */
.privacy-note {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
}
.privacy-note strong { color: var(--text); }
 @media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 24px; }
}

/* ========== index page styles ========== */
/* --- Hero --- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #178A72 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Compass decorative element */
.hero-compass {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.07;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
 /* --- 強み --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  transition: all var(--transition);
}
.strength-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.strength-icon { font-size: 2.2rem; margin-bottom: 16px; }
.strength-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.strength-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}
 /* --- サービス概要 --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-section);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-body .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(201,168,76,0.12);
  color: #8a6c1a;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}
 /* --- プロフィール簡易 --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
  text-align: center;
}
.about-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.6);
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(13,122,101,0.2);
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(2.2);
  transform-origin: 80% 22%;
}
.about-card-visual h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.about-card-visual .title {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.about-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}
.about-text .highlight {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  color: var(--text);
  font-size: 0.95rem;
}
 /* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
 /* --- Responsive --- */
@media (max-width: 900px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 80px 0; }
  .hero-stats { gap: 24px; }
}

/* ========== about page styles ========== */
/* --- プロフィールカード --- */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.profile-card {
  background: var(--navy-dark);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow);
}
 /* --- フォト全面投影 --- */
.profile-photo-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.profile-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,92,74,0.95) 0%, rgba(8,92,74,0.6) 30%, transparent 100%);
  padding: 0 20px 14px;
}
.profile-photo-overlay h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}
.profile-photo-overlay .ruby {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 5px;
}
.profile-photo-overlay .profile-title {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}
 /* --- カード下部テキストエリア --- */
.profile-card-body {
  padding: 20px 24px 24px;
}
.profile-title {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.profile-info {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 4px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-label { color: rgba(255,255,255,0.55); }
.info-value { color: var(--white); font-weight: 600; }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}
.profile-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
}
.profile-cta {
  margin-top: 24px;
}
.profile-cta a {
  display: block;
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.profile-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
 /* --- 本文エリア --- */
.profile-main h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-section);
}
.profile-main p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}
.highlight-box {
  background: linear-gradient(135deg, rgba(13,122,101,0.05) 0%, rgba(201,168,76,0.08) 100%);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.highlight-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
 /* --- キャリアタイムライン --- */
.timeline { position: relative; margin-top: 12px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 1;
  margin-top: 2px;
}
.timeline-item.current .timeline-dot {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.timeline-body {}
.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
 /* --- 資格・スキル --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.skill-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.skill-icon { font-size: 1.8rem; margin-bottom: 8px; }
.skill-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.skill-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
 /* --- 想い --- */
.vision-block {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  margin-top: 48px;
}
.vision-block h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding: 0;
  border: none;
}
.vision-block p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 12px;
}
.vision-block .quote {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.gifto-name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.gifto-name-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.gifto-name-card .gifto-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.gifto-name-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}
@media(max-width:640px){
  .gifto-name-grid { grid-template-columns: 1fr; }
}
 /* --- 2都市バナー --- */
.dual-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  border-radius: 12px;
  margin-bottom: 40px;
}
.dual-banner-divider {
  flex: 0 0 3px;
  background: var(--gold);
  z-index: 2;
}
.dual-banner-pane {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 300px;
}
.dual-banner-pane img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.72) saturate(0.88);
}
.dual-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(8,92,74,0.20) 0%, rgba(8,92,74,0.06) 50%, rgba(8,92,74,0.62) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 26px;
}
.dual-banner-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--gold-light); background: rgba(0,0,0,0.32);
  padding: 3px 9px; border-radius: 3px;
}
.dual-banner-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px;
}
.dual-banner-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600;
  color: rgba(255,255,255,0.82); letter-spacing: 0.18em; line-height: 1.2;
}
.dual-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; margin-top: 5px; line-height: 1.5;
}
@media (max-width: 600px) {
  .dual-banner { flex-direction: column; height: 400px; }
  .dual-banner-divider { flex: 0 0 3px; width: 100%; height: 3px; }
  .dual-banner-pane { height: 50%; }
}
 /* --- セクション内padding調整 --- */
.profile-section { margin-bottom: 52px; }
 @media (max-width: 900px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .skills-grid { grid-template-columns: 1fr; }
  .vision-block { padding: 32px 24px; }
}

/* ========== services page styles ========== */
/* --- サービスカード詳細 --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
 .service-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.service-detail-card .service-features {
  flex: 1;
}
.service-detail-card.accent { border-top-color: var(--gold); }
 .service-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-detail-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.price-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.price-value { font-size: 1rem; font-weight: 800; color: var(--navy); }
.price-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }
 /* --- 対象業種 --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.industry-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.industry-icon { font-size: 2rem; margin-bottom: 8px; }
.industry-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.industry-item p { font-size: 0.75rem; color: var(--text-muted); }
 /* --- フロー --- */
.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 800;
  z-index: 1;
}
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.flow-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.flow-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
 /* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.faq-question.open::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  background: var(--white);
}
.faq-answer.open { display: block; }
 @media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; }
  .flow-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
}
@media (max-width: 500px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== contact page styles ========== */
/* --- コンタクトレイアウト --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
 /* --- サイドバー情報 --- */
.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info .lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
 .info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.info-row-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.info-row-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.info-text-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; }
.info-text-value { color: var(--text); font-weight: 600; line-height: 1.5; }
 .response-badge {
  background: linear-gradient(135deg, rgba(13,122,101,0.06) 0%, rgba(201,168,76,0.1) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: center;
}
.response-badge::before { content: '⚡'; font-size: 1.1rem; }
 /* --- フォーム --- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-lead {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
 .form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
label .required {
  color: #e05555;
  margin-left: 4px;
  font-size: 0.75rem;
}
label .optional {
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 0.72rem;
  font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.6;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,122,101,0.08);
}
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
 .form-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-privacy input[type="checkbox"] { width: auto; margin-top: 2px; flex-shrink: 0; }
.form-privacy a { color: var(--navy); text-decoration: underline; }
 .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,122,101,0.25);
}
.submit-btn:active { transform: translateY(0); }
 /* 送信後メッセージ */
.success-message {
  display: none;
  background: #ecf9f1;
  border: 1px solid #6dcf9a;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}
.success-message.show { display: block; }
.success-message h3 { color: #2d7a51; font-size: 1rem; margin-bottom: 6px; }
.success-message p { font-size: 0.85rem; color: #3a8a5e; }
 /* --- プライバシーポリシー --- */
.privacy-note {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
}
.privacy-note strong { color: var(--text); }
 @media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 24px; }
}
/* ========== Additional overrides ========== */
.hero {
  min-height: 88vh !important;
  background: linear-gradient(135deg, #085C4A 0%, #0D7A65 60%, #178A72 100%) !important;
  display: flex !important; align-items: center !important;
  position: relative !important; overflow: hidden !important;
}
.hero h1 { color: #ffffff !important; }
.hero h1 em { font-style: normal !important; color: #e0bf74 !important; }
.hero-actions { display: flex !important; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex !important; gap: 40px; flex-wrap: wrap; margin-top: 56px !important; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-num { color: #e0bf74; font-size: 1.3rem; font-weight: 600; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.strengths-grid { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)) !important; gap: 24px !important; }
.strength-card { background: #fff !important; border: 1px solid #C8DDD6 !important; border-radius: 8px !important; padding: 32px 28px !important; box-shadow: 0 2px 8px rgba(13,122,101,0.07) !important; }
.strength-card h3 { color: #0D7A65 !important; font-size: 1.05rem !important; font-weight: 600 !important; margin-bottom: 12px !important; }
.services-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 24px !important; }
.service-card { display: flex !important; gap: 20px !important; background: #fff !important; border-radius: 8px !important; padding: 28px !important; box-shadow: 0 2px 8px rgba(13,122,101,0.07) !important; border: 1px solid #C8DDD6 !important; }
.service-num { font-size: 2rem !important; font-weight: 800 !important; color: #E8F2EE !important; line-height: 1 !important; flex-shrink: 0 !important; width: 48px !important; }
.service-body h3 { color: #0D7A65 !important; font-weight: 700 !important; margin-bottom: 8px !important; }
.service-body .tag { display: inline-block !important; margin-top: 10px !important; padding: 3px 10px !important; background: rgba(201,168,76,0.12) !important; color: #8a6c1a !important; border-radius: 4px !important; font-size: 0.72rem !important; font-weight: 700 !important; }
.about-split { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 56px !important; align-items: center !important; }
.about-card-visual { background: linear-gradient(135deg,#0D7A65 0%,#178A72 100%) !important; border-radius: 16px !important; padding: 40px 32px !important; color: #fff !important; text-align: center !important; }
.about-avatar { width: 88px !important; height: 88px !important; border-radius: 50% !important; border: 3px solid rgba(201,168,76,0.6) !important; overflow: hidden !important; margin: 0 auto 16px !important; }
.about-avatar img { width: 100% !important; height: 100% !important; object-fit: cover !important; transform: scale(2.2) !important; transform-origin: 80% 22% !important; }
.about-tags { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; justify-content: center !important; }
.about-tags span { background: rgba(255,255,255,0.12) !important; color: rgba(255,255,255,0.9) !important; padding: 4px 12px !important; border-radius: 20px !important; font-size: 0.75rem !important; }
.cta-banner { background: linear-gradient(135deg,#085C4A 0%,#0D7A65 100%) !important; padding: 72px 0 !important; text-align: center !important; color: #fff !important; }
.cta-banner h2 { color: #fff !important; font-weight: 800 !important; margin-bottom: 14px !important; }
.cta-banner p { color: rgba(255,255,255,0.72) !important; margin-bottom: 36px !important; max-width: 500px !important; margin-left: auto !important; margin-right: auto !important; }
.cta-actions { display: flex !important; gap: 16px !important; justify-content: center !important; flex-wrap: wrap !important; }
.toc-content, .toc-widget-wrapper, #toc_container, [class*="toc"].toc { display: none !important; }
/* ===== about page ===== */
/* --- プロフィールカード --- */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.profile-card {
  background: var(--navy-dark);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow);
}
 /* --- フォト全面投影 --- */
.profile-photo-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.profile-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,92,74,0.95) 0%, rgba(8,92,74,0.6) 30%, transparent 100%);
  padding: 0 20px 14px;
}
.profile-photo-overlay h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}
.profile-photo-overlay .ruby {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 5px;
}
.profile-photo-overlay .profile-title {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}
 /* --- カード下部テキストエリア --- */
.profile-card-body {
  padding: 20px 24px 24px;
}
.profile-title {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.profile-info {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 4px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-label { color: rgba(255,255,255,0.55); }
.info-value { color: var(--white); font-weight: 600; }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}
.profile-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
}
.profile-cta {
  margin-top: 24px;
}
.profile-cta a {
  display: block;
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.profile-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
 /* --- 本文エリア --- */
.profile-main h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-section);
}
.profile-main p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}
.highlight-box {
  background: linear-gradient(135deg, rgba(13,122,101,0.05) 0%, rgba(201,168,76,0.08) 100%);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.highlight-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
 /* --- キャリアタイムライン --- */
.timeline { position: relative; margin-top: 12px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 1;
  margin-top: 2px;
}
.timeline-item.current .timeline-dot {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.timeline-body {}
.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}
 /* --- 資格・スキル --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.skill-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.skill-icon { font-size: 1.8rem; margin-bottom: 8px; }
.skill-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.skill-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
 /* --- 想い --- */
.vision-block {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  margin-top: 48px;
}
.vision-block h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding: 0;
  border: none;
}
.vision-block p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 12px;
}
.vision-block .quote {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.gifto-name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.gifto-name-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.gifto-name-card .gifto-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.gifto-name-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}
@media(max-width:640px){
  .gifto-name-grid { grid-template-columns: 1fr; }
}
 /* --- 2都市バナー --- */
.dual-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  border-radius: 12px;
  margin-bottom: 40px;
}
.dual-banner-divider {
  flex: 0 0 3px;
  background: var(--gold);
  z-index: 2;
}
.dual-banner-pane {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 300px;
}
.dual-banner-pane img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.72) saturate(0.88);
}
.dual-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(8,92,74,0.20) 0%, rgba(8,92,74,0.06) 50%, rgba(8,92,74,0.62) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 26px;
}
.dual-banner-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--gold-light); background: rgba(0,0,0,0.32);
  padding: 3px 9px; border-radius: 3px;
}
.dual-banner-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px;
}
.dual-banner-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600;
  color: rgba(255,255,255,0.82); letter-spacing: 0.18em; line-height: 1.2;
}
.dual-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; margin-top: 5px; line-height: 1.5;
}
@media (max-width: 600px) {
  .dual-banner { flex-direction: column; height: 400px; }
  .dual-banner-divider { flex: 0 0 3px; width: 100%; height: 3px; }
  .dual-banner-pane { height: 50%; }
}
 /* --- セクション内padding調整 --- */
.profile-section { margin-bottom: 52px; }
 @media (max-width: 900px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .skills-grid { grid-template-columns: 1fr; }
  .vision-block { padding: 32px 24px; }
}

/* ===== services page ===== */
/* --- サービスカード詳細 --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
 .service-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.service-detail-card .service-features {
  flex: 1;
}
.service-detail-card.accent { border-top-color: var(--gold); }
 .service-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-detail-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.price-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.price-value { font-size: 1rem; font-weight: 800; color: var(--navy); }
.price-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }
 /* --- 対象業種 --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.industry-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.industry-icon { font-size: 2rem; margin-bottom: 8px; }
.industry-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.industry-item p { font-size: 0.75rem; color: var(--text-muted); }
 /* --- フロー --- */
.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 800;
  z-index: 1;
}
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.flow-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.flow-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
 /* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.faq-question.open::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  background: var(--white);
}
.faq-answer.open { display: block; }
 @media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; }
  .flow-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
}
@media (max-width: 500px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== contact page ===== */
/* --- コンタクトレイアウト --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
 /* --- サイドバー情報 --- */
.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info .lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
 .info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.info-row-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.info-row-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.info-text-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; }
.info-text-value { color: var(--text); font-weight: 600; line-height: 1.5; }
 .response-badge {
  background: linear-gradient(135deg, rgba(13,122,101,0.06) 0%, rgba(201,168,76,0.1) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: center;
}
.response-badge::before { content: '⚡'; font-size: 1.1rem; }
 /* --- フォーム --- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-lead {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
 .form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
label .required {
  color: #e05555;
  margin-left: 4px;
  font-size: 0.75rem;
}
label .optional {
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 0.72rem;
  font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.6;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,122,101,0.08);
}
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
 .form-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-privacy input[type="checkbox"] { width: auto; margin-top: 2px; flex-shrink: 0; }
.form-privacy a { color: var(--navy); text-decoration: underline; }
 .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,122,101,0.25);
}
.submit-btn:active { transform: translateY(0); }
 /* 送信後メッセージ */
.success-message {
  display: none;
  background: #ecf9f1;
  border: 1px solid #6dcf9a;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}
.success-message.show { display: block; }
.success-message h3 { color: #2d7a51; font-size: 1rem; margin-bottom: 6px; }
.success-message p { font-size: 0.85rem; color: #3a8a5e; }
 /* --- プライバシーポリシー --- */
.privacy-note {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
}
.privacy-note strong { color: var(--text); }
 @media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 24px; }
}

/* --- タイムライン 文頭揃え --- */
.timeline-body,
.timeline-period,
.timeline-title,
.timeline-desc { text-align: left !important; }
/* --- FAQ レイアウト修正 --- */
/* .faq-item を縦積みに強制（横並びになる問題の修正） */
.faq-item {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}
.faq-question {
  width: 100% !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}
/* display は JS のインラインスタイルで制御するため !important を使わない */
.faq-answer {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ========== モバイル修正（!importantオーバーライド対策） ========== */
@media (max-width: 900px) {
  /* サービスグリッド：モバイルでは1列に */
  .services-grid { grid-template-columns: 1fr !important; }
  /* プロフィール：モバイルでは縦積みに */
  .about-split { grid-template-columns: 1fr !important; gap: 36px !important; }
}
@media (max-width: 600px) {
  /* ヒーロー：モバイルでは高さを自動に（88vhは大きすぎる） */
  .hero { min-height: auto !important; padding: 72px 0 64px !important; }
  /* ヒーローボタン：モバイルでは縦積み・全幅に */
  .hero-actions { flex-direction: column !important; }
  .hero-actions .btn { width: 100% !important; text-align: center !important; }
  /* ヒーロー統計：モバイルでは2列グリッドに整列 */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 16px !important;
  }
  /* CTAボタン：モバイルでは縦積み・全幅に */
  .cta-actions { flex-direction: column !important; align-items: center !important; }
  .cta-actions .btn { width: 100% !important; max-width: 320px !important; text-align: center !important; }
}