/*設定ファイルの読み込み*/
@import url('hakkoueki-root.css');
@import url('animate.css');

/* ================================
 LP Common
================================ */
#lp {
    background-color: #1a0e08;
    overflow-x: hidden;
    position: relative;
}

#lp .l-container {
    position: relative;
}

/* Liquid / milk splash backgrounds */
.lp-liquid {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.lp-liquid img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.lp-liquid--top {
    top: 30%;
}

.lp-liquid--bottom {
    bottom: 0;
    top: auto;
}

.lp-liquid--bottom img {
    opacity: 0.8;
}

.lp-liquid--lower {
    top: 70%;
}

.lp-liquid--lower img {
    transform: scaleX(-1);
    opacity: 1;
}

/* ================================
 Water Droplet Decorations
================================ */
@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes dropBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.lp-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lp-drops--front {
    z-index: 10;
}

.lp-drop {
    position: absolute;
    height: auto !important;
    animation: dropBounce 3s ease-in-out infinite;
    opacity: 1;
    will-change: transform;
}

/* Top-left corner */
.lp-drop--01 {
    width: 80px !important;
    top: 2%;
    left: -16px;
    animation-delay: 0s;
}

/* Top-right */
.lp-drop--02 {
    width: 52px !important;
    top: 4%;
    right: 3%;
    animation-delay: 0.6s;
}

/* Left side, upper-mid */
.lp-drop--03 {
    width: 64px !important;
    top: 22%;
    left: -20px;
    animation-delay: 1.2s;
}

/* Right side, mid */
.lp-drop--04 {
    width: 44px !important;
    top: 38%;
    right: -8px;
    animation-delay: 0.3s;
}

/* Left side, lower-mid */
.lp-drop--05 {
    width: 48px !important;
    top: 56%;
    left: 1%;
    animation-delay: 1.8s;
}

/* Right side, lower */
.lp-drop--06 {
    width: 70px !important;
    top: 68%;
    right: -18px;
    animation-delay: 0.9s;
}

/* Bottom-left */
.lp-drop--07 {
    width: 50px !important;
    bottom: 6%;
    left: 2%;
    animation-delay: 1.5s;
}

/* Bottom-right corner */
.lp-drop--08 {
    width: 76px !important;
    bottom: 3%;
    right: -10px;
    animation-delay: 0.4s;
}

/* Inner-side: left, upper content area */
.lp-drop--09 {
    width: 40px !important;
    top: 30%;
    left: 4%;
    animation-delay: 0.7s;
}

/* Inner-side: right, upper content area */
.lp-drop--10 {
    width: 56px !important;
    top: 28%;
    right: 4%;
    animation-delay: 1.1s;
}

/* Inner-side: left, lower content area */
.lp-drop--11 {
    width: 36px !important;
    top: 62%;
    left: 5%;
    animation-delay: 2.0s;
}

/* Inner-side: right, lower content area */
.lp-drop--12 {
    width: 58px !important;
    top: 58%;
    right: 5%;
    animation-delay: 0.2s;
}

@media screen and (max-width: 767px) {
    .lp-liquid--top {
        top: 35%;
        overflow: hidden;
    }
    .lp-liquid--top img {
        transform: scale(1.4);
        transform-origin: center top;
    }
    .lp-liquid--lower {
        top: auto;
        bottom: 0;
    }
    .lp-drop--01 { width: 52px !important; top: 14%; }
    .lp-drop--02 { width: 34px !important; top: 16%; }
    .lp-drop--03 { width: 42px !important; left: -12px; }
    .lp-drop--04 { width: 30px !important; right: -4px; }
    .lp-drop--05 { width: 32px !important; }
    .lp-drop--06 { width: 46px !important; right: -10px; }
    .lp-drop--07 { width: 34px !important; }
    .lp-drop--08 { width: 50px !important; right: -6px; }
    .lp-drop--09 { width: 28px !important; }
    .lp-drop--10 { width: 38px !important; }
    .lp-drop--11 { width: 24px !important; }
    .lp-drop--12 { width: 40px !important; }
}

/* ================================
 Hero Section
================================ */
.lp-hero {
    position: relative;
    width: 100%;
    height: 70vw;
    max-height: 720px;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    line-height: 0;
    font-size: 0;
}

.lp-hero__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    animation: heroFadeIn 0.8s ease-out both;
    min-height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.lp-hero__sparks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.lp-hero__sparks-01 {
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 35%;
    max-width: 32%;
    opacity: 0.8;
}

.lp-hero__sparks-02 {
    position: absolute;
    right: 2%;
    bottom: 46%;
    width: 40%;
    max-width: 40%;
    opacity: 0.8;
}

.lp-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 3%;
    padding-bottom: 48px;
    height: 100%;
}

