@charset "UTF-8";
/*=========================
default
==========================*/
body {
    margin: 0 auto;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #333;
    overflow-x: hidden;
}
img{
    max-width: 100%;
    vertical-align: top;
}



/*=========================
common
==========================*/
.pageWrap{
    max-width: 750px;
    margin: auto;
    width: 100%;
}
.caution{
    padding-left: 30px;
    margin: 20px 0;
    background-image: url(../images/caution_icon.png);
    background-position: top .2em left;
    background-repeat: no-repeat;
    font-size: 22px;
    line-height: 1.6;
}
.caution_link{
    display: block;
    padding-left: 30px;
    margin-bottom: 0;
    background-image: url(../images/link_icon.png);
    background-position: top .3em left;
    background-repeat: no-repeat;
    font-size: 22px;
    line-height: 1.6;
    text-decoration: none;
    color: #333333;
}
.caution_link-blue{
    display: block;
    padding-left: 30px;
    margin-bottom: 0;
    background-image: url(../images/link_icon.png);
    background-position: top .3em left;
    background-repeat: no-repeat;
    font-size: 22px;
    line-height: 1.6;
    text-decoration: none;
    color: #03b0e4;
}
.cv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30px auto 0;
}
.cv_btn{
    display: block;
    margin: auto;
    max-width: 714px;
    width: calc(714vw / 750 * 100);
    text-align: center;
}


.slider{
    max-width: 710px;
    width: calc(710vw / 750 * 100);
    margin: auto;
}
.slider_top img{
    display: block;
}
.slider_inner{
    position: relative;
    border-left: 8px solid #212e73;
    border-right: 18px solid #212e73;
    text-align: center;
    padding: 30px 40px;
}
.slider_inner-noborder{
    position: relative;
    text-align: center;
    padding: 30px 40px;
}

.slider_controls{
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
}
.slider_controls p{
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    cursor: pointer;
}
.slider_controls p[aria-disabled = true]{
    opacity: 0;
    cursor: default;
}
.slider_controls p:nth-of-type(1){
    left: 0;
    border-top: 4px solid #212e73;
    border-left: 4px solid #212e73;
    transform: rotate(-45deg);
}
.slider_controls p:nth-of-type(2){
    right: 0;
    border-top: 4px solid #212e73;
    border-right: 4px solid #212e73;
    transform: rotate(45deg);
}


