@charset "UTF-8";
/* ==========================================================================
   Wynn Nakasu - Clean & Perfect Layout
   ========================================================================== */

:root {
    --tiffany-blue: #81D8D0;
    --tiffany-dark: #68b0a9;
    --gold: #BFA15C;
    --soft-black: #333333;
    --white: #ffffff;
    --bg-light: #f8fbfb;
    --silver: #e0e0e0;
    --line-green: #06C755;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
    color: var(--soft-black);
    background-color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 70px; /* PCヘッダーの高さ分を下げる */
}

/* =========================================
   1. Header & Navigation (横スクロール型)
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    z-index: 9999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    height: 70px;
}

.header-logo { margin: 0; }
.header-logo img { height: 45px; width: auto; display: block; }

.global-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.global-nav li { margin-left: 25px; }
.global-nav a {
    text-decoration: none;
    color: var(--soft-black);
    font-size: 0.85rem;
    font-family: "Cinzel", serif;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.global-nav a:hover { color: var(--tiffany-blue); }

/* =========================================
   2. Hero Section
   ========================================= */
.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-top: -70px; /* padding-topを相殺して画面トップに付着させる */
}

.hero-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: url('./img/main_visual.jpg') center/cover no-repeat;
    opacity: 0.3; /* 画像を薄くして文字を読ませる */
}

.hero-vignette {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(255,255,255,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 15px;
}

.hero-sub {
    font-family: "Cinzel", serif;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.hero-title {
    font-family: "Cinzel", serif;
    font-size: 3.5rem;
    color: var(--tiffany-dark);
    margin: 0 0 10px 0;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--soft-black);
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.8;
}

/* =========================================
   3. Sections Common
   ========================================= */
section {
    padding: 50px 15px; /* ★ここを80pxから50pxに狭くしました */
    max-width: 1000px; 
    margin: 0 auto;
}

.section-title {
    font-family: "Cinzel", serif;
    text-align: center;
    font-size: 2.2rem;
    color: var(--tiffany-dark);
    letter-spacing: 3px;
    margin-bottom: 30px; /* ★タイトルの下の隙間も50pxから30pxに狭くしました */
}

.section-title span {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 5px;
    margin-top: 8px;
}


/* =========================================
   4. Staff Grid (パワースポットの黄金サイズ)
   ========================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC4列 */
    gap: 15px; /* カード間の余白 */
}

.card {
    border: 1px solid var(--tiffany-blue);
    border-radius: 6px;
    background: var(--white);
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.sns-links {
    position: absolute;
    top: 8px; right: 8px;
    z-index: 5;
}
.sns-links a {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.9);
    color: #E1306C;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-img img {
    width: 100%;
    aspect-ratio: 1 / 1.25; /* 綺麗な縦横比 */
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 15px 12px;
    background: var(--white);
    /* 境界線を少し太くしてカードのメリハリを出します */
    border-top: 2px solid var(--tiffany-blue); 
}

.staff-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    /* 点線から実線に変更し、スッキリと見せます */
    border-bottom: 1px solid #eeeeee; 
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.staff-header .name {
    font-weight: bold;
    /* ティファニーブルーから「濃い黒」に変更し、名前を一瞬で読めるようにします */
    color: var(--soft-black); 
    font-size: 1.15rem;
}

.staff-header .age {
    font-size: 0.85rem;
    color: #555; /* グレーを少し濃くして見やすく */
}

.favorite-drink {
    font-size: 0.75rem;
    font-weight: bold;
    color: #ffffff; /* 文字はハッキリとした白 */
    background-color: var(--tiffany-dark); /* 濃い目のティファニーブルー */
    border: none; /* 背景が濃いため枠線は無しにしてスッキリと */
    padding: 5px 10px; /* 文字の周りの余白を少し広げて読みやすく */
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* ほんの少し影をつけて立体感を出す */
	width:100%;
}

.comment {
    font-size: 0.8rem;
    /* #666（薄いグレー）から、ほぼ黒（#333）に変更し、長文でも読みやすくします */
    color: #333; 
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* =========================================
   5. System & Info Tables
   ========================================= */
.system-box {
    background: var(--bg-light);
    border: 1px solid var(--tiffany-blue);
    border-radius: 8px;
    padding: 30px;
}

.system-table {
    width: 100%;
    border-collapse: collapse;
}

.system-table th, .system-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--silver);
}

.system-table th {
    text-align: left;
    color: var(--soft-black);
    font-weight: bold;
    width: 40%;
}
.system-table td {
    text-align: right;
    font-weight: bold;
    color: var(--tiffany-dark);
}

/* =========================================
   6. Gallery (Splide)
   ========================================= */
.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--tiffany-blue);
}

/* =========================================
   7. Recruit Section
   ========================================= */
#recruit { text-align: center; }
.recruit-box {
    background: #fffafa;
    border: 2px dashed var(--tiffany-blue);
    border-radius: 10px;
    padding: 40px 20px;
}
.recruit-btn {
    background: var(--tiffany-blue);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(129,216,208,0.3);
}

/* =========================================
   8. Footer & Floating Line
   ========================================= */
