:root {
    --main-text-color: #333;
    --background-color: #fff;
    --accent-color: #add8e6;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-variation-settings: 'wght' 300;
    font-size: 18px;
    color: var(--main-text-color);
    background-color: var(--background-color);
    margin: 0;
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

body.visible {
    opacity: 1;
}

a {
    text-decoration: none;
    color: var(--main-text-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header-booking .button-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 300;
    transition: opacity 0.3s;
}
.header-booking .button-primary:hover {
    opacity: 0.8;
}

.site-footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    gap: 25px;
    flex-wrap: wrap;
}

.copyright {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

.bottom-nav {
    display: none;
}

.logo img {
    height: 25px;
    width: auto;
    display: block;
}

/* --- ヒーローセクション --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 60vh; /* ← heightをmin-heightに変更 */
    display: flex;      /* ← Flexboxによる中央揃えを再採用 */
    align-items: center;
    justify-content: center;
    /* overflow: hidden; はテキストが見切れる原因なので削除 */
}

/* スライドショーのコンテナは変更なし */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    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.3);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 95%;
    padding: 20px 0; /* 上下の余白を確保 */
}

/* h1のスタイルは変更なし */
.hero-text h1 {
    font-size: 2.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-weight: 100;
    opacity: 0;
    animation: fadeInText 2s ease-out 0.5s forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-image {
    flex: 1;
    max-width: 50%;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.5;
}
.about-text p {
    line-height: 2;
    margin-bottom: 1.5em;
}

.card-links {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.card {
    width: 320px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-image-link img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s;
}
.card-image-link:hover img {
    opacity: 0.85;
}
.card-text {
    padding: 20px;
}
.card-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 300;
}
.card-text h3 a {
    color: var(--main-text-color);
}
.card-text p {
    margin: 0;
    line-height: 1.8;
    font-size: 0.9rem;
    color: #666;
}

.booking-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    margin-top: 80px;
    text-align: center;
}
.booking-content h2 {
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 20px;
}
.booking-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.booking-buttons a {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.3s;
    border: 1px solid var(--accent-color);
}
.booking-buttons .button-primary {
    background-color: var(--accent-color);
    color: white;
}
.booking-buttons .button-primary:hover {
    background-color: white;
    color: var(--accent-color);
}
.booking-buttons .button-secondary {
    background-color: white;
    color: var(--accent-color);
}
.booking-buttons .button-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.page-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.page-header {
    text-align: center;
    margin-bottom: 60px;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 100;
    color: var(--accent-color);
}
.page-header p {
    margin-top: -20px;
    font-size: 1.2rem;
}

.price-note {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 300;
}
.menu-category {
    margin-bottom: 50px;
}
.menu-category h3 {
    font-size: 1.5rem;
    font-weight: 100;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.menu-category dl {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px dotted #eee;
}
.menu-category dt {
    flex-basis: 70%;
    padding-right: 15px;
    box-sizing: border-box;
}
.menu-category dd {
    flex-basis: 25%;
    text-align: right;
    font-size: 1.1rem;
}
.menu-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.access-info table {
    width: 100%;
    border-collapse: collapse;
}
.access-info th, .access-info td {
    border-bottom: 1px solid #eee;
    padding: 20px 10px;
    text-align: left;
}
.access-info th { width: 30%; }
.map-container {
    margin-top: 50px;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.topics {
    text-align: center;
    margin: 60px 0;
}
.topics-list-top {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.topics-list-top article, .topics-container article {
    border-bottom: 1px dotted #ccc;
}
.topics-list-top article a, .topics-container article a {
    display: block;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.topics-list-top time, .topics-container time {
    font-size: 0.9rem;
    color: #888;
}
.topics-more {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: right;
}

.topics-container {
    max-width: 800px;
    margin: 0 auto;
}

.topics-article {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}
.topics-article h1 {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.5;
}
.topics-date {
    color: #888;
    margin-bottom: 40px;
}
.topics-body {
    line-height: 2;
}
.topics-body h2 {
    font-size: 1.8rem;
    font-weight: 300;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
}
.topics-body p {
    margin-bottom: 1.5em;
}

.staff-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.staff-card {
    width: 300px;
    text-align: center;
    color: var(--main-text-color);
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.staff-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.staff-card-text { padding: 20px; }
.staff-position {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}
.staff-name {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 5px 0 0 0;
}
.staff-detail-container {
    display: flex;
    gap: 40px;
}
.staff-detail-image { flex: 0 0 50%; }
.staff-detail-image img {
    width: 100%;
    border-radius: 10px;
}
.staff-detail-text { flex: 1; }
.staff-profile {
    line-height: 2;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .main-nav,
    .header-booking {
        display: none;
    }
    .bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #fff;
        border-top: 1px solid #eee;
        z-index: 1000;
    }
    .bottom-nav ul {
        display: flex;
        justify-content: space-around;
        list-style: none;
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .bottom-nav li {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }
    .bottom-nav a {
        font-size: 11px;
        font-weight: 400;
        white-space: nowrap;
    }
    .bottom-nav-booking {
        background-color: var(--accent-color);
        color: white !important;
        font-weight: 400 !important;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    body {
        padding-bottom: 60px;
    }
    .site-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 100;
　　line-break: strict;
    }
　
　　.hero-text {
    width: 95%;
　　}

    .about-section {
        flex-direction: column;
        margin: 40px auto;
    }
    .about-image { max-width: 100%; }

    .about-text h2 {
    font-size: 1.8rem;
    }

    .card {
        width: 90%;
        margin: 0 auto;
    }
    .booking-buttons { flex-direction: column; }
    .page-main { padding: 40px 15px; }
    .menu-category {
    padding: 0 10px;
    }

    .menu-category {
        padding: 0 10px;
    }
    .menu-category dl {
        border-bottom: none;
        padding: 0;
    }
    .menu-category dt,
    .menu-category dd {
        flex-basis: 100%;
        text-align: left;
        padding: 10px 0;
    }
    .menu-category dd {
        text-align: right;
        font-size: 1.2rem;
        margin-top: -5px;
        padding-bottom: 15px;
        border-bottom: 1px dotted #eee;
    }

    .access-info th, .access-info td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }
    .access-info th {
        font-weight: 300;
        border-bottom: none;
    }
    .staff-detail-container { flex-direction: column; }
    .staff-detail-image { flex-basis: auto; }
}

.style-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: #f8f8f8;
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.style-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.style-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.style-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.style-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}