@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root {
    --jp: "Zen Kaku Gothic New", sans-serif;
    --en: "Montserrat Alternates", sans-serif;
}

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: #FFFFFF;
    color: #39435A;
    font-family: var(--jp);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}

body.fixde {
    height: 100vh;
    overflow: hidden;
}

picture {
    width: 100%;
}

img,
source {
    width: 100%;
}




.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: #FFFFFF;
    z-index: 99990;
}

.header__wapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__wapper h1 {
    width: 160px;
}

.header__wapper .nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__wapper .nav ul li a {
    font-weight: 700;
}

.contact__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    background: #F4EE4C;
    border: solid 1px #1C5391;
    color: #1C5391;
    border-radius: 100px;
    gap: 8px;
    transition: 0.25s;
    transition-timing-function: ease-out;
}

.contact__button:hover {
    background: #EFC704;
}


.contact__button img {
    display: block;
    width: 24px;
    height: 24px;
}

.menu {
    display: none;
}

.contact__button-sp {
    display: none;
}


@media (max-width: 1024px) {

    .header__wapper h1 {
        width: 150px;
        position: relative;
        z-index: 99999;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -110%;
        width: 100%;
        height: 100dvh;
        overflow-y: scroll;
        background: #FFFFFF;
        transition: 0.4s;
        transition-timing-function: ease-out;
    }

    .nav.open {
        left: 0;
    }

    .nav nav {
        width: 90%;
        max-width: 310px;
        padding: 100px 0 80px;
        margin: 0 auto;
    }

    .header__wapper .nav nav ul {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        text-align: left;
    }

    .header__wapper .nav nav ul li {
        width: 100%;
    }

    .header__wapper .nav nav ul li:last-child a:hover {
        background: #1C5391;
    }

    .contact__button {
        height: 60px;
    }

    .menu {
        position: relative;
        z-index: 99999;
        display: block;
        width: 30px;
        height: 30px;
    }

    .menu span {
        width: 100%;
        height: 2px;
        position: absolute;
        top: 5px;
        left: 0;
        display: block;
        background: #1C5391;
        transition: 0.3s;
        transition-timing-function: ease-out;
    }

    .menu span:nth-child(2) {
        top: 15px;
    }

    .menu span:nth-child(3) {
        top: 25px;
    }

    .active.menu span {
        rotate: 45deg;
        top: 15px;
    }

    .active.menu span:nth-child(2) {
        opacity: 0;
    }

    .active.menu span:nth-child(3) {
        rotate: -45deg;
        top: 15px;
    }

    .contact__button {
        width: 100%;
    }

    .contact__button-sp {
        display: flex;
        background: #2B5CDD;
        color: #FFFFFF;
        border: solid 1px #FFFFFF;
        margin-top: -15px;
    }
}




.sec1 {
    position: relative;
}

.sec1 picture img,
.sec1 picture source {
    min-height: 100vh;
    object-fit: cover;
    object-position: top center;
}

.sec1__contents {
    position: absolute;
    z-index: 1;
    top: 120px;
    left: 5%;
    text-align: left;
    color: #FFFFFF;
    width: 90%;
}

.sec1__contents h2 {
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.5%;
}

.sec1__contents p {
    line-height: 1.6;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5%;
    max-width: 500px;
}

.sec1__contents ul {
    display: flex;
    gap: 16px;
}

.sec1__contents ul li a {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 100px;
    background: #F4EE4C;
    border: solid 1px #F4EE4C;
    color: #1C5391;
    transition: 0.25s;
    transition-timing-function: ease-out;
}

.sec1__contents ul li a:hover {
    background: #EFC704;
    border: solid 1px #EFC704;
}

.sec1__contents ul li:nth-child(2) a {
    background: #2B5CDD;
    color: #FFFFFF;
    border: solid 1px #FFFFFF;
}

.sec1__contents ul li:nth-child(2) a:hover {
    background: #1C5391;
}

.sec1__contents ul li a p {
    margin: 0;
}

.sec1__contents ul li a img {
    display: block;
    width: 24px;
    height: 24px;
}


