@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
@keyframes clipSlide {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    50% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
    }
}
.l-wrapper--ex {
    background: radial-gradient(197.33% 71.96% at 52.61% 49.25%, rgba(15, 40, 102, 0.89) 0.04%, rgba(15, 40, 102, 0.95) 10.88%, #0F2866 100%);
}
@media screen and (max-width: 767px) {
    .l-wrapper--ex {
        background: radial-gradient(71.28% 28.88% at 52.61% 49.27%, rgba(15, 40, 102, 0) 0%, rgba(15, 40, 102, 0.04) 0.01%, rgba(15, 40, 102, 0.29) 0.02%, rgba(15, 40, 102, 0.64) 0.03%, rgba(15, 40, 102, 0.89) 0.04%, rgba(15, 40, 102, 0.95) 10.88%, #0F2866 100%);
    }
}
.l-wrapper--ex::before, .l-wrapper--ex::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    height: 100dvh;
    pointer-events: none;
    clip-path: inset(100% 0 0 0);
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-name: none;
}
.is-moving .l-wrapper--ex::before, .is-moving .l-wrapper--ex::after {
    animation-name: clipSlide;
}

.l-wrapper--ex::before {
    background-color: var(--color-blue-1);
}
.l-wrapper--ex::after {
    background-color: var(--color-black-2);
    animation-delay: 0.2s;
}

/* ---------------------------------------------
*   animation
--------------------------------------------- */
@keyframes clipSlideVisible {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}
@keyframes clipSlideHidden {
    0% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
    }
}
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: fixed;
    top: 26px;
    right: 0;
    left: 0;
    z-index: 100;
    height: calc(var(--fixed-header-height) * 1px);
}
@media screen and (max-width: 1124px) {
    .l-header {
        --fixed-header-height: 48;
        top: 16px;
        padding-inline: 24px;
    }
}
.l-header::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    display: block;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-blue-1);
    clip-path: inset(100% 0 0 0);
}
@media screen and (min-width: 1125px) {
    .l-header::before {
        display: none;
    }
}
.is-menu-open .l-header::before {
    clip-path: inset(100% 0 0 0);
    animation: clipSlideVisible 0.6s ease-in-out forwards;
}

.is-menu-closing .l-header::before {
    clip-path: inset(0 0 0 0);
    animation: clipSlideHidden 0.6s 1.2s ease-in-out forwards;
}

