@charset "UTF-8";

/* ====================================
   Base Styles (基本設定)
   ==================================== */
:root {
    --primary-color: #1a237e; /* 深いネイビー */
    --accent-color: #c5a059;  /* 落ち着いたゴールド */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased; /* 文字を滑らかに表示 */
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Header & Navigation
   ==================================== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Logo Design --- */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.8rem; /* 堂々としたサイズ */
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-family: 'Zen Old Mincho', serif;
    letter-spacing: 0.2em;
    margin-left: 2px;
    opacity: 0.9;
}

/* --- PC Navigation --- */
.pc-nav ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pc-nav a:not(.nav-btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    padding: 10px 5px;
    font-family: 'Noto Serif JP', serif;
}

.pc-nav a:not(.nav-btn):hover {
    color: var(--accent-color);
}

.nav-highlight {
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* --- Buttons (PC) --- */
.pc-nav a.nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* 体験レッスン (Outline) */
.pc-nav a.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.pc-nav a.btn-outline:hover {
    background-color: #f0f0f5;
    transform: translateY(-2px);
}

/* お問い合わせ (Solid) */
.pc-nav a.btn-solid {
    background-color: var(--accent-color);
    color: #ffffff !important;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.4);
}

.pc-nav a.btn-solid:hover {
    background-color: #b08d4b;
    border-color: #b08d4b;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(197, 160, 89, 0.6);
}

/* ====================================
   Mobile Menu (Hamburger)
   ==================================== */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* Open State */
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(135deg); }
.hamburger.open span:nth-child(2) { opacity: 0; left: -60px; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-135deg); }

.sp-nav {
    display: none; /* jQueryでfadeInさせます */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    text-align: center;
    padding-top: 100px;
    overflow-y: auto; /* 画面が小さい時にスクロール可能にする */
}

.sp-nav li {
    margin: 20px 0;
}

.sp-nav a {
    font-size: 1.2rem;
    font-family: 'Noto Serif JP', serif;
    color: var(--primary-color);
    display: block;
    padding: 10px;
}

/* SP Buttons */
.sp-nav .sp-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 10px auto;
    padding: 15px 0;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.sp-nav .sp-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.sp-nav .sp-btn-solid {
    background-color: var(--accent-color);
    color: #fff !important;
    border: 2px solid var(--accent-color);
    margin-top: 15px;
}

/* ====================================
   Hero Slider
   ==================================== */
#hero {
    position: relative;
    height: 600px;
    margin-top: 80px; /* Header Height */
    overflow: hidden;
    background-color: #000;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* ふんわり切り替え */
}

.slide.active {
    opacity: 1; /* 写真を明るく表示 */
}

/* 画像パス（必要に応じて書き換えてください） */
.slide:nth-child(1) { background-image: url('../images/slide1.jpg');}
.slide:nth-child(2) { background-image: url('../images/slide2.jpg');}
.slide:nth-child(3) { background-image: url('../images/slide3.jpg'); }
.slide:nth-child(4) { background-image: url('../images/Masayuki1.jpg'); }

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    width: 90%;
    z-index: 10;
}

.hero-text h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
}

/* ====================================
   Sections Common
   ==================================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

.bg-light { background-color: var(--bg-color); }
.bg-gray { background-color: #f0f0f5; }

/* Features (Grid) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Message/About */
.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.message-highlight {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: 'Zen Old Mincho', serif;
    text-align: center;
    margin: 50px 0;
    font-weight: bold;
    padding: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* News */
.news-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    transition: 0.2s;
}

.news-item:hover {
    background-color: #fafafa;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 100px;
}

/* Access (Map) */
.access-wrap {
    text-align: center;
}

/* Map Responsive Wrapper */
.map-placeholder {
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA */
#cta {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1516280440614-6697288d5d38?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    background-attachment: fixed; /* パララックス効果 */
}

#cta h2 {
    color: var(--white);
    border-color: var(--white);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #b08d4b;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 50px 0 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-nav {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav a {
    color: #ccc;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}


/* ====================================
   下層ページ（講師プロフィール）用スタイル
   ==================================== */

/* --- タイトル帯 --- */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-top: 80px; /* ヘッダーの高さ分下げる */
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2rem;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ====================================
   Breadcrumbs (パンくずリスト)
   ==================================== */