@media (max-width: 767px) {
    .sec1__contents ul {
        flex-direction: column;
    }

    .sec1__contents h2 {
        font-size: 8vw;
    }

    .sec1__contents p {
        font-size: 1.6rem;
        margin-bottom: 10%;
    }

    .sec1__contents ul li a {
        width: 100%;
    }
}





.sec2 {
    padding: 100px 0;
}

.sec2__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec2__wapper__h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1C5391;
}

.sec2__wapper__contents {
    display: flex;
    gap: 40px;
}

.sec2__wapper__contents__text {
    width: 50%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
}

.sec2__wapper__contents__text span {
    color: #E65946;
}

.sec2__wapper__contents__picture {
    width: 50%;
}


@media (max-width: 767px) {
    .sec2__wapper__h2 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .sec2__wapper__contents {
        flex-direction: column;
    }

    .sec2__wapper__contents__text {
        width: 100%;
        font-size: 1.8rem;
    }

    .sec2__wapper__contents__picture {
        width: 100%;
    }

}




.sec3 {
    background: #F7F1EB;
    border-radius: 120px 120px 0 0;
    padding: 100px 0;
    text-align: left;
}

.sec3__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec3__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sec3__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
}

.sec3__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec3__wapper__strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1C5391;
}

.sec3__wapper__text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sec3__wapper__ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 25px;
}

.sec3__wapper__ul__li {
    width: 220px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 8px;
}

.sec3__wapper__ul__li h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: solid 2px #1C5391;
    margin-bottom: 16px;
    color: #1C5391;
}

.sec3__wapper__ul__li p {
    color: #1C5391;
    font-size: 1.7rem;
    line-height: 1.6;
}


@media (max-width: 767px) {
    .sec3 {
        border-radius: 80px 80px 0 0;
    }

    .sec3__wapper__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .sec3__wapper__title strong {
        font-size: 4.8rem;
    }

    .sec3__wapper__strong {
        font-size: 2.4rem;
    }

    .sec3__wapper__ul__li {
        width: 100%;
    }
}




.sec4 p {
    background: #1C5391;
    padding: 100px 0 20px;
    color: #FFFFFF;
    font-size: 2.4rem;
    font-weight: 700;
}

.sec4 p strong {
    font-size: 4rem;
    font-weight: 900;
}

.sec4 p strong span {
    color: #E65946;
}

.sec4 div {
    margin-top: -1px;
    width: 100%;
    height: 80px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-image: linear-gradient(#1c5391, #DB958B);
}

.sec4__sp {
    display: none;
}


@media (max-width: 767px) {
    .sec4 p strong {
        font-size: 2.4rem;
    }

    .sec4__sp {
        display: block;
    }
}




.sec5 {
    padding: 100px 0;
}

.sec5__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec5__wapper__strong {
    display: block;
    width: fit-content;
    color: #E65946;
    border-bottom: solid 1px #E65946;
    margin: 0 auto 24px;
    font-size: 2.4rem;
    font-family: var(--en);
    font-weight: 600;
}

.sec5__wapper__h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #1C5391;
    margin-bottom: 24px;
}

.sec5__wapper__p {
    font-size: 1.8rem;
    line-height: 1.6;
}

.sec5__wapper__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sec5__wapper__ul__li {
    padding: 24px;
    width: calc(100% / 2 - 15px);
}

.sec5__wapper__ul__li__title {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 16px;
}

.sec5__wapper__ul__li__title__picture {
    width: 60px;
}

.sec5__wapper__ul__li__title__text {
    line-height: 1.2;
    color: #1C5391;
    text-align: left;
    flex: 1;
}

.sec5__wapper__ul__li__title__text strong {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--en);
}

.sec5__wapper__ul__li__title__text h3 {
    font-size: 2.4rem;
    font-weight: 700;
}

.sec5__wapper__ul__li__picture {
    display: block;
    margin-bottom: 16px;
}

.sec5__wapper__ul__li__p {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
    font-weight: 500;
}

.sec5__sp {
    display: none;
}


