@charset "UTF-8";

/* =========================================================
    ■ 共通設定（Base / Reset / Variables）
========================================================= */

/* デバッグ */
/*
*,
*::before,
*::after {
    outline: 1px solid red;
}
*/

/* 変数 */
:root{
    /* ----- 色 ----- */
    --textColor: #2D2D2D;
    --mainBlue01: #0071bc;
    --mainOrange01: #EF8843;
    --bgBlue01: #eff6fb;
    --bgOrange01: #F37520;
    --bgGray: #353439;
    --accentRed: #c1272d;
    --accentGreen: #39b54a;
    --ctaGreen: #21D111;

    /* ----- フォント ----- */
    --ff_zenKakuGoNew: "Zen Kaku Gothic New", sans-serif;
    --ff_num: "Roboto", sans-serif;
    --ff_notoSerif: "Noto Serif JP", serif;
}

/* ベース */
html,body{overflow-x: hidden;}

body{
    position: relative;
    z-index: 0;
    color: var(--textColor);
    font-family: var(--ff_zenKakuGoNew);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    word-break: break-all;
}

/* 状態制御 */
body:has(.ham.open){overflow: hidden;}

/* メディア */
figure,
img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* リンク */
a{transition: .3s;}
a:hover{opacity: 0.6;}
a[href*=tel]{pointer-events: none;}

/* フォーム */
textarea{resize: none;}

/* レイアウトユーティリティ */
html,
body,
.content_wrapper{
    position: relative;
    z-index: 0;
    max-width: 1052px;
    margin: 0 auto;
}
.inner{
    width: 100%;
    max-width: 1030px;
    padding: 0 50px;
    margin: 0 auto;
}

.flex{display: flex;}
.pc_cont{display: block !important;}
.sp_cont{display: none !important;}

.txt_orange{color: var(--bgOrange01);}
.txt_yellow{color: #FFE500;}

/* =========================================================
    ■ スクロールアニメーション
========================================================= */

.scrollin {
    visibility: hidden;
    opacity: 0;
    transition: 1.2s;
    transition-property: visibility, opacity, transform;
}

/* 初期位置 */
.scrollin.bottom {transform: translateY(30px);}
.scrollin.left {transform: translateX(-30px);}
.scrollin.right {transform: translateX(30px);}

/* 発火後 */
.scrollin.active,
.scrollin.bottom.active,
.scrollin.left.active,
.scrollin.right.active {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

/* =========================================================
    ■ ヘッダー
========================================================= */

header{
    position: relative;
    z-index: 0;
    background: var(--textColor);
    padding: 0 35px;
}
header p{
    font-weight: 900;
    font-size: 3.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
header p span{
    color: var(--mainOrange01);
    font-size: 3.75rem;
}

/* =========================================================
    ■ フッター / 共通UI
========================================================= */

/* ページトップ */
.pagetop{
    position: fixed;
    z-index: 10;
    inset: auto 50px 30px auto;
    cursor: pointer;
    transition: opacity .3s, visibility .3s;
    font-size: 0;
    opacity: 0;
    width: 40px;
    height: 40px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--textColor);
}
.pagetop.is_visible{opacity: 1; visibility: visible;}

.pagetop::before{
    position: absolute;
    z-index: 1;
    inset: 6px 0 0 0;
    margin: auto;
    content: '';
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--textColor);
    border-left: 2px solid var(--textColor);
    transform: rotate(45deg);
}

.pagetop:hover{opacity: 0.6;}

/* footer */
footer{
    background: #4B4B4B;
    color: #fff;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding-block: 0.5em;
}


/* =========================================================
    ■ 共通パーツ
========================================================= */

/* ボタン */
.btn_cont{
    position: relative;
    z-index: 0;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}
.btn_cont .btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.4em;
    color: #fff;
    line-height: 1.3;
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to bottom, var(--ctaGreen) 0%, #199E0D 65%, #116B09 100%);
    padding: 1em 2em;
    border-radius: 9999px;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .25));
    transform: translateZ(0);
}
.btn_cont .btn a::after{
    display: block;
    content: '';
    width: 2.1em;
    height: 2.1em;
    background: url(../img/page/lp_202605/ico/btn_arrow.png) no-repeat center / contain;
}
.btn_cont .copy{
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    margin: auto;
    transform: translateY(-50%);
    color: var(--ctaGreen);
    font-size: 1.5rem;
    background: #fff;
    border: 2px solid var(--ctaGreen);
    width: fit-content;
    border-radius: 999px;
    padding: .1em 2.5em;
    pointer-events: none;
}

