@charset "UTF-8";

/* ベース設定 */
:root {
    --main-bg: #f4f4f4;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --gold-accent: #c5a059; /* 高級感のあるゴールド */
    --white: #fff;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--main-bg);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif; /* 明朝体 */
}

a { text-decoration: none; color: inherit; }

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: transparent;
    color: #fff; /* 重要：最初は白文字（背景写真に乗るため） */
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

/* スクロールした時の見た目（JSで制御） */
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* ナビゲーション */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* スマホ用ハンバーガーメニュー（PCでは隠す） */
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background: #fff; /* 白線 */
    margin: 5px;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    /* 背景画像がないと真っ白になるので、仮の色を指定しておきます */
    background-color: #333; 
    /* 画像がある場合はこちらが優先されます */
    background-image: url('images/mashiki-barber-chill-exterior.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* 写真を少し暗くして文字を目立たせる */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-left: 10%;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cta-btn {
    padding: 15px 40px;
    background: var(--gold-accent);
    color: var(--white);
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

/* セクション共通 */
.section { padding: 80px 20px; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 50px; letter-spacing: 3px; }

/* コンセプト */
.concept-text { text-align: center; max-width: 700px; margin: 0 auto; }

/* メニューリスト */
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.text-gold { color: var(--gold-accent); }

.menu-list { max-width: 800px; margin: 0 auto; }
.menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu-name { font-size: 1.2rem; font-weight: bold; }
.menu-price {
    font-size: 1.3rem;       /* 少し大きく */
    font-family: "Helvetica Neue", Arial, sans-serif; /* 数字が見やすいフォントに変更 */
    font-weight: bold;       /* 太文字にして強調 */
    color: var(--gold-accent); /* 金色にして目立たせる */
    white-space: nowrap;     /* 「\」と「4,000」が改行されないようにする */
}.menu-detail { width: 100%; font-size: 0.9rem; color: #aaa; margin-top: 5px; }
.badge {
    background: var(--gold-accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 10px;
}

/* ギャラリー */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.photo-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; }
.photo-card p { text-align: center; margin-top: 10px; font-weight: bold; }

/* スタイリスト & アクセス */
.bg-gray { background-color: #e9e9e9; }
.stylist-box {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}
.stylist-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold-accent);
}
.stylist-txt h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-accent);
    display: inline-block;
}

.access-info { display: flex; gap: 40px; flex-wrap: wrap; }
.map-placeholder, .info-details { flex: 1; min-width: 300px; }
.map-placeholder { height: 300px; background: #eee; }

/* フッター */
footer { background: var(--dark-bg); color: #666; text-align: center; padding: 20px; font-size: 0.8rem; }
.floating-reserve {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gold-accent);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: bold;
    z-index: 999;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* スマホでは一旦隠す */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        text-align: center;
        padding: 20px 0;
    }
    .nav-links.active { display: flex; } /* JSでクラスがついたら表示 */
    .nav-links li { margin: 15px 0; }
    
    .burger { display: block; } /* スマホではハンバーガー表示 */
    
    .hero h1 { font-size: 2rem; }
    .hero-content { margin-left: 20px; margin-right: 20px; }
    header { padding: 15px 20px; }
    
    .stylist-box { flex-direction: column; text-align: center; }

/* ====================================
   メニューのカテゴリー見出し
   ==================================== */
.menu-category {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold-accent);
    margin-top: 50px; /* 上の間隔 */
    margin-bottom: 15px; /* 下の間隔 */
    padding-left: 10px;
    border-left: 4px solid var(--gold-accent); /* 左側に金の線を入れる */
    letter-spacing: 2px;
}

/* 最初の見出しだけ上の隙間を少し詰める */
.menu-category:first-of-type {
    margin-top: 10px;
}
}