@media (max-width: 767px) {

    .sec5__sp {
        display: block;
    }

    .sec5__wapper__h2 {
        font-size: 2.4rem;
    }

    .sec5__wapper__p {
        margin-bottom: 50px;
    }

    .sec5__wapper__ul__li {
        width: 100%;
    }
}




.sec6 {
    padding: 100px 0;
    background-image: linear-gradient(#ffffff, #ffebdb);
}

.sec6__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec6__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 56px;
}

.sec6__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
}

.sec6__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec6__wapper__contents1 {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
}

.sec6__wapper__contents1__content {
    width: 50%;
    text-align: left;
}

.sec6__wapper__contents1__content h3 {
    font-size: 2.8rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.sec6__wapper__contents1__content h3 p {
    width: fit-content;
    display: inline-block;
    background: #1C5391;
    color: #FFFFFF;
    padding: 4px 15px;
}

.sec6__wapper__contents1__content__p {
    font-size: 2rem;
    line-height: 1.6;
}

.sec6__wapper__contents1__picture {
    width: 50%;
}

.sec6__wapper__contents2__h3 {
    width: fit-content;
    display: block;
    background: #1C5391;
    color: #FFFFFF;
    padding: 4px 15px;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 auto 40px 0;
}

.sec6__wapper__contents2__p {
    font-size: 2rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 40px;
}

.sec6__wapper__contents2__ul {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.sec6__wapper__contents2__ul__li {
    width: 50%;
    padding: 32px 32px 0;
    background: #FFFFFF;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-radius: 16px;
    position: relative;
}

.sec6__wapper__contents2__ul__li:nth-child(1)::after {
    content: "";
    background-image: url(../images/sec6/arrow.svg);
    background-size: contain;
    background-position: center;
    width: 27px;
    height: 80px;
    display: block;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.sec6__wapper__contents2__ul__li div {
    margin-bottom: 50px;
    text-align: left;
}

.sec6__wapper__contents2__ul__li div h4 {
    color: #1C5391;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
}

.sec6__wapper__contents2__ul__li:nth-child(2) div h4 {
    color: #E65946;
}

.sec6__wapper__contents2__ul__li div p {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 500;
}


@media (max-width: 1024px) {
    .sec6__wapper__contents1 {
        flex-direction: column;
    }

    .sec6__wapper__contents1__content {
        width: 100%;
    }

    .sec6__wapper__contents1__picture {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .sec6__wapper__contents2__ul__li {
        flex-direction: column;
    }
}


@media (max-width: 767px) {
    .sec6__wapper__title {
        display: block;
        text-align: left;
    }

    .sec6__wapper__title strong {
        font-size: 4.8rem;
    }

    .sec6__wapper__contents1__content h3,
    .sec6__wapper__contents2__h3 {
        font-size: 2.2rem;
        margin-bottom: 28px;
    }

    .sec6__wapper__contents1__content__p,
    .sec6__wapper__contents2__p {
        font-size: 1.8rem;
    }

    .sec6__wapper__contents2__ul {
        flex-direction: column;
        gap: 70px;
    }

    .sec6__wapper__contents2__ul__li {
        width: 100%;
    }

    .sec6__wapper__contents2__ul__li:nth-child(1)::after {
        top: auto;
        bottom: -90px;
        left: 50%;
        transform: translate(-50%, 0);
        rotate: 90deg;
    }
}




.sec7 {
    position: relative;
    padding: 120px 0;
    background-image: linear-gradient(90deg, #e65946, #ff543c);
}

.sec7::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    height: 75%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
    background-image: linear-gradient(90deg, #ff543c, #e65946);
}

.sec7__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.sec7__wapper h2 {
    text-align: left;
    font-size: 10rem;
    font-family: var(--en);
    color: #FFFFFF;
    line-height: 1.6;
    font-weight: 700;
    width: 50%;
}

.sec7__wapper div {
    text-align: left;
    color: #FFFFFF;
    width: 50%;
}

.sec7__wapper div strong {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.6;
    padding-bottom: 10px;
    border-bottom: solid 2px #FFFFFF;
    margin-bottom: 16px;
}

.sec7__wapper div p {
    font-size: 1.8rem;
    font-weight: 700;
    font-weight: 700;
    margin-bottom: 16px;
}

.sec7__wapper div ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec7__wapper div ul li a {
    padding: 18px 32px;
    display: flex;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    background: #F4EE4C;
    border: solid 2px #1C5391;
    color: #1C5391;
    transition: 0.25s;
    transition-timing-function: ease-out;
}

.sec7__wapper div ul li a:hover {
    background: #EFC704;
}

.sec7__wapper div ul li:nth-child(2) a {
    border: solid 2px #FFFFFF;
    color: #FFFFFF;
    background: #2B5CDD;
}

.sec7__wapper div ul li:nth-child(2) a:hover {
    background: #1C5391;
}

.sec7__wapper div ul li a p {
    margin: 0;
}

.sec7__wapper div ul li a img {
    width: 24px;
    height: 24px;
}


@media(max-width: 1024px) {
    .sec7__wapper {
        flex-direction: column;
    }

    .sec7__wapper div {
        width: 100%;
    }

    .sec7__wapper h2 {
        width: 100%;
        text-align: center;
    }

    .sec7__wapper div ul {
        flex-direction: column;
        gap: 20px;
    }

    .sec7__wapper div p {
        margin-bottom: 30px;
    }

    .sec7__wapper div ul li {
        width: 100%;
    }

    .sec7__wapper div ul li a {
        width: 100%;
    }
}


@media (max-width: 767px) {
    .sec7__wapper h2 {
        font-size: 7.2rem;
        margin-bottom: 80px;
    }

    .sec7__wapper div strong {
        font-size: 2.4rem;
    }
}




.sec8 {
    position: relative;
    padding: 120px 0 240px;
    background-image: url(../images/sec8/bg.jpg);
    background-repeat: repeat;
    background-position: center;
    text-align: left;
}

.sec8__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec8__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sec8__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
}

.sec8__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec8__wapper__strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1C5391;
}

.sec8__wapper__text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sec8__wapper__contents {
    padding: 40px 40px 100px;
    background: #FFFFFF;
}

.sec8__wapper__contents__p {
    color: #1C5391;
    font-weight: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
}

.zen-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.zen-table {
    width: 100%;
    min-width: 1000px;
    table-layout: fixed;
    border-collapse: collapse;
    color: #1C5391;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
}

/* 各列の横幅 */
.zen-table__category {
    width: 24.5%;
}

.zen-table__content {
    width: 25%;
}

.zen-table__feature {
    width: 25%;
}

.zen-table__recommend {
    width: 25.5%;
}

.zen-table thead th {
    height: 96px;
    padding: 20px 25px;
    border-bottom: 2px solid #dddddd;
    text-align: center;
    vertical-align: middle;
}

.zen-table thead .zen-table__empty {
    background-color: #5a84b0;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.zen-table tbody td {
    height: 96px;
    padding: 20px 10px;
    border-bottom: 2px solid #dddddd;
    text-align: center;
    vertical-align: middle;
}

.zen-table thead th:not(:first-child),
.zen-table tbody td {
    border-left: 10px solid #ffffff;
}

.zen-table tbody th {
    height: 96px;
    padding: 20px 25px;
    background-color: #547EAC;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
}

.zen-table tbody tr:last-child th {
    border-bottom: none;
}

.scroll__text {
    display: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E65946;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .scroll__text {
        display: block;
    }
}


@media (max-width: 767px) {
    .sec8__wapper__title {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .sec8__wapper__title strong {
        font-size: 4.8rem;
    }

    .sec8__wapper__strong {
        font-size: 2.4rem;
    }

    .sec8__wapper__contents {
        padding: 40px 16px 100px;
    }
}




.sec9 {
    padding: 120px 0 240px;
    background: #F7F1EB;
    border-radius: 0 120px 0 0;
    margin-top: -121px;
    position: relative;
    z-index: 1;
}

.sec9__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec9__wapper__h2 {
    font-size: 5.6rem;
    font-weight: 700;
    color: #E65946;
}

.sec9__wapper__small {
    display: block;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #1C5391;
}

.sec9__wapper__strong {
    display: block;
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1C5391;
}

.sec9__wapper__p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #1C5391;
    margin-bottom: 24px;
}

.sec9__wapper__ul {
    display: flex;
    gap: 24px;
}

.sec9__wapper__ul__li {
    width: 20%;
    position: relative;
    padding: 24px 0;
}

.sec9__wapper__ul__li::after {
    content: "";
    width: 2px;
    height: 100%;
    display: block;
    top: 0;
    right: -12px;
    position: absolute;
    background: #1C5391;
}

.sec9__wapper__ul__li img {
    display: block;
    width: 50%;
    min-width: 75px;
    margin: 0 auto 16px;
}

.sec9__wapper__ul__li h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #1C5391;
    width: 80%;
    margin: 0 auto;
}


@media (max-width: 767px) {
    .sec9__wapper__ul {
        flex-direction: column;
    }
}


@media (max-width: 767px) {
    .sec9__wapper__h2 {
        font-size: 4rem;
    }

    .sec9__wapper__strong {
        font-size: 2.4rem;
    }

    .sec9__wapper__ul__li {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    .sec9__wapper__ul__li::after {
        top: auto;
        right: 0;
        bottom: -15px;
        width: 100%;
        height: 2px;
    }
}




.sec10 {
    padding: 120px 0 240px;
    background: #FFFFFF;
    border-radius: 120px 0 0 0;
    margin-top: -121px;
    position: relative;
    z-index: 2;
}

.sec10__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec10__wapper__h2 {
    font-size: 5.6rem;
    font-weight: 700;
    color: #E65946;
}

.sec10__wapper__small {
    display: block;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #1C5391;
}

.sec10__wapper__contents {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.sec10__wapper__contents picture {
    width: 50%;
}

.sec10__wapper__contents div {
    width: 50%;
    text-align: left;
}

.sec10__wapper__contents div h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1C5391;
}

.sec10__wapper__contents div p {
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1.8rem;
    color: #1C5391;
}

.sec10__wapper__contents div strong {
    color: #1C5391;
    background: #EFF4FF;
}

.sec10__wapper__ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sec10__wapper__ul__li {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1C5391;
    border-radius: 100px;
    filter: drop-shadow(0 0 18px #F3F0E5);
    background: #FFFFFF;
}

.sec10__wapper__ul__li img {
    width: auto;
    height: 22px;
    object-fit: contain;
}


@media (max-width: 1024px) {
    .sec10__wapper__ul {
        justify-content: flex-start;
    }
}


@media (max-width: 767px) {

    .sec10__wapper__h2 {
        font-size: 4rem;
    }

    .sec10__wapper__contents {
        flex-direction: column;
    }

    .sec10__wapper__contents picture {
        width: 100%;

    }

    .sec10__wapper__contents div {
        width: 100%;
    }

    .sec10__wapper__contents div h3 {
        font-size: 2.4rem;
    }

    .sec10__wapper__ul__li {
        justify-content: flex-start;
        padding-left: 24px;
    }
}




.sec11 {
    padding: 120px 0;
    border-bottom: solid 40px #1C5391;
    background: #F7F1EB;
    border-radius: 0 120px 0 0;
    margin-top: -121px;
    position: relative;
    z-index: 3;
}

.sec11__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec11__wapper__h2 {
    font-size: 5.6rem;
    font-weight: 700;
    color: #E65946;
}

.sec11__wapper__small {
    display: block;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #1C5391;
}


.sec11__wapper__contents {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.sec11__wapper__contents picture {
    width: 50%;
}

.sec11__wapper__contents div {
    width: 50%;
    text-align: left;
}

.sec11__wapper__contents div h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1C5391;
}

.sec11__wapper__contents div p {
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1.8rem;
    color: #1C5391;
}

.sec11__wapper__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.sec11__wapper__ul__li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #FFFFFF;
}

.sec11__wapper__ul__li small {
    margin-top: 45px;
    color: #E65946;
    font-family: var(--en);
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
}

.sec11__wapper__ul__li h4 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #1C5391;
    margin-bottom: 16px;
    font-weight: 700;
}

.sec11__wapper__ul__li p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #1C5391;
}


@media (max-width: 1024px) {
    .sec11__wapper__ul {
        justify-content: center;
    }
}


@media (max-width: 767px) {
    .sec11__wapper__h2 {
        font-size: 4rem;
    }

    .sec11__wapper__contents {
        flex-direction: column-reverse;
    }

    .sec11__wapper__contents picture {
        width: 100%;
    }

    .sec11__wapper__contents div {
        width: 100%;
    }

    .sec11__wapper__contents div h3 {
        font-size: 2.4rem;
    }
}




.sec12 {
    position: relative;
    padding: 120px 0;
    text-align: left;
    background: #EFF4FF;
}

.sec12__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec12__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sec12__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
    line-height: 1.2;
}