.lp-hero__logo {
    width: 28%;
    max-width: 390px;
    margin-bottom: 2%;
}

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

.lp-hero__title {
    position: relative;
    width: 70%;
    max-width: 820px;
    margin-bottom: 0;
}

.lp-hero__title > img {
    width: 100%;
    height: auto;
}

.lp-hero__logo-fermentation {
    position: absolute;
    right: 32px;
    bottom: 43%;
    width: 16%;
}

.lp-hero__logo-fermentation img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .lp-hero {
        height: auto;
        aspect-ratio: 1576 / 1051;
    }

    .lp-hero__logo {
        width: 43%;
    }

    .lp-hero__title {
        width: 85%;
        margin-top: 24px;
    }

    .lp-hero__logo-fermentation {
        right: 3%;
        bottom: 48%;
        width: 16%;
    }
}

/* ================================
 Navigation
================================ */
.lp-nav {
    background-color: #afa85e;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.lp-nav__list {
    max-width: var(--content-with);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 56px;
}

.lp-nav__list li a {
    color: #fff;
    display: block;
    padding: 8px 16px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s;
}

.lp-nav__list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 32px);
    margin: 0 16px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    transform: scaleX(0);
    transform-origin: left;
}

.lp-nav__list li a:hover::after {
    transform: scaleX(1);
}

