@charset "UTF-8";

/* ---- 基本定義 -------------------------------- */
:root {
    /* ---- 変数定義 ---------------- */
    /* Fastaskカラー */
    /* --color-*-decは rgb(var(--color-*-dec) / 0.5) のように適用 */
    --color-fastask-darkblue: #0b396c;
    --color-fastask-darkblue-dec: 11 57 108;
    --color-fastask-royalblue: #2f4ba8;
    --color-fastask-royalblue-dec: 47 75 168;
    --color-fastask-darkviolet: #012b5f;
    --color-fastask-darkviolet-dec: 1 43 95;
    --color-fastask-orange: #f39e2f;
    --color-fastask-orange-dec: 243 158 47;
    --color-fastask-lightcyan: #7ed2ff;
    --color-fastask-lightcyan-dec: 126 210 255;
    --color-fastask-cobaltblue: #3666b5;
    --color-fastask-cobaltblue-dec: 54 102 181;
    /* Fastask UIカラー */
    --color-fastask-blue: #5983ee;
    --color-fastask-blue-dec: 89 131 238;
    --color-fastask-navyblack: #092038;
    --color-fastask-navyblack-dec: 9 32 56;
    --color-fastask-cyan: #4594fe;
    --color-fastask-cyan-dec: 69 148 254;
    --color-fastask-violet: #103372;
    --color-fastask-violet-dec: 16 51 114;
    --color-fastask-forestgreen: #106a72;
    --color-fastask-forestgreen-dec: 16 106 114;
    /* 基本カラー */
    --color-body-text: black;
    --color-lightgray: #dddddd;
    --color-lightgray-dec: 221 221 221;
    --color-lightskyblue: #bfe8ff;
    --color-lightskyblue-dec: 191 232 255;
    --color-grayishblue: #8095af;
    --color-grayishblue-dec: 128 149 175;
    --color-grayishwhite: #f7f8f9;
    --color-grayishwhite-dec: 247 248 249;
    --color-skyblue: #66b9dd;
    --color-skyblue-dec: 102 185 221;
    --color-marineblue: #3F7EAF;
    --color-marineblue-dec: 63 126 175;
    /* サイズ */
    --header-height: clamp(48px, 10.5vw, 96px);
    --width-wide: min(90%, 1400px);
    --width-middle: min(90%, 1300px);
    --width-nallow: min(90%, 1200px);
    --margin-block-section: clamp(60px, 20vw, 120px);
    /* トランジション・アニメーション */
    --anim-quick: 0.2s ease 0s;
    --amin-middle: 0.3s ease 0s;
    --anim-slow: 0.5s ease 0s;

    /* ---- ルート基本設定 ---------------- */
    font-size: clamp(14px, 3.5vw, 16px);
    font-feature-settings: 'palt';
    letter-spacing: 0.02rem;
    line-height: 1.8;
    color: var(--color-body-text);
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-optical-sizing: auto;
    text-align: justify;

    @media screen and (max-width: 500px) {
        font-size: clamp(14px, 3.85vw, 17px);
    }
}

/* ---- 要素基本設定 ---------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.6;
}

:is(h1, h2, h3, h4, h5, h6):has(>br) {
    line-height: 1.4;
}

a {
    text-decoration: none;
}


/* ---- ナビ（.header） -------------------------------- */
/* ★★ /lib/include/header.htmlのインラインCSSを更新予定（/lib/css/header.cssとして書き出したい） ★★ */
/* ★★ とりあえず。後で統合 ★★ */
.header.pc,
.header.sp {
    top: 0;
    left: 0;
}

.header {
    font-size: 100%;
    color: #303030;
    /*
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", -apple-system, "Helvetica Neue", HelveticaNeue, "游ゴシック", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
    */
    letter-spacing: 0.1rem;
}

.header .header_bg {
    display: none;
    position: absolute;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(0 0 0 / 0);
    transition: display 0.3s ease 0s allow-discrete,
        background-color 0.3s ease 0s;
}

.header .header_bg.active {
    display: unset;
    background-color: rgb(0 0 0 / 0.4);

    @starting-style {
        background-color: rgb(0 0 0 / 0);
    }
}

a {
    text-decoration: none;
}

/*
a.header_link {
    height: 0;
    line-height: 0;
}
*/

.header.sp {
    display: none;
}

.header.pc {
    display: flex;
    position: fixed;
    z-index: 9999;
    height: var(--header-height);
    /* height: 58px; */
    width: 100%;
    padding-inline-end: clamp(12px, 4vw, 24px);
    /*color: rgb(93, 130, 165);*/
    /*
    background: linear-gradient(180deg, rgb(var(--color-fastask-navyblack-dec) / 0.5), rgb(var(--color-fastask-blue-dec) / 0.2)),
        linear-gradient(120deg, rgb(var(--color-fastask-navyblack-dec) / 0.8), rgb(var(--color-fastask-darkblue-dec) / 0.4)),
        rgb(0 0 0 / 0.3);
        */
    /* background-color: rgb(93 130 165 / 0.8); */
    /* background-color: #FFFFFF; */
    margin: 0px;
    align-items: center;
    gap: clamp(12px, 4vw, 24px);
    backdrop-filter: blur(8px);

    &::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: linear-gradient(180deg, rgb(var(--color-fastask-navyblack-dec) / 0.5), rgb(var(--color-fastask-blue-dec) / 0.2)),
            linear-gradient(120deg, rgb(var(--color-fastask-navyblack-dec) / 0.8), rgb(var(--color-fastask-darkblue-dec) / 0.4)),
            rgb(0 0 0 / 0.3);
    }

    &>*:first-child {
        margin-inline-start: clamp(12px, 4vw, 24px);
    }
}