.l-header__container {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 40px;
         column-gap: 40px;
    width: calc(1760 / var(--design-width) * 100%);
    height: 100%;
    padding-left: 40px;
    border-radius: 36px;
    background-color: rgba(var(--color-black-2-rgb), 0.8);
    margin-inline: auto;
    overflow: hidden;
}
@media screen and (max-width: 1124px) {
    .l-header__container {
        width: 100%;
        padding-left: 24px;
    }
}
.l-header__logo {
    display: flex;
    align-items: center;
    width: 260px;
    height: 100%;
}
@media screen and (max-width: 1124px) {
    .l-header__logo {
        width: 157px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-header__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 1124px) {
    .l-header__logo-link {
        line-height: 20px;
    }
}
.l-header__menu-open {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 100%;
    background-color: rgba(var(--color-red-1-rgb), 0.8);
}
@media screen and (min-width: 1125px) {
    .l-header__menu-open {
        display: none;
    }
}
@media screen and (max-width: 1124px) {
    .l-header__menu-open {
        width: 64px;
    }
}
@media screen and (max-width: 1124px) and (hover: hover) and (pointer: fine) {
    .l-header__menu-open {
        transition: border-radius 0.3s ease-in-out;
    }
    .l-header__menu-open:hover {
        border-radius: 24px;
    }
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
@media screen and (min-width: 1125px) {
    .l-header-nav {
        display: flex;
        flex-shrink: 0;
        height: 100%;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        height: 100dvh;
        padding: 30px 48px;
        background-color: var(--color-black-2);
        clip-path: inset(100% 0 0 0);
    }
    .is-menu-open .l-header-nav {
        clip-path: inset(100% 0 0 0);
        animation: clipSlideVisible 0.6s 0.2s ease-in-out forwards;
    }
    .is-menu-closing .l-header-nav {
        clip-path: inset(0 0 0 0);
        animation: clipSlideHidden 0.6s 1s ease-in-out forwards;
    }
}
.l-header-nav__sp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 1125px) {
    .l-header-nav__sp-head {
        display: none;
    }
}
.l-header-nav__logo {
    width: 157px;
    line-height: 20px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-header-nav__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header-nav__menu-close {
    width: 16px;
    line-height: 12px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__menu-close {
        transition: opacity var(--hover-duration);
    }
    .l-header-nav__menu-close:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (min-width: 1125px) {
    .l-header-nav__list {
        display: flex;
        justify-content: flex-end;
        -moz-column-gap: 40px;
             column-gap: 40px;
        height: 100%;
        margin-right: 40px;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav__list {
        margin-top: 37px;
    }
}
@media screen and (min-width: 1125px) {
    .l-header-nav__item {
        height: 100%;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav__item {
        position: relative;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--color-base-1);
        margin-bottom: 40px;
        opacity: 0;
        transition: opacity 0.3s 0.8s;
    }
    .is-menu-open .l-header-nav__item {
        transition: opacity 0.5s 0.8s;
        opacity: 1;
    }
    .is-menu-closing .l-header-nav__item {
        transition: opacity 0.5s 1s;
        opacity: 0;
    }
    .l-header-nav__item::before, .l-header-nav__item::after {
        content: "";
        position: absolute;
        top: 100%;
        display: block;
        width: 4px;
        height: 4px;
        background-color: var(--color-base-1);
        transform: translateY(-1.5px);
    }
    .l-header-nav__item::before {
        left: 0;
    }
    .l-header-nav__item::after {
        right: 0;
    }
}
.l-header-nav__link {
    color: var(--color-white-2);
    font-weight: 600;
    transition: color 0.3s;
}
@media screen and (min-width: 1125px) {
    .l-header-nav__link {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        font-family: var(--ff-notosans);
        font-size: calc(14 / var(--root-fz) * 1rem);
    }
    .l-header-nav__link:hover {
        color: var(--color-yellow-1);
    }
    .l-header-nav__link:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav__link {
        display: block;
        font-size: 16px;
        line-height: 1;
        letter-spacing: 0.1em;
        transform: translateY(16px);
        opacity: 0;
    }
}
@media screen and (max-width: 1124px) and (hover: hover) and (pointer: fine) {
    .l-header-nav__link:hover {
        color: var(--color-yellow-1);
    }
}
@media screen and (max-width: 1124px) {
    .is-menu-open .l-header-nav__link {
        transition: opacity 1s 1s, transform 1s 1s;
        transform: translateY(0);
        opacity: 1;
    }
    .is-menu-open .l-header-nav__link--2 {
        transition-delay: 1.2s, 1.2s;
    }
    .is-menu-open .l-header-nav__link--3 {
        transition-delay: 1.4s, 1.4s;
    }
    .is-menu-open .l-header-nav__link--4 {
        transition-delay: 1.6s, 1.6s;
    }
    .is-menu-closing .l-header-nav__link {
        transition: opacity 1s 0.2s, transform 1s 0.2s;
        transform: translateY(-16px);
        opacity: 0;
    }
    .is-menu-closing .l-header-nav__link--1 {
        transition-delay: 0.8s, 0.8s;
    }
    .is-menu-closing .l-header-nav__link--2 {
        transition-delay: 0.6s, 0.6s;
    }
    .is-menu-closing .l-header-nav__link--3 {
        transition-delay: 0.4s, 0.4s;
    }
    .is-menu-closing .l-header-nav__link--4 {
        transition-delay: 0.2s, 0.2s;
    }
}
.l-header-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-yellow-1);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
}
@media screen and (min-width: 1125px) {
    .l-header-nav__entry {
        height: 100%;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav__entry {
        margin-top: 58px;
        transform: translateY(16px);
        opacity: 0;
    }
    .is-menu-open .l-header-nav__entry {
        transition: opacity 1s 1.8s, transform 1s 1.8s;
        transform: translateY(0);
        opacity: 1;
    }
    .is-menu-closing .l-header-nav__entry {
        transition: opacity 1s 0s, transform 1s 0s;
        transform: translateY(-16px);
        opacity: 0;
    }
}
.l-header-nav__entry-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 100%;
    color: var(--color-white-2);
    font-size: calc(14 / var(--root-fz) * 1rem);
    letter-spacing: 0.1em;
    background-color: rgba(var(--color-red-1-rgb), 0.8);
    transition: color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}
@media screen and (min-width: 1125px) {
    .l-header-nav__entry-link {
        font-family: var(--ff-aoboshi);
    }
    .l-header-nav__entry-link:hover {
        color: var(--color-yellow-1);
        border-radius: 36px 0 0 36px;
    }
}
@media screen and (max-width: 1124px) {
    .l-header-nav__entry-link {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }
    .l-header-nav__entry-link::after {
        content: "";
        width: 11px;
        height: 11px;
        margin-left: 16px;
        -webkit-mask: url(../img/common/ico/ico_blank_2.svg) 0 0 no-repeat;
                mask: url(../img/common/ico/ico_blank_2.svg) 0 0 no-repeat;
        -webkit-mask-size: 100% 100%;
                mask-size: 100% 100%;
        background-color: var(--color-white-3);
        transition: background-color 0.3s ease-in-out;
    }
}
@media screen and (max-width: 1124px) and (hover: hover) and (pointer: fine) {
    .l-header-nav__entry-link:hover {
        color: var(--color-yellow-1);
        border-radius: 30px;
    }
    .l-header-nav__entry-link:hover::after {
        background-color: var(--color-yellow-1);
    }
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents--int {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .l-contents--int {
        min-height: calc(100vh - 64px);
    }
}
.l-contents--int-detail {
    position: relative;
    z-index: 1;
    padding-top: 176px;
    padding-bottom: 70px;
    background-color: rgba(var(--color-white-1-rgb), 0.9);
}
@media screen and (max-width: 1124px) {
    .l-contents--int-detail {
        padding-top: 104px;
    }
}
@media screen and (max-width: 767px) {
    .l-contents--int-detail {
        padding-bottom: calc(55 / var(--design-width) * 100vw);
    }
}
.l-contents__inner {
    max-width: 1140px;
    padding-inline: 18px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .l-contents__inner {
        padding-inline: calc(24 / var(--design-width) * 100%);
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    position: relative;
    z-index: 1;
    padding-inline: 80px;
}
@media screen and (max-width: 767px) {
    .l-footer {
        padding-inline: calc(24 / var(--design-width) * 100%);
    }
}
.l-footer--ex {
    position: fixed;
    bottom: 0;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .l-footer--ex {
        position: absolute;
    }
}
.l-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .l-footer__container {
        display: block;
        padding-bottom: calc(16 / var(--design-width) * 100vw);
        text-align: center;
    }
}
.l-footer__link-txt {
    position: relative;
    display: block;
    padding-right: 24px;
    font-family: var(--ff-aoboshi);
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1.3;
    transition: color 0.3s;
}
@media screen and (max-width: 767px) {
    .l-footer__link-txt {
        display: inline-block;
        padding-right: calc(24 / var(--design-width) * 100vw);
        line-height: 1;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__link:hover .l-footer__link-txt {
        color: var(--color-yellow-1);
    }
}
.l-footer__link-txt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    -webkit-mask: url(../img/common/ico/ico_blank_1.svg) 0 0 no-repeat;
            mask: url(../img/common/ico/ico_blank_1.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    background-color: var(--color-base-1);
    transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
    .l-footer__link-txt::after {
        width: calc(16 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__link:hover .l-footer__link-txt::after {
        background-color: var(--color-yellow-1);
    }
}
.l-footer__link-txt--wh {
    color: var(--color-white-2);
}
.l-footer__link-txt--wh::after {
    background-color: var(--color-white-2);
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        line-height: 1;
    }
}
.l-footer__copyright-txt {
    font-family: var(--ff-aoboshi);
    font-size: calc(12 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .l-footer__copyright-txt {
        color: var(--color-gray-1);
        font-size: calc(11 / var(--root-fz) * 1rem);
    }
}
.l-footer__copyright-txt--wh {
    color: var(--color-white-2);
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn-red
--------------------------------------------- */
.c-btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 60px;
    background-color: var(--color-red-2);
    transition: border-radius 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
    .c-btn-red {
        gap: calc(16 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
    }
}
.c-btn-red:hover {
    border-radius: 30px;
}
@media screen and (max-width: 767px) {
    .c-btn-red:hover {
        border-radius: calc(30 / var(--design-width) * 100vw);
    }
}
.c-btn-red:hover .c-btn-red__txt {
    color: var(--color-yellow-1);
}
.c-btn-red:hover::after {
    background-color: var(--color-yellow-1);
}
.c-btn-red__txt {
    color: var(--color-white-3);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    transition: color 0.3s ease-in-out;
}
.c-btn-red::after {
    content: "";
    width: 11px;
    height: 11px;
    -webkit-mask: url(../img/common/ico/ico_blank_1.svg) 0 0 no-repeat;
            mask: url(../img/common/ico/ico_blank_1.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    background-color: var(--color-white-3);
    transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
    .c-btn-red::after {
        width: calc(11 / var(--design-width) * 100vw);
        height: calc(11 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-select-custom
--------------------------------------------- */
.c-select-custom {
    position: relative;
    z-index: 1;
    width: 130px;
    margin-block: 0.5em;
    opacity: 0;
}
.c-select-custom.is-show {
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .c-select-custom {
        width: calc(130 / var(--design-width) * 100vw);
    }
}
.c-select-custom--2 {
    font-size: calc(14 / var(--root-fz) * 1rem);
    margin-block: 1.25em -3.6em;
}
@media screen and (max-width: 767px) {
    .c-select-custom--2 {
        margin-block: 0 -2.1em;
    }
}
@media screen and (min-width: 768px) {
    .safari .c-select-custom--2 {
        margin-block: 1.25em -3.4em;
    }
}
.c-select-custom__head {
    position: relative;
    padding: 8px 10px;
    color: var(--color-blue-5);
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    background-color: var(--color-white-5);
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-select-custom__head {
        transition: opacity var(--hover-duration);
    }
    .c-select-custom__head:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (min-width: 768px) {
    .safari .c-select-custom__head {
        padding: 8px 10px 4px 10px;
    }
}
@media screen and (max-width: 767px) {
    .c-select-custom__head {
        padding: calc(8 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
    }
}
.c-select-custom__head::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8.7px 5px 0 5px;
    border-color: var(--color-blue-5) transparent transparent transparent;
    pointer-events: none;
    transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
    .safari .c-select-custom__head::after {
        transform: translateY(-35%);
    }
}
@media screen and (max-width: 767px) {
    .c-select-custom__head::after {
        right: calc(10 / var(--design-width) * 100vw);
        border-width: calc(8.7 / var(--design-width) * 100vw) calc(5 / var(--design-width) * 100vw) 0 calc(5 / var(--design-width) * 100vw);
    }
    .safari .c-select-custom__head::after {
        right: calc(6 / var(--design-width) * 100vw);
    }
    .android .c-select-custom__head::after {
        right: calc(6 / var(--design-width) * 100vw);
    }
}
.c-select-custom__body {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--color-blue-7);
    visibility: hidden;
    opacity: 0;
    transition: top 0.2s, visibility 0.2s, opacity 0.2s;
}
.c-select-custom__body.is-show {
    top: calc(100% + 1px);
    visibility: visible;
    opacity: 1;
}
.c-select-custom__body input[type=radio] {
    display: none;
}
.c-select-custom__list {
    background-color: var(--color-blue-6);
}
.c-select-custom__item {
    border-top: 1px solid var(--color-blue-7);
}
.c-select-custom__item:first-child {
    border-top: 0;
}
.c-select-custom label {
    display: block;
    padding: 8px 10px;
    color: var(--color-blue-5);
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s;
}
@media screen and (max-width: 767px) {
    .c-select-custom label {
        padding: calc(8 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
    }
}
.c-select-custom label:hover, .c-select-custom label.is-current {
    background-color: var(--color-blue-7);
}

/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
/* ---------------------------------------------
*   c-link-card-l
--------------------------------------------- */
.c-link-card-l {
    position: relative;
    z-index: 1;
    display: block;
}
.c-link-card-l__img img {
    width: 100%;
}
.c-link-card-l__head {
    position: absolute;
    top: 11.25%;
    left: 3.2608695652%;
    width: 170px;
    height: 36px;
    padding-top: 3px;
    color: var(--color-white-3);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
    background: url(../img/common/img_haedline_frame_s.svg) left 0 bottom 0 no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 767px) {
    .c-link-card-l__head {
        top: 10.3896103896%;
        left: 7.3394495413%;
        width: calc(170 / var(--design-width) * 100vw);
        height: calc(36 / var(--design-width) * 100vw);
        padding-top: calc(3 / var(--design-width) * 100vw);
    }
}
.c-link-card-l__body {
    position: absolute;
    bottom: 11.25%;
    width: 100%;
    padding-inline: 3.2608695652%;
    color: var(--color-white-3);
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .c-link-card-l__body {
        bottom: 11.2554112554%;
        padding-inline: 7.3394495413%;
    }
}
.c-link-card-l__ttl {
    display: block;
    font-size: calc(36 / var(--root-fz) * 1rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .c-link-card-l__ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
        margin-bottom: calc(12 / var(--design-width) * 100vw);
    }
}
.safari .c-link-card-l__ttl {
    letter-spacing: 0.02em;
}

.android .c-link-card-l__ttl {
    letter-spacing: 0.02em;
}

.c-link-card-l__contents {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.c-link-card-l__txt {
    font-size: calc(18 / var(--root-fz) * 1rem);
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    margin-bottom: -0.3em;
}
@media screen and (max-width: 1124px) {
    .c-link-card-l__txt {
        width: 51.9713261649%;
        font-size: calc(14 / var(--root-fz) * 1rem);
        line-height: 1.5714285714;
    }
}
.safari .c-link-card-l__txt {
    letter-spacing: 0.02em;
}

.android .c-link-card-l__txt {
    letter-spacing: 0.02em;
}

.c-link-card-l__detail {
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
    .c-link-card-l__detail {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}
@media screen and (max-width: 767px) {
    .c-link-card-l__detail {
        text-align: right;
    }
}
.c-link-card-l__detail-txt {
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
}
@media screen and (min-width: 768px) and (max-width: 1124px) {
    .c-link-card-l__detail-txt {
        font-size: calc(12 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-link-card-l__detail-txt {
        margin-bottom: calc(6 / var(--design-width) * 100vw);
    }
}
.c-link-card-l__detail-ico {
    display: block;
}
.c-link-card-l__detail-ico svg {
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    .c-link-card-l__detail-ico svg {
        width: calc(36 / var(--design-width) * 100vw);
    }
}
.c-link-card-l__detail-ico path {
    fill: transparent;
}
.c-link-card-l .js-fade-txt-reveal {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-card-l::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-blue-2);
        opacity: 0.5;
        clip-path: inset(0 100% 0 0);
    }
    .c-link-card-l .js-fade-txt-reveal {
        display: block;
        top: 3px;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-link-card-l .js-fade-txt-reveal {
        top: calc(3 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-link-card-l .js-fade-txt-reveal span {
        color: var(--color-yellow-1);
    }
    .c-link-card-l.is-hover-in::before {
        clip-path: inset(0 0 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__head-txt {
        opacity: 0;
        transition: opacity 0.3s 0.1s;
    }
    .c-link-card-l.is-hover-in .js-fade-txt-reveal span {
        animation-name: txtFadeUp;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path {
        transition-property: fill;
        transition-duration: 0.01s;
        fill: var(--color-yellow-1);
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(1) {
        transition-delay: 0.4s;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(2) {
        transition-delay: 0.45s;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(3) {
        transition-delay: 0.5s;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(4) {
        transition-delay: 0.55s;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(5) {
        transition-delay: 0.6s;
    }
    .c-link-card-l.is-hover-in .c-link-card-l__detail-ico path:nth-of-type(6) {
        transition-delay: 0.65s;
    }
    .c-link-card-l.is-hover-out::before {
        clip-path: inset(0 0 0 100%);
        transition: clip-path 0.3s ease-in-out;
    }
}

/* ---------------------------------------------
*   c-link-card-s
--------------------------------------------- */
.c-link-card-s {
    position: relative;
    z-index: 1;
    display: block;
}
.c-link-card-s__img img {
    width: 100%;
}
.c-link-card-s__head {
    position: absolute;
    top: 11.25%;
    left: 9.7826086957%;
    width: 170px;
    height: 36px;
    padding-top: 3px;
    color: var(--color-white-3);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
    background: url(../img/common/img_haedline_frame_l.svg) left 0 bottom 0 no-repeat;
    background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
    .c-link-card-s__head {
        top: 14.201183432%;
        left: 7.3394495413%;
        width: calc(170 / var(--design-width) * 100vw);
        height: calc(36 / var(--design-width) * 100vw);
        padding-top: calc(3 / var(--design-width) * 100vw);
    }
}
.c-link-card-s__body {
    position: absolute;
    bottom: 11.25%;
    width: 100%;
    padding-inline: 9.7826086957%;
    color: var(--color-white-3);
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .c-link-card-s__body {
        bottom: 14.201183432%;
        padding-inline: 7.3394495413%;
    }
}
.c-link-card-s__ttl {
    display: block;
    font-size: calc(22 / var(--root-fz) * 1rem);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-link-card-s__ttl {
        font-size: calc(16 / var(--root-fz) * 1rem);
        margin-bottom: calc(5 / var(--design-width) * 100vw);
    }
}
.c-link-card-s__contents {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.c-link-card-s__txt {
    font-size: calc(18 / var(--root-fz) * 1rem);
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    margin-bottom: -0.4em;
}
@media screen and (max-width: 1124px) {
    .c-link-card-s__txt {
        font-size: calc(14 / var(--root-fz) * 1rem);
        line-height: 1.5714285714;
    }
}
.c-link-card-s__detail {
    text-align: right;
    line-height: 1;
    letter-spacing: 0.1em;
}
.c-link-card-s__detail-txt {
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
    margin-bottom: 6px;
    margin-right: -0.2em;
}
@media screen and (min-width: 768px) and (max-width: 1124px) {
    .c-link-card-s__detail-txt {
        font-size: calc(12 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-link-card-s__detail-txt {
        margin-bottom: calc(6 / var(--design-width) * 100vw);
    }
}
.c-link-card-s__detail-ico {
    display: block;
}
.c-link-card-s__detail-ico svg {
    width: 36px;
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    .c-link-card-s__detail-ico svg {
        width: calc(36 / var(--design-width) * 100vw);
    }
}
.c-link-card-s__detail-ico path {
    fill: transparent;
}
.c-link-card-s .js-fade-txt-reveal {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-card-s::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-blue-2);
        opacity: 0.5;
        clip-path: inset(0 100% 0 0);
    }
    .c-link-card-s .js-fade-txt-reveal {
        display: block;
        top: 3px;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-link-card-s .js-fade-txt-reveal {
        top: calc(3 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-link-card-s .js-fade-txt-reveal span {
        color: var(--color-yellow-1);
    }
    .c-link-card-s.is-hover-in::before {
        clip-path: inset(0 0 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    .c-link-card-s.is-hover-in .c-link-card-s__head-txt {
        opacity: 0;
        transition: opacity 0.3s 0.1s;
    }
    .c-link-card-s.is-hover-in .js-fade-txt-reveal span {
        animation-name: txtFadeUp;
    }
    .c-link-card-s.is-hover-in .c-link-card-s__detail-ico path {
        transition-property: fill;
        transition-duration: 0.01s;
        fill: var(--color-yellow-1);
    }
    .c-link-card-s.is-hover-in .c-link-card-s__detail-ico path:nth-of-type(1) {
        transition-delay: 0.4s;
    }
    .c-link-card-s.is-hover-in .c-link-card-s__detail-ico path:nth-of-type(2) {
        transition-delay: 0.45s;
    }
    .c-link-card-s.is-hover-in .c-link-card-s__detail-ico path:nth-of-type(3) {
        transition-delay: 0.5s;
    }
    .c-link-card-s.is-hover-out::before {
        clip-path: inset(0 0 0 100%);
        transition: clip-path 0.3s ease-in-out;
    }
}

/* ---------------------------------------------
*   c-list-card
--------------------------------------------- */
@media screen and (min-width: 768px) {
    .c-list-card {
        display: flex;
        justify-content: center;
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section {
    padding-inline: 18px;
}
@media screen and (max-width: 767px) {
    .c-section {
        padding-inline: 6.4%;
    }
}
.c-section + .c-section {
    margin-top: 55px;
}
.c-section__container {
    max-width: 1104px;
    margin-inline: auto;
}
.c-section__head {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .c-section__head {
        margin-bottom: calc(22 / var(--design-width) * 100vw);
    }
}
.c-section__ttl {
    font-family: var(--ff-aoboshi);
    font-size: calc(56 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-section__ttl {
        font-size: calc(40 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-block
--------------------------------------------- */
.p-top-block {
    padding-bottom: 213px;
    background: radial-gradient(197.33% 71.96% at 52.61% 49.25%, rgba(15, 40, 102, 0.89) 0.04%, rgba(15, 40, 102, 0.95) 10.88%, #0F2866 100%);
}
@media screen and (max-width: 767px) {
    .p-top-block {
        padding-bottom: calc(135 / var(--root-fz) * 1rem);
        background: radial-gradient(71.28% 28.88% at 52.61% 49.27%, rgba(15, 40, 102, 0) 0%, rgba(15, 40, 102, 0.04) 0.01%, rgba(15, 40, 102, 0.29) 0.02%, rgba(15, 40, 102, 0.64) 0.03%, rgba(15, 40, 102, 0.89) 0.04%, rgba(15, 40, 102, 0.95) 10.88%, #0F2866 100%);
    }
}

/* ---------------------------------------------
*   p-top-kv
--------------------------------------------- */
.p-top-kv {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-top-kv {
        padding-bottom: calc(90 / var(--design-width) * 100%);
        min-height: calc(666 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 1125px) {
    .p-top-kv__container {
        transform: translate(-2px, -30px);
    }
}
.p-top-kv__ttl {
    position: relative;
    z-index: 1;
    color: var(--color-yellow-1);
    transition: color 1s 2s;
}
.is-loaded .p-top-kv__ttl {
    color: var(--color-blue-8);
}

.p-top-kv__ttl-jp {
    display: block;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1124px) {
    .p-top-kv__ttl-jp {
        font-size: calc(18 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-top-kv__ttl-jp {
        font-size: calc(16 / var(--root-fz) * 1rem);
        line-height: 1.5;
    }
}
.p-top-kv__ttl-en {
    display: block;
    font-family: var(--ff-aoboshi);
    font-size: calc(104 / var(--root-fz) * 1rem);
    line-height: 1.1538461538;
    letter-spacing: 0.1em;
    margin-top: 16px;
}
@media screen and (max-width: 1124px) {
    .p-top-kv__ttl-en {
        font-size: calc(80 / var(--root-fz) * 1rem);
        margin-top: 10px;
    }
}
@media screen and (max-width: 767px) {
    .p-top-kv__ttl-en {
        font-size: calc(45 / var(--root-fz) * 1rem);
        line-height: 1.2444444444;
        margin-top: calc(-3 / var(--design-width) * 100vw);
    }
}
.p-top-kv__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1110px;
    transform: translate(-295px, -512px);
    transition: opacity 1s 0.5s;
    pointer-events: none;
}
@media screen and (max-width: 1124px) {
    .p-top-kv__img {
        width: 1000px;
        transform: translate(-273px, -435px);
    }
}
@media screen and (max-width: 767px) {
    .p-top-kv__img {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: translateY(calc(-47 / var(--design-width) * 100vw));
    }
}
.p-top-kv__img--before {
    z-index: 0;
    transition: opacity 1s;
    opacity: 1;
}
.p-top-kv__img--before.is-complete {
    opacity: 0;
}
.p-top-kv__img--after {
    z-index: 2;
    opacity: 0;
    transition: opacity 1s;
}
.p-top-kv__img--after.is-complete {
    opacity: 1;
}
.p-top-kv__img svg {
    display: block;
}
.p-top-kv__img-inner {
    width: 100%;
    height: 100%;
}
.p-top-kv__scroll-down {
    position: absolute;
    bottom: 223px;
    left: 50%;
    transform: translateX(-50%);
    animation: arrowmove 1s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
    .p-top-kv__scroll-down {
        bottom: calc(157 / var(--design-width) * 100vw);
    }
}
.p-top-kv__scroll-down-txt {
    color: var(--color-yellow-1);
    font-family: var(--ff-aoboshi);
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1;
}
.p-top-kv__scroll-down-arw {
    position: absolute;
    left: 50%;
    width: 32px;
    opacity: 0;
    transform: translateX(-50%) scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
@media screen and (max-width: 767px) {
    .p-top-kv__scroll-down-arw {
        width: calc(32 / var(--design-width) * 100vw);
        animation-name: move-sp;
    }
}
.p-top-kv__scroll-down-arw:nth-of-type(1) {
    animation: move 3s ease-out 1s infinite;
}
@media screen and (max-width: 767px) {
    .p-top-kv__scroll-down-arw:nth-of-type(1) {
        animation-name: move-sp;
    }
}
.p-top-kv__scroll-down-arw:nth-of-type(2) {
    animation: move 3s ease-out 2s infinite;
}
@media screen and (max-width: 767px) {
    .p-top-kv__scroll-down-arw:nth-of-type(2) {
        animation-name: move-sp;
    }
}
.p-top-kv__scroll-down-arw img {
    width: 100%;
}
@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translate(-50%, 20px);
    }
    67% {
        opacity: 1;
        transform: translate(-50%, 35px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 50px) scale3d(0.5, 0.5, 0.5);
    }
}
@keyframes move-sp {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translate(-50%, calc(20 / var(--design-width) * 100vw));
    }
    67% {
        opacity: 1;
        transform: translate(-50%, calc(35 / var(--design-width) * 100vw));
    }
    100% {
        opacity: 0;
        transform: translate(-50%, calc(50 / var(--design-width) * 100vw)) scale3d(0.5, 0.5, 0.5);
    }
}

/* ---------------------------------------------
*   p-top-block-lead
--------------------------------------------- */
.p-top-block-lead {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white-4);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.7777777778;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-top-block-lead {
        font-size: calc(16 / var(--root-fz) * 1rem);
        line-height: 1.75;
    }
}
.safari .p-top-block-lead {
    letter-spacing: 0.02em;
}

.android .p-top-block-lead {
    letter-spacing: 0.02em;
}

.p-top-block-lead__txt + .p-top-block-lead__txt {
    margin-top: 1.8em;
}

/* ---------------------------------------------
*   p-top-experience
--------------------------------------------- */
.p-top-experience {
    position: relative;
    width: 133px;
    margin-top: 213px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-top-experience {
        width: calc(114 / var(--design-width) * 100vw);
        margin-top: calc(126 / var(--design-width) * 100vw);
    }
}
.p-top-experience::before, .p-top-experience::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-blue-4);
    border-radius: 50%;
}
.p-top-experience::before {
    animation: ripple 1200ms linear infinite;
}
.p-top-experience::after {
    animation: ripple 1200ms linear 400ms infinite;
}
@keyframes ripple {
    0% {
        scale: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        scale: 2.1;
        opacity: 0;
    }
}
.p-top-experience__link {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 133px;
    color: var(--color-white-4);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-top-experience__link {
        height: calc(114 / var(--design-width) * 100vw);
    }
}
.p-top-experience__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-white-4);
    border-radius: 50%;
    transition: transform 0.5s, background-color 0.5s;
}
.p-top-experience__link:hover::before {
    background-color: rgba(var(--color-white-4-rgb), 0.1);
    transform: scale(0.86);
}
.p-top-experience__link::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-blue-4);
    border-radius: 50%;
    animation: ripple 1200ms linear 800ms infinite;
    pointer-events: none;
}

/* ---------------------------------------------
*   p-top-block-bottom
--------------------------------------------- */
.p-top-block-bottom {
    position: relative;
    z-index: 1;
    padding-top: 150px;
}
@media screen and (max-width: 767px) {
    .p-top-block-bottom {
        padding-top: calc(58 / var(--design-width) * 100vw);
    }
}
.p-top-block-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white-1);
    opacity: 0.9;
}
.p-top-block-bottom .l-footer {
    position: relative;
    z-index: 1;
    margin-top: 72px;
}
@media screen and (max-width: 767px) {
    .p-top-block-bottom .l-footer {
        margin-top: calc(58 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-ex-kv
--------------------------------------------- */
.p-ex-kv {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    opacity: 0;
    pointer-events: none;
}
.p-ex-kv.is-show {
    opacity: 1;
    pointer-events: auto;
}
.p-ex-kv__ttl {
    color: var(--color-yellow-1);
    font-family: var(--ff-aoboshi);
    font-size: calc(56 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-ex-kv__ttl {
        font-size: calc(45 / var(--root-fz) * 1rem);
        line-height: 1;
    }
}

/* ---------------------------------------------
*   p-ex-progress
--------------------------------------------- */
.p-ex-progress {
    position: fixed;
    right: 80px;
    bottom: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 289px;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .p-ex-progress {
        right: 0;
        bottom: calc(18 / var(--design-width) * 100vw);
        left: 0;
        width: 100%;
        padding-inline: calc(24 / var(--design-width) * 100%);
    }
}
.is-show-bar .p-ex-progress {
    opacity: 1;
    pointer-events: auto;
}

.p-ex-progress__bar {
    position: relative;
    width: 192px;
    height: 4px;
    background-color: var(--color-white-2);
}
@media screen and (max-width: 767px) {
    .p-ex-progress__bar {
        width: 58.7155963303%;
    }
}
.p-ex-progress__bar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 33.3333333333%;
    height: 100%;
    background-color: var(--color-gray-2);
}
.is-light .p-ex-progress__bar::before {
    left: 50%;
    transform: translateX(-50%);
}

.is-motor .p-ex-progress__bar::before {
    right: 0;
    left: auto;
}

.p-ex-progress__txt {
    color: var(--color-white-2);
    font-family: var(--ff-aoboshi);
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1;
}

/* ---------------------------------------------
*   p-ex-section
--------------------------------------------- */
.p-ex-section {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100dvh;
    padding-inline: 18px;
    opacity: 0;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
}
@media screen and (max-width: 767px) {
    .p-ex-section {
        padding-top: 104px;
        padding-inline: calc(24 / var(--design-width) * 100%);
    }
}
.p-ex-section.is-show {
    opacity: 1;
    pointer-events: auto;
}
.p-ex-section__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 768px) and (max-height: 1079px) {
    .p-ex-section__inner {
        align-items: flex-start;
        min-height: 39.5833333333vw;
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__inner {
        align-items: flex-start;
        min-height: 100%;
    }
}
.p-ex-section__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1103px;
    width: 100%;
    margin-inline: auto;
}
@media screen and (min-width: 768px) and (max-height: 1079px) {
    .p-ex-section__container {
        padding-block: 200px;
    }
}
@media screen and (max-width: 1124px) {
    .p-ex-section__container {
        gap: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__container {
        display: block;
        padding-bottom: 104px;
    }
}
@media screen and (min-width: 768px) {
    .p-ex-section__contents {
        flex-shrink: 0;
        width: 55.4850407978%;
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__contents {
        position: relative;
        z-index: 1;
        transition: opacity 1s;
    }
    .is-true .p-ex-section__contents {
        z-index: 0;
        opacity: 0.1;
    }
}
.p-ex-section__head {
    margin-bottom: 62px;
}
@media screen and (max-width: 767px) {
    .p-ex-section__head {
        margin-bottom: calc(30 / var(--design-width) * 100vw);
    }
}
.p-ex-section__head--2 {
    margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
    .p-ex-section__head--2 {
        margin-bottom: calc(15 / var(--design-width) * 100vw);
    }
}
.p-ex-section__head--3 {
    margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
    .p-ex-section__head--3 {
        margin-bottom: calc(15 / var(--design-width) * 100vw);
    }
}
.p-ex-section__ttl {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-yellow-2);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    margin-bottom: 5px;
}
@media screen and (max-width: 1124px) {
    .p-ex-section__ttl {
        gap: 16px;
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__ttl {
        gap: calc(16 / var(--design-width) * 100vw);
        margin-bottom: calc(8 / var(--design-width) * 100vw);
    }
}
.p-ex-section__ttl::before {
    content: "";
    display: block;
    width: 40px;
    height: 16px;
    background-image: url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg);
    background-position: 0 0, 50% 0, 100% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 767px) {
    .p-ex-section__ttl::before {
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}
.p-ex-section__ttl-txt {
    padding-bottom: 0.25em;
}
.p-ex-section__lead {
    color: var(--color-white-3);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
}
.safari .p-ex-section__lead {
    letter-spacing: 0.02em;
}

.mac.firefox .p-ex-section__lead {
    letter-spacing: 0.02em;
}

.android .p-ex-section__lead {
    letter-spacing: 0.02em;
}

@media screen and (max-width: 1124px) {
    .p-ex-section__lead {
        font-size: calc(28 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__lead {
        font-size: calc(24 / var(--root-fz) * 1rem);
        line-height: 1.3333333333;
    }
    .safari .p-ex-section__lead {
        font-size: calc(22 / var(--root-fz) * 1rem);
        letter-spacing: 0;
    }
    .android .p-ex-section__lead {
        font-size: calc(22 / var(--root-fz) * 1rem);
        letter-spacing: 0;
    }
}
.p-ex-section__img {
    position: relative;
    width: 100%;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .p-ex-section__img {
        position: fixed;
        inset: 0;
    }
}
.p-ex-section__img--1 {
    transform: scale(1.8) translate(-10px, -8px);
}
@media screen and (min-width: 768px) {
    .p-ex-section__img--1 {
        aspect-ratio: 435/563;
    }
}
@media screen and (max-width: 1124px) {
    .p-ex-section__img--1 {
        transform: scale(1.8) translate(0, -8px);
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__img--1 {
        transform: scale(1.15);
    }
}
.p-ex-section__img--2 {
    transform: scale(1.75) translate(16px, -14px);
}
@media screen and (min-width: 768px) {
    .p-ex-section__img--2 {
        aspect-ratio: 419/557;
    }
}
@media screen and (max-width: 1124px) {
    .p-ex-section__img--2 {
        transform: scale(1.75) translate(0, -14px);
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__img--2 {
        transform: scale(1.15);
    }
}
.p-ex-section__img--3 {
    transform: scale(1.75) translate(12px, -10px);
}
@media screen and (min-width: 768px) {
    .p-ex-section__img--3 {
        aspect-ratio: 429/566;
    }
}
@media screen and (max-width: 1124px) {
    .p-ex-section__img--3 {
        transform: scale(1.75) translate(0, -10px);
    }
}
@media screen and (max-width: 767px) {
    .p-ex-section__img--3 {
        transform: scale(1.15);
    }
}
.p-ex-section__img svg {
    display: block;
}
.p-ex-section__img svg + svg {
    display: none;
}
.p-ex-section__img .js-lottie-before {
    opacity: 1;
    transition: opacity 1s;
}
.is-true .p-ex-section__img .js-lottie-before {
    opacity: 0;
}

.p-ex-section__img .js-lottie-after {
    opacity: 0;
    transition: opacity 1s;
}
.is-true .p-ex-section__img .js-lottie-after {
    opacity: 1;
}

.p-ex-section__img-inner {
    position: absolute;
    inset: 0;
}
.p-ex-section #img1-after {
    transform: translate(-1.3%, -0.8%);
}

/* ---------------------------------------------
*   p-ex-cassette
--------------------------------------------- */
.p-ex-cassette__ttl {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-yellow-2);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
    .p-ex-cassette__ttl {
        gap: calc(16 / var(--design-width) * 100vw);
        margin-bottom: calc(13 / var(--design-width) * 100vw);
    }
}
.p-ex-cassette__ttl::before {
    content: "";
    display: block;
    width: 88px;
    height: 16px;
    background-image: url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg);
    background-position: 0 0, 20% 0, 40% 0, 60% 0, 80% 0, 100% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 767px) {
    .p-ex-cassette__ttl::before {
        width: calc(88 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}
.p-ex-cassette__ttl-txt {
    padding-bottom: 0.25em;
}
.p-ex-cassette__code {
    position: relative;
}
.p-ex-cassette__pre {
    color: var(--color-white-4);
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.1em;
    visibility: hidden;
    /* 終了時はカーソル非表示 */
}
.p-ex-cassette__pre.is-typing, .p-ex-cassette__pre.is-typed {
    visibility: visible;
}
@media screen and (max-width: 1124px) {
    .p-ex-cassette__pre {
        white-space: pre-wrap;
    }
}
@media screen and (max-width: 767px) {
    .p-ex-cassette__pre {
        font-size: calc(14 / var(--root-fz) * 1rem);
        line-height: 1.8571428571;
    }
}
.p-ex-cassette__pre[data-typing=on]::after {
    content: "▍";
    display: inline-block;
    transform: translateY(0.08em);
    animation: type-caret-blink 1s steps(1, end) infinite;
}
.p-ex-cassette__pre[data-typing=off]::after {
    content: "";
}
@keyframes type-caret-blink {
    50% {
        opacity: 0;
    }
}

/* ---------------------------------------------
*   p-ex-error
--------------------------------------------- */
.p-ex-error {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-red-1-rgb), 0.6);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.p-ex-error.is-error {
    opacity: 1;
    pointer-events: auto;
}
.p-ex-error__txt {
    color: var(--color-yellow-1);
    font-family: var(--ff-aoboshi);
    font-size: calc(56 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
    animation-duration: 0.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-name: none;
}
@media screen and (max-width: 767px) {
    .p-ex-error__txt {
        font-size: calc(45 / var(--root-fz) * 1rem);
    }
}
.is-error .p-ex-error__txt {
    animation-name: tenmetsu;
}

@keyframes tenmetsu {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ---------------------------------------------
*   p-ex-bottom
--------------------------------------------- */
.p-ex-bottom {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100svh;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
.p-ex-bottom.is-show {
    opacity: 1;
    pointer-events: auto;
}
.p-ex-bottom__txt {
    text-align: center;
    color: var(--color-white-3);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.7777777778;
    letter-spacing: 0.1em;
}
.p-ex-bottom__btn {
    width: 280px;
    margin-top: 24px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-ex-bottom__btn {
        width: calc(280 / var(--design-width) * 100vw);
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-msg-kv
--------------------------------------------- */
.p-msg-kv {
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-msg-kv {
        z-index: 1;
    }
}
.p-msg-kv__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(85px, -46%);
}
@media screen and (max-width: 1440px) {
    .p-msg-kv__container {
        transform: translate(85px, -36%);
    }
}
@media screen and (max-width: 767px) {
    .p-msg-kv__container {
        left: calc(24 / var(--design-width) * 100%);
        transform: translate(0, -39%);
    }
    .edge .p-msg-kv__container {
        transform: translate(0, -40%);
    }
}
.p-msg-kv__img img {
    width: 100%;
}
.p-msg-kv__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 205px;
    height: 48px;
    color: var(--color-yellow-2);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    background: url(../img/common/bg_ttl.svg) 0 0 no-repeat;
    background-size: 100% auto;
    margin-left: 5px;
}
@media screen and (max-width: 1440px) {
    .p-msg-kv__ttl {
        gap: calc(16 / var(--design-width) * 100vw);
        width: calc(205 / var(--design-width) * 100vw);
        height: calc(48 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-msg-kv__ttl {
        gap: calc(8 / var(--design-width) * 100vw);
        width: calc(126 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
        font-size: calc(11 / var(--root-fz) * 1rem);
        background-image: url(../img/common/sp/bg_ttl.svg);
    }
}
.p-msg-kv__ttl::before {
    content: "";
    display: block;
    width: 40px;
    height: 16px;
    background-image: url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg);
    background-position: 0 0, 50% 0, 100% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 1440px) {
    .p-msg-kv__ttl::before {
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .p-msg-kv__ttl::before {
        width: calc(25 / var(--design-width) * 100vw);
        height: calc(10 / var(--design-width) * 100vw);
        background-image: url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg), url(../img/common/ico/ico_headline_2.svg);
    }
}
.p-msg-kv__ttl-txt {
    padding-bottom: 0.25em;
}
.p-msg-kv__lead {
    color: var(--color-black-3);
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
    margin-top: 25px;
}
@media screen and (max-width: 1440px) {
    .p-msg-kv__lead {
        font-size: calc(48 / var(--design-width) * 100vw);
        margin-top: calc(25 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .p-msg-kv__lead {
        font-size: calc(20 / var(--root-fz) * 1rem);
        line-height: 1.5;
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.p-msg-kv__txt {
    color: var(--color-black-3);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin-top: 22px;
    padding-left: 5px;
}
@media screen and (max-width: 1440px) {
    .p-msg-kv__txt {
        font-size: calc(24 / var(--design-width) * 100vw);
        margin-top: calc(22 / var(--design-width) * 100vw);
        padding-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-msg-kv__txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
        line-height: 2;
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-msg-block
--------------------------------------------- */
.p-msg-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 36px;
    max-width: 1143px;
    padding: 80px 18px 60px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-msg-block {
        display: block;
        padding: calc(40 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw);
    }
}
.p-msg-block__contents {
    margin-top: -0.5em;
}
@media screen and (min-width: 768px) {
    .p-msg-block__contents {
        max-width: 473px;
    }
}
@media screen and (max-width: 767px) {
    .p-msg-block__contents {
        width: 100%;
        margin-bottom: calc(86 / var(--design-width) * 100vw);
    }
}
.p-msg-block__txt {
    color: var(--color-black-4);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-msg-block__txt {
        line-height: 1.75;
    }
}
.p-msg-block__txt + .p-msg-block__txt {
    margin-top: 2em;
}
@media screen and (max-width: 767px) {
    .p-msg-block__txt + .p-msg-block__txt {
        margin-top: 1.8em;
    }
}
.p-msg-block__imgs {
    position: relative;
    z-index: 1;
    width: 42.6829268293%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .p-msg-block__imgs {
        width: 100%;
    }
}
.p-msg-block__img--2 {
    width: 62.6455026455%;
    margin-top: -8.4656084656%;
    margin-left: 9.1005291005%;
}
@media screen and (max-width: 767px) {
    .p-msg-block__img--2 {
        width: 64.2201834862%;
        margin-top: -7.3394495413%;
        margin-left: 8.2568807339%;
    }
}
.p-msg-block__caption {
    position: relative;
    width: 62.0105820106%;
    padding: 32px 40px;
    margin-top: -8.4656084656%;
    margin-left: auto;
    color: var(--color-white-3);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    background-color: var(--color-base-1);
}
@media screen and (max-width: 767px) {
    .p-msg-block__caption {
        width: 78.8990825688%;
        padding: calc(13 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw);
        margin-top: -8.2568807339%;
        text-align: justify;
        font-family: var(--ff-notosans);
        letter-spacing: 0.02em;
    }
}

/* ---------------------------------------------
*   p-block-interview
--------------------------------------------- */
.p-block-interview {
    padding-top: 304px;
    padding-bottom: 304px;
}
@media screen and (max-width: 767px) {
    .p-block-interview {
        padding-top: calc(97 / var(--design-width) * 100vw);
        padding-bottom: calc(58 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-int-detail-kv
--------------------------------------------- */
.p-int-detail-kv {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-int-detail-kv {
        border-radius: calc(20 / var(--design-width) * 100vw);
    }
}
.p-int-detail-kv__ttl {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    top: 8.9285714286%;
    left: 3.6231884058%;
    color: var(--color-yellow-1);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .p-int-detail-kv__ttl {
        gap: calc(16 / var(--design-width) * 100vw);
        top: 8%;
        left: 7.3394495413%;
    }
}
.p-int-detail-kv__ttl::before {
    content: "";
    display: block;
    width: 40px;
    height: 16px;
    background-image: url(../img/common/ico/ico_headline.svg), url(../img/common/ico/ico_headline.svg), url(../img/common/ico/ico_headline.svg);
    background-position: 0 0, 50% 0, 100% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 767px) {
    .p-int-detail-kv__ttl::before {
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}

.p-int-detail-block {
    margin-block: 65px 80px;
}
@media screen and (min-width: 1125px) {
    .p-int-detail-block {
        padding-left: 24.6376811594%;
    }
}
@media screen and (max-width: 1124px) {
    .p-int-detail-block {
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 767px) {
    .p-int-detail-block {
        margin-block: calc(33 / var(--design-width) * 100vw) calc(58 / var(--design-width) * 100vw);
    }
}
.p-int-detail-block__lead {
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-int-detail-block__lead {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.safari .p-int-detail-block__lead {
    letter-spacing: 0.02em;
}

.android .p-int-detail-block__lead {
    letter-spacing: 0.02em;
}

.p-int-detail-block__contents {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-block__contents {
        display: block;
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}
.p-int-detail-block__name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 56px;
    padding-left: 0.15em;
    border: 1px solid var(--color-blue-3);
    border-top: 0;
    border-bottom: 0;
    color: var(--color-blue-3);
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-int-detail-block__name {
        width: -moz-max-content;
        width: max-content;
        height: calc(40 / var(--design-width) * 100vw);
        padding-inline: calc(16 / var(--design-width) * 100vw) calc(14 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-int-detail-block__prof {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-int-detail-block__prof {
        font-weight: 400;
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-int-detail-section
--------------------------------------------- */
.p-int-detail-section + .p-int-detail-section {
    margin-top: 80px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-section + .p-int-detail-section {
        margin-top: calc(55 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .p-int-detail-section__container {
        display: flex;
        justify-content: space-between;
        gap: 36px;
    }
}
.p-int-detail-section__img {
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
    .p-int-detail-section__img {
        flex-shrink: 0;
        width: 39.8550724638%;
    }
}
.p-int-detail-section__contents {
    padding-top: 20px;
}
@media screen and (min-width: 768px) {
    .p-int-detail-section__contents {
        max-width: 552px;
    }
}
@media screen and (max-width: 767px) {
    .p-int-detail-section__contents {
        padding-top: calc(24 / var(--design-width) * 100vw);
    }
}
.p-int-detail-section__ttl {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-section__ttl {
        font-size: calc(20 / var(--root-fz) * 1rem);
        margin-bottom: calc(18 / var(--design-width) * 100vw);
    }
}
.p-int-detail-section__txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-int-detail-section__txt {
        line-height: 1.75;
    }
}

/* ---------------------------------------------
*   p-int-detail-note
--------------------------------------------- */
.p-int-detail-note {
    text-align: center;
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 74px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-note {
        text-align: left;
        line-height: 1.5;
        margin-top: calc(45 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-int-detail-footer
--------------------------------------------- */
.p-int-detail-footer {
    padding-top: 80px;
    background: radial-gradient(197.33% 71.96% at 52.61% 49.25%, rgba(15, 40, 102, 0) 0%, rgba(15, 40, 102, 0.04) 0.01%, rgba(15, 40, 102, 0.29) 0.02%, rgba(15, 40, 102, 0.64) 0.03%, rgba(15, 40, 102, 0.89) 0.04%, rgba(15, 40, 102, 0.95) 10.88%, #0F2866 100%);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 767px) {
    .p-int-detail-footer {
        padding-top: calc(64 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-int-detail-footer-section
--------------------------------------------- */
.p-int-detail-footer-section {
    padding-bottom: 80px;
    padding-inline: 18px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-footer-section {
        padding-bottom: calc(58 / var(--design-width) * 100vw);
        padding-inline: calc(24 / var(--design-width) * 100%);
    }
}
.p-int-detail-footer-section__container {
    max-width: 736px;
    margin-inline: auto;
}
.p-int-detail-footer-section__head {
    margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
    .p-int-detail-footer-section__head {
        margin-bottom: calc(24 / var(--design-width) * 100vw);
    }
}
.p-int-detail-footer-section__ttl {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-yellow-1);
    font-family: var(--ff-aoboshi);
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .p-int-detail-footer-section__ttl {
        gap: calc(16 / var(--design-width) * 100vw);
    }
}
.p-int-detail-footer-section__ttl::before {
    content: "";
    display: block;
    width: 40px;
    height: 16px;
    background-image: url(../img/common/ico/ico_headline.svg), url(../img/common/ico/ico_headline.svg), url(../img/common/ico/ico_headline.svg);
    background-position: 0 0, 50% 0, 100% 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media screen and (max-width: 767px) {
    .p-int-detail-footer-section__ttl::before {
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/* ---------------------------------------------
*   js-load-in
--------------------------------------------- */
.js-load-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.is-loaded .js-load-in {
    opacity: 1;
}

/* ---------------------------------------------
*   js-lottie
--------------------------------------------- */
.js-lottie {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    transform: translate3d(0, 0, 0);
    zoom: 1;
    backface-visibility: hidden;
    pointer-events: none;
}
.js-lottie::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-white-1);
    background-blend-mode: multiply;
    opacity: 0.9;
}
.js-lottie svg {
    display: block;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}
.js-lottie--blue {
    mix-blend-mode: unset;
}
.js-lottie--blue::before {
    display: none;
}

/* ---------------------------------------------
*   js-fadein-up
--------------------------------------------- */
.js-fadein-up {
    opacity: 0;
    transform: translateY(50px);
}
.is-loaded .js-fadein-up.is-active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s, opacity 1s;
}

/* ---------------------------------------------
*   js-mask-in
--------------------------------------------- */
.js-mask-in-txt span {
    display: inline-block;
    transform: translateY(80%);
    clip-path: inset(0 0 100%);
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: forwards;
    animation-name: none;
}
.is-loaded .is-active .js-mask-in-txt span {
    animation-name: txtMaskIn;
}

.is-loaded .is-show .js-mask-in-txt span {
    animation-name: txtMaskIn;
}

@keyframes txtMaskIn {
    from {
        transform: translateY(40%);
        clip-path: inset(0 0 100%);
    }
    to {
        transform: translateY(0);
        clip-path: inset(0% 0% 0% 0%);
    }
}
/* ---------------------------------------------
*   js-fade-up
--------------------------------------------- */
.js-fade-up-txt span {
    display: inline-block;
    transform: translateY(10%);
    opacity: 0;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-name: none;
}
.is-loaded .js-fade-up-txt span {
    animation-name: txtFadeUp;
}

/* ---------------------------------------------
*   js-fade-txt
--------------------------------------------- */
.js-fade-txt-reveal {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.js-fade-txt-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10%);
    animation: txtFadeUp 0.2s ease forwards;
    animation-name: none;
}

@keyframes txtFadeUp {
    from {
        opacity: 0;
        transform: translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media print and (min-width: 768px), screen and (min-width: 768px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 767px), screen and (max-width: 767px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}