.d-none {
    display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    min-width: 20rem;
    max-width: 100%;
    padding: 0.3rem;
    border: #cccccc 1px solid;
    font-size: 1em;
    appearance: auto;
}

textarea {
    max-width: 100%;
    min-height: 10rem;
    padding: 0.3rem;
    border: #cccccc 1px solid;
    font-size: 1em;
}

ul,
li {
    list-style: none;
}

li.col-auto {
    display: inline-block;
}

.error li,
.error_text {
    color: rgb(200, 0, 0);
    background-color: #ffffbe;
}

[id^="item_birth"] {
    display: inline-block;
}

#item_time li.col-auto::after {
    content: ",";
}

#item_time li.col-auto:nth-last-of-type(1)::after {
    content: "";
}


:root {
    --lp-yellow: #FFD22E;
    /* FVの黄色 */
    --lp-black: #000A02;
    --lp-white: #FFFFFF;
    --lp-red: #DC000C;
    --lp-bg-gray: #F8F8F8;
    --lp-border: #000A02;
}

.c_sec_head {
    text-align: center;
}

.c_sec_head_icon {
    width: 8.0rem;
    margin: 0 auto;
}

.c_sec_head_title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-top: 1.0rem;
    line-height: 1.4;
}

.c_sec_head_title img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.c_sec_head_sub {
    font-family: 'Exo', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.p_fc_lp {
    width: 100%;
    overflow: hidden;
    color: var(--lp-black);
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.6;
}

.l_lp_container {
    max-width: 114rem;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .c_sec_head_title {
        font-size: 2.4rem;
    }

    .c_sec_head_sub {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }

}

@media (max-width: 600px) {
    .l_lp_container {
        padding: 0 3rem;
    }

    .c_sec_head_title {
        font-size: 2rem;
    }

    .c_sec_head_sub {
        font-size: 1.2rem;
    }

    .c_sec_head_title img {
        width: 18rem !important;
        margin-right: 8px;
    }

}

/* ==============================================
   FV (Hero) - r1_c1
=============================================== */
.p_hero {
    position: relative;
    width: 100%;
    height: 51.0vw;
    background-color: var(--lp-yellow);
    z-index: 2;
}

.p_hero_circle_top {
    position: absolute;
    top: 0vw;
    left: -1.0416vw;
    width: 19.79vw;
    height: 19.79vw;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
}

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

/* キャッチコピー */
.p_hero_catch {
    position: absolute;
    top: 24vw;
    left: 4vw;
    width: 33.6458vw;
    z-index: 10;
}

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

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

.p_hero_slide_wrap {
    position: absolute;
    right: 5.2vw;
    top: -15.625vw;
    width: 59.375vw;
    height: 59.375vw;
    z-index: 1;
}

.p_hero_slide_inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.p_hero_slide_inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* GPUアクセラレーションを有効化し、フェード時のレンダリング負荷を軽減 */
    will-change: opacity;
    /* 総アニメーション時間: 10.5s (画像3枚 × 3.5sインターバル) */
    animation: heroFade 10.5s infinite ease-in-out;
}

/* 各画像の開始タイミング (3.5s間隔で交差) */
.p_hero_slide_inner img:nth-child(1) {
    animation-delay: 0s;
}

.p_hero_slide_inner img:nth-child(2) {
    animation-delay: 3.5s;
}

.p_hero_slide_inner img:nth-child(3) {
    animation-delay: 7s;
}

/*
 * アニメーションタイムライン定義 (総時間 10.5sベース)
 *  0s   - 1.5s  (0% - 14.28%)   : フェードイン（1.5秒）
 *  1.5s - 3.5s  (14.28% - 33.33%): 完全表示（2.0秒）
 *  3.5s - 5.0s  (33.33% - 47.62%): フェードアウト（1.5秒）※ここで次の画像がフェードイン開始
 *  5.0s - 10.5s (47.62% - 100%)  : 非表示待機
 */
