@charset "UTF-8";

:root{
    --white: #FFFFFF;
    --allblack: #000000;
    --theme: #E9580B;
    --brown: #513939;
    --light_gray: #F7F7F7;
    --button_gray: #B0B0B0;
    --gray: #838383;
    --disable: #E3E3E3;
    --green: #65AB31;
    --orange: #EA7B49;
}

*,*::before,*::after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
    display: block;
}

ol, ul{
    list-style: none;
}
blockquote, q{
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after{
    content: '';
    content: none;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
img{
    line-height: 0;
    vertical-align: bottom;
}
html{
    font-family: "Noto Sans JP", sans-serif;
}
body{
    position: relative;
}
a{
    text-decoration: none;
    color: var(--allblack);
}
a:hover{
    opacity: 0.8;
}
/*
共通パーツ
*/
.pc_only{display: block;}
.sp_only{display: none;}
@media only screen and (max-width: 767px){
    .pc_only{display: none;}
    .sp_only{display: block;}
}
.futura{
    font-family: "futura-pt", sans-serif;
}
body.no_scroll {
    height: 100%;
    overflow: hidden;
}
.ttl_en{
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-align: center;
    color: var(--gray);
}
.ttl_white .ttl_en{
    color: var(--white);
    opacity: 0.5;
}
.ttl_jp{
    margin-top: 8px;
    font-size: 46px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--allblack);
}
.ttl_white .ttl_jp{
    color: var(--white);
}
.desc{
    margin-top: 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.flex_area{
    display: flex;
}
.btn_cnt{
    width: 260px;
    height: 47px;
    border: 2px solid;
    border-radius: 40px;
    text-align: center;
}
.btn_cnt a{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 11px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
    z-index: 5;
}
.btn_cnt a::after{
    content: "";
    position: absolute;
    top: 36%;
    right: 8%;
    width: min(1vw,10px);
    height: min(1vw,10px);
    transform: rotate(45deg);
    border-top: 2px solid;
    border-right: 2px solid;
}
.btn_cnt.o{
    border: 1px solid var(--theme);
    background-color: var(--theme);
}
.btn_cnt.o a{
    color: var(--white);
}
.btn_cnt.o a::after{
    border-color: var(--white);
}
.btn_cnt.o:hover{
    border-color: #EA592C;
    background-color: #EA592C;
    transition: all .2s ease-in-out;
}
.btn_cnt.o:hover::after{
    border-color: var(--white);
    background-color: var(--white);
    transition: all .2s ease-in-out;
}
.btn_cnt.w{
    border: var(--white);
    background-color: var(--white);
}
.btn_cnt.w a{
    color: var(--theme);
    border: 1px solid var(--theme);
}
.btn_cnt.w a::after{
    border-color: var(--theme);
}
.btn_cnt.w:hover{
    border: #EA592C;
    background-color: var(--white);
    transition: all .2s ease-in-out;
}
.btn_cnt.w a:hover::after{
    border-color: #EA592C;
    transition: all .2s ease-in-out;
}
.btn_to_top{
    display: block;
    position: absolute;
    width: 56px;
    height: 56px;
    bottom: 75px;
    right: 40px;
    border: 1px solid #000;
    border-radius: 100%;
    background-color: #FFFFFF;
    cursor: pointer;
    z-index: 1;
}
.btn_to_top img{
    top: 20px;
    left: 20px;
    width: 14px;
    height: 16px;
    position: relative;
    vertical-align: top;
}
.swiper-container .swiper-wrapper,
.swiper-container_tmp .swiper-wrapper{
    transition-timing-function: linear;
}
@media only screen and (max-width: 767px){
    .btn_cnt a::after{
        width: 10px;
        height: 10px;
    }
}

/*---
ヘッダー Header
---*/
header{
    margin: 0 0 10px;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
}
header .header_inr{
    width: 100%;
    height: 70px;
    margin: 0 auto;
    padding-left: 40px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: background-color .5s ease-in-out , box-shadow .5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header_inr.white{
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all .5s ease-in-out;
}
header .header_inr p{
    margin: 0;
}
header .header_inr .logo{
    margin-left: 30px;
}

header .header_inr .logo_block img{
    width: 16.4vw;
    max-width: 210px;
}

header .header_inr .nav_drawer{
    display: none;
}
header .header_inr .navi{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
header .header_inr .navi nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
header .header_inr .navi nav ul li{
    font-weight: bold;
    font-size: min(1.3vw,13px);
}

header .header_inr .navi nav ul li + li{
    margin-left: 15px;
}

header .navi .btn_cnt{
    width: 12.2vw;
    max-width: 200px;
    min-width: 120px;
    height: 35px;
}
header .navi .btn_cnt:first-of-type{
    margin: 0 16px 0 min(3vw,40px);
}
header .navi .btn_cnt a{
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}
/*---
フッター Footer
---*/
footer{
    position: relative;
    background-color: var(--allblack);
}
footer .contact a p{
    text-align: center;
    color: #ffffff;
}
footer .global_footer .footer_service{
    position: relative;
    width: auto;
    margin: 0;
    padding: 40px 40px 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: none;
}
@media screen and (max-width: 840px) and (min-width: 767px){
    footer .global_footer .footer_service{
        display: block;
    }
}
footer .global_footer .footer_service .service_log img{
    width: 210px;
}
footer .global_footer .footer_service nav ul{
    display: flex;
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}
footer .global_footer .footer_service nav ul li{
    font-weight: bold;
    font-size: 14px;
}
footer .global_footer .footer_service nav ul li + li{
    margin-left: 24px;
}

footer .global_footer .footer_service .left_side{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
footer .global_footer .footer_service nav a,
footer .global_footer .footer_service p,
footer .global_footer .footer_service small{
    color: #FFFFFF;
}
footer .global_footer .footer_service p.attention{
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}
footer .global_footer small{
    font-size: max(0.78125vw,10px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}
.adulation_footer{
    width: 100%;
    height: 63px;
    padding-top: 8px;
    position: fixed;
    bottom: 0;
    background-color: #FFFFFFCC;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.adulation_footer.hidden{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.adulation_footer .btn_cnt{
    margin: auto;
}

/*---
TOP
---*/
#top_mv{
    margin: 0;
    padding-top: 70px;
    background: var(--white);
}
.mv_wrap{
    aspect-ratio: 7 / 3;
}
.top_mv_inner{
    width: 100%;
    height: 100%;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.top_mv_inner.sp_only{
    display: none;
}
.mv_wrap.sp_only{
    display: none;
}

.mv_wrap .mv_img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.mv_wrap .mv_txt{
    position: relative;
    padding-left: 6.25%;
}
.mv_wrap .mv_txt span{
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 14px;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--brown);
}
.mv_wrap .mv_txt span:not(:first-of-type){
    margin-top: 8px;
}

#company{
    display: block;
    overflow-x: hidden;
    display: none;
}

/*---
ABOUT
---*/
section#about .section_wrapper{
    max-width: none;
}
section#about .section_wrapper .content{
    display: flex;
    justify-content: left;
    margin: 60px auto 40px 6.25%;
    gap: 24px;
}

#about .left_side{
    text-align: left;
}
#about .left_side .ttl_en{
    text-align: left;
}
#about .left_side .ttl_jp{
    margin-top: 12px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: left;
}
#about .left_side .ttl_jp img{
    width: 70%;
    margin-right: 16px;
}
#about .left_side .desc{
    color: var(--allblack);
}
#about .left_side .desc span{
    display: inline;
    color: var(--theme);
}

