/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* スムーススクロール */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    word-break: break-all;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.text-center { text-align: center; }
.bg-light { background-color: #f9f9f9; }

/* ヘッダー */
header {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

h1 { font-family: 'Playfair Display', serif; font-size: 24px; letter-spacing: 2px; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: bold; font-size: 14px; transition: 0.3s; }
nav ul li a:hover { color: #888; }

/* ヒーローエリア */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/top-image-001.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 70px;
}

.hero-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 8vw, 56px); margin-bottom: 10px; }
.hero-content p { font-size: 18px; letter-spacing: 3px; }

/* メニュー */
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.menu-item { text-align: center; }
.menu-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }
.menu-item h3 { font-size: 18px; margin-bottom: 5px; }
.menu-item p { color: #888; font-weight: bold; }

/* アクセス / info */
.info-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.map, .info-text { flex: 1; min-width: 300px; }
.map iframe { border-radius: 8px; filter: grayscale(20%); }

.info-text p { margin-bottom: 15px; }
.btn-sns {
    display: inline-block;
    padding: 10px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
    margin-top: 10px;
}
.btn-sns:hover { background: #555; transform: translateY(-2px); }

/* フッター */
footer {
    background: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 60px 20px;
    font-size: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .container { padding: 60px 20px; }
    header h1 { font-size: 20px; }
    nav ul { display: none; } /* スマホではナビを隠す（シンプルLCC仕様） */
}