@media screen and (max-width: 1023px) {
    .lp-nav__list {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-nav__list li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .lp-nav {
        padding: 10px 0;
    }

    .lp-nav__list {
        gap: 0 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-nav__list li a {
        font-size: 16px;
        padding: 4px 8px;
    }
}

/* ================================
 Feature Section (乳酸菌×発酵技術)
================================ */
.lp-feature {
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
    z-index: 1;
}

.lp-feature__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1120px;
    z-index: 0;
    background: linear-gradient(104deg, #591818 2.18%, #B3332E 52.34%, #8F2321 83.69%);
}

.lp-feature__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Feature Title Area */
.lp-feature__title-area {
    text-align: center;
    margin-bottom: 40px;
}

.lp-feature__lead-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
}

.lp-feature__leaf {
    flex-shrink: 0;
    width: 56px;
    max-width: 56px;
    height: auto;
    align-self: stretch;
    object-fit: contain;
}

.lp-feature__lead {
    font-family: "Noto Serif JP", "游明朝体", YuMincho, serif;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.lp-feature__lead strong {
    color: #fff;
}

.lp-feature__lead-accent {
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
}

.lp-feature__keywords {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lp-feature__keyword {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    background: #000;
    padding: 0px 6px 2px 6px;
    border-radius: 0;
    line-height: 1.2;
}

.lp-feature__keyword-cross {
    font-size: clamp(28px, 3vw, 40px);
    color: #d4c15e;
    font-weight: 700;
}

.lp-feature__keyword-sub {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 2.2vw, 26px);
    font-weight: 700;
    color: #A0141A;
    background: linear-gradient(90deg, #b8862e 0%, #f5e19a 35%, #d4a843 65%, #b07820 100%);
    padding: 4px 20px 4px 20px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

/* Chef Voices */
.lp-feature__voices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 64px;
}

.lp-feature__voice {
    position: relative;
}

.lp-feature__voice:nth-child(1) {
    background-image: url("../images/lp/chef-voice-01.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.lp-feature__voice:nth-child(2) {
    background-image: url("../images/lp/chef-voice-02.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.lp-feature__voice-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 193, 94, 0.5);
    padding-bottom: 8px;
    position: relative;
}

.lp-feature__voice-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 73px;
    height: 14px;
    background: url("../images/lp/header_ornament.svg") no-repeat center;
    background-size: contain;
}

.lp-feature__voice-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #d4c15e;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lp-feature__voice-number {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4c15e;
}

.lp-feature__voice-body {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
}

.lp-feature__voice-silhouette {
    flex-shrink: 0;
    width: 140px;
}

.lp-feature__voice-silhouette img {
    width: 100%;
    height: auto;
}

.lp-feature__voice-text {
    flex: 1;
    margin-top: 120px;
}

.lp-feature__voice-quote {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.lp-feature__voice-detail {
    font-family: "Noto Sans JP", "Inter", sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 12px;
}

.lp-feature__voice-name {
    font-family: "Noto Serif JP", "游明朝体", YuMincho, serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
}

.lp-feature__voice-name__chef {
    display: block;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    letter-spacing: 2px;
}

.lp-feature__voice-name__surname {
    font-size: clamp(22px, 2vw, 28px);
}

@media screen and (max-width: 767px) {
    .lp-feature {
        padding: 32px 0;
        margin-top: 20px;
    }

    .lp-feature__bg {
        left: 0;
        right: 0;
        transform: none;
        width: auto;
        max-width: none;
        margin: 0 12px;
    }

    .lp-feature__title-area {
        margin-bottom: 24px;
    }

    .lp-feature__keyword-cross {
        font-size: 16px;
    }

    .lp-feature__keyword-sub {
        font-size: 20px;
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    .lp-feature__leaf {
        width: 32px;
        max-width: 32px;
    }

    .pc-only {
        display: none;
    }

    .lp-feature__voices {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .lp-feature__voice-header {
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .lp-feature__voice-label {
        font-size: 12px;
    }

    .lp-feature__voice-number {
        font-size: 22px;
    }

    .lp-feature__voice-body {
        gap: 12px;
    }

    .lp-feature__voice-silhouette {
        width: 80px;
    }

    .lp-feature__voice-quote {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .lp-feature__voice-detail {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .lp-feature__voice-text {
        margin-top: 80px;
    }

    .lp-feature__voice-name {
        font-size: 14px;
    }

    .lp-feature__voice-name__chef {
        font-size: 14px;
    }

    .lp-feature__voice-name__surname {
        font-size: 20px;
    }
}

/* ================================
 Middle Header
================================ */
.lp-middle-header {
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.lp-middle-header__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background-color: rgba(255, 255, 255, 0.88);
    padding: 32px 40px;
}

.lp-middle-header__logo {
    flex-shrink: 0;
    width: 130px;
}

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

.lp-middle-header__text {
    flex: 1;
}

.lp-middle-header__title {
    font-family: "Noto Serif JP", "游明朝体", YuMincho, serif;
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--neutral);
    line-height: 1.4;
    margin-bottom: 8px;
}

.lp-middle-header__title-sub {
    color: #A0141A;
    font-weight: 700;
}

.lp-middle-header__num {
    font-size: 1.4em;
}

.lp-middle-header__desc {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, sans-serif;
    font-size: clamp(12px, 1.6vw, 18px);
    color: var(--neutral);
    line-height: 1.7;
    font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
    .lp-middle-header {
        padding: 24px 12px;
    }

    .lp-middle-header__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }

    .lp-middle-header__logo {
        width: 100px;
    }

    .lp-middle-header__title {
        font-size: 26px;
    }

    .lp-middle-header__desc {
        font-size: 16px;
        text-align: left;
    }
}


/* ================================
 Rectangle 39 Wrapper
================================ */
.lp-rect39 {
    max-width: 1120px;
    margin: 0 auto;
    background: linear-gradient(104deg, #591818 2.18%, #B3332E 52.34%, #8F2321 83.69%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ================================
 4 Features Section
================================ */
.lp-4features {
    padding: 0;
}

.lp-4features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
}

.lp-4features__item {
    background-color: #231815;
    border: 4px solid #B0A85E;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.lp-4features__item-header {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #B0A85E;
    position: relative;
}

.lp-4features__item-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 73px;
    height: 14px;
    background: url("../images/lp/header_ornament.svg") no-repeat center;
    background-size: contain;
}

.lp-4features__item-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 56px;
    overflow: hidden;
    margin-top: 2px;
}

.lp-4features__item-title-row .lp-4features__item-title {
    flex: 0 0 auto;
    white-space: nowrap;
}

.lp-4features__spark {
    flex: 1 1 0;
    max-width: 160px;
    height: auto;
}

.lp-4features__item-num {
    display: block;
    font-family: "Noto Serif JP", "游明朝体", YuMincho, serif;
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    color: #b0a85e;
    margin-bottom: 0;
    line-height: 1.1;
}

.lp-4features__item-num-digit {
    font-size: 1.8em;
    line-height: 1;
}

.lp-4features__item-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.lp-4features__item-desc {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-4features__item-chart {
    background-color: #f0ede3;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

.lp-4features__item-chart-title {
    font-family: "游ゴシック体", YuGothic, sans-serif;
    font-size: clamp(11px, 1.4vw, 20px);
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.lp-4features__item-chart-title span {
    font-size: clamp(9px, 1vw, 12px);
    font-weight: 400;
}

.lp-4features__item-chart img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
}

.lp-4features__item-note {
    font-family: "游ゴシック体", YuGothic, sans-serif;
    font-size: clamp(11px, 1.4vw, 16px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

/* Feature 4: Process */
.lp-4features__item-process {
    text-align: left;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    align-items: start;
    padding: 0 24px;
}

.lp-4features__item-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-4features__item-steps li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-feature-settings: "palt";
}

.lp-4features__step-arrow-item {
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
}

.lp-4features__step-arrow {
    width: 24px !important;
    height: auto !important;
    display: block;
}

.lp-4features__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: "Noto Serif JP", "游明朝体", YuMincho, serif;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

@media screen and (max-width: 767px) {
    .lp-4features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .lp-4features__item {
        padding: 16px 12px;
    }


    .lp-4features__item-num {
        font-size: 18px;
        margin-bottom: -10px;
    }

    .lp-4features__item-title {
        font-size: 26px;
    }

    .lp-4features__item-desc {
        font-size: 16px;
        min-height: unset;
    }

    .lp-4features__item-chart img {
        height: auto;
    }

    .lp-4features__item-chart-title {
        font-size: 16px;
    }

    .lp-4features__item-chart-title span {
        display: block;
        font-size: 12px;
    }

    .lp-middle-header__title-sub {
        display: block;
    }

    .lp-4features__item-note {
        font-size: 10px;
    }

}

/* ================================
 Product Detail Section
================================ */
.lp-product {
    padding: 24px 32px 32px;
}

.lp-product__inner {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 20px;
    align-items: start;
    background-color: #fff;
    border: 6px solid #D9B360;
    border-radius: 24px;
    padding: 20px;
}

.lp-product__heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.lp-product__features {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.lp-product__features li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.lp-product__features li::before {
    content: "● ";
    color: #000;
}

.lp-product__inspection {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background-color: #fff9b1;
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 6px;
}

.lp-product__photo {
    flex-shrink: 0;
    width: 160px;
    align-self: center;
    margin-top: -48px;
}

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

.lp-product__table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.lp-product__table th,
.lp-product__table td {
    padding: 6px 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    color: #000;
}

.lp-product__table th {
    white-space: nowrap;
    width: 40%;
    background-color: #f9f9f9;
}

.lp-product__allergen {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #A0141A;
}

.lp-product__allergen-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #A0141A;
    padding: 6px;
}

.lp-product__allergen-value {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    padding: 3px 16px;
}

@media screen and (max-width: 767px) {
    .lp-rect39 {
        margin: 0 12px;
    }

    .lp-product {
        padding: 16px 12px 20px;
    }

    .lp-product__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .lp-product__heading {
        font-size: 14px;
    }


    .lp-product__inspection {
        font-size: 12px;
        margin-bottom: 0;
    }

    .lp-product__photo {
        width: 140px;
        margin: 0 auto;
    }

    .lp-product__table {
        font-size: 12px;
    }

    .lp-product__table th {
        white-space: normal;
    }
}

/* ================================
 CTA Section
================================ */
.lp-cta {
    padding: 48px 20px;
    text-align: center;
}

.lp-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.lp-cta__button {
    width: 100%;
    max-width: 460px;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #b8862e 0%, #f5e19a 35%, #d4a843 65%, #b07820 100%);
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    transition: opacity 0.2s;
}

.lp-cta__btn-arrow {
    transition: transform 0.3s;
}

.lp-cta__button:hover {
    opacity: 0.85;
}

.lp-cta__button:hover .lp-cta__btn-arrow {
    transform: translateX(4px);
}

@media screen and (max-width: 1000px) {
    .lp-4features__item-process {
        padding: 0;
    }
}

/* ================================
 Recipe Button
================================ */
.lp-recipe {
    padding: 32px 0 48px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.lp-recipe__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 627px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #d4c15e 0%, #b7a340 50%, #c9b84e 100%);
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lp-recipe__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


.lp-recipe__btn-arrow {
    font-size: 20px;
    color: #231815;
    transition: transform 0.3s;
}

.lp-recipe__btn:hover .lp-recipe__btn-arrow {
    transform: translateX(4px);
}

@media screen and (max-width: 767px) {
    .lp-recipe {
        padding: 24px 12px 36px;
    }

    .lp-recipe__btn {
        padding: 16px 24px;
        gap: 16px;
    }

    .lp-recipe__btn-text {
        font-size: 22px;
    }

    .lp-recipe__btn-arrow {
        font-size: 16px;
    }
}

/* ================================
 Scroll Animation (shared with common)
================================ */
.scroll_up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.scroll_up.on {
    opacity: 1;
    transform: translateY(0);
}
