:root {
    --primary-color: #000000;      /* 基本の黒、エッジの効いたモダンさ */
    --accent-color: #8c7e6c;       /* 洗練されたシアーグレージュ */
    --bg-light: #fbfbfa;           /* ニュアンスのある洗練されたオフホワイト */
    --text-main: #1a1a1a;          /* 高級感のある深い黒 */
    --text-sub: #666666;           /* 繊細なニュアンスグレー */
    --border-light: 1px solid #e5e5e0; /* 究極に細く繊細なディテール線 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Mincho ProN", "MS Mincho", serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.8;
    letter-spacing: 0.08em; /* 高級感を出すために文字の間隔を少し広げる */
}

.main-container {
    max-width: 1200px; /* 少しワイドにして余白の美しさを強調 */
    margin: 0 auto;
    padding: 0 20px;
}

/* 🌐 ナビゲーションバー（極細線の洗練されたデザイン） */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(251, 251, 250, 0.95);
    border-bottom: var(--border-light);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 20px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo-img {
    height: 28px; /* ロゴは小さく品よく配置 */
    display: block;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-sub);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase; /* 英字を大文字に固定してモード感を演出 */
    transition: color 0.3s ease;
    letter-spacing: 0.15em;
}
.nav-menu a.active, .nav-menu a:hover {
    color: var(--primary-color);
}

/* 🖼️ メインビジュアル（シアーフェード・ミニマル） */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; /* 画面いっぱいに広がる迫力のシネマ比率 */
    margin-top: 0; /* ナビの下に入り込ませて透けさせる */
    overflow: hidden;
}
.slider {
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(15%) brightness(95%); /* ほんのり彩度を落としてモード映画風に */
    transition: opacity 2s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.hero-text {
    position: absolute;
    bottom: 12%;
    left: 8%;
    max-width: 550px;
    z-index: 10;
    color: #ffffff; /* 写真の上に白文字でエッジを効かせる */
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.hero-text h2 {
    font-size: 2.2rem;
    font-weight: 300; /* あえて細いフォントで繊細さを演出 */
    line-height: 1.5;
    margin-bottom: 25px;
}
.hero-text p {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.8);
}
.btn-line-top {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border: 1px solid #ffffff; /* 白の1本線ボタン */
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.btn-line-top:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* 🗂️ 共通タイトル（中央に上品に、フォントサイズは小さめ） */
.section-title {
    text-align: center;
    margin: 100px 0 60px 0;
}
.section-title span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-main);
}

/* 💡 コンセプトグリッド（余白を広げたミニマルデザイン） */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.concept-card {
    background: transparent; /* 背景色や枠線は完全に排除 */
    padding: 0;
}
.concept-card-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}
.concept-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.6s ease;
}
.concept-card:hover img {
    transform: scale(1.03); /* フワッと静かに拡大する高級感 */
}
.concept-card h3 {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.concept-card p {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.8;
    text-align: justify;
}

/* 💰 LINE予約誘導（大人の上質なミニマルボックス） */
.booking-section {
    margin: 120px 0;
}
.booking-box {
    background: #ffffff;
    border: var(--border-light);
    padding: 80px 40px;
    text-align: center;
}
.booking-box h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
}
.booking-box p {
    font-size: 0.85rem;
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.btn-line-large {
    display: inline-block;
    background-color: #06c755; /* LINE公式のブランドグリーン */
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: bold;
    padding: 18px 50px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.btn-line-large:hover {
    opacity: 0.8;
}

/* 📱 SNS埋め込み連携（白背景のすっきりしたカード） */
.sns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.sns-card {
    background: transparent;
}
.sns-card h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    color: var(--text-sub);
    font-weight: 400;
}
.sns-placeholder {
    background: #ffffff;
    border: var(--border-light);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 0.8rem;
}

/* 🗺️ アクセス・店舗情報 */
.info-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    margin-bottom: 120px;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table th, .info-table td {
    padding: 18px 0;
    border-bottom: var(--border-light);
    font-size: 0.8rem;
}
.info-table th {
    font-weight: 400;
    color: var(--text-sub);
    width: 30%;
    text-align: left;
}
.info-table td {
    color: var(--text-main);
}
.map-iframe-wrapper {
    background: #ffffff;
    border: var(--border-light);
    height: 100%;
    min-height: 300px;
}

/* ✂️ メニューページ専用ブロック（スタイリッシュな極薄線レイアウト） */
.menu-page-section {
    padding-bottom: 100px;
}
.menu-block {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}
.menu-block.reverse {
    flex-direction: row-reverse;
}
.menu-block-img {
    width: 40%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(10%);
}
.menu-list-box {
    width: 60%;
}
.menu-list-box h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 25px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: var(--border-light);
    font-size: 0.85rem;
}
.item-name {
    color: var(--text-main);
}
.item-price {
    color: var(--accent-color);
    font-weight: 500;
}

