@charset "utf-8";
/************** base *************/

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    letter-spacing: 0;
    line-height: 1.5;
}

:root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 680px;
    --content-width-md: 960px;
    --content-width: 1080px;
    --content-width-lg: 1124px;
    --content-width-xl: 1160px;

    /* カラー */
    --color-text: #333333;
    --color-text-sub: #505050;
    --color-primary: #34952b;
    --color-bg: #ffffff;
    --color-bg-cream: #fbf7ef;
    --color-bg-veil: rgba(241, 236, 230, 0.2);
    --color-btn: #666666;
    --color-border: #505050;
    --color-label: #c7c7c7;
    --color-footer-bg: #333333;
    --color-footer-muted: #d9d9d9;
    --color-accent-1: #c3b88d;
    --color-accent-2: #c7a984;
    --color-accent-3: #9fadb4;
    --color-accent-4: #a3b2b4;
    --color-accent-5: #af9da4;

    /* フォント */
    --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
    /* 代替: 本来は Kinuta KinutaMincho StdN B（要確認リスト参照） */
    --font-en: "Carlito", "Calibri", sans-serif;
    /* 代替: 本来は Calibri Bold（要確認リスト参照） */
    --font-en-serif: "Crimson Pro", serif;
}

/* base */
.container-sm,
.container-md,
.container,
.container-lg,
.container-xl {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.container-md {
    max-width: calc(var(--content-width-md) + 32px);
}

.container {
    max-width: calc(var(--content-width) + 32px);
}

.container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

.container-xl {
    max-width: calc(var(--content-width-xl) + 32px);
}

.contents {
    padding: 80px 0 0 0;
}

@media screen and (min-width: 1080px) {
    .contents {
        padding: 120px 0 0 0;
    }
}

/*************** Layout ***************/

/* CTA追従ナビ（KVを過ぎたら上から降りてくる） */
.cta-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    background: var(--color-bg);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    padding: 24px 80px 16px;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .cta-nav {
        padding: 20px 16px 12px;
        gap: 16px;
    }
}

.cta-nav.is-visible {
    transform: translateY(0);
}

.cta-nav__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-nav__brand {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .cta-nav__brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.cta-nav__logo {
    line-height: 1;
}

.cta-nav__logo img {
    width: 175px;
    height: auto;
}

@media (max-width: 768px) {
    .cta-nav__logo img {
        width: 135px;
    }
}

.cta-nav__name {
    color: var(--color-btn);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-nav__name {
        font-size: 14px;
    }
}

.cta-nav__list {
    display: flex;
    gap: 32px;
}

.cta-nav__list a {
    color: var(--color-btn);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.cta-nav__list a:hover {
    opacity: 0.7;
}

.cta-nav__btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .cta-nav__btns {
        gap: 8px;
    }
}

.cta-nav__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    border-radius: 50px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .cta-nav__btn {
        font-size: 14px;
    }
}

.cta-nav__btn:hover {
    opacity: 0.7;
}

.cta-nav__btn--outline {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 8px 40px;
}

@media (max-width: 768px) {
    .cta-nav__btn--outline {
        padding: 4px 20px;
    }
}

.cta-nav__btn--fill {
    background: var(--color-primary);
    color: #ffffff;
    padding: 8px 40px;
}

@media (max-width: 768px) {
    .cta-nav__btn--fill {
        padding: 4px 20px;
    }
}

/* 追従ナビ分だけアンカー位置を下げる */
#concept,
#menu,
#cta {
    scroll-margin-top: 104px;
}

@media (max-width: 768px) {

    #concept,
    #menu,
    #cta {
        scroll-margin-top: 84px;
    }
}

/* header（KVの上に重ねる） */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 52px 0 64px;
    z-index: 10;
}

@media (max-width: 768px) {
    .header {
        padding: 16px 16px 0 24px;
    }
}

.header__logo {
    width: 194px;
}

