/* ========== MV ========== */
/* ファーストビュー */
.mv {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(52rem, 62vw, 71.5rem);
    padding-left: var(--inset);
    color: #fff;
    overflow: hidden;
    isolation: isolate;

    /* 背景画像（PC） */
    background: url("/img/image_mv.jpg") no-repeat right center / cover;

    /* アニメ初期状態 */
    background-position-y: 100%;
    opacity: 0;
    animation: mv-bg-rise var(--mv-bg-time) ease-out var(--mv-bg-delay) forwards;

    /* Safari 等での描画安定化 */
    will-change: background-position, opacity;
}

/* テキスト＆バッジ */
.mv__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2.2vw, 18px);
    padding-right: clamp(16px, 3vw, 40px);
    z-index: 2;

    opacity: 0;
    transform: translateY(30px);
    animation: mv-fade-up var(--mv-ui-time) ease var(--mv-ui-delay) forwards;
}

/* キャッチコピー */
.mv__catch {
    color: #581E18;
    margin: 0 0 clamp(16px, 2.6vw, 32px);
    letter-spacing: .17em;
    font-family: var(--font-serif-ja);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.94;
}

.mv__catch p {
    margin: 0;
}

/* バッジ */
.mv__badge img {
    width: min(43.8rem, 60%);
    height: auto;
    display: block;
}

/* 背景・UIキーフレーム */
@keyframes mv-bg-rise {
    0% {
        background-position-y: 100%;
        opacity: 0;
    }

    100% {
        background-position-y: 50%;
        opacity: 1;
    }
}

@keyframes mv-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== INFORMATION ========== */
.information {
    background-color: #FAE9E5;
}

.information__inner {
    margin-inline: 0;
    padding-inline-end: var(--inset);
}

.information__bar {
    padding-block: var(--space-sm);
}

.information__item {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    color: #6E6363;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.information__date {
    flex: 0 0 auto;
    opacity: .55;
    line-height: 1.4;
    font-variant-numeric: tabular-nums;
}

.information__text {
    min-width: 60%;
    opacity: .95;
}

/* ========== CONCEPT ========== */
.concept.section {
    padding-block: var(--space-xl) var(--space-2xl);
}

.concept__container {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xs);
}

.concept__title-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xs);
}

.concept__title {
    margin: 0;
    padding-right: var(--space-sm);
    color: #6C3C36;
    font-family: var(--font-serif-latin);
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.7;
}

.concept__rule {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #BC9F9C;
}

.concept__image-container {
    margin-top: 6rem;
}

.concept__img-box--main .concept__img {
    width: clamp(18rem, 100%, 29.7rem);
    height: auto;
}

.concept__img-box--sub .concept__img {
    width: clamp(13rem, 44%, 15.7rem);
    height: auto;
    margin: 2.4rem 0 0 auto;
}

.concept__text {
    width: 100%;
    max-width: 58.8rem;
}

.concept__catch {
    margin: 0 0 var(--space-xl);
    letter-spacing: .042em;
    color: #CE8279;
    font-family: var(--font-serif-ja);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.8;
}

.concept__desc {
    margin-block: 0 clamp(3rem, 3.2vw, 4.7rem);
    color: #6e6363;
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
    line-height: 2.05;
}

.concept__desc .em {
    color: #904b43;
    font-weight: 600;
}

/* ========== FEATURE ========== */
.feature {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    background: url("/img/bg_feature.jpg") no-repeat center / cover;
}

