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

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

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

    /* SP時のセクション左右余白 */
    --section-side-sp: 24px;
    --section-side-sp-lg: 32px;

    /* カラー */
    --color-primary: #f39800;
    --color-accent: #e26827;
    --color-text: #333333;
    --color-text-sub: #666666;
    --color-muted: #505050;
    --color-border: #d9d9d9;
    --color-bg-gray: #f6f5f4;
    --color-bg-dark: #252525;
    --color-bg-cream: #fef4e3;
    --color-bg-cream-light: #fffaf1;
    --color-bg-beige: #f3f0eb;
    --color-green: #34952b;
    --color-white: #ffffff;

    /* フォント */
    --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-en: "Crimson Pro", serif;
    --font-calibri: "Carlito", "Calibri", sans-serif;
    /* 代替: 本来は Calibri（要確認リスト参照） */
    --font-europa: "Jost", sans-serif;
    /* 代替: 本来は Europa（要確認リスト参照） */
    --font-avenir: "Avenir", "Arial", sans-serif;
}

@media (max-width: 390px) {
    :root {
        --section-side-sp: 16px;
        --section-side-sp-lg: 24px;
    }
}

/* iOS Safariで自動再生がブロックされた際に動画中央に出る再生ボタンを非表示にする */
.js-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.js-video::-webkit-media-controls {
    display: none !important;
}

/* base */
.container-sm,
.container-md,
.container,
.container-lg {
    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);
}

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

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

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

.top {
    overflow-x: clip;
}

/*************** Modifier *************/
/*************** Utility **************/

.u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

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

br.u-pc-only,
img.u-pc-only {
    display: inline;
}

@media (max-width: 768px) {

    br.u-pc-only,
    img.u-pc-only {
        display: none;
    }
}

br.u-sp-only,
img.u-sp-only {
    display: none;
}

@media (max-width: 768px) {

    br.u-sp-only {
        display: inline;
    }

    img.u-sp-only {
        display: block;
    }
}

/*************** アニメーション *************/

.js-fade {
    opacity: 0;
    translate: 0 24px;
    transition: opacity 0.8s ease-out, translate 0.8s ease-out;
}

.js-fade--delay-1 {
    transition-delay: 0.2s;
}

.js-fade--delay-2 {
    transition-delay: 0.4s;
}

.js-fade--delay-3 {
    transition-delay: 0.6s;
}

.js-fade--delay-4 {
    transition-delay: 0.8s;
}

.js-fade--subtle {
    translate: 0 4px;
    transition-duration: 1.2s;
}

.js-fade--still {
    translate: none;
}

.js-fade.is-visible {
    opacity: 1;
    translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
    .js-fade {
        opacity: 1;
        translate: none;
        transition: none;
    }
}

/*************** KV *************/

.top-kv {
    position: relative;
    height: 53.929vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    .top-kv {
        height: 100vw;
    }
}

.top-kv__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* iOSで自動再生がブロックされた際の再生ボタンを覆い隠すプレースホルダ画像 */
.top-kv__poster {
    pointer-events: none;
    transition: opacity 0.4s;
}

.top-kv__poster.is-hidden {
    opacity: 0;
}

.top-kv__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 64px 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .top-kv__header {
        padding: 16px var(--section-side-sp) 0;
        align-items: center;
    }
}

.top-kv__logo {
    padding-top: 6px;
}

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

.top-kv__logo img {
    width: 194px;
    height: auto;
}

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

.top-kv__btn {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding: 16px 58px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .top-kv__btn {
        font-size: 14px;
        padding: 10px 32px;
    }
}

.top-kv__btn:hover {
    opacity: 0.8;
}