@keyframes heroFade {
    0% {
        opacity: 0;
    }

    14.28% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    47.62% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.p_hero_slide_icon {
    position: absolute;
    bottom: -7.29vw;
    left: 3.64vw;
    width: 17.187vw;
    z-index: 10;
}

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

/* 右下ブラックボックス */
.p_hero_box {
    position: absolute;
    right: 2rem;
    bottom: 6rem;
    background-color: var(--lp-black);
    z-index: 20;
    text-align: center;
    padding: 2rem;
    border-radius: 4px;
}

.p_hero_box_logo {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 86%;
    z-index: 21;
}


.p_hero_box_badge {
    position: relative;
    display: inline-block;
    background-color: var(--lp-red);
    color: var(--lp-white);
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 4px;
    padding: 0 8px;
}

.p_hero_box_triangle {
    position: absolute;
    top: 99.9%;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    line-height: 0;
    font-size: 0;
}

.p_hero_box_triangle svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p_hero_box_desc {
    color: var(--lp-white);
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 1rem;
}

.p_hero_box_num {
    font-size: 3.2rem;
    font-weight: bold;
    margin: 0 4px;
}

.p_hero_box .c_btn {
    background-color: var(--lp-white);
    color: var(--lp-black);
    margin-top: 1rem;
}


.p_hero_box .c_btn_icon {
    background-color: #E0E0E0;
}

/* ==============================================
   Intro & Campaign - r1_c1
=============================================== */
.p_intro_area {
    background-color: var(--lp-yellow);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.p_intro_en {
    font-family: 'Exo', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.p_intro_ja {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.p_intro_desc {
    font-size: 2rem;
    line-height: 2;
    font-weight: 500;
}

/* ==============================================
   Campaign Section (1920px Artboard Base)
=============================================== */
.p_campaign_area {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, var(--lp-yellow) 0%, var(--lp-yellow) 20vw, var(--lp-white) 20vw, var(--lp-white) 100%);
    padding: 0 4rem 6rem;
    border-bottom: 1px solid var(--lp-border);
    z-index: 1;
}

.p_campaign_head {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    max-width: 143.0rem;
    margin: 0 auto;
}

.p_campaign_head_en {
    font-family: 'Exo', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.p_campaign_head_ja {
    font-size: 1.6rem;
    color: var(--lp-black);
}

.p_campaign_bg_text {
    position: absolute;
    top: 11.5vw;
    left: -3.8rem;
    width: 100%;
    font-family: 'Exo', sans-serif;
    font-size: 20.0rem;
    font-weight: bold;
    color: var(--lp-white);
    white-space: nowrap;
    text-align: left;
    pointer-events: none;
    line-height: 1;
    z-index: 1;
    letter-spacing: 0.05em;
}

.p_campaign_inner {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 143.0rem;
    margin: 1.6rem auto 0;
}

.p_campaign_img_left {
    position: relative;
    width: 44.4444%;
    margin-top: 16rem;
    margin-right: -8rem;
    z-index: 12;
}

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

.p_campaign_box {
    position: relative;
    background-color: var(--lp-white);
    border: 0.3rem solid var(--lp-black);
    border-radius: 1.2rem;
    text-align: center;
    z-index: 11;
    padding: 2rem 7rem 5rem;
}

.p_campaign_emg_img {
    position: absolute;
    z-index: 13;
    width: 25rem;
    top: -4rem;
    left: -2rem;
}

.p_campaign_limit_img {
    width: 100%;
    max-width: 55rem;
    display: block;
}

.p_campaign_text_intro {
    margin-top: 3rem;
    font-size: 3.5rem;
    font-weight: 900;
    padding-bottom: 1rem;
}

.p_campaign_divider {
    width: 61rem;
    background-color: var(--lp-black);
    margin: auto;
    height: 0.4rem;
}

.p_campaign_label_black {
    background-color: var(--lp-black);
    color: var(--lp-white);
    display: inline-block;
    padding: 0.8rem 4rem;
    font-size: 3.5rem;
    font-weight: 900;
    border-radius: 0 0 4px 4px;
}

.p_campaign_price_wrap {
    color: var(--lp-red);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 0.8;
}

.p_campaign_price_symbol {
    font-size: 10.8rem;
    font-weight: 900;
    margin-right: 0.2rem;
}

.p_campaign_price_num {
    font-size: 21.5rem;
    font-weight: 900;
}

.p_campaign_footer_text {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
    color: var(--lp-black);
    margin-top: 4.4rem;
}

.u_dot {
    position: relative;
    display: inline-block;
}

.u_dot::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--lp-red);
    border-radius: 50%;
}

.u_marker_custom {
    background: linear-gradient(transparent 18px, rgba(255, 210, 46, 0.23) 0);
    padding-bottom: 6px;
    display: inline;
}

@media (max-width: 1024px) {
    .p_intro_area {
        padding: 4rem 2rem;
    }

    .p_campaign_area {
        background: linear-gradient(to bottom, var(--lp-yellow) 0%, var(--lp-yellow) 40vw, var(--lp-white) 40vw, var(--lp-white) 100%);
    }

    .p_campaign_bg_text {
        display: none;
    }

    .p_campaign_inner {
        flex-direction: column-reverse;
        margin-top: 4rem;
    }

    .p_campaign_box {
        padding: 4rem 4rem 4rem;
        margin-top: 4rem;
        width: 100%;
    }

    .p_campaign_limit_img {
        max-width: 38rem;
    }

    .p_campaign_text_intro {
        font-size: 2.4rem;
    }

    .p_campaign_label_black {
        font-size: 2rem;
    }

    .p_campaign_divider {
        width: 48rem;
    }

    .p_campaign_price_symbol {
        font-size: 6.0rem;
    }

    .p_campaign_price_num {
        font-size: 12.0rem;
    }

    .p_campaign_img_left {
        margin-top: -5rem;
        margin-right: 0;
        margin-left: -6rem;
    }

    .p_campaign_area {
        padding-bottom: 4rem;
    }
}

@media (max-width: 600px) {
    .p_campaign_img_left {
        width: 28rem;
        margin-top: -3rem;
        margin-left: -5rem;
    }

    .p_intro_en {
        font-size: 2.8rem;
        margin-bottom: 2.4rem;
    }

    .p_intro_ja {
        margin-bottom: 2rem;
    }

    .p_intro_desc {
        font-size: 1.6rem;
        text-align: left;
    }

    .p_campaign_head {
        padding-top: 4rem;
        text-align: center;

    }

    .p_campaign_head_en {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .p_campaign_area {
        background: linear-gradient(to bottom, var(--lp-yellow) 0%, var(--lp-yellow) 752px, var(--lp-white) 752px, var(--lp-white) 100%);
        padding: 0 3rem 4rem;
        border-bottom: none;
    }

    .p_campaign_area::after {
        content: "";
        width: calc(100% - 6rem);
        height: 1px;
        bottom: 0;
        position: absolute;
        background-color: var(--lp-border);
    }

    .p_campaign_emg_img {
        width: 14rem;
    }

    .p_campaign_inner {
        margin-top: 2rem;
    }

    .p_campaign_box {
        padding: 1.2rem 1.5rem 6rem;
    }

    .p_campaign_text_intro {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .p_campaign_label_black {
        font-size: 1.6rem;
    }

    .p_campaign_divider {
        width: 100%;
    }

    .p_campaign_footer_text {
        font-size: 1.6rem;
    }

}

/* ==============================================
   Offer (強力なオファー) - r2_c1
=============================================== */
.p_offer {
    padding: 6rem 0rem 0;
    text-align: center;
}

.p_offer .l_lp_container {
    padding: 0;
}

.p_offer_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 4rem;
    margin-top: 6rem;
}

.p_offer_card {
    background-color: var(--lp-white);
    border: 0.3rem solid var(--lp-black);
    border-top: none;
    border-radius: 13px 13px 12px 12px;
    max-width: 55.0rem;
    position: relative;
    padding: 8rem 4rem 4rem;
    text-align: center;
    box-sizing: border-box;
}

.p_offer_card_head {
    position: absolute;
    top: -0.1rem;
    left: -0.3rem;
    right: -0.3rem;
    background-color: var(--lp-yellow);
    border-radius: 1.2rem 1.2rem 0 0;
    padding: 1.6rem 4rem 1.6rem 14.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.p_offer_card_head span {
    font-size: 2.0rem;
}

.p_offer_num_badge {
    position: absolute;
    top: -2rem;
    left: 2rem;
    width: 10.5rem;
    height: 10.0rem;
    padding-right: 0.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 105.001 100'%3E%3Cpath d='M-10962-1431a50,50,0,0,1,50-50,50,50,0,0,1,50,50,50.254,50.254,0,0,1-1.069,10.335l5.737,8.683a2,2,0,0,1-1.166,3.04l-9.988,2.588A49.982,49.982,0,0,1-10912-1381,50,50,0,0,1-10962-1431Z' transform='translate(10962 1480.999)' fill='%23fff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.12));
}

.p_offer_num_badge span:first-child {
    font-family: 'Exo', sans-serif;
    color: var(--lp-yellow);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.p_offer_num_badge span:last-child {
    font-family: 'Exo', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--lp-black);
    line-height: 1;
    margin-top: 6px;
}

.p_offer_card_icon {
    width: 12rem;
    margin: 0 auto;
}

.p_offer_card_text {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
}

.p_offer_note {
    font-size: 1.4rem;
    text-align: left;
    margin: 1.2rem 0 0rem;
    width: calc(50% - 2rem);
}

.p_offer_arrow_down {
    width: 6rem;
    margin: 1rem auto 0rem;
}

.p_offer_more {
    font-weight: 900;
    font-size: 4rem;
}

.p_offer_banner {
    background-color: var(--lp-yellow);
    font-size: 3.2rem;
    font-weight: 900;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 1.2rem;
    line-height: normal;
}

.p_offer_banner_text {
    padding: 3.2rem 0;
}

.p_offer_banner_skew {
    position: relative;
    padding: 3rem 4rem 3.2rem;
    margin: 0 1.5rem;
    z-index: 1;
    display: flex;
    align-items: baseline;
}

.p_offer_banner_skew::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #FFE998;
    transform: skewX(-12deg);
    z-index: -1;
}

.p_offer_banner_num {
    font-size: 5.0rem;
    margin: 0 0.5rem;
    line-height: 1;
}

.p_offer_banner_num.red {
    color: var(--lp-red);
}

.translated-ltr .p_offer_card:first-child,
html[lang="en"] .p_offer_card:first-child {
    padding-top: 12rem;

    @media (max-width: 600px) {
        padding-top: 16rem;
    }

}

@media (max-width: 1500px) {
    .p_offer .l_lp_container {
        padding: 0 2rem;
    }

    .p_offer_num_badge {
        width: 8.0rem;
        height: 7.0rem;
        left: 0;
    }

    .p_offer_num_badge span:first-child {
        font-size: 1.0rem;
    }

    .p_offer_num_badge span:last-child {
        font-size: 3.0rem;
    }

    .p_offer_card_head {
        padding: 1.6rem 2rem 1.6rem 10rem;
        display: inline;
    }

    .p_offer_banner {
        font-size: 2.4rem;
    }

    .p_offer_banner_num {
        font-size: 4.0rem;
    }

}

@media (max-width: 1024px) {
    .p_offer .l_lp_container {
        padding: 0 4rem;
    }

    .p_offer_grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .p_offer_card {
        max-width: 100%;
    }

    .p_offer_note {
        width: 100%;
        margin-top: 1.2rem;
        margin-bottom: 4rem;
    }

    .p_offer_banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .p_offer_banner_skew {
        width: 100%;
        margin: 0;
        justify-content: center;
        padding: 2rem 0;
    }

    .p_offer_banner_skew::before {
        transform: skewX(0deg);
    }

    .p_offer_banner_text {
        padding: 2rem 0;
    }
}

@media (max-width: 600px) {
    .p_offer {
        padding-top: 4rem;
    }

    .p_offer .l_lp_container {
        padding: 0 3rem;
    }

    .p_offer_grid {
        margin-top: 3rem;
    }

    .p_offer_card_head {
        font-size: 1.6rem;
        padding: 1rem 2rem 1rem 10.6rem;
    }

    .p_offer_num_badge {
        width: 7.6rem;
        height: 7rem;
        top: -1rem;
        left: 2rem;
    }

    .p_offer_num_badge span:first-child {
        font-size: 1.2rem;
    }

    .p_offer_num_badge span:last-child {
        font-size: 2.8rem;
    }

    .p_offer_card {
        padding: 9.3rem 2rem 4rem;
        border-width: 2px;
        font-size: 1.5rem;
    }

    .p_offer_card_icon {
        width: 10rem;
    }

    .p_offer_note {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .p_offer_arrow_down {
        margin-top: 2rem;
    }

    .p_offer_more {
        font-size: 2.4rem;
        margin-top: 2rem;
    }

    .p_offer_banner {
        margin-top: 1.2rem;
        font-size: 1.8rem;
    }

    .p_offer_banner_text {
        padding: 1.2rem 0;
    }

    .p_offer_banner_skew {
        font-size: 2rem;
        padding: 0.7rem 0;
    }

    .p_offer_banner_num {
        font-size: 3.2rem;
    }

    .p_offer_btn_wrap {
        margin-top: 2rem;
    }


}

.p_offer_btn_wrap {
    margin-top: 4rem;
    text-align: center;

    .c_btn {
        margin: auto;
        border-radius: 6rem;
        padding: 2.8rem 9rem 2.8rem 10rem;
        width: 56rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
    }

    .c_btn_icon {
        width: 5rem;
    }

    .c_btn_text {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .p_offer_btn_wrap {
        margin-top: 2rem;
        padding: 0 3rem;
        justify-content: space-between;

        .c_btn_text {
            font-size: 1.6rem;
            text-align: left;
        }
    }

    .p_offer_btn_wrap .c_btn {
        padding: 2rem 4rem;
        width: 100%;
        align-items: end;
    }

    .p_offer_btn_wrap .c_btn_icon {
        width: 3.2rem;
        margin-left: auto;
    }

}

/* 1024px レスポンシブ */
@media (max-width: 1024px) {
    .p_hero {
        height: 160vw;
    }

    .p_hero_circle_top {
        top: 5.3vw;
        left: -26.6vw;
        width: 42.6vw;
        height: 42.6vw;
    }

    .p_hero_catch {
        top: 90vw;
        width: 50vw;
        left: 6vw;
    }

    .p_hero_slide_wrap {
        width: 85.3vw;
        height: 85.3vw;
        top: -2.666vw;
        right: -5.333vw;
    }

    .p_hero_slide_icon {
        bottom: -10.29vw;
        left: -19.36vw;
        width: 40.187vw;
    }

    .p_hero_box {
        width: 35.5rem;
        bottom: 6.0vw;
    }

    .p_hero_box_title {
        font-size: 3.5vw;
    }

    .p_hero_box_desc {
        font-size: 1.8rem;
    }


}

@media (max-width: 900px) {
    .p_hero {
        height: 170vw;
    }

    .p_hero_catch {
        width: 60vw;
    }
}

@media (max-width: 800px) {
    .p_hero {
        height: 180vw;
    }
}

@media (max-width: 700px) {
    .p_hero {
        height: 190vw;
    }
}

@media (max-width: 600px) {
    .p_hero {
        height: 230vw;
    }

    .p_hero_catch {
        width: 77vw;
        top: 94vw;
    }

    .p_hero_box {
        right: 0;
        border-radius: 4px 0 0 4px;
        padding: 1.5rem 2rem 2rem;
    }

    .p_hero_box_logo {
        width: 20rem;
        left: auto;
        transform: translateY(-100%);
        right: 2rem;
        top: -8px;
    }
}


.p_feature_area {
    background-color: var(--lp-bg-gray);
    position: relative;
    z-index: 1;
    margin-top: 12rem;
    padding-bottom: 12rem;
}

.p_feature_area .l_lp_container {
    max-width: 100%;
    padding: 0;
}

.p_feature_head {
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 4rem;
}


.p_feature_list {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    width: 100%;
}

.p_feature_item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 172.0rem;
    margin: 0 auto;
    border-left: 1px solid var(--lp-border);
    border-right: 1px solid var(--lp-border);

    @media (max-width: 1740px) {
        width: calc(100% - 8rem);
    }
}

.p_feature_item:not(:last-child) {
    border-bottom: 1px solid var(--lp-border);
}

.p_feature_item--reverse {
    flex-direction: row-reverse;
}

.p_feature_item_img_wrap {
    width: 50%;
    padding: 5rem 1rem 3rem 3rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative;
}

.p_feature_item_img {
    width: 100%;
    max-width: 82.0rem;
    border-radius: 0.4rem;
    display: block;
}

.p_feature_item_badge {
    position: absolute;
    top: 3rem;
    z-index: 10;
    display: flex;
    align-items: center;
}

.p_feature_item_badge_icon {
    width: 4.8rem;
    height: auto;
    flex-shrink: 0;
}

.p_feature_item_badge_body {
    background-color: var(--lp-red);
    color: var(--lp-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 2.4rem;
    font-weight: 900;
    margin-left: 1.2rem;
    position: relative;
    white-space: nowrap;
}

.p_feature_item_badge_triangle {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    line-height: 0;
}

.p_feature_item_badge_triangle svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p_feature_item:not(.p_feature_item--reverse) .p_feature_item_badge {
    left: 5rem;
}

.p_feature_item.p_feature_item--reverse .p_feature_item_badge {
    right: 3rem;
}


.p_feature_item_text_wrap {
    width: 50%;
    padding: 6.0rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p_feature_item_title,
.p_feature_item_sub,
.p_feature_item_desc {
    width: 100%;
    max-width: 67.0rem;
    padding: 0 2.0rem;
    box-sizing: border-box;
}

.p_feature_item_title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-top: 0;
}

.p_feature_item_sub {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.2rem;
}

.p_feature_item_desc {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 6rem;
}

@media (max-width: 1024px) {
    .p_feature_item {
        flex-direction: column;
        border-left: none;
        border-right: none;
    }

    .p_feature_item--reverse {
        flex-direction: column;
    }

    .p_feature_item_img_wrap,
    .p_feature_item_text_wrap {
        width: 100%;
    }

    .p_feature_item_img_wrap {
        padding: 6.0rem 2.0rem 2.0rem;
    }

    .p_feature_item_text_wrap {
        padding: 2.0rem 0 6.0rem;
    }

    .p_feature_item:not(.p_feature_item--reverse) .p_feature_item_badge,
    .p_feature_item.p_feature_item--reverse .p_feature_item_badge {
        left: 2.0rem;
        right: auto;
    }
}

@media (max-width: 600px) {
    .p_feature_area {
        margin-top: 6rem;
        padding-bottom: 6rem;
    }

    .p_feature_head {
        padding-top: 6rem;
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .p_feature_item {
        width: 100%;
    }

    .p_feature_item_badge_icon {
        width: 3.2rem;
    }

    .p_feature_item_badge_body {
        font-size: 1.6rem;
        padding: 4px 12px;
    }

    .p_feature_item_badge {
        top: 4rem;
    }

    .p_feature_item_img_wrap {
        padding: 6rem 3rem 0;
    }

    .p_feature_item_title {
        font-size: 2rem;
    }

    .p_feature_item_title,
    .p_feature_item_sub,
    .p_feature_item_desc {
        padding: 0 3rem;
    }

    .p_feature_item_desc {
        font-size: 1.4rem;
        margin-top: 4rem;
    }

    .p_feature_item_text_wrap {
        padding-bottom: 4rem;
    }

    .p_feature_item.p_feature_item--reverse .p_feature_item_badge {
        right: 3rem;
        left: auto;
    }
}


.p_concept_area {
    background-color: var(--lp-black);
    color: var(--lp-white);
    padding: 0rem 0;
}

.l_concept_container {
    max-width: 172.0rem;
    margin: 0 auto;
    padding: 0 4.0rem;
    display: flex;
    justify-content: center;
    padding: 12rem 0;
    border: 1px solid var(--lp-white);

    @media (max-width: 1740px) {
        width: calc(100% - 8rem);
    }
}

.p_concept_inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4.0rem;
    max-width: 143rem;

    @media (max-width: 1740px) {
        width: calc(100% - 8rem);
    }
}

.p_concept_left {
    flex: 1;
}

.p_concept_head_en {
    font-family: 'Exo', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
}

.p_concept_logo {
    margin-top: 2.0rem;
    width: 27.0rem;
}

.p_concept_logo img {
    width: 100%;
    height: auto;
    display: block;
}

.p_concept_catch {
    margin-top: 8.0rem;
    font-size: 3.2rem;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
}

.p_concept_catch_line {
    display: inline;
}

.u_bracket {
    margin: 1rem 0rem;
}

.u_text_middle {
    display: inline-block;
    margin: -2rem 0;
}

.u_bracket {
    display: inline-block;
}

.p_concept_right {
    width: 100%;
    max-width: 99.5rem;

    @media (max-width: 1500px) {
        width: 62%;
    }
}

.p_concept_img_wrap {
    width: 100%;
    margin-bottom: 2rem;
}

.p_concept_img {
    width: 100%;
    height: auto;
    display: block;
}

.p_concept_title {
    font-size: 2.0rem;
    font-weight: bold;
    margin-top: 2.0rem;
}

.p_concept_content>.p_concept_title:first-of-type {
    margin-top: 0;
}

.p_concept_text {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 2.0rem;
}

.p_concept_pattern {
    width: 100%;
    height: 2.0rem;
    margin: 8.0rem 0;
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .p_concept_inner {
        flex-direction: column;
    }

    .p_concept_catch {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        margin-top: 4rem;
        margin-bottom: 0rem;
    }

    .u_text_middle {
        margin: 0 1.0rem;
    }

    .p_concept_right {
        width: 100%;
    }

}

@media (max-width: 600px) {
    .l_concept_container {
        width: 100%;
        border: none;
        padding: 6rem 0;
    }

    .p_concept_inner {
        width: 100%;
        padding: 0 3rem;
    }

    .p_concept_logo {
        margin: 1.2rem auto 0;
    }

    .p_concept_catch {
        margin-top: 4rem;
        text-align: center;
        font-size: 2rem;
    }

    .u_text_middle {
        margin: 0;
    }

    .p_concept_title {
        font-size: 1.6rem;
    }

    .p_concept_text {
        font-size: 1.5rem;
    }

    .p_concept_pattern {
        margin: 4rem 0;
    }
}


/* ==============================================
   運営革命 (Operations Revolution)
=============================================== */
.p_revolution_area {
    padding: 12.0rem 0;
    background-color: var(--lp-white);

    .p_revolution_inner {
        max-width: 143.0rem;
        margin: 0 auto;
        margin-top: 4rem;
    }
}

.p_revolution_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8.0rem;
    margin-top: 6.0rem;
}

.p_revolution_img_wrap {
    width: 50%;
    max-width: 74.5rem;
}

.p_revolution_pyramid {
    width: 100%;
    height: auto;
    display: block;
}

.p_revolution_steps {
    width: 50%;
    max-width: 41.5rem;
    position: relative;
}

.p_revolution_step {
    border: 2px solid;
    border-radius: 4px;
    padding: 3.2rem 4.0rem;
    background-color: var(--lp-white);
    position: relative;
    z-index: 2;
}

.p_revolution_step--black {
    border-color: var(--lp-black);
}

.p_revolution_step--yellow {
    border-color: var(--lp-yellow);
}

.p_revolution_step--red {
    border-color: var(--lp-red);
}

.p_revolution_step_title {
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 1.6rem;
    color: var(--lp-black);
}

.p_revolution_step_text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--lp-black);
}

