@charset "utf-8";

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --fontSizeBase: 1.6rem;
    --lineHeightBase: 1.5;
    --colorTextBase: #424242;
    --colorWhite: #fdfdfd;
    --colorMain: #3395d9;
    --colorAccent: #ed4c85;
    --colorBG: #ecf7ff;
    --paddingMain: 10.8rem;

    @media(max-width: 767px){
        --fontSizeBase: 1.4rem;
    }
}
html{
    font-size: 62.5%;
}
body{
    font-size: var(--fontSizeBase);
    line-height: var(--lineHeightBase);
    background: var(--colorWhite);
    color: var(--colorTextBase);
    font-family: "メイリオ", sans-serif;
    font-weight: 700;
}
img, iframe{
    display: block;
    max-width: 100%;
    height: auto;
}
li{
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
}
h1{
    font-size: calc(var(--fontSizeBase) * 2.5);
}
h2{
    font-size: calc(var(--fontSizeBase) * 2.5);
}
h3{
    font-size: calc(var(--fontSizeBase) * 1.5);
}
h4, h5, small{
    font: inherit;
}
.container{
    max-width: 92rem;
    margin-inline: auto;
    box-sizing: content-box;
    padding: var(--paddingMain) clamp(2.4rem, 2vw, 5rem);

}
.title{
    text-align: center;
    margin-bottom: 4.8rem;
}
.title br{
    @media(max-width: 767px){
        display: none;
    }
}

.dots .dot{
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    display: block;
    background: #9d9d9d;
    margin-inline: auto;
}

.dots .dot + .dot{
    margin-top: .6rem;
}

/* section-top1 */
.section-top1{
    position: relative;
}
.section-top1::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 68rem;
    z-index: -1;
    background: var(--colorBG);
    border-radius: 14rem 14rem 0 0;

    @media(max-width: 767px){
        top: 32rem;
        border-radius: 4rem 4rem 0 0;
    }
}
.section-top1 .flex-area{
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 3.2rem;
    max-width: 52rem;
    margin-inline: auto;
}
.section-top1 .flex-area > div{
    flex: 0 0 calc(50% - 1rem);
}
.section-top1 .flex-area .img-area img{
    margin-inline: auto;
}
.section-top1 .flex-area .text{
    font-size: 2rem;
    display: flex;
    margin-top:1.2rem;
}
.section-top1 .dots{
    margin-top: 5.2rem;
    margin-bottom: 5.2rem;
}
.section-top1 .title .color{
    color: var(--colorAccent);
}
.section-top1 .flex-area .text span{
    font-weight: 700;
    margin-right: 1.2rem;
    color: var(--colorAccent);
}
.section-top1  .middle-text{
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 5.2rem;
    text-align: center;
    line-height: 2;
}
.section-top1 .point-3{
    display: flex;
    column-gap: 2rem;
    row-gap: 2rem;
    justify-content: center;
    align-items: center;

    @media(max-width: 767px){
        flex-direction: column;
    }
}
.section-top1 .point-3 .point{
    flex: 1;
    background: var(--colorWhite);
    padding: 2rem;
    border-radius: 2rem;
    color: var(--colorMain);
    text-align: center;
    font-weight: 700;

    @media(max-width: 767px){
        flex: 0 0 100%;
        width: 100%;
    }
}
.section-top1 .point-3 .point .text {
    font-size: 1.5em;
    line-height: 1.25;
    margin-bottom: .8rem;
    letter-spacing: .1rem;
}
.section-top1 .point-3 .point .sub-text{
    font-size: 1.3rem;
    line-height: 1;
}
.section-top1 .equal{
    width: fit-content;
    display: flex;
    column-gap: 1.2rem;
    margin-inline: auto;
    margin-top: 3.2rem;
    margin-bottom: 2rem;
}
.section-top1 .equal::before,
.section-top1 .equal::after{
    content: '';
    display: block;
    height: 4rem;
    background: var(--colorMain);
    width: .8rem;
}
.section-top1 .price-area{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.2rem;
}
.section-top1 .price-area .circle{
    background: var(--colorAccent);
    color: var(--colorWhite);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10.8rem;
    height: 10.8rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}
.section-top1 .price-area .price{
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    top: .5rem;
}
.section-top1 .price-area .price .big{
    font-size: 2em;
    color: var(--colorAccent);
}
.section-top1 .price-area .price .big .more-big{
    font-size: 2em;
}
.section-top1 .price-area span.normal::before {
    content: '';
    display: inline-block;
    height: 1.75em;
    border-left: .2rem solid;
    rotate: 30deg;
    transform-origin: bottom;
    margin-right: .75em;
    margin-left: .25em;
}
.section-top1 .price-banner-area{
    background: var(--colorMain);
    color: var(--colorWhite);
    padding: 1.6rem 1.2rem 1.2rem;
    font-size: 2rem;
    border-radius: 1.2rem;
    font-weight: 700;
    margin-top: 4.8rem;
    margin-bottom: 4rem;
}
.section-top1 .price-banner-area .inner{
    display: flex;
    column-gap: 4rem;
    justify-content: center;
    max-width: 54.4rem;
    margin-inline: auto;
    font-size: 2.4rem;
    line-height: 1;

    @media(max-width: 767px){
        flex-direction: column;
    }
}
.section-top1 .price-banner-area .inner > div{
    flex: 1;

    @media(max-width: 767px){
        text-align: center;
    }
}
.section-top1 .price-banner-area .inner > div:first-of-type{
    border-right: .2rem solid var(--colorWhite);

    @media(max-width: 767px){
        border-right: none;
        border-bottom: .2rem solid var(--colorWhite);
        padding-bottom: 1.2rem;
        margin-bottom: .8rem;
    }
}
.section-top1 .price-banner-area .inner .big{
    font-size: 2em;
}
.section-top1 .border-dash.bottom-text{
    margin-bottom: 8rem;
}

