@charset "utf-8";

/* ---------------------------------------------------- */
/* sec_ttl_wrap */
/* ---------------------------------------------------- */
.sec_ttl_wrap {
    padding-top: 20px;
    padding-bottom: 20px;
}

.sec_ttl_wrap .ttl_1 {
    display: flex;
    align-items: center;
    color: #08297b;
    font-weight: 700;
}
.sec_ttl_wrap .ttl_1::before {
    content: "";
    margin-right: 15px;
    width: 70px;
    height: 2px;
    background-color: #08297b;
}

@media (max-width: 767px) {
    .sec_ttl_wrap .ttl_1::before {
        margin-right: 15px;
        width: 50px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 410px;
    background: linear-gradient(90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
}

.sec_mv_wrap .ttl_1 {
    color: #fff;
    line-height: 1;
}

.sec_mv_wrap .ttl_1 > span:nth-of-type(1) {
    display: block;
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 26px;
}

.sec_mv_wrap .ttl_1 > span:nth-of-type(2) {
    display: block;
    margin-top: 10px;
    font-size: 12px;
}
.sec_mv_wrap .ttl_1 > span:nth-of-type(3) {
    display: block;
    margin-top: 25px;
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 70px;
    letter-spacing: 0.2em;
    line-height: 1.4;
}

.sec_mv_wrap .list_1 {
    display: flex;
    margin-top: 40px;
}
.sec_mv_wrap .list_1 > span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, rgba(7, 48, 120, 1) 5%, rgba(0, 18, 70, 1) 95%);
}
.sec_mv_wrap .list_1 > span + span {
    margin-left: 20px;
}
.sec_mv_wrap .list_2 {
    margin-top: 20px;
}
.sec_mv_wrap .list_2 > span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.sec_mv_wrap .btn_1 {
    position: fixed;
    right: 0;
    bottom: 40%;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    width: 220px;
    color: #08297b;
    text-align: center;
    line-height: 1.2;
    background-color: #fff;
    border-radius: 20px 0 0 20px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
    z-index: 20;
}
.is_page_scr .sec_mv_wrap .btn_1 {
    bottom: 10px;
}