.feature__container {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.feature__image-box img {
    display: block;
}

.feature__subtitle-box {
    position: relative;
    padding: var(--space-md) 0;
    background-color: #FCFCFC;
}

.feature__subtitle {
    text-align: center;
    color: #531D1C;
    font-family: var(--font-serif-ja);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
}

.feature__number {
    position: absolute;
    top: -3.7rem;
    right: 7%;
    color: #E5CAC3;
    font-family: "EB Garamond", serif;
    font-size: 81px;
    font-weight: 300;
    opacity: .8;
}

/* ========== GALLERY ========== */
.top-gallery {
    padding-bottom: var(--space-3xl);
    background-color: #FAF2F0;
}

.top-gallery__top-box {
    display: flex;
    align-items: center;
    min-width: 0;
}

.top-gallery__title-box {
    flex: 0 0 auto;
    padding-bottom: var(--space-2xl);
    margin-right: 0;
}

.top-gallery__title {
    text-align: left;
}

.top-gallery__top-line {
    flex: 1 1 auto;
    min-width: 2rem;
    height: 1px;
    margin-inline: clamp(10rem, 15vw, 29rem) 2rem;
    background-color: #BC9F9C;
}

.top-gallery__comment-box {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.top-gallery__comment {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-gallery__container {
    display: flex;
    gap: clamp(2rem, 3vw, 3.8rem);
}

.top-gallery__subtitle-box,
.top-gallery__subtext-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-gallery__subtitle-box {
    min-height: clamp(7.2rem, 9vw, 10.8rem);
    padding: 0 var(--space-sm);
    background-color: #fff;
    clip-path: polygon(0 0, calc(100% - 2.8rem) 0, 100% 2.8rem, 100% 100%, 0 100%);
}

.top-gallery__subtitle {
    margin: 0;
    width: 100%;
    text-align: center;
    letter-spacing: .02em;
    color: #834842;
    font-family: var(--font-serif-ja);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.top-gallery__subtitle .em {
    color: #E1857C;
    font-size: var(--fs-md);
}

.top-gallery__photo {
    width: 100%;
    height: auto;
}

.top-gallery__subtext-box {
    min-height: clamp(4.2rem, 5vw, 5.6rem);
    padding: 0 var(--space-xs);
    background-color: #fff;
}

.top-gallery__subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .4em 1.2em;
    font-size: 14px;
    background: #f9f2f0;
}

.top-gallery__subtext span {
    letter-spacing: -0.04em;
}

.gallery-btn-area {
    margin-top: 5rem;
}

/* ========== VOICE ========== */
.voice {
    padding-bottom: var(--space-3xl);
    background: url("/img/bg_voice.jpg") no-repeat center / cover;
}

.voice__container {
    background: #FAF2F0;
    padding-top: 24px;
}

.voice__title-box {
    padding-bottom: var(--space-2xl);
}

.voice__subtitle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.voice__subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1C1C1C;
}

.voice-google__img {
    width: 127px;
    height: auto;
}

/* =======================================
   Carousel（PC）
======================================= */
.voice-card__carousel {
    position: relative;
    max-width: var(--inner-wide);
}

.voice-card__viewport {
    overflow: hidden;
    background: #FAF2F0;
    padding: 16px 0;
    width: 100%;
    position: relative;
}

.voice-card__track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s ease;
    scroll-snap-type: none;
    overflow-x: visible;
}

.voice-card {
    flex: 0 0 calc((100% - 32px) / 3);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #eee inset;
}

.voice-card__img {
    width: 100%;
    height: auto;
    display: block;
}

/* 矢印 */
.voice-card__prev,
.voice-card__next {
    position: absolute;
    top: 45.5%;
    transform: translateY(-50%);
    z-index: 20;
    color: rgba(108, 60, 54, 0.5);
    font-size: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, color .25s ease;
}

.voice-card__prev {
    left: -30px;
}

.voice-card__next {
    right: -30px;
}

.voice-card__prev:hover {
    transform: translateY(-50%) translateX(-4px);
    color: #6C3C36;
}

.voice-card__next:hover {
    transform: translateY(-50%) translateX(4px);
    color: #6C3C36;
}

/* ドット */
.voice-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9C9C5;
    opacity: .55;
    cursor: pointer;
    transition: all .25s ease;
}

.voice-dot.is-active {
    background: #BC8A82;
    opacity: 1;
    transform: scale(1.2);
}