@media (max-width: 768px) {
    .header__logo {
        width: 135px;
        padding-top: 14px;
    }
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 58px;
    border-radius: 50px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .header__btn {
        width: 148px;
        height: 42px;
    }
}

.header__btn:hover {
    opacity: 0.7;
}

/* KV */
.kv {
    display: flex;
    aspect-ratio: 1400 / 755;
}

@media (max-width: 768px) {
    .kv {
        flex-direction: column;
        aspect-ratio: 393 / 737;
    }
}

.kv__main {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/kv/kv-bg.webp") center / cover no-repeat;
}

@media (max-width: 768px) {
    .kv__main {
        width: 100%;
        /* SPは縦積みでKV高さ(737)を 417:320 の比率で分け合う */
        flex: 417 0 0;
    }
}

.kv__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    /* ヘッダー（絶対配置）の高さの半分だけ下げて視覚的な中央に合わせる */
    margin-top: 45px;
}

@media (max-width: 768px) {
    .kv__copy {
        /* SPはヘッダーの高さぶんそのまま下げる */
        margin-top: 58px;
    }
}

/* スクロールフェードイン（上から順に表示） */
.js-fade-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.js-fade-group.is-inview .js-fade-item {
    opacity: 1;
    transform: translateY(0);
}

.kv__tagline {
    font-family: var(--font-mincho);
    font-size: clamp(16px, 1.528vw, 22px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .kv__tagline {
        line-height: 1.6;
    }
}

.kv__icon {
    width: clamp(112px, 13.333vw, 192px);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .kv__icon {
        margin-top: 24px;
    }
}

.kv__title {
    font-family: var(--font-mincho);
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.08em;
    margin-top: 16px;
}

.kv__en {
    font-family: var(--font-en);
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    margin-top: 16px;
}

.kv__photo {
    width: 50%;
}

@media (max-width: 768px) {
    .kv__photo {
        width: 100%;
        flex: 320 0 0;
        min-height: 0;
    }
}

.kv__photo .splide,
.kv__photo .splide__track,
.kv__photo .splide__list,
.kv__photo .splide__slide {
    height: 100%;
}

@media (max-width: 768px) {
    .kv__photo .splide__slide {
        height: auto;
        aspect-ratio: 393 / 320;
    }
}

.kv__photo picture {
    display: block;
    height: 100%;
}

.kv__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スライドの拡大ズーム（開始・終了倍率はJSがスライドごとに --kv-zoom-from / --kv-zoom-to で指定） */
@keyframes kv-zoom {
    from {
        transform: scale(var(--kv-zoom-from, 1));
    }

    to {
        transform: scale(var(--kv-zoom-to, 1.1));
    }
}

/* Concept */
.concept {
    position: relative;
    isolation: isolate;
    padding: 96px 0 64px;
    background-color: var(--color-bg-cream);
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept {
        padding: 72px 32px 40px;
    }
}

.concept__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 7.222vw;
}

@media (max-width: 768px) {
    .concept__inner {
        display: block;
    }
}

.concept__head {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 768px) {
    .concept__head {
        justify-content: center;
    }
}

.concept__label {
    writing-mode: vertical-rl;
    font-family: var(--font-en-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--color-label);
}

