@charset "utf-8";

/* 基本設定 */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .1em;
    color: #e5dbb5;
    background-color: black;
    margin: 0;
    overflow-x: hidden;
}

li {
    list-style-type: none;
}

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

a:hover {
    opacity: 0.7;
}

h1 {
    font-size: 6.4rem;
    font-weight: bold;
}

h2 {
    font-size: 3.2rem;
    font-weight: bold;
}

h3 {
    font-size: 2.4rem;
    font-weight: bold;
}

h4 {
    font-size: 2.2rem;
    font-weight: bold;
}

h5 {
    font-size: 1.8rem;
    font-weight: bold;
}

section:not(:first-child),
footer {
    margin-top: 120px;
}

.wrapper {
    margin-right: 10vw;
    margin-left: 10vw;
}

.title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #8E6E49;
}

.contents {
    margin-bottom: 60px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.more-btn {
    display: inline-block;
    width: 280px;
    padding: 12px 0;
    border: 1px solid #E5DBB5;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(142, 110, 73, 0.3);
    transition: all 0.3s ease;
    z-index: -1;
}

.more-btn:hover::before {
    left: 0;
}

.reserve-btn {
    padding: 10px 30px;
    background-color: #8E6E49;
    color: black;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background-color: #e5dbb5;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header .wrapper,
nav,
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

.logo img {
    width: 100%;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    width: 80%;
}

nav ul {
    margin-right: 40px;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #e5dbb5;
    transition: all 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* MV */
.mv {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* About セクション */
.about .contents {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sublogo {
    max-width: 300px;
}

.about .msg {
    max-width: 460px;
}

.about .msg h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about .msg h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #8E6E49;
}

/* Menu セクション */
.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.menu-item {
    margin-bottom: 30px;
}

.menu-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.menu-item h3::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #E5DBB5;
    margin-left: 1rem;
}

.menu-item figure {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
}

.menu-item figure img {
    width: 100%;
    transition: all 0.5s ease;
}

.menu-item:hover figure img {
    transform: scale(1.05);
}

.menu-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.menu-info div {
    border-bottom: 1px dotted #8E6E49;
    padding-bottom: 20px;
}

.menu-info div p:first-child {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.menu-info div p:nth-child(2) {
    color: #8E6E49;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.menu-info div p:nth-child(4) {
    font-weight: bold;
    margin: 10px 0;
}

/* News セクション */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E5DBB5;
    transition: all 0.3s ease;
}

.news-list li:hover {
    background-color: rgba(142, 110, 73, 0.1);
    padding-left: 10px;
}

.news-list .date {
    color: #8E6E49;
    margin-bottom: 5px;
}
.news-btn-wrapper {
    display: flex;
    justify-content: center;
}

.circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

/* Photo セクション */
.photo {
    margin-bottom: 60px;
}

.photo figure {
    overflow: hidden;
    max-height: 500px;
}

/* Location セクション */
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.shop-list li {
    background-color: rgba(142, 110, 73, 0.1);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.shop-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.shop-list .prefecture {
    display: inline-block;
    background-color: #8E6E49;
    color: black;
    padding: 5px 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.shop-list h4 {
    margin-bottom: 20px;
    position: relative;
}

.shop-list h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #8E6E49;
}

.shop-list .information div {
    margin-bottom: 15px;
}

.shop-list .information h5 {
    width: 100px;
    color: #8E6E49;
}

 /* SNS セクション */
.sns {
    text-align: center;
}

.sns .contents ul {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.sns li {
    width: 50px;
    transition: all 0.3s ease;
    font-size: 4.4rem;
}

.sns li:hover {
    transform: translateY(-5px);
}

/* フッター */
footer {
    background-color: #8E6E49;
    padding: 20px 0;
    margin-top: 100px;
}

footer small {
    display: block;
    text-align: center;
    color: black;
    font-size: 1.2rem;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* モバイル対応 */
@media (max-width: 768px) {
    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    h3 {
        font-size: 2.2rem;
    }

    header .wrapper {
        flex-direction: column;
        padding: 10px;
    }

    nav {
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }

    nav ul {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .reserve-btn {
        margin-bottom: 10px;
    }

    .about .contents {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about .msg h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

    .menu-info {
        grid-template-columns: 1fr;
    }

    .shop-list {
        grid-template-columns: 1fr;
    }
}

/* パーティクル用のスタイル */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* 投稿詳細ページ */
.single-post .post-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.single-post .post-date {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.single-post .post-tags {
    margin: 15px 0;
}

.single-post .post-tags span {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.single-post .post-thumbnail {
    text-align: center;
    margin: 30px 0;
}

.single-post .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.single-post .post-body {
    line-height: 1.8;
    margin: 30px 0;
}

.single-post .post-body h1,
.single-post .post-body h2,
.single-post .post-body h3 {
    margin: 30px 0 15px 0;
    color: #333;
}

.single-post .post-body p {
    margin-bottom: 15px;
}

/* 投稿ナビゲーション */
.post-navigation,
.menu-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.post-navigation a,
.menu-navigation a {
    color: #d32f2f;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #d32f2f;
    border-radius: 5px;
    transition: all 0.3s ease;
    max-width: 45%;
    text-align: center;
}

.post-navigation a:hover,
.menu-navigation a:hover {
    background-color: #d32f2f;
    color: white;
}