@charset "UTF-8";

/*=====================
For whole sections
=====================*/

:root{
    --green: #00aa48;
    --black: #111111;
    --white: #f9f9f9;
    --gray: #d9d9d9;
    --pink: #f60740;
    --linegreen: #06C755;
    /* --orange: #F7B249; */
    --orange: #ff9c07;
    --font_kaku: "Zen Kaku Gothic New", sans-serif;
    --font_maru: "Zen Maru Gothic", serif;
}

*{
    font-family: var(--font_kaku);
    font-weight: 500;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 100%;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

body{
    background-color: var(--white);
}

.pink{
    color: var(--pink);
}

.green{
    color: var(--green);
}

.vdl{
    color: var(--green);
    font-family: "vdl-penletter", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 90px 0 90px;
	border-color: #1A3324 transparent transparent transparent;
	display: block;
	margin: 0 auto;
    position: sticky;
    z-index: 10;
}

.sp{
    display: none;
}

@media screen and (max-width:787px) {
    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
/*========max-width:787========*/
}

/*=====================
btn
=====================*/

.btn_box.fv_btn{
    padding: 24px 0;
    background-color: #DCF1E5;
}

.btn_box .btn{
    display: block;
    background-color: var(--orange);
    width: 480px;
    margin: 0 auto;
    padding:8px 16px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 0 #fcc572;
    box-shadow: 0 5px 0 #fcc572;
    transition: 0.2s;
}

.btn:hover {
    background: var(--orange);
    color: #FFF;
    -webkit-box-shadow: 0 2px 0 #fcce86;
    box-shadow: 0 2px 0 #fcce86;
    transform: translateY(3px);
  }

.btn_box .sub{
    background-color: var(--white);
    border-radius: 20px;
    border: solid 1px var(--orange);
    font-size: 14px;
    text-align: center;
    margin-top: -20px;
    padding: 4px 10px;
}

.btn .main{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
}

.btn .main p{
    color: var(--white);
    font-size: 36px;
    font-weight: bold;
}

.btn .main .line{
    width: 45px;
    height: 45px;
    margin-top: 8px;
    margin-right: 8px;
}

@media screen and (max-width:787px) {
    .btn_box.fv_btn{
        padding: 40px 0;
    }
    
    .btn_box .btn{
        width: 320px;
        padding: 30px 8px 16px;
        border-radius: 5px;
    }
    
    .btn_box .sub{
        border-radius: 20px;
        font-size: 14px;
        text-align: center;
        margin-top: -40px;
        padding: 4px;
    }

    .btn .main p{
        font-size: 32px;
    }
    
    .btn .main .line{
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
/*========max-width:787========*/
}

/*=====================
Swiper
=====================*/



/*=====================
header
=====================*/
.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 8px 18px;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
}

.header_inner .header_logo img{
    width: 200px;
}

.header_inner .header_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    background-color: #06c755;
    padding: 4px;
}

.header_inner .header_btn .line{
    width: 45px;
    height: 45px;
}

.header_inner .header_btn a{
    color: var(--white);
}

@media screen and (max-width:787px) {
    .header_inner{
        padding: 8px;
    }
    .header_inner .header_logo img{
        width: 180px;
    }
    
    .header_inner .header_btn{
        font-size: 24px;
        padding: 2px;
    }
    
    .header_inner .header_btn .line{
        width: 40px;
        height: 40px;
    }
/*========max-width:787========*/
}