.concept__title {
    writing-mode: vertical-rl;
    font-family: var(--font-mincho);
    font-size: clamp(26px, 2.222vw, 32px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.14em;
}

@media (max-width: 768px) {
    .concept__title {
        line-height: 1.92;
    }
}

.concept__body {
    writing-mode: vertical-rl;
    padding-top: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

@media (max-width: 768px) {
    .concept__body {
        writing-mode: horizontal-tb;
        padding-top: 0;
        margin-top: 64px;
        font-size: 13px;
    }
}

.concept__line {
    display: inline-block;
}

.concept__body .js-fade-item {
    transform: none;
}

.concept__body p+p {
    margin-block-start: 24px;
}

@media (max-width: 768px) {
    .concept__body p+p {
        margin-block-start: 26px;
    }
}

.concept__strip {
    margin-top: 48px;
}

@media (max-width: 768px) {
    .concept__strip {
        margin-right: -32px;
        margin-left: -32px;
    }
}

.concept__strip .splide__slide {
    width: 206px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .concept__strip .splide__slide {
        width: 102px;
        height: 80px;
    }
}

.concept__strip .splide__slide img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.concept__deco {
    position: absolute;
    top: 394px;
    right: 136px;
    width: 378px;
    height: auto;
    z-index: -1;
}

@media (max-width: 768px) {
    .concept__deco {
        top: 332px;
        right: 36px;
        width: 157px;
    }
}

/* Menu */
.menu {
    padding: 96px 0;
    background:
        linear-gradient(var(--color-bg-veil), var(--color-bg-veil)),
        url("../img/menu/paper.webp") left top / 1416px auto repeat;
}

@media (max-width: 768px) {
    .menu {
        padding: 72px 0;
    }
}

@media (max-width: 768px) {
    .menu .container-xl {
        padding: 0 24px;
    }
}

.menu__ttl-box {
    border: 2px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
}

.menu__ttl {
    font-family: var(--font-mincho);
    font-size: clamp(32px, 2.778vw, 40px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.14em;
}

.menu__ttl-en {
    font-family: var(--font-en-serif);
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.14em;
}

.menu__list {
    margin-top: 72px;
}

@media (max-width: 768px) {
    .menu__list {
        margin-top: 40px;
    }
}

/* menu-block */
.menu-block {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-border);
    padding: 64px 48px;
}

@media (max-width: 768px) {
    .menu-block {
        padding: 32px 24px 40px;
    }
}

@media (max-width: 390px) {
    .menu-block {
        padding: 32px 16px 40px;
    }
}

.menu-block+.menu-block {
    margin-top: 56px;
}

@media (max-width: 768px) {
    .menu-block+.menu-block {
        margin-top: 32px;
    }
}

.menu-block__deco {
    position: absolute;
    top: 58px;
    right: 0;
    width: 391px;
    height: auto;
}

@media (max-width: 768px) {
    .menu-block__deco {
        top: 14px;
        right: -32px;
        width: 197px;
    }
}

.menu-block__feature {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48.87% 1fr;
    grid-template-areas:
        "img ttl"
        "img recipe";
    column-gap: min(4.444vw, 64px);
    align-items: center;
}

@media (max-width: 768px) {
    .menu-block__feature {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
}

.menu-block__ttl {
    grid-area: ttl;
    align-self: end;
    font-family: var(--font-mincho);
    font-size: clamp(24px, 2.778vw, 40px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.14em;
}

@media (max-width: 768px) {
    .menu-block__ttl {
        align-self: stretch;
    }
}

.menu-block__img {
    grid-area: img;
}

.menu-block__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.menu-block__recipe {
    grid-area: recipe;
    align-self: start;
    margin-top: 48px;
    padding-left: 24px;
    border-left: 4px solid var(--color-accent-1);
}

@media (max-width: 768px) {
    .menu-block__recipe {
        margin-top: 0;
    }
}

@media (max-width: 390px) {
    .menu-block__recipe {
        padding-left: 13px;
    }
}

.menu-block--02 .menu-block__recipe {
    border-left-color: var(--color-accent-2);
}

.menu-block--03 .menu-block__recipe {
    border-left-color: var(--color-accent-3);
}

.menu-block--04 .menu-block__recipe {
    border-left-color: var(--color-accent-4);
}

.menu-block--05 .menu-block__recipe {
    border-left-color: var(--color-accent-5);
}

.menu-block__recipe-name {
    font-family: var(--font-mincho);
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.14em;
}

.menu-block__recipe-text {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
}

@media (max-width: 768px) {
    .menu-block__recipe-text {
        font-size: 13px;
    }
}

.menu-block__cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.667vw;
    margin-top: 72px;
}

@media (max-width: 768px) {
    .menu-block__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
        margin-top: 56px;
    }
}

.menu-card__img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.menu-card__name {
    margin-top: 8px;
    font-family: var(--font-mincho);
    font-size: clamp(13px, 1.389vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.14em;
    text-align: center;
}

@media (max-width: 768px) {
    .menu-card__name {
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .menu-block--05 .menu-card__name {
        font-size: 12px;
    }
}

.menu-block__btns {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 2.778vw;
    margin-top: 56px;
}

@media (max-width: 768px) {
    .menu-block__btns {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }
}

/*************** Modifier *************/

/* ボタン（お品書き共通） */
.m-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 392px;
    height: 64px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .m-btn {
        width: 100%;
        height: 60px;
        font-size: 14px;
    }
}

.m-btn:hover {
    opacity: 0.7;
}

.m-btn__arrow {
    width: 14px;
    height: auto;
}

.m-btn--dark {
    background-color: var(--color-btn);
    color: #ffffff;
}

.m-btn--line {
    border: 2px solid var(--color-btn);
    color: var(--color-text-sub);
}

/* CTA */
.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.556vw;
    padding: 128px 0;
}

@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        gap: 80px;
        padding: 72px 24px;
    }
}