.sec12__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec12__wapper__strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.sec12__wapper__p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sec12__wapper__h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #E65946;
    margin-bottom: 20px;
}

.sec12__wapper__h3 span {
    display: inline-block;
    margin-right: 8px;
    width: 12px;
    height: 12px;
    background: #E65946;
    border-radius: 50%;
    margin-bottom: 3px;
}

.sec12__wapper__ul1 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.sec12__wapper__ul1__li {
    padding: 16px;
    position: relative;
    text-align: left;
}

.sec12__wapper__ul1__li::after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -8px;
    background: #1C5391;
    display: block;
}

.sec12__wapper__ul1__li h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1C5391;
    margin-bottom: 10px;
}

.sec12__wapper__ul1__li p {
    color: #1C5391;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    line-height: 1;
}

.sec12__wapper__ul1__li:last-child p {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.sec12__wapper__ul1__li p strong {
    font-size: 6.4rem;
    font-family: var(--en);
    font-weight: 700;
}

.sec12__wapper__ul1__li p small {
    font-size: 2.8rem;
    font-weight: 700;
}

.sec12__wapper__ul1__li:last-child p small {
    font-size: 1.4rem;
}

.sec12__wapper__ul2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.sec12__wapper__ul2__li {
    width: calc(100% / 3 - 16px);
    border-radius: 8px;
    background: #FFFFFF;
    padding-bottom: 40px;
    overflow: hidden;
}

.sec12__wapper__ul2__li picture {
    display: block;
    margin-bottom: 24px;
}

.sec12__wapper__ul2__li div {
    width: 90%;
    margin: 0 auto;
}

.sec12__wapper__ul2__li div ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.sec12__wapper__ul2__li div ul li {
    font-size: 1.5rem;
    padding: 4px 12px;
    background: #F7F1EB;
    border: solid 1px #1C5391;
    border-radius: 100px;
    color: #1C5391;
    text-align: center;
}

.sec12__wapper__ul2__li div h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #1C5391;
}

