@charset 'utf8';


section {
    padding-bottom: min(5%, 60px);
}

.content-manual {
    line-height: 1.5;
}

.din {
    font-family: 'DIN', sans-serif;
    font-weight: bold;
}

.italic {
    font-style: italic;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DINPro-Bold_0.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-image: url(../img/manual-features/back-to-top.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 75px;
    height: 75px;
    border: none;
    cursor: pointer;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    #back-to-top {
        bottom: 10px;
        right: 10px;
        width: 10vw;
        height: 10vw;
    }
}

#mainvisual {
    position: relative;
}

#mainvisual .mv_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto min(3vw, 36px);
}

#mainvisual .mv_txt_wrap {
    width: 100%;
}

@media (max-width: 768px) {
    #mainvisual .mv_txt_wrap {}
}

h1 {
    font-size: min(3vw, 40px);
    margin-bottom: min(2vw, 36px);
    color: #005698;
    font-weight: bold;
    line-height: 1.5;
}

@media (max-width: 768px) {
    h1 {
        font-size: max(7vw, 28px);
        margin-bottom: 5vw;
        margin-right: 0;
    }
}

h2 {
    font-size: min(2vw, 24px);
    font-weight: bold;
    margin-bottom: min(1vw, 12px);
}

@media (max-width: 768px) {
    h2 {
        font-size: max(5vw, 23px);
    }
}


.content-manual h3 {
    border-left: none;
    padding-left: 0;
    line-height: 1.5;
}

.content-manual h3 span {
    color: #005698;
}

h4 {
    font-weight: bold;
    color: #005698;
    font-size: min(1.5vw, 18px);
    margin-top: min(5vw, 60px);
    margin-bottom: min(0.5vw, 6px);
}

@media (max-width: 768px) {
    h4 {
        font-size: max(3.5vw, 20px);
        margin-top: max(10vw, 50px);
    }
}

h5 {
    font-weight: bold;
    font-size: min(1.3vw, 15.6px);
    margin-bottom: min(0.3vw, 3.6px);
    margin-top: min(2vw, 24px);
}


@media (max-width: 768px) {
    h5 {
        font-size: max(3vw, 18px);
        margin-top: max(5vw, 30px);
    }

}

ol {
    list-style-type: decimal;
    margin-left: 1em;
}

ol>li {
    padding-left: 0.5em;
}

.mt0 {
    margin-top: 0;
}


/* 共通 for pc */
@media (min-width: 769px) {
    /* 画面幅768ピクセル以上：PC表示 */

    .br-sp {
        display: none;
    }

}

/* 共通 for mobile */
@media (max-width: 768px) {
    /* 画面幅768未満：モバイル向け表示 */

    .br-pc {
        display: none;
    }
}

#mainvisual .mv_txt_wrap p {
    font-size: min(1.5vw, 18px);
}

@media (max-width: 768px) {
    #mainvisual .mv_txt_wrap p {
        font-size: max(3vw, 16px);
    }

}


.wrapper {
    max-width: 968px;
    width: 88%;
    margin: 0 auto;
}

.note p {
    font-size: 80%;
}


.half-2col {
    display: flex;
    justify-content: space-between;
}

.half-2col div {
    width: 49%;
}

.btn-g,
.btn-b,
.btn-s {
    position: relative;
    display: inline-block;
    font-size: 25px;
    border-radius: 2em;
    font-weight: bold;
    text-align: center;
    /* line-height: 1; */
}

.btn-g::after,
.btn-b::after {
    position: absolute;
    content: '→';
    transition: 0.2s ease-in-out;
}

.btn-g::after {
    margin-left: 5%;
}

.btn-b::after {
    margin-left: 2%;
}

.btn-g:hover:after {
    right: 2em;
}

.btn-g {
    color: #fff;
    background-color: #468c98;
    padding: 0.8em 4em 0.8em 2.8em;
}

