@charset "UTF-8";

:root {
    --text-color: #4a4a4a;       /* 濃いグレー（黒ではない） */
    --accent-color: #d4c4b7;     /* グレージュ */
    --bg-color: #faf9f8;         /* 優しいオフホワイト */
    --white: #ffffff;
    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Noto Sans JP", sans-serif;
}

/* Base */
body {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-family: var(--font-sans);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 300; /* 細めの文字で繊細さを出す */
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
/* img { width: 100%; height: auto; display: block; }  ←個別の設定と競合しないよう一旦コメントアウトまたは削除でもOKですが、基本設定として残すならOK */
img { width: 100%; height: auto; display: block; }
li { list-style: none; }

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.9); /* 少し透ける白 */
    backdrop-filter: blur(10px); /* すりガラス効果 */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #333;
}

/* --- Navigation (Updated Style) --- */
/* ==========================================
   Header Navigation (Underline Animation)
   ========================================== */

.main-nav ul {
    display: flex;
    gap: 30px; /* リンク同士の間隔 */
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    position: relative; /* 下線の基準位置 */
    display: inline-block;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding-bottom: 5px; /* 文字と下線の隙間 */
    transition: color 0.3s;
}

/* 下線（最初は幅0で隠しておく） */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* 初期状態は0% */
    height: 1px; /* 線の太さ */
    background-color: var(--accent-color); /* 線の色（グレージュ） */
    transition: width 0.3s; /* 0.3秒かけて伸びる */
}

/* ホバーした時の動き */
.main-nav a:hover {
    color: var(--text-color); /* 文字色を少し濃く */
}

.main-nav a:hover::after {
    width: 100%; /* 線を100%に伸ばす */
}

/* Reserveボタンだけは目立つようにボタン型のまま残す（ここはお好みで） */
.btn-nav a {
    padding: 10px 25px; /* パディングを上書き */
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 30px;
    border: none;
}
/* Reserveボタンには下線を出さない */
.btn-nav a::after {
    display: none;
}
.btn-nav a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.hero-img {
    position: absolute;
    top: 0; right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    width: 40%;
}

.hero-catch {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.8);
}

