@charset "UTF-8";

/* ==========================================================================
   1. 基本設定 (Base Styles)
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #555;
    line-height: 1.8;
    background-color: #fff;
    letter-spacing: 0.08em;
    overflow-x: hidden;
}
a { text-decoration: none; transition: 0.3s ease; }

/* ==========================================================================
   2. ヘッダー (Header)
   ========================================================================== */
header {
    padding: 35px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #555; letter-spacing: 0.2em; }
nav ul { display: flex; list-style: none; }
nav li { margin-left: 25px; text-align: center; }
nav a { color: #555; font-size: 0.8rem; }
nav a span { display: block; font-size: 0.55rem; opacity: 0.6; }
header.scrolled { background: rgba(255, 255, 255, 0.98); padding: 15px 5%; box-shadow: 0 2px 15px rgba(0,0,0,0.03); }

/* ==========================================================================
   3. ヒーロー (Hero Section)
   ========================================================================== */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding-right: 10%;
}
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-text-right { position: relative; text-align: right; }
.en-sub { font-family: 'Playfair Display', serif; font-size: 0.9rem; letter-spacing: 0.35em; margin-bottom: 10px; }
.hero-text-right h1 { font-size: 1.8rem; font-weight: 300; letter-spacing: 0.15em; line-height: 1.8; }

/* ==========================================================================
   4. コンセプト (Concept - 左右対比)
   ========================================================================== */
.content-box { padding: 100px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.gray-bg { background-color: #fcfaf8; max-width: 100%; }
.sub-title { display: block; font-size: 0.75rem; color: #bcaaa4; margin-bottom: 12px; font-weight: bold; }
h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 60px; letter-spacing: 0.2em; font-weight: 400; }
.concept-flex { display: flex; align-items: center; gap: 60px; text-align: left; }
.concept-img, .concept-text { flex: 1; }
.concept-img img { width: 100%; border-radius: 2px; }

/* ==========================================================================
   5. ギャラリー (Gallery - 自動スクロール)
   ========================================================================== */
.gallery-slider { width: 100%; overflow: hidden; position: relative; }
.gallery-track { display: flex; gap: 20px; width: max-content; }
.gallery-item { width: 300px; }
.gallery-item img { width: 100%; height: 400px; object-fit: cover; }
.slider-animation { animation: infinity-scroll 45s linear infinite; }
@keyframes infinity-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   6. メニュー (Menu - 画像+価格)
   ========================================================================== */
.menu-block { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; text-align: left; }
.menu-block.reverse { flex-direction: row-reverse; }
.menu-image { flex: 1; }
.menu-image img { width: 100%; height: 350px; object-fit: cover; border-radius: 2px; }
.menu-list { flex: 1.2; }
.menu-list h3 { font-size: 1.1rem; margin-bottom: 25px; border-bottom: 1px solid #555; padding-bottom: 10px; display: inline-block; }
.item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dotted #ccc; font-size: 0.9rem; }
.item-detail { font-size: 0.75rem; color: #999; margin-top: -10px; margin-bottom: 10px; }

/* ==========================================================================
   7. アクセス (Access - 【重要】饱满度与对齐调整)
   ========================================================================== */
.access-container {
    display: flex;
    gap: 80px;          /* 增加间隙，提升开阔感 */
    align-items: stretch; /* 强制左右两部分高度对齐 */
    text-align: left;
    max-width: 1100px;  /* 稍微加宽整体宽度，使其更饱满 */
    margin: 0 auto;
}

.map-area {
    flex: 1.1;          /* 增加地图占比，让整体感更厚实 */
    min-height: 100%;
}

.map-area iframe {
    width: 100%;
    height: 100%;       /* 填满父容器高度 */
    border-radius: 2px;
}

.info-list {
    flex: 1;            /* 文字部分占比微调 */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 文字和按钮均匀分布，撑开高度以匹配地图 */
    padding: 5px 0;    /* 增加微小内边距，使文字不对死边缘 */
}

.shop-name { font-size: 1.2rem; margin-bottom: 10px; display: block; letter-spacing: 0.1em; }
.address-text, .time-text { font-size: 0.9rem; line-height: 1.8; }

/* 预约按钮：宽度与上方住所文本完美对齐 */
.reserve-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
    max-width: 380px;   /* 锁定最大宽度以对齐文字长度 */
}

.btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    background: #fff;
    border: 1px solid #555;
    transition: 0.4s ease;
}

.btn:hover { background: #555; color: #fff; }

/* ==========================================================================
   8. フッター & レスポンシブ
   ========================================================================== */
footer { padding: 60px 0; text-align: center; font-size: 0.7rem; color: #bbb; }

@media (max-width: 900px) {
    .access-container { gap: 40px; }
}

@media (max-width: 768px) {
    header { padding: 20px 5%; flex-direction: column; }
    nav { display: none; }
    .hero { padding-right: 0; justify-content: center; }
    .hero-text-right { text-align: center; }
    .concept-flex, .menu-block, .menu-block.reverse, .access-container {
        flex-direction: column; text-align: center; gap: 30px;
    }
    .map-area { height: 300px; width: 100%; }
    .reserve-buttons { margin: 25px auto 0; max-width: 320px; }
}