.header.pc .logo {
    width: 138px;
    height: 100%;
    /* height: 40px; */
    /* margin: 10px 32px 10px 18px; */
    background-image: url(../images/fastask_logo_white.svg);
    /* background-image: url(../../../images/fastask_logo.png); */
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.header.pc .space {
    flex: 1;
}

.header.pc .menu {
    flex-grow: 1;
    /* flex: 1; */
    display: flex;
    gap: clamp(15px, 5vw, 30px);
}

.header.pc .menu .header_link {
    /*
    margin-right: 36px;
    line-height: 60px;
    */
    color: white;
    /* color: #303030; */
    font-size: 16px;
    font-weight: 600;
}

.header.pc .menu .header_link:hover {
    color: var(--color-fastask-cyan);
    /* color: #497BE9; */
    transition: .2s;
}

.header.pc .side {
    display: flex;
    align-items: center;
    gap: clamp(9px, 3vw, 18px);
    /* padding-top: 16px; */
}

.header.pc .side .header_link {
    padding: clamp(4.5px, 0.75vw, 9px) clamp(9px, 1.5vw, 18px);
    /*
    margin-top: 10px;
    margin-right: 17px;
    padding: 8px 17px;
    */
    background-color: var(--color-fastask-orange);
    /* background-color: #497BE9; */
    color: #FFFFFF;
    font-size: 0.875rem;
    /* font-size: 14px; */
    font-weight: 600;
    text-align: center;
    border-radius: clamp(3px, 1vw, 7px);
    /* border-radius: 8px; */
    /* border-radius: 20px; */
}

.header.pc .side .header_link:hover {
    opacity: 0.6;
    transition: .2s;
}

.header.pc .login_button {
    padding: clamp(4.5px, 0.75vw, 9px) clamp(9px, 1.5vw, 18px);
    background-color: var(--color-fastask-darkblue);
    border: 2px solid var(--color-lightskyblue);
    border-radius: clamp(3px, 1vw, 7px);
    font-size: 0.875rem;
    /* font-size: 14px; */
    font-weight: bold;
    color: white;

    /*
    display: inline-block;
    width: 100px;
    height: 32px;
    margin-top: 10px;
    margin-right: 14px;
    background-color: #FFFFFF;
    border: solid 2px #3165DA;
    color: #3165DA;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    border-radius: 6px;
    */
}

.header.pc .login_button:hover {
    opacity: 0.6;
    background-color: var(--color-fastask-blue);
    transition: .2s;
}

.header.pc .humburgermenu {
    display: none;
}

.header.pc .menu_humburger {
    display: none;
}

@media screen and (max-width: 1260px) {
    .header.pc .menu {
        display: none;
    }

    .header.pc .space {
        flex: 1;
    }

    .header.pc .side {
        justify-content: flex-end;
    }

    .header.pc .login_button {
        justify-content: flex-end;
    }

    .header.pc .humburgermenu {
        justify-content: flex-end;
        align-self: stretch;
        display: block;
        /* width: 64px; */
    }

    .header.pc .humburgermenu .menu_button {
        background: none;
        border: none;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 24px;
        height: 100%;
        background: url(../images/menu_open_white.svg) center / contain no-repeat;
        /*
        height: 19px;
        background-image: url(../../../images/menu.png);
        background-repeat: no-repeat;
        position: absolute;
        bottom: 20px;
        right: 20px;
        */
    }

    .header.pc .humburgermenu .menu_button.active {
        background-image: url(../images/menu_close_white.svg);
    }

    .header.pc .menu_humburger {
        align-self: flex-start;
        position: fixed;
        display: block;
        z-index: 9998;
        width: 100%;
        /* margin-top: 44px; */
        margin-top: var(--header-height);
        background-color: #FFFFFF;
        opacity: 0;
        transform-origin: top center;
        transform: scaleY(0);
        /* transform: translateX(100%); */
        transition: opacity 0.3s ease 0s,
            transform 0.3s ease 0s;
    }

    .header.pc .menu_humburger a.humbueger_link {
        display: block;
        color: #09215D;
        line-height: 60px;
        height: 60px;
        padding: 0px 20px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #ddd;
    }

    .header.pc .menu_humburger .line {
        height: 4px;
        width: 100%;
        background-color: #ddd;
    }

    .header.pc .menu_humburger.active {
        opacity: 1;
        transform: scaleY(1);
        /* transform: translateX(0); */
    }
}

@media screen and (max-width: 900px) {
    .header.pc {
        display: none;
    }

    .header.sp {
        display: block;
        position: relative;
        z-index: 9999;
        /* backdrop-filter: blur(8px); */
    }

    .header.sp .header_area {
        display: flex;
        position: fixed;
        z-index: 9999;
        justify-content: flex-start;
        height: var(--header-height);
        /* height: 44px; */
        width: 100%;
        top: 0;
        margin: 0;
        padding-inline-end: clamp(6px, 3vw, 24px);
        /* background-color: #FFF; */
        align-items: center;
        gap: clamp(6px, 3vw, 24px);
        backdrop-filter: blur(8px);

        &::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgb(var(--color-fastask-navyblack-dec) / 0.5), rgb(var(--color-fastask-blue-dec) / 0.2)),
                linear-gradient(120deg, rgb(var(--color-fastask-navyblack-dec) / 0.8), rgb(var(--color-fastask-darkblue-dec) / 0.4)),
                rgb(0 0 0 / 0.3);
        }

        &>*:first-child {
            margin-inline-start: clamp(6px, 3vw, 24px);
            ;
        }
    }

    .header.sp .header_area .login {
        flex-shrink: 1;
        /* flex: 1; */
    }

    .header.sp .header_area .login .login_button {
        padding: clamp(4.5px, 0.75vw, 9px) clamp(9px, 1.5vw, 18px);
        background-color: var(--color-fastask-darkblue);
        border: 1.5px solid var(--color-lightskyblue);
        border-radius: clamp(3px, 1vw, 7px);
        font-size: 0.75rem;
        font-weight: bold;
        color: white;
        white-space: nowrap;
        /*
        display: inline-block;
        width: 82px;
        height: 32px;
        background-color: #497BE9;
        color: #FFFFFF;
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        line-height: 32px;
        border-radius: 4px;
        margin-top: 6px;
        margin-left: 12px;
        */
    }

    .header.sp .header_area .space {
        flex: 1;
    }

    .header.sp .header_area .logo {
        /* flex: 1; */
        flex-basis: min(25vw, 160px);
        height: 100%;
        /* width: 106px; */
        /* margin: 0 auto; */
        background-image: url(../images/fastask_logo_white.svg);
        /* background-image: url(../../../images/fastask_logo.png); */
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .header.sp .header_area .side {
        display: flex;
        align-items: center;
        gap: clamp(9px, 3vw, 18px);
    }

    .header.sp .header_area .side .header_link {
        padding: clamp(4.5px, 0.75vw, 9px) clamp(9px, 1.5vw, 18px);
        background-color: var(--color-fastask-orange);
        color: #FFFFFF;
        font-size: 0.75rem;
        font-weight: 600;
        text-align: center;
        border-radius: clamp(3px, 1vw, 7px);
    }

    .header.sp .header_area .side .header_link:hover {
        opacity: 0.6;
        transition: .2s;
    }

    .header.sp .header_area .menu {
        flex-shrink: 1;
        align-self: stretch;
        /* flex: 1; */
        position: relative;
    }

    .header.sp .header_area .menu_button {
        background: none;
        border: none;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 24px;
        height: 100%;
        background: url(../images/menu_open_white.svg) center / contain no-repeat;
        /*
        width: 24px;
        height: 19px;
        background-image: url(../../../images/menu.png);
        background-repeat: no-repeat;
        position: absolute;
        bottom: 12px;
        right: 12px;
        */
    }

    .header.sp .header_area .menu_button.active {
        background-image: url(../images/menu_close_white.svg);
    }

    .header.sp .menu_humburger {
        position: fixed;
        display: block;
        z-index: 9998;
        width: 100%;
        margin-top: 44px;
        background-color: #FFFFFF;
        opacity: 0;
        transform-origin: top center;
        transform: scaleY(0);
        /* transform: translateX(100%); */
        transition: opacity 0.3s ease 0s,
            transform 0.3s ease 0s;
    }

    .header.sp .menu_humburger a.humbueger_link {
        display: block;
        color: #303030;
        line-height: 60px;
        height: 60px;
        padding: 0px 20px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #ddd;
    }

    .header.sp .menu_humburger .line {
        height: 4px;
        width: 100%;
        background-color: #ddd;
    }

    .header.sp .menu_humburger.active {
        opacity: 1;
        transform: scaleY(1);
        /* transform: translateX(0); */
    }
}


