@charset "utf-8";

.section_block03 {
    margin-bottom: 120px;
}

.fv {
    width: 120%;
}

.text01 {
    font-size: 18px;
}

.btn_block {
    width: 100%;
    text-align: center;
}

.basic_btn01 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 2.0rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    width: auto;
    min-width: 400px;
    max-width: 700px;
    padding: 0 80px;
    height: 68px;
    border-radius: 100px;
    font-weight: bold;
    position: relative;
    transition: opacity .3s ease-out 0s;
}

.basic_btn01[target='_blank']::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/common/img/ico_external.png);
    width: 17px;
    height: 17px;
}

.basic_btn01.secondary[target='_blank']::after {
    background-image: url(/common/img/ico_external02.png);
}

.basic_btn01.secondary {
    text-align: center;
}

.basic_btn01:hover {
    opacity: .9;
    transform: translateY(3px);
    transition: .3s;
    box-shadow: none;
}

.basic_btn01.bg_full.blue {
    color: #fff;
    background-color: #0077BF;
}

.flex_block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.flex_item {
    flex: 1;
}


.flex_block .basic_btn01 {
    max-width: 500px;
    margin: 0 auto;
}


@media only screen and (max-width: 768px) {
    .section_block03 {
        padding: 0 10px;
    }

    .content_btns .basic_btn01 {
        width: 100%;
    }

    .flex_block {
        flex-direction: column-reverse;
    }


    .basic_btn01 {
        display: flex;
        font-size: 18px;
        width: 80%;
        min-width: 0;
        max-width: none;
        padding: 0 50px;
        margin: 0 auto;
    }

    .flex_block .basic_btn01 {
        font-size: 16px;
    }

}

/*about*/
.about {
    background-color: #FFF6D3;
    padding: 80px 40px;
}

.video_container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

@media only screen and (max-width: 768px) {
    .about {
        padding: 40px 26px;
    }

    #about .basic_btn01 {
        width: 100%;
    }

    .basic_btn01:after {
        right: 17px;
    }
}

/*price*/
.table_container {
    display: table;
    margin: auto;
}


table th {
    background-color: #444;
    color: #fff;

}

table th,
table td {
    text-align: center;
    border: 1px #ddd solid;
    padding: 16px 40px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {

    table th,
    table td {
        padding: 16px 20px;
    }
}

/*steps*/
.step_text a {
    color: #0077BF;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
    margin-left: 6px;
}

.step_text a::after {
    content: "";
    width: 17px;
    height: 17px;
    margin-right: 6px;
    background-image: url(/common/img/ico_external03.png);
}

#steps .basic_btn01.blue {
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
}

@media only screen and (max-width: 768px) {
    .step_list .step_text {
        font-size: 16px !important;
    }

    #steps .basic_btn01.blue {
        font-size: 14px;
        line-height: 1.5;
    }
}

/*faq*/
#faq a[target="_blank"] {
    font-weight: 500;
    color: #0073bc;
}

#faq a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    margin-right: 4px;
    background-image: url(/common/img/ico_external_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

/*
#faq a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}*/

.answer_block {
    display: block;
}

.grid_container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: auto auto;
}

@media only screen and (max-width: 768px) {
    #faq a[target="_blank"] {
        font-size: 16px;
        margin-left: 2px;
    }

    #faq a[target="_blank"]::after {
        vertical-align: -1px;
        width: 12px;
        height: 12px;
    }

    /*
    #faq a[href*="tel:"] {
        pointer-events: auto;
        cursor: default;
        text-decoration: underline;
    }*/

    .grid_container {
        display: grid;
        grid-template-columns: 100px auto;
    }

    .grid_item {
        font-size: 16px;
    }
}