.sec_mv_wrap .btn_1 > span:nth-of-type(1) {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.sec_mv_wrap .btn_1 > span:nth-of-type(2) {
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.sec_mv_wrap .btn_1 .close {
    position: absolute;
    right: 5px;
    top: -10px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../../common/img/ico/close_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.sec_mv_wrap .img_1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    border-radius: 50px 0 0 50px;
    background-color: #fff;
    overflow: hidden;
}
.sec_mv_wrap .img_1 > span {
    display: block;
    padding-top: 340px;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}
.sec_mv_wrap .marque_1 {
    position: absolute;
    left: 0;
    bottom: -5px;
    color: #fff;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    opacity: 0.1;
}
.sec_mv_wrap .marque_1 .inner {
    animation: marquee 400s linear infinite;
}

@keyframes marquee {
    0% {
        translate: 0;
    }
    100% {
        translate: calc(-100% - 1rem);
    }
}
@media (min-width: 768px) {
    .sec_mv_wrap .btn_1:hover {
        right: -10px;
    }
    .sec_mv_wrap .btn_1:hover .close {
        right: 15px;
    }
}
@media (max-width: 767px) {
    .sec_mv_wrap {
        padding-top: 0;
        padding-bottom: 30px;
        min-height: auto;
    }

    .sec_mv_wrap .ttl_1 > span:nth-of-type(1) {
        font-size: 15px;
    }

    .sec_mv_wrap .ttl_1 > span:nth-of-type(2) {
        margin-top: 10px;
        font-size: 12px;
    }
    .sec_mv_wrap .ttl_1 > span:nth-of-type(3) {
        margin-top: 20px;
        font-size: 40px;
    }

    .sec_mv_wrap .list_1 {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        margin-top: 0;
        margin-bottom: 0;
    }
    .sec_mv_wrap .list_1 > span {
        width: 140px;
        height: 40px;
        font-size: 18px;
    }
    .sec_mv_wrap .list_1 > span + span {
        margin-left: 0;
        margin-top: 10px;
    }
    .sec_mv_wrap .list_2 {
        margin-top: 20px;
    }
    .sec_mv_wrap .list_2 > span {
        font-size: 16px;
    }

    .sec_mv_wrap .btn_1 {
        bottom: 0 !important;
        padding: 0;
        width: 100%;
        height: 60px;
        border-radius: 0;
    }

    .sec_mv_wrap .btn_1 > span:nth-of-type(1) {
        margin-bottom: 5px;
        font-size: 18px;
    }
    .sec_mv_wrap .btn_1 > span:nth-of-type(2) {
        font-size: 13px;
    }

    .sec_mv_wrap .img_1 {
        position: static;
        transform: none;
        margin: 0 auto 20px;
        width: calc(100% - 30px);
        border-radius: 0 0 20px 20px;
    }
    .sec_mv_wrap .img_1 > span {
        padding-top: 37%;
    }
    .sec_mv_wrap .marque_1 {
        font-size: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_outline_wrap */
/* ---------------------------------------------------- */
.sec_outline_wrap {
    padding-top: 40px;
    padding-bottom: 40px;
}

.sec_outline_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec_outline_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    flex: none;
    width: 420px;
}
.sec_outline_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    flex: none;
    width: 640px;
}

.sec_outline_wrap .ttl_1 {
    margin-bottom: 20px;
    color: #08297b;
    font-weight: 500;
}

.sec_outline_wrap .ttl_1 > span:nth-of-type(1) {
    display: block;
    font-size: 27px;
}
.sec_outline_wrap .ttl_1 > span:nth-of-type(2) {
    display: block;
    font-size: 32px;
    text-indent: -0.5em;
}

.sec_outline_wrap .ttl_1 > span:nth-of-type(2) > span {
    display: inline-block;
    font-size: 27px;
    text-indent: -0.5em;
}
.sec_outline_wrap .desc_1 {
    color: #08297b;
    font-size: 16px;
    line-height: 2;
}
.sec_outline_wrap .nav_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -20px;
    margin-right: -20px;
}
.sec_outline_wrap .nav_1 > ul > li {
    position: relative;
    flex: none;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-bottom: 5px;
    width: calc(100% / 4 - 20px);
    border-bottom: 3px solid #f2f2f2;
}

.sec_outline_wrap .nav_1 > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
}

.sec_outline_wrap .nav_1 a {
    position: relative;
    display: block;
    padding-bottom: 10px;
    height: 100%;
    color: #08297b;
}
.sec_outline_wrap .nav_1 a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 23px;
    height: 23px;
    background-color: #08297b;
    background-image: url(../../common/img/ico/arrow_1.svg);
    background-position: center;
    background-size: contain;
    border-radius: 100%;
    transition: 0.3s ease-in-out;
}

.sec_outline_wrap .nav_1 .num {
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}
.sec_outline_wrap .nav_1 .ttl {
    font-size: 13px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .sec_outline_wrap .nav_1 a:hover {
        background-color: #e7edf4;
    }
    .sec_outline_wrap .nav_1 a:hover::before {
        right: -5px;
    }
}