.btn-b {
    color: #000;
    background-color: rgb(9, 92, 167, 0.1);
    padding: 0.8em 3em 0.8em 1.8em;
}

.btn-s {
    color: #fff;
    background-color: #065AAA;
    padding: 0.8em 1.8em 0.8em 1.8em;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .btn-s {
        padding: 0.8em 1.8em;
    }

}

.btn-b:hover:after {
    right: 1em;
}

.col-12 {
    width: 100%
}

.col-11 {
    width: 91.66666667% !important;
}

.col-10 {
    width: 83.33333333% !important;
}

.col-9 {
    width: 75% !important;
}

.col-8 {
    width: 66.66666667% !important;
}

.col-7 {
    width: 58.33333333% !important;
}

.col-6 {
    width: 50% !important;
}

.col-5 {
    width: 41.66666667% !important;
}

.col-4 {
    width: 33.33333333% !important;
}

.col-3 {
    width: 25% !important;
}

.col-2 {
    width: 16.66666667% !important;
}

.col-1 {
    width: 8.33333333% !important;
}

.fl-rr {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
    #ph h4 {
        font-size: 1.75vw;
    }

    #ph ul {
        padding: 1.42vw 0;
        margin-top: -0.91vw;
    }

    #ph li {
        padding: 0 2.27vw;
        min-width: 13.55vw;
        height: 12.29vw;
    }

    .btn-g,
    .btn-b {
        font-size: 2.27vw;
    }

}

@media screen and (max-width: 768px) {
    h3 {
        font-size: min(6vw, 33px);
    }

    #ph h4 {
        font-size: 5vw;
    }

    #ph ul {
        display: block;
        padding: 4vw 0;
        margin-top: -2.5vw;
    }

    #ph li {
        padding: 0 4vw;
        height: auto;
        margin: 10vw auto;
        border-left: none;
    }

    #ph li:last-child {
        border-right: none;
    }

    .btn-g,
    .btn-b,
    .btn-s {
        font-size: 5vw;
        width: 100%;
    }

    .half-2col {
        display: block;
    }

    .col-12,
    .col-11,
    .col-10,
    .col-9,
    .col-8,
    .col-7,
    .col-6,
    .col-5,
    .col-4,
    .col-3,
    .col-2,
    .col-1 {
        width: 100% !important;
    }

    .half-2col div {
        width: 100%;
    }

    .wrapper p {
        font-size: max(2.5vw, 16px);
    }
}

@media (min-width:769px) {
    #tl .section-3-wrapper {
        margin: min(5vw, 60px) auto min(2vw, 24px);
        width: 100%;
        max-width: 980px;
    }

    #tl .section-3-bg {
        background: url(../img/manual-features/section2-back-transparent-textnone.png) no-repeat center top;
        background-size: contain;
        aspect-ratio: 980/701;
        width: 100%;
        position: relative;
        margin-top: min(1vw, 12px);
    }

    #tl .text-1 {
        position: absolute;
        top: 30px;
        right: 0;
        left: 0;
        margin: auto;
        font-size: 30px;
        line-height: 46px;
        text-align: center;
        font-weight: normal;
        color: #1b2936;
    }

    #tl .text-1 strong {
        color: #f44e4e;
        font-weight: bold;
    }

    #tl .text-1 strong strong {
        font-size: 36px;
        font-weight: normal;
        color: #1b2936;
    }
}

@media (max-width: 980px) {
    #tl .section-3-wrapper {
        transform-origin: top left;
    }
}