.p_revolution_arrow {
    width: 2.0rem;
    height: 4.0rem;
    margin: 0 auto;
    position: relative;
    margin-top: -0.2rem;
    margin-bottom: 1.2rem;
    z-index: 1;
}

.p_revolution_arrow::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1.2rem solid;
    border-left: 2.0rem solid transparent;
    border-right: 2.0rem solid transparent;
}

.p_revolution_arrow--black_yellow {
    background: linear-gradient(to bottom, var(--lp-black), var(--lp-yellow));
}

.p_revolution_arrow--black_yellow::after {
    border-top-color: var(--lp-yellow);
}

.p_revolution_arrow--yellow_red {
    background: linear-gradient(to bottom, var(--lp-yellow), var(--lp-red));
}

.p_revolution_arrow--yellow_red::after {
    border-top-color: var(--lp-red);
}


.p_revolution_cycle_line {
    position: absolute;
    top: 8.0rem;
    bottom: 8.0rem;
    right: -6.0rem;
    width: 2.0rem;
    background: linear-gradient(to bottom, var(--lp-black), var(--lp-red));
    border-radius: 0 4px 4px 0;
    z-index: 1;
}

.p_revolution_cycle_line::before {
    content: "";
    position: absolute;
    top: -1.0rem;
    right: 1.8rem;
    width: 4.0rem;
    height: 4.0rem;
    background-color: var(--lp-black);
    clip-path: polygon(100% 25%, 100% 75%, 50% 75%, 50% 100%, 0% 50%, 50% 0%, 50% 25%);
}

.p_revolution_cycle_line::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 2.0rem;
    width: 4.0rem;
    height: 2.0rem;
    background-color: var(--lp-red);
}

@media (max-width: 1500px) {
    .p_revolution_area {
        .p_revolution_inner {
            width: calc(100% - 8rem);
        }
    }
}