@media (max-width: 767px) {
    .sec_outline_wrap {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .sec_outline_wrap .clms_wrap_1 {
        display: block;
    }

    .sec_outline_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        margin-bottom: 30px;
        width: auto;
    }
    .sec_outline_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
        width: auto;
    }

    .sec_outline_wrap .ttl_1 {
        margin-bottom: 10px;
        text-align: center;
    }

    .sec_outline_wrap .ttl_1 > span:nth-of-type(1) {
        font-size: 16px;
    }
    .sec_outline_wrap .ttl_1 > span:nth-of-type(2) {
        font-size: 20px;
    }

    .sec_outline_wrap .ttl_1 > span:nth-of-type(2) > span {
        font-size: 20px;
    }
    .sec_outline_wrap .desc_1 {
        font-size: 14px;
        text-align: center;
    }
    .sec_outline_wrap .nav_1 > ul {
        margin-bottom: 0;
        margin-right: 00;
    }
    .sec_outline_wrap .nav_1 > ul > li {
        margin-bottom: 0;
        margin-right: 0;
        padding-bottom: 5px;
        width: calc(100% / 4);
        border-top: 2px solid #e6e6e6;
        border-right: 2px solid #e6e6e6;
    }
    .sec_outline_wrap .nav_1 > ul > li:nth-child(4n) {
        border-right: none;
    }

    .sec_outline_wrap .nav_1 a {
        position: relative;
        display: block;
        padding: 5px;
        height: 100%;
        color: #08297b;
    }
    .sec_outline_wrap .nav_1 a::before {
        display: none;
    }

    .sec_outline_wrap .nav_1 .num {
        margin-bottom: 5px;
        font-size: 25px;
    }
    .sec_outline_wrap .nav_1 .ttl {
        font-size: 9px;
    }
}
/* ---------------------------------------------------- */
/* sec_point_wrap */
/* ---------------------------------------------------- */
.sec_point_wrap {
    padding-bottom: 150px;
    background-color: #08297b;
    overflow: visible;
    clip-path: inset(0);
}
.sec_point_wrap_1 {
    padding-top: 90px;
}
.sec_point_wrap_1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 90px;
    background-color: #08297b;
    z-index: 2;
}
.sec_point_wrap .bg_1 {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 800px auto;
}
.sec_point_wrap_a .bg_1 {
    background-position: left bottom;
}
.sec_point_wrap_b .bg_1 {
    background-position: right bottom;
}
.sec_point_wrap .box_1_outer {
    position: absolute;
    top: 200px;
    height: calc(100% - 200px);
}
.sec_point_wrap .box_1_outer::before {
    content: "";
    position: absolute;
    left: 0;
    top: -201px;
    display: block;
    width: 100%;
    height: 201px;
    background-color: #08297b;
}
.sec_point_wrap .box_1 {
    display: flex;
    position: sticky;
    top: 300px;
    color: #fff;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
    z-index: 4;
}

.sec_point_wrap .box_1_inner {
    position: relative;
    padding: 60px 0;
    width: 460px;
}

.sec_point_wrap .box_1::before {
    content: "";
    display: block;
    width: calc(50vw - 600px);
    height: 100%;
    background-color: rgba(58, 176, 233, 1);
}