#about .right_side{
    display: flex;
    align-items: center;
}
#about .right_side img{
    height: 25.3vw;
}
#about .section_wrapper .template p{
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--brown);
    color: var(--white);
    margin-left: -6.25vw;
    padding: 6px 12px 6px 12.5vw;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
#about .template .swiper-container_tmp{
    margin-top: 20px;
    overflow-x: hidden;
}
#about .template .tmp_list{
    gap: 16px;
}
#about .template .swiper-slide{
    border: 1px solid #838383;
    border-radius: 8px;
    aspect-ratio: 328 / 185;
}

/*
お問い合わせエリア
*/
.contact_wrapper{
    width: auto;
    margin: 40px 0;
}
.con_dow_banner{
    text-align: center;
    margin: 0 80px;
    padding: 40px 80px;
    background-color: var(--orange);
    border-radius: 16px;
}
.con_dow_banner h2{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--white);
}
.con_dow_banner p{
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--white);
}
.con_dow_banner .flex_area{
    margin-top: 24px;
    justify-content: center;
    gap: 24px;
}

/*---
特徴 POINT
サポート SUPPORT
---*/
section#point,
section#support{
    background-color: var(--green);
}
#point .section_wrapper,
#support .section_wrapper{
    width: auto;
    max-width: none;
    margin: auto;
    padding: 80px 0;
}