footer {
    background: var(--soft-black);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.8rem;
}

.btn-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--line-green);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 2001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* =========================================
   ページ誘導ボタン (トップページ用)
   ========================================= */
.btn-more {
    display: inline-block;
    background: transparent;
    color: var(--tiffany-dark);
    border: 1px solid var(--tiffany-dark);
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--tiffany-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(129,216,208,0.3);
}
/* =========================================
   Cast Detail Page (キャスト個別ページ)
   ========================================= */
.cast-detail-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cast-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cast-photo {
    flex: 1;
    max-width: 400px;
    border: 2px solid var(--tiffany-blue);
    border-radius: 10px;
    padding: 5px; /* 写真の周りに少し余白をとって額縁のように */
    background: var(--white);
}

.cast-photo img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.cast-profile {
    flex: 1.2;
}

.profile-name {
    font-size: 2.2rem;
    color: var(--soft-black);
    border-bottom: 2px solid var(--tiffany-blue);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.profile-age {
    font-size: 1.2rem;
    color: #666;
}

.profile-insta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.profile-insta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.profile-table th, .profile-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--silver);
    font-size: 0.95rem;
}

.profile-table th {
    width: 35%;
    text-align: left;
    color: var(--tiffany-dark);
}

.profile-comment-box {
    background: var(--bg-light);
    border: 1px solid var(--tiffany-blue);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.profile-comment-box h3 {
    margin-top: 0;
    color: var(--tiffany-dark);
    font-size: 1.1rem;
    border-bottom: 1px dashed var(--silver);
    padding-bottom: 10px;
}

.profile-comment-box p {
    margin: 0;
    line-height: 1.8;
}

/* --- スマホ対応 (個別ページ) --- */
@media screen and (max-width: 768px) {
    .cast-detail-container {
        flex-direction: column; /* 縦並びに変更 */
        gap: 20px;
    }
    
    .cast-photo {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
}

/* =========================================
   FAQ Page Styles (アコーディオン)
   ========================================= */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--tiffany-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-q {
    background: var(--bg-light);
    padding: 18px 20px;
    font-weight: bold;
    color: var(--tiffany-dark);
    cursor: pointer;
    position: relative;
    list-style: none; /* デフォルトの三角矢印を消す */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-q::-webkit-details-marker {
    display: none; /* Safari用の三角矢印消し */
}

/* FontAwesomeでプラスアイコンを表示 */
.faq-q::after {
    content: '\f067';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--tiffany-blue);
    transition: transform 0.3s ease;
}

/* 開いた時はアイコンを45度回転させてバツ印(×)にする */
.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 20px;
    border-top: 1px dashed var(--silver);
    color: var(--soft-black);
    line-height: 1.8;
}

.faq-a p {
    margin: 0;
}

/* =========================================
   アクションボタン（LINE・電話）
   ========================================= */
.btn-action-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
}

/* LINEボタン専用デザイン */
.btn-action.line {
    background: linear-gradient(135deg, #06C755 0%, #00A543 100%);
}
.btn-action.line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
    color: #ffffff;
}

/* 電話ボタン専用デザイン */
.btn-action.phone {
    background: linear-gradient(135deg, #434343 0%, #1c1c1c 100%);
}
.btn-action.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* アイコンの調整 */
.btn-action i {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* 電話ボタン内の補足テキスト */
.btn-action .sub-text {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 8px;
    opacity: 0.8;
}

/* キラッと光るエフェクト（全アクションボタン共通） */
.btn-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
/* =========================================
   9. Mobile Responsive (スマホ対応)
   ========================================= */
@media screen and (max-width: 768px) {
    body {
        /* ロゴが大きくなった分、ページ全体の開始位置を下げる */
        padding-top: 160px; 
    }

    /* ヘッダー：横スクロールメニュー */
    .header-inner {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 10px 0 0 0;
    }
    .header-logo img {
        height: 105px; /* ★ここを35pxから105px（3倍）に変更しました */
        margin-bottom: 10px;
    }
    .global-nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .global-nav::-webkit-scrollbar { display: none; }
    .global-nav ul {
        padding: 0 15px 10px 15px;
        white-space: nowrap; 
    }
    .global-nav li { margin: 0 20px 0 0; }
    .global-nav a { font-size: 0.8rem; color: var(--tiffany-dark); }

    /* ヒーロー：コンパクトに */
/* ヒーロー：コンパクトに */
    .hero-section {
        height: 50vh;
        min-height: 350px;
        /* ▼ ここを -160px から 0 に変更して被りをなくす ▼ */
        margin-top: 0; 
    }
    .hero-title { font-size: 2rem; }
    .hero-sub { font-size: 0.8rem; }
    .hero-text { font-size: 1rem; }

    /* セクション共通（先ほど狭くした設定を維持） */
    section { padding: 30px 15px; }
    .section-title { font-size: 1.8rem; margin-bottom: 20px; }
    
    /* スタッフ：スマホは2列 */
    .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .staff-header .name { font-size: 0.95rem; }
    
    /* システム：余白詰める */
    .system-box { padding: 15px; }
    .system-table th, .system-table td { padding: 10px 5px; font-size: 0.9rem; }
}