/*=====================
Fv
=====================*/
.fv{
    padding-top: 70px;
    background-image: url(../img/fv.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: auto;
}

.fv .fv_box .fv_lead{
    padding-top: 6vw;
    padding-left: 4vw;
}

.fv .fv_lead .fv_lead_box{
    display:flex;
}

.fv .fv_lead p{
    color: var(--green);
    background-color: var(--white);
    font-size: 2.8vw;
    font-weight: 500;
    padding: 4px 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: fit-content;
}

.fv .fv_lead h1{
    text-shadow: 2px 2px 40px var(--white);
    color: var(--white);
    font-size: 3vw;
    font-weight: 500;
    line-height: 1.2;
}

.fv .fv_lead h1 .large{
    color: var(--white);
    font-size: 5vw;
    font-weight: bold;
}

.fv .fv_list ul{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 280px;
    padding-bottom: 36px;
}

.fv .fv_list ul li{
    font-size: 1.6vw;
    font-weight: 400;
    padding: 16px;
    width: 80%;
    height: auto;
}

.fv .fv_list ul li .clip{
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    background-color: rgba(249, 249, 249, .8);
    padding: 24px;
}

.fv .fv_list ul li h2{
    color: var(--pink);
    line-height: 1.1;
    margin-bottom: 8px;
}

.fv .fv_list ul li p{
    font-weight: 400;
}

/* .fv .fv_list ul li .fv_list_num {
    position: absolute;
    top: -30px;
    left: 60px;
    font-size: 32px;
    text-shadow: 1px 1px 20px #f9f9f9;
} */

@media screen and (max-width:787px) {
    .fv{
        background-image: url(../img/fv1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 70%;
        width: 100vw;
        height: auto;
    }

    .fv .fv_box .fv_lead{
        padding-top: 40px;
        padding-left: 24px;
    }

    .fv .fv_lead .fv_lead_box{
        display:block;
    }

    .fv .fv_lead p{
        /* font-size: 20px; */
        font-size: 18px;
        padding: 4px 10px;
    }
    
    .fv .fv_lead h1{
        /* font-size: 28px; */
        font-size: 24px;
        line-height: 1.2;
    }
    
    .fv .fv_lead h1 .large{
        color: var(--white);
        /* font-size: 30px; */
        font-size: 42px;
    }

    .fv .fv_list ul{
        display: block;
        margin-top: 32px;
    }

    .fv .fv_list ul li{
        position: relative;
        background-image: none;
        font-size: 12px;
        padding: 10px;
        margin-left: 24px;
        margin-bottom: 0;
        width: 180px;
    }

    .fv .fv_list ul li .clip{
        padding: 10px;
    }

    .fv .fv_list ul li h2{
        font-size: 16px;
    }

    .fv .fv_list ul li p{
        font-size: 12px;
        font-weight: 400;
    }
    
    .fv .fv_list ul li .fv_list_num {
        display: none;
        /* position: absolute;
        top: -25px;
        left: 16px;
        font-size: 24px; */
    }
/*========max-width:787========*/
}

/*=====================
merit
=====================*/
.merit{
    background-image: url(../img/bg_green.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 40px 24px 62px;
}

.merit h2{
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.merit h2 span{
    color: var(--white);
    font-size: 42px;
    font-weight: bold;
} 

ul.merit_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.merit_list li {
    position: relative;
    background-color: var(--gray);
    width: 30%;
}

.merit_list li p{
    font-size: 20px;
    font-weight: 400;
    padding: 24px 0;
}

.merit_list li p .green{
    font-size: 24px;
    font-weight: bold;
}

.merit_image .merit_pic {
    width: 100%;
}

.merit_image span img {
    position: absolute;
    /* display: block; */
    width: 60px;
    left: 14px;
    border-radius: 100%;
    top: -15px;
}

@media screen and (max-width:787px) {
    .merit h2{
        font-size: 24px;
        font-weight: 500;
    }
    
    .merit h2 span{
        font-size: 40px;
    } 

    ul.merit_list {
        display: block;
        max-width: 300px;
    }

    .merit_list li {
        width: 100%;
        margin-bottom: 24px;
    }
/*========max-width:787========*/
}

/*=====================
area
=====================*/
.area .area_nayami{
    background-color: #1A3324;
    text-align: center;
    padding-top: 64px;
}

.area .area_nayami img{
    max-width: 600px;
}

@media screen and (max-width:787px) {
    .area .area_nayami{
        padding-top: 72px;
    }

    .area .area_nayami img{
        max-width: 250px;
    }

    .area .area_nayami .sp img{
        margin-bottom: 40px;
    }
/*========max-width:787========*/
}

/*=====================
area kaiketsu
=====================*/
.area .area_kaiketsu{
    background-image: url(../img/texture_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: -50px;
    padding: 100px 56px 80px;
}

.area .area_kaiketsu_top img {
    width: 600px;
    padding-bottom: 32px;
}

.area .area_kaiketsu .area_list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-bottom: 56px;
}

.area .area_kaiketsu .area_list .area_point img{
    margin-top: 24px;
}

.area .area_kaiketsu .area_list .area_point p{
    font-size: 24px;
}

.area .area_kaiketsu .area_list .area_point span{
    font-size: 14px;
    margin-left: 4px;
}

.area .area_kaiketsu .area_list .area_point img{
    width: 400px;
}

.area .area_kaiketsu .area_list .map img{
    width: 400px;
}

@media screen and (max-width:787px) {
    .area .area_kaiketsu{
        background-image: url(../img/texture_bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        margin-top: -50px;
        padding: 80px 24px 56px;
    }
    .area .area_kaiketsu_top img {
        max-width: 350px;
        padding-bottom: 24px;
    }

    .area .area_kaiketsu .area_list{
        display: block;
    }

    .area .area_kaiketsu .area_list .area_point{
        margin-bottom: 32px;
    }

    .area .area_kaiketsu .area_list .area_point img{
        width: 300px;
    }
    
    .area .area_kaiketsu .area_list .map img{
        width: 300px;
    }
/*========max-width:787========*/
}

/*=====================
Work
=====================*/
.work{
    background-color: #DCF1E5;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
}

.work h2{
    color: var(--green);
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 48px;
}

.work h2 span{
    color: var(--green);
    font-size: 42px;
    font-weight: bold;
}

/* .work ul{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
} */

.work ul li {
    background-color: var(--white);
    border: 1px solid #ff7926;
    width: 300px;
    height: auto;
}

.work ul li .work_title{
    background-color: #ff7926;
    padding: 8px 0 16px;
}

.work ul li .work_title h3{
    color: #fff699;
    /* text-shadow:  .5px .5px 1px #111111; */
    font-size: 28px;
    font-weight: bold;
    margin: 16px 0;
}

.work ul li .work_title p{
    color: var(--white);
    font-size: 18px;
}

.work ul li .work_detail{
    background-color: var(--white);
    padding: 18px 0 20px;
    line-height: 2;
    text-align: center;
}

.work ul li .work_detail span{
    background-color: var(--black);
    border-radius: 15px;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 4px 8px;
    margin-right: 8px;
}

.work ul li .work_detail p{
    font-size: 20px;
    margin-top: 10px;
}

.work .kaiketsu_end{
    margin: 0 auto;
    margin-top: 40px;
}
.work .kaiketsu_end img{
    display: block;
    margin: 0 auto;
}

.work .kaiketsu_end .kaiketsu_phrase{
    width: 600px;
}

.work .kaiketsu_end .kaiketsu_pic{
    width: 400px;
}

.work .btn_box{
    margin-top: 56px;
}

@media screen and (max-width:787px) {
    .work h2{
        font-size: 24px;
    }
    
    .work h2 span{
        font-size: 40px;
    }

    .work ul li .work_title h3{
        font-size: 24px;
    }

    .work ul li .work_title p{
        font-size: 16px;
    }

    .work ul li .work_detail{
        padding: 8px 0 28px;
    }

    .work ul li .work_detail span{
        font-size: 14px;
    }
    
    .work ul li .work_detail p{
        font-size: 18px;
        margin-top: 8px;
    }

    .work .kaiketsu_end .kaiketsu_phrase{
        max-width: 90%;
    }
    
    .work .kaiketsu_end .kaiketsu_pic{
        max-width: 250px;
        margin-bottom: 64px;
    }
/*========max-width:787========*/
}

/*=====================
Swiper
=====================*/
.container {
    margin-inline: auto;
    max-width: 600px;
    position: relative;
}
.swiper {
    max-width: 520px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    color: var(--black);
}

.swiper-pagination-bullet{
    background-color: var(--black);
}

@media screen and (max-width:787px) {
    .container {
        max-width: 375px;
    }
    .swiper {
        max-width: 300px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }
/*========max-width:787========*/
}
  
/*=====================
flow
=====================*/
.flow{
    background-image: url(../img/bg_green.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 64px 40px;
}

.flow h2{
    color: var(--white);
    font-size: 32px;
    margin-bottom: 40px;
}

.flow .flow_list{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

.flow .flow_list .flow_list_num{
    position: absolute;
    top: -8%;
    left: 40%;
    width: 40px;
    height: 40px;
    padding-top: 8px;
    background-color: var(--gray);
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
}

.flow .flow_list dl{
    position: relative;
    background-color: var(--white);
    max-width: 180px;
    height: auto;
}

.flow .flow_list dl dt{
    color: var(--white);
    font-size: 20px;
    height: 100px;
    padding: 24px;
}

.flow .flow_list dl .first{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/flow_01.jpg);
    background-size: cover;
}

.flow .flow_list dl .second{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/flow_02.jpg);
    background-size: cover;
}

.flow .flow_list dl .third{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/flow_03.jpg);
    background-size: cover;
}

.flow .flow_list dl .forth{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/flow_04.jpg);
    background-size: cover;
}

.flow .flow_list dl .fifth{
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/flow_05.jpg);
    background-size: cover;
}

.flow .flow_list dl dd{
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
}

.flow .btn_box{
    margin-top: 56px;
}

@media screen and (max-width:787px) {
    .flow{
        padding: 56px 24px;
    }
    .flow h2{
        font-size: 24px;
        margin-bottom: 32px;
    }
    .flow .flow_list{
        display: block;
    }

    .flow .flow_list .flow_list_num{
        position: static;
    }

    .flow .flow_list dl{
        position: static;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .flow .flow_list dl dt{
        color: var(--white);
        font-size: 20px;
        width: 320px;
        height: auto;
        padding: 24px;
    }

    .flow .flow_list dl dt span{
        display: block;
        border-bottom: 2px solid var(--white);
        color: var(--white);
        font-weight: bold;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 8px;
        width: fit-content;
    }
    
    .flow .flow_list dl dd{
        width: 320px;
        padding: 24px 16px;
    }

    .flow .flow_list dl .first{
        background-position: 50% 100%;
    }
    
    .flow .flow_list dl .second{
        background-position: 50% 40%;
    }
    
    .flow .flow_list dl .third{
        background-position: 50% 45%;
    }

    .flow .flow_list dl .forth{
        background-position: 20% 80%;
    }

    .flow .flow_list dl .fifth{
        background-position: 50% 40%;
    }

    .flow .btn_box{
        margin-top: 56px;
    }
    
/*========max-width:787========*/
}

/*=====================
trouble
=====================*/
.trouble{
    background-color: #1A3324;
    text-align: center;
    padding: 64px 40px;
}

.trouble h2 img{
    width: 600px;
    margin-bottom: 40px;
}

.trouble .trouble_list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.trouble .trouble_list .trouble_phrase img{
    max-width: 100%;
}

.trouble .trouble_list .trouble_phrase.down{
    margin-bottom: -120px;
}

.trouble .trouble_pic{
    max-width: 25%;
}

@media screen and (max-width:787px) {
    .trouble{
        padding: 56px 16px 16px;
    }

    .trouble h2 img{
        width:320px;
        margin-bottom: 24px;
    }

    .trouble .trouble_list{
        flex-wrap: wrap;
        gap: 10px;
        width: 350px;
        margin: 0 auto;
    }

    .trouble .trouble_list .trouble_phrase img{
        max-width: 160px;
    }
    
    .trouble .trouble_list .trouble_phrase.down{
        margin-bottom: 0;
    }
    
    .trouble .trouble_pic{
        max-width: 40%;
    }
/*========max-width:787========*/
}
/*=====================
solve
=====================*/
.solve {
    background-image: url(../img/texture_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    text-align: center;
    padding: 0 40px 62px;
}

.solve .solve_inner{
    margin: 0 auto;
}

.solve h2 img{
    width: 480px;
    margin-top: 24px;
}

.solve h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--green);
    margin: 42px 0;
}

.solve h3 span{
    color: var(--green);
    font-size: 48px;
    font-weight: bold;
    border-bottom: 2px solid var(--green);
    margin-left: 8px;
}

.solve .reason_list {
    display: flex;
    justify-content: center;
    gap: 16px;
    text-align: left;
}

.solve .reason_list li {
    width: 30%;
}

.solve .reason_img img{
    border-radius: 15px;
    width: 100%;
}

.solve .reason_list h4 {
    margin: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--green);
}

.solve .reason_list p {
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width:787px) {
    .solve {
        padding: 0 0 56px;
    }

    .solve .solve_inner{
        max-width: 350px;
        margin: 0 auto;
    }

    .solve h2 img{
        width: 100%;
        margin-top: 24px;
    }

    .solve h3 {
        background-color: var(--green);
        color: var(--white);
        font-size: 20px;
        font-family: var(--font_maru);
        font-weight: 500;
        margin: 24px 0;
        padding: 16px 0;
        line-height: 1.1;
    }

    .solve h3 span{
        color: var(--white);
        font-size: 32px;
        font-family: var(--font_maru);
        font-weight: bold;
    }

    .solve .reason_list {
        display: block;
        width: 320px;
        text-align: left;
        margin: 0 auto;
    }
    
    .solve .reason_list li {
        width: 100%;
        margin-bottom: 24px;
    }

    .reason_list h4 {
        margin: 12px 0;
    }
    
    .reason_list p {
        font-size: 16px;
    }
/*========max-width:787========*/
}

/*=====================
voice
=====================*/
.voice {
    background-color: #DCF1E5;
    padding: 64px 40px;
    text-align: center;
}

.voice_inner{
    max-width: 1000px;
    margin: 0 auto;
}

.voice h2 img {
    font-weight: bold;
    width: 510px;
    margin-bottom: 40px;
}

.voice ul.voice_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.voice .voice_list li {
    background: var(--white);
    border-radius: 15px;
    width: 48%;
    /* box-shadow: 5px 5px 15px rgba(0,0,0,0.03); */
    padding: 32px;
}

.voice_list .voice_cap {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.2px;
    /* line-height: 24px; */
}

.voice_head {
    /* display: flex; */
    margin-bottom: 30px;
    align-items: center;
}

.voice_detail span {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 3px 20px;
    margin-top: 8px;
    margin-bottom: 20px;
    width: max-content;
    border-radius: 100px;
}

.voice_img img {
    width: 30%;
    border-radius: 100%;
}

.voice_detail img{
    width: 100%;
}

.voice .btn_box{
    margin-top: 56px;
}

@media screen and (max-width:787px) {
    .voice {
        padding: 56px 16px;
    }

    .voice .voice_inner{
        max-width: 350px;
        margin: 0 auto;
    }
    
    .voice h2 img {
        font-weight: bold;
        width: 320px;
        margin-bottom: 32px;
    }

    .voice .voice_list {
        display: block;
        width: 100%;
    }
    
    .voice .voice_list li {
        padding: 24px;
        border-radius: 15px;
        margin-bottom: 20px;
        max-width: 320px;
        width: 100%;
    }
/*========max-width:787========*/
}

/*=====================
about
=====================*/
.about {
    background: linear-gradient(180deg, #f9f9f9 0%, #f9f9f9 30%, #dcf1e5 30%, #dcf1e5 100%);
    padding: 64px 40px;
}

.about_inner {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.about_img{
    width: 60%;
}

.about_img img{
    max-width: 90%;
}

.about_cap {
    width: 40%;
    padding: 60px 0;
}

.about_cap h2 span {
    display: block;
    color: var(--green);
    font-size: 38px;
    margin-bottom: 10px;
}

.about_cap h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--green);
    font-weight: bold;
    line-height: .9;
}

.about_cap p {
    line-height: 32px;
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width:787px) {
    .about {
        padding: 64px 16px 24px;
    }
    .about_inner {
        display: block;
        max-width: 350px;
    }

    .about_img{
        width: 90%;
    }
    
    .about_img img{
        max-width: 100%;
    }

    .about_cap {
        width: 100%;
        padding: 24px 0;
    }
    
    .about_cap h2 span {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about_cap h2 {
        font-size: 32px;
    }

    .about_cap p {
        line-height: 28px;
        font-size: 18px;
    }
/*========max-width:787========*/
}

/*=====================
Q&A
=====================*/
.qa {
    padding: 24px 64px;
    background: #dcf1e5;
}

.qa h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--green);
}