.sec12__wapper__ul2__li div p {
    font-weight: 400;
    line-height: 1.6;
    color: #1C5391;
}


@media (max-width: 1024px) {
    .sec12__wapper__ul2__li {
        width: calc(100% / 2 - 12.5px);
    }
}


@media (max-width: 767px) {
    .sec12__wapper__title {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .sec12__wapper__strong {
        font-size: 2.4rem;
    }

    .sec12__wapper__ul1__li {
        width: 100%;
    }

    .sec12__wapper__ul1__li::after {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: -10px;
        right: -8px;
    }

    .sec12__wapper__ul1 {
        margin-bottom: 80px;
    }

    .sec12__wapper__ul2__li {
        width: 100%;
    }
}




.sec13 {
    padding: 100px 0;
}

.sec13__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec13__wapper__strong {
    display: block;
    width: fit-content;
    color: #E65946;
    border-bottom: solid 1px #E65946;
    margin: 0 auto 24px;
    font-size: 2.4rem;
    font-family: var(--en);
    font-weight: 600;
}

.sec13__wapper__h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #1C5391;
    margin-bottom: 24px;
}

.sec13__wapper__p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.sec13__wapper__ul {
    max-width: 600px;
    margin: 0 auto;
}

.sec13__wapper__ul__li {
    position: relative;
    display: flex;
    gap: 24px;
}