.top-kv__copy {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.top-kv__catch {
    color: var(--color-white);
    font-size: clamp(25px, 3.472vw, 50px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.top-kv__sub {
    color: var(--color-white);
    font-family: var(--font-calibri);
    font-size: clamp(20px, 1.944vw, 28px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    margin-top: 24px;
}

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

/*************** リード *************/

.top-lead {
    background: var(--color-bg-gray);
    text-align: center;
    padding: 48px 16px 40px;
}

@media (max-width: 768px) {
    .top-lead {
        padding: 40px var(--section-side-sp) 32px;
    }
}

.top-lead__sub {
    color: var(--color-primary);
    font-size: clamp(18px, 1.389vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

@media (max-width: 390px) {
    .top-lead__sub {
        font-size: clamp(17px, 1.389vw, 20px);
    }
}

.top-lead__ttl {
    color: var(--color-text);
    font-size: clamp(26px, 2.778vw, 40px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

/*************** CTA *************/

.top-cta {
    background: var(--color-white);
    padding: 96px 16px;
}

@media (max-width: 768px) {
    .top-cta {
        padding: 64px 40px;
    }
}

@media (max-width: 390px) {
    .top-cta {
        padding: 64px var(--section-side-sp);
    }
}

.top-cta__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.556vw;
}

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

.top-cta__images {
    display: flex;
    gap: 24px;
}

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

.top-cta__images img {
    width: 188px;
    height: 184px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-cta__images img {
        width: 155px;
        height: 152px;
    }
}

.top-cta__body {
    width: 392px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.top-cta__badge {
    display: inline-block;
    border: 1px solid var(--color-text);
    font-family: var(--font-avenir);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 4px 8px 2px;
}

@media screen and (max-width: 600px) {
    .top-cta__badge {
        font-weight: 700;
    }
}

.top-cta__name {
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.top-cta__color {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .top-cta__color {
        font-size: 13px;
    }
}

.top-cta__price {
    font-family: var(--font-avenir);
    font-weight: 500;
    line-height: 1.7;
    margin-top: 8px;
}

.top-cta__yen {
    font-size: 21px;
}

.top-cta__num {
    font-size: 28px;
}

.top-cta__tax {
    font-family: var(--font-base);
    font-size: 9px;
    font-weight: 500;
}

.top-cta__btn {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    padding: 12px 96px;
    border-radius: 64px;
    margin-top: 8px;
    transition: opacity 0.3s, translate 0.8s ease-out;
}

@media (max-width: 768px) {
    .top-cta__btn {
        width: 100%;
        padding: 12px 16px;
    }
}

.top-cta__btn:hover {
    opacity: 0.8;
}

.top-cta__note {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    padding: 4px 80px;
    margin-top: 16px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .top-cta__note {
        width: 100%;
        padding: 2px 16px;
    }
}

/*************** 操作パネル動画 *************/

.top-panel__video {
    display: block;
    width: 100%;
    height: 34.286vw;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-panel__video {
        height: 71.247vw;
    }
}

/*************** 調理メニュー *************/

.top-mode {
    background: var(--color-bg-gray);
    padding: 48px 7.143vw 88px;
}

@media (max-width: 768px) {
    .top-mode {
        padding: 32px var(--section-side-sp) 56px;
    }
}

.top-mode__intro {
    text-align: center;
}

.top-mode__sub {
    color: var(--color-primary);
    font-size: clamp(18px, 1.389vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.top-mode__ttl {
    font-size: clamp(26px, 2.083vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

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

.top-mode__list {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    list-style: none;
}

@media (max-width: 768px) {
    .top-mode__list {
        flex-wrap: wrap;
        row-gap: 8px;
        margin-top: 32px;
    }
}

.top-mode__item {
    position: relative;
    width: 244px;
    padding: 44px 0 8px;
}

@media (max-width: 768px) {
    .top-mode__item {
        width: 50%;
        padding: 0;
    }
}

.top-mode__item.js-fade:nth-child(2) {
    transition-delay: 0.15s;
}

.top-mode__item.js-fade:nth-child(3) {
    transition-delay: 0.3s;
}

.top-mode__item.js-fade:nth-child(4) {
    transition-delay: 0.45s;
}

.top-mode__item.js-fade:nth-child(5) {
    transition-delay: 0.6s;
}

.top-mode__item--fish {
    width: 244px;
}

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

.top-mode__item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 71.7%;
    background: url(../img/top/mode-panel-2.svg) center / 100% 100% no-repeat;
}

@media (max-width: 768px) {
    .top-mode__item::before {
        display: none;
    }
}

.top-mode__item:first-child::before {
    background-image: url(../img/top/mode-panel.svg);
}

.top-mode__label {
    position: relative;
    z-index: 1;
    display: block;
    height: 52px;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .top-mode__label {
        height: 44px;
    }
}

.top-mode__img {
    position: relative;
    z-index: 1;
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .top-mode__img {
        height: 120px;
        margin-top: 20px;
    }
}

.top-mode__img img {
    max-width: 220px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.2));
}

/*************** 調理メニュー別特長 *************/

.top-feature__row {
    display: flex;
    align-items: center;
    background: var(--color-white);
}

@media (max-width: 768px) {
    .top-feature__row {
        flex-direction: column;
        gap: 32px;
        padding: 0 0 64px;
    }
}

.top-feature__row--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .top-feature__row--reverse {
        flex-direction: column;
    }
}

.top-feature__img {
    position: relative;
    width: 50vw;
    flex-shrink: 0;
}

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

.top-feature__img>img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.top-feature__body {
    flex: 1;
    max-width: calc(520px + 12.699vw);
    padding: 32px 7.143vw 32px 5.556vw;
}

@media (max-width: 768px) {
    .top-feature__body {
        max-width: none;
        width: 100%;
        padding: 0 var(--section-side-sp-lg);
    }
}

.top-feature__row--reverse .top-feature__body {
    padding: 32px 5.556vw 32px 7.143vw;
}

@media (max-width: 768px) {
    .top-feature__row--reverse .top-feature__body {
        padding: 0 var(--section-side-sp-lg);
    }
}

.top-feature__lead {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.top-feature__label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-feature__label img {
    height: 56px;
    width: auto;
}

@media (max-width: 768px) {
    .top-feature__label img {
        height: 48px;
    }
}

.top-feature__label span {
    color: var(--color-primary);
    font-size: clamp(18px, 1.389vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

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

.top-feature__txt {
    color: var(--color-text-sub);
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    margin-top: 16px;
}

.top-feature__thumbs {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 8px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .top-feature__thumbs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.top-feature__thumbs img {
    width: 101px;
    height: 128px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-feature__thumbs img {
        width: 100%;
        height: auto;
        aspect-ratio: 101 / 128;
    }
}

.top-feature__note {
    border: 1px solid var(--color-border);
    color: var(--color-text-sub);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .top-feature__note {
        font-size: 10px;
    }

    .top-feature__thumbs--airoven .top-feature__note {
        grid-column: span 2;
    }
}

.top-feature__band {
    height: 104px;
    background: var(--color-bg-gray);
}

@media (max-width: 768px) {
    .top-feature__band {
        height: 64px;
    }
}

/* kcal バッジ */
.top-feature__kcal {
    position: absolute;
    left: 32px;
    bottom: 16px;
    width: 160px;
    text-align: center;
}

@media (max-width: 768px) {
    .top-feature__kcal {
        left: 16px;
        bottom: 8px;
        width: 120px;
    }
}

.top-feature__kcal-circle {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .top-feature__kcal-circle {
        width: 120px;
        height: 120px;
    }
}

.top-feature__kcal-txt {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 113px;
}

@media (max-width: 768px) {
    .top-feature__kcal-txt {
        font-size: 10px;
        max-width: 90px;
    }
}

.top-feature__kcal-num {
    color: var(--color-primary);
    font-size: 27.5px;
    font-weight: 800;
    line-height: 1;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .top-feature__kcal-num {
        font-size: 21px;
    }
}

.top-feature__kcal-sm {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .top-feature__kcal-sm {
        font-size: 12px;
    }
}

.top-feature__kcal-unit {
    font-size: 24px;
}

@media (max-width: 768px) {
    .top-feature__kcal-unit {
        font-size: 18px;
    }
}

.top-feature__kcal-cut {
    font-size: 17.5px;
    font-weight: 500;
    line-height: 1;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .top-feature__kcal-cut {
        font-size: 13px;
    }
}

.top-feature__kcal-note {
    color: var(--color-white);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .top-feature__kcal-note {
        white-space: nowrap;
    }
}

/* 初期設定バッジ */
.top-feature__badge {
    position: absolute;
    right: 32px;
    bottom: 16px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 16px;
}

@media (max-width: 768px) {
    .top-feature__badge {
        right: 16px;
        bottom: 8px;
        width: 120px;
        height: 120px;
        padding-bottom: 8px;
    }
}

.top-feature__badge-head {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .top-feature__badge-head {
        font-size: 11px;
    }
}

.top-feature__badge-head span {
    display: block;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .top-feature__badge-head span {
        font-size: 8px;
    }
}

.top-feature__badge-txt {
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .top-feature__badge-txt {
        font-size: 13px;
    }
}

/*************** レシピブック *************/

.top-recipe {
    background: var(--color-bg-gray);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .top-recipe {
        padding: 56px 0;
    }
}

.top-recipe__head {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.556vw;
    padding: 0 16px;
}

@media (max-width: 768px) {
    .top-recipe__head {
        flex-direction: column;
        gap: 32px;
        padding: 0 var(--section-side-sp);
    }
}

.top-recipe__body {
    max-width: 411px;
    flex-shrink: 0;
    text-align: center;
}

.top-recipe__label {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-en);
    font-style: italic;
    font-size: clamp(18px, 1.389vw, 20px);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.14em;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 4px;
}

.top-recipe__ttl {
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 32px;
}

.top-recipe__txt {
    color: var(--color-text-sub);
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    margin-top: 32px;
}

.top-recipe__visual {
    width: 509px;
    max-width: 100%;
    flex-shrink: 0;
}

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

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

.top-recipe__gallery {
    margin-top: 64px;
}

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

.top-recipe__slider+.top-recipe__slider {
    margin-top: 12px;
}

.top-recipe__slider img {
    display: block;
    width: 245px;
    height: 216px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .top-recipe__slider img {
        width: 154px;
        height: 136px;
    }
}

/*************** お悩み *************/

.top-worry {
    position: relative;
    background: url(../img/top/worry-bg.webp) center / cover no-repeat;
    text-align: center;
    padding: 96px 16px;
}

@media (max-width: 768px) {
    .top-worry {
        padding: 56px var(--section-side-sp);
    }
}

.top-worry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.top-worry__ttl {
    position: relative;
    color: var(--color-white);
    font-size: clamp(26px, 2.083vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.top-worry__txt {
    position: relative;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    margin-top: 24px;
}

/*************** HEALTHY / CLEAN *************/

.top-merit {
    background: var(--color-bg-gray);
    display: flex;
    align-items: center;
    padding: 88px 0 0;
}

@media (max-width: 768px) {
    .top-merit {
        flex-direction: column;
        gap: 32px;
        padding: 48px var(--section-side-sp);
    }
}

.top-merit--clean {
    padding: 88px 0;
}

@media (max-width: 768px) {
    .top-merit--clean {
        flex-direction: column-reverse;
        padding: 0 var(--section-side-sp) 48px;
    }
}

.top-merit__body {
    flex: 1;
    text-align: center;
}

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

.top-merit__label {
    display: inline-block;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-style: italic;
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-muted);
    padding: 0 24px 6px;
}

.top-merit__ttl {
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 32px;
}

.top-merit__ttl span {
    color: var(--color-primary);
}

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

.top-merit__video {
    display: block;
    width: 52vw;
    flex-shrink: 0;
    aspect-ratio: 760 / 427;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

@media (max-width: 768px) {
    .top-merit__video {
        width: 100%;
        border-radius: 16px;
    }
}

.top-merit--clean .top-merit__video {
    border-radius: 0 16px 16px 0;
}

@media (max-width: 768px) {
    .top-merit--clean .top-merit__video {
        border-radius: 16px;
    }
}

/*************** テクノロジー *************/

.top-tech {
    background: var(--color-bg-dark);
    padding: 120px 14.286vw;
}

@media (max-width: 768px) {
    .top-tech {
        background: #2c2c2c;
        padding: 56px var(--section-side-sp);
    }
}

.top-tech__intro {
    text-align: center;
}

.top-tech__sub {
    color: var(--color-white);
    font-size: clamp(18px, 1.389vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.top-tech__ttl {
    color: var(--color-white);
    font-size: clamp(26px, 2.083vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 24px;
}

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

.top-tech__ttl span {
    color: var(--color-accent);
}

.top-tech__video {
    display: block;
    width: 100%;
    aspect-ratio: 1000 / 559;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 40px;
}

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

.top-tech__list {
    display: flex;
    margin-top: 40px;
    list-style: none;
}

@media (max-width: 768px) {
    .top-tech__list {
        flex-direction: column;
        margin-top: 8px;
    }
}

.top-tech__item {
    flex: 1;
    padding: 0 40px;
}

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

.top-tech__item+.top-tech__item {
    border-left: 1px solid var(--color-text-sub);
}

@media (max-width: 768px) {
    .top-tech__item+.top-tech__item {
        border-left: none;
        border-top: 1px solid var(--color-text-sub);
    }
}

.top-tech__item-ttl {
    color: var(--color-accent);
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: center;
}

.top-tech__item-txt {
    color: var(--color-border);
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    text-align: justify;
    margin-top: 16px;
}

.top-tech__diagram {
    display: block;
    width: min(66.857vw, 936px);
    margin: 88px auto 0;
}

@media (max-width: 768px) {
    .top-tech__diagram {
        width: 100%;
        max-width: 345px;
        margin-top: 16px;
    }
}

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

/*************** 比較表 *************/

.top-compare {
    background: var(--color-bg-gray);
    padding: 128px 16px;
}

@media (max-width: 768px) {
    .top-compare {
        padding: 64px var(--section-side-sp);
    }
}

.top-compare__intro {
    text-align: center;
}

.top-compare__ttl {
    font-size: clamp(26px, 2.083vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

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

/* 比較セクションはタイムラインを短めに（0.1s刻み） */
.top-compare__txt.js-fade {
    transition-delay: 0.1s;
}

.top-compare__card.js-fade {
    transition-delay: 0.2s;
}

.top-compare__table.js-fade {
    transition-delay: 0.3s;
}

.top-compare__card {
    max-width: 714px;
    background: var(--color-white);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 32px 80px;
    margin: 56px auto 0;
}

@media (max-width: 768px) {
    .top-compare__card {
        gap: 19px;
        padding: 16px;
        margin-top: 40px;
    }
}

.top-compare__icons {
    display: flex;
    gap: 32px;
    list-style: none;
}

@media (max-width: 768px) {
    .top-compare__icons {
        flex-wrap: wrap;
        gap: 8px;
        width: 130px;
        justify-content: center;
    }
}

.top-compare__icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .top-compare__icons li {
        gap: 4px;
        width: 56px;
    }
}

.top-compare__icons img {
    width: 64px;
    height: 64px;
}

@media (max-width: 768px) {
    .top-compare__icons img {
        width: 40px;
        height: 40px;
    }
}

.top-compare__icons span {
    font-size: 11px;
    font-weight: 400;
    line-height: 2;
}

@media (max-width: 768px) {
    .top-compare__icons span {
        font-size: 9px;
        line-height: 1.4;
        white-space: nowrap;
    }
}

.top-compare__arrow {
    width: 42px;
    height: 32px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .top-compare__arrow {
        width: 32px;
        height: 24px;
    }
}

.top-compare__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.top-compare__product img {
    width: 94px;
    height: 110px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .top-compare__product img {
        width: 64px;
        height: 75px;
    }
}

.top-compare__product span {
    color: var(--color-muted);
    font-family: var(--font-calibri);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .top-compare__product span {
        font-size: 12px;
    }
}

.top-compare__table {
    max-width: 792px;
    margin: 56px auto 0;
}

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

.top-compare__row {
    display: grid;
    grid-template-columns: 256fr 264fr 264fr;
    gap: 4px;
}

.top-compare__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    padding: 12px 16px;
}

@media (max-width: 768px) {
    .top-compare__cell {
        font-size: 11px;
        line-height: 1.4;
        padding: 8px 4px;
    }
}

.top-compare__cell--label {
    background: var(--color-white);
    color: var(--color-text);
}

.top-compare__row--odd .top-compare__cell--label {
    background: #fafafa;
}

.top-compare__cell--ao {
    background: var(--color-bg-cream-light);
    color: var(--color-text-sub);
}

.top-compare__row--odd .top-compare__cell--ao {
    background: var(--color-bg-cream);
}

.top-compare__cell--old {
    background: var(--color-white);
    color: var(--color-text-sub);
}

.top-compare__row--odd .top-compare__cell--old {
    background: #fafafa;
}

.top-compare__row--head .top-compare__cell--label,
.top-compare__row--foot .top-compare__cell--label {
    background: transparent;
    padding: 0;
}

.top-compare__cell--ao-head {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    padding: 12px 8px;
}

@media (max-width: 768px) {
    .top-compare__cell--ao-head {
        font-size: 12px;
        padding: 10px 4px;
    }
}

@media (max-width: 390px) {
    .top-compare__cell--ao-head {
        font-size: 11px;
    }
}

.top-compare__cell--old-head {
    background: var(--color-bg-beige);
    color: var(--color-text-sub);
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    padding: 12px 8px;
}

@media (max-width: 768px) {
    .top-compare__cell--old-head {
        font-size: 12px;
        padding: 10px 4px;
    }
}

@media (max-width: 390px) {
    .top-compare__cell--old-head {
        font-size: 11px;
    }
}

.top-compare__cell--ao-foot {
    background: var(--color-primary);
    border-radius: 0 0 8px 8px;
    height: 4px;
    padding: 0;
}

.top-compare__cell--old-foot {
    background: var(--color-bg-beige);
    border-radius: 0 0 8px 8px;
    height: 4px;
    padding: 0;
}

.top-compare__circle {
    width: 24px;
    height: 24px;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .top-compare__circle {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }
}

/*************** コンパクト *************/

.top-compact {
    position: relative;
    height: 48.571vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    .top-compact {
        height: auto;
        background: #f0e7d6;
        overflow: visible;
    }
}

.top-compact__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-compact__body {
    position: relative;
    text-align: center;
    padding-top: 4.571vw;
}

@media (max-width: 768px) {
    .top-compact__body {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 32px var(--section-side-sp) 0;
    }
}

.top-compact__ttl {
    font-size: clamp(26px, 2.083vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .top-compact__ttl {
        font-size: 30px;
    }
}

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

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

.top-compact__img {
    display: block;
    width: 100%;
    height: auto;
}

/*************** 容量 *************/

.top-capacity {
    background: var(--color-white);
    display: flex;
    align-items: center;
    padding: 96px 0;
}

@media (max-width: 768px) {
    .top-capacity {
        flex-direction: column-reverse;
        gap: 32px;
        padding: 48px var(--section-side-sp) 72px;
    }
}

.top-capacity__img {
    position: relative;
    width: 52vw;
    flex-shrink: 0;
}

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

.top-capacity__img>img {
    display: block;
    width: 100%;
    aspect-ratio: 753 / 427;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
}

@media (max-width: 768px) {
    .top-capacity__img>img {
        aspect-ratio: 345 / 196;
        border-radius: 16px;
    }
}

.top-capacity__badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .top-capacity__badge {
        right: 8px;
        bottom: 8px;
        width: 72px;
        height: 72px;
    }
}

.top-capacity__badge-sm {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .top-capacity__badge-sm {
        font-size: 10px;
    }
}

.top-capacity__badge-lg {
    color: var(--color-primary);
    font-size: clamp(24px, 2.222vw, 32px);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .top-capacity__badge-lg {
        font-size: 16px;
    }
}

.top-capacity__body {
    flex: 1;
    text-align: center;
}

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

.top-capacity__ttl {
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

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

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

/*************** カラー *************/

.top-color {
    background: var(--color-bg-gray);
    display: flex;
    align-items: center;
    padding: 90px 0;
}

@media (max-width: 768px) {
    .top-color {
        flex-direction: column;
        gap: 32px;
        padding: 40px var(--section-side-sp) 56px;
    }
}

.top-color__body {
    flex: 1;
    text-align: center;
}

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

.top-color__label {
    display: inline-block;
    color: var(--color-muted);
    font-family: var(--font-en);
    font-style: italic;
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--color-muted);
    padding: 0 24px 6px;
}

.top-color__ttl {
    font-size: clamp(20px, 1.667vw, 24px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin-top: 32px;
}

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

.top-color__img {
    width: 52vw;
    flex-shrink: 0;
}

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

.top-color__img img {
    display: block;
    width: 100%;
    aspect-ratio: 760 / 427;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

@media (max-width: 768px) {
    .top-color__img img {
        aspect-ratio: 345 / 194;
        border-radius: 16px;
    }
}

/*************** アウトロ *************/

.top-outro {
    position: relative;
    background: url(../img/top/outro-bg.webp) center / cover no-repeat;
    text-align: center;
    padding: 160px 16px;
}

@media (max-width: 768px) {
    .top-outro {
        padding: 100px var(--section-side-sp);
    }
}

.top-outro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.top-outro__ttl {
    position: relative;
    color: var(--color-white);
    font-size: clamp(26px, 2.778vw, 40px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

/*************** フッター *************/

.footer {
    background: var(--color-text);
    padding: 56px 14.286vw 40px;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 48px var(--section-side-sp-lg) 40px;
    }
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

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

.footer__logo img {
    width: 155px;
    height: auto;
}

.footer__list {
    display: flex;
    gap: 40px;
    list-style: none;
}

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

.footer__list a {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__list 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/top/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-position: -56px 0;
}

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

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

/*************** CTA追従ナビ *************/

.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-white);
    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: 1080px) {
    .cta-nav {
        padding: 24px 40px 16px;
    }
}

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

/* ヘッダー内はSP切り替えを999pxで行う */
@media (max-width: 999px) {
    .cta-nav .u-pc-only {
        display: none;
    }

    .cta-nav .u-sp-only {
        display: block;
    }
}

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

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

.cta-nav__brand {
    display: flex;
    align-items: center;
    gap: 2.778vw;
}

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

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

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

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

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

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

.cta-nav__list {
    display: flex;
    gap: 2.222vw;
    list-style: none;
}

@media (max-width: 1080px) {
    .cta-nav__list {
        gap: 12px;
    }
}

.cta-nav__list a {
    color: var(--color-text-sub);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    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: 999px) {
    .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;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

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

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

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

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

.cta-nav__btn--outline img {
    width: 24px;
    height: 24px;
}

@media (max-width: 999px) {
    .cta-nav__btn--outline img {
        width: 16px;
        height: 16px;
    }
}

.cta-nav__btn--fill {
    background: var(--color-green);
    color: var(--color-white);
    padding: 8px 40px;
}

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

/* 追従ナビ表示中のアンカー着地位置の調整 */
#cta,
#mode,
#recipe,
#worry,
#merit,
#tech,
#compare,
#design {
    scroll-margin-top: 104px;
}

@media (max-width: 999px) {

    #cta,
    #mode,
    #recipe,
    #worry,
    #merit,
    #tech,
    #compare,
    #design {
        scroll-margin-top: 84px;
    }
}