ul.qa_list {
    max-width: 1000px;
    margin: 0 auto;
}

ul.qa_list li {
    padding: 50px;
    background: var(--white);
    margin-bottom: 30px;
    border-radius: 15px;
}

ul.qa_list li:last-child{
    margin-bottom: 0;
}

.qa_list h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--green);
    display: flex;
    align-items: center;
}

.qa_list h3 span {
    padding: 3px 10px 6px;
    background: var(--green);
    color: var(--white);
    font-size: 16px;
    margin-right: 15px;
    border-radius: 6px;
}

ul.qa_list li p {
    font-size: 18px;
    line-height: 34px;
}

.qa .btn_box{
    margin-top: 40px;
    margin-bottom: 32px;
}

@media screen and (max-width:787px) {
    .qa {
        padding:16px 24px 56px;
    }

    .qa h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    ul.qa_list li {
        padding: 24px;
        margin-bottom: 24px;
    }

    .qa_list h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 24px;
        color: var(--green);
        display: flex;
        align-items: center;
    }
    
    .qa_list h3 span {
        padding: 3px 10px 6px;
        background: var(--green);
        color: var(--white);
        font-size: 16px;
        margin-right: 8px;
        border-radius: 6px;
    }
    
    ul.qa_list li p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
/*========max-width:787========*/
}

/*=====================
footer
=====================*/

footer{
    background-color: var(--green);
}

.footer_contents {
    text-align: center;
    padding: 24px;
}

.footer_contents a,
.footer_contents p{
    color: var(--white);
}

.footer_contents a{
    border-bottom: 1px solid var(--white);
}

.footer_contents a:hover{
    opacity: .8;
}