/* ---- Faq -------------------------------- */
/*========================= faq ========================= */
/* ★★ 使う場合はデザインを調整 ★★ */
/* ★★ ↓ 未作業ここから ↓ ★★ */
#faq {
    background-color: #FFF;
    padding-bottom: 64px;
}

#faq h2 {
    color: #0041AD;
    font-size: 28px;
    text-align: center;
    padding: 64px 0 40px;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
    #faq h2 {
        font-size: 22px;
        line-height: 32px;
        padding: 40px 0 24px;
    }
}

#faq .faq_wrapper {
    width: 800px;
    margin: 0 auto;
    padding-bottom: 56px;
}

@media screen and (max-width: 840px) {
    #faq .faq_wrapper {
        width: 90%;
    }
}

#faq .faq_wrapper .faq_box .question,
#faq .faq_wrapper .faq_box .answer {
    position: relative;
    background: #fff;
    margin: 20px 0 0 0;
    border-radius: 2px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #00235C;
    font-weight: 500;
}

#faq .faq_wrapper .faq_box .question:after,
#faq .faq_wrapper .faq_box .answer:after {
    position: absolute;
    top: 17px;
    left: 12px;
    display: block;
    font-family: 'roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    width: 30px;
    text-align: center;
}

@media screen and (max-width: 480px) {

    #faq .faq_wrapper .faq_box .question:after,
    #faq .faq_wrapper .faq_box .answer:after {
        top: 15px;
    }
}

#faq .faq_wrapper .faq_box .question {
    padding: 0px 56px;
    min-height: 60px;
}

@media screen and (max-width: 480px) {
    #faq .faq_wrapper .faq_box .question {
        min-height: 48px;
    }
}

#faq .faq_wrapper .faq_box .question:after {
    content: "Q";
    color: #4285F4;
}

#faq .faq_wrapper .faq_box .question:hover {
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    #faq .faq_wrapper .faq_box .question {
        padding: 10px 40px 10px 48px;
        margin-top: 20px;
    }
}

#faq .faq_wrapper .faq_box .answer {
    padding: 20px 56px;
    margin: 10px auto 30px;
}

@media screen and (max-width: 480px) {
    #faq .faq_wrapper .faq_box .answer {
        padding: 10px 40px 10px 48px;
    }
}

#faq .faq_wrapper .faq_box .answer:after {
    content: "A";
    color: #FE277D;
}

@media screen and (max-width: 840px) {
    #faq .faq_wrapper .faq_box .answer {
        margin: 10px auto 32px;
    }
}

/* ★★ ↑ 未作業ここまで ↑ ★★ */



/* ---- フッタ -------------------------------- */
/* ★★ /lib/css/page_footer.cssを更新予定 ★★ */
/* ★★ ↓ 未作業ここから ↓ ★★ */
html body section.page_footer {
    background: linear-gradient(180deg, rgb(137, 203, 241) 0%, rgb(121, 173, 246) 100%);
}

html body section.page_footer h1.ttl {
    padding-top: 2em;
    text-align: center;
    color: #fff;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-size: 1.8em;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    html body section.page_footer h1.ttl {
        font-size: 3vw;
    }
}

@media screen and (max-width: 480px) {
    html body section.page_footer h1.ttl {
        font-size: 1em;
    }
}

