@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-base: #FCFCFA;
    --color-main: #E6DCCA;
    --color-accent: #D8BFB8;
    --color-text: #4A4A4A;
    --color-white: #FFFFFF;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Cormorant Garamond', serif;
    --font-marcellus: 'Marcellus', serif;
    --spacing-section-sp: 120px;
    --spacing-section-pc: 180px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-base);
    color: var(--color-text);
    font-family: var(--font-ja);
    font-weight: 300;
    line-height: 2.0;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 80px 0 0;
    /* ヘッダー分の余白を追加 (SP基準) */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
    body {
        padding-top: 90px;
        /* PC用ヘッダー高さ調整 */
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   Typography & Section Titles (Modified)
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 400;
}

.en {
    font-family: var(--font-en);
}

.section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-title img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 80vw;
    height: auto;
}

.section-title h2 {
    font-family: var(--font-en);
    font-size: 3rem;
    color: var(--color-text);
    /* 変更: 間隔を狭めるため数値を小さくしました */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #888;
    /* 変更: 間隔を狭めるためマージンを0にしました */
    margin-top: 0;
}

/* 追加: サブタイトルの下に短いボーダーを表示 */
.section-subtitle::after {
    content: "";
    display: block;
    width: 40px;
    /* ボーダーの長さ */
    height: 1px;
    /* ボーダーの太さ */
    background-color: var(--color-text);
    margin: 15px auto 0;
    /* ボーダーとテキストの間隔 */
    opacity: 0.6;
    /* 少し薄くして上品に */
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.container--fluid {
    width: 100%;
    padding: 0;
}

.section {
    margin-bottom: var(--spacing-section-sp);
}

@media (min-width: 768px) {
    .section {
        margin-bottom: var(--spacing-section-pc);
    }
}

.sp-only {
    display: block;
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .sp-only {
        display: none !important;
    }

    .pc-only {
        display: block !important;
    }
}

/* ==========================================================================
   Components (Buttons)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-en);
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-main);
    color: var(--color-text);
    opacity: 1;
}

.btn--header {
    padding: 10px 25px;
    font-size: 1rem;
    background-color: var(--color-accent);
}

.btn--mobile {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.btn--cta {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 20px;
    border-radius: 5px;
}

.btn--cta:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.btn--cta .en {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.btn--cta .jp {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-ja);
}

/* 新規追加: もっと見るボタン */
.btn--more {
    background-color: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-family: var(--font-ja);
    font-size: 0.95rem;
    padding: 12px 30px;
    margin-top: 10px;
}

.btn--more:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    width: 100%;
    background-color: #333333;
    padding: 40px 0;
    color: white;
}

.cta-section .btn--cta {
    background-color: white;
    color: #333333;
}

.cta-section .btn--cta:hover {
    background-color: var(--color-accent);
    color: white;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    /* 最初から白背景 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* 常にシャドウを表示 */
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo a {
    font-family: var(--font-marcellus);
    font-size: 2rem;
    color: var(--color-text);
    letter-spacing: 0.1em;
}

.header__list {
    display: flex;
    gap: 30px;
}

.header__list a {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: var(--color-text);
    position: relative;
}

.header__list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.header__list a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 12px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-base);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 1060;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 20px;
}

.mobile-menu__list a {
    font-family: var(--font-en);
    font-size: 1.5rem;
    display: block;
}

.mobile-menu__sns {
    margin-top: 30px;
    text-align: center;
}

.mobile-menu__sns img {
    width: 40px;
    height: 40px;
}


/* ==========================================================================
   First View
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.fv-swiper {
    width: 100%;
}

.fv-swiper .swiper-slide {
    width: 100%;
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.fv__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    /* 画像が暗ければ白、明るければ変える */
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.fv__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background-color: currentColor;
    margin: 10px auto 0;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* ==========================================================================
   Concept
   ========================================================================== */
#concept {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
}

#concept .section-title {
    margin-top: 0;
}

/*
#concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(252, 252, 250, 0.8);
    z-index: 1;
}*/

#concept .container {
    position: relative;
    z-index: 2;
}

.concept__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .concept__content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .concept__img {
        width: 60%;
    }

    .concept__text {
        width: 40%;
    }
}

.concept__text h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--color-text);
}

