/* 基本設定 */
body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.8;
    color: #333;
    background-color: #fdfdfd;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li a {
    padding: 10px 15px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #8c6a4e;
}

.sns-links .material-symbols-outlined {
    font-size: 24px;
    margin-left: 15px;
    vertical-align: middle;
    color: #333;
    transition: color 0.3s;
}

.sns-links a:hover .material-symbols-outlined {
    color: #8c6a4e;
}

/* ヒーローセクション */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-text h1 {
    font-size: 4rem;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* コンセプト */
.concept-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.concept-content img {
    width: 50%;
    border-radius: 5px;
}

.concept-text {
    width: 50%;
}

/* メニュー */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

.menu-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.menu-item h3 {
    margin: 10px 0;
}

.menu-item .price {
    font-weight: bold;
    color: #8c6a4e;
}

/* お知らせ */
#info dl {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
}

#info dt, #info dd {
    padding: 15px;
}

#info dt {
    width: 25%;
    border-bottom: 1px solid #eee;
}

#info dd {
    width: 75%;
    margin: 0;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
}

/* アクセス */
.access-content {
    display: flex;
    gap: 40px;
}

.map {
    width: 60%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.access-info {
    width: 40%;
}

/* フッター */
footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 30px 0;
}

footer .sns-links {
    margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 10px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .concept-content, .access-content {
        flex-direction: column;
    }

    .concept-content img, .concept-text, .map, .access-info {
        width: 100%;
    }

    #info dt, #info dd {
        width: 100%;
        border-left: none;
    }

    #info dt {
        border-bottom: none;
        padding-bottom: 5px;
        font-weight: bold;
    }

    #info dd {
        border-top: 1px solid #eee;
        padding-top: 5px;
    }
}