#point .desc,
#support .desc{
    margin-top: 8px;
    text-align: center;
    color: var(--white);
}
#point .points{
    margin: 0 6.25% 70px;
}
#point .points .flex_area{
    margin-top: 128px;
    position: relative;
}
#point .points .flex_area:first-of-type{
    margin-top: 70px;
}
#point .points .flex_area.reverse{
    flex-direction: row-reverse;
}
#point .points .contents{
    position: relative;
}
.contents span{
    padding: 4px 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    color: var(--white);
    background-color: var(--brown);
    position: absolute;

}
#point .contents span{
    top: 0;
    left:-16px;
}
#point .contents h3{
    width: -moz-fit-content;
    width: fit-content;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
    color: var(--brown);
    background-color: var(--white);
    padding: 10px 12px 14px;
}
#point .contents h3:first-of-type{
    margin-top: 28px;
}
#point .contents p{
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: left;
    color: var(--green);
    background-color: var(--white);
    padding: 4px 12px;
}
#point .contents p:first-of-type{
    margin-top: 16px;
}
#point .contents p:last-of-type{
    margin-bottom: 28px;
}
#point .flex_area img{
    position: absolute;
}
#point .cnt1 img{
    width: 36.7vw;
    max-width: 470px;
    bottom: -70.43px;
    right: -3%;
}
#point .cnt2 img{
    width: 32.2vw;
    max-width: 413px;
    bottom: -32.5px;
    left: -52px;
}
#point .cnt3 img{
    width: 28.4vw;
    max-width: 364px;
    bottom: -35px;
    right: 0;
}

#point .con_dow_banner{
    border: 2px solid var(--white);
}

/*---
機能 FEATURE
---*/
section#feature{
    background-color: var(--light_gray);
}
#feature .section_wrapper{
    width: auto;
    max-width: none;
    margin: auto;
    padding: 80px 0;
}
#feature .features{
    max-width: 930px;
    margin: 32px auto 0;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
#feature .features img{
    width: 21%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
}

/*---
事例 WORKS
---*/
#works .section_wrapper{
    width: auto;
    max-width: none;
    margin: 0 6.25%;
    padding: 80px 0;
}
#works .contents{
    margin-top: 20px;
    justify-content: center;
    gap: 12px;
}
#works .contents .item{
    width: 50%;
    display: block;
}
#works .contents .item img{
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;

}
#works .contents .item .under{
    min-height: 150px;
    padding: 20px 24px 32px;
    background-color: var(--light_gray);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
#works .contents .item .under p{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
#works .contents .item .under p.company{
    line-height: 1;
    color: var(--gray);
    -webkit-line-clamp: 1;
}
#works .contents .item .under p.headline{
    margin-top: 10px;
    line-height: 1.5;
    color: var(--allblack);
    -webkit-line-clamp: 3;
}
/*---
サポート SUPPORT
---*/
#support .section_wrapper{
    margin: 0 6.25%;
}
#support .flex_area{
    margin: 56px auto 24px;
    gap: 12px;
}
#support .flex_area .contents{
    position: relative;
    width: 33%;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--white);
    border-radius: 8px;
}
#support .contents span{
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}
#support .contents p{
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--green);
}
#support .contents p.futura{
    margin-top: 0;
    font-weight: 600;
    line-height: 1;
    color: var(--gray);
}
#support .contents img{
    width: 70%;
    margin: 0 auto;
    display: block;
}
#support .attention{
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--white);
}

/*---
お問い合わせ CONTACT
マルケトフォーム
---*/
section#contact{
    background-color: var(--orange);
}
#contact .section_wrapper{
    max-width: 1280px;
    margin: auto;
    padding: 80px 0 80px;
}

.form_area_iframe .pr_cnt .pr_txt,
.form_area_iframe .pr_cnt a,
.form_area_iframe .pr_cnt .check_box{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    color: #02020F;
}
.form_area_iframe .pr_cnt a{
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
    color: var(--theme);
    text-decoration: underline;
}
.form_area_iframe .pr_cnt .check_box{
    display: block;
    margin-top: 20px;
}
.form_area_iframe .pr_cnt .check_box label{
    display: flex;
    justify-content: left;
    align-items: center;
}
.form_area_iframe .pr_cnt .check_box input[type="checkbox"]{
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    min-width: 18px;
    margin: 0 8px 0 0;
    border: 1px solid var(--allblack);
    border-radius: 4px;
    position: relative;
}
.form_area_iframe .pr_cnt .check_box input[type="checkbox"]:checked{
    background-color: var(--orange);
}
.form_area_iframe .pr_cnt .check_box input[type="checkbox"]:checked::before {
    display: grid;
    content: '';
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    position: absolute;
    top: 25%;
    left: 15%;
}