/* Concept Section */
.section-pad { padding: 100px 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.concept-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.concept-img {
    flex: 1;
    position: relative;
}

.concept-img img {
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

/* 画像の下にずらして配置する枠線 */
.img-deco {
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent-color);
    z-index: 1;
}

.concept-text { flex: 1; }

.section-en {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.concept-text h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.concept-text p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-more {
    display: inline-block;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* News Section */
.bg-pale { background-color: #f3f0ed; } /* ほんのりベージュ背景 */

.center { text-align: center; margin-bottom: 50px; }
.center h3 { font-family: var(--font-serif); font-size: 2rem; margin: 0; font-weight: 500; }

.news-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.news-list li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-list .date {
    font-family: var(--font-serif);
    color: #888;
    font-size: 0.9rem;
}

.news-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* --- News Category Colors (大人くすみカラー) --- */
.news-list .category {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 2px;
    border: none;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

/* Info */
.category[data-cat="Info"] { background-color: #6e84a3; }
/* Campaign */
.category[data-cat="Campaign"] { background-color: #d18c94; }
/* Blog */
.category[data-cat="Blog"] { background-color: #7da391; }
/* Product */
.category[data-cat="Product"] { background-color: #9e8fa3; }
/* Style */
.category[data-cat="Style"] { background-color: #a69080; }


/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.insta-grid img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.insta-grid img:hover {
    filter: brightness(1.1);
}

/* Footer */
.site-footer {
    background-color: var(--white);
    padding: 80px 0 20px;
    border-top: 1px solid #eee;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0 0 20px 0;
}

.footer-sns {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
}

/* Mobile Responsive Common */
@media (max-width: 768px) {
    .header-inner { padding: 15px 20px; }
    .main-nav { display: none; } /* ハンバーガー省略時は非表示 */
    .hamburger { display: block; } /* 必要なら実装 */
    
    .hero { flex-direction: column-reverse; height: auto; }
    .hero-img { width: 100%; height: 300px; position: relative; }
    .hero-content { width: 100%; padding: 40px 20px; text-align: center; }
    .hero-title { font-size: 2rem; }
    
    .concept-layout { flex-direction: column; gap: 40px; }
    .img-deco { top: 15px; left: 15px; }
    
    .insta-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; gap: 40px; text-align: center; }
    .footer-links { text-align: center; width: 100%; }
}


/* ==========================================
   Menu Page Styles
   ========================================== */

/* Page Title Area */
.page-title-area {
    background-color: #fcfbf9;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 50px;
}

.page-title-area h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.page-title-area p {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
}

/* Menu Layout */
.small-container {
    max-width: 800px;
}

.menu-block {
    margin-bottom: 80px;
}

.menu-cat {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}

.menu-note {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-bottom: 20px;
}

/* Menu List Items */
.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    position: relative;
}

/* メニュー名 */
.menu-item dt {
    font-weight: 400;
    font-size: 1.05rem;
    position: relative;
    background-color: var(--bg-color);
    padding-right: 15px;
    z-index: 2;
}

/* 価格 */
.menu-item dd {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    background-color: var(--bg-color);
    padding-left: 15px;
    z-index: 2;
}

/* 点線 */
.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #ccc;
    z-index: 1;
}

.item-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
    line-height: 1.5;
}

/* Highlight Block */
.highlight-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.highlight-block .menu-item dt,
.highlight-block .menu-item dd {
    background-color: #fff;
}

.tax-note {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: -40px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: rgba(212, 196, 183, 0.1);
}

.cta-section h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Mobile Responsive for Menu */
@media (max-width: 768px) {
    .highlight-block { padding: 20px; }
    .menu-item { flex-direction: column; gap: 5px; margin-bottom: 30px; }
    .menu-item::after { display: none; }
    .menu-item dt, .menu-item dd { background: transparent; padding: 0; }
    .item-desc { margin-bottom: 5px; }
    .menu-note, .tax-note { text-align: left; }
}


/* ==========================================
   Staff Page Styles
   ========================================== */

.staff-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.staff-card.reverse {
    flex-direction: row-reverse;
}

.staff-img {
    flex: 1;
    position: relative;
}

.staff-img img {
    width: 100%;
    height: 450px; /* 高さ固定 */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 10px 10px 0 var(--accent-color);
    transition: transform 0.3s;
}

.staff-card:hover .staff-img img {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 var(--accent-color);
}

.staff-info {
    flex: 1.2;
}

.staff-role {
    font-family: var(--font-serif);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    letter-spacing: 0.1em;
}

.staff-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.en-name {
    font-size: 1rem;
    color: #999;
    margin-left: 10px;
    font-weight: normal;
}

.staff-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.staff-tags span {
    background-color: #f3f0ed;
    color: #666;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
}

.staff-msg {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.staff-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-nominate {
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(212, 196, 183, 0.4);
}

.btn-nominate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 196, 183, 0.6);
    opacity: 1;
}

.link-insta {
    color: #666;
    font-size: 0.9rem;
}
.link-insta:hover {
    color: #E1306C;
}

@media (max-width: 768px) {
    .staff-card, .staff-card.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }
    .staff-img { width: 100%; max-width: 400px; margin: 0 auto; }
    .staff-img img { box-shadow: 8px 8px 0 var(--accent-color); }
    .staff-info { text-align: left; }
    .staff-action { flex-direction: column; align-items: stretch; text-align: center; }
}


/* ==========================================
   Style Page Styles
   ========================================== */

/* Category Tabs */
.style-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 0 60px 0;
    padding: 0;
    flex-wrap: wrap;
}

.style-tabs li {
    font-family: var(--font-serif);
    color: #999;
    cursor: pointer;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
    transition: 0.3s;
    position: relative;
}

.style-tabs li.active,
.style-tabs li:hover {
    color: var(--text-color);
}

.style-tabs li::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.style-tabs li.active::after,
.style-tabs li:hover::after {
    width: 100%;
}


/* Style Grid Layout */
.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-card {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.style-img {
    position: relative;
    aspect-ratio: 3 / 4; 
}

.style-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.style-card:hover .style-img img {
    transform: scale(1.1);
}

/* Overlay Info */
.style-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.style-card:hover .style-overlay {
    opacity: 1;
}

.style-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 10px 0;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.style-overlay span {
    font-size: 0.85rem;
    color: var(--accent-color);
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.style-card:hover .style-overlay h3,
.style-card:hover .style-overlay span {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .style-tabs { gap: 15px; font-size: 0.9rem; }
    .style-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

.style-card.hide { display: none; }
.style-card.show { animation: fadeIn 0.5s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ==========================================
   Access Page Styles
   ========================================== */

.access-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.access-info { flex: 1; }
.access-map { flex: 1.5; }

.access-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.address-text {
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-row {
    margin-bottom: 30px;
    border-left: 2px solid var(--accent-color);
    padding-left: 15px;
}

.info-row h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: var(--accent-color);
}

.info-row p { margin: 0; font-size: 0.95rem; }

.tel-number {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.access-note {
    margin-top: 40px;
    color: #888;
}

.access-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    filter: grayscale(40%) opacity(0.9);
    transition: filter 0.3s;
}

.access-map:hover iframe {
    filter: grayscale(0%) opacity(1);
}


/* Contact Form */
.lumiere-form {
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.02);
}

.form-item {
    margin-bottom: 30px;
}

.form-item label {
    display: block;
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.lumiere-form input,
.lumiere-form select,
.lumiere-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #fcfbf9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-color);
    box-sizing: border-box;
    transition: 0.3s;
}

.lumiere-form textarea {
    height: 150px;
    resize: vertical;
}

.lumiere-form input:focus,
.lumiere-form select:focus,
.lumiere-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 196, 183, 0.2);
}

.form-btn-area {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    background-color: var(--text-color);
    color: #fff;
    padding: 15px 80px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.1em;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .access-layout { flex-direction: column; gap: 40px; }
    .access-map { width: 100%; }
    
    .lumiere-form { padding: 30px 20px; }
    .btn-submit { width: 100%; }
}

html {
    /* リンククリック時にスルッと移動する */
    scroll-behavior: smooth;
}

/* ジャンプ先の位置調整（ヘッダーの高さ分だけずらす） */
section[id] {
    /* ヘッダーの高さ + 余白分 */
    scroll-margin-top: 100px; 
}

/* =========================================
   News Modal Styles
   ========================================= */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none; /* 初期状態は非表示 */
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.news-modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    max-height: 90vh; /* 画面からはみ出さない */
    overflow-y: auto; /* 長い場合はスクロール */
    position: relative;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.news-modal-overlay.active .news-modal-content {
    transform: translateY(0);
}

.news-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.news-modal-close:hover {
    background: #f5f5f5;
}

/* モーダル内のコンテンツデザイン */
.modal-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.modal-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
    align-items: center;
}

.modal-cat {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #555;
}

.modal-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #333;
}

.modal-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.modal-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 4px;
    object-fit: cover;
    max-height: 400px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .news-modal-content {
        padding: 25px;
    }
    .modal-title {
        font-size: 1.2rem;
    }
}
/* =========================================
   Mobile Optimization (Hamburger Menu)
   ========================================= */

/* =========================================
   Mobile Optimization (高さズレ完全修正版)
   ========================================= */
@media (max-width: 768px) {

    /* 1. ヘッダー内部のレイアウト調整 */
    .header-inner {
        padding: 15px 20px; /* 余白を少し詰める */
        display: flex;
        justify-content: space-between; /* ロゴとボタンを左右の端に配置 */
        align-items: center; /* ★重要：これで縦方向の「ど真ん中」に揃います */
        position: relative; /* 子要素の基準点にする */
    }

    /* 2. ハンバーガーボタン（配置指定をシンプルに） */
    .hamburger {
        display: block;
        /* position: fixed; ← これが諸悪の根源でした。削除します。 */
        /* top, right も削除します。Flexboxが自動で配置してくれるからです。 */
        width: 30px;
        height: 20px;
        z-index: 1001;
        cursor: pointer;
        margin-left: auto; /* 万が一のために右端に寄せる指定 */
    }

    /* 三本線のデザイン（変更なし） */
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s ease;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    /* 開いた時の×印アニメーション（変更なし） */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
        background-color: #fff;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: #fff;
    }

    /* 3. ナビゲーションメニュー（変更なし） */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.95);
        z-index: 1000;
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav.active { right: 0; }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0;
        display: flex;
    }
    
    .main-nav ul li {
        margin: 0;
        display: block;
    }

    .main-nav ul li a {
        font-size: 1.2rem;
        color: #fff;
        display: block;
        padding: 10px;
    }
    
    .btn-nav a {
        background-color: transparent;
        border: 1px solid #fff;
        color: #fff;
        padding: 10px 40px;
    }

}@media (max-width: 768px) {
    .header-inner {
        padding: 15px 20px; /* PCより少し狭くしてスッキリさせる */
    }

    /* 1. ハンバーガーボタンの出現 */
    .hamburger {
        display: block; /* スマホのみ表示 */
        position: fixed;
        width: 30px;
        height: 20px;
        z-index: 1001; /* メニューより手前に */
        cursor: pointer;
    }

    /* ハンバーガーの3本線 */
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    /* ハンバーガー：開いた時の×印アニメーション */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
        background-color: #fff; /* 開いた時は白文字に */
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: #fff;
    }

    /* 2. ナビゲーションメニュー（スマホ用） */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態は画面外へ隠す */
        width: 100%;
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.95); /* 半透明の黒背景 */
        z-index: 1000;
        transition: right 0.4s ease; /* スライドインのアニメーション */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* メニューが開いた状態 */
    .nav-menu.active {
        right: 0; /* 画面内に出てくる */
    }

    .nav-menu ul {
        flex-direction: column; /* 縦並びにする */
        text-align: center;
        gap: 30px; /* メニュー間の余白 */
        padding: 0;
    }

    .nav-menu ul li {
        margin: 0;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        color: #fff; /* 文字色は白 */
        display: block;
        padding: 10px;
    }

    /* Reserveボタンの調整 */
    .cta-btn a {
        background-color: transparent;
        border: 1px solid #fff;
        color: #fff;
        padding: 10px 40px;
    }
}