@media screen and (max-width: 750px){
    .caution{
        padding-left: calc(30vw / 750 * 100);
        margin: calc(20vw / 750 * 100) 0;
        font-size: calc(22vw / 750 * 100);
        background-size: calc(24vw / 750 * 100);
    }
    .caution_link{
        padding-left: calc(30vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
        background-size: calc(24vw / 750 * 100);
    }
    .caution_link-blue{
        padding-left: calc(30vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
        background-size: calc(24vw / 750 * 100);
    }
    .cv{
        margin: calc(30vw / 750 * 100) auto 0;
    }


    .slider_inner{
        border-left: calc(8vw / 750 * 100) solid #212e73;
        border-right: calc(18vw / 750 * 100) solid #212e73;
        padding: calc(30vw / 750 * 100) calc(40vw / 750 * 100);
    }
    .slider_inner-noborder{
        padding: calc(30vw / 750 * 100) calc(40vw / 750 * 100);
    }
    .slider_controls p{
        width: calc(30vw / 750 * 100);
        height: calc(30vw / 750 * 100);
    }
    .slider_controls p:nth-of-type(1){
        border-top: calc(4vw / 750 * 100) solid #212e73;
        border-left: calc(4vw / 750 * 100) solid #212e73;
    }
    .slider_controls p:nth-of-type(2){
        border-top: calc(4vw / 750 * 100) solid #212e73;
        border-right: calc(4vw / 750 * 100) solid #212e73;
    }
}


/*=========================
header
==========================*/
.header{
    padding: 70px 20px 20px;
    width: 100%;
    background-color: #fff;
}
.header_inner{
    width: 100%;
    margin: auto;
    text-align: left;
}
.header_logo{
    max-width: 296px;
    width: calc(296vw / 750 * 100);
}

@media screen and (max-width: 750px){
    .header{
        padding: calc(70vw / 750 * 100) calc(20vw / 750 * 100) calc(20vw / 750 * 100);
        width: 100%;
        background-color: #fff;
    }

}



/*=========================
fv
==========================*/
.fv_main{
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 750px){
    .fv_main{
        width: 100%;
        margin: 0 auto calc(30vw / 750 * 100);
    }
}


/*=========================
notes
==========================*/
.notes{
    background-color: #e5e5e5;
    overflow: hidden;
}
.notes_inner{
    margin: auto;
    overflow: hidden;
}
.notes_accordion{
    position: relative;
    padding: 30px 80px 30px 50px;
    font-size: 22px;
    line-height: 1.4;
    cursor: pointer;
}
.notes_accordion:before{
    content: "";
    position: absolute;
    display: block;
    background-image: url(../images/caution_icon.png);
    background-size: 100%;
    width: 24px;
    height: 24px;
    top: 32px;
    left: 20px;
}
.notes_accordion:after{
    content: "";
    position: absolute;
    display: block;
    background-image: url(../images/accordion_icon.png);
    background-size: 100%;
    width: 42px;
    height: 42px;
    top: 32px;
    right: 20px;
}
.is-open.notes_accordion:after{
    transform: rotate(180deg);
}
.notes_main{
    display: none;
    padding: 30px 20px;
    background-color: #fff;
    margin-bottom: 40px;
}
.notes_main-open{
    padding: 30px 20px;
    background-color: #fff;
    margin: 40px auto 30px;
    max-width: 710px;
    width: calc(710vw / 750 * 100);
}
.notes_container:not(:last-of-type){
    margin-bottom: 35px;
}
.notes_title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: bold;
    color: #eb5505;
}
.notes_right{
    margin-top: 20px;
    font-size: 22px;
    text-align: right;
}

@media screen and (max-width: 750px){
    .notes_accordion{
        padding: calc(30vw / 750 * 100) calc(80vw / 750 * 100) calc(30vw / 750 * 100) calc(50vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }
    .notes_accordion:before{
        width: calc(24vw / 750 * 100);
        height: calc(24vw / 750 * 100);
        top: calc(32vw / 750 * 100);
        left: calc(20vw / 750 * 100);
    }
    .notes_accordion:after{
        width: calc(42vw / 750 * 100);
        height: calc(42vw / 750 * 100);
        top: calc(32vw / 750 * 100);
        right: calc(20vw / 750 * 100);
    }
    .notes_main{
        padding: calc(30vw / 750 * 100) calc(20vw / 750 * 100);
        margin-bottom: calc(40vw / 750 * 100);
    }
    .notes_main-open{
        padding: calc(30vw / 750 * 100) calc(20vw / 750 * 100);
        margin: calc(65vw / 750 * 100) auto calc(30vw / 750 * 100);
    }
    .notes_container:not(:last-of-type){
        margin-bottom: calc(35vw / 750 * 100);
    }
    .notes_title{
        margin-bottom: calc(20vw / 750 * 100);
        font-size: calc(24vw / 750 * 100);
    }
    .notes_right{
        margin-top: calc(20vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }
}



/*=========================
benefits
==========================*/
.benefits{
    margin: 90px auto 0;
}
.benefits_headline{
    width: 710px;
    margin: auto;
}
.benefits_container{
    margin-top: 40px;
    padding: 15px 0 40px;
    background-image: url(../images/benefits_bg.png);
    background-size: cover;
}
.benefits_container-white{
    margin-top: 75px;
    padding-bottom: 65px;
}
.benefits_title{
    display: block;
    margin: auto;
    width: 260px;
}
.benefits_title02{
    display: block;
    margin: auto;
    width: 375px;
    margin: -75px 0 0 135px;
}
.benefits_contents{
    padding-top: 70px;
    text-align: center;
}
.benefits_contents_rela{
    position: relative;
}
.benefits_contents_link{
    position: absolute;
    position: absolute;
    display: block;
    width: 78%;
    height: 13%;
    top: 72%;
    left: 11%;
}

@media screen and (max-width: 750px){
    .benefits{
        margin: calc(90vw / 750 * 100) auto 0;
    }
    .benefits_headline{
        width: calc(710vw / 750 * 100);
    }
    .benefits_container{
        margin-top: calc(40vw / 750 * 100);
        padding: calc(15vw / 750 * 100) 0 calc(40vw / 750 * 100);
    }
    .benefits_container-white{
        margin-top: calc(75vw / 750 * 100);
        padding-bottom: calc(65vw / 750 * 100);
    }
    .benefits_title{
        width: calc(260vw / 750 * 100);
    }
    .benefits_title02{
        width: calc(375vw / 750 * 100);
        margin: calc(-75vw / 750 * 100) 0 0 calc(135vw / 750 * 100);
    }
    .benefits_contents{
        padding: calc(30vw / 750 * 100);
    }
}


/*=========================
feature
==========================*/
.feature{
    overflow: hidden;
    background-image: url(../images/feature_bg.png);
    padding-bottom: 40px;
}
.feature_contents{
    display: block;
    margin: 40px auto;
    max-width: 710px;
    width: calc(710vw / 750 * 100);
}
.feature_container{
    position: relative;
    background-color: #fff;
    margin: auto;
    max-width: 710px;
    width: calc(710vw / 750 * 100);
    padding-bottom: 30px;
}
.feature_text{
    max-width: 590px;
    width: calc(590vw / 750 * 100);
    margin: 10px auto 0;
    font-size: 25px;
    line-height: 1.6;
}
.feature_text a{
    color: #03b0e4;
}

@media screen and (max-width: 750px){
    .feature{
        padding-bottom: calc(40vw / 750 * 100);
    }
    .feature_contents{
        margin: calc(40vw / 750 * 100) auto;
    }
    .feature_container{
        padding-bottom: calc(30vw/ 750 * 100);
    }
    .feature_text{
        font-size: calc(25vw / 750 * 100);
        margin: calc(10vw / 750 * 100) auto 0;
    }
}


/*=========================
flow
==========================*/
.flow{
    overflow: hidden;
}
.flow_contents{
    display: block;
    margin: 60px auto;
    max-width: 960px;
}
.flow_text{
    margin-top: 60px;
    text-align: center;
    font-size: 46px;
    line-height: 1.2;
    font-weight: bold;
    transform: skew(-10deg);
}

@media screen and (max-width: 750px){
    .flow_contents{
        margin: calc(60vw / 750 * 100) auto;
        max-width: calc(960vw / 750 * 100);
    }
    .flow_text{
        margin-top: calc(60vw / 750 * 100);
        font-size: calc(46vw / 750 * 100);
    }
}



/*=========================
campaign
==========================*/
.campaign{
    margin: 85px 0 65px;
}
.campaign_title{
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 30px;
    color: #ffff00;
    background-image: url(../images/headline_bg.png);
    font-weight: bold;
    font-style: italic;
}
.campaign_box{
    margin: 35px auto 0;
    max-width: 690px;
    width: calc(690vw / 750 * 100);
}
.campaign_headline{
    font-size: 22px;
    font-weight: bold;
    color: #212e73;
    margin-bottom: 5px;
}
.campaign_text{
    font-size: 22px;
    line-height: 1.4;
}
.mail{
    max-width: 690px;
    width: calc(690vw / 750 * 100);
    margin: 60px auto 0;
    text-align: center;
}
.mail_title{
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    background-color: #eb5505;
    font-weight: bold;
}
.mail_lead{
    font-size: 16px;
    margin-top: 15px;
}
.mail_btn{
    display: block;
    margin: 20px auto 0;
    max-width: 560px;
    width: calc(560vw / 750 * 100);
}
.mail_notes{
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.4;
}

@media screen and (max-width: 750px){
    .campaign{
        margin: calc(85vw / 750 * 100) 0 calc(65vw / 750 * 100);
    }
    .campaign_title{
        padding: calc(15vw / 750 * 100);
        font-size: calc(30vw / 750 * 100);
    }
    .campaign_box{
        margin: calc(35vw / 750 * 100) auto 0;
    }
    .campaign_headline{
        font-size: calc(22vw / 750 * 100);
        margin-bottom: calc(5vw / 750 * 100);
    }
    .campaign_text{
        font-size: calc(22vw / 750 * 100);
    }
    .mail{
        margin: calc(95vw / 750 * 100) auto 0;
    }
    .mail_title{
        padding: calc(15vw / 750 * 100);
        font-size: calc(30vw / 750 * 100);
    }
    .mail_lead{
        font-size: calc(24vw / 750 * 100);
        margin-top: calc(25vw / 750 * 100);
    }
    .mail_btn{
        margin: calc(25vw / 750 * 100) auto 0;
    }
    .mail_notes{
        margin-top: calc(5vw / 750 * 100);
        font-size: calc(14vw / 750 * 100);
        line-height: 1.4;
    }
}


/*=========================
footer
==========================*/
.footer{
    margin-top: 60px;
    color: #fff;
}
.footer_link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 22px;
    background-color: #333333;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
.footer_link:before{
    content: "";
    display: inline-block;
    background-image: url(../images/footer_link_icon.png);
    width: 18px;
    height: 18px;
    background-size: 100%;
    margin-right: 10px;
}
.footer_main{
    padding: 40px;
    line-height: 1.4;
    font-weight: bold;
    background-color: #898989;
}
.footer_text{
    font-size: 30px;
    text-align: center;
}
.footer_address{
    margin-top: 30px;
    font-size: 22px;
    text-align: center;
    font-weight: normal;
}
.footer_copy{
    padding: 30px;
    font-size: 22px;
    text-align: center;
    background-color: #747474;
}

@media screen and (max-width: 750px){
    .footer{
        margin-top: calc(60vw / 750 * 100);
    }
    .footer_link{
        padding: calc(15vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }
    .footer_link:before{
        width: calc(18vw / 750 * 100);
        height: calc(18vw / 750 * 100);
        margin-right: calc(10vw / 750 * 100);
    }
    .footer_main{
        padding: calc(40vw / 750 * 100);
    }
    .footer_text{
        font-size: calc(30vw / 750 * 100);
    }
    .footer_address{
        margin-top: calc(30vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }
    .footer_copy{
        padding: calc(30vw / 750 * 100);
        font-size: calc(22vw / 750 * 100);
    }
}