@charset "UTF-8";
@import url('https:///fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Poppins:wght@200;300;400;500&display=swap');
:root{
    /* key color */
    --green: #018843;
    --lightgreen: #24bd27;
    --palegreen: #00d768;
    --yellow: #ffea01;
    --gray: #5f5f5f;
    --footer: #5e5e5e;
    --lightgray: #e7e7e7;
    --whitegray: #f4f4f4;
    --orange: #f47315;
    --paleorange: #ffdcc4;
    --purple: #977bad;
    --lavender: #c9b9d4;
    --font_jp: 'Noto Sans JP', sans-serif;
    --font_en: 'Poppins', sans-serif;
}
/* reset */
*{margin:0;padding:0;box-sizing:border-box;border-collapse:collapse;position:relative;word-break:normal;}
html{overflow-y:scroll;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
table{ border-collapse:collapse;border-spacing:0;}
h1,h2,h3,h4,h5,h6{font-size:100%;text-align:left;font-weight:normal;}
img,abbr,acronym,fieldset{border:0;}
ol,ul,li{list-style-type:none;}
img{vertical-align:middle;}
audio,canvas,iframe,img,svg,video{vertical-align:middle}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}iframe{border-style:none}img{border-style:none}svg:not([fill]){fill:currentColor}svg:not(:root){overflow:hidden}
button{border:0;border-radius:0;background:transparent;outline:none;-webkit-appearance: none;}
a{text-decoration: none;}
a:hover,a:focus{text-decoration:underline;}

/* landing page */
body{
    background: #FFF;
    color: #202020;
    font-family: var(--font_jp);
    line-height: 1.8;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}