.sec13__wapper__ul__li::after {
    content: "";
    width: 2px;
    height: 100%;
    top: 10px;
    left: 32px;
    position: absolute;
    display: block;
    background: #1C5391;
}

.sec13__wapper__ul__li:last-child:after {
    content: none;
}

.sec13__wapper__ul__li strong {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E65946;
    color: #FFFFFF;
    font-size: 3.2rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.sec13__wapper__ul__li div {
    flex: 1;
    text-align: left;
}

.sec13__wapper__ul__li div h3 {
    margin-top: 14px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1C5391;
    margin-bottom: 8px;
}


@media (max-width: 767px) {
    .sec13__wapper__h2 {
        font-size: 2.4rem;
    }

    .sec13__wapper__ul__li div h3 {
        font-size: 2.2rem;
    }
}




.sec14 {
    position: relative;
    padding: 120px 0 0;
    text-align: left;
    background: #F7F1EB;
    border-radius: 120px 0 0 0;
}

.sec14__wapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 120px;
    border-bottom: solid 1px #1C5391;
}

.sec14__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sec14__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
}

.sec14__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec14__wapper__strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1C5391;
}

.sec14__wapper__ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sec14__wapper__ul__li {
    padding: 20px 32px;
    background: #FFFFFF;
}

.sec14__wapper__ul__li h3 {
    display: flex;
    gap: 24px;
    align-items: center;
    color: #E65946;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sec14__wapper__ul__li h3 img {
    display: block;
    width: 28px;
}