/* ========== ACCESS ========== */
.access {
    padding-block: var(--space-2xl);
    background-color: #C48E87;
    color: #fff;
}

.access__inner {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    column-gap: var(--space-md);
}

.access__left {
    --left-measure: 54ch;
}

.access__addr,
.access__rule,
.access__list {
    inline-size: min(100%, var(--left-measure));
}

.access__right {
    display: flex;
    flex-direction: column;
}

.access__shop {
    margin: 0 0 1.2rem;
    color: inherit;
    font-family: var(--font-serif-latin);
    font-size: clamp(2.8rem, 3.3vw, 4.9rem);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.2;
}

.access__addr {
    margin-bottom: .3rem;
    font-size: var(--fs-xs);
    line-height: 1.9;
}

.access__rule {
    display: block;
    height: 1px;
    margin: clamp(2.6rem, 2.4vw, 5rem) 0;
    background-color: currentColor;
    border: 0;
    opacity: .25;
}

.access__list {
    display: grid;
    gap: var(--space-xs);
    margin: 0;
}

.access__row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: var(--space-sm);
}

.access__term {
    width: 8.6rem;
    padding: .8rem 0;
    white-space: nowrap;
    text-align: center;
    background-color: #FFF3F0;
    color: #A36B64;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
}

.access__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
}

.access__tel {
    text-decoration: underline;
    text-underline-offset: .2em;
    letter-spacing: .07em;
}

.access__note {
    display: block;
    font-size: .9em;
    font-weight: 400;
    opacity: .8;
}

.access__route {
    order: 1;
    display: flex;
    gap: var(--space-xs);
    margin: 0 0 var(--space-xs);
    font-size: var(--fs-sm);
    line-height: 1.54;
}

.access__pin {
    display: inline-flex;
    align-items: start;
}

.access__pin--img {
    width: 100%;
    height: auto;
}

.access__map {
    order: 2;
    width: 100%;
    aspect-ratio: 15 / 10;
    overflow: hidden;
}

.access__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== INSTAGRAM ========== */
.instagram__inner {
    text-align: center;
}

.instagram__title {
    display: flex;
}

.instagram__link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.instagram__icon {
    width: auto;
}

.instagram__name {
    color: #60322D;
    font-size: clamp(1.6rem, calc(1rem + 0.5vw), 1.8rem);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #60322D;
}

.snapwidget {
    margin-top: var(--space-sm);
}

.snapwidget--pc {
    display: block;
}

.snapwidget--sp {
    display: none;
}



/* ========== Breakpoints (grouped) ========== */

@media (max-width: 1100px) {
    .voice-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }

    .voice__subtitle {
        font-size: 26px;
    }

    .voice-google__img {
        width: 110px;
    }

    .voice-card__prev {
        left: -26px;
    }

    .voice-card__next {
        right: -12px;
    }
}

@media (max-width: 960px) {
    .concept__catch {
        font-size: 30px;
    }

    .feature__subtitle {
        font-size: 17px;
    }

    .top-gallery__subtitle {
        font-size: 17px;
    }

    .voice-google__img {
        width: 100px;
        height: auto;
    }

    .access__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .access__note {
        font-size: 1.1rem;
    }

    .access__desc {
        font-size: 15px;
    }

    .access__shop {
        font-size: clamp(3.1rem, 3.8vw, 4.9rem);
    }
}