@media (max-width: 1024px) {
    .p_revolution_inner {
        flex-direction: column;
        gap: 4.0rem;
    }

    .p_revolution_img_wrap,
    .p_revolution_steps {
        width: 100%;
        max-width: 100%;
        padding: 0 2.0rem;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .p_revolution_area {
        padding: 6rem 0;
    }

    .p_revolution_area .p_revolution_inner {
        width: 100%;
    }

    .p_revolution_img_wrap {
        padding: 0;
    }

    .p_revolution_steps {
        padding: 0;
        padding-right: 2rem;

    }

    .p_revolution_step {
        padding: 2rem;
    }

    .p_revolution_step_title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .p_revolution_step_text {
        font-size: 1.5rem;
    }

    .p_revolution_cycle_line {
        width: 8px;
        right: 0;
        top: 6.0rem;
        /* 箱の位置に合わせて上下を少し内側に調整 */
        bottom: 6.0rem;
        border-radius: 0 4px 4px 0;
    }

    /* 上の左向き矢印（横棒 + 三角形） */
    .p_revolution_cycle_line::before {
        width: calc(2.0rem - 8px);
        /* padding-right(2rem)から縦線(8px)を引いた長さで箱にピッタリくっつく */
        height: 3.2rem;
        /* 三角の高さ(32px) */
        right: 8px;
        /* 縦線の左側から伸ばす */
        top: -1.2rem;
        /* 縦線の上端と横棒の上端をピッタリ合わせる(-12px) */
        background-color: var(--lp-black);

        /* * 横棒の太さを8px（12px〜20pxの位置）にし、
         * 先端の三角形の幅を8pxにするクリップパス 
         */
        clip-path: polygon(100% 12px,
                100% 20px,
                8px 20px,
                8px 100%,
                0% 50%,
                8px 0%,
                8px 12px);
    }

    /* 下の横棒（太さ8px） */
    .p_revolution_cycle_line::after {
        width: calc(2.0rem - 8px);
        /* 箱にピッタリくっつく長さ */
        height: 8px;
        /* 太さ8px */
        right: 8px;
        /* 縦線の左側から伸ばす */
        bottom: 0;
        /* 縦線の下端に合わせる */
        background-color: var(--lp-red);
        clip-path: none;
        /* PC版のクリップパスを解除 */
    }
}



/* ==============================================
   世界へ (Taking the Brand Worldwide)
=============================================== */
.p_worldwide_area {
    background-color: var(--lp-yellow);
    position: relative;
    overflow: hidden;
}

/* 縦書きパターン画像（縦用の画像をご用意ください） */
.p_worldwide_inner::before,
.p_worldwide_inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2rem;
    background-image: url('../../../wp-content/themes/museninsyoku-wp-theme/img/ramen-strike-ken/fc/bg_ramen_pattern_v.png');
    background-repeat: repeat-y;
    background-size: contain;
}

.p_worldwide_inner::before {
    left: 0;
}

.p_worldwide_inner::after {
    right: 0;
}

.p_worldwide_inner {
    max-width: 172rem;
    margin: 0 auto;
    padding: 12rem 8rem;
    position: relative;
    z-index: 2;

    @media (max-width: 1740px) {
        width: calc(100% - 8rem);
    }
}

.p_worldwide_content {
    max-width: 143rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.0rem;
    margin: 4rem auto 8rem;

}

.p_worldwide_center_logo {
    width: 40.0rem;
    flex-shrink: 0;
    z-index: 5;
    margin-left: 2rem;
}

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

.p_worldwide_message {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: var(--lp-yellow);
    border: 3px solid var(--lp-black);
    border-radius: 12px;
    padding: 4.0rem;
    font-size: 1.6rem;
    font-weight: bold;
    max-width: 45.0rem;
    font-size: 2rem;
}

.p_worldwide_message::before,
.p_worldwide_message::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.p_worldwide_message::before {
    right: -22px;
    border-left: 22px solid var(--lp-black);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.p_worldwide_message::after {
    right: -18px;
    border-left: 18px solid var(--lp-yellow);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.p_worldwide_features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.p_worldwide_speech {
    position: relative;
    background-color: var(--lp-white);
    border-radius: 12px;
    padding: 4.0rem;
    font-size: 1.6rem;
    font-weight: bold;
    max-width: 33.6rem;
}

.p_worldwide_speech:nth-child(2) {
    margin-left: 16rem;
}

.p_worldwide_speech::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    border-right: 16px solid var(--lp-white);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.p_worldwide_box {
    position: relative;
    margin: auto;
    max-width: 143rem;
    background-color: var(--lp-white);
    border-radius: 4px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6rem 6rem 6.4rem;
    margin-top: 6.0rem;
    background-image:
        radial-gradient(circle at 1.8rem 1.8rem, var(--lp-black) 0.6rem, transparent calc(0.6rem + 1px)),
        radial-gradient(circle at calc(100% - 1.8rem) 1.8rem, var(--lp-black) 0.6rem, transparent calc(0.6rem + 1px)),
        radial-gradient(circle at 1.8rem calc(100% - 1.8rem), var(--lp-black) 0.6rem, transparent calc(0.6rem + 1px)),
        radial-gradient(circle at calc(100% - 1.8rem) calc(100% - 1.8rem), var(--lp-black) 0.6rem, transparent calc(0.6rem + 1px));
}

.p_worldwide_box_head {
    position: relative;
    color: var(--lp-white);
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    border-top: 4px solid var(--lp-black);

}

.p_worldwide_box_title {
    padding: 0.8rem 4.0rem;
    font-size: 2.0rem;
    background-color: var(--lp-black);
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

.p_worldwide_grid {
    display: flex;
    gap: 2.0rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 9rem;
}

.p_worldwide_card {
    flex: 1;
    position: relative;
    background-color: var(--lp-bg-gray);
    padding: 8.0rem 4.0rem 4.0rem;
    border-radius: 8px;
    box-sizing: border-box;
}

.p_worldwide_card:not(:nth-child(2)) {
    margin-top: 8.0rem;
}

.p_worldwide_card_num_wrap {
    position: absolute;
    top: -5.0rem;
    left: 2rem;
    width: 10.0rem;
    height: 10.0rem;
    background-color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.12));
}

.p_worldwide_card_num_wrap::after {
    content: "";
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1.4rem solid var(--lp-white);
    border-left: 1.0rem solid transparent;
    border-right: 1.0rem solid transparent;
}

.p_worldwide_card_num_label {
    font-family: 'Exo', sans-serif;
    color: var(--lp-yellow);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.p_worldwide_card_num {
    font-family: 'Exo', sans-serif;
    font-size: 4.0rem;
    font-weight: 600;
    color: var(--lp-black);
    line-height: 1;
}

.p_worldwide_card_title {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.6;
}

.p_worldwide_card_title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
    margin: 2.0rem 0;
}

.p_worldwide_card_text {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
    margin-bottom: 2.0rem;
}

.p_worldwide_card_text:last-child {
    margin-bottom: 0;
}

@media (max-width: 1740px) {
    .p_worldwide_content {
        gap: 0;
    }
}

@media (max-width: 1500px) {
    .p_worldwide_center_logo {
        width: 24rem;
    }

    .p_worldwide_message {
        padding: 2.0rem;
    }

    .p_worldwide_speech {
        padding: 2.0rem;
    }

    .p_worldwide_speech:nth-child(2) {
        margin-left: 2rem;
    }

    .p_worldwide_features {
        flex: none;
    }

    .p_worldwide_inner {
        padding: 12rem 4rem;
    }

    .p_worldwide_box {
        padding: 4.0rem;
    }

    .p_worldwide_card {
        padding: 8rem 2rem 4rem;
    }

}

@media (max-width: 1024px) {
    .p_worldwide_inner {
        padding: 8rem 2rem 8rem;
    }

    .p_worldwide_content {
        flex-direction: column;
    }

    .p_worldwide_inner::before,
    .p_worldwide_inner::after {
        content: none;
    }

    .p_worldwide_message::before,
    .p_worldwide_message::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        /* 右矢印用の設定をリセット */
        right: auto;
        top: 100%;
        /* 下端に配置 */
    }

    /* 外側の黒い三角形（少し大きくして縁を作る） */
    .p_worldwide_message::before {
        border-top: 1.1rem solid var(--lp-black);
        border-left: 1.1rem solid transparent;
        border-right: 1.1rem solid transparent;
    }

    /* 内側の黄色い三角形 */
    .p_worldwide_message::after {
        border-top: 0.9rem solid var(--lp-yellow);
        border-left: 0.9rem solid transparent;
        border-right: 0.9rem solid transparent;
    }

    /* ==============================================
   吹き出しの下向き矢印（共通：横2rem / 縦1rem）
=============================================== */
    .p_worldwide_speech::before {
        content: "";
        position: absolute;
        top: 100%;
        border-top: 1.0rem solid var(--lp-white);
        border-left: 1.0rem solid transparent;
        border-right: 1.0rem solid transparent;
        border-bottom: none;
        transform: none;
    }

    .p_worldwide_speech:nth-of-type(1)::before,
    .p_worldwide_speech:nth-of-type(3)::before {
        right: 10.0rem;
        left: auto;
    }

    .p_worldwide_speech:nth-of-type(2)::before {
        left: 10.0rem;
        right: auto;
    }

    .p_worldwide_grid {
        flex-direction: column;
        margin-top: 8rem;
        gap: 8rem;
    }

    .p_worldwide_card:not(:nth-child(2)) {
        margin-top: 0;
    }

    .p_worldwide_box {
        margin-bottom: 0rem;
    }

    .p_worldwide_box_head {
        white-space: normal;
        text-align: left;
    }

    .p_worldwide_box_title {
        width: 90%;
    }

    .p_worldwide_area_pattern {
        padding-top: 2rem;

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

    .p_worldwide_area_pattern_bottom {
        padding-top: 0;
        padding-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .p_worldwide_area_pattern {
        height: 2rem;
        padding-top: 0;
        margin-top: 2rem;
    }

    .p_worldwide_inner {
        padding: 4rem 0rem 0;
        width: 100%;

        .c_sec_head_icon {
            width: 6rem;
        }

        .c_sec_head {
            padding: 0 3rem;
        }

        .c_sec_head_title {
            margin-top: 2rem;
        }
    }

    .p_worldwide_message {
        width: 100%;
        font-size: 1.6rem;
        padding: 2.4rem 0;
    }

    .p_worldwide_center_logo {
        margin-left: 0;
        width: 26rem;
    }

    .p_worldwide_features {
        gap: 2rem;
        width: 100%;
    }

    .p_worldwide_speech {
        padding: 2.4rem;
        font-size: 1.5rem;
        width: fit-content;
        border-radius: 2rem;
    }

    .p_worldwide_box {
        margin-top: 4.8rem;
    }

    .p_worldwide_speech:nth-child(2) {
        margin-left: 0;
    }

    .p_worldwide_speech:not(:nth-child(2)) {
        margin-left: auto;
    }

    .p_worldwide_content {
        margin-bottom: 0;
        padding: 0 3rem;
    }

    .p_worldwide_box {
        padding: 4rem 3rem 4rem;
        background-image:
            radial-gradient(circle at 1.8rem 1.8rem, var(--lp-black) 4px, transparent calc(4px + 1px)),
            radial-gradient(circle at calc(100% - 1.8rem) 1.8rem, var(--lp-black) 4px, transparent calc(4px + 1px)),
            radial-gradient(circle at 1.8rem calc(100% - 1.8rem), var(--lp-black) 4px, transparent calc(4px + 1px)),
            radial-gradient(circle at calc(100% - 1.8rem) calc(100% - 1.8rem), var(--lp-black) 4px, transparent calc(4px + 1px));
    }

    .p_worldwide_box_title {
        font-size: 1.6rem;
        width: calc(100% - 14px);
        padding: 8px 2rem;
    }

    .p_worldwide_grid {
        margin-top: 4rem;
    }

    .p_worldwide_card_num_wrap {
        width: 7rem;
        height: 7rem;
        top: -2rem;
    }

    .p_worldwide_card_num_wrap::after {
        bottom: -1rem;
    }

    .p_worldwide_card_num_label {
        font-size: 1.2rem;
    }

    .p_worldwide_card_num {
        font-size: 2.8rem;
    }

    .p_worldwide_card_title {
        font-size: 1.6rem;
    }

    .p_worldwide_card {
        padding: 7.2rem 2rem 3.2rem;
    }

    .p_worldwide_grid {
        gap: 5.6rem;
    }

    .p_worldwide_card_text {
        font-size: 1.5rem;
    }

    .p_worldwide_area_pattern_bottom {
        padding-bottom: 0;
        margin-top: 4rem;
        margin-bottom: 2rem;

    }
}


/* ==============================================
   出店エリア・加盟金 (Area & Terms)
=============================================== */
.p_terms_area {
    padding: 12.0rem 0;
    background-color: var(--lp-white);
}

.p_terms_area .l_lp_container {
    max-width: 143.0rem;
    margin: 0 auto;
    padding: 0;
}

.p_terms_area_note {
    margin: 1.2rem auto 0;
    font-size: 1.4rem;
    color: var(--lp-black);
    text-align: right;
}

/* ラベル共通設定 */
.p_terms_label_wrap {
    text-align: center;
}

.p_terms_label {
    display: inline-block;
    background-color: var(--lp-yellow);
    border-radius: 50px;
    padding: 1.2rem 4.0rem;
    font-size: 2.0rem;
    font-weight: bold;
}

.p_terms_section {
    margin-top: 4rem;
}

.p_terms_section:first-of-type .p_terms_label_wrap {
    margin: 4.0rem 0;
}

.p_terms_area_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}

.p_terms_area_img_wrap {
    width: calc(50% - 1.0rem);
}

.p_terms_area_img {
    width: 100%;
    height: auto;
    display: block;
}

.p_terms_area_text_wrap {
    width: calc(50% - 3.0rem);
}

.p_terms_area_title {
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 2.0rem;
}

.p_terms_area_list {
    font-size: 1.6rem;
    line-height: 2;
}

.p_terms_area_list::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
    margin: 4.0rem 0;
}

