@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: "Outfit", sans-serif;
    --color-white: #ffffff;
    --color-black: #313131;
    --header-height: 0;
}
@media (max-width: 768px) {
    :root {
        --header-height: 40px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    font-weight: 500;
    font-family: var(--font-jp);
    padding-top: var(--header-height);
}
@media (max-width: 768px) {
    html body {
        font-size: 1.5rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.fw400 {
    font-weight: 400;
}

.inner {
    padding: 0 5.6%;
}

.grecaptcha-badge {
    visibility: hidden;
}

.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .sp1280 {
        display: block !important;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    visibility: hidden;
    display: block;
    width: 25px;
    height: 10px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 22px;
    top: 13px;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
    --span__span: 10px;
}
.menu-trigger span {
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #CB020A;
    position: absolute;
    left: calc(50% - 15px);
    transition-property: top, left, transform, background-color;
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--span__span) / 2);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--span__span) / 2);
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
@media (max-width: 768px) {
    .menu-trigger {
        visibility: visible;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--span__span) / 2);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - var(--span__span) / 2);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--span__span) / 2);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + var(--span__span) / 2);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: var(--header-height);
    padding: 0 22px;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    filter: drop-shadow(0px 3px 12px rgba(0, 0, 0, 0.16));
    display: none;
}
@media (max-width: 768px) {
    header {
        display: flex;
    }
}
header .header__logo {
    display: block;
    width: 79px;
}