/* section-top2 */
.section-top2 .title .color{
    color: var(--colorAccent);
}
.section-top2 .flex-area{
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.8rem;
    row-gap: 4.8rem;

    @media(max-width: 767px){
        display: block;
    }
}
.section-top2 .flex-area .item{
    flex: 0 0 calc(50% - 2.4rem);
}

.section-top2 .flex-area .item + .item{
    @media(max-width: 767px){
        margin-top: 4rem;
    }
}
.section-top2 .flex-area .item .img-area{
    border-radius: .8rem;
    overflow: hidden;
    margin-bottom: .8rem;
}
.section-top2 .flex-area .item .text {
    line-height: 1.75;
    letter-spacing: .1rem;
    padding: 0 1em;
}
.section-top2 .flex-area .item .text .color{
    color: var(--colorAccent);
    font-weight: 700;
}

/* section-top3 */
.section-top3{
    position: relative;
}
.section-top3::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 2.4rem;
    bottom: 0;
    background: var(--colorBG);
    border-radius: 14rem 14rem 0 0;
    z-index: -1;

    @media(max-width: 767px){
        border-radius: 4rem 4rem 0 0;
    }
}
.section-top3 .container{
    padding-top: 0;
}
.section-top3 .ribon-title{
    text-align: center;
    background: var(--colorMain);
    color: var(--colorWhite);
    border-radius: 4rem;
    margin-bottom: 4.8rem;
    font-size: var(--fontSizeBase);
    
    @media(max-width: 767px){
        padding: .4rem .4rem .2rem;
    }
}
.section-top3 .ribon-title .big{
    font-size: calc(var(--fontSizeBase) * 2);

    @media(max-width: 767px){
        font-size: calc(var(--fontSizeBase) * 1.75);
    }
}
.section-top3 .point-2{
    display: flex;
    align-items: center;
    column-gap: 2rem;
    margin-bottom: 4rem;

    @media(max-width: 767px){
        flex-direction: column;
    }
}
.section-top3 .point-2 .top-text-area{
    display: flex;
    align-items: center;
    align-items: center;
    column-gap: .8rem;
    margin-bottom: 1.2rem;
}
.section-top3 .point-2 .top-text-area .ribon{
    background: var(--colorMain);
    color: var(--colorWhite);
    font-size: 1.4rem;
    line-height: 1;
    padding: .6rem 2rem .4rem;
    border-radius: .8rem;
}
.section-top3 .point-2 .plus{
    margin-top: 3.6rem;

    @media(max-width: 767px){
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }
}
.section-top3 .point-2 .point{
    flex: 1;
}
.section-top3 .point-2 .text-area{
    display: flex;
    align-items: flex-end;
    background: var(--colorWhite);
}
.section-top3 .point-2 .text-area .text{
padding: 2rem 0 2rem 4rem;
    align-self: center;
    letter-spacing: .1rem;
    line-height: 2;
}
.section-top3 .point-2 .text-area .img-area{
    flex: 0 0 12rem;
}
.section-top3 .head-text{
    margin-top: 3.2rem;
    width: fit-content;
    margin-inline: auto;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
}
.section-top3 .head-text .color{
    color: var(--colorAccent);
}
.section-top3 .head-text .color .big{
    font-size: 1.5em;
}
.section-top3 .bottom-text{
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* section-top4 */
.section-top4 .flex-area{
    display: flex;
    column-gap: 2rem;

    @media(max-width: 767px){
        flex-wrap: wrap;
        column-gap: 1.2rem;
        row-gap: 1.2rem;
    }
}
.section-top4 .flex-area > div{
    flex: 1;
    @media(max-width: 767px){
        flex: 0 0 calc(50% - .6rem);
    }
}
/* section-top5 */
.section-top5{
    background: var(--colorBG);
}
.section-top5 .table-area{
    background: var(--colorWhite);
    padding: 2rem;
    border-radius: .4rem;
}
.section-top5 .table-area .inner{
    overflow-x: auto;
}
.section-top5 .table-area table{
    width: 100%;
    min-width: 68rem;
    text-align: center;
    border-collapse: collapse;
}
.section-top5 .table-area th{
    background: var(--colorBG);
    padding: 1.2rem 1.6rem;
    font-size: 2rem;
}
.section-top5 .table-area td{
    padding: 1.6rem .8rem;
    width: 18%;
    font-size: 2rem;
}
.section-top5 .table-area tr > td:last-of-type{
    width: 28%;
}
.section-top5 .table-area tbody tr + tr td{
    border-top: .2rem dashed #767676;
}
.section-top5 .table-area td .small{
    text-align: left;
    margin-inline: auto;
    display: flex;
    width: fit-content;
    font-size: 1.3rem;
}
.section-top5 .table-area td .small::before{
    content: '※';
}
.section-top5 .item-area{
    margin-top: 2.8rem;
    background: var(--colorWhite);
    padding: 2.8rem;
    border-radius: .4rem;
}
.section-top5 .item-area .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    row-gap: 2.4rem;
    font-size: 2.4rem;

    @media(max-width: 767px){
        flex-direction: column;
    }
}
.section-top5 .item-area .inner .text{
    flex: 1;

    @media(max-width: 767px){
        text-align: center;
    }
}
.section-top5 .item-area .inner .text:first-of-type{
    text-align: right;
}
.section-top5 .item-area .inner .arrow{
    border: 1.2rem solid #acacac;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
    scale: 1.5 1;
    margin-right: -1.5rem;
    transform-origin: left;

    @media(max-width: 767px){
        rotate: 90deg;
        translate: 0 -1rem;
        margin-right: 0;
    }
}
.section-top5 .btn-area{
    margin-top: 4.8rem;
}