/*画面幅が広い場合*/
@media screen and (min-width: 1280px){
    .contact_wrapper,
    #point .section_wrapper,
    #support .section_wrapper,
    #feature .section_wrapper,
    #works .section_wrapper{
        margin: 0;
        padding: 80px max(26.5%, 340px) 80px 80px;
    }
    #works .section_wrapper,
    #support .section_wrapper{
        margin-right: 80px;
    }
    #point .points{
        margin: 0 auto 70px;
    }
    #point .cnt2 .contents{
        margin-right: 80px;
    }
    #point .con_dow_banner{
        margin-left: 0;
    }
}


/*==================
        SP
==================*/
@media only screen and (max-width: 767px){
    /* 共通パーツ*/
    .ttl_en{
        font-size: 20px;
    }
    .ttl_jp{
        font-size: 30px;
    }
    .desc{
        font-size: 18px;
    }
    .btn_to_top{
        bottom: 340px;
        right: 20px;
    }
    /*---
    ヘッダー Header SP
    ---*/
    header{
        margin: 0;
    }
    header .header_inr{
        width: auto;
        height: auto;
        background: none;
        border-radius: 0;
        box-shadow: none;
        display: block;
        position: relative;
        padding: 0;
    }
    header .header_inr .logo_block{
        width: 100%;
        max-width: none;
        height: 60px;
        margin-left: 0;
        padding-left: 20px;
        display: flex;
        align-items: center;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        justify-content: space-between;
        background: #fff;
    }
    header .header_inr .logo_block img{
        width: 47.5vw;
        max-width: 178px;
    }
    header .header_inr .logo_block .nav_drawer{
        cursor: pointer;
        display: block;
        position: relative;
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    header .header_inr .logo_block .nav_drawer span{
        width: 40px;
        height: 2px;
        display: block;
        background-color: var(--theme);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all .5s;
    }
    header .nav_drawer span:nth-of-type(1){top: 24px;}
    header .nav_drawer span:nth-of-type(2){top: 34px;}
    header .header_inr .logo_block .nav_drawer.open span{left: 20px;}
    header .header_inr .logo_block .nav_drawer.open span:nth-of-type(1){
        top: 30px;
        transform: rotate(45deg);
    }
    header .header_inr .logo_block .nav_drawer.open span:nth-of-type(2){
        top: 30px;
        transform: rotate(-45deg);
    }
    header .header_inr .navi{
        display: none;
        margin-right: 0;
        position: absolute;
        top: 60px;
        width: 100%;
        height: 100vh;
        padding: 0 0 20vh;
        background-color: var(--orange);
        overflow-y: scroll;
    }
    header .header_inr .navi nav{
        padding-top: 60px;
        margin: 0 10.6%;
    }
    header .header_inr .navi nav ul{
        display: block;
    }
    header .header_inr .navi nav ul li a{
        padding: 16px 0;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.04em;
        display: flex;
        justify-content: start;
        color: var(--white);
        border-bottom: 1px solid var(--white);
    }
    header .header_inr .navi nav ul li:first-of-type a{
        padding-top: 0;
    }
    header .header_inr .navi nav ul li:last-of-type a{
        border-bottom: none;
    }
    header .header_inr .navi nav ul li + li{
        margin-left: 0;
    }
    header .header_inr .navi p.btn{
        margin-left: 0;
        width: 86%;
        margin: 35px auto 0;
    }
    header .header_inr .navi p.btn a{
        width: 100%;
        max-width: inherit;
        height: 65px;
        font-size: 17px;
        border-radius: 60px;
        position: relative;
    }
    header .header_inr .navi p.btn a:after{
        display: block;
        content: "";
        width: 8px;
        height: 8px;
        border-top:  2px solid var(--white);
        border-right:  2px solid var(--white);
        transform: rotate(45deg);
        position: absolute;
        right: 30px;
    }
    header .header_inr .navi .btn_cnt{
        width: 260px;
        height: 47px;
        max-width: none;
        margin: 66px auto 0;
    }
    header .header_inr .navi .btn_cnt:last-of-type{
        margin-top: 16px;
    }
    header .header_inr .navi .btn_cnt a{
        padding: 16px;

    }
    header .header_inr .navi .btn_cnt.w{
        background-color: var(--white);
    }
    header .header_inr .navi .btn_cnt.w a{
        color: var(--orange);
        border: 1px solid var(--orange);
    }
    header .header_inr .navi .btn_cnt.o{
        background-color: var(--orange);
    }
    header .header_inr .navi .btn_cnt.o a{
        color: var(--white);
        border: 1px solid var(--white);
    }

    /*---
    フッター Footer SP
    ---*/
    footer .global_footer .footer_service{
        display: block;
        text-align: left;
        width: inherit;
    }
    footer .global_footer .footer_service .left_side{
        gap: 40px;
    }
    footer .global_footer .footer_service .service_log{
        margin-bottom: 0;
    }
    footer .global_footer .footer_service nav{
        margin: 0;
    }
    footer .global_footer .footer_service nav ul{
        flex-wrap: wrap;
        justify-content: left;
        gap: 0 25px;
    }
    footer .global_footer .footer_service nav ul li{
        width: 50%;
        margin: 0 0 30px;
        text-align: left;
    }
    footer .global_footer .footer_service nav ul li + li{
        margin-left: 0;
    }
    footer .global_footer .footer_service nav ul li:nth-of-type(2n+1){
        width: 55%;
    }
    footer .global_footer .footer_service nav ul li:nth-of-type(2n){
        width: calc(45% - 25px);
    }

    /*---
    TOP SP
    ---*/
    #top_mv{
        padding-top: 60px;
    }
    .top_mv_inner.sp_only{
        display: flex;
    }
    .top_mv_inner.pc_only{
        display: none;
    }
    .mv_wrap{
        aspect-ratio: 5 / 8;
    }
    .mv_wrap .mv_txt span{
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        font-size: 28px;
    }

    /*---
    ABOUT SP
    ---*/
    section#about .section_wrapper .content{
        flex-direction: column;
        margin: 60px 5.3% 40px;
    }
    #about .left_side .ttl_jp{
        font-size: 26px;
    }
    #about .left_side .ttl_jp img{
        width: 77%;
        margin-right: 0;
    }
    #about .right_side img{
        height: auto;
        width: 100%;
    }

    /*
    お問い合わせエリア SP
    */
    .con_dow_banner{
        margin: 0 5.3%;
        padding: 60px 20px;
    }
    .con_dow_banner h2{
        line-height: 1.2;
    }
    .con_dow_banner .flex_area{
        flex-direction: column;
        align-items: center;
    }

    /*---
    特徴 POINT SP
    サポート SUPPORT SP
    ---*/
    #point .section_wrapper,
    #support .section_wrapper{
        margin: auto 5.3%;
    }
    #point .points{
        margin: 0 0 40px;
    }
    #point .points .flex_area,
    #point .points .flex_area.reverse{
        margin-top: 0;
        flex-direction: column;
    }
    #point .points .flex_area:first-of-type{
        margin-top: 70px;
    }
    #point .contents span{
        left: -20px;
    }
    #point .contents h3{
        font-size: 26px;
        margin-top: -12px;
    }
    #point .contents p{
        letter-spacing: 0.04em;
        margin-top: -6px;
    }
    #point .flex_area img{
        position: static;
        width: 100%;
        margin: 0 auto;
    }
    #point .con_dow_banner{
        margin: 0;
    }

    /*---
    機能 FEATURE SP
    ---*/
    #feature .section_wrapper{
        margin: 0 5.3%;
    }
    #feature .features{
        gap: 15px;
    }
    #feature .features img{
        width: 47.7%;
        max-width: 160px;
    }

    /*---
    事例 WORKS SP
    ---*/
    #works .section_wrapper{
        margin: 0 5.3%;
    }
    #works .contents{
        flex-direction: column;
        gap: 22px;
    }
    #works .contents .item{
        width: 100%;
    }

    /*---
    サポート SUPPORT SP
    ---*/
    #support .flex_area{
        flex-direction: column;
        gap: 24px;
    }

    #support .flex_area .contents{
        width: 100%;
        padding: 20px 25px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    #support .contents span{
        left: -20px;
        transform: none;
    }
    #support .contents p{
        text-align: left;
    }
    #support .contents img{
        width: 32.2%;
        margin: 0;
    }
    #support .attention{
        text-align: left;
    }
    #support .attention + .attention{
        margin-top: 4px;
    }

    /*---
    お問い合わせ CONTACT SP
    ---*/
    .form_area_iframe .pr_cnt .check_box label{
        align-items: start;
    }
    .form_area_iframe .pr_cnt .check_box input[type="checkbox"]{
        margin-top: 3px;
    }
}

@media only screen and (min-width: 768px){
    footer .global_footer .footer_service nav .privacy_list{
        margin-top: 10px;
    }
}

@media only screen and (max-width: 768px){
    footer .global_footer .footer_service nav .privacy_list{
        flex-direction: column;
    }
    footer .global_footer .footer_service nav ul.privacy_list li {
        width: 100%;
    }
}