.nav {
    display: none;
}
@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100vh;
        color: #fff;
        background: #313131;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        padding-top: var(--header-height);
        padding-left: 4%;
        padding-right: 4%;
        opacity: 0;
        z-index: -1;
    }
    .nav.loaded {
        transition-duration: 0.8s;
        transition-delay: 0.4s;
    }
    .nav .nav__logo {
        position: absolute;
        width: 79px;
        top: 6px;
        left: 22px;
    }
    .nav .wrapper {
        width: min(100%, 350px);
        padding-top: 20px;
    }
    .nav .wrapper .nav__menu ul {
        margin-bottom: 50px;
    }
    .nav .wrapper .nav__menu ul li {
        font-size: 1.6rem;
        font-weight: 800;
        padding: 15px 0;
        border-bottom: 1px solid #CB020A;
    }
    .nav .wrapper .nav__menu .nav__btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        height: 50px;
        border-radius: 25px;
        background: #cb020a;
        box-shadow: 1px 5px 12px rgba(2, 87, 186, 0.14);
        margin-bottom: 20px;
        color: #fff;
        font-weight: 800;
        position: relative;
    }
    .nav .wrapper .nav__menu .nav__btn::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 23px;
        width: 5.7px;
        aspect-ratio: 5.7/9.6;
        background: #fff;
        -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
                mask: url(../img/btn__arrow.svg) center/contain no-repeat;
    }
    .nav .wrapper .nav__menu .nav__btn.nav__btn__wh {
        background: #fff;
        color: #000;
    }
    .nav .wrapper .nav__menu .nav__btn.nav__btn__wh::before {
        background: #000;
    }
    .nav .wrapper .nav__menu .nav__btn .logo__contact {
        width: 15px;
        aspect-ratio: 1;
        background: #fff;
        -webkit-mask: url(../img/contact_logo.svg) center/contain no-repeat;
                mask: url(../img/contact_logo.svg) center/contain no-repeat;
    }
    .nav .wrapper .nav__menu .nav__btn .logo__x {
        width: 15px;
        aspect-ratio: 1;
        background: #000;
        -webkit-mask: url(../img/x_logo.svg) center/contain no-repeat;
                mask: url(../img/x_logo.svg) center/contain no-repeat;
    }
    .nav .wrapper .nav__menu .font12 {
        font-size: 1.2rem;
    }
    .nav .wrapper .nav__menu .font10 {
        font-size: 1rem;
    }
}
.nav.active {
    z-index: 100000;
    opacity: 1;
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    font-weight: 400;
}
footer .font12 {
    font-size: 1.2rem;
}
footer .font10 {
    font-size: 1rem;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.main__container {
    display: flex;
}
.main__container .main__left, .main__container .main__right {
    position: fixed;
    top: 0;
    height: 100%;
    width: calc((100% - min(40%, 780px)) / 2);
}
.main__container .main__left {
    left: 0;
}
.main__container .main__right {
    right: 0;
}
@media (max-width: 1280px) {
    .main__container .main__right {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .main__container .main__right {
        display: none;
    }
}
.main__container .main__contents {
    width: min(40%, 780px);
    margin: 0 auto;
    position: relative;
}
@media (max-width: 1280px) {
    .main__container .main__contents {
        width: calc(100% - 300px);
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .main__container .main__contents {
        width: 100%;
    }
}

.main__left {
    background: url(../img/left_bg.webp) bottom/100% no-repeat, #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .main__left {
        display: none;
    }
}
.main__left .left__logo {
    display: block;
    width: 80%;
}

.main__right {
    background: url(../img/right_bg.webp) bottom/100% no-repeat, #CB020A;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
@media (max-width: 1280px) {
    .main__right {
        padding: 15px;
    }
}
.main__right ul {
    font-size: 2rem;
    font-weight: 800;
}
@media (max-width: 1500px) {
    .main__right ul {
        font-size: 1.7rem;
    }
}
@media (max-width: 1280px) {
    .main__right ul {
        font-size: 1.5rem;
    }
}
.main__right ul li {
    border-bottom: 1px solid #DDEDFF;
    padding: 25px 0;
}
@media (max-width: 1500px) {
    .main__right ul li {
        padding: 20px 0;
    }
}
@media (max-width: 1280px) {
    .main__right ul li {
        padding: 10px 0;
    }
}
.main__right .main__right__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 346px);
    height: 50px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 1px 5px 12px rgba(2, 87, 186, 0.14);
    font-weight: 700;
    color: #0257BA;
    gap: 7px;
    position: relative;
}
.main__right .main__right__btn::before {
    content: "";
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 5.7px;
    aspect-ratio: 5.7/9.6;
    background: #0257BA;
    -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
            mask: url(../img/btn__arrow.svg) center/contain no-repeat;
}
.main__right .main__right__btn.main__right__btn__x {
    color: var(--color-black);
}
.main__right .main__right__btn.main__right__btn__x::before {
    background: var(--color-black);
}
.main__right .main__right__btn .logo__contact {
    width: 15px;
    aspect-ratio: 1;
    background: url(../img/contact_logo.svg) center/contain no-repeat;
}
.main__right .main__right__btn .logo__x {
    width: 15px;
    aspect-ratio: 1;
    background: url(../img/x_logo.svg) center/contain no-repeat;
}

.h2__wrapper {
    width: min(100%, 500px);
    margin: 0 auto;
}

.sec__01 {
    padding: 40px 0;
    background: #000;
}
.sec__01 .wh__box {
    width: min(100%, 350px);
    margin: 30px auto 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 10px 10px 15px;
}
.sec__01 .wh__box .txt {
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.67;
}
.sec__01 .wh__box .txt .font14 {
    color: #D7000F;
}
.sec__01 .wh__box .sec__01__btn {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 25px;
    background: #cb020a;
    box-shadow: 1px 5px 12px rgba(142, 142, 142, 0.35);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    padding: 0 20px 0 10px;
}
.sec__01 .wh__box .sec__01__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    width: 5.7px;
    aspect-ratio: 5.7/9.6;
    background: #fff;
    -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
            mask: url(../img/btn__arrow.svg) center/contain no-repeat;
}

.sec__02 {
    padding: 35px 0 70px;
    background: url(../img/sec_02_bg.webp) bottom/100% no-repeat;
}
@media (max-width: 1280px) {
    .sec__02 {
        padding-bottom: 80px;
    }
}
.sec__02 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 800;
    text-align: center;
    line-height: 1.56;
}
.sec__02 h2 .font__rd {
    color: #CB020A;
    font-family: var(--font-en);
}
.sec__02 h2 .font14 {
    font-size: 1.4rem;
}
.sec__02 h2 .ul {
    position: relative;
}
.sec__02 h2 .ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    background: #FFEB00;
    z-index: -1;
}
.sec__02 .num__box {
    margin: 40px auto 0;
    border: 2px solid #313131;
    border-radius: 10px;
    width: min(100%, 310px);
    position: relative;
    padding: 25px 20px 20px;
}
.sec__02 .num__box .num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-black);
    color: #fff;
    font-family: var(--font-en);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}
