@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    user-select: none;
}
img{
    display: block;
    width: 100%;
    object-fit: contain;
}
p{
    display: block;
}
.wrapper{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
header>div{
    width: 50%;
}
header>div:first-child img{
    width: 90%;
    margin: 0 auto;
}
header>div:last-child{
    background-color: #ff7900;
    padding: 8px 0;
    text-align: center;
    font-weight: bold;
}
header>div:last-child p,
header>div:last-child a{
    color: #fff;
}
header>div:last-child p:first-child span{
    background-color: #fff;
    color: #ff7900;
    padding: 1px 4px;
    margin-right: 3px;
}
header>div:last-child p:nth-child(2) img{
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    position: relative;
    top: -3px;
}
header>div:last-child p:nth-child(2) a,
header>div:last-child p:nth-child(2) a span{
    font-size: 4.8vw;
    text-decoration: none;
}
header>div:last-child p:first-child,
header>div:last-child p:last-child{
    font-size: 10px;
    font-weight: 500;
}

.mt20{
    margin-top: 20px;
}
.cta_area{
    background-color: #1e9d34;
    padding: 20px 2.5%;
}
.cta_area.brown{
    background-color: #2c1300;
    margin-top: 50px;
}
.cta_area>div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
}
.cta_area>div a{
    display: block;
    width: 49%;
    position: relative;
    overflow: hidden;
}
.cta_area>div a::before{
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}
@keyframes shine{
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.pay_way{
    width: 95%;
    margin: 20px auto 30px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    border: 3px solid #1e9d34;
}
.pay_way>p{
    background-color: #1e9d34;
    text-align: center;
    color: #fff;
    padding: 0 0 4px;
    font-weight: 500;
}
.pay_way>img{
    width: 90%;
    margin: 15px auto;
}

.plan{
    background-image: url('../img/plan_bg.webp');
    background-size: cover;
    margin: 10px 0 20px;
    padding: 20px 2.5% 0;
}
.plan h2{
    color: #1e9d34;
    font-weight: 800;
    text-align: center;
    font-size: 38px;
}
.plan h2+div{
    display: flex;
    align-items: center;
    margin: 5px 0 15px;
}
.plan h2+div img{
    width: 20%;
    margin-right: 2%;
}
.plan h2+div p{
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    text-align: justify;
}
.plan h2+div p span{
    color: #1e9d34;
    font-size: 1.4em;
    font-weight: 800;
}
.anno{
    text-align: right;
    font-size: 12px;
}
.plan .anno{
    margin-top: 3px;
}
.plan_box{
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    border: 3px solid #1e9d34;
    margin: 20px auto;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.plan_box>p:first-child{
    background-color: #1e9d34;
    text-align: center;
    color: #fff;
    padding: 0 0 4px;
    font-weight: 500;
    font-size: 22px;
}
.plan_box>p:first-child span{
    font-size: 0.6em;
}
.plan_box>div{
    padding: 20px 10px 15px;
}
.plan_box>div>div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.plan_box>div>div:nth-child(3){
    margin-top: 10px;
}
.plan_box>div>div img{
    width: 24%;
}
.plan_box>div>div p{
    width: 24%;
    font-size: 3vw;
    text-align: center;
    color: #e51e23;
    font-weight: 700;
}
.plan_box+img{
    position: relative;
    z-index: 1;
    top: -25px;
}

.trouble{
    margin-top: 40px;
}
.text_box{
    width: 95%;
    text-align: justify;
    font-size: 4vw;
    margin: 0 auto;
}

.kind{
    padding: 20px 0;
    background-color: rgba(255,121,0,.1);
}
.kind_lead{
    width: 95%;
    margin-right: 0;
    margin-left: auto;
}
.kind>div{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    margin: -20px auto 0;
}
.kind>div>div{
    width: 49%;
    border: 2px solid #1e9d34;
    background-color: #fff;
    position: relative;
    margin-bottom: 10px;
}
.kind>div>div>p:first-child{
    background-color: #1e9d34;
    text-align: center;
    color: #fff;
    padding: 2px 0 5px;
    line-height: 1;
    font-weight: 500;
    font-size: 20px;
}
.kind>div>div>p:nth-of-type(2){
    font-size: 14px;
    text-align: justify;
    padding: 0 8px 8px;
}
.kind>div>div>img:last-of-type{
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
}

.self{
    padding: 20px 2.5% 40px;
    background-color: #2c1300;
}
.self h2{
    text-align: center;
    color: #fff;
    font-size: 25px;
    margin-bottom: 35px;
}
.self h2 span{
    background-color: #fff;
    color: #2c1300;
    font-size: 1.4em;
    line-height: 1;
    padding: 0 8px 3px;
    margin-right: 6px;
    font-weight: 800;
    position: relative;
    top: 4px;
}
.self .qa_box+.qa_box{
    margin-top: 15px;
}
.self .qa_box>p{
    width: 95%;
    background-color: #ff7900;
    color: #fff;
    padding: 8px 0 8px 15px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 3px 3px 0 rgb(0 0 0 / 10%);
    position: relative;
    z-index: 2;
}
.self .qa_box>div{
    background-color: #fff;
    padding: 30px 10px 10px;
    width: 95%;
    margin: -20px 0 0 auto;
}
.self .qa_box>div>p:first-child{
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -0.5px;
}
.self .qa_box>div>p:first-child span{
    color: #e51e23;
    font-size: 20px;
}
.self .qa_box>div>div{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.self .qa_box>div>div img{
    width: 35%;
}
.self .qa_box>div>div p{
    width: 62%;
    font-size: 14px;
    line-height: 1.2;
}

.trying h2{
    background-color: #ff7900;
    color: #000;
    text-align: center;
    padding: 10px 0;
    line-height: 1.3;
    margin: 40px 0 20px;
    font-weight: 600;
}
.trying h2 span{
    color: #fff;
    font-weight: 700;
    font-size: 1.4em;
}
.trying img{
    width: 90%;
    margin: 10px auto 0;
}
.trying .anno{
    font-size: 10px;
    margin-bottom: 15px;
}

.point{
    background-color: #1e9d34;
    padding: 123px 2.5% 20px;
    position: relative;
    margin-top: 60px;
}
.point_ttl{
    position: absolute;
    top: -30px;
    left: 0;
    width: 95%;
    z-index: 1;
}
.point>div{
    background-color: #fff;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    padding: 15px 15px 25px;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}
.point>div::after{
    content: '';
    color: #1e9d34;
    opacity: 0.1;
    font-size: 70px;
    right: 10px;
    bottom: 7px;
    font-weight: 700;
    position: absolute;
    line-height: 1;
}
.point>div:nth-of-type(1)::after{
    content: '01';
}
.point>div:nth-of-type(2)::after{
    content: '02';
}
.point>div:nth-of-type(3)::after{
    content: '03';
}
.point>div:nth-of-type(4)::after{
    content: '04';
}
.point>div>img{
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}
.point>div>p{
    position: relative;
    z-index: 2;
}
.point>div>p:first-of-type{
    color: #ff7900;
    font-weight: 700;
    font-size: 22px;
    padding: 2px 0 3px 5px;
    border-left: 3px solid #ff7900;
    line-height: 1;
    margin-bottom: 10px;
}
.point>div>p:first-of-type sup{
    font-size: 0.6em;
}
.point>div>p:last-child{
    font-size: 14px;
}
.point+.anno{
    text-align: left;
    width: 95%;
    margin: 5px auto;
}

.flow01{
    margin-top: 40px;
    background-color: #fff1e5;
    padding-bottom: 20px;
}
.flow02{
    background-color: #e9e7e5;
    padding-bottom: 20px;
}
.flow01 h2,
.flow02 h2{
    background-color: #ff7900;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    position: relative;
    padding: 20px 0;
    line-height: 1;
}
.flow02 h2{
    background-color: #2c1300;
    font-size: 26px;
}
.flow01 h2>img,
.flow02 h2>img{
    position: absolute;
    top: 90%;
    right: 1%;
    height: 100px;
    width: auto;
}
.taC{
    text-align: center;
}
.flow01 .taC,
.flow02 .taC{
    margin: 20px auto;
    font-weight: 500;
    font-size: 14px;
}

.flow01 .flow_box,
.flow02 .flow_box{
    width: 95%;
    margin: 0 auto 20px;
    box-shadow: 3px 3px 0 rgb(0 0 0 / 10%);
}
.flow01 .flow_box>p,
.flow02 .flow_box>p{
    display: inline;
    background-color: #ff7900;
    color: #fff;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.flow02 .flow_box>p{
    background-color: #2c1300;
}
.flow01 .flow_box>p sup{
    font-size: 0.6em;
}
.flow01 .flow_box>div,
.flow02 .flow_box>div{
    width: 95%;
    margin-left: auto;
    margin-top: -10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
    padding: 30px 10px 20px;
}
.flow01 .flow_box>div img,
.flow02 .flow_box>div img{
    width: 35%;
    margin-right: 2%;
}
.flow01 .flow_box>div p,
.flow02 .flow_box>div p{
    font-size: 14px;
    text-align: justify;
}
.flow01 .anno{
    margin-top: -15px;
}

.qa{
    margin-top: 40px;
}
.qa h2{
    font-size: 28px;
    text-align: center;
    font-weight: 700;
}
.qa h2 img{
    display: inline-block;
    width: 40px;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: -10px;
}
.qa .accordion{
    width: 95%;
    margin: 20px auto;
}
.qa .acc-ttl{
    border: 2px solid #1e9d34;
    line-height: 1.3;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
}
.qa .acc-ttl::before,
.qa .acc-ttl::after{
    display: block;
    content: '';
    width: 3px;
    height: 30%;
    background-color: #1e9d34;
    position: absolute;
    top: 35%;
    right: 20px;
    transform: rotate(90deg);
}
.qa .acc-ttl::after{
    transform: rotate(0);
    transition: all 0.3s;
}
.qa .acc-ttl.open::after{
    transform: rotate(90deg);
}
.qa .acc-ttl>span{
    display: inline-block;
    font-size: 27px;
    font-weight: 800;
    padding: 3px 13px 10px 10px;
    text-align: center;
    color: #fff;
    background-color: #1e9d34;
    margin-right: 10px;
}
.qa .acc-content{
    background-color: #e8f5ea;
    padding: 20px;
    display: none;
}
.qa .acc-content+.acc-ttl{
    margin-top: 15px;
}

.voice{
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 14px 14px;
    background-repeat: repeat;
    background-position: center center;
    margin: 70px 0 10px;
}
.voice h2{
    background-color: #1e9d34;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 0;
    position: relative;
    color: #fff;
}
.voice h2 img{
    position: absolute;
    top: -20px;
    left: 25%;
    width: 50%;
}
.voice h2+img{
    width: 90%;
    margin: 20px auto;
}
.voice_child{
    border: 2px solid #1e9d34;
    background-color: #fff;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.3s;
}
.voice_child.slick-active{
    opacity: 1;
    transform: scale(1);
}
.voice_child p:nth-of-type(1){
    background-color: #1e9d34;
    padding: 3px 0 5px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
}
.voice_child img{
    width: 95%;
    margin: 10px auto;
}
.voice_child p:nth-of-type(2),
.voice_child p:nth-of-type(3){
    width: 95%;
    margin: 0 auto 10px;
}
.voice_child p:nth-of-type(2){
    text-align: justify;
}
.voice_child p:nth-of-type(3){
    text-align: right;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before{
    color: #1e9d34;
}

.colona{
    background-color: #2c1300;
    padding: 20px;
}
.colona>div{
    background-color: #fff;
    padding: 15px;
}
.colona h2{
    color: #e51e23;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
}
.colona h2+p{
    text-align: center;
    font-size: 12px;
}
.colona h2+p br{
    display: none;
}
.colona .flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px auto;
}
.colona .flex p{
    width: 32%;
    text-align: center;
    font-size: 12px;
}
.colona .flex p img{
    width: 80%;
    margin: 0 auto 5px;
}
.colona .flex p:nth-child(4){
    color: #ff7900;
}
.colona .flex p:nth-child(5){
    color: #28afed;
}
.colona .flex p:nth-child(6){
    color: #1e9d34;
}
.colona>div>div:last-child{
    margin-top: 10px;
}
.colona>div>div:last-child .taC{
    font-weight: 500;
    font-size: 16px;
}
.colona>div>div:last-child ul{
    list-style: none;
    font-size: 12px;
}
.colona>div>div:last-child .anno{
    text-align: left;
    font-size: 10px;
    margin-top: 5px;
}

.area{
    margin: 40px auto 20px;
    padding: 0 2.5%;
}
.area>img:first-child{
    margin-bottom: 20px;
}
.area_box{
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}
.area_box p:first-child{
    width: 30%;
    text-align: center;
    font-weight: 600;
}
.area_box p:last-child{
    width: 67%;
    font-weight: 500;
}
.area_box.ab01{
    border: 2px solid #1e9d34;
    box-shadow: 3px 3px 0 #d2ebd6;
}
.area_box.ab01 p:first-child{
    color: #1e9d34;
}
.area_box.ab02{
    border: 2px solid #00a0d9;
    box-shadow: 3px 3px 0 #ccecf7;
}
.area_box.ab02 p:first-child{
    color: #00a0d9;
}
.area_box.ab03{
    border: 2px solid #e181a9;
    box-shadow: 3px 3px 0 #f9e6ee;
}
.area_box.ab03 p:first-child{
    color: #e181a9;
}
.area_box.ab04{
    border: 2px solid #fabe00;
    box-shadow: 3px 3px 0 #fef2cc;
}
.area_box.ab04 p:first-child{
    color: #fabe00;
}
.area_box.ab05{
    border: 2px solid #ff7900;
    box-shadow: 3px 3px 0 #ffe4cc;
}
.area_box.ab05 p:first-child{
    color: #ff7900;
}
.area_box.ab06{
    border: 2px solid #2a69b3;
    box-shadow: 3px 3px 0 #d4e1f0;
}
.area_box.ab06 p:first-child{
    color: #2a69b3;
}
.area_map{
    margin: 30px auto 10px;
}
.area .taC{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

footer{
    margin-top: 30px;
    padding: 20px 0;
    background-color: #1e9d34;
    color: #fff;
}
footer>img:first-child{
    width: 60%;
    margin: 0 auto 20px;
}
footer>img+div{
    display: flex;
    align-items: center;
    font-size: 13px;
}
footer>img+div>p:first-child{
    width: 30%;
    text-align: center;
    margin-right: 3%;
}
footer .taC{
    margin: 10px auto;
}
footer .taC a{
    color: #fff;
}
footer .contact{
    display: block;
    width: 90%;
    margin: 10px auto 10px;
}
footer>div:last-child{
    border-top: 1px solid #fff;
    padding-top: 15px;
    font-size: 12px;
    margin-top: 20px;
}
footer>div:last-child p{
    width: 90%;
    margin: 0 auto;
}
footer>div:last-child div{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 20px auto 0;
}
footer>div:last-child div p{
    width: 31%;
}



@media screen and (min-width:691px){
    header{
        left: auto;
        right: auto;
    }
    header>div:first-child img{
        width: 80%;
    }
    .plan_box>div>div p {
        font-size: 18px;
    }
    header>div:last-child p:first-child,
    header>div:last-child p:last-child{
        font-size: 14px;
    }
    header>div:last-child p:first-child span{
        padding: 1px 6px;
    }
    header>div:last-child p:nth-child(2){
        margin: 6px auto -5px;
    }
    header>div:last-child p:nth-child(2) img{
        width: 30px;
        top: -7px;
        margin-right: 6px;
    }
    header>div:last-child p:nth-child(2) a,
    header>div:last-child p:nth-child(2) a span{
        font-size: 30px;
        line-height: 1;
    }
    .text_box{
        font-size: 18px;
    }
    .self{
        padding-top: 40px;
    }
    .self h2{
        font-size: 36px;
    }
    .self .qa_box>p,
    .flow01 .flow_box>p,
    .flow02 .flow_box>p{
        font-size: 20px;
        padding-top: 6px;
    }
    .self .qa_box>div>div img{
        width: 30%;
    }
    .self .qa_box>div>div p{
        width: 67%;
        line-height: 1.5;
    }
    .point{
        margin-top: 80px;
        padding-top: 190px;
    }
    .point_ttl{
        top: -55px;
    }
    .point>div>p:first-of-type{
        font-size: 24px;
        margin-bottom: 13px;
    }
    .flow01 h2,
    .flow02 h2{
        font-size: 40px;
    }
    .flow01 .taC,
    .flow02 .taC{
        font-size: 20px;
    }
    .flow01 h2>img,
    .flow02 h2>img{
        height: 110px;
    }
    .flow01 .flow_box>div p,
    .flow02 .flow_box>div p{
        font-size: 16px;
        line-height: 1.5;
    }
    .qa .acc-content{
        padding-top: 15px;
    }
    .voice h2{
        padding: 30px 0;
    }
    .voice h2 img{
        width: 46%;
        left: 27%;
        top: -25px;
    }
    .voice h2+img{
        width: 80%;
    }
    .area_box p:first-child{
        width: 20%;
    }
    .area_box p:last-child{
        width: 77%;
    }
    .area_box p:last-child br,
    .colona h2 br{
        display: none;
    }
    .colona h2+p,
    .colona .flex p{
        font-size: 15px;
    }
    .colona h2+p br{
        display: block;
    }
    .colona>div>div:last-child .taC{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .colona>div>div:last-child ul{
        font-size: 14px;
    }
    .colona>div>div:last-child .anno{
        font-size: 12px;
    }
}

.anchor {
    padding-top: 100px;
    margin-top: -100px; 
}