.p_terms_area_box {
    background-color: var(--lp-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 2.0rem 0 2.0rem 3.0rem;
}

.p_terms_area_box_icon {
    width: 8.0rem;
    flex-shrink: 0;
    margin-right: 1.6rem;
}

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

.p_terms_area_box_text {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: right;
    width: 100%;
    padding-right: 3.0rem;
    line-height: 1.5;
}

.p_terms_section--gray {
    background-color: #F8F8F8;
    border-radius: 12px;
    margin-top: 8.6rem;
    padding: 6.7rem 0 4.0rem;
    position: relative;
}

.p_terms_section--gray .p_terms_label_wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.p_terms_table_wrap {
    max-width: 114.0rem;
    margin: 0rem auto 0;
    background-color: var(--lp-white);
    padding: 4.0rem 0;
    border-radius: 4px;
}

.p_terms_table {
    max-width: 85.0rem;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.p_terms_table th,
.p_terms_table td {
    padding: 2.0rem 0;
    font-size: 2.0rem;
    font-weight: bold;
    border-bottom: 1px solid #DDDDDD;
}



.p_terms_table th {
    text-align: left;
    width: 50%;
    padding-left: 8rem;
}

.p_terms_table td {
    width: 50%;
    max-width: 41.5rem;
    text-align: center;
}

.p_terms_note {
    max-width: 114.0rem;
    margin: 1.2rem auto 0;
    font-size: 1.4rem;
    color: var(--lp-black);
}

.u_text_large {
    font-size: 4.0rem;
    line-height: 1;
}

.u_text_small {
    font-size: 2.0rem;
    margin-left: 0.4rem;
}

.u_text_note {
    /* font-size: 1.4rem; */
    /* font-weight: normal; */
    /* margin-left: 0.8rem; */
}

@media (max-width: 1500px) {
    .p_terms_section--gray {
        padding: 6.7rem 2.0rem 4.0rem;
    }
}

@media (max-width: 1024px) {
    .p_terms_area_inner {
        flex-direction: column;
    }

    .p_terms_area_img_wrap,
    .p_terms_area_text_wrap {
        width: 100%;
        padding: 0 2.0rem;
    }

    .p_terms_area_text_wrap {
        margin-top: 4.0rem;
    }

    .p_terms_area_box {
        padding: 3.0rem;
        flex-direction: column;
    }

    .p_terms_area_box_text {
        text-align: center;
        padding-right: 0;
        margin-top: 2.0rem;
    }

    .p_terms_table_wrap {
        width: 90%;
        padding: 4.0rem 2.0rem;
    }

    .p_terms_table {
        width: 100%;
    }

    .p_terms_note {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .p_terms_area .l_lp_container {
        padding: 0;

        .c_sec_head {
            padding: 0 3rem;
        }
    }

    .p_terms_section {
        padding: 0 3rem;
    }

    .p_terms_area {
        padding: 6.0rem 0;
    }

    .p_terms_area_note {
        text-align: left;
        margin-top: 0.8rem;
    }

    .p_terms_label {
        font-size: 1.6rem;
        padding: 8px 3.2rem;
    }

    .p_terms_area_img_wrap,
    .p_terms_area_text_wrap {
        padding: 0;
    }

    .p_terms_area_inner {
        margin-top: 2rem;
    }

    .p_terms_area_text_wrap {
        margin-top: 2rem;
    }

    .p_terms_area_title {
        font-size: 1.6rem;
    }

    .p_terms_area_list {
        font-size: 1.5rem;
    }

    .p_terms_area_box {
        padding: 2rem;
    }

    .p_terms_area_box_text {
        margin-top: 8px;
        font-size: 1.6rem;
        text-align: left;
    }

    .p_terms_area_box_icon {
        width: 5.3rem;
    }

    .p_terms_section--gray {
        margin-top: 6rem;
    }

    .p_terms_section--gray .p_terms_label_wrap {

        white-space: nowrap;
    }

    .p_terms_section--gray {
        padding: 4rem 3rem;
    }

    .p_terms_table_wrap {
        width: 100%;
        padding: 2rem;
    }

    .p_terms_table th,
    .p_terms_table td {
        padding: 2rem 0;
        font-size: 1.6rem;
    }

    .p_terms_table th {
        padding-left: 1rem;
        vertical-align: middle;
    }
}


/* ==============================================
   収益モデルについて (Earning Model)
=============================================== */
.p_earning_area {
    background-color: var(--lp-bg-gray);
    padding: 12.0rem 0;
}

.p_earning_area .l_lp_container {
    max-width: 143.0rem;
    margin: 0 auto;
}

/* キャッチコピーとボーダー */
.p_earning_catch_wrap {
    text-align: center;
    border-top: 1px solid var(--lp-black);
    border-bottom: 1px solid var(--lp-black);
    padding: 4.0rem 0;
    margin-top: 4.0rem;
}

.p_earning_catch {
    font-size: 4.0rem;
    font-weight: bold;
    letter-spacing: 0.05em;

}

.u_text_red {
    color: var(--lp-red);
}

.u_text_num {
    font-size: 5.0rem;
    vertical-align: baseline;
    font-weight: bold;
}

.u_text_red_large {
    color: var(--lp-red);
    font-size: 5.0rem;
    font-weight: bold;
}

.p_earning_sub_catch {
    font-size: 3.2rem;
    font-weight: bold;
}

/* テーブル */
.p_earning_table_wrap {
    margin-top: 6.0rem;
    overflow-x: auto;
}

.p_earning_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px 0px;
    table-layout: fixed;
    min-width: 1200px;
}

.p_earning_table th,
.p_earning_table td {
    border: none;
    vertical-align: middle;
    padding: 2rem 4rem;
    color: var(--lp-black);
}

/* 第一列目 (項目名: 約22.5rem相当の比率) */
.p_earning_table th {
    text-align: center;
    font-size: 1.6rem;
    font-weight: normal;
    width: 16%;
}

.p_earning_table th:not(:first-child),
.p_earning_table td {
    width: 16.8%;
    font-size: 2.0rem;
}

/* 左上空セル */
.p_earning_table thead th:first-child {
    background-color: transparent !important;
}


.p_earning_table thead th:not(:first-child) {
    text-align: center;
    font-size: 1.6rem;
    font-weight: normal;
    padding-left: 1.0rem;
    padding-right: 1rem;
}

.u_align_center_left {
    display: inline-block;
    text-align: left;
}

/* td (金額) */
.p_earning_table tbody td {
    text-align: right;
    padding: 2rem 4rem;
}

/* 増減率行 */
.p_earning_table tr.p_earning_table_row_rate th,
.p_earning_table tr.p_earning_table_row_rate td {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.p_earning_table tr.p_earning_table_row_rate td {
    text-align: center;
}

/* ボールド (増減率、経常利益の数値のみ) */
.p_earning_table tr.p_earning_table_row_rate td,
.p_earning_table tr.p_earning_table_row_profit_total td {
    font-weight: bold;
}

/* --- 表の背景色 --- */
.p_earning_table thead th:nth-child(2),
.p_earning_table thead th:nth-child(3) {
    background-color: #f2db5685;
}

.p_earning_table thead th:nth-child(4) {
    background-color: #f2b6568c;
}

.p_earning_table thead th:nth-child(5),
.p_earning_table thead th:nth-child(6) {
    background-color: #f2915596;
}

/* ボディのストライプ */
.p_earning_table tbody tr:nth-child(even) th,
.p_earning_table tbody tr:nth-child(even) td {
    background-color: var(--lp-white);
}

.p_earning_table tbody tr:nth-child(odd) th,
.p_earning_table tbody tr:nth-child(odd) td {
    background-color: #F8F5E4;
}

/* 売上増減率の背景色 (SVGに準拠した透過色表現) */
.p_earning_table tr.p_earning_table_row_rate th:nth-child(1) {
    background-color: #F8F5E4;
}

.p_earning_table tr.p_earning_table_row_rate td:nth-child(2),
.p_earning_table tr.p_earning_table_row_rate td:nth-child(3) {
    background-color: #F2DA55
}

.p_earning_table tr.p_earning_table_row_rate td:nth-child(4) {
    background-color: #F2B656
}

.p_earning_table tr.p_earning_table_row_rate td:nth-child(5),
.p_earning_table tr.p_earning_table_row_rate td:nth-child(6) {
    background-color: #F29155
}


/* ==============================================
   計算根拠 
=============================================== */
.p_earning_note_wrap {
    margin-top: 2.0rem;
}

.p_earning_note_box {
    background-color: #DDDDDD;
    padding: 2.0rem 4.0rem;
    display: flex;
    align-items: flex-start;
}

.p_earning_note_left {
    width: 12.0rem;
    flex-shrink: 0;
}

.p_earning_note_title {
    font-size: 1.6rem;
    font-weight: bold;
}

.p_earning_note_right {
    flex: 1;
}

.p_earning_note_grid {
    display: flex;
    gap: 4.0rem;
}

.p_earning_note_col {
    font-size: 1.6rem;
    line-height: 1.5;
    min-width: 12rem;
}



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


/* ==============================================
   注意書き
=============================================== */
.p_earning_warning {
    margin-top: 2.0rem;
    display: flex;
    align-items: center;
}

.p_earning_warning_icon {
    width: 3.6rem;
    flex-shrink: 0;
    margin-right: 2.0rem;
}

.p_earning_warning_icon img {
    width: 100%;
    height: auto;
    display: block;
}

.p_earning_warning_text {
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--lp-red);
    line-height: 1.5;
}

.u_text_red_bold {
    color: var(--lp-red);
    font-weight: bold;
}

/* ==============================================
   レスポンシブ (1024px以下)
=============================================== */
@media (max-width: 1024px) {
    .p_earning_catch {
        font-size: 2.4rem;
    }

    .u_text_red_large {
        font-size: 3.2rem;
    }

    .p_earning_sub_catch {
        font-size: 2.0rem;
    }

    .p_earning_note_box {
        flex-direction: column;
        padding: 2.0rem;
    }

    .p_earning_note_left {
        width: 100%;
        margin-bottom: 1.0rem;
    }

    .p_earning_note_grid {
        flex-direction: column;
        gap: 1.0rem;
    }

    .p_earning_warning {
        padding: 0 1.0rem;
    }

    .p_earning_warning_text {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .p_earning_area {
        padding: 6.0rem 0;

        .c_sec_head_title {
            padding: 0 3rem;
        }
    }

    .p_earning_area .l_lp_container {
        padding: 0;
    }

    .p_earning_catch_wrap {
        padding: 1rem 3rem 2rem;
        margin: 4rem 3rem 0;
    }

    .p_earning_table {
        min-width: 900px;
    }

    .p_earning_table_wrap {
        margin-top: 4rem;
    }

    .p_earning_table_wrap {
        font-size: 1.5rem;
    }

    .p_earning_table thead th:not(:first-child) {
        padding: 1.2rem 3.2rem;
        font-size: 1.5rem;
        width: 19%;
    }

    .p_earning_table th:not(:first-child) {
        font-size: 1.5rem;
    }

    .p_earning_table tr.p_earning_table_row_rate td {
        font-size: 1.6rem;
    }

    .p_earning_table th,
    .p_earning_table td,
    .p_earning_table tbody td {
        padding: 1.4rem 2rem;
    }

    .p_earning_table th {
        font-size: 1.5rem;
        width: 15%;
    }

    .p_earning_table td {
        font-size: 1.6rem;
    }

    .p_earning_note_box {
        padding: 2rem 3rem;
    }

    .p_earning_note_title {
        font-size: 1.5rem;
    }

    .p_earning_note_grid {
        font-size: 1.5rem;
    }

    .p_earning_warning {
        flex-direction: column;
        gap: 1.6rem;
        padding: 0 3rem;

    }

    .p_earning_note_col {
        font-size: 1.5rem;
    }
}

/* --- 経常利益の行の色付け --- */
.p_earning_table tr.p_earning_table_row_profit_total th:nth-child(1) {
    background-color: #F8F5E4;
}

.p_earning_table tr.p_earning_table_row_profit_total td:nth-child(2),
.p_earning_table tr.p_earning_table_row_profit_total td:nth-child(3) {
    background-color: #F2DA55;
}

.p_earning_table tr.p_earning_table_row_profit_total td:nth-child(4) {
    background-color: #F2B655;
}

.p_earning_table tr.p_earning_table_row_profit_total td:nth-child(5),
.p_earning_table tr.p_earning_table_row_profit_total td:nth-child(6) {
    background-color: #F29155;
}


/* ==============================================
   他社FCライセンスとの徹底比較表 (Comparison)
=============================================== */
.p_compare_area {
    padding: 12rem 0 12rem;
    background-color: var(--lp-white);

    .l_lp_container {
        max-width: 143rem;
    }
}

.p_compare_area .c_sec_head {
    margin-bottom: 8.0rem;
}

.p_compare_section {
    background-color: #F8F8F8;
    border-radius: 12px;
    max-width: 143.0rem;
    margin: 0 auto 8.6rem;
    padding: 8.0rem 0 4rem;
    position: relative;
}

.p_compare_section:last-child {
    margin-bottom: 0;
}

.p_compare_section .p_terms_label_wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%;
    text-align: center;
}

.p_compare_table_wrap {
    max-width: 114.0rem;
    overflow-x: auto;
    margin: 0 auto;
}


.p_compare_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    text-align: center;
}

.p_compare_table th,
.p_compare_table td {
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--lp-black);
    padding: 2.0rem 1.0rem;
    text-align: center;
}