html body section.page_footer .inner {
    display: flex;
    margin: auto;
    padding: 0 0 4em;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

html body section.page_footer .inner .box {
    display: flex;
    margin-top: 2em;
    padding: 2em 0;
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 3px #334FA0;
    background-color: #fff;
}

html body section.page_footer .inner .box figure {
    margin: 0;
    padding: 0;
}

html body section.page_footer .inner .box figure img {
    height: 120px;
}

html body section.page_footer .inner .box p.txt {
    margin-top: 2em;
    color: #5c5c5c;
    font-size: 1em;
}

html body section.page_footer .inner .box a {
    display: block;
    position: relative;
    margin: 0.5em auto 0;
    height: 48px;
    width: 280px;
    border-radius: 5px;
    background-color: #6186F7;
    box-shadow: 0 0 7px #334FA0;
    text-align: center;
    line-height: 48px;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.2em;
    color: #FFFFFF;
    transition: all ease 0.3s;
}

html body section.page_footer .inner .box a:hover {
    opacity: 0.7;
}

html body section.page_footer .inner .box a span {
    color: #fff;
    font-size: 1em;
}

html body section.page_footer .inner .box a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 25px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

footer {
    font-size: 100%;
    color: #303030;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", -apple-system, "Helvetica Neue", HelveticaNeue, "游ゴシック", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
    letter-spacing: 0.1rem;
    display: block;
    /* height: 200px; */
    font-size: 12px;
    color: #7E7E7E;
    text-align: center;
    background-color: #FFF;
    padding-top: 40px;
}

footer .link {
    display: flex;
    justify-content: center;
}

footer .link a {
    color: #7E7E7E;
    text-decoration: none;
}

footer .link a:hover {
    opacity: 0.6;
    transition: 0.2s;
}

footer .link a+a {
    margin-left: 15px;
}

footer .copyright {
    font-family: Helvetica;
    margin-top: 10px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    footer {
        width: 100%;
        padding: 24px 0 0;
        height: initial;
    }

    footer .link {
        display: block;
        width: 90%;
        margin-inline: auto;
    }

    footer .link a {
        display: block;
        margin: 0 !important;
        height: 32px;
        line-height: 32px;
        font-weight: 600;
    }

    footer .link a:first-of-type {
        height: auto;
    }

    footer .link a.pc {
        display: none;
    }

    footer .copyright {
        height: 135px;
        margin: 0;
        padding-top: 12px;
    }
}

/* ★★ ↑ 未作業ここまで ↑ ★★ */

/* ---- 中間CTA -------------------------------- */
.cta_area {
    margin-block: clamp(37.5px, 12.5vw, 75px);
    padding: clamp(15px, 5vw, 30px);
    background-color: var(--color-fastask-violet);
}

.cta_wrapper {
    width: min(90%, 750px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 5vw, 30px);
    align-items: center;
}

.cta_shoulder {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    color: white;
}

.cta_btn {
    display: block;
    margin-inline: auto;
    padding-block: clamp(3px, 1vw, 6px);
    padding-inline: clamp(15px, 5vw, 30px);
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(var(--color-fastask-cyan-dec) / 0);
    font-size: 1.3rem;
    font-weight: 550;
    color: var(--color-fastask-violet);
    text-align: center;
    line-height: 1.3;
    transition: background-color var(--anim-quick),
        box-shadow var(--anim-quick),
        color var(--anim-quick);

    &:hover {
        background-color: var(--color-fastask-cyan);
        box-shadow: 0 0 10px rgb(var(--color-fastask-cyan-dec) / 0.5);
        color: white;
    }
}

.cta_shoulder+.cta_btn {
    margin-block-start: clamp(12px, 4vw, 24px);
}

.cta_visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .cta_wrapper {
        grid-template-columns: 1fr;
    }
}


/* ---- 画面固定CTA -------------------------------- */
/* ★★ ↓ 未作業ここから ↓ ★★ */
/* ---- PC ---------------- */
section#contact.pc {
    display: none;
}

@media screen and (max-width: 840px) {
    section#contact.pc {
        display: none !important;
    }
}

section#contact.pc .contact_wrapper {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    column-gap: 20px;
    width: 100%;
    height: 110px;
    position: fixed;
    bottom: 0;
    z-index: 100000;
    background-color: rgb(255, 104, 43, 0.85);
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateY(0);
    }
}

section#contact.pc .contact_wrapper .btn_wrapper p {
    position: relative;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
}

section#contact.pc .contact_wrapper .btn_wrapper p:before,
section#contact.pc .contact_wrapper .btn_wrapper p:after {
    position: relative;
    display: inline-block;
    content: "";
    background: #FFF;
    width: 2px;
    height: 1.5em;
    margin: 0 1em;
    margin-top: -.2em;
    vertical-align: middle;
}

section#contact.pc .contact_wrapper .btn_wrapper p:before {
    transform: rotate(-35deg);
}

section#contact.pc .contact_wrapper .btn_wrapper p:after {
    transform: rotate(35deg);
}

section#contact.pc .contact_wrapper .btn_wrapper a.inquiry {
    display: block;
    width: 250px;
    height: 48px;
    font-size: 18px;
    font-weight: 600;
    color: #0041AD;
    background-color: #FFF;
    text-align: center;
    line-height: 46px;
    border-radius: 36px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.3);
    margin-top: 8px;
    transition: .4s;
}

section#contact.pc .contact_wrapper .btn_wrapper a.download {
    display: block;
    width: 250px;
    height: 42px;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    background-color: #2285FC;
    border: solid #FFF 3px;
    text-align: center;
    line-height: 42px;
    border-radius: 36px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.3);
    margin-top: 8px;
    transition: .4s;
}

section#contact.pc .contact_wrapper .btn_wrapper .inquiry:hover {
    transform: scale(1.1);
}