.sec__02 .num__box .txt {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1em;
}
.sec__02 .num__box .txt .font18 {
    font-size: 1.8rem;
    color: #CB020A;
}
.sec__02 .num__box img {
    border-radius: 5px;
}
.sec__02 .font16 {
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    -webkit-text-decoration: underline 1px #CB020A;
            text-decoration: underline 1px #CB020A;
}
.sec__02 .font16 .font22 {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-en);
}
.sec__02 .font16 .font20 {
    font-size: 2rem;
}
.sec__02 .font16 .font__rd {
    font-size: 2rem;
    color: #CB020A;
}
.sec__02 .sec__02__btn {
    margin: 30px auto 0;
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 30px 15px;
    position: relative;
    z-index: 1;
}
.sec__02 .sec__02__btn::before {
    content: "";
    position: absolute;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #D9D9D9;
    left: 0;
    top: 0;
    z-index: -1;
}
.sec__02 .sec__02__btn::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 0;
    height: 2.5px;
    bottom: 7px;
    background: var(--color-black);
}
.sec__02 .sec__02__btn .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    aspect-ratio: 1;
    background: url(../img/sec_02_btn.svg) center/contain no-repeat;
}

.sec__03 {
    color: #fff;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1280px) {
    .sec__03 {
        padding-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .sec__03 {
        padding-bottom: 60px;
    }
}
.sec__03::before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/sec_03_bg.webp) bottom 0 center/cover no-repeat;
    z-index: -1;
}
@media (max-width: 1280px) {
    .sec__03::before {
        top: 60px;
    }
}
.sec__03 .font14 {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}
.sec__03 .sec__03__top__img {
    margin-top: -45px;
}
@media (max-width: 1280px) {
    .sec__03 .sec__03__top__img {
        margin-top: -55px;
    }
}
.sec__03 .sec__03__banner__list {
    margin: 30px auto;
    width: min(100%, 311px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}
.sec__03 .sec__03__banner__list img {
    border-radius: 5px;
}
.sec__03 .font16 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.sec__03 .font16 .font22 {
    font-size: 2.2rem;
    background: #CB020A;
}
.sec__03 .popup__wh {
    margin-top: 10px;
    background: #fff;
    color: var(--color-black);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 15px 8px;
    margin-bottom: -1px;
}
.sec__03 .popup__wh .font__rd {
    color: #CB020A;
}
.sec__03 .sec__03__sokode {
    margin-top: 32px;
    font-size: 1.4rem;
    font-weight: 900;
}

.sec__04 {
    margin-top: -80px;
    background: #DDDDDD;
    padding-top: 80px;
}
@media (max-width: 1280px) {
    .sec__04 {
        margin-top: -90px;
        padding-top: 90px;
    }
}
@media (max-width: 768px) {
    .sec__04 {
        margin-top: -70px;
        padding-top: 70px;
    }
}
.sec__04 h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
}
.sec__04 h2 .font__rd {
    color: #CB020A;
}
.sec__04 .sec__04__logo {
    max-width: 283px;
    margin: 0 auto;
}
.sec__04 .sec__04__bottom {
    height: 65px;
    position: relative;
}
.sec__04 .sec__04__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: -1px;
    background: #fff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.sec__04 .sec__04__bottom::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: -1px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.sec__05 {
    padding-top: 20px;
}
.sec__05 .font14 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}
.sec__05 .font16 {
    margin-top: 5px;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}
.sec__05 .font16 .font__rd {
    color: #CB020A;
}
.sec__05 .font16 .font-en {
    font-weight: 600;
}
.sec__05 .font16 .font25 {
    font-size: 2.5rem;
    position: relative;
}
.sec__05 .font16 .font25::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 7px;
    background: #FFEB00;
}

.sec__06 {
    background: url(../img/sec_06_bg.webp) center top/cover no-repeat;
    padding-top: 80px;
}
@media (max-width: 1280px) {
    .sec__06 {
        padding-top: 100px;
    }
}
@media (max-width: 768px) {
    .sec__06 {
        padding-top: 70px;
    }
}
.sec__06 h2 {
    margin-bottom: 30px;
}
.sec__06 .font16 {
    margin: 10px auto 0;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}