.sec14__wapper__ul__li p {
    font-size: 1.8rem;
    line-height: 1.6;
}


@media (max-width: 767px) {
    .sec14__wapper__title {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .sec14__wapper__title strong {
        font-size: 4.8rem;
    }

    .sec14__wapper__strong {
        font-size: 2.4rem;
    }

    .sec14__wapper__ul__li p {
        font-size: 1.6rem;
    }
}




.sec15 {
    padding: 120px 0;
    text-align: left;
    background: #F7F1EB;
}

.sec15__wapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.sec15__wapper__title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sec15__wapper__title strong {
    font-family: var(--en);
    font-size: 5.6rem;
    font-weight: 600;
    color: #E65946;
}

.sec15__wapper__title h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.sec15__wapper__contents {
    display: flex;
    gap: 40px;
}

.sec15__wapper__contents picture {
    width: 320px;
}

.sec15__wapper__contents__text {
    flex: 1;
}

.sec15__wapper__contents__text h3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.sec15__wapper__contents__text h3 p {
    font-size: 2.8rem;
    font-weight: 700;
    width: fit-content;
    padding: 4px 16px;
    background: #1C5391;
    color: #FFFFFF;
    margin: 0;
}

.sec15__wapper__contents__text p {
    line-height: 1.6;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.sec15__wapper__contents__text div small {
    display: block;
    font-weight: 700;
    line-height: 1.6;
}

.sec15__wapper__contents__text div strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6;
}


@media (max-width: 767px) {

    .sec15__wapper__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .sec15__wapper__title strong {
        font-size: 4.8rem;
    }

    .sec15__wapper__contents {
        flex-direction: column;
    }

    .sec15__wapper__contents__text h3 p {
        font-size: 2.4rem;
    }
}




.sec16 {
    padding: 120px 0;
    background: #E65946;
}

.sec16__wapper {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 2.5%;
    background: #FFFFFF;
    border-radius: 24px;
}

.sec16__wapper__h2 {
    display: block;
    width: fit-content;
    color: #1C5391;
    border-bottom: solid 1px #E65946;
    margin: 0 auto 24px;
    font-size: 2.4rem;
    font-family: var(--en);
    font-weight: 600;
}

.sec16__wapper__strong {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #E65946;
    margin-bottom: 24px;
}

.sec16__wapper__p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #1C5391;
}




.footer {
    padding: 40px 0;
    background: #1C5391;
    color: #FFFFFF;
}


.scroll__effect {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.scroll__effect.active {
    opacity: 1;
    transform: translateY(0px);
}


@media (max-width: 767px) {}