section#contact.pc .contact_wrapper .btn_wrapper .download:hover {
    transform: scale(1.1);
}

/* ---- SP ---------------- */
@media screen and (max-width: 840px) {
    section#contact.sp {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        height: 54px;
        position: fixed;
        bottom: 0;
        z-index: 100000;
    }

    section#contact.sp .inquiry {
        font-size: 14px;
        color: #09205D;
        font-weight: 600;
        background-color: #FFFFFF;
        width: 50vw !important;
        text-align: center;
        padding-top: 17px;
    }

    section#contact.sp .download {
        font-size: 14px;
        color: #FFFFFF;
        font-weight: 600;
        background-color: #F2287D;
        width: 50vw !important;
        text-align: center;
        padding-top: 17px;
    }
}

/* ★★ ↑ 未作業ここまで ↑ ★★ */


/* ---- 詳細セクション（.section） -------------------------------- */
.section {
    margin-block: var(--margin-block-section);
}

:where(.section) .section_title {
    width: fit-content;
    margin-inline: auto;
    font-size: clamp(1.7rem, 5.5vw, 2rem);
    font-weight: 550;
    text-align: center;
    position: relative;

    &:where(:first-child) {
        margin-block-end: clamp(18px, 6vw, 36px);
    }

    &::before,
    &::after {
        content: "";
        display: block;
        position: absolute;
        width: clamp(36px, 12vw, 72px);
        height: 5%;
    }

    &::before {
        top: 50%;
        left: 0;
        background: linear-gradient(270deg, rgb(var(--color-fastask-lightcyan-dec) / 0.5), rgb(var(--color-fastask-darkviolet-dec) / 0.5)) center / cover no-repeat;
        /* background: linear-gradient(270deg, var(--color-lightskyblue), var(--color-grayishblue)) center / cover no-repeat; */
        transform: translate(-130%, 0);
    }

    &::after {
        top: 50%;
        right: 0;
        background: linear-gradient(90deg, rgb(var(--color-fastask-lightcyan-dec) / 0.5), rgb(var(--color-fastask-darkviolet-dec) / 0.5)) center / cover no-repeat;
        /* background: linear-gradient(90deg, var(--color-lightskyblue), var(--color-grayishblue)) center / cover no-repeat; */
        transform: translate(130%, 0);
    }
}

:where(.section) .section_item_title {
    font-size: clamp(1.35rem, 3vw, 1.5rem);
    font-weight: 500;
}

:where(.section) .section_lead {
    width: var(--width-nallow);
    margin-inline: auto;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    word-break: break-all;
}

@media screen and (max-width: 500px) {
    .section {
        overflow-x: hidden;
    }
}


/* ---- ページ個別スタイル -------------------------------- */


/* ---- 中間CTAスタイリング ---------------- */
.cta_wrapper {
    width: min(90%, 650px);
    grid-template-columns: 1.4fr minmax(0, 1fr);
}

.cta_btn {
    max-width: 200px;
}

.cta_visual img {
    max-height: 180px;
}

@media screen and (max-width: 768px) {
    .cta_wrapper {
        grid-template-columns: 1fr;
    }

    .cta_visual img {
        display: block;
        width: 70%;
        margin-inline: auto;
    }
}


/* ---- キービジュアル（.keyvisual） ---------------- */
.keyvisual {
    padding-block-start: var(--header-height);
    position: relative;

    &::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 120%;
        top: 0;
        left: 0;
        z-index: -1;
        background: linear-gradient(90deg, var(--color-fastask-darkblue), var(--color-skyblue));
        mask: linear-gradient(180deg, white, white 70%, black) luminance center / cover no-repeat;
    }
}

:where(.keyvisual) .kv_container {
    container: kv_container / inline-size;
    --margin-block-kv-container: clamp(30px, 10vw, 60px);
    --row-gap-kv-container: clamp(15px, 5vw, 30px);
    margin-block: var(--margin-block-kv-container);
    margin-inline: auto;
    width: var(--width-wide);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    column-gap: clamp(21px, 7vw, 100px);
    row-gap: var(--row-gap-kv-container);
}

:where(.keyvisual) .kv_title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-inline: -20%;
}

:where(.keyvisual) .kv_title h1 {
    font-size: clamp(1.4rem, 3.1vw, 2.4rem);
    /* font-size: clamp(1.2rem, 3vw, 2.4rem); */
    font-weight: 650;
    color: white;
    text-align: center;
    /* white-space: nowrap; */
}

:where(.keyvisual) .kv_title h1 b {
    font-size: 1.2em;
    font-weight: bold;
}

:where(.keyvisual) .kv_title h1 strong {
    font-size: 1.35em;
    font-weight: bold;
}

:where(.keyvisual) .kv_title p {
    margin-block-start: clamp(9px, 3vw, 18px);
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    /* font-size: clamp(0.9rem, 1.5vw, 1.2rem); */
    font-weight: 600;
    color: white;
    text-align: center;
}

:where(.keyvisual) .kv_ui {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    z-index: 99;
    filter: drop-shadow(0 5px 25px rgb(0 0 0 / 0.3));
}

:where(.keyvisual) .kv_arrow {
    position: absolute;
    width: clamp(95px, 33vw, 190px);
    height: clamp(44px, 14vw, 88px);
    top: 50%;
    left: 100%;
    z-index: 1;
    transform: translate(-40%, -50%);
    filter: drop-shadow(0 0 10px rgb(255 255 255 / 0.7));

    &>* {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgb(var(--color-fastask-forestgreen-dec) / 0), rgb(var(--color-fastask-forestgreen-dec) / 1) 30%);
        clip-path: polygon(100% 50%, 70% 0, 70% 29%, 0 29%, 0 71%, 70% 71%, 70% 100%, 100% 50%);
    }
}