/* section-top6 */
.section-top6 .flow-area-wrap{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
.section-top6 .flow-area-wrap .flow{
    background: #f3f3f3;
    padding: 2.4rem;
    border-radius: .4rem;
}
.section-top6 .flow-area-wrap .flow .inner{
    display: flex;
    column-gap: 6rem;
    max-width: 53rem;
    margin-inline: auto;

    @media(max-width: 767px){
        column-gap: 2rem;
    }
}
.section-top6 .flow-area-wrap .arrow{
border: 1rem solid var(--colorMain);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    width: fit-content;
    scale: 1 1.5;
    margin-bottom: -.5rem;
    transform-origin: top;
    align-self: center;
}
.section-top6 .flow-area-wrap .number-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--colorMain);
}
.section-top6 .flow-area-wrap .number-area .number{
    font-size: 2em;
}
.section-top6 .flow-area-wrap .text{
    line-height: 2;
    letter-spacing: .1rem;
}

/* section-top7 */
.section-top7{
    background: var(--colorBG);
}
.section-top7 .faq-area-wrap{
    display: flex;
    flex-direction: column;
    row-gap: 2.8rem;
}
.section-top7 .faq-area-wrap .faq-area{
    background: var(--colorWhite);
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    border-radius: .4rem;

    @media(max-width: 767px){
        padding: 2rem;
    }
}
.section-top7 .faq-area-wrap .faq-area :is(.a, .q){
    display: flex;
    align-items: center;
    column-gap: 3.2rem;

    @media(max-width: 767px){
        column-gap: 1.2rem;
    }
}
.section-top7 .faq-area-wrap .faq-area .q::before{
    content: 'Q';
    background: var(--colorMain);
    color: var(--colorWhite);
}
.section-top7 .faq-area-wrap .faq-area .a::before{
    content: 'A';
    border: .2rem solid var(--colorMain);
    color: var(--colorMain);
}
.section-top7 .faq-area-wrap .faq-area :is(.a, .q)::before{
    border-radius: 50%;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
}
.section-top7 .faq-area-wrap .faq-area .text{
    letter-spacing: .1rem;
    line-height: 2;
}

/* common */
.plus{
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;
}
.plus::before,
.plus::after{
    content: '';
    display: block;
    position: absolute;
    background: var(--colorMain);
}
.plus::before{
    width: 100%;
    height: .6rem;
    top: 50%;
    translate: 0 -50%;
}
.plus::after{
    left: 50%;
    top: 50%;
    width: .6rem;
    height: 100%;
    translate: -50% -50%;
}
.border-dash.bottom-text {
    font-size: 2rem;
    text-align: center;
    border-top: .3rem dashed;
    border-bottom: .3rem dashed;
    padding: 1.6rem 6rem;
    width: fit-content;
    margin-inline: auto;

    @media(max-width: 767px){
        padding: 1.6rem 0;
    }
}
.btn-area a{
    display: block;
    text-align: center;
    background: var(--colorAccent);
    color: var(--colorWhite);
    font-size: 1.8rem;
    padding: 2rem;
    max-width: 24rem;
    border-radius: 6rem;
    margin-inline: auto;
    font-weight: 700;
    transition: .4s;
}
.btn-area a:hover{
    opacity: .7;
}

/* footer */
.footer{
    background: var(--colorMain);
    color: var(--colorWhite);
    text-align: center;
    padding: 2rem 0;
}
.footer .footer-container{
    max-width: 92rem;
    margin-inline: auto;
    padding-left: clamp(2.4rem, 2vw, 5rem);
    padding-right: clamp(2.4rem, 2vw, 5rem);
}
.footer .footer-container small{
    font-size: 1.2rem;
}