/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', 'Zen Maru Gothic', serif, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

a:hover {
    color: #b08d57; /* アクセントカラー */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像の下の余白をなくす */
}

/* ヘッダー */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-title a {
    color: #333;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    font-weight: 400;
    font-size: 17px;
    color: #555;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 600px; /* 画像の高さに合わせて調整 */
    background-image: url('../images/hero_main.jpg'); /* ヒーロー画像を設定 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: #b08d57; /* アクセントカラー */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a07a4a;
}

.btn-dark {
    background-color: #555;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-small {
    padding: 10px 20px;
    font-size: 16px;
}

/* 各セクション共通スタイル */
.section {
    padding: 80px 0;
    text-align: center;
}

.section:nth-of-type(even) { /* 偶数番目のセクションの背景色を変える */
    background-color: #f2f2f2;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #b08d57;
}

/* コンセプトセクション */
.concept-section p {
    font-size: 18px;
    margin-bottom: 50px;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.concept-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.concept-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.concept-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #b08d57;
}

/* メニューセクション */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.menu-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.menu-item .price {
    font-size: 20px;
    font-weight: 700;
    color: #b08d57;
    display: block;
    text-align: right;
}

/* ギャラリーセクション */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* アクセスセクション */
.access-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.access-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #b08d57;
}

.access-info p {
    margin-bottom: 10px;
    font-size: 17px;
}

.access-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* フッター */
.footer {
    background-color: #333;
    color: #eee;
    padding: 30px 0;
    text-align: center;
    font-size: 15px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sns-links a {
    color: #eee;
    margin-left: 15px;
    font-size: 18px;
}

.sns-links a:hover {
    color: #b08d57;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .nav-list {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-list li {
        margin: 0 15px 10px;
    }
    .hero-content h2 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section {
        padding: 60px 0;
    }
    .section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .access-content {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
        gap: 15px;
    }
    .sns-links {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 24px;
    }
    .nav-list li {
        margin: 0 10px 10px;
        font-size: 15px;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}