/* orange */
.btn_cont.btn_orange .copy{
    border-color: var(--bgOrange01);
    color: var(--bgOrange01);
}
.btn_cont.btn_orange .btn a{
    background: var(--bgOrange01);
    border-radius: 15px;
    column-gap: 1em;
}
.btn_cont.btn_orange .btn a::after{
    width: .6em;
    height: .7em;
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

main{padding: 0 0 80px;}

/* =========================================================
    ■ KV
========================================================= */
/* kv_top */
.kv .kv_top{
    background: var(--bgOrange01);
    padding: 20px 0;
}
.kv .kv_top .inner{padding: 0 1%;}
.kv .kv_top .balloon{
    position: relative;
    z-index: 0;
    background: #fff;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .25));
    transform: translateZ(0);
    padding: 0 .2em .2em;
    margin: 0 auto 30px;
}
.kv .kv_top .balloon::before{
    position: absolute;
    z-index: -1;
    inset: calc(100% - 1px) 70px auto 0;
    margin: auto;
    content: '';
    width: 55px;
    height: 30px;
    background: #fff;
    clip-path: polygon(39% 0, 0% 100%, 100% 0);
}
.kv .kv_top .balloon .fz_s{font-size: 2.25rem;}
.kv .kv_top .balloon .fz_l{font-size: 5.9375rem;line-height: 1;}

.kv .kv_top .balloon + p{
    font-size: 4.25em;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    transform: translateZ(0) skew(-4deg);
}

/* kv_bottom */
.kv .kv_bottom{
    position: relative;
    z-index: 0;
    background: url(../img/page/lp_202605/kv_bg.jpg) no-repeat center / cover;
    padding: 45px 0 70px;
}
.kv .kv_bottom > figure{
    position: absolute;
    z-index: -1;
    inset: auto 0 0 auto;
    max-width: 960px;
}

.kv .kv_bottom h1 .top{
    display: block;
    margin: 0 0 1.5rem;
}
.kv .kv_bottom h1 .top .bg_white{
    position: relative;
    z-index: 0;
    font-size: 4rem;
    display: block;
    width: fit-content;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 0.1em 0;
    font-weight: 900;
}
.kv .kv_bottom h1 .top .bg_white:not(:last-of-type){margin: 0 0 0.2em;}
.kv .kv_bottom h1 .top .bg_white::before{
    position: absolute;
    z-index: -1;
    inset: -100%;
    margin: auto;
    content: '';
    width: calc(100% + 1em);
    height: 100%;
    background: #fff;
    transform: skew(-10deg);
}
.kv .kv_bottom h1 .top .bg_white .fz_s{font-size: 3rem;font-weight: 700;}
.kv .kv_bottom h1 .top .bg_white .dots{
    position: relative;
    z-index: 0;
    display: inline-block;
}
.kv .kv_bottom h1 .top .bg_white .dots::before{
    position: absolute;
    z-index: 0;
    inset: 5% 0 auto;
    margin: auto;
    content: '';
    width: .15em;
    height: .15em;
    background: currentColor;
    border-radius: 50%;
}

.kv .kv_bottom h1 .bottom{
    display: block;
    line-height: 1.2;
    font-size: 4rem;
    filter:
        drop-shadow(0 0 8px #fff)
        drop-shadow(0 0 2px #fff)
        drop-shadow(0 0 2px #fff)
        drop-shadow(0 0 1px #fff)
    ;
    transform: translateZ(0);
    margin: 0 0 50px;
}
.kv .kv_bottom h1 .bottom span{
    font-size: 8rem;
    color: var(--bgOrange01);
}

/* =========================================================
    ■ sec_problem
========================================================= */
/* first */
.sec_problem .first{
    position: relative;
    z-index: 0;
    aspect-ratio: 1052 / 1119;
    background:
        url(../img/page/lp_202605/sec_prob_bg.png) no-repeat center / cover,
        linear-gradient(to top, var(--bgGray), transparent)
    ;
    padding: 8vw 0 50px;
}
.sec_problem .first::before{
    position: absolute;
    z-index: 0;
    inset: auto 0 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bgGray), transparent);
}
.sec_problem .first h2{
    text-align: center;
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.2;
}
.sec_problem .first h2 span{font-size: 6rem;}
.sec_problem .first .balloon_base{
    position: relative;
    z-index: 0;
    aspect-ratio: 1050 / 750;
    margin: 30px auto 0;
}
.sec_problem .first .balloon_base p{
    position: absolute;
    z-index: 0;
    margin: auto;
    text-align: center;
    line-height: 1.4;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 900;
    background: url(../img/page/lp_202605/sec_prob_balloon.png) no-repeat center / contain;
    padding: 2em 1.1em;
}

.sec_problem .first .balloon_base p:nth-of-type(1){
    inset: 0 auto auto 0;
}
.sec_problem .first .balloon_base p:nth-of-type(2){
    inset: 5% auto auto 50%;
    background-image: url(../img/page/lp_202605/sec_prob_balloon02.png);
    padding: 2.5em 1.1em;
}
.sec_problem .first .balloon_base p:nth-of-type(3){
    inset: 50% auto auto 0;
}

/* second */
.sec_problem .second{
    position: relative;
    z-index: 1;
    background: var(--bgGray);
    color: #fff;
    padding: 120px 0 30px;
}
.sec_problem .second .inner > p{
    position: relative;
    z-index: 0;
    text-align: center;
    font-weight: 900;
    font-size: 2.25rem;
    padding-bottom: 1.2em;
    margin: 0 auto 20px;
}
.sec_problem .second .inner > p::before{
    position: absolute;
    z-index: 0;
    inset: auto 0 0;
    margin: auto;
    content: '';
    width: 1em;
    height: .85em;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sec_problem .second .second_tel{
    position: relative;
    z-index: 0;
}
.sec_problem .second .second_tel p{
    position: absolute;
    z-index: 1;
    inset: 0 0 auto auto;
    writing-mode: vertical-rl;
    font-size: min(4.75rem, 8vw);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
}


/* third */
.sec_problem .third{
    position: relative;
    z-index: 0;
    background: var(--bgGray);
    padding: 0 0 25px;
}
.sec_problem .third::before{
    position: absolute;
    z-index: -1;
    inset: auto 0 20%;
    margin: auto;
    content: '';
    width: 100%;
    height: auto;
    aspect-ratio: 1050 / 1000;
    background: url(../img/page/lp_202605/penalty_sec_bg.png) no-repeat center / contain;
    opacity: 0.7;
}
.sec_problem .third .alert{
    background:repeating-linear-gradient(-45deg, #FFE500, #FFE500 10px, #000 10px, #000 20px);
    padding: 30px;
    margin: 0 auto 60px;
}
.sec_problem .third .alert span{
    display: inline-block;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.6;
    padding: .75em 1.5em;
    background: #FFE500;
    width: 100%;
}
.sec_problem .third .alert + p{
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0 auto 4rem;
}
.sec_problem .third .alert + p .has_underline{
    position: relative;
    z-index: 0;
    padding-bottom: 0.3em;
}
.sec_problem .third .alert + p .has_underline::before{
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 6px;
    background: #FFE500;
}
.sec_problem .third .alert + p .txt_yellow{font-size: 3rem;}

/* penalt */
.sec_problem .third .penalty{
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0 auto 64px;
}
.sec_problem .third .penalty span{
    display: inline-block;
    font-size: 4.25rem;
    padding: .2em;
    background: url(../img/page/lp_202605/penalty_bg.jpg) no-repeat center / cover;
    line-height: 1.3;
}
.sec_problem .third .penalty span:nth-of-type(1){margin-top: 0.3em;}
.sec_problem .third .penalty span:not(:last-of-type){margin-bottom: 0.4em;}

.sec_problem .third .panalty_list{
    --gap: 2.6%;
    display: flex;
    justify-content: center;
    column-gap: var(--gap);
    margin: 0 auto 64px;
}
.sec_problem .third .panalty_list > li{
    text-align: center;
    flex: 1;
    background: url(../img/page/lp_202605/penalty_cont_bg.jpg) no-repeat center / cover;
    padding: 40px 20px;
}
.sec_problem .third .panalty_list > li .lead{
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 700;
}
.sec_problem .third .panalty_list > li .num{
    color: #D94040;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}
.sec_problem .third .panalty_list > li .num span{
    display: inline-block;
    font-size: 8rem;
    line-height: 1;
    transform: skew(-5deg);
}

.sec_problem .third .panalty_list + p{
    text-align: center;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.4;
}

/* =========================================================
    ■ sec_buyuden
========================================================= */
.sec_buyuden{
    position: relative;
    z-index: 0;
    padding: 160px 0 120px;
}
.sec_buyuden::before{
    position: absolute;
    z-index: 0;
    inset: 0 0 auto;
    margin: auto;
    content: '';
    width: 100%;
    height: 115px;
    background: linear-gradient(to bottom, var(--bgGray) 0%, transparent 100%);
}
.sec_buyuden p{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    color: #2D2D2D;
}
.sec_buyuden h2{
    color: #4B4B4B;
    font-size: 2.25rem;
    text-align: center;
    margin: 0.2em auto 0;
}
.sec_buyuden h2 span{
    font-family: var(--ff_notoSerif);
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.05em;
    transform: skew(-10deg);
    display: inline-block;
    margin: 0.2em auto;
}

/* =========================================================
    ■ sec_benefit
========================================================= */
.sec_benefit .mv{
    position: relative;
    z-index: 0;
}
.sec_benefit .mv::before{
    position: absolute;
    z-index: 1;
    inset: auto 0 0 auto;
    content: '';
    width: 35%;
    max-width: 410px;
    height: auto;
    aspect-ratio: 410 / 900;
    background: url(../img/page/lp_202605/sec_benefit_mv.png) no-repeat center / contain;
}

/* mv top ================= */
.sec_benefit .mv .top{
    position: relative;
    z-index: 0;
    padding: 50px 0;
    transform: skewY(-5deg);

}
.sec_benefit .mv .top::before{
    position: absolute;
    z-index: -1;
    inset: -100%;
    margin: auto;
    content: '';
    width: 100%;
    height: 100%;
    background:
        url(../img/page/lp_202605/sec_benefit_top_bg.png) no-repeat center top/ 100% 110%,
        var(--bgOrange01)
    ;
}

.sec_benefit .mv .top p{
    color: #fff;
    font-size: 4.25rem;
    width: min(100%, 720px);
    text-align: center;
}
.sec_benefit .mv .top p .fz_s{font-size: .7em;text-align: center;display: inline-block;margin: 0 auto;}
.sec_benefit .mv .top p .fude{
    --stroke-size: 4px;
    --stroke-color: #ffffff;
    position: relative;
    z-index: 0;
    font-size: 4.375rem;
    font-weight: 900;
    color: #DB5325;
    line-height: 1;
    text-shadow:
        calc(var(--stroke-size) * -1) 0 0 var(--stroke-color),
        var(--stroke-size) 0 0 var(--stroke-color),
        0 calc(var(--stroke-size) * -1) 0 var(--stroke-color),
        0 var(--stroke-size) 0 var(--stroke-color),
        calc(var(--stroke-size) * -1) calc(var(--stroke-size) * -1) 0 var(--stroke-color),
        var(--stroke-size) calc(var(--stroke-size) * -1) 0 var(--stroke-color),
        calc(var(--stroke-size) * -1) var(--stroke-size) 0 var(--stroke-color),
        var(--stroke-size) var(--stroke-size) 0 var(--stroke-color),
        0 4px 4px rgba(0,0,0,.25)
    ;
    padding: .5em .75em .5em 1em;
    margin-right: 0.2em;
    display: inline-block;
}
.sec_benefit .mv .top p .fude::before{
    position: absolute;
    z-index: -1;
    inset: 1em 0 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/page/lp_202605/sec_benefit_top_text_bg.png) no-repeat center / 100% 100%;
    transform: scale(1.05) skewY(5deg);
    transform-origin: center bottom;
}
.sec_benefit .mv .top p .fude .fz_l{font-size: 2em;}

.sec_benefit .mv .top p .box_white{
    display: inline-block;
    padding: 0 0.4em;
    background: #fff;
    font-weight: 900;
    color: var(--bgOrange01);
}
/* mv bottom ================= */
.sec_benefit .mv .bottom{
    position: relative;
    z-index: 1;
    padding: 20px 0 0;
}
.sec_benefit .mv .bottom .balloon{
    position: relative;
    z-index: 0;
    background: var(--textColor);
    color: #fff;
    width: fit-content;
    font-size: 2.25rem;
    padding: 0 0.5em;
    margin: 0 0 50px;
}
.sec_benefit .mv .bottom .balloon::before{
    position: absolute;
    z-index: 0;
    inset: calc(100% - 1px) 0 auto;
    margin: auto;
    content: '';
    width: 35px;
    height: 20px;
    background: var(--textColor);
    clip-path: polygon(0 0, 100% 90%, 85% 0);
}

.sec_benefit .mv .bottom .main_heading{
    font-size: 1.875rem;
    font-weight: 900;
    filter:
        drop-shadow(0 0 20px #fff)
        drop-shadow(0 0 10px #fff)
        drop-shadow(0 0 5px #fff)
    ;
    line-height: 1.3;
}
.sec_benefit .mv .bottom .main_heading span{
    display: inline-block;
    color: var(--bgOrange01);
    font-size: 5.625rem;
    letter-spacing: -0.02em;
    transform: skew(-5deg);
}

/* desc ================= */
.sec_benefit .desc{padding: 65px 0 80px;}
.sec_benefit .desc h3{
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 95px;
}
.sec_benefit .desc h3 span{font-size: 4.25rem;}
.box_orange{
    display: inline-block;
    color: #fff;
    background: var(--bgOrange01);
    line-height: 1.4;
    padding: 0 0.2em;
}

.sec_benefit .desc ol{
    --gap: 2.5%;
    counter-reset: ol_num 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px var(--gap);
}
.sec_benefit .desc ol li{
    position: relative;
    z-index: 0;
    counter-increment: ol_num 1;
    width: calc((100% - var(--gap)) / 2);
    border: 5px solid var(--bgOrange01);
    background: #fff;
    padding: 40px 1% 35px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}
.sec_benefit .desc ol li::before{
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-family: var(--ff_num);
    font-size: 2rem;
    font-weight: 700;
    content: counter(ol_num, decimal-leading-zero);
    width: 60px;
    height: 60px;
    background: var(--bgOrange01);
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    transform: translateY(-50%);
}

.sec_benefit .desc ol li .lead{
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.4;
    transform: skew(-5deg);
    margin: 0 auto .5em;
}
.sec_benefit .desc ol li .lead span{color: var(--bgOrange01);}

.sec_benefit .desc ol li .text{
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin: 0 0 1.2em;
    min-height: calc(5em * 1.6);
}

.sec_benefit .desc ol li .next{
    position: relative;
    z-index: 0;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.125em;
    font-weight: 900;
    padding: 0 0.5em .2em;
    margin: 0 auto .7em;
}
.sec_benefit .desc ol li .next::before{
    position: absolute;
    z-index: -1;
    inset: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 100%;
    background: #E6E6E6;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.sec_benefit .desc ol li .result{
    color: var(--bgOrange01);
    text-align: center;
    line-height: 1.6;
    font-size: 1.125rem;
    font-weight: 900;
    background: #FCF0E5;
    padding: .7em 2%;
}
.sec_benefit .desc ol li .result span{
    display: inline-block;
    transform: translateZ(0) skew(-5deg);
}

/* cta ========== */
.cta{margin: 0 auto 80px;}
.cta .main_heading{
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    transform: skew(-5deg);
    margin: 0 auto 3.3em;
}
.cta .main_heading span{font-size: 2em;}

/* =========================================================
    ■ sec_introduce
========================================================= */
.sec_introduce{
    padding: 80px 0 130px;
    background: url(../img/page/lp_202605/intro_bg.jpg) no-repeat center bottom / cover;
}
.sec_introduce h2{
    position: relative;
    z-index: 0;
    text-align: center;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 0 0 0.6em;
    margin: 0 auto 1.6em;
}
.sec_introduce h2::before{
    position: absolute;
    z-index: 0;
    inset: auto 0 0;
    margin: auto;
    content: '';
    width: 100px;
    height: 4px;
    background: #fff;
}
.sec_introduce .flex{
    --w: 41%;
    --gap: 1%;
    position: relative;
    z-index: 0;
    align-items: flex-start;
    column-gap: var(--gap);
    margin: 0 auto 60px;
}
.sec_introduce .flex::before{
    position: absolute;
    z-index: -1;
    inset: 430px -100% auto;
    margin: auto;
    content: '';
    width: 100vw;
    height: calc(100% - 430px);
    background: linear-gradient(to top, #fff, transparent);
}
.sec_introduce .flex > figure{
    width: var(--w);
}
.sec_introduce .flex > div{
    width: calc(100% - var(--gap) - var(--w));
}
.sec_introduce .flex > div .name{
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 1rem;
}
.sec_introduce .flex > div .name .role{
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0.4em;
    font-feature-settings: "halt";
}
.sec_introduce .flex > div .name .furigana{font-size: 1rem;}

.sec_introduce .flex > div .text{margin: 0 0 1.5rem;}

.ac_cont > dt{
    position: relative;
    z-index: 0;
    background: #4B4B4B;
    color: #fff;
    text-align: center;
    font-size: 1.125rem;
    padding: .2em 5em .2em 2em;
    cursor: pointer;
}
.ac_cont > dt::before,
.ac_cont > dt::after{
    position: absolute;
    z-index: 0;
    inset: 0 0 0 10em;
    margin: auto;
    content: '';
    width: 14px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.ac_cont > dt::after{transform: rotate(-90deg);}
.ac_cont.ac_open > dt::after{transform: rotate(0deg);}

.ac_cont > dd{
    display: none;
    padding: 24px 2%;
    background: #fff;
    border: 2px solid #4B4B4B;
}
.ac_cont > dd dl{
    --w: 85px;
    --gap: 1.5%;
    position: relative;
    z-index: 0;
    display: flex;
    column-gap: var(--gap);
    justify-content: flex-start;
    align-items: flex-start;
}
.ac_cont > dd dl::before{
    position: absolute;
    z-index: 0;
    inset: 15px auto auto 0;
    content: '';
    background: var(--textColor);
    width: 2px;
    height: calc(100% + 20px + .3em);
    transform: translateX(4px);
}
.ac_cont > dd dl:last-of-type::before{height: 75%;}

.ac_cont > dd dl:not(:last-of-type){margin-bottom: 24px;}
.ac_cont > dd dl dt{
    position: relative;
    z-index: 0;
    font-weight: 900;
    width: var(--w);
    line-height: 1.2;
    padding: .3em 0 0 20px;
}
.ac_cont > dd dl dt span{
    display: inline-block;
    font-size: 1.5em;
    transform: translateY(-0.1em);
}
.ac_cont > dd dl dt::before{
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    margin: auto;
    content: '';
    background: var(--textColor);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.ac_cont > dd dl dd{
    width: calc(100% - var(--w) - var(--gap));
    font-weight: 900;
    line-height: 1.2;
    min-height: calc(2em * 1.2);
    display: flex;
    align-items: center;
}

/* =========================================================
    ■ sec_about
========================================================= */
.sec_about{text-align: center;}

.sec_about .bg_gray{
    position: relative;
    z-index: 0;
    padding: 80px 0 64px;
    border: 2px solid #3A3A3A;
    background: 
        rgba(255, 255, 255, .5)
        url(../img/page/lp_202605/bg_gray_bg.jpg) no-repeat center / cover
    ;
}
.sec_about .bg_gray h2{
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    margin: auto;
    transform: translateY(-50%);
    width: fit-content;
}
.sec_about .bg_gray h2 span{
    --shape: 40px;
    position: relative;
    z-index: 0;
    display: block;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0.2em 1.5em;
    background: #4B4B4B;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--shape)) 100%, var(--shape) 100%);
}
.sec_about .bg_gray h2::before{
    --shape: 20px;
    position: absolute;
    z-index: -1;
    inset: 0 -100% auto;
    margin: auto;
    content: '';
    width: calc(100% + 40px);
    height: calc(50% - 1px);
    background: #3A3A3A;
    clip-path: polygon(var(--shape) 0, calc(100% - var(--shape)) 0, 100% 100%, 0 100%);
}
.sec_about .bg_gray .btn_cont{margin: 64px auto 0;}
.sec_about .bg_gray .btn_cont .copy,
.sec_about .bg_gray .btn_cont .btn a{font-size: 1.125rem;}
.sec_about .bg_gray .btn_cont .btn a{
    min-height: 85px;
    min-width: 440px;
}

/* フローティングCTA */
.floating_cta{
    position: fixed;
    z-index: 11;
    inset: auto 0 0;
    background: #fff;
    padding: 45px 2% 25px;
    transition: transform .8s;
}
.floating_cta,
.loaded .floating_cta.is_hidden,
.loaded .floating_cta.is_closed{transform: translateY(calc(100% + 64px));}
.loaded .floating_cta{
    transform: translateY(0);
}
.floating_cta .close{
    position: absolute;
    z-index: 1;
    inset: 0 2% auto auto;
    font-size: 0;
    width: 65px;
    height: 65px;
    /* background: rgba(0, 0, 0, .2); */
    background: #B0B0B0;
    cursor: pointer;
    transform: translateY(-65%);
    transition: .3s;
}
@media screen and (hover:hover) {
    .floating_cta .close:hover{opacity: 0.6;}
}
.floating_cta .close::before,
.floating_cta .close::after{
    position: absolute;
    z-index: 0;
    inset: 0;
    margin: auto;
    content: '';
    width: 62px;
    height: 2px;
    background: #fff;
}
.floating_cta .close::before{transform: rotate(45deg);}
.floating_cta .close::after{transform: rotate(-45deg);}

/* =========================================================
    下層共通
========================================================= */
main:not(.page_lp){padding: 160px 0;}
/* kv_sub */
.kv_sub{
    text-align: center;
}
.kv_sub .ttl_cont .ttl_en{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 auto 0.2em;
}
.kv_sub .ttl_cont .ttl_ja{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-family: var(--ff_num);
}

/* contents_wrapper */
.page .contents_wrapper{padding: 100px 0 0;}

/* =========================================================
    お問い合わせ
========================================================= */
/* フォーム共通 */
.page_contact form{
    font-family: var(--ff_num);
    line-height: 1.5;
}
.page_contact form .smf-item__label__text,
.page_contact form .smf-text-control,
.page_contact form .smf-textarea-control{
    font-size: 24px;
    font-weight: 600;
}

/* 幅 */
.page_contact form{
    --w: 290px;
}
.page_contact form .smf-form .smf-item__col--label,
.page_contact form .smf-form .smf-item__col--controls{
    flex: initial;
    max-width: 100%;
}
.page_contact form .smf-form .smf-item__col--label{width: var(--w);padding-top: 0.4em;}
.page_contact form .smf-form .smf-item__col--controls{width: calc(100% - var(--w));}

/* input */
.page_contact form .smf-form .smf-text-control__control{width: 100%;}
.page_contact form .smf-text-control input,
.page_contact form .smf-textarea-control textarea{
    border: none;
    background: #eeeeee;
    border-radius: 0;
}
.page_contact form .smf-text-control input::placeholder,
.page_contact form .smf-textarea-control textarea::placeholder{color: #929292;}

/* 必須 */
.page_contact form .smf-form .smf-item:has([data-validations~="required"]) .smf-item__label{
    position: relative;
    z-index: 0;
}
.page_contact form .smf-form .smf-item:has([data-validations~="required"]) .smf-item__label::before{
    position: absolute;
    z-index: 0;
    inset: 0.4em 0 auto auto;
    content: '必須';
    background: #FF9500;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: .2em .5em;
}
/* btn */
.page_contact form .smf-action .smf-button-control__control {
    background: #FF9500;
    font-size: 32px;
    padding: 0.4em 2.1em;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 0;
}

/* editor_contents */
/* 記事全体の基本設定 */
.editor_contents { line-height: 1.75; }

/* 1. 見出し系（上下マージン、フォントサイズ） */
.editor_contents :is(h1,h2,h3,h4,h5,h6) {
  line-height: 1.4;
  margin: 2.5rem 0 1.25rem;
}
.editor_contents > *:first-child { margin-top: 0; }

.editor_contents h1 { font-size: 2.0rem; }
.editor_contents h2 { font-size: 1.6rem; border-bottom: 2px solid #eee; padding-bottom: 0.5rem; }
.editor_contents h3 { font-size: 1.3rem; }
.editor_contents :is(h4,h5,h6) { font-size: 1rem; }

/* 2. リスト系（マージン、スタイル） */
.editor_contents :is(ul,ol) { margin: 0 0 1.5rem; padding-left: 1.5rem; }
.editor_contents ul { list-style: disc; }
.editor_contents ol { list-style: decimal; }
.editor_contents li { margin-bottom: 0.5rem; }
.editor_contents :is(ul,ol) :is(ul,ol) { margin: 0.5rem 0 0; }

/* 3. 画像系（デフォルトの挙動を崩さない） */
.editor_contents img { max-width: 100%; height: auto; vertical-align: middle; }
.editor_contents .wp-block-image { margin: 0 0 2rem; }
.editor_contents .wp-element-caption { font-size: 0.85rem; margin-top: 0.5rem; text-align: center; }

/* 4. 段落（最低限の余白） */
.editor_contents p { margin: 0 0 1.5rem; }
.editor_contents p a {text-decoration: underline;}