@media screen and (max-width:899.98px) {
    body{
        font-size: 17px;
        -webkit-text-size-adjust: 100%;
    }
}
@media screen and (max-width:414.98px) {
    body{
        font-size: 18px;
        -webkit-text-size-adjust: 100%;
    }
}
#container{
    width: 100%;
}
/* flex box */
.flex{display:flex;}
.flex.row{flex-direction:row;}
.flex.col{flex-direction:column;}
.flex .box{display:block;}
/* h2 border */
h2{
    display: inline;
    border-bottom: 3px solid #FFF;
}
@media screen and (max-width:799.98px) {
    h2{
        border-bottom-width: 2px !important;
    }
}
@media screen and (max-width:414.98px) {
    h2{
        border-bottom-width: 0.4vw !important;
    }
}
/* btn */
.btn_cta{
    display:inline-block;
    margin:0;
    width:13.80208333vw;
    height:3.125vw;
}
.btn_cta a{
    display:inline-block;
    background:var(--green);
    color:#FFF;
    border-radius: 2.604166667vw /*50px*/;
    width:100%;
    height:100%;
    font-size:0.9375vw;
    text-align:center;
    vertical-align:middle;
    position: relative;
    padding: 0 0 0 0.78125vw;
}
.btn_cta a::before{
    content: "";
    position: absolute;
    top: 34%;
    left: 6%;
    width: 0.8333333333vw;
    height: 0.8333333333vw;
    display: block;
    background: url(../../assets/image/img_contact_arrow.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}
.btn_cta a:hover,
.btn_cta a:hover span{text-decoration:none;background: var(--orange);}

/* header */
header{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 4.6875vw;
    background: #FFF;
    box-shadow: 0 0.4166666667vw 0.20833333338vw rgba(225, 225, 225, .5);
    position: fixed;
    top: 0;
    z-index: 100;
}
.header_wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0.78125vw 2.604166667vw;
    width: 100%;
    height: 100%;
    filter: unset;
}
.header_wrap h1{
    margin: 0;
    padding: 0.78125vw 0;
    width: 13.07291667vw;
    height: 100%;
    display: block;
}
.header_wrap h1 a{
    display:inline-block;
    width:100%;
    height: 100%;
    display: block;
}
.header_wrap h1 a img{
    display:block;
    width:100%;
    height:auto;
}
.header_wrap nav{
    margin: 0 3% 0 20%;
    width:36.19791667vw;
    height:100%;
}
.header_wrap nav ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header_wrap nav ul li{
    width: auto;
    height: 100%;
    margin: 0;
    padding: .5vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header_wrap nav ul li a{
    color: #000;
    font-family: var(--font_en);
    font-size: 0.7291666667vw;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}
.header_wrap nav ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    /*height: 0.1041666667vw;*/
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    display: block;
}
.header_wrap nav ul li a:hover::after {
    transform: scale(1, 1);
}
/* btn cta optional */
header .btn_cta{
    width: 13.75vw;
    height: 2.8125vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header .btn_cta a{
    display: block;
    font-size: 0.9375vw;
    font-weight: bold;
    line-height: 2.1875vw;
    padding: 0.2083333333vw 0 0.3125vw 0.78125vw;
}
@media screen and (max-width:899.98px) {
    .header_wrap nav{
        margin: 0;
        padding: 0 0 0 0;
        width: 50vw;
    }
    .header_wrap nav ul li a{
        font-size: 8px;
    }
    .header_wrap nav ul li a::after {
        bottom: 0;
    }
    header .btn_cta{
        width: 20vw;
    }
    header .btn_cta a{
        font-size: 10px;
        font-weight: normal;
        padding: 0.2vw 0;
    }
    header .btn_cta a:before{
        display: none;
    }
}
/* main */
main{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    position: relative;
    top: 4.6875vw;
}
.contents{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
}
.wrap{
    width: 67.70833333vw;
}
/* sec01 */
.sec01{
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
}
.sec01 .wrap{
    display: block;
    margin: 0 auto;
    padding: 2.604166667vw 3.125vw 0.5208333333vw 1.041666667vw;
    width: 67.70833333vw;
}
.sec01 .wrap h1{
    color: #000;
    font-family: var(--font_jp);
    font-size: 3.645833333vw;
    font-weight: 900;
    line-height: 1em;
    display: flex;
    flex-direction: column;
}
.sec01 .wrap h1 span{
    color: var(--lightgray);
    font-family: var(--font_en);
    font-size: 1.822916667vw;
    font-weight: 600;
}
.sec01 .wrap dl{
    margin: 3.645833333vw 0 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 55vw;
    padding: 0 3.385416667vw 0 0;
}
.sec01 .wrap dt{
    padding: 0 0 0.2604166667vw 0;
    width: 22vw;
    height: 100%;
    display: inline-block;
    vertical-align: top;
}
.sec01 .wrap dt h3{
    display: inline;
    padding: 0.2604166667vw;
    width: 100%;
    background: var(--orange);
    color: #FFF;
    font-size: 1.145833333vw;
    font-weight:600;
}
.sec01 .wrap dd{
    padding: 0;
}
.sec01 .wrap dd p{
    margin: 0;
    padding: 0;
    font-size: 0.625vw;
    font-weight: bold;
    line-height: 2em;
}
.sec01 .wrap dd h4{
    display: inline;
    padding: 0.625vw 0 0 0;
    color: var(--orange);
    font-size: 1.09375vw;
    font-weight:600;
}
.sec01 .wrap.bk_image{
    background: url(../../assets/image/img_fv_bk.jpg) no-repeat top center;
    background-size: 100% auto;
    width: 100%;
    height: auto;
    min-height: 31.25vw;
    position: relative;
}
.sec01 .wrap.bk_image:before{
    content: "";
    position: absolute;
    width: 3.125vw;
    height: 4.375vw;
    background: url(../../assets/image/img_fv_point.png) no-repeat bottom center;
    background-size: 94% 94%;
    left: 48%;
    top: 1.6vw;
}
.sec01 .wrap.bk_image ol{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 51.04166667vw;
    margin: 0 auto;
    padding: 5.208333333vw 0 2.604166667vw 0;
}
.sec01 .wrap.bk_image li{
    width: auto;
    padding: 0 0.78125vw;
}
.sec01 .wrap.bk_image li span{
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    padding: 0.5208333333vw;
    background: #FFF;
    border: 2px solid #000;
    border-radius: 2.604166667vw; /* 50px */
    box-shadow: 4px 8px 0 var(--green);
    font-weight: bolder;
    font-size: 1.09375vw;
}
.sec01 .wrap.bk_image h3{
    text-align: center;
    font-size: 1.666666667vw;
    font-weight: bolder;
    line-height: 2em;
    color: #FFF;
}
.sec01 .wrap.bk_image a.btn.btn_cta_large{
    background: var(--lightgreen);
    box-shadow: 4px 8px 0 rgba(5, 5, 5, .5);
    border-radius: 2.604166667vw; /* 50px */
    color: #FFF;
    margin: 2.604166667vw auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 28.33333333vw;
    padding: 1.041666667vw 1.5625vw;
    text-align: center;
    font-size: 1.5625vw;
    font-weight: bold;
    position: relative;
}
.sec01 .wrap.bk_image a.btn.btn_cta_large:hover,
.sec01 .wrap.bk_image a.btn.btn_cta_large:hover span{
    text-decoration: none;
    background: var(--orange);
}
.sec01 .wrap.bk_image a.btn.btn_cta_large:before{
    content: "";
    background: url(../../assets/image/img_contact_arrow.png) no-repeat top center;
    background-size: 98% 98%;
    width: 1.25vw;
    height: 1.25vw;
    position: relative;
    top: 10%;
    left: 0;
    display: block;
}
@media screen and (max-width:899.98px) {
    .sec01 .wrap{
        width: 80vw;
    }
    .sec01 .wrap dl{
        width: 70vw;
        height: 20vw;
    }
    .sec01 .wrap dt{
        font-size: 8px;
        width: 44vw;
    }
    .sec01 .wrap dd p{
        font-size: 8px;
    }
    .sec01 .wrap dd h4{
        padding: 0;
        line-height: 1em;
    }
}
/* sec02 about */
.sec02{
    background: var(--orange);
    color: #FFF;
}
.sec02 .wrap{
    width: 57.29166667vw;
    margin: 0 auto;
    padding:4.947916667vw 0;
}
.sec02 .wrap .box{
    width: 50%;
}
.sec02 .wrap .box:first-child{
    padding: 0 2.083333333vw 0 0;
}
.sec02 h2{
    font-family: var(--font_en);
    font-weight: bolder;
    line-height: 100%;
    position: relative;
    padding: 0 0 5px 0;
    margin: 0 0 1.6vw 0;
    font-size: 0.9375vw;
    border-bottom: 3px solid #FFF;
    display: inline-block;
}
/*
.sec02 h2:after{
    content: "";
    background: #FFF;
    width: 10.6vw;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: 0;
}
*/
.sec02 h3{
    font-size: 1.666666667vw;
    font-weight: bolder;
}
.sec02 p{
    font-size: 0.8333333333vw;
    font-weight: 500;
    color: #202020;
    line-height: 2em;
    padding: 2.083333333vw 0 2.083333333vw 2.083333333vw;
}
.sec02 figure{
    width: 33.17708333vw;
}
.sec02 figure img{
    width: 100%;
}
/*
@media screen and (max-width: 1380px){
    .sec02 .wrap{
        width: 100%;
        padding: 4%;
    }
    .sec02 .wrap .flex.row{
        width: 98%;
    }
    .sec02 figure{
        width: 100%;
    }
    .sec02 figure img{
        width: 100%;
    }
}
@media screen and (max-width: 51.04166667vw){
}
@media screen and (max-width: 797px){
}
*/
/* sec03 ques */
.sec03{
    background: var(--lightgray);
}
.sec03 .wrap{
    margin: 0 auto;
    padding: 5.208333333vw 1.041666667vw;
    width: 67.70833333vw;
    text-align: center;
}
.sec03 h2{
    display: inline;
    margin: 0 auto;
    font-size: 0.9375vw;
    font-weight: bolder;
    font-family: var(--font_en);
    text-align: center;
    position: relative;
    clear: both;
    border-bottom: 3px solid #202020;
    padding-bottom: 5px;
}
/*
.sec03 h2:after{
    content: "";
    margin: 0 auto;
    width: 100%;
    height: 2px;
    background: #202020;
    position: absolute;
    bottom: -4px;
    left: 0;
}
*/
.sec03 h3{
    display: block;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
    margin: 1.2vw auto .5vw auto;
    padding-bottom: 0;
}
.sec03 h4{
    font-size: 1.25vw;
    font-weight: 500;
    color: var(--green);
    text-align: center;
}
.sec03 ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2.604166667vw 0;
}
.sec03 li{
    background: var(--gray);
    color: #FFF;
    margin: 0 0 2.083333333vw 0;
    padding: 1.041666667vw 0.5208333333vw 1.041666667vw 1.041666667vw;
    width: 29%;
    height: 6.25vw;
    border-radius: 1.041666667vw;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.sec03 li:before{
    content: "";
    background: url(../../assets/image/icon_check_orange.png) no-repeat top center;
    background-size: cover;
    color: var(--orange);
    display: block;
    font-size: 1.5625vw;
    width: 1.666666667vw;
    height: 1.302083333vw;
    position: relative;
    top: 0;
    margin: 0 1.666666667vw 0 0;
}
.sec03 li p{
    font-size: 1.145vw;
    font-weight: 600;
}
/*
@media screen and (max-width: 1380px){
    .sec03 .wrap{
        width: 100%;
        padding: 4%;
    }
    .sec03 .wrap h1{
        font-size: 6.4vw;
    }
    .sec03 h2{
        width: 98%;
    }
}
*/
/* sec04 ans */
.sec04{
    background: var(--palegreen);
}
.sec04:before{
    content: "";
    position: absolute;
    top: 0;
     /*
    left: 48%;
    border-top: 2.604166667vw solid var(--lightgray);
    border-left: 2.083333333vw solid transparent;
    border-right: 2.083333333vw solid transparent;
    */
    left: 47%;
    border-top: 4vw solid var(--lightgray);
    border-left: 3.125vw solid transparent;
    border-right: 3.125vw solid transparent;

}
.sec04 .wrap{
    margin: 0 auto;
    padding: 5.208333333vw 1.041666667vw;
    width: 67.70833333vw;
    text-align: center;
}
.sec04 h2{
    margin: 0 auto;
    font-size: 0.9375vw;
    font-weight: bolder;
    font-family: var(--font_en);
    text-align: center;
    position: relative;
    clear: both;
    border-bottom: 3px solid #202020;
    padding-bottom: 5px;
}
/*
.sec04 h2:after{
    content: "";
    margin: 0 auto;
    width: 100%;
    height: 2px;
    background: #202020;
    position: absolute;
    bottom: -4px;
    left: 0;
}
*/
.sec04 h3{
    margin: 2.6vw auto 0 auto;
    display: block;
    font-size: 2.34375vw;
    font-weight: bold;
    text-align: center;
}
.sec04 h3 span{
    background: var(--yellow);
    font-size: 2.5vw;
    font-weight: bold;
    padding: 0.2604166667vw 0.78125vw;
}
.sec04 h4{
    font-size: 1.979166667vw;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}
.sec04 p{
    padding: 1em;
    font-weight: bold;
}
/*
@media screen and (max-width: 1380px){
    .sec04 .wrap{
        width: 100%;
        padding: 4%;
    }
    .sec04 .wrap h1{
        font-size: 6.4vw;
    }
    .sec04 h2{
        width: 98%;
    }
}
@media screen and (max-width: 51.04166667vw){
}
@media screen and (max-width: 797px){
}
*/
/* sec05 reason */
.sec05.flex.col{
    background: #FFF url(../../assets/image/img_sec05_bk.jpg) no-repeat bottom center;
    background-size: 100vw 51.04166667vw;
    width: 100%;
    height: 51.04166667vw;
    justify-content: flex-start;
}
.sec05:before{
    content: "";
    position: absolute;
    top: 0;
    left: 47%;
    border-top: 4vw solid var(--palegreen);
    border-left: 3.125vw solid transparent;
    border-right: 3.125vw solid transparent;
}
.sec05 .wrap:first-child{
    width: 67.70833333vw;
    height: 10.41666667vw; /* 200px */
    padding: 5.208333333vw 0.5208333333vw 0 0.5208333333vw;
    margin: 0 auto;
    height: auto;
}
.sec05 .wrap:last-child{
    width: 100%;
    height: 40.625vw; /* 780px */
    min-height: 780px;
    margin: 0 auto;
    padding: 0;
}
.sec05 .wrap > h3{
    color: var(--green);
    font-size: 2.083333333vw;
    font-weight: bold;
    text-align: center;
}
.sec05 .wrap .flex.row{
    width: 67.70833333vw;
    margin: 0 auto;
}
.sec05 .box{
    width: 50%;
    padding: 2vw 0 0 0;
}
.sec05 .box > h2{
    font-family: var(--font_en);
    font-weight: bolder;
    margin: 0 auto 0 0;
    padding: 0 0 3px 0;
    border-bottom: 3px solid #202020 !important;
}
/*
.sec05 .box h2:after{
    content: "";
    margin: 0 auto;
    width: 100%;
    height: 2px;
    background: #202020;
    position: absolute;
    bottom: -0.1vw;
    left: 0;
}*/
.sec05 .box h3{
    margin: 3vw 0 0 0;
    font-size: 2.5vw;
    font-weight: bold;
}
.sec05 .box h3 span{
    background: linear-gradient(transparent 70%,var(--yellow) 30%);
}
.sec05 .box p{
    font-size: 0.86vw;
    font-weight: bold;
    line-height: 2.4em;
    padding: 5vw 0 0 3vw;
}
/* sec06 values */
.sec06{
    background: #FFF;
    text-align: center;
}
.sec06:before{
    content: "";
    position: absolute;
    width: 3.125vw;
    height: 4.375vw;
    background: url(../../assets/image/img_sec06_more.png) no-repeat bottom center;
    background-size: 94% 94%;
    left: 48%;
    top: -3vw;
    z-index: 10;
}
.sec06 .wrap.bk_white{
    margin: 0 auto;
    padding: 5.208333333vw 0 2.604166667vw 0;
    width: 100%;
    text-align: center;
}
.sec06 .wrap.bk_white h4{
    color: var(--orange);
    text-align: center;
    font-size: 1.979166667vw;
    font-weight: bolder;
}
.sec06 .wrap.bk_orange{
    margin: 0 auto;
    padding: 5.208333333vw 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, var(--paleorange) 0%, var(--paleorange) 50%, var(--orange) 50%, var(--orange) 100%);
}
.sec06 h2{
    margin: 0 auto 1vw auto;
    padding: 0 0 5px 0;
    font-size: 0.9375vw;
    font-weight: bolder;
    font-family: var(--font_en);
    text-align: center;
    position: relative;
    clear: both;
    display: inline-block;
    height: 2vw;
    border-color: #202020;
}
/*
.sec06 h2:after{
    content: "";
    margin: 0 auto;
    width: 100%;
    display: block;
    height: 2px;
    background: #202020;
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
}*/
.sec06 h3{
    display: block;
    font-size: 2.34375vw;
    font-weight: bold;
    text-align: center;
}
.sec06 h3 span{
    background: var(--yellow);
    font-size: 2.5vw;
    font-weight: bold;
    padding: 0.2604166667vw 0.78125vw;
}
.sec06 h4{
    display: block;
    font-size: 0.9375vw;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1.2vw;
}