.col_label {
    width: 18.0rem;
}

.col_strike {
    width: 26.5rem;
}

.col_spacer {
    width: 5px;
}

.col_other {
    width: 26.5rem;
}

/* 左上透明セル */
.p_compare_table .th_empty {
    background-color: transparent;
    padding: 0;
    border: none;
}

/* 透明スペーサー列 */
.p_compare_table .th_spacer,
.p_compare_table .td_spacer {
    padding: 0;
    background-color: transparent;
}

.p_compare_table .td_spacer {
    border-bottom: 1px solid #DDDDDD;
}

.p_compare_table tbody tr:last-child .td_spacer {
    border-bottom: none;
}

/* --- 第1列：項目ラベル --- */
.p_compare_table .td_label {
    background-color: #DDDDDD;
    font-weight: normal;
    border-bottom: 1px solid #FFFFFF;
}

.p_compare_table .td_label_first {
    border-radius: 4px 4px 0 0;
}

.p_compare_table .td_label_last {
    border-radius: 0 0 4px 4px;
    border-bottom: none;
}

/* --- 第2列：ストライク軒 --- */
.p_compare_table .th_strike {
    background-color: #FFD22E;
    border-radius: 4px 4px 0 0;
    padding: 2.0rem 1.2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.p_compare_table .th_strike img {
    width: 18.0rem;
    height: auto;
    display: inline-block;
}

.p_compare_table .td_strike {
    background-color: #FFFFFF;
    border-left: 4px solid #FFD22E;
    border-right: 4px solid #FFD22E;
    border-bottom: 1px solid #DDDDDD;
}

.td_strike_note {
    font-size: 1.4rem;
    font-weight: normal;
    margin-top: 0.8rem;
    display: block;
    text-align: left;
}

.p_compare_table .td_strike_bold {
    font-weight: bold;
}

.p_compare_table .td_strike_last {
    border-bottom: 4px solid #FFD22E;
    border-radius: 0 0 4px 4px;
}

/* --- 第3列・第4列：一般的な他社FC・備考 --- */
.p_compare_table .th_other,
.p_compare_table .th_note {
    position: relative;
    background-color: transparent;
    padding: 2.8rem 1.0rem 1.8rem;
    font-weight: normal;
    z-index: 1;
    text-align: center;
}

.p_compare_table .th_other::before,
.p_compare_table .th_note::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 0rem;
    left: 0;
    right: 0;
    background-color: #DDDDDD;
    border-radius: 4px 4px 0 0;
    z-index: -1;
}

.p_compare_table .th_note {
    width: 41.5rem;
}

.p_compare_table .td_other,
.p_compare_table .td_note {
    background-color: #FFFFFF;
    border-bottom: 1px solid #DDDDDD;
}

.p_compare_table .td_other_last,
.p_compare_table .td_note_last {
    border-radius: 0 0 4px 4px;
    border-bottom: none;
}

.p_compare_note {
    margin-top: 2.0rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--lp-black);
    text-align: left;
    max-width: 114.0rem;
    margin: 2rem auto 0;
}

.u_text_small_note {
    font-size: 1.4rem;
    font-weight: normal;
}

@media (max-width: 1500px) {
    .p_compare_table .th_note {
        width: 34.5rem;
    }

    .col_label {
        width: 14.0rem;
    }

    .p_compare_section {
        padding: 8.0rem 2.0rem 4.0rem;
        margin-bottom: 5.8rem;
    }

    .col_other {
        width: 18rem;
    }
}

/* ==============================================
   レスポンシブ (1024px以下)
=============================================== */
@media (max-width: 1024px) {
    .p_compare_table_wrap {
        padding: 0 2.0rem;
    }

    .p_compare_table {
        min-width: 900px;
        /* 横スクロール対応 */
    }
}

@media (max-width: 600px) {
    .p_compare_area {
        padding: 6.0rem 0;

        .l_lp_container {
            padding: 0;
        }
    }

    .p_compare_area .c_sec_head {
        margin-bottom: 4rem;
    }

    .p_compare_table th,
    .p_compare_table td {
        font-size: 1.5rem;
    }

    .p_compare_note {
        font-size: 1.5rem;
    }
}


/* ==============================================
   ブランドオーナーからのメッセージ (Message from Brand Owner)
=============================================== */
.p_message_area {
    background-color: var(--lp-black);
    color: var(--lp-white);
    padding: 12.0rem 0;
}