:where(.keyvisual) .kv_reports {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

:where(.keyvisual) .kv_ui .kv_ui_window {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

:where(.keyvisual) .kv_reports {
    position: relative;
}

:where(.keyvisual) .kv_stack {
    position: absolute;
    top: 50%;
    left: 0;
    box-shadow: 0 5px 25px rgb(0 0 0 / 0.3);
    opacity: 1;
    transition: opacity 1s ease-in-out 0s,
        transform 1s ease-in-out 0s;
}

/*
:where(.keyvisual) .kv_stack:nth-child(1) {
    border: 2px solid brown;
}

:where(.keyvisual) .kv_stack:nth-child(2) {
    border: 2px solid palevioletred;
}

:where(.keyvisual) .kv_stack:nth-child(3) {
    border: 2px solid orange;
}

:where(.keyvisual) .kv_stack:nth-child(4) {
    border: 2px solid lightgreen;
}

:where(.keyvisual) .kv_stack:nth-child(5) {
    border: 2px solid green;
}

:where(.keyvisual) .kv_stack:nth-child(6) {
    border: 2px solid blue;

}
*/

:where(.keyvisual) .kv_stack_00 {
    z-index: 0;
    opacity: 0;
    transform: translateY(calc(-50% + 50%)) scale(1.2);

    &.reposition {
        transform: translateY(calc(-50% - 46%)) scale(0.4);
        /* transform: translateY(calc(-50% - 34%)) scale(0.6); */
    }
}

:where(.keyvisual) .kv_stack_01 {
    z-index: 7;
    transform: translateY(calc(-50% + 30%)) scale(1);
}

:where(.keyvisual) .kv_stack_02 {
    z-index: 6;
    transform: translateY(calc(-50% + 7%)) scale(0.9);
}

:where(.keyvisual) .kv_stack_03 {
    z-index: 4;
    transform: translateY(calc(-50% - 10%)) scale(0.8);
}

:where(.keyvisual) .kv_stack_04 {
    z-index: 3;
    transform: translateY(calc(-50% - 23%)) scale(0.7);
}

:where(.keyvisual) .kv_stack_05 {
    z-index: 2;
    opacity: 0.9;
    transform: translateY(calc(-50% - 34%)) scale(0.6);
}

:where(.keyvisual) .kv_stack_06 {
    z-index: 1;
    opacity: 0.7;
    transform: translateY(calc(-50% - 42%)) scale(0.5);
}

:where(.keyvisual) .kv_stack_07 {
    z-index: 0;
    opacity: 0.3;
    transform: translateY(calc(-50% - 46%)) scale(0.4);
}

:where(.keyvisual) :is(.kv_stack_08, .kv_stack_09, .kv_stack_10, .kv_stack_11) {
    z-index: 0;
    opacity: 0;
    transform: translateY(calc(-50% - 46%)) scale(0.4);
}

:where(.keyvisual) .kv_stack img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

:where(.keyvisual) .kv_scroll_cta {
    display: none;
}

@media screen and (max-width: 840px) {
    .keyvisual {
        height: max(100dvh, 150vw);

        &::after {
            height: 110%;
        }
    }

    :where(.keyvisual) .kv_container {
        --kvch: calc(calc(100cqh - var(--row-gap-kv-container) * 2) / 100);
        height: calc(100dvh - var(--header-height) - calc(var(--margin-block-kv-container) * 2));
        grid-template-columns: 1fr;
        grid-template-rows: calc(var(--kvch) * 15) calc(var(--kvch) * 30) calc(var(--kvch) * 45);
    }

    :where(.keyvisual) :is(.kv_title, .kv_ui, .kv_reports) {
        margin-inline: auto;
        grid-column: unset;
        grid-row: unset;
    }

    :where(.keyvisual) .kv_title {
        margin-inline: auto;
        display: grid;
        align-content: center;
    }

    :where(.keyvisual) .kv_ui {
        width: min(80%, 400px);
    }

    :where(.keyvisual) .kv_arrow {
        width: clamp(36px, 12vw, 72px);
        height: clamp(84px, 28vw, 168px);
        top: 100%;
        left: 50%;
        transform: translate(-50%, -60%);

        &>* {
            background: linear-gradient(180deg, rgb(var(--color-fastask-forestgreen-dec) / 0), rgb(var(--color-fastask-forestgreen-dec) / 1) 30%);
            clip-path: polygon(50% 100%, 100% 70%, 71% 70%, 71% 0, 29% 0, 29% 70%, 0 70%, 50% 100%);
        }
    }

    :where(.keyvisual) .kv_reports {
        width: 90%;
        height: 75vw;
    }

    :where(.keyvisual) .kv_title h1 {
        font-size: clamp(1.5rem, 4.25vw, 3.25rem);
    }

    @media screen and (min-height: 150vw) {
        :where(.keyvisual) .kv_scroll_cta {
            display: block;
            position: absolute;
            writing-mode: vertical-lr;
            bottom: 3vw;
            left: 3vw;
            inline-size: 30vw;
            block-size: 1em;
            font-size: 0.65rem;
            font-family: "Roboto", sans-serif;
            font-weight: 600;
            letter-spacing: 0.2em;
            color: rgb(255 255 255 / 0.7);
            line-height: 1;
            text-transform: uppercase;

            &>div {
                display: block;
                position: absolute;
                inset-inline-end: 0;
                inset-block-start: 50%;
                block-size: 0.2em;
                inline-size: 15vw;
                transform: translateX(-50%);
                background-color: rgb(0 0 0 / 0.2);

                &::after {
                    content: "";
                    display: block;
                    inline-size: 100%;
                    block-size: 100%;
                    background-color: rgb(255 255 255 / 0.6);
                    animation: 3s cubic-bezier(0.7, 0, 0, 0.7) 0s infinite normal both kv_scroll_cta_anim;
                    transform-origin: center top;
                    transform: scaleY(0);
                }
            }
        }

        @keyframes kv_scroll_cta_anim {
            20% {
                transform-origin: 50% 0%;
                transform: scaleY(0);
            }

            50% {
                transform-origin: 50% 0%;
                transform: scaleY(1);
            }

            50.1% {
                transform-origin: 50% 100%;
                transform: scaleY(1);
            }

            80% {
                transform: scaleY(0);
                transform-origin: 50% 100%;
            }
        }
    }

    :where(.keyvisual) .kv_stack_00 {
        transform: translateY(calc(-50% - 50%)) scale(1.2);

        &.reposition {
            transform: translateY(calc(-50% + 46%)) scale(0.4);
            /* transform: translateY(calc(-50% + 34%)) scale(0.6); */
        }
    }

    :where(.keyvisual) .kv_stack_01 {
        z-index: 5;
        transform: translateY(calc(-50% - 30%)) scale(1);
    }

    :where(.keyvisual) .kv_stack_02 {
        z-index: 4;
        transform: translateY(calc(-50% - 7%)) scale(0.9);
    }

    :where(.keyvisual) .kv_stack_03 {
        z-index: 3;
        transform: translateY(calc(-50% + 10%)) scale(0.8);
    }

    :where(.keyvisual) .kv_stack_04 {
        z-index: 2;
        transform: translateY(calc(-50% + 23%)) scale(0.7);
    }

    :where(.keyvisual) .kv_stack_05 {
        z-index: 1;
        transform: translateY(calc(-50% + 34%)) scale(0.6);
    }

    :where(.keyvisual) .kv_stack_06 {
        z-index: 0;
        transform: translateY(calc(-50% + 42%)) scale(0.5);
    }

    :where(.keyvisual) :is(.kv_stack_07, .kv_stack_08, .kv_stack_09, .kv_stack_10, .kv_stack_11) {
        z-index: 0;
        transform: translateY(calc(-50% + 46%)) scale(0.4);
    }
}

@media screen and (max-width: 500px) and (min-height: 700px) {
    :where(.keyvisual) .kv_reports {
        transform: translateY(5%);
    }
}


/* ---- Fastaskのご提供サービス（.service） ---------------- */
.service {
    margin-block-start: clamp(90px, 30vw, 180px);
}

:where(.service) .service_step {
    --width-step-gap: clamp(22.5px, 7.5vw, 45px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: var(--width-wide);
    column-gap: var(--width-step-gap);
    text-align: center;
}

:where(.service) .service_step span {
    text-align: center;
}

:where(.service) .service_step>* {
    position: relative;
}

:where(.service) .service_step .new::before {
    content: "NEW";
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
    padding-inline: 0.5em;
    padding-block: 0.3em;
    background-color: var(--color-fastask-blue);
    border-radius: clamp(2px, 0.75vw, 4px);
    font-size: 0.85em;
    font-family: "Roboto", sans-serif;
    color: white;
    line-height: 1;
}

:where(.service) .service_step .step {
    display: block grid;
    width: 100%;
    height: 100%;
    background-color: white;
    place-content: center;
}

:where(.service) .service_step .step>* {
    padding-block: clamp(12px, 4vw, 24px);
    font-size: 1.2rem;
    font-weight: 450;
}

:where(.service) .service_step .triangle {
    filter: drop-shadow(0 0 10px rgb(var(--color-fastask-cyan-dec) / 0.5));
    position: absolute;
    width: var(--width-step-gap);
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;

    &::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 100%, 0 0, 100% 50%, 0 100%);
        background-color: white;
        transform-origin: left center;
        transform: translateX(calc(100% - 1px)) scaleX(0.7);
    }
}

@media screen and (max-width: 1000px) {
    :where(.service) .service_step {
        --height-step-gap: clamp(18px, 6vw, 36px);
        width: min(70%, 500px);
        margin-inline: auto;
        grid-template-columns: 1fr;
        row-gap: var(--height-step-gap);
    }

    :where(.service) .service_step .step>* {
        padding-block: clamp(3px, 1vw, 6px);
        text-align: center;
    }

    /*
    :where(.service) .service_step .step .pc {
        display: none;
    }
*/
    :where(.service) .service_step .triangle {
        width: 70%;
        height: var(--height-step-gap);
        top: revert;
        right: 50%;
        bottom: 0;

        &::after {
            clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
            transform-origin: center top;
            transform: translate(50%, calc(100% - 1px)) scaleY(0.5);
        }
    }
}


/* ---- Fastask 3つの新機能(.feature) ---------------- */
:where(.feature) .feature_container {
    width: var(--width-middle);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(21px, 7vw, 42px);
}

:where(.feature) .section_title strong {
    display: inline-block;
    background: linear-gradient(-138deg, var(--color-fastask-lightcyan), var(--color-fastask-darkviolet)),
        var(--color-fastask-lightcyan) center / cover no-repeat;
    background-clip: text;
    font-family: "Roboto", sans-serif;
    font-size: 1.25em;
    font-weight: 650;
    color: transparent;
}

:where(.feature) .feature_content {
    padding-block: clamp(24px, 8vw, 48px);
    padding-inline: clamp(30px, 10vw, 60px);
    background-color: var(--color-grayishwhite);
    border-radius: clamp(6px, 1.5vw, 8px);
}

:where(.feature) .section_lead {
    margin-block-end: clamp(30px, 10vw, 60px);
}

:where(.feature) .section_lead:has(+ .section_lead) {
    margin-block-end: clamp(12px, 4vw, 24px);
}

:where(.feature) .feature_report {
    grid-column: 1 / 3;
}

:where(.feature) .feature_item_title {
    margin-block-end: clamp(15px, 5vw, 30px);
    font-size: clamp(1.7rem, 5.5vw, 2rem);
    font-weight: 550;
    text-align: center;

    &::before {
        content: "";
        display: inline-block;
        width: 1em;
        height: 1em;
        margin-inline-end: 0.25em;
        background: url(../images/dummy.svg) center / contain no-repeat;
        transform: scale(1.1) translateY(8%);
    }
}

:where(.feature) .feature_report .feature_item_title::before {
    background-image: url(../images/icon_feature_01.svg);
}

:where(.feature) .feature_data_merge .feature_item_title::before {
    background-image: url(../images/icon_feature_02.svg);
}

:where(.feature) .feature_data_screening .feature_item_title::before {
    background-image: url(../images/icon_feature_03.svg);
}

:where(.feature) .feature_item_title~* {
    margin-block-start: clamp(15px, 5vw, 30px);
}

:where(.feature) .feature_report {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(39px, 12.5vw, 78px);
    row-gap: clamp(24px, 6vw, 36px);
}

:where(.feature) .feature_report .feature_item_title {
    margin-block-end: 0;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    align-self: flex-start;
}

:where(.feature) .feature_report .feature_item_title~* {
    margin-block-start: 0;
}

:where(.feature) .feature_report_content>*~* {
    margin-block-start: clamp(15px, 5vw, 30px);
    /* margin-block-start: clamp(9px, 3vw, 18px); */
}

:where(.feature) .feature_report_title {
    padding-inline-start: 6px;
    border-inline-start: 4px solid var(--color-marineblue);
    font-size: 1.5rem;
    font-weight: 450;
    line-height: 1;
}

/*
:where(.feature) .feature_content p {
    word-break: break-all;
}

:where(.feature) .feature_report .feature_visual,
:where(.feature) .feature_report .feature_visual>:not(img) {
    height: clamp(180px, 60vw, 360px);
}

:where(.feature) .feature_data .feature_visual,
:where(.feature) .feature_data .feature_visual>:not(img) {
    height: clamp(120px, 40vw, 240px);
}

:where(.feature) .feature_report .feature_visual>:not(img),
:where(.feature) .feature_data .feature_visual>:not(img) {
    width: fit-content;
}

:where(.feature) .feature_visual_container {
    display: flex;
    justify-content: space-between;
    gap: clamp(21px, 7vw, 42px);
}
*/

:where(.feature) .feature_visual {
    border-radius: clamp(3px, 0.75vw, 4px);
    overflow: hidden;
}

:where(.feature) .feature_visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

:where(.feature) .section_lead:last-child {
    margin-block: clamp(72px, 24vw, 144px);
}

@media screen and (max-width: 840px) {
    :where(.feature) .feature_container {
        grid-template-columns: 1fr;
    }

    :where(.feature) .feature_report {
        grid-column: unset;
        grid-template-columns: 1fr;
    }

    :where(.feature) .feature_report .feature_item_title {
        grid-column: unset;
        grid-row: unset;
    }
}


/* ---- Fastask の特徴・できること（.ability） ---------------- */
:where(.ability) .ability_list {
    --size-icon: clamp(60px, 20vw, 120px);
    width: var(--width-nallow);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(36px, 12vw, 72px);
    align-items: flex-start;
}

:where(.ability) .ability_list>* {
    display: grid;
    grid-template-columns: var(--size-icon) 1fr;
    gap: clamp(9px, 3vw, 18px);
}

:where(.ability) .section_title {
    margin-block-end: clamp(45px, 15vw, 90px);
}

:where(.ability) .ability_icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: var(--size-icon);
    height: var(--size-icon);
    /* clip-path: circle(50%); */
    display: grid;
    justify-content: center;
    /* place-content: center; */
    /* background-color: var(--color-lightgray); */
}