@media (max-width: 768px) {
    #tl .section-3-wrapper {
        background-color: #eaf5f7;
        width: 100%;
        margin: 10vw auto 5vw;
    }

    #tl .section-3-bg {
        background: url(../img/manual-features/section2-back-transparent-2.png) no-repeat center top;
        background-size: contain;
        position: relative;
        padding: 0 0 10% 0;
        aspect-ratio: 404/1028;
        margin-top: 2vw;
    }

    #tl .text-1 {
        width: auto;
        position: relative;
        margin: 0;
        padding: 17% 0 0 0;
        font-size: 140%;
        line-height: 140%;
        text-align: center;
        font-weight: normal;
        color: #1b2936;
    }

    #tl .text-1 strong {
        color: #f44e4e;
        font-weight: bold;
    }

    #tl .text-1 strong strong {
        font-size: 160%;
        font-weight: normal;
        line-height: 120%;
        color: #1b2936;
    }

}

.img_box {
    margin: min(5vw, 60px) auto;
}

@media print,
screen and (max-width: 768px) {
    #contact {
        margin-left: 0;
        margin-right: 0;
    }

    .wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

.contact-box {
    background-color: #095ca7;
    padding: 25px 40px;
    margin-bottom: 4em;
}

@media screen and (max-width: 768px) {
    .contact-box {
        padding: 3vw;
    }
}

.contact-box h5 {
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    /* line-height: 1; */
    text-align: center;
    margin-bottom: 0.8em;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .contact-box h5 {
        font-size: max(4vw, 18px);
    }

}


.contact-box dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(3vw, 36px);
}

.contact-box dt {
    width: 49%;
    background: linear-gradient(to right, #a4d0e2 33%, #5d7bb3 60%, #5d7bb3 100%);
    border-radius: 3em;
    padding: 3.5px;
}

.contact-box dt a {
    position: relative;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 29px;
    text-align: center;
    padding: 0.7em 0;
    background: linear-gradient(to right, #5d7bb3 0%, #a4d0e2 60%, #a4d0e2);
    border-radius: 2.7em;
}

.contact-box dt a::after {
    position: absolute;
    content: '';
    background-image: url(../img/manual/icon-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 0.4em;
    height: 0.8em;
    right: 0.7em;
    top: 55%;
    transform: translateY(-50%);
}

.contact-box dd {
    position: relative;
    flex-basis: 50%;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: min(1vw, 12px) 0 min(1vw, 12px) min(9vw, 108px);
    font-size: min(1.5vw, 16.8px);
    color: #fff;
    word-break: keep-all;
    font-weight: 500;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .contact-box dd {
        padding: 2vw 0 2vw 14vw;
        font-size: max(2.5vw, 13px);
    }
}

.contact-box dd::before {
    position: absolute;
    content: '';
    background-image: url(../img/manual/icon-tel-white.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.1em;
    height: 3.8em;
    left: 7.5%;
    top: 50%;
    transform: translateY(-50%)
}

@media screen and (max-width: 768px) {
    .contact-box dd::before {
        width: 7vw;
        height: auto;
        aspect-ratio: 108/131;
        left: 4vw;
    }

}

.contact-box dd a {
    font-size: 230%;
}

@media screen and (max-width: 768px) {
    .contact-box dd a {
        font-size: max(6vw, 28px);
        font-weight: 500;
    }
}

.contact-box.green_box {
    background-color: #468c98;
    color: #FFF;
}

.contact-box.green_box p {
    line-height: 1.75;
}

.contact-box.green_box dl {
    margin-top: min(1vw, 12px);
}


@media screen and (max-width: 768px) {
    .contact-box.green_box dl {
        margin-top: min(8vw, 20px);
        flex-direction: column;
    }
}

.contact-box.green_box dt {
    flex-basis: 50%;
    background: #1f515a;
    border-radius: 3em;
    padding: 3.5px;
}

@media screen and (max-width: 768px) {
    .contact-box.green_box dt {
        width: 100%;
    }
}

.contact-box.green_box dt a {
    position: relative;
    display: block;
    margin: 0 auto;
    color: #468c98;
    font-size: min(5vw, 29px);
    text-align: center;
    padding: 0.7em 0;
    background: #FFF;
    border-radius: 2.7em;
    font-weight: bold;
    line-height: 1;
}

.contact-box.green_box dt a::after {
    content: none;
}