.c_sec_head--white .c_sec_head_title,
.c_sec_head--white .c_sec_head_sub {
    color: var(--lp-white);
}

.p_message_area .l_lp_container {
    max-width: 151.0rem;
    margin: 0 auto;
    padding: 0 4rem;
}

.p_message_inner {
    display: flex;
    justify-content: space-between;
    gap: 8.0rem;
    margin-top: 8.0rem;
}

/* 左カラム：オーナー画像 */
.p_message_left {
    width: 50.0rem;
    flex-shrink: 0;
}

.p_message_owner_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

/* 右カラム：コンテンツ */
.p_message_right {
    width: 85.0rem;
    flex-shrink: 0;
}

.p_message_ramen_wrap {
    width: 70.5rem;
    margin-left: auto;
    margin-bottom: 6.0rem;
}

.p_message_ramen_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.p_message_title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 4.0rem;
}

.p_message_text_wrap {
    margin-bottom: 2rem;
}

.p_message_text {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.7777;
}

.p_message_text:not(:last-child) {
    margin-bottom: 1.5em;
}

.p_message_sign_wrap {
    text-align: right;
}

.p_message_sign_title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.p_message_sign_name {
    font-size: 2.0rem;
    font-weight: normal;
}

.p_message_sign_en {
    font-size: 1.4rem;
    margin-left: 1.6rem;
}

.p_recognition_container {
    width: 100%;
    border: #FFFFFF solid 1px;
    border-radius: 10px;
    padding: 5rem 5rem 7rem 5.7rem;
    margin-top: 6rem;
}

.p_recognition_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.p_recognition_main {
    flex: 1;
}

.p_recognition_sub {
    font-weight: bold;
    font-size: 1.6rem;
}

.p_recognition_title {
    font-weight: bold;
    font-size: 2.4rem;
}

.p_recognition_text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 4rem;
}

.p_recognition_side {
    width: 380px;
    flex-shrink: 0;
}

.p_recognition_side_sub {
    font-size: 1.8rem;
}

.p_recognition_links {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #707070;
    a:hover {
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .p_recognition_inner {
        flex-direction: column;
        gap: 30px;
    }

    .p_recognition_text {
        margin-top: 2rem;
    }

    .p_recognition_side {
        width: 100%;
    }
}

@media (max-width: 600px) {
.p_message_area .l_lp_container {
    padding:  0 2rem;
}
    .p_recognition_container {
        padding: 2rem;
    }

    .p_recognition_title {
        font-size: 1.8rem;
    }

    .p_recognition_text {
        font-size: 1.4rem;
    }

    .p_recognition_side_sub {
        font-size: 1.6rem;
    }

}

@media (max-width: 1500px) {
    .p_message_left {
        width: 36%;
    }

    .p_message_right {
        width: auto;
        flex-shrink: 1;
    }

    .p_message_ramen_wrap {
        width: 100%;
        margin-left: 0;
    }
}

/* ==============================================
   レスポンシブ (1024px以下)
=============================================== */
@media (max-width: 1024px) {
    .p_message_inner {
        flex-direction: column;
        align-items: center;
        gap: 4.0rem;
        padding: 0 2.0rem;
    }

    .p_message_left,
    .p_message_right {
        width: 100%;
    }

    .p_message_ramen_wrap {
        width: 100%;
        margin-left: 0;
    }

    .p_message_title {
        font-size: 2.0rem;
    }

    .p_message_text {
        font-size: 1.6rem;
    }

    .p_message_sign_title {
        font-size: 1.4rem;
    }

    .p_message_sign_name {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .p_message_area {
        padding: 6.0rem 0;
    }

    .p_message_inner {
        padding: 0;
        margin-top: 4rem;
    }

    .p_message_title {
        margin-bottom: 2rem;
    }

    .p_message_text {
        font-size: 1.6rem;
    }

    .p_message_sign_title {
        font-size: 1.4rem;
    }

    .p_message_sign_name {
        font-size: 1.6rem;
    }

    .p_message_inner {
        gap: 1.2rem;
    }

    .p_message_ramen_wrap {
        margin-bottom: 2rem;
    }

    .p_message_text_wrap {
        margin-bottom: 4rem;
    }
}

/* ==============================================
   加盟・出店までの流れ (The Steps)
=============================================== */
.p_flow_area {
    background-color: #F8F8F8;
    padding: 12.0rem 0;

    .c_sec_head_title {
        margin-top: 0;
    }
}

.p_flow_area .l_lp_container {
    max-width: 143.0rem;
    margin: 0 auto;
}

.p_flow_content {
    margin-top: 4.0rem;
}

.p_flow_row {
    display: flex;
    width: 128.5rem;
    gap: 0.8rem;
    align-items: stretch;
}

.p_flow_row--top {
    margin-right: auto;
    margin-left: 0;
}

.p_flow_row--bottom {
    margin-left: auto;
    margin-right: 0;
    margin-top: 4.0rem;
}

.p_flow_card {
    flex: 0 0 42.3rem;
    background-color: var(--lp-white);
    padding: 3.0rem 4.0rem;
    border-radius: 4px;
}

.p_flow_icon {
    width: 10.0rem;
    margin: 0 auto 0rem;
}

.p_flow_icon img {
    width: 100%;
    height: auto;
    display: block;
}

.p_flow_step_num {
    font-family: 'Exo', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--lp-black);
    margin-bottom: 0.4rem;
}

.p_flow_ribbon {
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--lp-black);
    padding: 0.8rem 4.5rem 0.8rem 1.2rem;
    margin-bottom: 1.2rem;
    clip-path: polygon(0 0, calc(100% - 1.8rem) 0, 100% 50%, calc(100% - 1.8rem) 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STEPごとの背景色 */
.p_flow_ribbon--step1 {
    background-color: #F2DA55;
}

.p_flow_ribbon--step2 {
    background-color: #F2C850;
}

.p_flow_ribbon--step3 {
    background-color: #F1B64B;
}

.p_flow_ribbon--step4 {
    background-color: #F1A546;
}

.p_flow_ribbon--step5 {
    background-color: #F09341;
}

.p_flow_ribbon--step6 {
    background-color: #F0813C;
}

.p_flow_text {
    line-height: 2;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--lp-black);
}

.p_flow_note {
    font-size: 1.4rem;
    display: block;
    margin-top: 1.0rem;
    line-height: 1.5;
}

@media (max-width: 1500px) {
    .p_flow_row {
        width: 100%;
        gap: 1.0rem;
    }

    .p_flow_card {
        padding: 3.0rem 2.0rem;
        flex: 1 1 auto;
        width: 33%;
    }
}

@media (max-width: 1024px) {
    .p_flow_row {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .p_flow_row--bottom {
        margin-top: 3.0rem;
    }

    .p_flow_card {
        flex: 1 1 auto;
        width: 90%;
        margin-bottom: 2.0rem;
    }

}

@media (max-width: 600px) {
    .p_flow_area {
        padding: 6.0rem 0;
    }

    .p_flow_card {
        width: 100%;
        padding: 2rem;
    }

    .p_flow_text {
        font-size: 1.5rem;
    }

    .p_flow_row--bottom {
        margin-top: 0;
    }

    .p_flow_ribbon {
        padding: 4px;
    }
}


/* ==============================================
   フォームセクション (Contact Form)
=============================================== */
#form_area {
    background-color: var(--lp-white);
    padding: 12.0rem 0 0;
    max-width: 143rem;
    margin: 0 auto 12rem;
    border-bottom: 1px solid #000A02;

    form {
        max-width: 114rem;
        margin: 0 auto;
        padding-bottom: 6rem;
    }
}

#form_area .l_lp_container {
    max-width: 104.0rem;
    margin: 0 auto;
}

.form_ttl_txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 4.0rem 0 6rem;
    border-bottom: 1px solid #000A02;
    padding-bottom: 4rem;
    color: var(--lp-black);
}

#form_area .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0rem 0 2.4rem;
    margin: 0 !important;
}


#item_passion,
#item_message {
    align-items: flex-start !important;
}

#form_area .col-3 {
    flex: 0 0 29rem;
    max-width: 30%;
    padding: 0;
}

#form_area .col {
    width: 100%;
    padding: 0;
}

#form_area label {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--lp-black);
    cursor: pointer;
}

#form_area label::before {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 1.2rem;
    min-width: 4.6rem;
    text-align: center;
    line-height: normal;
}

#form_area label:has(.required)::before {
    content: "必須";
    background-color: var(--lp-red);
    color: var(--lp-white);
}

#form_area label:not(:has(.required))::before {
    content: "任意";
    background-color: #E0E0E0;
    color: var(--lp-black);
}

#form_area .required {
    display: none;
}

/* 入力フィールド */
#form_area .form-control,
#form_area .form-select {
    background-color: #F8F8F8;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 1.8rem 4.0rem;
    font-size: 1.6rem;
    color: var(--lp-black);
    width: 100%;
}

#form_area .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.707' height='9.061' viewBox='0 0 16.707 9.061'%3E%3Cpath d='M1483.372,19332.2l8,8,8-8' transform='translate(-1483.019 -19331.848)' fill='none' stroke='%23000a02' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;

    background-position: right 4.0rem center;
    background-size: 1.6rem auto;

    padding-right: 6.0rem;
}

#form_area .form-control:focus,
#form_area .form-select:focus {
    background-color: var(--lp-white);
    border-color: var(--lp-black);
    outline: none;
    box-shadow: none;
}

#form_area textarea.form-control {
    min-height: 30.0rem;
}

#form_area textarea.form-control[data-lenis-prevent] {
    overscroll-behavior: auto !important;
}

/* エラー・カウント表示 */
.error_text {
    font-size: 1.3rem;
    color: var(--lp-red);
    font-weight: bold;
    margin-top: 0.8rem;
    background-color: transparent !important;
}

.count_text {
    font-size: 1.2rem;
    color: #888888;
    text-align: right;
    margin-top: 0.5rem;
}

.mt-5 {
    display: flex;
    justify-content: center;
}

/* 送信ボタン（共通コンポーネント流用） */
.form_submit_btn {
    width: 27rem;

}

@media (max-width: 1500px) {
    #form_area {
        padding: 12.0rem 4.0rem 0;
    }
}