.sec06 .flex.row{
    width: 67.70833333vw;
    margin: 0 auto;
    padding: 5.208333333vw 0;
}
.sec06 .box:first-child{
    text-align: left;
    width: 50%;
    padding: 0 4.166666667vw 0 0;
}
.sec06 .box:first-child figure{width: 29.21875vw;}
.sec06 .box:first-child figure img{width:100%;}
.sec06 .box:first-child p{
    padding: 2.604166667vw 0;
    font-size: 0.8854166667vw;
    font-weight: bold;
}
.sec06 .box:last-child{
    color: #FFF;
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0 0 0 3.125vw;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
}
.sec06 .box:last-child ul{
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.sec06 .box:last-child li{
    width: 28%;
    margin: 0 0 1.5625vw 0;
}
.sec06 .box:last-child li figure,
.sec06 .box:last-child li figure img{
    width:  8.645833333vw;
    height: 8.28125vw;
}
.sec06 .box:last-child h5{
    margin: 2.604166667vw auto 0 auto;
    padding: 0 0 0.2604166667vw 0;
    font-size: 1.5625vw;
    font-weight: bold;
    text-align: left;
    border-bottom: 3px solid #FFF;
}
/*
.sec06 .box:last-child h5:after{
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: -4px;
	left: 0;
	background: #FFF;
}
*/
/* sec07 works */
.sec07{
    background: #fff;
    text-align: center;
}
.sec07 .wrap{
    margin: 0 auto;
    padding: 5.208333333vw 0 0 0;
    width: 67.70833333vw;
}
.sec07 .wrap .title_box{
    width: 100%;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    padding: 0 0 2.604166667vw 0;
}
.sec07 .wrap .title_box h2{
    text-align: center;
    display: inline-block;
    font-family: var(--font_en);
    font-weight: bolder;
    position: relative;
    margin: 0 auto 1.5vw auto;
    padding: 0;
    border-color: #202020;
}
/*
.sec07 .wrap .title_box h2:after{
    content: "";
    background: #202020;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: 0;
}
*/
.sec07 .wrap .title_box h3{
    text-align: center;
    display: inline-block;
    font-weight: bold;
    font-size: 2.604166667vw;
    margin: 0 auto 1.5625vw auto;
}
.sec07 .wrap .title_box p{
    font-size: 1.302083333vw;
    /*
    font-size: 2.302083333vw;*/
    font-weight: bold;
    text-align: center;
    color: var(--green);
}
@media (max-width:800px){
    .sec07 .wrap .title_box p{
        font-size: 1.302083333vw;
    }
}
.sec07 .slider{
    margin: 0 auto 2vw auto;
    padding: 0;
    /*
    width: 67.70833333vw;
    */
    width: 100%;
    height: 41.66666667vw;
    overflow: hidden;
}
.sec07 .slider > ul{
    margin: 0 auto;
    padding: 0 0 0 2.604166667vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 70.83333333vw;
    height: 36.35416667vw;
}
.sec07 .slider > ul > li{
    /*width: 67.70833333vw;*/
    width: auto;
}
.sec07 .slider .flex.col{
    display: block;
    margin: 0;
    width: 62.91666667vw;
    height: 36.35416667vw;
}
.sec07 .slider .flex.col img{
    display: block;
    margin: 0 auto;
    width: 62.91666667vw;
    height: 36.35416667vw;
}
.sec07 .slider button.slick-arrow{
    position: absolute;
    top: 40%;
    z-index: 101;
    display: block;
    width: 1.5625vw;
    height: 2.03125vw;
    text-indent: -9999px;
    cursor: pointer;
}
.sec07 .slider button.slick-next.slick-arrow{
    background: url(../../assets/image/img_slide_next.png) no-repeat left center;
    background-size: contain;
    right: 2.6vw;
}
.sec07 .slider button.slick-prev.slick-arrow{
    background: url(../../assets/image/img_slide_prev.png) no-repeat left center;
    background-size: contain;
    left: 0;
}
.sec07 .slider .slick-dots{
    position: absolute;
    left: 3.6%;
    right: auto;
    width: 62.91666667vw;
    height: 2vw;
    bottom: -3vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.sec07 .slider .slick-dots > li{
    position: relative;
    width: 2vw;
    height: 2vw;
    padding: 0;
}
.sec07 .slider .slick-dots > li > button{
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    top: 0;
    text-indent: -9999px;
    cursor: pointer;
}
.sec07 .slider .slick-dots > li > button::before{
    content: '';
    display: block;
    margin: 0 auto;
    width: 0.8854166667vw;
    height: 0.8854166667vw;
    background: #CCC;
    border-radius: 50%;
    text-indent: 0px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.sec07 .slider .slick-dots li.slick-active > button::before{
    background: #666;
}


/* sec08 howto */
.sec08{
    background: #f0f2f6;
    padding: 0;
}
.sec08 .wrap01{
    background: url(../../assets/image/img_sec08_bk01.png) no-repeat top center;
    background-size: cover;
    width: 100%;
    height: 24.16666667vw;
    margin: 0 auto;
    padding: 2.604166667vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec08 .wrap01 h4{
    font-size: 2.34375vw;
    font-weight: bold;
    padding: 0 0 2.083333333vw 0;
}
.sec08 .wrap01 h5{
    display: inline-block;
    background: #202020;
    color: #FFF;
    font-size: 1.09375vw;
    font-weight: 500;
    padding: 0.2083333333vw 0.8333333333vw;
}
.sec08 .wrap01 p{
    font-size: 1.302083333vw;
    font-weight: bold;
}
.sec08 .wrap01 p.green{
    padding: 2.083333333vw 0 0 0;
    color: var(--green);
}
.sec08 .wrap02,
.sec08 .wrap03{
    width: 67.70833333vw;
    height: auto;
    margin: 0 auto;
    padding: 2.604166667vw 0.5208333333vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec08 .wrap02 .flex.row{
    width: 100%;
    color: #4e4e4e;
}
.sec08 .wrap02 .flex.row .box:first-child{
    width: 50%;
    padding: 0 0.5208333333vw 0 0;
}
.sec08 .wrap02 .flex.row .box:first-child h2{
    font-family: var(--font_en);
    font-weight: bolder;
    font-size: 0.9375vw;
    border-color: var(--gray);
    padding: 0 0 5px 0;
}
/*
.sec08 .wrap02 .flex.row .box:first-child h2:after{
    content: "";
    background: #202020;
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    bottom: -0.1vw;
    padding: 0;
    margin: 0;
}*/
.sec08 .wrap02 .flex.row .box:first-child h3{
    font-weight: bolder;
    font-size: 2.5vw;
    display: block;
    width: 100%;
    line-height: 1.6em;
    padding: 2.083333333vw 0;
}
.sec08 .wrap02 .flex.row .box:first-child p{
    font-family: var(--font_jp);
    font-size: 0.9375vw;
    font-weight: 600;
    line-height: 2em;
    padding: 0 0 0 2vw;
}
.sec08 .wrap02 .flex.row .box:last-child{
    width: 50%;
}
.sec08 .wrap02 .flex.row .box:last-child figure,
.sec08 .wrap02 .flex.row .box:last-child figure img{
    width: 29.94791667vw;
    margin: 0 0 0 auto;
}
.sec08 .wrap.wrap03{
    border: 1px solid rgb(115, 111, 105);
    margin: 5vw auto 0 auto;
    width: 69.79166667vw;
}
.sec08 .wrap03 h3{
    display: inline-block;
    width: 32.1875vw;
    height: 7.291666667vw;
    margin: -5vw auto 3vw auto;
}
.sec08 .wrap03 h3 img{
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: block;
}
.sec08 .wrap03 dl{
    margin: 0 auto;
    padding: 0 0 4.166666667vw 0;
    width: 58.85416667vw;
}
.sec08 .wrap03 dt{
    display: block;
    width: 10.83333333vw;
    height: 10.83333333vw;
}
.sec08 .wrap03 dt h5{
    background: #FFF;
    border-radius: 50%;
    width: 10.83333333vw;
    height: 10.83333333vw;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 1.458333333vw;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 10.83333333vw;
    color: var(--gray);
}
.sec08 .wrap03 dd{
    padding: 0 1vw 0 3.645833333vw;
    font-size: 0.9375vw;
    font-weight: 500;
    color: #444;
    line-height: 2.4em;
}
.sec08 .wrap03 h4.h4_arrow{
    font-size: 1.5625vw;
    font-weight: 600;
    text-align: center;
    color: var(--purple);
}
.sec08 .wrap03 h4.h4_arrow:before{
    content: "";
    display: block;
    width: 4.791666667vw;
    height: 1.875vw;
    background: url(../../assets/image/img_sec08_wrap03_arrow_down.png) no-repeat top center;
    background-size: cover;
    position: relative;
    top: -2vw;
    margin: 0 auto;
}
.sec08 .wrap03 h4.h4_balloon{
    font-family: var(--font_en);
    font-size: 2.5vw;
    font-weight: 300;
    color: var(--gray);
    display: inline-block;
    text-align: center;
    margin: 0 auto 4vw auto;
    padding: 0 0 1vw 0;
    height: auto;
    line-height: 100%;
    border-bottom: 0.25vw solid var(--gray);
}
.sec08 .wrap03 h4.h4_balloon:before,
.sec08 .wrap03 h4.h4_balloon:after {
    content: '';
    position: absolute;
    display: inline-block;
  }
  .sec08 .wrap03 h4.h4_balloon:before {
    top: 100%;
    left:41%;
    border: 1vw solid transparent;
    border-top: 2vw solid var(--gray);
  }
  .sec08 .wrap03 h4.h4_balloon:after {
    top: 98%;
    left: 39%;
    border: 1vw solid transparent;
    border-top: 2vw solid #f0f2f6;
  }
.sec08 .wrap03 ol.point_list{
    margin: 0 auto;
    padding: 4.166666667vw 0;
    width: 58.85416667vw;
    justify-content: space-between;
}
.sec08 .wrap03 ol.point_list li .flex.col{
    background: var(--lavender);
    border-radius: 50%;
    width: 13.02083333vw;
    height: 13.02083333vw;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 3vw 0;
}
.sec08 .wrap03 ol.point_list li .flex.col h5{
    color: #FFF;
    font-family: var(--font_en);
    font-size: 1.145833333vw;
    font-weight: 900;
    text-align: center;
}
.sec08 .wrap03 ol.point_list li .flex.col p{
    color: var(--gray);
    font-size: 1.145833333vw;
    font-weight: 600;
    text-align: center;
}

.sec08 .wrap03 .slider03{
    width: 100%;
    overflow: hidden;
}
.sec08 .wrap03 .slider03 ol{
    flex-wrap: nowrap;
    justify-content: space-between;
    /*width: 67.70833333vw;*/
    width: 60vw;
    margin: 0 auto;
}
.sec08 .wrap03 .slider03 li{
    /*width: 17.5vw;*/
    width: auto;
    color: #736f69;
}
.sec08 .wrap03 .slider03 li div.flex.col{
    width: 17.5vw;
}
.sec08 .wrap03 li figure{
    width: 17.5vw;
    height: auto;
    margin-bottom: 1.5625vw;
}
.sec08 .wrap03 .slider03 li figure img{
    width: 100%;
}
.sec08 .wrap03 .slider03 li h6{
    font-family: var(--font_en);
    font-size: 1.197916667vw;
    border: 1px solid #736f69;
    padding: 0.1041666667vw 0.4166666667vw;
}
.sec08 .wrap03 .slider03 li p{
    font-size: 0.78125vw;
    padding: 1.041666667vw 0;
}
.sec08 .wrap03 .slider03 button.slick-arrow{
    position: absolute;
    top: 40%;
    z-index: 101;
    display: block;
    width: 1.5625vw;
    height: 2.03125vw;
    text-indent: -9999px;
    cursor: pointer;
}
.sec08 .wrap03 .slider03 button.slick-next.slick-arrow{
    background: url(../../assets/image/img_slide_next02.png) no-repeat left center;
    background-size: contain;
    right: -40px;
}
.sec08 .wrap03 .slider03 button.slick-prev.slick-arrow{
    background: url(../../assets/image/img_slide_prev02.png) no-repeat left center;
    background-size: contain;
    left: -40px;
}
/* sec09 sdgs */
.sec09{
    background: #FFF url(../../assets/image/img_sec09_bk.jpg) no-repeat;
    background-size: 100% auto;
    background-position: top center;
    height: auto;
}
.sec09 .wrap{
    margin: 0 auto;
    padding: 8vw 0 0 0;
    width: 67.70833333vw;
}
.sec09 .wrap h3{
    display: block;
    font-size: 2.083333333vw;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    margin: 1vw auto 2vw auto;
    line-height: 2.3em;
}
.sec09 .wrap h3 span{
    background: var(--green);
    margin: 0 0 2.604166667vw 0;
    padding: 0.2083333333vw	0.78125vw;
}
.sec09 .wrap h5{
    font-size: 1.302083333vw;
    font-weight: bold;
    text-align: center;
}
.sec09 .wrap .box.trans{
    background: rgba(225, 225, 225, .5);
    text-align: center;
    margin: 0 auto;
    width: 46.35416667vw;
    height: 19.01041667890vw;
    padding: 2.083333333vw 3.125vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec09 .wrap .box.trans .title_box{
    display: flex;
    flex-direction: column;
}
.sec09 .wrap .box.trans h4{
    font-size: 0.9375vw;
    font-weight: bold;
    font-family: var(--font_en);
    color: var(--green);
    display: inline-block;
    margin: 0 auto;
    border-bottom: 3px solid var(--green);
    padding: 0 0 1px 0;
}
/*
.sec09 .wrap .box.trans h4:after{
    content: "";
    background: var(--green);
    width: 100%;
    height: 2px;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 0px;
}*/
.sec09 .wrap .box.trans h2{
    color: var(--green);
    font-size: 2.1875vw;
    font-weight: bold;
    border-bottom: 0 !important;
}
.sec09 .wrap .box.trans p{
    text-align: left;
    font-size: 0.8333333333vw;
    font-weight: bold;
}
.sec09 .wrap .flex.row{
    margin: 4vw auto 0 auto;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
}
.sec09 .wrap .box{
    width: 50%;
    padding: 2.083333333vw;
}
.sec09 .wrap .box:first-child{
    background: url(../../assets/image/img_sec09_box_bk.jpg) no-repeat top center;
    background-size: cover;
}
.sec09 .wrap .box:first-child h4{
    background: #FFF;
    color: var(--green);
    display: block;
    font-size: 1.614583333vw;
    font-weight: bold;
    padding: 1.041666667vw 1.5625vw;
    width: 100%;
}
.sec09 .wrap .box:first-child h4 span{
    font-size: 1.40625vw;
}
.sec09 .wrap .box:last-child{
    background: var(--green);
    color: #FFF;
    font-weight: bold;
}
.sec09 .wrap .box:last-child p{
    font-size: 0.8333333333vw;
    font-weight: bold;
}

/* sec10 flow */
.sec10{
    background: #FFF;
    padding: 3vw 0 0 0;
    width: 100%;
}
.sec10 .wrap{
    margin: 0 auto;
    padding: 1.302083333vw 0 0 0;
    width: 67.70833333vw;
}
.sec10 .wrap .title_box{
    display: block;
    margin: 0 auto;
    padding: 0 0 1vw 0;
    color:#FFF;
    width: 5.520833333vw;
    text-align: center;
}
.sec10 .wrap .title_box h2{
    display: inline;
    margin: 0 auto;
    padding: 0 0 5px 0;
    color: #202020;
    font-family: var(--font_en);
    font-size: 0.9375vw;
    font-weight: bolder;
    text-align: center;
    height: 100%;
    border-color: #202020;
}
/*
.sec10 .wrap .title_box h2:after{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #202020;
}*/
.sec10 .wrap h3{
    font-size: 2.5vw;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1em;
    padding: 1.34375vw 0 1.5vw 0;
}
.sec10 .wrap h4{
    color: var(--orange);
    font-size: 0.9375vw;
    font-weight: bold;
    text-align: center;
}
.sec10 .flex.col.flow_list{
    width: 100%;
    height: auto;
    margin: 2.604166667vw 0 0 0;
}
.sec10 .flex.col.flow_list li{
    width: 62.5vw;
    height: 11.97916667;
    margin: 0 0 4.6875vw 4.166666667vw;
    padding: 0.5208333333vw 1.5625vw 0.5208333333vw 7.291666667vw;
    border: 0.2604166667vw solid var(--green);
    border-radius: 30px;
    font-weight: bold;
    position: relative;
}
.sec10 .flex.col.flow_list li::after{
    content: ". . .";
    color: var(--green);
    font-size: 0.9375vw;
    line-height: 100%;
    letter-spacing: 0.15625vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 0.9375vw;
    font-weight: bolder;
    width: 0.7291666667vw;
    height: 3.125vw;
    writing-mode: vertical-rl;
    position: absolute;
    left: 48%;
    right: 48%;
    top: 113%;
}
.sec10 .flex.col.flow_list li:last-child::after{
    display: none;
}
.sec10 .flex.col.flow_list li h3{
    position: absolute;
    top: 18%;
    bottom: 12%;
    left: -6%;
    background: #FFF;
    border: 5px solid var(--orange);
    border-radius: 50%;
    box-shadow:0 0 0 0.2604166667vw #FFF;
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 2.447916667vw;
    line-height: 80%;
    justify-content: center;
    align-items: center;
    width: 6.927083333vw;
    height: 6.927083333vw;
    padding: 0.8333333333vw 0 1.5625vw 0;
}
@media screen and (max-width:899.98px) {
    .sec10 .flex.col.flow_list li{
        border-radius: 10px;
    }
    .sec10 .flex.col.flow_list li h3{
        border: 3px solid var(--orange);
        letter-spacing: 0;
    }
}
@media (max-width:420.98px){
    .sec10 .flex.col.flow_list li{
        border-radius: 10px;
    }
    .sec10 .flex.col.flow_list li h3{
        border: 2px solid var(--orange);
        letter-spacing: 0;
    }
}
.sec10 .flex.col.flow_list li h3 span{
    font-size: 0.9375vw;
    font-weight: bolder;
}
.sec10 .flex.col.flow_list dl.flex.col{
    padding: 1.041666667vw 0;
    width: 28.64583333vw;
}
.sec10 .flex.col.flow_list dl.flex.col dt{
    padding: 0 0 0.5208333333vw 0;
}
.sec10 .flex.col.flow_list dl.flex.col dt span{
    font-size: 1.666666667vw;
    font-weight: bolder;
    border-bottom: 0.2604166667vw solid var(--green);
}
.sec10 .flex.col.flow_list dl.flex.col dd{
    padding: 0.5208333333vw 0;
    font-size: 0.9375vw;
    font-weight: bold;
    line-height: 1.6em;
}
.sec10 .flex.col.flow_list .box.right{
    width: 16.77083333vw;
    height: 10.41666667vw;
    margin: 0 0 0 auto;
}
.sec10 .flex.col.flow_list .box.right figure{
    display: block;
    width: 16.92708333vw;
    height: auto;
    margin: 1.041666667vw auto 0.5208333333vw auto;
    text-align: center;
}
.sec10 .flex.col.flow_list .box.right figure img{
    display: block;
    width: 100%;
}
.sec10 .flex.col.flow_list .box.right .btn_cta{
    display: flex;
    margin: 0 auto;
}
.sec10 .flex.col.flow_list .box.right .btn_cta a{
    font-size: 0.9375vw;
    padding: 0.625vw 0 0.625vw 0.8333333333vw;
}
/* sec11 clients */
.sec11{
    background: #FFF;
}
.sec11 .wrap{
    margin: 0 auto;
    padding: 1.302083333vw 0 0 0;
    width: 100%;
}
.sec11 .wrap .title_box{
    display: block;
    margin: 0 auto;
    padding: 0;
    color:#FFF;
    width: 100%;
    text-align: center;
}
.sec11 .wrap .title_box h2{
    margin: 0 auto;
    padding: 0 0 5px 0;
    color: #202020;
    font-family: var(--font_en);
    font-size: 0.9375vw;
    font-weight:bolder;
    text-align: center;
    height: 2vw;
    border-color: #202020;
}
/*
.sec11 .wrap .title_box h2:after{
    content: "";
    background: #202020;
    width: 88%;
    height: 2px;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
*/
.sec11 .wrap h3{
    font-size: 1.614583333vw;
    text-align: center;
    font-weight: bold;
    line-height: 2em;
    padding: 2.34375vw 0 3.125vw 0;
}
.sec11 .wrap.client,
.sec11 .wrap.client figure{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
}
.sec11 .wrap.client figure img{
    display: block;
    width: 100%;
    height: auto;
}

/* sec12 faq */
.sec12{
    background: var(--green);
    padding: 0 0 3.125vw 0;
}
.sec12 .wrap{
    margin: 0 auto;
    padding: 3.125vw 0;
    width: 67.70833333vw;
}
.sec12 .wrap .title_box{
    display: block;
    margin: 0 auto;
    padding: 0 0 2.604166667vw 0;
    color:#FFF;
    width: 7vw;
    text-align: center;
}
.sec12 .wrap .title_box h2{
    margin: 0 auto;
    padding: 0 0 5px 0;
    font-size: 3.2vw;
    font-weight:bold;
    font-family: var(--font_en);
    border-bottom: 3px solid #FFF;
}
.sec12 .wrap .title_box span{
    margin: 0 auto;
    padding: 1vw 0 0 0;
    display: block;
    font-size: 0.94vw;
    text-align: center;
}
/*
.sec12 .wrap .title_box h2 span:after{
    content: "";
    background: #FFF;
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}*/
.sec12 div.flex.row.faq_wrap{
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list{
    margin: 0;
    padding: 0 0 2.083333333vw 0;
    width: 30.625vw;
    height: auto;
    overflow: hidden;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt/*,
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt[data-target="faq_acdn_01"].active*/{
    margin: 0;
    padding: 0.78125vw 1.041666667vw 0.78125vw 3.125vw;
    width: 100%;
    height: 3.125vw;
    background: #FFF;
    border-radius: 0.5208333333vw;
    color: var(--green);
    font-size: 0.8333333333vw;
    font-weight: bold;
    position: relative;
    transition: border-radius 1.5s;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt.active/*,
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt[data-target="faq_acdn_01"]*/{
    border-radius: 0.5208333333vw 0.5208333333vw 0 0;
    transition: border-radius .1s;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt::before{
    content: "Q";
    background: var(--green);
    border-radius: 50%;
    display: block;
    width: 2.083333333vw;
    height: 2.083333333vw;
    line-height: 2.083333333vw;
    color: #FFF;
    font-family: var(--font_en);
    font-size: 0.8333333333vw;
    font-weight: bold;
    position: absolute;
    top: 0.5208333333vw;
    bottom: 0.5208333333vw;
    left: 0.5208333333vw;
    text-align: center;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt::after
/*.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt[data-target="faq_acdn_01"].active::after*/{
    content: "＋";
    display: block;
    width: 2.083333333vw;
    height: 2.083333333vw;
    line-height: 2.083333333vw;
    color: var(--green);
    font-family: var(--font_jp);
    font-size: 0.8333333333vw;
    font-weight: bolder;
    position: absolute;
    top: 0.5208333333vw;
    bottom: 0.5208333333vw;
    right: 0.5208333333vw;
    text-align: center;
    transition: content .2s;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt.active::after/*,
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt[data-target="faq_acdn_01"]::after*/{
    content: "ー";
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dd{
    margin: 0;
    padding: 0.78125vw 1.041666667vw 1.041666667vw 3.125vw;
    width: 30.625vw;
    height: auto;
    background: #FFF;
    border-radius: 0 0 0.5208333333vw 0.5208333333vw;
    color: var(--orange);
    font-size: 0.8333333333vw;
    font-weight: bold;
    display: none;
    transition: transform .3s;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dd::before{
    content: "A";
    background: var(--orange);
    border-radius: 50%;
    display: block;
    width: 2.083333333vw;
    height: 2.083333333vw;
    line-height: 2.083333333vw;
    color: #FFF;
    font-family: var(--font_en);
    font-size: 1.302083333vw;
    font-weight: bold;
    position: absolute;
    top: 0.5208333333vw;
    bottom: 0.5208333333vw;
    left: 0.5208333333vw;
    text-align: center;
}
.sec12 div.flex.row.faq_wrap dl.flex.col.faq_list.active dd{
    display: block;
}
/*
@media screen and (max-width: 1380px){
    .sec12 .wrap{
        width: 100%;
    }
    .sec12 div.flex.row.faq_wrap{
        margin: 0 auto;
        width: 94%;
    }
    .sec12 div.flex.row.faq_wrap dl.flex.col.faq_list{
        width: 48%;
    }
    .sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dt,
    .sec12 div.flex.row.faq_wrap dl.flex.col.faq_list dd{
        width: 100%;
        font-size: 1.24vw;
    }
}
*/
/* footer */
footer{
    background: var(--footer);
    font-family: var(--font_jp);
    font-weight: bold;
    color: #FFF;
    width: 100%;
    height: 7.291666667vw;
    margin: 0 auto;
    padding: 3.125vw 0;
    text-align: center;
    vertical-align: middle;
}
#page-top a{
    background:#942D2F;
    color:#fff;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 1.041666667vw;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: all 0.3s;
  }
  #page-top a:hover{
    background: #777;
  }
footer address{
    font-style: normal;
    font-size: 0.5208333333vw;
    display: block;
    margin: 0 auto;
}