@charset "UTF-8";



/* ==================================
   hero
=================================== */

.section--hero {
    position: relative;
    height: max(100svh, 700px);
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 26, 23, 0.1) 0%,
        rgba(28, 26, 23, 0.25) 50%,
        rgba(28, 26, 23, 0.6) 100%
    );
}

/* ロゴ＋キャッチ */
.hero__identity {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__catch {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo img {
    height: 82px;
    width: auto;
    display: block;
}

/* キャッチ */
.title--hero {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: start;
    font-size: 3.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.3;
    color: var(--primary-white);
    white-space: nowrap;
}

.title--hero::before { display: none; }

/* リード */
.hero__read {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--primary-white);
    padding-bottom: 17rem;
    padding-top: 1.5rem;
}


/* ==================================
   takiniku
=================================== */

.section--takiniku {
    background-image: url(../images/back_takiniku.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.takiniku__inner {
    width: var(--contentWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.takiniku__inner > .title {
    margin-bottom: 45px;
}

.takiniku__image {
    width: 100%;
    margin: 0 auto 45px;
    border-radius: 2px;
    overflow: hidden;
}

.takiniku__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.takiniku__text {
    text-align: center;
    width: 100%;
}

.takiniku__text p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--primary-black);
    margin-top: 0;
}

.takiniku__text p + p {
    margin-top: 15px;
}

/* .takiniku__button */
.takiniku__button {
    margin-top: 45px;
}


/* ==================================
   about
=================================== */

.section--about {
    background-color: var(--primary-red);
    padding: 0;
    isolation: isolate;
    /* stickyが効くためoverflow:hiddenはNG */
}

.about__inner {
    position: relative;
}

.about__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 0;
}

.about__visual-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual {
    position: relative;
    width: calc(100% - 10rem);
    height: calc(100% - 8rem);
    overflow: hidden;
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.22,1,0.36,1),
                height 0.8s cubic-bezier(0.22,1,0.36,1),
                border-radius 0.8s cubic-bezier(0.22,1,0.36,1);
}

.about__inner.is-expanded .about__visual {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 初期 */
.about__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 253, 249, 0.18);
    opacity: 1;
    transition: opacity 0.9s ease;
    pointer-events: none;
    z-index: 1;
}

.about__inner.is-fading .about__visual::before {
    opacity: 0;
}

/* 赤オーバーレイ */
.about__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #A82020;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.about__inner.is-fading .about__visual::after {
    opacity: 0.9;
}

/* コンテンツ */
.about__content {
    position: relative;
    z-index: 2;
}

/* テキスト */
.about__concept {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem var(--contentPadding);
}

.about__concept::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 45px;
    background-image: url(../images/icon/top_bimon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 3rem;
}

/* タイトル */
.title--about {
    color: var(--primary-white);
    font-family: 'Shippori Mincho', serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-align: start;
    line-height: 1.45;
    writing-mode: vertical-rl;
    white-space: nowrap;
    margin-bottom: 86px;
}

.title--about::before {
    display: none;
}

.about__text p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 2.7rem;
}

.about__text p:last-child { margin-bottom: 0; }

.about__spacer {
    height: 60vh;
    pointer-events: none;
}

/* ── ギャラリー ── */
.about__gallery {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 0 var(--section-pb);
}

.about__item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 配置 */
.about__item:nth-child(1) {
    align-self: flex-end;
    width: 37%;
    margin-right: 24px;
    z-index: 1;
    transition-delay: 0s;
}
.about__item:nth-child(2) {
    align-self: flex-start;
    width: 42%;
    margin-top: -30px;
    z-index: 2;
    transition-delay: 0.1s;
}
.about__item:nth-child(3) {
    align-self: flex-end;
    width: 39%;
    margin-top: -4px;
    z-index: 1;
    transition-delay: 0.2s;
}
.about__item:nth-child(4) {
    align-self: center;
    width: 79%;
    margin-top: 6rem;
    z-index: 1;
    transition-delay: 0.3s;
}

/* 縦横比 */
.about__item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about__item:nth-child(1) img { aspect-ratio: 2 / 3; }
.about__item:nth-child(2) img { aspect-ratio: 4 / 3; }
.about__item:nth-child(3) img { aspect-ratio: 4 / 3; }
.about__item:nth-child(4) img { aspect-ratio: 16 / 10; object-position: bottom; }
.about__item:hover img { transform: scale(1.04); }


/* ==================================
   menu
=================================== */