.sec__06 .font16::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #CB020A;
}
.sec__06 .font16 .font__rd {
    font-size: 2rem;
    color: #CB020A;
}
.sec__06 .mt__40 {
    margin-top: 40px;
}
.sec__06 .mt__20 {
    margin-top: 20px;
}
.sec__06 .accordion {
    border-radius: 5px;
    background: #fff;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.sec__06 .accordion .accordion__default {
    background: #CB020A;
    padding: 10px 10px 10px 18px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.6rme;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in;
}
.sec__06 .accordion .accordion__default .indicator {
    width: 34px;
    aspect-ratio: 1;
    border-radius: 5px;
    background: #fff;
    position: relative;
    transition: inherit;
}
.sec__06 .accordion .accordion__default .indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    aspect-ratio: 1;
    background: #CB020A;
    -webkit-mask: url(../img/plus.svg) center/contain no-repeat;
            mask: url(../img/plus.svg) center/contain no-repeat;
    transform-origin: center center;
    transition: inherit;
}
.sec__06 .accordion.active .accordion__default {
    background: #fff;
    color: #CB020A;
}
.sec__06 .accordion.active .indicator {
    background: #CB020A;
}
.sec__06 .accordion.active .indicator::before {
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff;
}
.sec__06 .accordion .accordion__box {
    padding: 5px 18px 17px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.79;
}
.sec__06 .accordion .accordion__box .mt__30 {
    margin-top: 30px;
}

.sec__06__wh__box {
    margin-top: 25px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.07);
    padding: 20px;
}
.sec__06__wh__box .font14 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.57;
}
.sec__06__wh__box .font14 .ul {
    font-size: 1.8rem;
    position: relative;
    z-index: 0;
}
.sec__06__wh__box .font14 .ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 7px;
    background: #FFEB00;
    z-index: -1;
}
.sec__06__wh__box .font14 .font__bl {
    font-size: 1.8rem;
    color: #0257BA;
}
.sec__06__wh__box .font14 .font__rd {
    font-size: 1.8rem;
    color: #CB020A;
}
.sec__06__wh__box .mw184 {
    width: min(100%, 184px);
    margin: 15px auto 0;
}

.sec__07 {
    position: relative;
    padding-top: 150px;
    z-index: 0;
    margin-top: -100px;
}
.sec__07::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #CB020A;
    z-index: -1;
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 50px));
}
.sec__07 .font__wh {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.sec__07 .mb__15 {
    margin-bottom: 15px;
}
.sec__07 .mt__20 {
    margin-top: 20px;
}
.sec__07 .wh__box {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    padding: 25px 30px 35px;
}
.sec__07 .wh__box .mw248 {
    max-width: 248px;
    margin: 0 auto;
}
.sec__07 .wh__box ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sec__07 .wh__box ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9px;
    flex: 1 1;
}
.sec__07 .wh__box ul li::before {
    content: "";
    display: block;
    width: 23px;
    aspect-ratio: 1;
    background: url(../img/check.svg) center/contain no-repeat;
}
.sec__07 .wh__box ul li span {
    flex: 1 1;
}

.sec__08 {
    padding: 80px 0 30px;
}
.sec__08 .sec__08__box {
    border: 1.5px solid #CB020A;
    border-radius: 4px;
    padding: 12px;
    position: relative;
}
.sec__08 .sec__08__box .abs__txt {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 1.6rem;
}
.sec__08 .sec__08__box .abs__txt p {
    white-space: nowrap;
}
.sec__08 .sec__08__box .abs__txt .ul {
    font-size: 2.2rem;
    position: relative;
}
.sec__08 .sec__08__box .abs__txt .ul::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -6px;
    width: 100%;
    height: 11px;
    bottom: 0;
    background: #FFEB00;
}
.sec__08 .sec__08__box img {
    width: min(100%, 320px);
    margin: 50px auto 20px;
}