.breadcrumbs {
    padding: 15px 0;
    background-color: #f9f9f9; /* 背景色（薄いグレー） */
    border-bottom: 1px solid #eee; /* 下に薄い線 */
    font-size: 0.9rem;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap; /* スマホで長くなったら折り返す */
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    color: #999; /* 現在のページはグレー */
}

/* リンクがある項目（ホームなど）のデザイン */
.breadcrumbs li a {
    color: var(--primary-color); /* リンクはネイビー */
    text-decoration: underline;  /* リンクだとわかるように下線 */
    text-decoration-color: rgba(26, 35, 126, 0.3); /* 下線を薄く */
}

.breadcrumbs li a:hover {
    color: var(--accent-color); /* ホバー時はゴールド */
    text-decoration: none;
}

/* 区切り文字（ > ）の設定 */
.breadcrumbs li:not(:last-child)::after {
    content: '>';       /* 記号 */
    margin: 0 10px;     /* 記号の左右の余白 */
    color: #ccc;        /* 記号の色 */
    font-family: sans-serif; /* 記号のフォント */
}

/* --- プロフィール全体のレイアウト（横並び） --- */
.profile-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

/* 写真エリア */
.profile-img {
    flex: 1; 
    max-width: 400px;
}

.profile-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* テキストエリア */
.profile-txt {
    flex: 1.5; 
}

/* --- 講師名デザイン（線の下に名前） --- */
.instructor-name {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.instructor-name .position {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.instructor-name h3 {
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    font-family: 'Noto Serif JP', serif;
}

.instructor-name .en-name {
    display: block;
    font-size: 1rem;
    color: #999;
    font-family: 'Noto Serif JP', serif;
    margin-top: 5px;
}

/* 本文 */
.profile-txt p {
    text-align: justify;
    margin-bottom: 1.5em;
    font-size: 1rem;
}

/* --- 経歴リスト --- */
.biography-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.biography-list h4 {
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 15px;
}

.biography-list dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.biography-list dt {
    width: 20%;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.biography-list dd {
    width: 80%;
    margin: 0;
    margin-bottom: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    border-bottom: 1px dotted #ddd;
}

/* ====================================
   FAQ Page Styles (よくある質問)
   ==================================== */

/* トップ画像 */
.faq-top-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-top-image img {
    width: 100%;
    height: 300px; /* 高さを指定 */
    object-fit: cover; /* 画像を綺麗にトリミング */
    display: block;
}

/* 導入文 */
.faq-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* カテゴリ枠 */
.faq-category {
    margin-bottom: 80px;
}

/* カテゴリ見出し */
.category-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-family: 'Noto Serif JP', serif;
}

/* アコーディオンアイテム */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

/* 質問部分 (クリックエリア) */
.faq-question {
    padding: 20px 50px 20px 20px; /* 右側にアイコン用の余白 */
    font-weight: bold;
    cursor: pointer;
    position: relative;
    font-size: 1.05rem;
    color: var(--primary-color);
    line-height: 1.5;
}

/* 質問のアイコン (+ / -) */
.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.faq-icon::before { width: 100%; height: 2px; } /* 横棒 */
.faq-icon::after { width: 2px; height: 100%; } /* 縦棒 */

/* 開いた時のアイコン変化 (縦棒を消してマイナスにする) */
.faq-question.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* 回答部分 (最初は隠す) */
.faq-answer {
    display: none; /* jQueryで表示させます */
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
    line-height: 1.8;
}

/* ====================================
   Contact Page Styles (お問い合わせ)
   ==================================== */

/* 導入文エリア */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
}

/* お電話相談の注意書きボックス */
.contact-notice {
    background-color: #fff8e1; /* 薄い黄色 */
    border: 2px solid var(--accent-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
    text-align: left;
}

.contact-notice h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--accent-color);
    padding-bottom: 10px;
}

.contact-notice p {
    margin: 0;
    font-size: 0.95rem;
}

.highlight-text {
    color: #d32f2f; /* 赤色で強調 */
    font-weight: bold;
    background: rgba(255,255,255,0.5);
}

/* フォーム全体の枠 */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* 各入力項目 */
.form-item {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* 必須マーク */
.required {
    background-color: #d32f2f;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

/* テキスト入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* 枠を含めて幅を計算 */
    background-color: #f9f9f9;
    font-family: inherit;
    transition: 0.3s;
}

/* 入力欄にフォーカスした時 */
input:focus,
textarea:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

/* ラジオボタン（選択肢） */
.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.radio-label input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color); /* チェックの色 */
}