.section--menu {
    background-image: url(../images/back_takiniku.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0;
}

.menu__inner {
    width: var(--contentWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__read {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* カルーセル */
.menu__carousel-wrap {
    position: relative;
    --embla-peek: 72px;
    width: min(100vw, 480px);
    margin-bottom: var(--space-xl);
}

.embla__viewport {
    overflow: hidden;
    padding-top: 50px;
    margin-top: -20px;
}

.embla__container {
    display: flex;
    touch-action: pan-y;
}

.embla__slide {
    flex: 0 0 calc(min(100vw, 480px) - var(--embla-peek) * 2);
    min-width: 0;
    padding: 0 8px;
}

/* アニメーション */
.embla__slide__inner {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.embla__slide.pos-1 .embla__slide__inner,
.embla__slide.pos--1 .embla__slide__inner {
    transform: translateY(-44px);
}

.embla__slide.pos-2 .embla__slide__inner,
.embla__slide.pos--2 .embla__slide__inner {
    transform: translateY(-44px);
}

/* 矢印ボタン */
.menu__embla-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 81px;
    left: 0;
    pointer-events: none;
}

.menu__embla-buttons .menu__carr-btn {
    pointer-events: all;
}

.menu__cimage {
    width: 100%;
    max-width: 226px;
    aspect-ratio: 226 / 163;
    overflow: hidden;
    border-radius: 2px;
    margin: 0 auto;
}

.menu__cimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu__cbody {
    text-align: center;
    padding: 20px 4px 0;
}

.menu__cbody .menu__name {
    padding-bottom: 6px;
    margin-bottom: 16px;
    position: relative;
    font-weight: 600;
}

.menu__cbody .menu__name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(217px, 100%);
    height: 1px;
    background-color: rgba(206, 41, 42, 0.8);
}

.menu__cbody .menu__text {
    width: 100%;
    max-width: 217px;
    margin: 0 auto;
    text-align: left;
}

.menu__carr-btn {
    position: absolute;
    top: 57px;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 253, 249, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease;
}

.menu__carr-btn--prev { left: 40px; }
.menu__carr-btn--next { right: 40px; }

.menu__carr-btn img {
    width: 14px;
    height: auto;
    display: block;
}

.menu__carr-btn:hover { opacity: 0.75; }

.menu__name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--primary-black);
}

.menu__text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--primary-black);
}

/* .menu__button  */
.menu__button {
    margin-bottom: 65px;
    margin-top: 16px;
}

/* スライダー */
.menu__slider {
    width: 100vw;
    overflow: hidden;
    background-color: var(--primary-white);
}

.menu__slider .slick-slide img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .hero__logo {
        display: flex;
    }

    .hero__read {
        font-size: 1.4rem;
        padding-bottom: 13rem;
    }

    .menu__carousel-wrap {
        --embla-peek: 100px;
    }

    .embla__slide {
        flex: 0 0 280px;
    }

    .menu__slider {
        width: 480px;
    }

    .menu__slider .slick-slide img {
        width: 240px;
        height: 160px;
    }
}


/* ==================================
   instagram
=================================== */

.section--instagram {
    background-color: var(--primary-red);
    padding-bottom: 55px;
    padding-top: 75px;
}

.instagram__inner {
    width: var(--contentWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title--instagram {
    color: var(--primary-white);
    margin-bottom: var(--title-mb);
    font-weight: 500;
}

.title--instagram::before {
    filter: brightness(0) invert(1);
}

.instagram__read {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--primary-warmwhite);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.instagram__inner > img {
    width: 100%;
    display: block;
    margin-bottom: 5rem;
    border-radius: 2px;
}

.instagram__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--primary-warmwhite);
    text-decoration: none;
    border: 1px solid rgba(255, 253, 249, 0.5);
    padding: 1.2rem 3.6rem;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.instagram__cta:hover {
    background-color: rgba(255, 253, 249, 0.12);
}

.instagram__cta img {
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
}


/* ==================================
   room
=================================== */

.section--room {
    background-image: url(../images/back_takiniku.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 64px;
}

.room__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room__read {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.06em;
    color: var(--primary-sand);
    text-align: center;
    margin-bottom: 3.2rem;
}

/* カルーセル */
.room__slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 矢印ボタン */
.room__arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 253, 249, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease;
    padding: 0;
}

.room__arrow:hover { opacity: 0.75; }

.room__arrow--prev { left: 10px; }
.room__arrow--next { right: 10px; }

.room__arrow img {
    width: 14px;
    height: auto;
    display: block;
}

/* スライドの余白 */
.room__slide {
    padding: 0 8px;
    outline: none;
}

.room__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

.room__slide:hover .room__image img {
    transform: scale(1.04);
}

.room__info {
    text-align: center;
}

.room__tag {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--primary-sand);
    margin-bottom: 0.6rem;
}

.room__name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-black);
    margin-bottom: 0.6rem;
}

.room__desc {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: var(--primary-black);
}

/* ドット */
.room__dots {
    list-style: none;
    display: flex !important;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.4rem;
    padding: 0;
}

.room__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-litesand);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
}

.room__dots .slick-active .room__dot {
    background-color: var(--primary-red);
}


/* ==================================
   divider
=================================== */

.section-divider {
    display: flex;
    align-items: center;
    padding: 0px var(--contentPadding);
    gap: 8px;
    background-image: url(../images/back_takiniku.png);
    background-size: cover;
    background-position: center;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background-color: var(--primary-sand);
    transform: rotate(45deg);
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background-color: var(--primary-sand);
}


/* ==================================
   access
=================================== */

.section--access {
    background-image: url(../images/back_takiniku.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.access__inner {
    width: var(--contentWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access__image {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: var(--space-xl);
    aspect-ratio: 4 / 3;
}

.access__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.access__info {
    width: 100%;
    border-top: 1px solid var(--primary-litesand);
}

.access__row {
    display: flex;
    gap: var(--space-lg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-litesand);
}

.access__label {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--primary-black);
    min-width: 5.5em;
    flex-shrink: 0;
    white-space: nowrap;
}

.access__text {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.access__text a {
    display: inline-flex;
    align-items: baseline;
    gap: var(--space-xs);
    color: var(--primary-black);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-black);
}

.access__text img {
    width: 14px;
    height: auto;
    flex-shrink: 0;
    transform: translateY(3px);
    filter: invert(1) sepia(1) saturate(0.4) hue-rotate(330deg) brightness(0.35);
}
