/* --- 高級感テーマ設定 --- */
:root {
    --primary-dark: #0a1f15; /* 非常に濃い緑（黒に近い） */
    --primary-green: #1B4D3E; /* 重厚な緑 */
    --accent-gold: #C5A059; /* シャンパンゴールド */
    --text-white: #f4f4f4;
    --text-gray: #a0a0a0;
    --bg-light: #f9f9f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Noto Sans JP', sans-serif; /* 本文は読みやすく */
    color: #333;
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif; /* 見出しは明朝体で高級感 */
    letter-spacing: 0.05em;
}

.english-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
}

/* --- ヘッダー (透過 & 固定) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(
    to bottom,
    rgba(18, 48, 34, 0.9) 0%,
    rgba(18, 48, 34, 0.6) 50%,
    rgba(18, 48, 34, 0.0) 100%);
    transition: background 0.3s; 
   /* border-bottom: 1px solid #ddd; */
}

header.is-scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    color: var(--text-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
   	font-variant: normal;
    font-variant-caps: normal;
    text-transform: none;
}

/* --- ヒーローセクション (Full Screen) --- */
.hero {
    height: 100vh; /* 画面いっぱいに広げる */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    /* サンプル背景画像：自然、抽象的、高級感のある緑 */
    /*background-image: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=2000&auto=format&fit=crop');*/
    background-image: url('../img/sabotentop.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* 画像の上に黒いフィルターをかけて文字を見やすくする */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(10, 31, 21, 0.5);  深緑のフィルター */
    background: rgba(15, 42, 31, 0.35); /* 深緑のフィルター */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.5rem; /* PC向けサイズ */
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: #fff;
}

.hero h1 span {
    display: block;
    font-size: 1.2rem;
    margin-top: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C5A059 0%, #9A7B3A 100%); /* ゴールドグラデーション */
    color: #fff;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-family: 'Noto Serif JP', serif;
    text-decoration: none;
    border-radius: 3px; /* 角を少しだけ丸めるか、四角くしてラグジュアリーに */
    transition: all 0.4s ease;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

/* --- イントロダクション (Concept) --- */
.intro {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--text-white);
    text-align: center;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-en-title {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}
.intro h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}
.intro p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- ベネフィット (Image Text split) --- */
.split-section {
    display: flex;
    flex-wrap: wrap;
}
.split-img {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}
.split-text {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.split-text p {
    color: #666;
    margin-bottom: 30px;
}
.feature-list {
    list-style: none;   /* ← 黒丸を消す */
    padding-left: 0;    /* ← 左の余白もリセット */
}        
.feature-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}
.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
   /* background-image: url('https://images.unsplash.com/photo-1550583724-b2692b85b150?q=80&w=2000&auto=format&fit=crop');*/
    background-attachment: fixed; /* パララックス効果 */
    background-image: url('../img/cactevophoto2.png');
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 31, 21, 0.65);
}

.cta-content {
    position: relative;
    z-index: 2;
}
.price-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 4px;
}
.price-large {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
}
.price-sub {
    font-size: 1rem;
    opacity: 0.8;
}

/* --- Footer --- */
footer {
    background: #000;
    color: #555;
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
}

.footer-campany {
	color: #ddd;
}

.footer-campany a {
	text-decoration: underline;
}


/* フッターのリンク */
.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #777;  /* 落ち着いた白～グレー */
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;  /* ホバー時に白で高級感 */
}        

/* Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .split-text { padding: 40px 20px; }
    .hero-btn { width: 100%; padding: 15px 0; }
}

/* ------------------------------
    Base
------------------------------ */
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
    z-index: 1; /* コンテンツが背景より前に表示されるように */
}

/* ------------------------------
    Header
------------------------------ */

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}


nav {
    display: flex;
    gap: 50px;
}

/* ナビゲーションのスタイル */
nav a {
    text-decoration: none;  /* 下線を消す */
    color: #fff;  /* デフォルトの文字色 */
    font-weight: 400 !important;  /* デフォルトで太字ではない */
    padding: 10px 20px;
    position: relative;  /* 動きを追加するためにpositionを設定 */
}

/* ホバー時に文字を太字にし、下にスライドするエフェクトを追加 */
nav a:hover {
    text-decoration: underline;  /* 下線を消す */
}

/* 文字の下にアンダーバーを作成し、スライドさせるエフェクト */
navx a::after {
    content: '';  /* 擬似要素を使う */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e6b422;  /* アンダーバーの色 */
    transform: scaleX(0);  /* 初期状態ではスケールを0にして非表示 */
    transform-origin: bottom right;  /* アンダーバーが右から左にスライド */
    transition: transform 0.3s ease;  /* アンダーバーのアニメーション */
}