/* 送信ボタンエリア */
.form-btn-area {
    text-align: center;
    margin-top: 40px;
}

.privacy-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-submit {
    border: none;
    cursor: pointer;
    min-width: 250px;
    font-size: 1.2rem;
}

/* ====================================
   Lesson Page Styles (レッスン内容ページ)
   ==================================== */

/* --- Intro Area --- */
.lesson-intro {
    text-align: center;
    padding: 60px 0;
    background-color: var(--white);
}

.lesson-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Zen Old Mincho', serif;
}

.lesson-intro p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

/* --- Content Sections --- */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* --- Flow List (レッスンの流れ) --- */
.flow-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.flow-item {
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.flow-item:last-child {
    border-bottom: none;
}

.flow-time {
    font-weight: bold;
    color: var(--accent-color); /* ゴールド */
    flex-basis: 120px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
}

.flow-content {
    font-weight: bold;
    color: var(--primary-color); /* ネイビー */
    flex-basis: 220px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.flow-detail {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Photo Wrap --- */
.lesson-photo-wrap {
    text-align: center;
    margin-top: 50px;
}

.lesson-photo-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.lesson-photo-wrap .caption {
    font-size: 0.9rem; 
    margin-top: 15px; 
    color: #666;
}

/* --- Level Cards (カリキュラム) --- */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.level-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
    border-top: 4px solid var(--accent-color); /* 上にアクセントカラー */
}

.level-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.level-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.level-card .card-lead {
    font-weight: bold;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.level-card hr {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 15px 0;
}

/* --- Voices Grid (生徒さんの声) --- */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
    border-left: 5px solid var(--accent-color); /* 左にゴールドライン */
}

.voice-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
    font-family: 'Noto Serif JP', serif;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.voice-meta {
    text-align: right;
    font-size: 0.85rem;
    color: #777;
    font-weight: bold;
}

/* --- Online Section --- */
.online-section {
    background-color: #f4f4f4; /* 薄いグレー */
    padding: 60px 0;
}

.online-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.online-sub-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 10px;
}

.online-sub-title::before {
    content: "●";
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.online-box .note {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #666;
}

.online-qa dt {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 5px;
}

.online-qa dd {
    margin-left: 0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* --- Genre List --- */
.genre-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.genre-item {
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* ====================================
   FAQ Link Area (FAQへの誘導)
   ==================================== */
.faq-link-section {
    padding: 40px 0;
    background-color: #fff; /* 背景は白 */
}

.faq-link-wrap {
    text-align: center;
    background-color: #f4f4f8; /* 薄いグレーのボックス */
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.faq-link-text {
    font-weight: bold;
    color: var(--primary-color); /* ネイビー */
    margin-bottom: 25px;
    line-height: 1.8;
}

.btn-faq-link {
    display: inline-block;
    color: var(--primary-color);
    background-color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Noto Serif JP', serif;
}

.btn-faq-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2);
}

/* ====================================
   Performance Page Styles (公演情報ページ)
   ==================================== */

/* --- 公演情報セクション --- */
.performance-wrap {
    max-width: 800px;
    margin: 0 auto 60px;
}

/* ポスター画像エリア */
.poster-container {
    width: 100%;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
}

.poster-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* 見出しの装飾（小見出し） */
.section-sub-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

/* 公演詳細テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", serif;
}

.info-table th,
.info-table td {
    padding: 18px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 25%;
    background-color: #fcfcfc;
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
}

/* キャストリスト */
.cast-area {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    border: 1px solid #eee;
}

.cast-names {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    line-height: 1.8;
    margin-top: 10px;
    font-weight: 500;
}

.staff-list {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
    line-height: 1.8;
}

/* チケット予約エリア */
.ticket-area {
    background-color: #fffaf0; /* 薄いあんず色 */
    border: 2px solid var(--accent-color);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.ticket-area h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.qr-img {
    max-width: 180px;
    border: 8px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 20px auto;
    display: block;
}

.contact-info-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 15px;
    line-height: 1.6;
}

/* --- News List (お知らせリスト詳細版) --- */
.news-list-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.news-item-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.news-date-label {
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    color: var(--primary-color);
    width: 120px;
    flex-shrink: 0;
}

.news-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.news-tag.gray {
    background-color: #999;
}

.news-text {
    flex: 1;
    line-height: 1.6;
}
