@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;
}

/* =========================================
   ヒーローセクション内のSNSアイコン設定
   ========================================= */
.hero-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px; /* テキストとの余白 */
    position: relative;
    z-index: 2; /* 背景やオーバーレイより前に出す */
}

.hero-sns .sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* 完全な丸型に */
    color: #fff;
    font-size: 1.8rem; /* アイコンのサイズ */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 少し影をつけて立体感を出す */
}

/* Instagramのオリジナルグラデーション */
.hero-sns .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* TikTokのオリジナルカラー（黒ベース＋アイコンにネオン風の影） */
.hero-sns .tiktok {
    background: #000000;
}
.hero-sns .tiktok i {
    text-shadow: 1.5px 1.5px 0px #ff0050, -1.5px -1.5px 0px #00f2fe;
}

/* ホバー（タップ）時の動き */
.hero-sns .sns-icon:hover {
    transform: translateY(-5px); /* 少し上にフワッと浮き上がる */
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* =========================================
   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);
}

/* =========================================
   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; }
}