/* ホバー時にアンダーバーがスライドして表示される */
navx a:hover::after {
    transform: scaleX(1);  /* スケールを1にして表示 */
    transform-origin: bottom left;  /* アンダーバーが左から右にスライド */
}


.btn-header {
    background: linear-gradient(135deg, #C5A059 0%, #9A7B3A 100%); /* ゴールドグラデーション */
    color: #fff;
    padding: 8px 18px;
    border-radius: 0px;
    border: 0px solid #001526;
}
/* ホバー時 */ 
.btn-header:hover { 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

/* ------------------------------
    Hamburger
------------------------------ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
}

/* Mobile menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #0f2a1f;
    color: #fff;
    padding: 20px;
    border-top: 1px solid #222;
    width: 100%;
    height: 100vh;   
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; /* header の手前に出す */ 
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;       
}
.mobile-nav a {
    padding: 50px 0;
    color: #fff;          /* リンク文字を白 */
    border-bottom: 0px solid #333;
    
    text-align: right;        /* ← 文字を右詰め */
    line-height: 1.6;         /* ← 行間を少し広めに */
    letter-spacing: 0.12em;   /* ← 高級感アップ */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;        
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav {
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

/* Desktop only */
@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
}

/* × ボタン */
.menu-close {
    position: absolute;
    top: 10px;
    right: 20px;

    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;

    padding: 4px 8px;
}


/* --- 高級感のあるダーク背景の医師紹介 --- */
.doctor-section-dark {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f15 0%, #05110c 100%);
  color: var(--text-white);
  position: relative;
}

.doctor-section-dark .section-en-title {
  color: var(--accent-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.doctor-section-dark h2 {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.1rem;
  margin-bottom: 50px;
  color: var(--text-white);
}

/* ガラスカード */
.doctor-card-dark {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 40px;
  max-width: 950px;
  margin: 0 auto;
}

.doctor-photo-dark {
  flex: 0 0 260px;
  border-radius: 6px;
  overflow: hidden;
}

.doctor-photo-dark img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-details-dark {
  flex: 1;
}

.doctor-details-dark h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.doctor-details-dark p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}

.doctor-comment-dark {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 3px solid var(--accent-gold); /* ブランドカラーに調整可 */
    background: rgba(255, 255, 255, 0.04);
}

.doctor-comment-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    opacity: 0.8;
}

.doctor-comment-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* SPレイアウト */
@media (max-width: 768px) {
  .doctor-card-dark {
    flex-direction: column;
    text-align: center;
  }
  .doctor-photo-dark {
    margin: 0 auto;
  }
}

/* --- お客様の声（VOICE）ダークセクション --- */
.voice-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f15 0%, #07140f 100%);
  color: var(--text-white);
  text-align: center;
}

.voice-section .section-en-title {
  color: var(--accent-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.voice-section h2 {
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 60px;
  color: var(--text-white);
}

.voice-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← 横3枠固定 */
  gap: 30px;
}

/* カード */
.voice-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 35px 30px;
  text-align: left;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* 柔らかい影で浮かせる */
}


/* コメントテキスト */
.voice-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e4e4e4;
  margin-bottom: 25px;
}

/* 顧客情報 */
.voice-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.voice-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.voice-user h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--accent-gold);
}

.voice-user span {
  font-size: 0.85rem;
  color: #bbb;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .voice-card {
    text-align: left;
  }
  .voice-wrapper {
    grid-template-columns: 1fr; /* 1列表示 */
  }
}

/* FAQ セクション */
.faq-wrap {
    background-color: #0f2a1f;
    width: 100%;
}

.faq-section {
    background-color: #0f2a1f; /* 深緑背景 */
    color: #e6efe9;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(230,239,233,0.15);
    margin-bottom: 16px;
}

/* 質問部分 */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #e6efe9;
    cursor: pointer;
    position: relative;
}

/* 矢印アイコン（開閉用） */
.faq-question::after {
    content: "＋";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

/* 回答部分（最初は非表示） */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e6efe9;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px; /* 余裕を持たせた大きめ値 */
    padding-top: 12px;
}

/* アイコン回転 */
.faq-item.open .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
    }
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
}

.pt20{
	padding-top: 20px;
}

/* PCでは非表示 */
.sp-only {
  display: none;
}

/* スマホ表示のときだけ表示 */
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}