.cta__img {
    width: 34.72vw;
}

@media (max-width: 768px) {
    .cta__img {
        width: 100%;
    }
}

.cta__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cta__copy {
    width: 34.72vw;
    text-align: center;
}

@media (max-width: 768px) {
    .cta__copy {
        width: 100%;
    }
}

.cta__en {
    font-family: var(--font-en);
    font-size: clamp(24px, 2.222vw, 32px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
}

.cta__catch {
    margin-top: 24px;
    font-family: var(--font-mincho);
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.14em;
}

.cta__text {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
}

.cta__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 292px;
    height: 45px;
    margin-top: 24px;
    padding: 12px 96px;
    border-radius: 64px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .cta__btn {
        min-width: 137px;
        padding: 12px 40px;
    }
}

/* fade-in（.js-fade-group.is-inview .js-fade-item）の opacity: 1 に負けないよう詳細度を揃える */
.cta .cta__btn:hover {
    opacity: 0.7;
}

/* Photo strip */
.photo-strip .splide__slide {
    width: 320px;
}

@media (max-width: 768px) {
    .photo-strip .splide__slide {
        width: 106px;
    }
}

.photo-strip .splide__slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .photo-strip .splide__slide img {
        height: 80px;
    }
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: #ffffff;
    padding: 56px 200px 40px;
}

@media (max-width: 1080px) {
    .footer {
        padding: 56px 48px 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 32px 32px;
    }
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

.footer__logo {
    width: 155px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__nav {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer__nav {
        flex-direction: column;
        gap: 8px;
    }
}

.footer__nav-item a {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    transition: opacity 0.3s;
}

.footer__nav-item a:hover {
    opacity: 0.7;
}

.footer__sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .footer__sns {
        justify-content: flex-start;
        margin-top: 32px;
    }
}

.footer__sns-link {
    display: block;
    background: url(../img/common/icon-sns.svg) no-repeat;
    transition: opacity 0.3s;
}

.footer__sns-link:hover {
    opacity: 0.7;
}

.footer__sns-link--instagram {
    width: 24px;
    height: 24px;
    background-position: 0 -4px;
}

.footer__sns-link--line {
    width: 32px;
    height: 32px;
    background-image: url(../img/common/icon-line.svg);
    background-position: 0 0;
    background-size: 32px 32px;
}

.footer__copyright {
    margin-top: 64px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-footer-muted);
    text-align: right;
}

@media (max-width: 768px) {
    .footer__copyright {
        text-align: center;
    }
}

/*************** Utility **************/

.u-pc-only {
    display: revert;
}

@media (max-width: 768px) {
    .u-pc-only {
        display: none;
    }
}

.u-sp-only {
    display: none;
}

@media (max-width: 768px) {
    .u-sp-only {
        display: revert;
    }
}

/* 縦書き内の英数字を1文字ずつ正立させる */
.u-upright {
    text-orientation: upright;
}