/* =========================================
   Mobile Optimization (PC高さ完全維持版)
   ========================================= */
@media (max-width: 768px) {

    /* 1. ヘッダー内部設定 */
    .header-inner {
        display: flex !important;
        justify-content: space-between;
        align-items: center !important; /* 縦のど真ん中に揃える */
        
        /* PC版と同じ縦幅(20px)を維持し、横幅だけスマホ用に狭く(20px)します */
        padding: 20px 20px; 
        
        position: relative;
    }

    /* 2. ロゴの設定（高さズレの主犯を修正） */
    .header-inner .logo {
        /* margin: 0;  ←★これを削除しました。これでPCと同じ高さが復活します */
        display: flex;
        align-items: center;
        /* フォントサイズもPCの設定を継承させます */
    }
    
    .header-inner .logo a {
        /* PC版のデザインをそのまま継承させるため、余計な指定をしません */
        display: block;
    }

    /* 3. ハンバーガーボタン（ロゴの高さに合わせて自動配置） */
    .hamburger {
        display: block !important;
        position: relative !important; /* 絶対配置をやめて自然に並べる */
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 !important; /* ボタン自体の余白はなくてOK */
        margin-left: auto;    /* 右端に寄せる */
        
        width: 30px;
        height: 20px;
        z-index: 1001;
        cursor: pointer;
    }

    /* 以下、変更なし */
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s ease;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
        background-color: #fff;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: #fff;
    }

    /* ナビゲーションメニュー */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.95);
        z-index: 1000;
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-nav.active { right: 0; }
    
    .main-nav ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0;
    }
    .main-nav ul li { margin: 0; display: block; }
    .main-nav ul li a { font-size: 1.2rem; color: #fff; display: block; padding: 10px; }
    .btn-nav a { background-color: transparent; border: 1px solid #fff; color: #fff; padding: 10px 40px; }
}

/* =========================================
   News Modal Category Style
   ========================================= */

/* モーダル内のカテゴリタグにも一覧と同じベーススタイルを適用 */
.modal-meta .category {
    display: inline-block;
    color: #fff;             /* ★文字色を白に */
    font-size: 0.75rem;
    padding: 4px 12px;       /* 余白 */
    border-radius: 2px;      /* 角の丸み */
    font-weight: 400;
    letter-spacing: 0.05em;
    min-width: 80px;         /* 幅の確保 */
    text-align: center;
    margin-left: 10px;       /* 日付との間隔 */
}

/* ※背景色については、既存の .category[data-cat="..."] が
   効いているはずですが、もし色がグレーのままの場合は
   以下も念のため追加しておくと確実です。
*/
.modal-meta .category[data-cat="Info"]     { background-color: #6e84a3; }
.modal-meta .category[data-cat="Campaign"] { background-color: #d18c94; }
.modal-meta .category[data-cat="Blog"]     { background-color: #7da391; }
.modal-meta .category[data-cat="Product"]  { background-color: #9e8fa3; }
.modal-meta .category[data-cat="Style"]    { background-color: #a69080; }