.sec__09 {
    background: url(../img/sec_09_bg.webp) center/cover no-repeat;
    padding: 30px 0 45px;
}
.sec__09 h2 {
    margin-bottom: 30px;
}
.sec__09 .sec__09__box {
    display: flex;
}
.sec__09 .sec__09__box .sec__09__box__left {
    background: #CB020A;
    border-radius: 5px 0 0 5px;
    width: 80px;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec__09 .sec__09__box .sec__09__box__left.rd {
    background: #004DA7;
}
.sec__09 .sec__09__box .sec__09__box__right {
    background: #fff;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 80px);
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.43;
}
.sec__09 .sec__09__box .sec__09__box__right h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.sec__09 .sec__09__box .sec__09__box__right a {
    color: #00A7FF;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}
.sec__09 .dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    gap: 7px;
}
.sec__09 .dot span {
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #CB020A;
}
.sec__09 .dot.wh span {
    background: #fff;
}

.sec__10 {
    padding: 30px 0 35px;
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.33;
    background: url(../img/sec_10_bg.webp) center/cover no-repeat;
}
.sec__10 .font22 {
    margin: 30px auto 0;
    font-size: 2.2rem;
    color: #CB020A;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}
.sec__10 .font22::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 11px;
    background: #FFEB00;
}
.sec__10 .font12 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 5px;
}
.sec__10 .font12 .font__rd {
    color: #CB020A;
}
.sec__10 .font12 .font_bl {
    color: #004DA7;
}
.sec__10 .font16 {
    margin-top: 25px;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.75;
}
.sec__10 .font16 .font__bl {
    font-size: 2.2rem;
    color: #004DA7;
    position: relative;
}
.sec__10 .font16 .font__bl::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 11px;
    background: #FFEB00;
    z-index: -1;
}
.sec__10 .font18 {
    font-size: 1.8rem;
    color: #CB020A;
}
.sec__10 .mt__15 {
    margin-top: 15px;
}
.sec__10 .mw207 {
    width: min(100%, 207px);
    margin: 10px auto 50px;
}

.sec__10__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    background: #313131;
    height: 50px;
    border-radius: 25px;
    width: min(100%, 346px);
    box-shadow: 1px 5px 12px rgba(216, 216, 216, 0.55);
    margin: 0 auto;
    position: relative;
    padding: 0 25px 0 10px;
}
.sec__10__btn .icon__x {
    width: 15px;
}
.sec__10__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    width: 5.7px;
    aspect-ratio: 5.7/9.6;
    background: #fff;
    -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
            mask: url(../img/btn__arrow.svg) center/contain no-repeat;
}
.sec__10__btn .btn__popup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72%;
}

.sec__11 {
    padding: 40px 0;
    background: #000;
}
.sec__11 .mw346 {
    width: min(100%, 346px);
    margin: 0 auto;
}
.sec__11 .wh__box {
    width: min(100%, 350px);
    margin: 30px auto 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0 10px 15px;
    font-size: 1.2rem;
    font-weight: 800;
}
.sec__11 .wh__box .font__rd {
    color: #D7000F;
    font-size: 1.4rem;
    line-height: 1.43;
}
.sec__11 .wh__box .sec__11__container {
    margin: 0 auto;
    width: min(100%, 330px);
    display: flex;
    align-items: flex-end;
    padding: 0 15px;
}
.sec__11 .wh__box .sec__11__container p {
    margin-bottom: 10px;
    flex: 1 1;
    padding-top: 10px;
}
.sec__11 .wh__box .sec__11__container img {
    width: 85px;
    margin-top: -20px;
}
.sec__11 .wh__box .sec__11__btn {
    margin: 0 auto;
    width: min(100%, 330px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    height: 50px;
    border-radius: 25px;
    background: #cb020a;
    box-shadow: 1px 5px 12px rgba(2, 87, 186, 0.14);
    position: relative;
    padding: 0 18px 0 10px;
}
.sec__11 .wh__box .sec__11__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 5.7px;
    aspect-ratio: 5.7/9.6;
    background: #fff;
    -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
            mask: url(../img/btn__arrow.svg) center/contain no-repeat;
}

.sec__12 {
    background: #CB020A;
    padding: 40px 0 calc(30px + 7vw);
}
.sec__12 .wh__box {
    background: #fff;
    border-radius: 5px;
    padding: 20px 15px 35px;
}
.sec__12 .wh__box h2 {
    padding: 0 20px;
}
.sec__12 .wh__box .font__rd {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CB020A;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 0 10px;
    height: 20px;
    border-radius: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto;
}
.sec__12 .wh__box .font__rd.bl {
    background: #004DA7;
}
.sec__12 .wh__box .sec__12__qa {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sec__12 .wh__box .sec__12__qa .sec__12__qa__q {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.39;
}
.sec__12 .wh__box .sec__12__qa .sec__12__qa__q img {
    width: 26px;
}
.sec__12 .wh__box .sec__12__qa .sec__12__qa__a {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 1.4rem;
    font-weight: 800;
}
.sec__12 .wh__box .sec__12__qa .sec__12__qa__a img {
    width: 26px;
}

.sec__13 {
    position: relative;
    z-index: 1;
    margin-top: -7vw;
    margin-bottom: -7vw;
}

.sec__14 {
    background: #E3E3E3;
    padding: calc(20px + 7vw) 0 40px;
    position: relative;
}
.sec__14 .sec__14__container {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0257BA;
}
.sec__14 .sec__14__container div {
    border: 1.5px solid #0257BA;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 20px) / 3);
    padding: 5px 0;
}
.sec__14 .sec__14__pic__1 {
    margin-top: 20px;
    border-radius: 5px;
}
.sec__14 .font16 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
}
.sec__14 .font16 .ul {
    font-size: 2.2rem;
    color: #0257BA;
    position: relative;
    z-index: 0;
}
.sec__14 .font16 .ul::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 8px;
    background: #fff;
}
.sec__14 .wh__box {
    background: #fff;
    text-align: center;
    padding: 15px 7px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: -1px;
}
.sec__14 .wh__box .font__bl {
    color: #004DA7;
}
.sec__14 .mw136 {
    width: min(100%, 136px);
    margin: 15px auto 0;
}
.sec__14 .sec__14__sokode {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 70%);
    width: 144px;
    aspect-ratio: 144/48;
    background: #E3E3E3;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #004DA7;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 1;
}

