@charset "utf-8"; 
:root {--main-color: #0a366e;}
:root {--sub-color: #506e95;}
:root {--sub-color02: #8cbbe7;}
:root {--text-color: #232f40;}
section{
	width: 100%;
    padding: 90px 0;
	position: relative;
	overflow: hidden;
}
.inner{
	width: 92%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}
.inner1000{
	max-width: 1000px;
}
.inner1050{
	max-width: 1050px;
}
.inner1070{
	max-width: 1070px;
}
.inner1100{
	max-width: 1100px;
}
.inner1230{
	max-width: 1230px;
}
p{
	font-size: 16px;
	line-height: 1.8;
    letter-spacing: 0.12em;
}
p.small{
	font-size: 14px;
}
h1,h2,h3,h4,h5{
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: var(--main-color);
}
.bg{
    background: var(--main-color);
}
.bg02{
    background: #fafafa;
}
h2.title{
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 34px;
    letter-spacing: 0.15em;
    margin: 0 0 10px;
}
h2.title span{
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
}
h3.title{
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 30px;
    letter-spacing: 0.1em;
}
h3.title span{
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    color: var(--sub-color02);
    letter-spacing: 0.05em;
}
.bg h2.title,
.bg h2.title + p,
.bg h2.title span{
    color: #FFF;
}
.btnA{
    width: 100%;
    max-width: 450px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #FFF;
    border: solid 1px #FFF;
    border-radius: 30px;
    background: var(--main-color);
    margin: 0 auto;
    position: relative;
    transition: .5s;
}
.btnA::after{
    display: block;
    content: "";
    width: 28px;
    height: 28px;
    background: center / contain no-repeat url("../img/icon_arrow.svg");
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.btnA:hover{
    opacity: 1;
    background: var(--sub-color);
}
.cta{
    display: flex;
    align-items: center;
    width: 420px;
    height: 60px;
    border-radius: 40px;
    background: var(--sub-color);
    transition: .5s;
    position: relative;
}
.cta p{
    max-width: fit-content !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-align: center !important;
    color: #FFF !important;
    margin: 0 0 0 25px !important;
}
.cta a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 100%;
    font-size: 24px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.04em;
    color: #FFF;
    border-radius: 40px;
    background: var(--main-color);
    position: absolute;
    right: 0;
    transition: .5s;
}
.cta a::before{
    display: block;
    content: "";
    width: 21px;
    height: 21px;
    background: center / contain no-repeat url("../img/icon_tel.svg");
    margin: 0 5px 0 0;
}
.cta:hover a{
    width: 100%;
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    h2.title{
        font-size: 30px;
    }
}
@media screen and (max-width: 820px) {
    section{
        padding: 60px 0;
    }
    p{
        font-size: 14px;
    }
    p.small{
        font-size: 12px;
    }
    h2.title{
        font-size: 30px;
    }
    h2.title span{
        font-size: 12px;
    }
    h3.title{
        font-size: 28px;
    }
    h3.title span{
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {
    .cta{
        width: 380px;
    }
    .cta a{
        max-width: 230px;
    }
    .cta p{
        font-size: 12px !important;
    }
    .cta a{
        font-size: 22px;
    }
    .cta a::before{
        width: 19px;
        height: 19px;
    }
}
@media screen and (max-width: 520px) {
    .cta{
        width: 320px;
        height: 50px;
        margin: 0 auto;
    }
    .cta p{
        font-size: 10px !important;
    }
    .cta a{
        width: 190px;
        font-size: 19px;
        padding: 0 0 3px;
    }
    .cta a::before{
        width: 18px;
        height: 18px;
    }
}
@media screen and (max-width: 428px) {
    p{
        font-size: 13px;
    }
    p.small{
        font-size: 11px;
    }
    h2.title{
        font-size: 26px;
    }
    h2.title span{
        font-size: 11px;
    }
    h3.title{
        font-size: 24px;
    }
    h3.title span{
        font-size: 11px;
    }
}
/*==================================================================================================*/
/*fv*/
.header{
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    position: fixed;
    z-index: 1000;
    transition: .5s;
}
.header h1{
    width: 111px;
}
#header.movement .header{
    height: 100px;
    background: rgba(255,255,255,0.90);
    box-shadow: 0 0 9px #999;
}
@media screen and (max-width: 768px) {
    .header{
        height: 80px;
        padding: 0 20px;
    }
    .header h1{
        width: 80px;
    }
    .header .cta{
        width: 170px;
        height: 45px;
        margin: 0;
    }
    .header .cta p{
        display: none;
    }
    .header .cta a{
        width: 170px;
        font-size: 18px;
    }
    .header .cta a::before{
        width: 16px;
        height: 16px;
    }
}
/*==================================================*/
.fv{
    height: 768px;
    padding: 140px 0 0;
    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: 250px 560px;
    background-repeat: repeat;
    background-position: center center;
}
.fv .inner{
    height: 100%;
    align-content: space-between;
}
.fv .titleBox{
    width: 800px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}
.fv .titleBox h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
}
.fv .titleBox h1{
    font-family: 'Noto Serif JP', serif;
    font-size: 65px;
    letter-spacing: 0;
    margin: 0 0 20px;
    position: relative;
    left: -10px;
}
.fv .titleBox p{
    font-size: 18px;
    color: var(--main-color);
    margin: 0 0 40px;
}
.fv span{
    display: block;
    font-family: "lato", sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #6f7a89;
    position: absolute;
    bottom: 40px;
    z-index: 10;
}
.fv .imageBox{
    width: 1360px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.fv .imageBox img:nth-child(1){
    width: 550px;
    position: absolute;
    right: -66px;
    bottom: 0;
    z-index: 1;
}
.fv .imageBox img:nth-child(2){
    width: 180px;
    position: absolute;
    right: 495px;
    bottom: 250px;
    z-index: 3;
}
.fv .imageBox img:nth-child(3){
    width: 467px;
    position: absolute;
    right: 430px;
    bottom: 0;
    z-index: 2;
}
@media screen and (max-width: 1200px) {
    .fv{
        height: 720px;
    }
    .fv .imageBox img:nth-child(1){
        width: 450px;
    }
    .fv .imageBox img:nth-child(2) {
        width: 140px;
        right: 392px;
        bottom: 180px;
    }
    .fv .imageBox img:nth-child(3){
        width: 340px;
        right: 350px;
    }
}
@media screen and (max-width: 1000px) {
    .fv{
        height: 810px;
    }
}
@media screen and (max-width: 820px) {
    #header.movement .header{
        height: 85px;
    }
    .header{
        padding: 0 30px 0 40px;
    }
    .fv{
        height: 1030px;
        padding: 210px 0 0;
    }
    .fv span{
        color: #FFF;
        text-shadow: 0 0 5px #999;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}
@media screen and (max-width: 768px) {
    .fv{
        height: 100vh;
    }
}
@media screen and (max-width: 428px) {
    .header{
        padding: 0 15px 0 20px;
    }
    .fv{
        height: 730px;
        padding: 120px 0 0;
    }
    .fv .titleBox h2{
        font-size: 15px;
        margin: 0;
    }
    .fv .titleBox h1{
        font-size: 45px;
        margin: 0 0 15px;
    }
    .fv .titleBox p{
        font-size: 14px;
    }
    .fv span{
        width: 100%;
        text-align: center;
        bottom: 10px;
    }
    .fv .imageBox{
        width: 100%;
    }
    .fv .imageBox img:nth-child(1){
        width: 70%;
        right: -20px;
        bottom: 100px;
    }
    .fv .imageBox img:nth-child(2) {
        width: 35%;
        right: auto;
        bottom: 135px;
        left: -5px;
    }
    .fv .imageBox img:nth-child(3) {
        width: 70%;
        right: auto;
        left: -20px;
    }
}
/*==================================================================================================*/
/*about*/
.about h2.title{
    text-align: center;
}
.about h2.title + p{
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: bold;
    margin: 0 0 60px;
}
.about ul{
    margin: 0 auto 30px;
}
.about ul li{
    width: 32%;
    max-width: 320px;
    padding: 35px 40px 40px;
    border-radius: 20px;
    background: #FFF;
    position: relative;
    margin: 0 0 30px;
}
.about ul li::before{
    display: block;
    content: "CASE01";
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 12px;
    color: var(--sub-color02);
    transform: rotate(90deg);
    position: absolute;
    top: 26px;
    left: 3px;
}
.about ul li:nth-child(2)::before{
    content: "CASE02";
}
.about ul li:nth-child(3)::before{
    content: "CASE03";
}
.about ul li:nth-child(4)::before{
    content: "CASE04";
}
.about ul li:nth-child(5)::before{
    content: "CASE05";
}
.about ul li:nth-child(6)::before{
    content: "CASE06";
}
.about ul li p{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 25px;
}
.about ul li img{
    display: block;
    width: auto;
    height: 60px;
    margin: 0 auto;
}
.about .box{
    padding: 30px 0;
    border-radius: 6px;
    background: #FFF;
    margin: 0 0 45px;
}
.about .box h4{
    display: flex;
    width: 384px;
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 10px 80px;
    border-right: solid 1px #d1d1d1;
}
.about .box p{
    width: calc( 100% - 384px );
    font-size: 14px;
    color: var(--main-color);
    padding: 0 60px;
}
.about a.btnA{
    margin: 0 auto 10px;
}
@media screen and (max-width: 1000px) {
    .about .inner1050{
        max-width: 700px;
    }
    .about ul li{
        width: 48%;
    }
    /**/
    .about .box h4{
        justify-content: center;
        width: 210px;
        font-size: 20px;
        padding: 25px 0;
    }
    .about .box p {
        width: calc( 100% - 210px );
        font-size: 13px;
        padding: 0 20px;
    }
}
@media screen and (max-width: 768px) {
    .about .inner1050{
        max-width: 600px;
    }
    .about ul li{
        padding: 25px 40px;
    }
    .about ul li p{
        font-size: 14px;
    }
    /**/
    .about .box h4{
        width: 80%;
        justify-content: flex-start;
        font-size: 22px;
        border-right: none;
        padding: 0;
        margin: 0 auto 20px;
    }
    .about .box p {
        width: 80%;
        padding: 0;
        margin: 0 auto;
    }
}
@media screen and (max-width: 620px) {
    .about ul{
        max-width: 280px;
    }
    .about ul li{
        width: 100%;
    }
}

/*==================================================================================================*/
/*case*/
.case::before{
    display: block;
    content: "";
    width: 780px;
    height: 890px;
    background: center / contain no-repeat url("../img/case_bg.png");
    position: absolute;
    top: -15px;
    right: -5px;
}
.case .boxText{
    width: 100%;
    max-width: 520px;
}
.case .boxText h2.title{
    margin: 0 0 20px;
}
.case .boxText h2.title + p{
    margin: 0 0 10px;
}
.case .boxText p.small{
    margin: 0 0 15px;
}
.case .boxText div.box{
    border-radius: 15px;
    background: #fafafa;
    padding: 30px;
    margin: 0 0 75px;
}
.case .boxText div.box p{
    max-width: fit-content;
    font-size: 15px;
    line-height: 1.4;
    color: var(--main-color);
    margin: 0 auto 20px;
}
.case .boxText div.box .cta{
    margin: 0 auto;
}
.case .boxImg{
    width: calc( 100% - 530px);
    max-width: 440px;
    margin: 0 0 50px;
}
.case .boxImg p{
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 20px;
    text-align: center;
    color: var(--main-color);
    margin: 0 0 25px;
}
.case .boxImg img{
    display: block;
    width: 100%;
    margin: 0 0 35px;
}
@media screen and (max-width: 1000px) {
    .case .inner{
        max-width: 700px;
    }
    .case .boxImg{
        width: 100%;
        max-width: 520px;
        margin: 0;
    }
    .case .boxImg img{
        max-width: 380px;
        margin: 0 auto 20px;
    }
}
@media screen and (max-width: 820px) {
    .case h2.title{
        font-size: 28px;
    }
    .case .boxText div.box p{
        font-size: 13px;
    }
}
@media screen and (max-width: 600px) {
    .case .inner{
        justify-content: center;
    }
    .case .boxText div.box{
        margin: 0 0 40px;
    }
    .case .boxImg p{
        font-size: 17px;
    }
    .case .boxImg img{
        max-width: 300px;
    }
}
@media screen and (max-width: 428px) {
    .case::before{
        right: -85px;
    }
    .case h2.title{
        font-size: 24px;
    }
    .case .boxText div.box{
        padding: 30px 20px;
    }
    .case .boxImg {
        width: 94%;
    }
}
/*==================================================================================================*/
/*price*/
.price{
    padding: 0 0 60px;
    margin: 0 auto 60px;
    position: relative;
}
.price::before{
    display: block;
    content: "";
    width: 300vw;
    border-bottom: solid 1px #ececec;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.price h3.title{
    text-align: center;
    margin: 0 0 30px;
}
.price ul li{
    display: flex;
    flex-wrap: wrap;
    width: 49%;
    max-width: 520px;
    padding: 35px 40px;
    border: solid 1px #eeeeee;
    border-radius: 20px;
    background: #FFF;
    margin: 0 0 25px;
}
.price ul li:nth-child(5),
.price ul li:last-child{
    margin: 0;
}
.price ul li h4{
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--main-color);
    margin: 0 0 7px;
}
.price ul li h4.title02{
    font-size: 24px;
    margin: 0 0 20px;
}
.price ul li h4 span{
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 0 0 0 15px;
}
.price ul li p{
    font-size: 14px;
    letter-spacing: 0.1em;
}
.price ul li p.small{
    font-size: 13px;
    margin: 10px 0 0;
}
/*料金部分*/
.moneyBox p.pointText{
    width: 146px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    color: #FFF;
    border-radius: 5px;
    background: var(--main-color);
}
.moneyBox p.pointText span{
    font-size: 24px;
    font-family: yu-mincho-pr6n, sans-serif;
    margin: 0 0 0 5px;
}
.moneyBox p.money{
    width: calc( 100% - 160px );
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 63px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: right;
    color: var(--main-color);
}
.moneyBox p.money span{
    font-size: 31px;
}
/*１つ目のみ*/
.price ul li:nth-child(1) div.moneyBox p.money{
    color: #fc3f2b;
}
/*２つ目のみ*/
.price ul li:nth-child(2) div.moneyBox{
    margin: 15px 0 0;
}
/*３つ目以降*/
.price ul li img{
    width: auto;
    height: 75px;
    margin: 0 0 25px;
}
/*４つ目のみ*/
.price ul li:nth-child(4) div.moneyBox{
    margin: 20px 0 0;
}
/*６つ目のみ*/
.price ul li:nth-child(6) img{
    width: 100%;
    height: auto;
    border-radius: 7px;
}
/*５つ目のみ*/
div.moneyOther{
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1.5px var(--sub-color);
    padding: 20px 0 0;
}
div.moneyOther h5{
    width: 100%;
    font-size: 13px;
    color: var(--text-color);
    margin: 0 0 5px;
}
div.moneyOther h5::first-letter{
    font-size: 10px;
    color: var(--sub-color02);
}
div.moneyOther dl{
    width: 50%;
    border: solid 1px #eeeeee;
}
div.moneyOther dl:nth-child(2){
    border-right: solid 1px #eeeeee;
}
div.moneyOther dl:nth-child(3){
    border-left: none;
}
div.moneyOther dl dt{
    font-size: 14px;
    text-align: center;
    background: #fafafa;
    padding: 10px 0;
}
div.moneyOther dl dd{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}
div.moneyOther dl dd span{
    font-size: 14px;
    font-weight: normal;
}
/*６つ目のみ*/
div.textOther{
    margin: 5px 0;
}
div.textOther p{
    font-size: 14px;
    line-height: 1.6;
}
div.textOther p::first-letter{
    font-size: 10px;
    color: var(--sub-color02);
}
.price ul li:last-child div.moneyBox{
    margin: 15px 0 0;
}
p.lastText{
    font-size: 13px;
    text-align: center;
    color: #919191; 
    margin: 0 0 10px;
}
.price ul li:last-child p.lastText{
    margin: 0;
}
@media screen and (max-width: 1100px) {
    .moneyBox p.money{
        font-size: 50px;
    }
    .moneyBox p.money span {
        font-size: 28px;
    }
}
@media screen and (max-width: 1000px) {
    .price ul{
        justify-content: center;
    }
    .price ul li{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    
}
@media screen and (max-width: 500px) {
    .price h3.title{
        margin: 0 0 15px;
    }
    .price ul li{
        padding: 25px 30px;
    }
    .price ul li:nth-child(5){
        margin: 0 0 25px;
    }
    .price ul li h4{
        font-size: 22px;
    }
    .price ul li h4.title02{
        font-size: 20px;
    }
    .price ul li h4 span{
        font-size: 15px;
        margin: 0 0 0 10px;
    }
    .price ul li img {
        width: 100%;
        height: auto;
    }
    .price ul li p{
        font-size: 13px;
    }
    .moneyBox{
        margin: 15px 0 0 ;
    }
    .moneyBox p.pointText {
        width: fit-content;
        padding: 0 15px;
        height: 30px;
        font-size: 12px;
    }
    .moneyBox p.pointText span{
        font-size: 18px;
    }
    .moneyBox p.money{
        width: 100%;
        text-align: left;
        margin: 5px 0 0;
    }
    p.lastText{
        font-size: 12px;
        text-align: left;
    }
    div.textOther p{
        font-size: 12px;
    }
}
/*==================================================================================================*/
/*option*/
.option h3{
    width: 100%;
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #FFF;
    padding: 10px 0;
    border-radius: 10px;
    background: var(--sub-color);
    margin: 0 0 40px;
}
.option ul li{
    display: flex;
    width: 49%;
    max-width: 520px;
    border: solid 1px #eeeeee;
    border-radius: 20px;
    background: #FFF;
    margin: 0 0 20px;
    overflow: hidden;
}
.option ul li img{
    width: 170px;
}
.option ul li div{
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: calc( 100% - 170px);
    padding: 10px 25px 10px 30px;
}
h4.title{
    font-family: yu-mincho-pr6n, sans-serif;
    font-size: 24px;
    color: var(--sub-color);
    margin: 0 0 5px;
}
h4.title span{
    font-size: 14px;
}
.option ul li div p{
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0 0 15px;
}
.option ul li div a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 25px;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--sub-color);
    border: solid 1px var(--sub-color);
    border-radius: 20px;
    background: #FFF;
    position: relative;
    transition: .5s;
}
.option ul li div a::before{
    display: block;
    content: "";
    width: 13px;
    height: 13px;
    background: center / contain no-repeat url("../img/icon_arrow02.svg");
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}
.option ul li div a:hover{
    color: #FFF;
    background: var(--sub-color02);
}
@media screen and (max-width: 1000px) {
    .option ul{
        justify-content: center;
    }
    .option ul li{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 428px) {
    .option h3{
        font-size: 18px;
        padding: 10px 0;
    }
    .option ul li{
        border-radius: 10px;
    } 
    .option ul li img {
        width: 100px;
    }
    .option ul li div{
        width: calc( 100% - 100px);
        padding: 15px;
    }
    h4.title{
        font-size: 18px;
    }
    h4.title span{
        font-size: 11px;
    }
    .option ul li div p{
        font-size: 13px;
        margin: 0 0 10px;
    }
}
/*ポップアップ記述はjs.css*/
/*==================================================================================================*/
/*other*/
.other{
    padding: 10px 0;
}
.other ul li{
    padding: 10px;
    position: relative;
    right: -80px;
}
.other ul li:nth-child(1)::before{
    width: 300vw;
    display: block;
    content: "";
    border-bottom: solid 1px #efefef;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.other ul li div{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 470px;
}
.other ul li img{
    display: block;
    width: calc( 100% - 490px );
    max-width: 640px;
}
.other ul li div h3.title{
    line-height: 1.4;
    margin: 0 0 25px;
}
@media screen and (max-width: 1359px) {
    .other ul li{
        right: -40px;
    }
}
@media screen and (max-width: 1200px) {
    .other ul li{
        right: 0;
    }
}
@media screen and (max-width: 1000px) {
    .other{
        padding: 0 0 60px;
    }
    .other ul li:nth-child(1) {
        border-bottom: none;
        margin: 0 0 30px;
    }
    .other ul li {
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }
    .other ul li div{
        width: 85%;
        margin: 0 auto;
        position: relative;
        top: -17px;
        z-index: 1;
    }
    .other ul li div h3.title{
        margin: 0 0 15px;
    }
    .other ul li div h3.title,
    .other ul li div p{
        max-width: 700px;
    }
    .other ul li img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        opacity: .2;
    }
    .other ul li:nth-child(1) {
        border-bottom: none;
        margin: 0 0 30px;
    }
}
@media screen and (max-width: 768px) {
    .other ul li img{
        right: 0;
    }
}
@media screen and (max-width: 428px) {
}
/*==================================================================================================*/
/*flow*/
.flow h2.title{
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.flow h2.title span{
    letter-spacing: 0.05em;
    margin: 0 0 0 10px;
}
.flow h2.title + p{
    line-height: 2;
    margin: 0 0 30px;
}
.scroll{
    width: 1170px;
    overflow-x: scroll;
}
.scroll::-webkit-scrollbar{
    height: 10px;
}
.scroll::-webkit-scrollbar-track{
    background-color: #FFF;
    border-radius: 10px;
}
.scroll::-webkit-scrollbar-thumb{
    background-color: var(--sub-color02);
    border-radius: 10px;
}
.flow ul{
    display: flex;
    width: 1550px;
    margin: 0 0 10px;
}
.flow ul li{
    width: 290px;
    height: 510px;
    padding: 20px;
    border-radius: 20px;
    background: #FFF;
    position: relative;
    margin: 0 20px 0 0;
}
.flow ul li::before{
    display: inline-block;
    content: "";
    width: 65px;
    height: 65px;
    background: center / contain no-repeat url("../img/flow01.svg");
    position: absolute;
    top: 0;
    left: 0;
}
.flow ul li:nth-child(2)::before{
    background: center / contain no-repeat url("../img/flow02.svg");
}
.flow ul li:nth-child(3)::before{
    background: center / contain no-repeat url("../img/flow03.svg");
}
.flow ul li:nth-child(4)::before{
    background: center / contain no-repeat url("../img/flow04.svg");
}
.flow ul li:nth-child(5)::before{
    background: center / contain no-repeat url("../img/flow05.svg");
}
.flow ul li img{
    border-radius: 20px;
    margin: 0 0 20px;
}
.flow ul li h3{
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    padding: 0 0 10px;
    border-bottom: solid 1px #efefef;
    margin: 0 0 10px;
}
.flow ul li p{
    font-size: 14px;
    line-height: 1.6;
    color: var(--main-color);
}
.flow ul li .btnTel{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 46px;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    color: #FFF;
    border-radius: 30px;
    background: var(--main-color);
    box-shadow: 0 0 5px #999;
    padding: 0 0 3px;
    margin: 15px auto 0;
}
.flow ul li .btnTel::before{
    display: inline-block;
    content: "";
    width: 17px;
    height: 17px;
    background: center / contain no-repeat url("../img/icon_tel.svg");
    margin: 0 5px 0 0;
}
.flow ul li .btnTel:hover{
    background: var(--sub-color);
}
@media screen and (max-width: 1340px) {
    .scroll{
        width: 1100px;
    }
}
@media screen and (max-width: 1200px) {
    .scroll{
        width: 100%;
    }
    .flow ul{
        width: 1430px;
    }
    .flow ul li:last-child{
        margin: 0;
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 428px) {
    .flow ul li{
        width: 270px;
        height: 450px;
    }
    .flow ul li::before{
        width: 55px;
        height: 55px;
    }
    .flow ul li img{
        height: 200px;
    }
    .flow ul li h3{
        padding: 0 0 5px;
        margin: 0 0 5px;
    }
}
/*==================================================================================================*/
/*private*/
.private .inner{
    position: relative;
}
.private img{
    width: calc( 100% - 40px );
    max-width: 756px;
    border-radius: 10px;
    margin: 40px 0 35px;
}
.private .inner div{
    width: 90%;
    max-width: 560px;
    padding: 20px 30px 0 40px;
    border-radius: 15px;
    background: #FFF;
    position: absolute;
    right: -20px;
    bottom: 0;
}
.private h3.title{
    margin: 0 0 10px;
}
.private p{
    font-size: 15.5px;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 768px) {
    .private img{
        width: 100%;
        margin: 0 auto 60px;
    }
    .private .inner div{
        padding: 20px 40px 0 40px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 428px) {
    .private img{
        margin: 0 auto 160px;
    }
    .private .inner div{
        padding: 15px 20px 0 20px;
    }
    .private h3.title{
        font-size: 20px;
    }
    .private p{
        font-size: 12.5px;
    }
}
/*==================================================================================================*/
/*faq*/
.faq h3.title{
    text-align: center;
    letter-spacing: 0.15em;
    margin: 0 0 30px;
}
.faq .inner{
    max-width: 800px;
    margin: -20px auto 0;
}
/*ベース*/
.toggle {
	display: none;
}
.Label,
.faq .box {
    padding-right: 40px;
    padding-left: 40px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.Label{
	display: flex;
    align-items: center;
	background: #FFF;
    padding-top: 25px;
    padding-bottom: 25px;
}
.Label:hover{
	cursor: pointer;
}
.Label::before,.Label::after{
	content:"";
	width: 13px;
	height: 1px;
    background: var(--sub-color02);
	position: absolute;
	top: 48px;
	right: 20px;
    transition: .5s;
}
.Label::after{
    transform: rotate(90deg);
}
.Label01::after{
    transform: rotate(0deg);
}
.faq .box {
	height: 0;
	margin: 0 0 5px;
	overflow: hidden;
}
.toggle:checked + .Label + .box {
	height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
	transition: all .3s;
}
.toggle:checked + .Label::after {
	transform: rotate(0deg) !important;
}
.toggle:checked + .Label01::after {
	transform: rotate(90deg) !important;
}
/**/
.faq .Label p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.faq .Label p::before,
.faq .box p::before{
    display: inline-block;
    content: "";
    width: 46px;
    height: 46px;
    background: center / contain no-repeat url("../img/icon_q.svg");
    margin: 0 20px 0 0;
}
.faq .box p::before{
    background: center / contain no-repeat url("../img/icon_a.svg");
}
.faq .Label p span{
    width: calc( 100% - 66px );
}
.faq .box p{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.faq .box p span{
    width: calc( 100% - 66px );
}
/*最初のラベル*/
.accordion .box01 {
	height: auto;
    padding: 25px 40px;
	transition: all .3s;
}
.Label.label01::after {
	transform: rotate(0deg) !important;
}
.toggle:checked + .Label + .box01 {
	height: 0;
    padding-top: 0;
    padding-bottom: 0;
	margin: 0 0 10px;
	overflow: hidden;
    background: #FFF;
}
.Label.label01::after {
	transform: rotate(0deg) !important;
}
.toggle:checked + .label01::after {
	transform: rotate(90deg) !important;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 768px) {
    .Label,
    .faq .box {
        padding-right: 20px;
        padding-left: 20px;
    }
    .Label{
        padding-top: 19px;
        padding-bottom: 19px;
    }
}
@media screen and (max-width: 428px) {
    .Label,
    .faq .box {
        padding-right: 16px;
        padding-left: 16px;
    }
    .Label{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .Label::before,.Label::after{
	    top: 33px;
    }
    .faq .Label p::before,
    .faq .box p::before{
        width: 35px;
        height: 35px;
        margin: 0 10px 0 0;
    }
}
.faq .cta{
    margin: 40px auto 0;
}
/*==================================================================================================*/
/*company*/
.company{
    padding: 0;
}
.company img{
    width: 37%;
    height: 1000px;
    max-height: 900px;
}
.company .companyBox{
    display: flex;
    align-items: center;
    width: 63%;
    background: #FFF;
    padding: 60px 0;
}
.company .companyBox .inner{
    width: 80%;
    max-width: 590px;
    margin: 0 auto;
}
.company h3.title{
    display: flex;
    align-items: center;
    margin: 0 0 20px 15px;
}
.company h3.title span{
    margin: 0 0 0 10px;
}
.company dl{
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: solid 1px #ececec;
}
.company dl:last-child{
    border-bottom: none;
}
.company dl dt{
    width: 195px;
    font-size: 15px;
    font-weight: bold;
    color: #232f40;
    padding: 0 20px;
}
.company dl dd{
    width: calc( 100% - 195px);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #232f40;
}
.company dl dd span{
    letter-spacing: 0;
}
.company dl dd iframe{
    margin: 10px 0 0;
}
.company dl:nth-child(4) dd a{
    text-decoration: underline;
}
.company dl:last-child dd a{
    letter-spacing: 0;
    color: var(--sub-color02);
}
small{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #FFF;
    background: var(--main-color);
}
@media screen and (min-width: 1360px) {
    .company .companyBox .inner{
        margin: 0 0 0 10%;
    }
}
@media screen and (max-width: 1000px) {
    .company img{
        display: none;
    }
    .company .companyBox{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .company .companyBox{
        min-width: 0%;
    }
    .company .companyBox .inner{
        width: 85%;
    }
    .company dl dt{
        font-size: 13px;
    }
    .company dl dd{
        font-size: 14px;
    }
}
@media screen and (max-width: 428px) {
    .company dl dt{
        width: 100%;
        padding: 0;
        margin: 0 0 5px;
    }
    .company dl dd{
        width: 100%;
    }
}
/*==================================================================================================*/
/**/
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 428px) {
}