/* 👥 スタッフ紹介（モード誌のような洗練されたカード） */
.staff-hero-box {
    margin-bottom: 80px;
}
.staff-all-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 20%; /* 💡 横は中央、縦は上から20%の位置を基準にする */
    filter: grayscale(15%);
    margin-bottom: 25px;
}
.staff-hero-box p {
    font-size: 0.85rem;
    color: var(--text-sub);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.staff-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.staff-member-card {
    text-align: left; /* 左寄せにして洗練さをプラス */
}
.staff-thumb-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}
.staff-thumb-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.5s ease;
}
.staff-member-card:hover .staff-thumb-img {
    transform: scale(1.02);
}
.staff-member-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.staff-rank {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.staff-bio {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* 📸 ヘアカタログ（余白の美しいグリッド＆ノーフレーム） */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    border-bottom: var(--border-light);
    padding-bottom: 20px;
}
.filter-btn {
    background: transparent;
    border: none;
    padding: 5px 15px;
    font-size: 0.8rem;
    color: var(--text-sub);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
    color: var(--primary-color);
    font-weight: bold;
}
.catalog-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    margin-bottom: 100px;
}
.catalog-card {
    background: transparent;
    cursor: pointer;
}
.catalog-img-wrapper {
    overflow: hidden;
    margin-bottom: 12px;
}
.catalog-img-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(5%);
    transition: transform 0.5s ease;
}
.catalog-card:hover img {
    transform: scale(1.02);
}
.catalog-card h4 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
}

/* 🌌 モーダルウインドウ */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.open {
    display: flex;
}
.modal-content {
    background: var(--bg-light);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.8rem;
    font-weight: 200;
    cursor: pointer;
}
.modal-body-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 30px;
    align-items: center;
}
#modal-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.modal-info-view h3 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 15px;
}
#modal-desc {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-bottom: 30px;
    line-height: 1.7;
}
.thumbnail-title {
    font-size: 0.75rem;
    color: var(--text-sub);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}
.thumb {
    width: 60px;
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: none;
}
.thumb.active, .thumb:hover {
    opacity: 1;
}
.btn-modal-booking {
    display: block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: bold;
    padding: 16px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.btn-modal-booking:hover {
    opacity: 0.9;
}

footer {
    background: #ffffff;
    border-top: var(--border-light);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.75rem;
    color: var(--text-sub);
    letter-spacing: 0.1em;
}

/* 📱 スマホ・タブレット対応レスポンシブ */
@media (max-width: 960px) {
    .concept-grid { grid-template-columns: 1fr; gap: 50px; }
    .sns-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-grid { grid-template-columns: 1fr; gap: 40px; }
    .staff-grid-box { grid-template-columns: 1fr 1fr; gap: 30px; }
    .catalog-grid-box { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .menu-block { flex-direction: column !important; gap: 20px; }
    .menu-block-img { width: 100%; height: 250px; }
    .menu-list-box { width: 100%; }
}

@media (max-width: 640px) {
    .navbar { padding: 15px 0; }
    .nav-menu { gap: 15px; }
    .nav-menu a { font-size: 0.75rem; letter-spacing: 0.05em; padding: 0; }
    .hero-section { height: 80vh; }
    .hero-text { left: 5%; bottom: 8%; right: 5%; max-width: 100%; }
    .hero-text h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .hero-text p { font-size: 0.8rem; margin-bottom: 25px; }
    .btn-line-top { padding: 12px 25px; font-size: 0.75rem; }
    .sp-only { display: block; }
    .booking-box { padding: 50px 20px; }
    .staff-grid-box { grid-template-columns: 1fr; }
    .catalog-grid-box { grid-template-columns: 1fr 1fr; gap: 20px 15px; }
    .modal-body-grid { grid-template-columns: 1fr; gap: 20px; }
    .modal-content { padding: 25px 20px; max-height: 95vh; overflow-y: auto; }
}