:where(.ability) .ability_icon img {
    width: calc(var(--size-icon) * 0.7);
    height: calc(var(--size-icon) * 0.7);
}

:where(.ability) .ability_list p {
    word-break: break-all;
}

@media screen and (max-width: 840px) {
    :where(.ability) .ability_list {
        grid-template-columns: 1fr;
    }
}

/* ---- 活用シーン（.purpose） ---------------- */
:where(.purpose) .purpose_list {
    width: var(--width-nallow);
    margin-inline: auto;
}

:where(.purpose) .purpose_title {
    margin-block-end: clamp(45px, 15vw, 90px);
    /*
    font-size: 1.5rem;
    font-weight: 500;

    &::before,
    &::after {
        content: none;
    }
    */
}

:where(.purpose) .purpose_list>*~* {
    margin-block-start: clamp(36px, 12vw, 72px);
}

:where(.purpose) .purpose_list_inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


:where(.purpose) .purpose_list_inner>* {
    flex-basis: clamp(90px, 36vw, 240px);
    text-align: center;
}

:where(.purpose) .purpose_list p {
    height: 2.2em;
    margin-block-start: clamp(3px, 1vw, 6px);
    font-size: clamp(0.95rem, 3.25vw, 1.2rem);
    font-weight: 450;
    text-align: center;
    line-height: 1.2;
}

:where(.purpose) .purpose_list>* img {
    width: clamp(30px, 10vw, 60px);
}

@media screen and (max-width: 500px) {
    :where(.purpose) .purpose_list.sp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw;
    }

    :where(.purpose) .purpose_list>* {
        text-align: center;
    }

    :where(.purpose) .purpose_list>*~* {
        margin-block-start: 0;
    }

    :where(.purpose) .purpose_list>* img {
        width: clamp(39px, 13vw, 78px);
    }
}


/* ---- 汎用スタイル -------------------------------- */
.contentleft {
    margin-right: initial;
}

@media screen and (max-width: 840px) {
    .contentleft {
        margin: 0px;
    }
}


/* ---- ブレイクポイントごとの表示・非表示 ---------------- */
.mid_pc,
.pc {
    display: unset;
}

.sp,
.sp_mid,
.mid {
    display: none;
}


@media screen and (max-width: 1000px) {

    .sp_mid,
    .mid,
    .mid_pc {
        display: unset;
    }

    .sp,
    .pc {
        display: none;
    }
}

@media screen and (max-width: 500px) {

    .sp,
    .sp_mid {
        display: unset;
    }

    .pc,
    .mid,
    .mid_pc {
        display: none;
    }
}