.sec__15 {
    position: relative;
    padding: 45px 0 50px;
    background: url(../img/sec_15_bg.webp) center/cover no-repeat;
    text-align: center;
    color: #fff;
    font-weight: 900;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
}
.sec__15 h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: inherit;
}
.sec__15 .mw205 {
    width: min(100%, 205px);
    margin: 0 auto;
}
.sec__15 .font14 {
    margin-top: 5px;
    font-size: 1.4rem;
}
.sec__15 .font14 .font__ye {
    color: #FFEB00;
    font-size: 1.8rem;
    line-height: 1.22;
}

.sec__16 {
    background: url(../img/sec_02_bg.webp) bottom/100% no-repeat;
    margin-top: -40px;
    padding: 60px 0 50px;
    position: relative;
}
.sec__16 .sec__16__bg__1 {
    position: absolute;
    z-index: -1;
    width: 308px;
    aspect-ratio: 308/80;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/sec_16_bg_1.svg) center/contain no-repeat;
}
.sec__16 h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
}
.sec__16 h2 .font__bl {
    color: #004DA7;
}
.sec__16 h2 .ul {
    position: relative;
}
.sec__16 h2 .ul::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    background: #FFEB00;
}
.sec__16 .sec__16__container {
    width: min(100%, 245px);
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sec__18 {
    background: url(../img/sec_18_bg.webp) center/cover no-repeat;
    padding: 35px 0 50px;
}

.sec__18__btn {
    width: min(100%, 346px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 25px;
    background: #0257ba;
    box-shadow: 1px 5px 12px rgba(2, 87, 186, 0.14);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 45px;
    position: relative;
    padding: 0 25px 0 10px;
}
.sec__18__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    width: 5.7px;
    aspect-ratio: 5.7/9.6;
    background: #fff;
    -webkit-mask: url(../img/btn__arrow.svg) center/contain no-repeat;
            mask: url(../img/btn__arrow.svg) center/contain no-repeat;
}

.sec__19 {
    background: #004DA7;
    padding-bottom: 25px;
}

.sec__20 {
    background: url(../img/sec_20_bg.webp) center top/100% auto no-repeat, #CB020A;
    padding: 25px 0 35px;
}
.sec__20 .sec__20__pict {
    margin-top: 25px;
    padding-right: 5.6%;
}
.sec__20 .sec__20__pict img {
    border-radius: 0 5px 5px 0;
}
.sec__20 .wh__box {
    background: #fff;
    border-radius: 5px 0 0 5px;
    margin-top: -20px;
    margin-left: 5.6%;
    padding-right: 5.6%;
    padding-left: 25px;
    padding-top: 50px;
    padding-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}
.sec__20 .wh__box .font20 {
    font-size: 2rem;
    font-weight: 900;
    color: #CB020A;
}
.sec__20 .wh__box p {
    margin-bottom: 20px;
}
.sec__20 .wh__box .font14 {
    text-align: right;
    color: #CB020A;
}
.sec__20 .sec__18__btn {
    margin-top: 30px;
    background: #fff;
    color: #CB020A;
    box-shadow: 1px 5px 12px rgba(181, 0, 7, 0.2);
}
.sec__20 .sec__18__btn::before {
    background: #CB020A;
}
.sec__20 .sec__10__btn {
    box-shadow: 1px 5px 12px rgba(181, 0, 7, 0.2);
}/*# sourceMappingURL=style.css.map */