/* ==============================================
   レスポンシブ (1024px以下)
=============================================== */
@media (max-width: 1024px) {
    #form_area .row {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        padding: 2.0rem 1.5rem;
    }

    #form_area .col-3,
    #form_area .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #form_area .col-3 {
        margin-bottom: 1.2rem;
    }

    .form_submit_btn {
        width: 100% !important;
        max-width: 32.0rem;
    }
}

@media (max-width: 600px) {
    #form_area {
        padding: 6.0rem 2.0rem 0;
        margin-bottom: 6rem;
    }

    .form_ttl_txt {
        margin-bottom: 4rem;
    }

    #form_area .row {
        padding-top: 0;
        padding-bottom: 2.4rem;
    }

    #form_area .form-control,
    #form_area .form-select {
        padding: 2rem;
        font-size: 1.5rem;
    }

    #form_area label {
        font-size: 1.5rem;
    }


}

/* ==============================================
   確認画面用スタイル (form_check.php)
=============================================== */
.p_form_check label::before {
    display: none !important;
}

.p_form_check .col p {
    font-size: 1.6rem;
    color: var(--lp-black);
    padding: 1.6rem 2.0rem;
    border-radius: 4px;
    margin: 0;
    width: 100%;
    line-height: 1.8;
}

/* ==============================================
   共通ボタン反転バージョン (c_btn--back)
=============================================== */
.c_btn--back {
    padding: 8px 24px 8px 8px !important;
    background-color: var(--lp-white) !important;
    color: var(--lp-black) !important;
    border: 1px solid var(--lp-black) !important;
    justify-content: flex-start !important;
}

.c_btn--back .c_btn_icon {
    margin-left: 0;
    margin-right: 2rem;
    background-color: #E0E0E0 !important;
}

.c_btn--back:hover .c_btn_text {
    transform: translateX(-0.4rem) !important;
}

.c_btn--back .c_btn_icon svg:last-child {
    transform: translateX(3.0rem) !important;
}

.c_btn--back:hover .c_btn_icon svg:first-child {
    transform: translateX(-3.0rem) !important;
}

.c_btn--back:hover .c_btn_icon svg:last-child {
    transform: translateX(0) !important;
}

/* --- レイアウト調整 --- */
.form_check_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.0rem;
    margin-top: 6.0rem;
}

.form_back_btn,
.form_submit_btn {
    width: 32.0rem !important;
    height: 7.0rem;
    cursor: pointer;
    border-radius: 4px !important;
}

/* スマホ用レスポンシブ */
@media (max-width: 1024px) {
    .form_check_btn_wrap {
        flex-direction: column-reverse;
        gap: 1.6rem;
        padding: 0 2.0rem;
    }

    .form_back_btn,
    .form_submit_btn {
        width: 100% !important;
        max-width: 40.0rem;
    }
}

@media (max-width: 1024px) {
    .p_form_check .row {
        display: flex;
        flex-direction: column;
        padding: 2.4rem 0;
        margin: 0;
        border-bottom: 1px solid #E0E0E0;
    }

    .p_form_check .row:first-of-type {
        border-top: 1px solid #E0E0E0;
    }

    .p_form_check .col-3,
    .p_form_check .col {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .p_form_check .col-3 {
        margin-bottom: 1.2rem;
    }

    .p_form_check .col-3 label {
        font-size: 1.4rem;
        font-weight: 700;
        color: #666666;
    }

    .p_form_check .col p {
        font-size: 1.6rem;
        margin: 0;
        padding: 1.6rem 0rem;
        border-radius: 4px;
        word-break: break-all;
    }

    .form_check_btn_wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 1.6rem;
        margin: 4.0rem 0 6.0rem;
    }

    .form_back_btn,
    .form_submit_btn {
        width: 100% !important;
        max-width: 40.0rem;
        margin: 0 auto;
    }

    .p_form_result {
        padding: 4.0rem 2.0rem;
        margin-top: 4.0rem;
        width: 100%;
    }

    .p_form_result_text {
        font-size: 1.5rem;
        margin-bottom: 3.2rem;
    }

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

@media (max-width: 600px) {
    .p_form_check_wrap#form_area {
        padding: 6rem 3rem 0;

        .row {
            padding: 1.6rem 0;
        }
    }

    .p_form_check .col p {
        font-size: 1.4rem;
        padding: 0rem;
    }

    .p_form_result_text {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .form_back_btn,
    .form_submit_btn {
        width: 27rem !important;
    }
}

/* ==============================================
   完了・エラー画面用スタイル (form_complete.php / form_error.php)
=============================================== */
.p_form_result {
    max-width: 80.0rem;
    margin: 0rem auto 0;
    text-align: center;
    padding: 6.0rem 4.0rem;
    border-radius: 4px;
}

.p_form_result_text {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--lp-black);
    margin-bottom: 4.0rem;
}

.p_form_result_btn_wrap {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .p_form_result {
        margin-top: 4.0rem;
        padding: 4.0rem 2.0rem;
        width: 90%;
    }
}


@media (max-width: 600px) {

    /* --- エラー・完了画面 (p_form_result) スマホ微調整 --- */
    .p_form_result {
        padding: 4.0rem 2.0rem;
        width: 100%;
        margin-top: 0;
    }

    .p_form_result_text {
        font-size: 1.4rem;
    }
}

/* ==============================================
   1300px以下：常時表示スクロールバー（物理4px再現版）
=============================================== */
@media (max-width: 1300px) {

    .p_compare_table_wrap,
    .p_earning_table_wrap {
        /* 上下2remのマージン */
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;

        /* 表示が確認された「消えない設定」を完全継承 */
        scrollbar-gutter: stable;
        overflow-x: scroll !important;
        padding-bottom: 20px !important;
    }

    /* 1. バー自体の設定：表示される「12px」の高さを死守し、OSの自動非表示を封じます */
    .p_compare_table_wrap::-webkit-scrollbar,
    .p_earning_table_wrap::-webkit-scrollbar {
        -webkit-appearance: none !important;
        height: 12px !important;
        display: block !important;
    }

    /* 2. 背景（レール）：ご指定の#DDDDDD、角丸2px
       上下に4pxの透明なボーダーを入れて、中央の4pxだけを露出させます
    */
    .p_compare_table_wrap::-webkit-scrollbar-track,
    .p_earning_table_wrap::-webkit-scrollbar-track {
        background-color: #DDDDDD !important;
        border-radius: 2px !important;
        /* 成功コードにある「実体化」のための影を維持 */
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1) !important;

        /* 見た目を4pxに絞るためのマスク（12px - 4px - 4px = 4px） */
        border-top: 4px solid transparent !important;
        border-bottom: 4px solid transparent !important;
        background-clip: content-box !important;
    }

    /* 3. つまみ：ご指定の#B4B4B4、角丸2px
       レールと同じ4pxの高さで重ねる設定です
    */
    .p_compare_table_wrap::-webkit-scrollbar-thumb,
    .p_earning_table_wrap::-webkit-scrollbar-thumb {
        background-color: #B4B4B4 !important;
        border-radius: 2px !important;

        /* レールと同じ位置（中央4px）に色を出す設定 */
        border-top: 4px solid transparent !important;
        border-bottom: 4px solid transparent !important;
        background-clip: content-box !important;
    }

    /* ホバー時の挙動 */
    .p_compare_table_wrap::-webkit-scrollbar-thumb:hover,
    .p_earning_table_wrap::-webkit-scrollbar-thumb:hover {
        background-color: #999999 !important;
    }
}


/* ==============================================
   プライバシーポリシー項目（入力画面専用カスタム）
=============================================== */
form:not(.p_form_check) #item_privacy-policy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 4rem !important;
    padding: 0 2.0rem;
}

form:not(.p_form_check) #item_privacy-policy .col {
    padding: 0;
    width: 100%;
}

form:not(.p_form_check) #item_privacy-policy p.text-center {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 2.0rem;
    text-align: center !important;
    line-height: 1.6;
}

form:not(.p_form_check) #item_privacy-policy p.text-center a {
    color: #0056b3;
    text-decoration: underline;
}

form:not(.p_form_check) #item_privacy-policy ul.row {
    padding: 0;
    margin: 0;
    justify-content: center;
}

form:not(.p_form_check) #item_privacy-policy .form-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.0rem;
    padding: 0;
}

form:not(.p_form_check) #item_privacy-policy label::before {
    display: none !important;
}

form:not(.p_form_check) #item_privacy-policy .form-check-input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    background-color: #FFFFFF !important;
    border: 1px solid #CCCCCC !important;
    border-radius: 3px !important;
    margin: 0 !important;
    position: relative;
    cursor: pointer;
}

form:not(.p_form_check) #item_privacy-policy .form-check-input[type="checkbox"]:checked {
    background-color: #000A02 !important;
    border-color: #000A02 !important;
}

form:not(.p_form_check) #item_privacy-policy .form-check-input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

form:not(.p_form_check) #item_privacy-policy .form-check-label {
    font-size: 1.6rem;
    color: #333333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

form:not(.p_form_check) #item_privacy-policy .form-check-label .required {
    display: inline !important;
    color: #DC000C;
    font-size: 1.3rem;
    margin-left: 0.6rem;
}

form:not(.p_form_check) #item_privacy-policy .error_text {
    width: 100%;
    order: 3;
    text-align: center;
    margin-top: 1.0rem;
    font-size: 1.3rem;
    background-color: transparent !important;
}

@media (max-width: 600px) {
    form:not(.p_form_check) #item_privacy-policy {
        margin: 3.0rem 0 6.0rem !important;
        padding: 0;
    }

    form:not(.p_form_check) #item_privacy-policy p.text-center {
        font-size: 1.4rem;
        text-align: left !important;
    }

    form:not(.p_form_check) #item_privacy-policy .form-check-label {
        font-size: 1.5rem;
    }
}



.p_form_check #item_privacy-policy ul {
    padding: 1.6rem 2.0rem;
    margin: 0;
}

.p_form_check #item_privacy-policy li {
    font-size: 1.6rem;
    color: var(--lp-black);
    line-height: 1.8;
    padding: 0;
}

@media (max-width: 1024px) {
    .p_form_check #item_privacy-policy ul {
        padding: 1.6rem 0rem;
    }
}

@media (max-width: 600px) {
    .p_form_check #item_privacy-policy li {
        font-size: 1.4rem;
    }
}