.concept__text p {
    font-size: 1rem;
    text-align: justify;
}

.concept__text .note {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu__category {
    margin-bottom: 60px;
}

.menu__category {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .menu__category {
        flex-direction: row;
        align-items: flex-start;
    }

    .menu__header-img {
        width: 45%;
        flex-shrink: 0;
    }

    .menu__right {
        width: 55%;
    }
}

.menu__header {
    text-align: center;
    margin-bottom: 30px;
}

.menu__header-img {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
}

.menu__header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu__category:hover .menu__header-img img {
    transform: scale(1.05);
}

.menu__header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-accent);
    font-weight: bold;
}

.menu__header-text {
    background-color: var(--color-base);
    padding: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu__desc {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.menu__list {
    max-width: 700px;
    margin: 0 auto;
}

.menu__item {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.menu__name {
    font-weight: 500;
    margin-bottom: 5px;
}

.menu__price {
    font-family: var(--font-en);
    font-size: 1.1rem;
    text-align: right;
    color: var(--color-text);
}

.menu__note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-swiper {
    padding-bottom: 50px;
    width: 100%;
    /* 常に表示されるよう幅を100%に */
}

.gallery-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.gallery-swiper .swiper-slide {
    width: 80%;
    /* Show part of next detailed */
    max-width: 400px;
    cursor: pointer;
}

.gallery-swiper img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.gallery-swiper img:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Voice
   ========================================================================== */
.voice-swiper {
    padding-bottom: 30px;
    /* 少し縮める */
}

.voice-swiper .swiper-slide {
    height: auto;
}

/* 新規追加: Voiceフッター（もっと見るボタン用） */
.voice__footer {
    text-align: center;
    margin-top: 30px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* ==========================================================================
   Voice
   ========================================================================== */
.voice__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .voice__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.voice__card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    height: 100%;
    /* 高さ揃え */
}

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

.voice__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.voice__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
}

.voice__icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.voice__stars {
    color: #D8BFB8;
    /* Muted pink/gold */
    font-size: 1.2rem;
}

.voice__name {
    font-size: 0.85rem;
    color: #999;
}

.voice__text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Staff
   ========================================================================== */
#staff {
    padding-top: 120px;
}

.staff__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .staff__card {
        flex-direction: row;
        gap: 50px;
    }

    .staff__img {
        width: 250px;
        flex-shrink: 0;
    }
}

.staff__img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.staff__info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .staff__info h3 {
        text-align: left;
    }

    .staff__img img {
        margin-bottom: 0;
    }
}

.staff__message {
    text-align: center;
}

@media (min-width: 768px) {
    .staff__message {
        text-align: left;
    }
}

/* ==========================================================================
   Access
   ========================================================================== */
.access__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .access__content {
        flex-direction: row;
        align-items: flex-start;
    }

    .access__info {
        width: 40%;
    }

    .access__map {
        width: 60%;
    }
}

.access__info dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px 10px;
}

.access__info dt {
    font-family: var(--font-en);
    color: var(--color-accent);
    font-weight: 600;
}

.access__info dd {
    margin: 0;
}

.access__map iframe {
    height: 300px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .access__map iframe {
        height: 400px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-text);
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer__logo {
    font-family: var(--font-marcellus);
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer__nav a {
    font-family: var(--font-en);
    font-size: 1rem;
}

.copyright {
    font-size: 0.75rem;
    color: #999;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(230, 220, 202, 0.8);
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.scroll-top .arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.scroll-top .text {
    font-size: 0.6rem;
    font-family: var(--font-en);
}

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-accent);
    z-index: 1000;
    text-align: center;
    padding: 10px;
}

.floating-cta a {
    color: white;
    font-family: var(--font-en);
    font-size: 1.1rem;
    display: block;
    line-height: 1.2;
}

.floating-cta a span {
    font-family: var(--font-ja);
    font-size: 0.8rem;
}

/* ==========================================================================
   Service Section
   ========================================================================== */

.service__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service__card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

.service__card img {
    width: 100%;
    height: auto;
    display: block;
}

.service__card h3 {
    margin: 20px 10px 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
}

.service__card p {
    margin: 0 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .service__cards {
        flex-direction: column;
    }

    .service__card {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}