.sec_point_wrap_a .box_1_outer {
    left: 0;
}
.sec_point_wrap_a .box_1 {
    padding-right: 60px;
    border-radius: 0 40px 40px 0;
    background: linear-gradient(90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
}

.sec_point_wrap_b .box_1_outer {
    right: 0;
}
.sec_point_wrap_b .box_1 {
    padding-left: 60px;
    border-radius: 40px 0 0 40px;
    background: linear-gradient(-90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
}
.sec_point_wrap_b .box_1::before {
    order: 2;
}

.sec_point_wrap .box_2 {
    position: relative;
    display: flex;
    max-width: max-content;
    color: #08297b;
    background-color: #fff;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
    z-index: 3;
}

.sec_point_wrap .box_2::before {
    content: "";
    display: block;
    width: calc(50vw - 620px);
    height: 100%;
    background-color: #fff;
}
.sec_point_wrap .box_2_inner {
    position: relative;
    padding: 90px 0;
    width: 800px;
    min-height: 700px;
}
.sec_point_wrap_a .box_2 {
    margin-left: auto;
    margin-right: 0;
    border-radius: 40px 0 0 40px;
}
.sec_point_wrap_a .box_2::before {
    order: 2;
}
.sec_point_wrap_a .box_2_inner {
    padding-left: 170px;
    padding-right: 30px;
}

.sec_point_wrap_b .box_2 {
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 40px 40px 0;
}
.sec_point_wrap_b .box_2_inner {
    padding-left: 30px;
    padding-right: 170px;
}
.sec_point_wrap .num_1 {
    position: absolute;
    top: -150px;
    font-family: "din-2014", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
}
.sec_point_wrap_a .num_1 {
    left: 0;
}
.sec_point_wrap_b .num_1 {
    right: 0;
}
.sec_point_wrap .ico_1 {
    position: absolute;
    top: -160px;
    width: 200px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
}

.sec_point_wrap_a .ico_1 {
    right: 40px;
}
.sec_point_wrap_b .ico_1 {
    left: 40px;
}
.sec_point_wrap .ttl_1 {
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 36px;
    line-height: 1.4;
}
.sec_point_wrap .ttl_1 sup {
    font-size: 14px;
}

.sec_point_wrap .ttl_1 span {
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
}

.sec_point_wrap .desc_1 {
    margin-top: 30px;
}

.sec_point_wrap .img_1 {
    position: relative;
}

.sec_point_wrap .ttl_2 {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.sec_point_wrap .ttl_2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(58, 176, 233, 1) 5%, rgba(0, 40, 124, 1) 95%);
}
.sec_point_wrap .btn_1 {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sec_point_wrap {
        padding-top: 100px;
        padding-bottom: 0;
        overflow: hidden;
    }
    .sec_point_wrap_1::before {
        display: none;
    }
    .sec_point_wrap .bg_1 {
        position: absolute;
        background-size: 150% auto;
        background-attachment: unset;
    }
    .sec_point_wrap .box_1_outer {
        position: static;
        height: auto;
    }
    .sec_point_wrap_a .bg_1 {
        background-position: left top;
    }
    .sec_point_wrap_b .bg_1 {
        background-position: right top;
    }
    .sec_point_wrap .box_1_outer::before {
        display: none;
    }
    .sec_point_wrap .box_1 {
        position: relative;
        top: auto;
        padding: 0;
        width: calc(100% - 20px);
    }
    .sec_point_wrap .box_1::before {
        display: none;
    }
    .sec_point_wrap .box_1 {
        position: relative;
        top: auto;
        width: calc(100% - 20px);
    }
    .sec_point_wrap .box_1_inner {
        padding: 20px;
    }
    .sec_point_wrap_a .box_1 {
        left: auto;
        margin-left: 0;
        margin-right: auto;
        border-radius: 0 20px 20px 0;
    }

    .sec_point_wrap_b .box_1 {
        right: auto;
        margin-left: auto;
        margin-right: 0;
        border-radius: 20px 0 0 20px;
    }

    .sec_point_wrap .box_2 {
        display: block;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: -20px;
        max-width: none;
        border-radius: 0;
    }
    .sec_point_wrap .box_2_inner {
        padding: 50px 20px 30px !important;
        width: auto;
        min-height: auto;
    }

    .sec_point_wrap .box_2::before {
        display: none;
    }

    .sec_point_wrap .num_1 {
        position: absolute;
        top: -80px;
        font-size: 80px;
    }
    .sec_point_wrap_a .num_1 {
        left: 20px;
    }
    .sec_point_wrap_b .num_1 {
        right: 20px;
    }
    .sec_point_wrap .ico_1 {
        top: -90px;
        width: 100px;
    }

    .sec_point_wrap_a .ico_1 {
        right: auto;
        left: 120px;
    }
    .sec_point_wrap_b .ico_1 {
        left: auto;
        right: 120px;
    }
    .sec_point_wrap .ttl_1 {
        font-size: 25px;
    }
    .sec_point_wrap .ttl_1 sup {
        font-size: 14px;
    }

    .sec_point_wrap .ttl_1 span {
        font-size: 12px;
    }

    .sec_point_wrap .desc_1 {
        margin-top: 10px;
    }
    .sec_point_wrap .ttl_2 {
        margin-bottom: 20px;
        font-size: 22px;
    }
}
