html {
    scroll-padding-top: 62px;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
}
/* ヘッダー */
#header{
    position: fixed;
    background: #051d42;
    overflow: hidden;
    width: 100%;
    z-index: 10;
}
.header_inner{
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
}
.header_logoArea{
    width: 153px;
    padding: 0 50px 0 0;
}

.header_navArea{
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.navList{
    flex-grow: 1;
    font-size: 14px;
}

.navList_item{
    display: inline-block;
    margin: 0 20px 0 0;
}

.navList_link{
    color: #fff;
}

.navList_link-current{
    color: #ddd7c7;
    text-decoration: underline;
}

.navList-button{
    font-size: 14px;
}

.navList-button .navList_item{
    margin: 0 0 0 5px;
}

.navList-button .navList_link{
    color: #051D42;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    width: 130px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
}

.navList-button .navList_link:hover{
    background: #EFF4FF;
    text-decoration: none;
}

.navList_link-img{
    vertical-align: middle;
    line-height: 28px;
    margin: 0 0 0 15px;
}

.navList_link-img:hover{
    opacity: .8;
}
/* コンテンツ */
main{
    flex: 1;
    margin-top: 62px;
}
.keyWrapper{
    background: #ccc;
}
.key{
    width:100%;
    max-width: 1600px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-image: url(../images/key-01.jpg), url(../images/key-02.jpg),url(../images/key-03.jpg), url(../images/key-04.jpg);
    background-position: center center;
    animation: img_anime 30s infinite;
    margin: 0 auto;
}
/* アニメーション */
@keyframes img_anime {
    0% {
        background-image: url(../images/key-01.jpg);
    }
    20% {
        background-image: url(../images/key-01.jpg);
    }
    25% {
        background-image: url(../images/key-02.jpg);
    }
    45% {
        background-image: url(../images/key-02.jpg);
    }
    50% {
        background-image: url(../images/key-03.jpg);
    }
    70% {
        background-image: url(../images/key-03.jpg);
    }
    75% {
        background-image: url(../images/key-04.jpg);
    }
    95% {
        background-image: url(../images/key-04.jpg);
    }
    100% {
        background-image: url(../images/key-01.jpg);
    }
} 
.key_text{
    font-size: 25px;
    padding: 10px 40px;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 2;
    color: #051D42;
}
.key_text::before{
    transform: skewX(-30deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}
.circleList{
    display: flex;
    align-items: center;
    width: 880px;
    margin: 40px auto 0;
    text-align: center;
    align-content:center;
}
.circleList_item{
    background: #EFF4FF;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 22px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    text-align: center;
    align-content:center;
}

.title{
    font-size: 25px;
    text-align: center;
    padding: 60px 50px 0;
    font-weight: normal;
    line-height: 1.8;
}

.title_sub{
    font-size: 12px;
    display: block;
    margin: 5px 0 0;
}

.marker{
    padding: 0 5px;
    display: inline-block;
    background: linear-gradient(transparent 50%,#FFF6EA 50%,#FFF6EA 90%,transparent 90%);
}

.title-middle{
    font-size: 21px;
    text-align: center;
    padding: 0 15px 0;
    font-weight: normal;
    line-height: 1.8;
}

.contentsArea{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 70px;
    box-sizing: border-box;
}

.contentHeader{
    text-align: center;
    max-width: 2000px;
    margin: 0 auto;
}
.contentHeader-about{
    background: #f5f5f5 url(../images/contentHeader-01.jpg) 0 bottom no-repeat;
    background-size: cover;
}
.contentHeader-flow{
    background: #f5f5f5 url(../images/contentHeader-02.jpg) center bottom no-repeat;
    background-size: cover;
}
.contentHeader-price{
    background: #f5f5f5 url(../images/contentHeader-03.jpg) center bottom no-repeat;
    background-size: cover;
}
.contentHeader-case{
    background: #f5f5f5 url(../images/contentHeader-04.jpg) center bottom no-repeat;
    background-size: cover;
}
.contentHeader-faq{
    background: #f5f5f5 url(../images/contentHeader-05.jpg) center bottom no-repeat;
    background-size: cover;
}
.contentHeader_title{
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    padding: 30px 15px;
    box-sizing: border-box;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 
    0 0 40px #000,
    0 0 55px #000,
    0 0 70px #000;
}

.text{
    margin: 15px 0 0;
    font-size: 15px;
    line-height: 2;
}

.text:first-of-type{
    margin: 30px 0 0;
}

.text-mt-high{
    margin: 50px 0 0;
}

.text-center{
    text-align: center;
}

.text-aside{
    margin: 40px 0 0;
    display: inline-block;
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
}
.image{
    margin: 30px 0 0
}

.buttonArea{
    margin: 40px 0 0;
    text-align: center;
}

.button{
    border: 1px solid #051D42;
    color: #051D42;
    text-align: center;
    padding: 10px;
    min-width: 250px;
    display: inline-block;
    border-radius: 30px;
}

.button:hover{
    text-decoration: none;
    background: #EFF4FF;
}

.cardList{
    display: flex;
    margin: 40px auto 0;
}
.cardList_item{
    width: 340px;
    border-radius: 10px;
    margin: 0 10px;
    border: 1px solid #ccc;
    padding: 25px 20px 15px;
    line-height: 2;
}

.cardList_title{
    text-align: center;
    font-size: 19px;
    line-height: 2;
}

.cardList_data{
    margin: 20px 0 0;
    font-size: 15px;
}

.sectionBox{
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    margin: 30px 0 0;
}

.sectionBox-border{
    border: 1px solid #ccc;
    border-radius: 10px;
}

.sectionBox-border-top{
    border-top: 1px dotted #ccc;
    padding: 50px 0 0;
    margin: 50px 0 0;
}

.flowList{
    list-style: decimal;
    list-style-position: inside;
    margin-bottom: 30px;
}
.flowList_item{
    margin: 20px 0 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px 25px;
    line-height: 2;
    font-size: 20px;
}
.flowList_text{
    font-size:15px;
    margin-top: 5px;
}
.stepList_item{
    margin: 25px 0 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 15px;
    line-height: 2;
    font-size: 20px;
    text-align: center;
    position: relative;
}
.stepList_item-arrow::after{
    content: "";
    position: absolute;
    left: 50%;
    margin: 0 0 0 -3px;
    bottom: -23px;
    border: 6px solid transparent;
    border-top: 7px solid #999;   /* 好みで色を変えてください */  
}
.priceList{
    margin: 30px 0 0;
    text-align: center;
    font-size: 16px;
}
.priceList_item{
    margin: 20px 0 10px;
}
.anchorList{
    padding: 10px 10px 25px 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.anchorList_item{
    display: inline-block;
    margin: 15px 10px 0 0;
}
.anchorList_item:last-of-type{
    margin: 15px 0 0 0;
}
.anchorList_link{
    display: block;
    padding: 10px 30px;
    border: 1px solid #ccc;
    font-size: 18px;
    border-radius: 30px;
}
.anchorList_link:hover{
    background: #f5f5f5;
    text-decoration: none;
}
.caseList{
    display: inline-block;
    list-style: disc;
    padding-left: 1.5em;
    margin: 20px 0 0;
}
.caseList_item{
    margin-top: 10px;
    text-align: left;
}
.faqList{
    margin: 50px 0 0;
    line-height: 2;
}
.faqList_item{
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 23px 20px 20px;
    margin: 25px 0 0;
}
.faqList_title{
    text-indent: -.7em;
    padding: 0 0 0 1.7em;
    font-weight: bold;
    color: #051D42;
}
.faqList_data{
    margin: 10px 0 0;
    text-indent: -.7em;
    padding: 0 0 0 1.7em;
}
.faqList_title::before{
    content: 'Q.';
    color: #051D42;
    display: inline-block;
    margin: 0 .3em 0 0;
}
.faqList_data::before{
    content: 'A.';
    display: inline-block;
    margin: 0 .3em 0 0;
}

/* フッター */
#footer{
    text-align: center;
    padding: 60px 20px;
    color: #051d42;
    background: #fff4e7;
    border-top:1px solid #e9e4d5 ;
}
.footer_text{
    margin-top: 20px;
    font-size: 12px;
}
.footer_map{
    margin: 30px auto 0;
}

.footer_dl{
    margin-top: 30px;
    font-size: 12px;
}
#footer .buttonArea{
    margin-top: 20px;
}

.footer_navList{
    margin: 60px 0 0;
    text-align: center;
    font-size: 14px;
}

.footer_navList_item{
    display: inline-block;
    padding: 0 25px;
    border-left:1px solid #051D42 ;
    border-right:1px solid #051D42 ;
    line-height: 1;
}
.footer_navList_item:last-of-type{
    border-left: none;
}

footer small{
    display: inline-block;
    margin-top: 40px;
    font-size: 12px;
}

/* モーダル */
.modalWrapper{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 100;
    display: none;
}
.modalBody{
    width: 100%;
    max-width: 600px;
    margin: 10vh auto 0;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px 20px;
    color: #000;
    box-sizing: border-box;
}
.modalTitle{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.modalClose{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 25px;
    padding: 5px;
}
.modalClose:hover{
    text-decoration: none;
}
.modalTelNumber{
    text-align: center;
    margin-top: 30px;
    line-height: 1.8;
}
.modalText-small{
    font-size: 12px;
    color: #999;
}

/* 汎用セレクタ */
.d-f{
    display: flex;
}
.t-c{
    text-align: center;
}
.d-ib{
    display: inline-block;
}
.mt-0{
    margin-top: 0px !important;
}
.mt-5{
    margin-top: 5px;
}
.mt-15{
    margin-top: 15px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-10{
    margin-bottom: 10px;
}
.ml-5{
    margin-left: 5px;
}
.mr-5{
    margin-right: 5px;
}
.mr-10{
    margin-right: 10px;
}
.pb-10{
    padding-bottom: 10px;
}
.w-100p{
    width: 100%;
}
.max-w-500{
    max-width: 500px;
}
.fs-small{
    font-size: .7em;
}
.lh-1{
    line-height: 1;
}
.link-black{
    color: #000;
    text-decoration: underline;
}
.link-white{
    color: #fff;
    text-decoration: underline;
}
.background-lightGray{
    background: #f5f5f5;
}
.fw-b{
    font-weight: bold;
}

@media screen and (min-width: 1201px) {
    .spOnly{
        display: none;
    }
}
@media screen and (max-width: 1200px) {
    .header_logoArea{
        z-index: 14;
    }
    #menuToggle{
        display: none;
    }
    .menuOpen span {
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #fff;
        margin: 5px auto;
        transition: transform .35s;
    }
    .menuOpen {
        width: 50x;
        height: 50px;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        position: absolute;
        top: 6px;
        right: 10px;
        z-index: 13;
        cursor: pointer;
    }
    #menuToggle:checked ~ .menuOpen span:nth-of-type(1){
        opacity: 0;
        transition: transform .35s;
    }
    #menuToggle:checked ~ .menuOpen span:nth-of-type(2){
        transform: rotate(45deg);
        margin-top: 6px;
        transition: transform .35s;
    }
    #menuToggle:checked ~ .menuOpen span:nth-of-type(3){
        transform: rotate(-45deg);
        margin-top: -8px;
        transition: transform .35s;
    }
    .header_navArea{
        position: fixed;
        top: 0;
        right: -100%;
        background: rgba(5,29,66,0) ;
        width: 100%;
        height: 100%;
        transform: translateX(0);
        transition: .05s .2s;
        z-index: 12;
        display: block;
    }
    #menuToggle:checked ~ .header_navArea{
        background: rgba(5,29,66,.9) ;
        transform: translateX(-100%);
        transition: .01s;
    }
    .header_navArea .navList{
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 80px 30px 0;
        transform: translateX(0);
        transition: transform .35s;
    }
    #menuToggle:checked ~ .header_navArea .navList{
        transform: translateX(-100%);
        transition: transform .35s;
    }
    .navList_item{
        display: block;
        font-size: 20px;
        margin: 20px 0 0;
    }
    .navList-button{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 30px;
    }
    .navList-button .navList_item{
        margin: 0 0 20px;
    }
    .navList-button .navList_item:last-of-type{
        text-align: center;
        margin: 40px 0 20px;
    }
    .navList_link-img{
        margin: 0;
    }
    .navList-button .navList_link{
        width: 100%;
        font-size: 20px;
    }
    .navList_link-current{
        color: #fff;
        text-decoration: none;
    }
    .key{
        height: 500px;
    }
    .title{
        font-size: 22px;
    }
    .image{
        width: 100%;
        height: auto;
    }
    .footer_map iframe{
        width: 100%;
    }
    .circleList{
        width: 700px;
    }
    .circleList_item{
        width: 155px;
        height: 155px;
        font-size: 20px;
    }
    .cardList_title{
        font-size: 17px;
    }
    .cardList_data{
        font-size: 14px;
    }
  }