@media (max-width: 880px) {
    .top-gallery__subtext {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .mv {
        min-height: clamp(54rem, 62vw, 71.5rem);
        background-image: url("/img/image_mv-sp.jpg");
    }

    .mv__catch {
        letter-spacing: .11em;
        line-height: 2.2;
        font-weight: 600;
    }

    .mv__badge img {
        width: min(43.8rem, 86%);
        height: auto;
    }

    /* Information */
    .information__item {
        display: block;
        font-size: 13px;
    }

    .information {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Concept */
    .concept.section {
        padding-block: 2rem;
    }

    .concept__image-container {
        margin-top: 2.2rem;
    }

    .concept__container {
        flex-direction: column;
        gap: 3rem;
    }

    .concept__catch {
        margin-bottom: 3.3rem;
        font-size: 24px;
        font-weight: 400;
        letter-spacing: .04em;
        line-height: 1.5;
    }

    .concept__desc {
        line-height: 1.7;
    }

    .concept__img-box--main .concept__img {
        width: 86%;
    }

    /* Feature */
    .feature__inner {
        width: 73%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature__container {
        flex-direction: column;
        gap: 3.2rem;
        margin-top: 3.6rem;
    }

    .feature__subtitle {
        text-align: left;
        padding-left: 7.2%;
        letter-spacing: .05em;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.44;
    }

    .feature__u-btn-area {
        margin-top: 4rem;
    }

    /* Gallery：モバイル横スクロール */
    .top-gallery__top-box {
        display: initial;
    }

    .top-gallery__title-box {
        padding-bottom: clamp(3.4rem, 4vw, 9.6rem);
    }


    .top-gallery__top-line {
        display: none;
    }

    .top-gallery__subtitle {
        font-size: 16px;
    }

    .top-gallery__comment {
        font-size: 13px;
    }

    .top-gallery__container {
        display: flex;
        margin-top: 3rem;
        gap: 2.8rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 1.6rem;
        -webkit-overflow-scrolling: touch;
    }

    .top-gallery__container::-webkit-scrollbar {
        display: none;
    }

    .top-gallery__item {
        display: flex;
        flex-direction: column;
        flex: 0 0 82%;
        max-width: 246px;
        scroll-snap-align: center;
    }

    .top-gallery__image-box {
        aspect-ratio: 7 / 8;
        max-height: 281px;
        padding-inline: 10px;
        padding-block: 0;
        background: #fff;
        overflow: hidden;
    }

    .top-gallery__photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .top-gallery__subtitle-box {
        min-height: 7.2rem;
    }

    .top-gallery__subtext-box {
        min-height: 4.6rem;
    }

    .top-gallery__dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2.2rem;
    }

    .top-gallery__dot {
        inline-size: 8px;
        block-size: 8px;
        border-radius: 50%;
        background: #D9C9C5;
        opacity: .55;
        transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
    }

    .top-gallery__dot[aria-selected="true"] {
        opacity: 1;
        transform: scale(1.15);
        background: #BC8A82;
    }

    .top-gallery__item--02 .top-gallery__photo {
        object-position: center 35%;
    }

    .voice-card {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

    .voice__subtitle {
        font-size: 20px;
    }

    .voice-google__img {
        width: 80px;
    }

    .voice-card__track {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .voice-card__track::-webkit-scrollbar {
        display: none;
    }

    .voice-card__prev,
    .voice-card__next {
        display: none;
    }

    .voice-dots {
        gap: 8px;
        margin-top: 16px;
    }


    /* Access */
    .access__shop {
        margin: 0 0 .2rem;
    }

    .access__term {
        width: 7.6rem;
        font-size: 1.2rem;
    }

    .access__desc {
        line-height: 1.6;
    }

    /* Instagram */
    .snapwidget--pc {
        display: none;
    }

    .snapwidget--sp {
        display: block;
    }
}

/* elfsightによるはみ出し 防止 */
/* html,
body {
    overflow-x: clip;
}

.voice,
.voice__inner,
.instagram,
.instagram__inner {
    overflow: visible;
}

.voice [class*="elfsight-app"],
.instagram [class*="elfsight-app"],
.voice .eapps-widget,
.instagram .eapps-widget {
    max-width: 100vw;
    margin-inline: auto;
    display: block;
}

.voice iframe,
.instagram iframe {
    max-width: 100%;
} */



/* lightwidget */
/* .insta-widget {
    max-width: 1200px;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .insta-widget {
        max-width: 360px;
        → SP時は幅を狭くして2列にさせる
    }
}

@media (max-width: 400x) {
    .lightwidget__header {
        display: initial;
    }
} */