@media screen and (max-width: 800px) {
    .key{
        height: 400px;
    }
    .key_text{
        font-size: 20px;
    }
    .contentsArea{
        padding: 0 15px 60px;
    }
    .contentHeader_title{
        height: 160px;
        font-size: 21px;
    }
    .title{
        font-size: 18px;
        padding: 50px 0 0;
    }
    .title-small{
        font-size: 14px;
    }
    .title-middle{
        font-size: 16px;
    }
    .circleList{
        width: 440px;
    }
    .circleList_item{
        width: 100px;
        height: 100px;
        font-size: 17px;
        line-height: 1.2;
        margin:0 5px
    }
    .cardList{
        flex-direction: column;
        margin: 25px 0 0;
    }
    .cardList_item{
        width: 100%;
        margin: 10px 0 0;
        box-sizing: border-box;
        padding: 20px 15px 15px;
    }
    .cardList_data{
        margin: 15px 0 0;
    }
    .cardList_title{
        font-size: 16px;
    }
    .text{
        font-size: 14px;
    }
    .text-center{
        text-align: left;
    }
    .text-aside{
        font-size: 12px;
    }
    .text-center br{
        display: none;
    }
    .text:first-of-type{
        margin: 25px 0 0;
    }
    .buttonArea{
        margin: 30px 0 0;
        font-size: 15px;
    }
    .sectionBox{
        padding: 40px 30px 30px;
    }
    .sectionBox-border-top{
        padding: 40px 0 0;
        margin: 40px 0 0;
    }
    .modalBody{
        padding: 50px 30px 30px;
    }
    .modalText{
        font-size: 14px;
    }
    .flowList_item,
    .stepList_item{
        font-size: 16px;
    }
    .anchorList_link{
        font-size: 15px;
    }
    .anchorList_link{
        padding: 10px 20px;
    }
    .caseList{
        font-size: 14px;
        display: block;
    }
    .faqList{
        font-size: 15px;
    }
  }

@media screen and (max-width: 500px) {
    .key{
        height: 350px;
    }
    .key_text{
        font-size: 15px;
        padding: 10px 20px;
    }
    .title{
        padding: 40px 0 0;
    }
    .contentsArea{
        padding: 0 15px 50px;
    }
    .text{
        margin: 15px 0 0;
    }
    .text-mt-high{
        margin: 35px 0 0;
    }
    .text:first-of-type{
        margin: 25px 0 0;
    }
    .circleList{
        width: 270px;
        flex-wrap: wrap;
        margin: 20px auto 0;
    }
    .circleList_item{
        width: 125px;
        height: 125px;
        font-size: 16px;
        line-height: 1.2;
        margin:10px 5px 0
    }
    .cardList{
        margin: 20px 0 0;
    }
    .sectionBox{
        padding: 35px 20px 20px;
    }
    .modalBody .button{
        min-width: 100%;
        box-sizing: border-box;
    }
  }
  
@media screen and (max-width: 370px) {
    .key_text{
        font-size: 14px;
        padding: 10px 15px;
    }
  }