@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
.l-wrapper {
    background-color: var(--color-white-2);
}

/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: calc(var(--fixed-header-height) * 1px);
    opacity: 1;
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header {
        position: relative;
    }
}
.l-header.js-header.is-hide {
    opacity: 0;
}
.is-visited .l-header {
    transition: opacity 0s;
}

.l-header__container {
    display: flex;
    align-items: center;
    height: 100%;
    padding-inline: 16px;
}
@media screen and (max-width: 750px) {
    .l-header__container {
        padding-inline: 10px;
    }
}
.l-header__logo {
    width: 102px;
    margin-bottom: 4px;
}
@media screen and (max-width: 750px) {
    .l-header__logo {
        width: 68px;
        margin-bottom: 0;
    }
}
.l-header__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__link {
        transition: opacity var(--hover-duration);
    }
    .l-header__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header__link img {
    display: block;
    width: 100%;
}

/*  l-header-menu
--------------------------------------------- */
.l-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px) brightness(1.3);
            backdrop-filter: blur(10px) brightness(1.3);
    background-color: rgba(var(--color-white-1-rgb), 0.86);
    transform: translate3d(0, 0, 0) scale(1);
    will-change: backdrop-filter, background-color;
}
.l-header-menu__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 70px 60px 100px;
    overflow-y: auto;
}
@media screen and (max-width: 750px) {
    .l-header-menu__container {
        padding: 45px 20px 100px;
    }
}

/*  l-header-nav
--------------------------------------------- */
.l-header-nav {
    width: 100%;
    max-width: 740px;
    margin-inline: auto;
    padding-right: 21px;
}
@media screen and (max-width: 750px) {
    .l-header-nav {
        width: -moz-fit-content;
        width: fit-content;
        max-width: none;
        margin-top: 100px;
        padding-right: 0;
        padding-left: 10px;
    }
}
.l-header-nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
}
@media screen and (max-width: 750px) {
    .l-header-nav__inner {
        display: block;
    }
}
.l-header-nav__item {
    margin-top: 46px;
}
@media screen and (max-width: 750px) {
    .l-header-nav__item {
        margin-top: 35px;
    }
}
.l-header-nav__item:first-of-type {
    margin-top: 0;
}
@media screen and (min-width: 751px) {
    .l-header-nav__item:has(.l-header-nav__list-lv2) + .l-header-nav__item {
        margin-top: 35px;
    }
}
.l-header-nav__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    transition: color 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-nav__link {
        font-size: 24px;
        line-height: 1.1666666667;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link:hover {
        color: var(--color-orange-1);
    }
}
.l-header-nav__list-lv2 {
    margin-top: 18px;
    margin-left: 23px;
}
@media screen and (max-width: 750px) {
    .l-header-nav__list-lv2 {
        margin-top: 20px;
        margin-left: 0;
    }
}
.l-header-nav__item-lv2 {
    margin-top: 18px;
}
@media screen and (max-width: 750px) {
    .l-header-nav__item-lv2 {
        margin-top: 23px;
    }
}
.l-header-nav__item-lv2:first-of-type {
    margin-top: 0;
}
.l-header-nav__link-lv2 {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 26px;
    font-family: var(--ff-shippori);
    font-size: 14px;
    line-height: 1.1428571429;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-nav__link-lv2 {
        padding-left: 32px;
        font-size: 16px;
        line-height: 1.125;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link-lv2:hover {
        color: var(--color-orange-1);
    }
    .l-header-nav__link-lv2:hover::before {
        background-color: var(--color-orange-1);
    }
}
.l-header-nav__link-lv2::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 16px;
    height: 1px;
    background-color: var(--color-black-1);
    transition: background-color 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-nav__link-lv2::before {
        width: 20px;
    }
}
.l-header-nav__img {
    margin-top: 42px;
}
@media screen and (max-width: 750px) {
    .l-header-nav__img {
        margin-top: 0;
        position: absolute;
        top: 19px;
        left: 16px;
    }
}

/*  l-header-menu-button
--------------------------------------------- */
.l-header-menu-button-outer {
    position: fixed;
    top: 10px;
    right: 16px;
    width: 50px;
    height: 50px;
    transition: padding 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-menu-button-outer {
        top: 5px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu-button-outer:has(.l-header-menu-button:hover) {
        padding: 2px;
    }
}

.l-header-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--color-white-1);
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-menu-button {
        gap: 5px 0;
        border-radius: 5px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu-button:hover {
        gap: 7px 0;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 750px) {
    .l-header-menu-button:hover {
        gap: 4px 0;
    }
}
.l-header-menu-button__lines {
    position: relative;
    display: block;
    width: 24px;
    height: 14px;
    transition: 0.3s;
}
@media screen and (max-width: 750px) {
    .l-header-menu-button__lines {
        width: 20px;
        height: 12px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu-button:hover .l-header-menu-button__lines {
        height: 10px;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 750px) {
    .l-header-menu-button:hover .l-header-menu-button__lines {
        height: 8px;
    }
}
.l-header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 1px;
    background-color: var(--color-black-4);
    transition: 0.3s;
}
.l-header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.l-header-menu-button__line--center {
    top: 50%;
    transform: translateY(-50%);
}
.is-menu-opened .l-header-menu-button__line--center {
    background-color: rgba(var(--color-black-4-rgb), 0);
}

.l-header-menu-button__line--bottom {
    bottom: 0;
}
.is-menu-opened .l-header-menu-button__line--bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.l-header-menu-button__txt {
    display: block;
    margin-left: 0.1em;
    color: var(--color-black-3);
    font-family: var(--ff-lato);
    font-size: 8px;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .l-header-menu-button__txt {
        margin-left: 0;
        font-size: 5px;
        line-height: 1.2;
    }
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    background-color: var(--color-white-1);
}
.l-footer__block {
    border-top: 1px solid var(--color-gray-1);
}
@media screen and (max-width: 1000px) {
    .l-footer__block {
        border-top: none;
    }
}
.l-footer__block:first-of-type {
    border-top: none;
}
.l-footer__container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
}
@media screen and (max-width: 1000px) {
    .l-footer__container {
        width: 89.3333333333%;
        padding-inline: 0;
    }
}
.l-footer__container--top {
    padding-block: 58px 60px;
}
@media screen and (max-width: 1000px) {
    .l-footer__container--top {
        width: 83.2%;
        padding-block: 40px 17px;
    }
}
.l-footer__container--center {
    padding-block: 49px 42px;
}
@media screen and (max-width: 1000px) {
    .l-footer__container--center {
        width: 100%;
        padding-block: 0;
    }
}
.l-footer__container--bottom {
    padding-block: 70px 80px;
}
@media screen and (max-width: 1000px) {
    .l-footer__container--bottom {
        padding-block: 49px 64px;
    }
}

/*  l-footer-nav
--------------------------------------------- */
.l-footer-nav {
    max-width: 1176px;
    margin-inline: auto;
}
.l-footer-nav__list {
    display: flex;
    gap: 0 24px;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.l-footer-nav__list--contents {
    display: block;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__list--contents {
        display: contents;
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__item {
        position: relative;
        border-top: 1px solid var(--color-gray-4);
        padding-left: 31.5px;
    }
}
.l-footer-nav__item .l-footer-nav__item + .l-footer-nav__item {
    margin-top: 37px;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__item .l-footer-nav__item + .l-footer-nav__item {
        margin-top: 0;
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__item--contents {
        display: contents;
    }
}
.l-footer-nav__item--order-1 {
    order: 1;
}
.l-footer-nav__item--order-2 {
    order: 2;
}
.l-footer-nav__item--order-3 {
    order: 3;
}
.l-footer-nav__item--order-4 {
    order: 4;
}
.l-footer-nav__item--order-5 {
    order: 5;
}
.l-footer-nav__item--order-6 {
    order: 6;
}
.l-footer-nav__item--order-7 {
    order: 7;
}
.l-footer-nav__item--order-8 {
    order: 8;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__item--order-8 {
        border-bottom: 1px solid var(--color-gray-4);
    }
}
.l-footer-nav__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-3);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__link {
        width: 100%;
        padding-block: 12px 11px;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.4666666667;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__link[href]:hover {
        color: var(--color-orange-1);
    }
}
.l-footer-nav__trigger {
    position: absolute;
    top: 10px;
    right: 24px;
    display: none;
    width: 15px;
    height: 15px;
    padding: 5px;
    box-sizing: content-box;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__trigger {
        transition: opacity var(--hover-duration);
    }
    .l-footer-nav__trigger:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-nav__trigger {
        display: block;
    }
}
.l-footer-nav__trigger::before, .l-footer-nav__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: 1px;
    background-color: var(--color-orange-1);
}
.l-footer-nav__trigger::before {
    transform: translate(-50%, -50%);
}
.l-footer-nav__trigger::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.3s;
    opacity: 1;
}
.l-footer-nav__trigger.is-acc-opened::after {
    opacity: 0;
}

/*  l-footer-nav-lv2
--------------------------------------------- */
.l-footer-nav-lv2 {
    margin-top: 14px;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav-lv2 {
        margin-top: 0;
        margin-bottom: 9px;
    }
    .l-footer-nav__item--order-1 .l-footer-nav-lv2 {
        margin-bottom: 7px;
    }
}
.l-footer-nav-lv2__list--indent {
    padding-left: 17px;
    padding-bottom: 12px;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav-lv2__list--indent {
        padding-left: 23.5px;
        padding-bottom: 0;
        border-top: 1px solid var(--color-gray-1);
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-nav-lv2__item {
        border-bottom: 1px solid var(--color-gray-1);
    }
    .l-footer-nav-lv2__item:first-of-type {
        border-top: 1px solid var(--color-gray-1);
    }
    .l-footer-nav-lv2__list--indent .l-footer-nav-lv2__item:first-of-type {
        border-top: none;
    }
    .l-footer-nav-lv2__item:last-of-type {
        border-bottom: none;
    }
}
.l-footer-nav-lv2__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-3);
    font-size: 13px;
    line-height: 1.8461538462;
    transition: color 0.3s;
}
@media screen and (max-width: 1000px) {
    .l-footer-nav-lv2__link {
        width: 100%;
        padding-block: 11px 9px;
        font-size: 12px;
        line-height: 1.5833333333;
    }
    .l-footer-nav-lv2__list--indent .l-footer-nav-lv2__link {
        padding-block: 9px 11px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav-lv2__link[href]:hover {
        color: var(--color-orange-1);
    }
}

/*  l-footer-top
--------------------------------------------- */
.l-footer-top__ttl {
    color: var(--color-orange-1);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4583333333;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .l-footer-top__ttl {
        font-weight: 700;
        font-size: 20px;
        line-height: 1.45;
    }
}
.l-footer-top__txt {
    margin-top: 7px;
    color: var(--color-black-3);
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .l-footer-top__txt {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.5;
        text-align: left;
    }
}

/*  l-footer-bottom
--------------------------------------------- */
.l-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom {
        display: block;
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__logo-outer {
        margin-top: 34px;
    }
}
.l-footer-bottom__logo {
    display: block;
    width: 222px;
    margin-left: 5px;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-bottom__logo {
        transition: opacity var(--hover-duration);
    }
    .l-footer-bottom__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__logo {
        position: relative;
        left: -3px;
        width: 134px;
        margin-inline: auto;
    }
}
.l-footer-bottom__logo img {
    display: block;
    width: 100%;
}
.l-footer-bottom__copyright {
    margin-top: 24px;
    margin-left: 1px;
    color: var(--color-black-3);
    font-family: var(--ff-lato);
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__copyright {
        position: relative;
        left: 1px;
        margin-top: 36px;
        margin-left: 0;
        font-size: 9px;
        line-height: 1.2222222222;
        text-align: center;
    }
}
.l-footer-bottom__list-outer {
    margin-top: 24px;
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__list-outer {
        margin-top: 0;
    }
}
.l-footer-bottom__list {
    display: flex;
    gap: 0 30px;
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 19.5px;
    }
}
.l-footer-bottom__link {
    display: block;
    font-family: var(--ff-lato);
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
@media screen and (max-width: 1000px) {
    .l-footer-bottom__link {
        font-size: 11px;
        line-height: 1.2272727273;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-bottom__link:hover {
        color: var(--color-gray-1);
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block__inner {
    display: flex;
    gap: 0 2px;
}
@media screen and (max-width: 750px) {
    .c-block__inner {
        display: block;
    }
}
.c-block__img-outer {
    flex-shrink: 0;
    width: 38.8973966309%;
}
.c-block__img {
    position: sticky;
    top: 0;
}
@media screen and (max-width: 750px) {
    .c-block__img {
        position: static;
        margin-bottom: calc(104 / var(--design-width) * 100vw);
    }
}
.c-block__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    opacity: 0;
}
@media screen and (max-width: 750px) {
    .c-block__img img {
        position: static;
        border-radius: calc(5 / var(--design-width) * 100vw);
        opacity: 1;
    }
}
@media screen and (min-width: 751px) {
    .c-block__img img:first-of-type {
        position: static;
        transition: opacity 0s !important;
        opacity: 1 !important;
    }
    .c-block__img img.is-active {
        transition: opacity 0.3s 0.1s;
        opacity: 1;
    }
}
.c-block__content {
    flex-grow: 1;
    padding: 53px 20px;
    border-radius: 4px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-block__content {
        padding: calc(122 / var(--design-width) * 100vw) 0;
        border-radius: 0;
    }
}
.c-block__row {
    max-width: 570px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-block__row {
        width: 84%;
        max-width: none;
        margin-inline: auto;
    }
}
.c-block__head {
    text-align: center;
}
.c-block__lead {
    margin-bottom: 63px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
    .c-block__lead {
        margin-bottom: calc(72 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-block__ttl-outer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 112px;
    padding: 20px;
}
@media screen and (max-width: 750px) {
    .c-block__ttl-outer {
        min-height: calc(190 / var(--design-width) * 100vw);
        padding: calc(24 / var(--design-width) * 100vw);
    }
}
.c-block__mark {
    position: absolute;
    width: 100%;
}
.c-block__mark--top {
    top: 0;
}
.c-block__mark--bottom {
    bottom: 0;
    transform: scale(1, -1);
}
.c-block__mark::before, .c-block__mark::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--color-gray-4);
    border-left: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 750px) {
    .c-block__mark::before, .c-block__mark::after {
        width: calc(24 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
    }
}
.c-block__mark::before {
    left: 0;
}
.c-block__mark::after {
    right: 0;
    transform: rotate(90deg);
}
.c-block__ttl {
    margin-bottom: 4px;
    margin-left: 0.4em;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3125;
    letter-spacing: 0.4em;
}
@media screen and (max-width: 750px) {
    .c-block__ttl {
        margin-bottom: calc(28 / var(--design-width) * 100vw);
        font-size: calc(42 / var(--design-width) * 100vw);
        line-height: 1.2380952381;
    }
}
.c-block__sub-ttl {
    margin-top: -6px;
    margin-left: -6px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-block__sub-ttl {
        margin-top: calc(-20 / var(--design-width) * 100vw);
        margin-left: calc(6 / var(--design-width) * 100vw);
        font-size: calc(22 / var(--design-width) * 100vw);
        line-height: 1.0909090909;
    }
}
.c-block__body {
    margin-top: 118px;
}
@media screen and (max-width: 750px) {
    .c-block__body {
        margin-top: calc(114 / var(--design-width) * 100vw);
    }
}
.c-block__sentence {
    margin-top: 94px;
}
@media screen and (max-width: 750px) {
    .c-block__sentence {
        margin-top: calc(112 / var(--design-width) * 100vw);
    }
}
.c-block__sentence:first-of-type {
    margin-top: 0;
}
.c-block__hr {
    margin-top: 94px;
}
@media screen and (max-width: 750px) {
    .c-block__hr {
        margin-top: calc(112 / var(--design-width) * 100vw);
    }
}
.c-block__heading {
    margin-bottom: 34px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4545454545;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-block__heading {
        margin-bottom: calc(58 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
        line-height: 1.3125;
    }
}
.c-block__txt {
    font-size: 15px;
    line-height: 2.1333333333;
    letter-spacing: 0.025em;
}
@media screen and (max-width: 750px) {
    .c-block__txt {
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 2.1428571429;
    }
}
.c-block__btn {
    margin-top: 66px;
}
@media screen and (max-width: 750px) {
    .c-block__btn {
        margin-top: calc(112 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-block__btn .c-btn {
        width: 88.8888888889%;
    }
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 263px;
    min-height: 56px;
    padding: 10px 54px 10px 29px;
    border: 1px solid var(--color-gray-1);
    border-radius: 9999px;
}
@media screen and (max-width: 750px) {
    .c-btn {
        width: 100%;
        min-width: auto;
        min-height: calc(100 / var(--design-width) * 100vw);
        padding: calc(10 / var(--design-width) * 100vw) calc(68 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) calc(53 / var(--design-width) * 100vw);
    }
}
.c-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    -webkit-mask: url("../img/icon_extrernal.svg") center center no-repeat;
            mask: url("../img/icon_extrernal.svg") center center no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: var(--color-black-3);
    transition: background-color 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn::before {
        right: calc(38 / var(--design-width) * 100vw);
        width: calc(25 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn:hover::before {
        background-color: var(--color-gray-2);
    }
}
.c-btn:not([target=_blank]) {
    justify-content: center;
    padding-inline: 10px;
}
@media screen and (max-width: 750px) {
    .c-btn:not([target=_blank]) {
        padding-inline: calc(10 / var(--design-width) * 100vw);
    }
}
.c-btn:not([target=_blank])::before {
    content: normal;
}
.c-btn--center {
    margin-inline: auto;
}
.c-btn__txt {
    color: var(--color-black-3);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4285714286;
    transition: color 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn__txt {
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 1.4583333333;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn:hover .c-btn__txt {
        color: var(--color-gray-2);
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
.c-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 998px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-card-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(10 / var(--design-width) * 100vw) 1.4925373134%;
    }
}

.c-card {
    position: relative;
}
.c-card__btn {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-card__btn {
        border-radius: calc(5 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-card__btn:hover + .c-card__inner .c-card__txt-wrap {
        transform: translateY(-50%);
        opacity: 1;
    }
    .c-card__btn:hover + .c-card__inner .c-card__img img {
        transform: scale(1.15);
    }
    .c-card__btn:hover + .c-card__inner .c-card__img::before {
        top: 0;
        left: 0;
        opacity: 1;
        transition: top 0.5s, left 0.5s, opacity 0s 0s;
    }
}
.c-card__inner {
    position: relative;
    z-index: 1;
}
.c-card__lead-outer {
    position: absolute;
    bottom: 1.8292682927%;
    left: 3.0303030303%;
    z-index: 2;
    display: none !important;
}
.c-card__lead {
    transform: translateX(-100%) rotate(90deg);
    transform-origin: right bottom;
    color: var(--color-white-1);
    font-family: var(--ff-lato);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-card__lead {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-card__lead .slash {
    margin-inline: 8px 7px;
}
@media screen and (max-width: 750px) {
    .c-card__lead .slash {
        margin-inline: calc(11 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
    }
}
.c-card__txt-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-22%);
    z-index: 2;
    display: block;
    width: 100%;
    padding-block: 2.4242424242% 6.0606060606%;
    text-align: center;
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    will-change: transform, opacity;
}
@media screen and (max-width: 750px) {
    .c-card__txt-wrap {
        padding-block: 10.6060606061% 3.0303030303%;
    }
}
.iphone .c-card__txt-wrap, .iphone .c-card__txt-wrap, .ipad .c-card__txt-wrap, .android .c-card__txt-wrap, .androidphone .c-card__txt-wrap, .androidtablet .c-card__txt-wrap {
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    transition: none !important;
}

.c-card__ttl {
    padding-left: 0.4em;
    color: var(--color-white-1);
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.4814814815;
    letter-spacing: 0.4em;
}
@media screen and (max-width: 750px) {
    .c-card__ttl {
        padding-left: 0.2em;
        font-size: calc(32 / var(--design-width) * 100vw);
        line-height: 1.5;
        letter-spacing: 0.2em;
    }
}
.c-card__txt {
    margin-top: 0.5833333333em;
    padding-left: 0.1em;
    color: var(--color-white-1);
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-card__txt {
        margin-top: 0.55em;
        padding-left: 1em;
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-card__label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    padding: 7px 24px 8px 25px;
    border-radius: 9999px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-card__label {
        bottom: calc(70 / var(--design-width) * 100vw);
        padding: calc(14 / var(--design-width) * 100vw) calc(39 / var(--design-width) * 100vw) calc(14 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw);
    }
}
.c-card__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -40.3669724771%;
    transform: translateY(-50%);
    z-index: -1;
    display: block;
    width: 140.3669724771%;
    aspect-ratio: 153/33;
    background: url("../img/bg_gradation_orange.webp") 0 0 no-repeat;
    background-size: 100% 100%;
    transition: left 0.5s, right 0.5s;
    will-change: left, right;
}
@media (hover: hover) and (pointer: fine) {
    .c-card__btn:hover + .c-card__inner .c-card__label::before {
        right: 0;
    }
}
.c-card__label-txt {
    color: var(--color-white-1);
    font-family: var(--ff-shippori);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}
@media screen and (max-width: 750px) {
    .c-card__label-txt {
        font-size: calc(22 / var(--design-width) * 100vw);
    }
}
.c-card__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 330/492;
    border-radius: 5px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-card__img {
        border-radius: calc(5 / var(--design-width) * 100vw);
    }
}
.c-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s;
    will-change: transform;
}
.c-card__img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
    display: block;
    width: 197.8787878788%;
    height: 203.0487804878%;
    background: url("../img/img_overlay.webp") center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: top 0.5s, left 0.5s, opacity 0.3s 0.2s;
    will-change: top, left, opacity;
}
.c-card__img::after {
    content: "";
    position: absolute;
    transform: translate3d(0, 0, 0);
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #CECECE;
    mix-blend-mode: multiply;
    opacity: 0;
    will-change: opacity;
}
.iphone .c-card__img img, .iphone .c-card__img img, .ipad .c-card__img img, .android .c-card__img img, .androidphone .c-card__img img, .androidtablet .c-card__img img {
    transform: scale(1) !important;
    transition: none !important;
    scale: 1 !important;
}
.iphone .c-card__img::before, .iphone .c-card__img::before, .ipad .c-card__img::before, .android .c-card__img::before, .androidphone .c-card__img::before, .androidtablet .c-card__img::before {
    content: normal !important;
}

.c-slider .c-card__img {
    aspect-ratio: 428/680;
}
@media screen and (max-width: 750px) {
    .c-slider .c-card__img {
        aspect-ratio: 690/1140;
    }
}
.c-slider .c-card__img::after {
    content: "";
    opacity: 1 !important;
}
.c-slider .c-card__lead-outer {
    bottom: 1.3235294118%;
    left: 2.3364485981%;
    transform: translate3d(0, 0, 0);
    will-change: transform, bottom, left;
}
@media screen and (max-width: 750px) {
    .c-slider .c-card__lead-outer {
        bottom: 1.5789473684%;
        left: 2.8985507246%;
    }
}
@media screen and (min-width: 751px) {
    .c-slider .c-card__lead {
        font-size: 9px;
        line-height: 1.2222222222;
    }
}
.c-slider .c-card__txt-wrap {
    top: 52%;
    padding-block: 4.4392523364% 4.6728971963%;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    transition: none !important;
}
@media screen and (max-width: 750px) {
    .c-slider .c-card__txt-wrap {
        top: 58%;
        padding-block: 1.4492753623% 16.231884058%;
    }
}
.c-slider .c-card__ttl {
    font-size: 36px;
}
@media screen and (max-width: 750px) {
    .c-slider .c-card__ttl {
        padding-left: 0.4em;
        font-size: calc(56 / var(--design-width) * 100vw);
        letter-spacing: 0.4em;
    }
}
.c-slider .c-card__txt {
    margin-top: 1.1666666667em;
    font-size: 12px;
}
@media screen and (max-width: 750px) {
    .c-slider .c-card__txt {
        margin-top: 0.9090909091em;
        padding-left: 0;
        font-size: calc(22 / var(--design-width) * 100vw);
    }
}

.c-modal .c-card .c-card__img {
    aspect-ratio: 508/650;
}
@media screen and (max-width: 750px) {
    .c-modal .c-card .c-card__img {
        aspect-ratio: 630/820;
    }
}
.c-modal .c-card .c-card__img::before {
    width: 179.5275590551%;
    height: 210.7692307692%;
}
@media screen and (max-width: 750px) {
    .c-modal .c-card .c-card__img::before {
        content: normal !important;
    }
}
.c-modal .c-card .c-card__lead-outer {
    bottom: 8px;
}
@media screen and (max-width: 750px) {
    .c-modal .c-card .c-card__lead-outer {
        bottom: calc(18 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-modal .c-card .c-card__lead-outer {
        left: 10px;
    }
}
@media screen and (min-width: 751px) {
    .c-modal .c-card .c-card__lead {
        font-size: 9px;
    }
}

.c-modal.is-bright .c-card .c-card__img::before {
    animation: brightIn 0.7s forwards;
}

@media screen and (min-width: 751px) {
    .iphone .c-modal.is-bright .c-card .c-card__img::before, .iphone .c-modal.is-bright .c-card .c-card__img::before, .ipad .c-modal.is-bright .c-card .c-card__img::before, .android .c-modal.is-bright .c-card .c-card__img::before, .androidphone .c-modal.is-bright .c-card .c-card__img::before, .androidtablet .c-modal.is-bright .c-card .c-card__img::before {
        content: "" !important;
    }
}

@keyframes brightIn {
    0% {
        top: 50%;
        left: 50%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        opacity: 1;
    }
}
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette-wrap {
    display: grid;
    row-gap: 70px;
}

.c-cassette {
    position: relative;
    background-color: var(--color-white-1);
    box-shadow: 0 3px 6px rgba(var(--color-black-1-rgb), 0.16);
    will-change: transform, opacity;
    backface-visibility: hidden;
}
@media screen and (max-width: 750px) {
    .c-cassette {
        box-shadow: 0 calc(3 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) rgba(var(--color-black-1-rgb), 0.16);
    }
}
.c-cassette:first-of-type {
    margin-top: 0;
}
.c-cassette__inner {
    display: flex;
    justify-content: space-between;
    min-height: 1000px;
    padding: 20px;
}
@media screen and (max-width: 750px) {
    .c-cassette__inner {
        flex-direction: column;
        min-height: calc(1075 / var(--design-width) * 100vw);
        padding: calc(30 / var(--design-width) * 100vw) 2.9850746269% calc(80 / var(--design-width) * 100vw);
    }
}
.c-cassette__head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53.9655172414%;
}
@media screen and (max-width: 750px) {
    .c-cassette__head {
        flex-grow: 1;
        width: 100%;
    }
}
.c-cassette__ttl-outer {
    position: absolute;
    top: 18px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
@media screen and (max-width: 750px) {
    .c-cassette__ttl-outer {
        top: calc(-2 / var(--design-width) * 100vw);
        left: 0;
        gap: 0 calc(10 / var(--design-width) * 100vw);
    }
}
.c-cassette__num {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 37px;
    min-height: 18px;
    margin-top: 4px;
    border-radius: 9999px;
    background-color: var(--color-orange-1);
    color: var(--color-white-1);
    font-family: var(--ff-lato);
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette__num {
        min-width: calc(41 / var(--design-width) * 100vw);
        min-height: calc(20 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1.2307692308;
    }
}
.c-cassette__ttl {
    font-family: var(--ff-shippori);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette__ttl {
        font-size: calc(40 / var(--design-width) * 100vw);
    }
}
.c-cassette__logo {
    width: 100%;
    max-width: 351px;
}
@media screen and (max-width: 750px) {
    .c-cassette__logo {
        width: 52.8571428571%;
        max-width: none;
        margin-inline: auto;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(2) .c-cassette__logo {
        max-width: 409px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette:nth-of-type(2) .c-cassette__logo {
        width: 64.6031746032%;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(3) .c-cassette__logo {
        max-width: 502px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette:nth-of-type(3) .c-cassette__logo {
        width: 92.8571428571%;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(5) .c-cassette__logo {
        max-width: 231px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette:nth-of-type(5) .c-cassette__logo {
        width: 32.0634920635%;
    }
}
.c-cassette__body {
    display: flex;
    align-items: center;
    width: 40.775862069%;
}
@media screen and (max-width: 750px) {
    .c-cassette__body {
        display: block;
        width: 88.8888888889%;
        margin-inline: auto;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: calc(480 / var(--design-width) * 100vw);
    }
}
.c-cassette__lead {
    max-width: 386px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 34px;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-cassette__lead {
        max-width: none;
        font-size: calc(40 / var(--design-width) * 100vw);
        line-height: 1.5;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(1) .c-cassette__lead {
        max-width: 374px;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(2) .c-cassette__lead {
        max-width: 409px;
    }
}
.c-cassette__lead .d-ib {
    display: inline-block;
}
.c-cassette__txt {
    max-width: 369px;
    margin-top: 25px;
    color: var(--color-black-3);
    font-size: 14px;
    line-height: 1.8571428571;
}
@media screen and (max-width: 750px) {
    .c-cassette__txt {
        width: 91.7857142857%;
        max-width: none;
        margin-top: calc(36 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 1.6666666667;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette:nth-of-type(1) .c-cassette__txt {
        max-width: 356px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette:nth-of-type(3) .c-cassette__txt, .c-cassette:nth-of-type(4) .c-cassette__txt, .c-cassette:nth-of-type(5) .c-cassette__txt {
        width: 94.8214285714%;
    }
}
.c-cassette__txt strong {
    font-weight: 700;
    font-size: 20px;
}
@media screen and (max-width: 750px) {
    .c-cassette__txt strong {
        font-size: calc(34 / var(--design-width) * 100vw);
    }
}
.c-cassette__btn {
    margin-top: 34px;
}
@media screen and (max-width: 750px) {
    .c-cassette__btn {
        margin-top: calc(62 / var(--design-width) * 100vw);
    }
}

/*  c-cassette-2
--------------------------------------------- */
.c-cassette-2-wrap {
    display: grid;
    row-gap: 70px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2-wrap {
        row-gap: calc(40 / var(--design-width) * 100vw);
    }
}

.c-cassette-2 {
    border-radius: 10px;
    background-color: var(--color-white-1);
    box-shadow: 0 3px 6px rgba(var(--color-black-1-rgb), 0.16);
    will-change: transform, opacity;
    backface-visibility: hidden;
}
@media screen and (max-width: 750px) {
    .c-cassette-2 {
        border-radius: calc(10 / var(--design-width) * 100vw);
        box-shadow: 0 calc(3 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) rgba(var(--color-black-1-rgb), 0.16);
    }
}
.c-cassette-2__head {
    padding: 62px 20px 76px 22px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__head {
        padding: calc(78 / var(--design-width) * 100vw) 2.9850746269% calc(77 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-cassette-2:nth-of-type(1) .c-cassette-2__head {
        padding-top: 73px;
    }
}
.c-cassette-2__body {
    padding-bottom: 64px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__body {
        padding-bottom: calc(80 / var(--design-width) * 100vw);
    }
}
.c-cassette-2__row {
    padding-inline: 20px;
    border-bottom: 1px solid var(--color-gray-5);
}
@media screen and (max-width: 750px) {
    .c-cassette-2__row {
        padding-inline: 8.9552238806%;
    }
}
.c-cassette-2__row:first-of-type {
    border-top: 1px solid var(--color-gray-5);
}
.c-cassette-2__ttl-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 11px;
    margin-bottom: 38px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__ttl-outer {
        gap: 0 calc(10 / var(--design-width) * 100vw);
        margin-bottom: calc(28 / var(--design-width) * 100vw);
        padding-left: 0.6349206349%;
    }
}
.c-cassette-2__num {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    min-height: 25px;
    margin-top: 5px;
    border-radius: 9999px;
    background-color: var(--color-orange-1);
    color: var(--color-white-1);
    font-family: var(--ff-lato);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__num {
        min-width: calc(55 / var(--design-width) * 100vw);
        min-height: calc(25 / var(--design-width) * 100vw);
        margin-top: calc(5 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 1.2307692308;
    }
}
.c-cassette-2__ttl {
    font-family: var(--ff-shippori);
    font-size: 42px;
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__ttl {
        font-size: calc(40 / var(--design-width) * 100vw);
    }
}
.c-cassette-2__txt {
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 42px;
    line-height: 1.619047619;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__txt {
        font-size: calc(40 / var(--design-width) * 100vw);
        line-height: 1.6;
    }
}
.c-cassette-2 .ls-065 {
    letter-spacing: -0.65em;
    margin-right: -0.4em;
}

/*  c-cassette-3
--------------------------------------------- */
.c-cassette-3 {
    max-width: 940px;
    margin-inline: auto;
}
.c-cassette-3__head {
    padding-block: 77px 34px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__head {
        padding-block: calc(75 / var(--design-width) * 100vw) calc(56 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__ttl {
    width: -moz-fit-content;
    width: fit-content;
    height: 41px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__ttl {
        height: calc(41 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__ttl--auseimei {
    height: 38px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__ttl--auseimei {
        height: calc(38 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__ttl img {
    height: 100%;
}
.c-cassette-3__row {
    padding-block: 36px;
    border-bottom: 1px solid var(--color-gray-5);
}
@media screen and (max-width: 750px) {
    .c-cassette-3__row {
        padding-block: calc(60 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__row:first-of-type {
    padding-top: 0;
}
.c-cassette-3__row:last-of-type {
    padding-bottom: 60px;
    border-bottom: none;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__row:last-of-type {
        padding-bottom: calc(80 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__content {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__content {
        display: block;
    }
}
.c-cassette-3__txt-wrap {
    flex-grow: 1;
    max-width: 490px;
    margin-top: 4px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-wrap {
        max-width: none;
        margin-top: 0;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette-3__txt-wrap--pc543 {
        max-width: 543px;
    }
    .c-cassette-3__txt-wrap--pc550 {
        max-width: 550px;
    }
}
.c-cassette-3__txt-l {
    margin-bottom: 18px;
    color: var(--color-black-4);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4375;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-l {
        margin-bottom: calc(28 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
        line-height: 1.4375;
    }
}
.c-cassette-3__txt-m {
    margin-bottom: 18px;
    color: var(--color-black-4);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-m {
        margin-bottom: calc(28 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 1.4166666667;
    }
}
.c-cassette-3__txt + .c-cassette-3__txt-m {
    margin-top: 36px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt + .c-cassette-3__txt-m {
        margin-top: calc(58 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__txt {
    font-size: 14px;
    line-height: 1.8571428571;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt {
        color: var(--color-black-3);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 1.6666666667;
    }
}
.c-cassette-3__txt em {
    color: var(--color-orange-1);
    font-weight: 700;
}
.c-cassette-3__txt-img-outer {
    margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-img-outer {
        margin-bottom: calc(28 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-img-outer--mbsp18 {
        margin-bottom: calc(18 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__txt-img-outer--flex {
    display: flex;
    align-items: flex-end;
}
.c-cassette-3__txt-img {
    display: block;
}
.c-cassette-3__txt-img--01 {
    width: 358px;
}
.c-cassette-3__txt-img--02 {
    width: 188px;
    margin-bottom: 5px;
    margin-right: 14px;
}
.c-cassette-3__txt-img--03 {
    width: 306px;
}
.c-cassette-3__txt-img--04 {
    width: 346px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-img--01 {
        width: calc(358 / var(--design-width) * 100vw);
    }
    .c-cassette-3__txt-img--02 {
        width: calc(191 / var(--design-width) * 100vw);
        margin-bottom: calc(3 / var(--design-width) * 100vw);
        margin-right: calc(15 / var(--design-width) * 100vw);
    }
    .c-cassette-3__txt-img--03 {
        width: calc(306 / var(--design-width) * 100vw);
    }
    .c-cassette-3__txt-img--04 {
        width: calc(346 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__txt-img img {
    display: block;
    width: 100%;
}
.c-cassette-3__txt-img-lead {
    color: var(--color-black-4);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4285714286;
    white-space: nowrap;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__txt-img-lead {
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.3846153846;
    }
}
.c-cassette-3__list {
    display: flex;
    align-items: center;
    margin-block: 21px 17px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__list {
        margin-block: calc(30 / var(--design-width) * 100vw) calc(27 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__item {
    margin-right: 24px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__item {
        margin-right: calc(32 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__item:last-of-type {
    margin-right: 0;
}
.c-cassette-3__item-img {
    display: block;
}
.c-cassette-3__item-img--01 {
    width: 128px;
}
.c-cassette-3__item-img--02 {
    width: 187px;
}
.c-cassette-3__item-img--03 {
    width: 78px;
}
.c-cassette-3__item-img--04 {
    width: 98px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__item-img--01 {
        width: calc(174 / var(--design-width) * 100vw);
    }
    .c-cassette-3__item-img--02 {
        width: calc(256 / var(--design-width) * 100vw);
    }
    .c-cassette-3__item-img--03 {
        width: calc(107 / var(--design-width) * 100vw);
    }
    .c-cassette-3__item-img--04 {
        width: calc(125 / var(--design-width) * 100vw);
    }
}
.c-cassette-3__item-img img {
    display: block;
    width: 100%;
}
.c-cassette-3__btn {
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 4px;
}
@media screen and (max-width: 750px) {
    .c-cassette-3__btn {
        margin-top: calc(56 / var(--design-width) * 100vw);
        margin-bottom: 0;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette-3 .mtpc1 {
        margin-top: 1px;
    }
    .c-cassette-3 .mtpc10 {
        margin-top: 10px;
    }
    .c-cassette-3 .mtpc11 {
        margin-top: 11px;
    }
    .c-cassette-3 .mtpc12 {
        margin-top: 12px;
    }
    .c-cassette-3 .mtpc13 {
        margin-top: 13px;
    }
    .c-cassette-3 .mtpc14 {
        margin-top: 14px;
    }
    .c-cassette-3 .mtpc15 {
        margin-top: 15px;
    }
    .c-cassette-3 .mtpc16 {
        margin-top: 16px;
    }
    .c-cassette-3 .mtpc17 {
        margin-top: 17px;
    }
    .c-cassette-3 .mtpc18 {
        margin-top: 18px;
    }
    .c-cassette-3 .mtpc19 {
        margin-top: 19px;
    }
    .c-cassette-3 .mtpc25 {
        margin-top: 25px;
    }
    .c-cassette-3 .mtpc28 {
        margin-top: 28px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-3 .mtsp10 {
        margin-top: calc(10 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp11 {
        margin-top: calc(11 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp12 {
        margin-top: calc(12 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp13 {
        margin-top: calc(13 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp14 {
        margin-top: calc(14 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp15 {
        margin-top: calc(15 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp16 {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp17 {
        margin-top: calc(17 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp18 {
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp19 {
        margin-top: calc(19 / var(--design-width) * 100vw);
    }
    .c-cassette-3 .mtsp26 {
        margin-top: calc(26 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
.c-img-outer {
    width: 238px;
}
@media screen and (max-width: 750px) {
    .c-img-outer {
        width: 90px;
    }
}
@media screen and (max-width: 750px) {
    .c-loading .c-img-outer {
        width: 174px;
    }
}

.c-img__txt {
    width: 96.6386554622%;
    margin-left: auto;
}
.c-img__logo {
    width: 42.0168067227%;
    margin-top: 24.3697478992%;
    margin-left: 5.4621848739%;
}
.c-img__logo img {
    display: block;
    width: 100%;
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
/* ---------------------------------------------
*   c-link
--------------------------------------------- */
.c-link {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 572px;
}
@media screen and (max-width: 750px) {
    .c-link {
        position: relative;
        top: 0;
        max-width: none;
    }
}
.c-link__bg {
    position: relative;
    z-index: 1;
    width: 83.9160839161%;
    margin-inline: auto;
    transform: translateX(-0.625%);
}
.c-link__bg img {
    display: block;
    width: 100%;
    height: auto;
}
.c-link__bg::before {
    content: "";
    position: absolute;
    top: 32.9166666667%;
    left: 36.0416666667%;
    width: 30.8333333333%;
    height: 22.9166666667%;
    background: url("../img/ttl_orange.svg") center center no-repeat;
    background-size: contain;
}
.c-link__bg::after {
    content: "";
    position: absolute;
    top: 60.4166666667%;
    left: 37.0833333333%;
    width: 13.3333333333%;
    height: 3.75%;
    background: url("../img/logo_aufg.svg") center center no-repeat;
    background-size: contain;
}
.c-link__link-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.c-link__link {
    position: absolute;
    z-index: 1;
    display: block;
    width: 24.4755244755%;
    height: 29.1666666667%;
    border-radius: 50%;
}
.c-link__link:nth-of-type(1) {
    top: -14.7916666667%;
    left: 50%;
    transform: translateX(-50%);
}
.c-link__link:nth-of-type(2) {
    top: 18.3333333333%;
    right: 0.8741258741%;
}
.c-link__link:nth-of-type(3) {
    bottom: 2.0833333333%;
    right: 11.8881118881%;
}
.c-link__link:nth-of-type(4) {
    bottom: 2.0833333333%;
    left: 11.8881118881%;
}
.c-link__link:nth-of-type(5) {
    top: 18.3333333333%;
    left: 0.8741258741%;
}
.c-link__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-white-1);
    transition: transform 0.5s;
}
.c-link__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: -1;
    width: 107.1428571429%;
    height: 107.1428571429%;
    background: url("../img/img_circle.webp") center center no-repeat;
    background-size: contain;
    transition: transform 0.5s;
}
@media (hover: hover) and (pointer: fine) {
    .c-link__link:hover::before {
        transform: translate(-50%, -50%) scale(0.9428571429);
    }
    .c-link__link:hover::after {
        transform: translate(-50%, -50%) rotate(300deg);
    }
}
.c-link__txt-wrap {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 28px;
}
@media screen and (max-width: 1240px) {
    .c-link__txt-wrap {
        padding-top: 20%;
    }
}
.c-link__txt-wrap::before {
    content: "";
    position: absolute;
    bottom: -3.5714285714%;
    left: 50%;
    transform: translateX(-50%);
    width: 53.5714285714%;
    height: 53.5714285714%;
    background: url("../img/anim_arrow.png") center center no-repeat;
    background-size: contain;
}
.c-link__num {
    display: block;
    font-family: var(--ff-lato);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-align: center;
}
@media screen and (max-width: 1240px) {
    .c-link__num {
        font-size: 0.8064516129vw;
    }
}
@media screen and (max-width: 750px) {
    .c-link__num {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-link__txt {
    display: block;
    margin-top: 21px;
    font-family: var(--ff-shippori);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and (max-width: 1240px) {
    .c-link__txt {
        margin-top: 15%;
        font-size: 1.6129032258vw;
    }
}
@media screen and (max-width: 750px) {
    .c-link__txt {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list
--------------------------------------------- */
.c-list-wrap {
    display: flex;
    overflow: hidden;
}

.c-list {
    display: flex;
    animation: infiniteLoop 30s linear 0.5s infinite both;
    will-change: transform;
}
.c-list__item {
    margin-right: 2px;
}
@media screen and (max-width: 750px) {
    .c-list__item {
        margin-right: calc(2 / var(--design-width) * 100vw);
    }
}
.c-list__img {
    width: 402px;
    aspect-ratio: 1/1;
}
@media screen and (max-width: 750px) {
    .c-list__img {
        width: calc(402 / var(--design-width) * 100vw);
    }
}
.c-list__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
}
@media screen and (max-width: 750px) {
    .c-list__img img {
        border-radius: calc(5 / var(--design-width) * 100vw);
    }
}
@keyframes infiniteLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ---------------------------------------------
*   c-loading
--------------------------------------------- */
.c-loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: var(--color-white-2);
    opacity: 1;
    pointer-events: auto;
}
.c-loading.js-loading.is-active {
    animation: opfadeOut 1s 4s forwards;
}
.is-visited .c-loading {
    opacity: 0 !important;
    pointer-events: none !important;
}

.c-loading__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.c-loading__img {
    padding-right: 1.4641288433%;
    padding-bottom: 2.196193265%;
    opacity: 0;
}
@media screen and (max-width: 750px) {
    .c-loading__img {
        padding-right: 0;
        padding-bottom: 9.6%;
    }
}
.js-loading.is-active .c-loading__img {
    animation: op1fadeIn 1s 1s forwards;
}

.c-loading__layer {
    position: absolute;
    transform: translate(-50%, -50%);
    transform-origin: top left;
    scale: 9.1717451524;
    top: 48%;
    left: 50%;
    width: 361px;
    aspect-ratio: 1/1;
    opacity: 0;
    scale: 1;
}
@media screen and (max-width: 750px) {
    .c-loading__layer {
        width: 335.5px;
    }
}
.js-loading.is-active .c-loading__layer {
    animation: op2fadeInPC 2.5s 1.5s forwards;
}
@media screen and (max-width: 750px) {
    .js-loading.is-active .c-loading__layer {
        animation: op2fadeInSP 2.5s 1.5s forwards;
    }
}

@keyframes opfadeOut {
    0% {
        opacity: 1;
        pointer-events: auto;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}
@keyframes op1fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes op2fadeInPC {
    0% {
        opacity: 0;
        scale: 1;
    }
    50% {
        opacity: 0.5;
        scale: 1;
    }
    100% {
        opacity: 1;
        scale: 9.1717451524;
    }
}
@keyframes op2fadeInSP {
    0% {
        opacity: 0;
        scale: 1;
    }
    50% {
        opacity: 0.5;
        scale: 1;
    }
    100% {
        opacity: 1;
        scale: 4.8211624441;
    }
}
/* ---------------------------------------------
*   c-modal
--------------------------------------------- */
.c-modal {
    display: none;
}
.c-modal.is-open {
    display: block;
}
.c-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 9;
    -webkit-backdrop-filter: blur(30px) brightness(1.09);
            backdrop-filter: blur(30px) brightness(1.09);
    background-color: rgba(var(--color-white-1-rgb), 0.75);
}
@media screen and (max-width: 750px) {
    .c-modal__overlay {
        -webkit-backdrop-filter: none;
                backdrop-filter: none;
        background-color: var(--color-white-1);
    }
}
.c-modal__inner {
    display: grid;
    place-items: center;
    height: 100%;
}
.c-modal__container {
    position: relative;
    width: 100%;
    max-height: 100vh;
    padding-block: 30px;
    box-sizing: border-box;
    overflow-y: auto;
}
@media screen and (max-width: 750px) {
    .c-modal__container {
        padding-block: 0;
    }
}
.c-modal__body {
    max-width: 1366px;
    margin-inline: auto;
    padding-inline: 30px;
}
@media screen and (max-width: 750px) {
    .c-modal__body {
        padding-inline: 0;
    }
}
.c-modal__close-btn-outer {
    position: fixed;
    top: 43px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: calc(100% - 60px);
    max-width: 1306px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-modal__close-btn-outer {
        top: calc(20 / var(--design-width) * 100vw);
        width: 100%;
    }
}
.c-modal__close-btn {
    display: block;
    width: 40px;
    height: 40px;
    margin-inline: auto 13px;
    border-radius: 50%;
    background: url("../img/icon_close.svg") center center no-repeat;
    background-size: contain;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-modal__close-btn {
        transition: opacity var(--hover-duration);
    }
    .c-modal__close-btn:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-modal__close-btn {
        width: calc(60 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
        margin-inline: auto 2.6666666667%;
    }
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal[aria-hidden=false] .c-modal__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-modal__container {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-block__img-outer {
    animation: bounceUp1 1s ease-out forwards;
}
.c-modal[aria-hidden=false] .c-block__content {
    animation: bounceUp2 1s ease-out forwards;
}
.c-modal[aria-hidden=true] .c-modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__container {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal__overlay, .c-modal__container {
    will-change: transform, backdrop-filter, background-color;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes bounceUp1 {
    0% {
        transform: translateY(calc((100vh - 60px) * 0.75));
        opacity: 0;
    }
    60% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes bounceUp2 {
    0% {
        transform: translateY(calc((100vh - 60px) * 0.95));
        opacity: 0;
    }
    60% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
/* ---------------------------------------------
*   c-movie
--------------------------------------------- */
.c-movie {
    max-width: 466px;
    margin-top: 49px;
}
@media screen and (max-width: 750px) {
    .c-movie {
        max-width: none;
        margin-top: calc(56 / var(--design-width) * 100vw);
    }
}
.c-movie:first-of-type {
    margin-top: 0;
}
.c-movie__inner {
    position: relative;
    aspect-ratio: 466/262;
}
.c-movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.c-movie__thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-white-2);
    cursor: pointer;
    overflow: hidden;
}
.c-movie__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
}
@media screen and (max-width: 750px) {
    .c-movie__thumbnail img {
        border-radius: calc(5 / var(--design-width) * 100vw);
    }
}
.c-movie__thumbnail::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    display: block;
    width: 130.2575107296%;
    height: 303.0534351145%;
    background: url("../img/img_overlay.webp") center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: top 0.5s, left 0.5s, opacity 0.3s 0.2s;
    will-change: top, left, opacity;
}
.c-movie__thumbnail::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 18.025751073%;
    height: 32.0610687023%;
    background: url("../img/icon_play.svg") center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
    .c-movie__thumbnail:hover::before {
        top: 0;
        left: 0;
        opacity: 1;
        transition: top 0.5s, left 0.5s, opacity 0s 0s;
    }
    .c-movie__thumbnail:hover::after {
        opacity: 1;
    }
}
.iphone .c-movie__thumbnail::before, .iphone .c-movie__thumbnail::after, .iphone .c-movie__thumbnail::before, .iphone .c-movie__thumbnail::after, .ipad .c-movie__thumbnail::before, .ipad .c-movie__thumbnail::after, .android .c-movie__thumbnail::before, .android .c-movie__thumbnail::after, .androidphone .c-movie__thumbnail::before, .androidphone .c-movie__thumbnail::after, .androidtablet .c-movie__thumbnail::before, .androidtablet .c-movie__thumbnail::after {
    content: normal !important;
}

.c-movie__caption {
    margin-top: 10px;
    color: var(--color-black-3);
    font-size: 14px;
    line-height: 1.4285714286;
}
@media screen and (max-width: 750px) {
    .c-movie__caption {
        margin-top: calc(14 / var(--design-width) * 100vw);
        font-size: calc(22 / var(--design-width) * 100vw);
        line-height: 1.4545454545;
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section__container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-block: 153px 191px;
}
@media screen and (max-width: 750px) {
    .c-section__container {
        width: 89.3333333333%;
        padding-inline: 0;
        padding-block: calc(250 / var(--design-width) * 100vw) calc(235 / var(--design-width) * 100vw);
    }
}
.c-section__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    margin-left: auto;
}
@media screen and (max-width: 750px) {
    .c-section__inner {
        display: block;
    }
}
.c-section__head {
    flex-grow: 1;
    padding-top: 41px;
}
@media screen and (max-width: 750px) {
    .c-section__head {
        width: 81.4925373134%;
        margin-inline: auto;
        padding-top: 0;
    }
    .windows .c-section__head {
        width: 85.0746268657%;
    }
}
.c-section__ttl {
    max-width: 369px;
    margin-right: 25px;
}
@media screen and (max-width: 750px) {
    .c-section__ttl {
        width: 85.7142857143%;
        max-width: none;
        margin-right: 0;
    }
}
.c-section__ttl img {
    display: block;
    width: 100%;
}
.c-section__txt-outer {
    position: relative;
    width: 101.9230769231%;
    margin-top: 84px;
}
@media screen and (max-width: 750px) {
    .c-section__txt-outer {
        width: 100%;
        margin-top: calc(72 / var(--design-width) * 100vw);
    }
}
.c-section__txt {
    color: var(--color-gray-1);
    font-family: var(--ff-shippori);
    font-weight: 600;
    font-size: 23px;
    line-height: 2.2608695652;
}
@media screen and (max-width: 750px) {
    .c-section__txt {
        font-size: calc(36 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
.c-section__txt.js-txt-anim {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-base-1);
}
.c-section__body {
    flex-shrink: 0;
    width: 53.5714285714%;
}
@media screen and (max-width: 750px) {
    .c-section__body {
        width: 100%;
        margin-top: calc(142 / var(--design-width) * 100vw);
    }
}

/*  c-section-2
--------------------------------------------- */
.c-section-2__container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-block: 156px 0;
}
@media screen and (max-width: 750px) {
    .c-section-2__container {
        width: 89.3333333333%;
        padding-inline: 0;
        padding-block: calc(127 / var(--design-width) * 100vw) 0;
    }
}
.c-section-2__head {
    text-align: center;
}
.c-section-2__ttl {
    font-family: var(--ff-shippori);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-section-2__ttl {
        font-size: calc(44 / var(--design-width) * 100vw);
        line-height: 1.5909090909;
    }
}
.c-section-2__ttl .nowrap {
    white-space: nowrap;
}
.c-section-2__lead {
    margin-top: 30px;
    font-size: 16px;
    line-height: 2.125;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-section-2__lead {
        width: 91.9402985075%;
        margin-top: calc(30 / var(--design-width) * 100vw);
        margin-inline: auto;
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
.c-section-2__body {
    margin-top: 115px;
}
@media screen and (max-width: 750px) {
    .c-section-2__body {
        margin-top: calc(92 / var(--design-width) * 100vw);
    }
}

/*  c-section-3
--------------------------------------------- */
.c-section-3__container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-block: 158px 0;
}
@media screen and (max-width: 750px) {
    .c-section-3__container {
        width: 89.3333333333%;
        padding-inline: 0;
        padding-block: calc(160 / var(--design-width) * 100vw) 0;
    }
}
.c-section-3__head {
    text-align: center;
}
.c-section-3__ttl {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 97px 92px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 45px;
    line-height: 1.5111111111;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
    .c-section-3__ttl {
        width: 100%;
        padding-inline: 6.8656716418% 5.9701492537%;
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.5;
    }
}
.c-section-3__ttl::before, .c-section-3__ttl::after {
    content: "—";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: normal;
}
.c-section-3__ttl::before {
    left: 2px;
}
@media screen and (max-width: 750px) {
    .c-section-3__ttl::before {
        left: 0.7462686567%;
    }
}
.c-section-3__ttl::after {
    right: 6px;
}
@media screen and (max-width: 750px) {
    .c-section-3__ttl::after {
        right: 0.7462686567%;
    }
}
.c-section-3__ttl .tb-only {
    display: none;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
    .c-section-3__ttl .tb-only {
        display: block;
    }
}
.c-section-3__body {
    margin-top: 59px;
}
@media screen and (max-width: 750px) {
    .c-section-3__body {
        margin-top: calc(63 / var(--design-width) * 100vw);
    }
}

/*  c-section-4
--------------------------------------------- */
.c-section-4__container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-block: 160px 50px;
}
@media screen and (max-width: 750px) {
    .c-section-4__container {
        width: 89.3333333333%;
        padding-inline: 0;
        padding-block: calc(200 / var(--design-width) * 100vw) calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-4__inner {
    display: flex;
    justify-content: space-between;
    gap: 0 50px;
    max-width: 992px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-section-4__inner {
        display: block;
    }
}
.c-section-4__head {
    flex-grow: 1;
}
.c-section-4__ttl {
    max-width: 369px;
}
@media screen and (max-width: 750px) {
    .c-section-4__ttl {
        width: 69.8507462687%;
        max-width: none;
        margin-inline: 14.4776119403% auto;
    }
}
.c-section-4__ttl img {
    display: block;
    width: 100%;
}
.c-section-4__logo {
    width: 160px;
    margin-top: 55px;
    margin-left: 10px;
}
@media screen and (max-width: 750px) {
    .c-section-4__logo {
        width: 30.2985074627%;
        margin-top: calc(71 / var(--design-width) * 100vw);
        margin-inline: 16.2686567164% auto;
    }
}
.c-section-4__logo img {
    display: block;
    width: 100%;
}
.c-section-4__txt {
    margin-top: 47px;
    margin-left: 2px;
    font-size: 15px;
    line-height: 2.2666666667;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-section-4__txt {
        width: -moz-fit-content;
        width: fit-content;
        margin-top: calc(82 / var(--design-width) * 100vw);
        margin-inline: 15.5223880597% auto;
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.7333333333;
    }
}
.c-section-4__body {
    flex-shrink: 0;
    width: 46.9758064516%;
    padding-top: 7px;
}
@media screen and (max-width: 750px) {
    .c-section-4__body {
        width: 89.8507462687%;
        margin-top: calc(184 / var(--design-width) * 100vw);
        margin-inline: auto;
        padding-top: 0;
    }
}
.c-section-4__sub-ttl {
    margin-bottom: 27px;
    font-family: var(--ff-shippori);
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-section-4__sub-ttl {
        margin-bottom: calc(33 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
.c-slider .splide__list {
    position: relative;
    will-change: transform, scale, right, opacity;
}
.c-slider.is-transforming .splide__slide {
    opacity: 0;
}
.c-slider.is-transforming .splide__slide.is-prev {
    opacity: 1;
}
.c-slider.is-transforming .splide__slide.is-visible {
    opacity: 1;
}
.c-slider.is-transforming .splide__slide.is-visible + .splide__slide {
    opacity: 1;
}
.c-slider__nav-outer {
    position: absolute;
    right: 15px;
    bottom: 10px;
    z-index: 1;
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .c-slider__nav-outer {
        right: auto;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 50%);
        width: 70.1333333333%;
    }
}
.c-slider.is-transforming .c-slider__nav-outer {
    opacity: 0;
}
.is-visited .c-slider__nav-outer {
    transition: opacity 0s;
}

.c-slider__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 16px;
    min-width: 301px;
    min-height: 60px;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--color-black-3);
}
@media screen and (max-width: 750px) {
    .c-slider__nav {
        gap: 0 6.2761506276%;
        width: 100%;
        min-width: auto;
        min-height: calc(100 / var(--design-width) * 100vw);
        padding: calc(12 / var(--design-width) * 100vw) 4.5627376426%;
        border-radius: calc(10 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__arrows {
    display: flex;
    gap: 0 6px;
}
@media screen and (max-width: 750px) {
    .c-slider .splide__arrows {
        gap: 0 calc(16 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__arrow {
    position: relative;
    inset: 0;
    transform: none;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url("../img/btn_arrow.svg") center center no-repeat;
    background-size: contain;
    opacity: 1;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-slider .splide__arrow {
        width: calc(60 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url("../img/btn_arrow_hover.svg") center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s;
}
.c-slider .splide__arrow--next {
    transform: scale(-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-slider .splide__arrow:hover::before {
        opacity: 1;
    }
}
.c-slider .splide__progress {
    flex-grow: 1;
    border-radius: 9999px;
    background-color: var(--color-black-4);
}
@media screen and (max-width: 750px) {
    .c-slider .splide__progress {
        background-color: var(--color-gray-3);
    }
}
.c-slider .splide__progress__bar {
    height: 6px;
    border-radius: 9999px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-slider .splide__progress__bar {
        height: calc(11 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-slider .splide__toggle {
        width: calc(76 / var(--design-width) * 100vw);
        height: calc(76 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__toggle__play,
.c-slider .splide__toggle__pause {
    display: block !important;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: center center no-repeat;
    background-size: contain;
}
.c-slider .splide__toggle__play::before,
.c-slider .splide__toggle__pause::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s;
}
.c-slider .splide__toggle__play {
    position: relative;
    z-index: 1;
    background-image: url("../img/btn_play.svg");
}
.c-slider .splide__toggle__play::before {
    background-image: url("../img/btn_play_hover.svg");
}
@media screen and (max-width: 750px) {
    .c-slider .splide__toggle__play {
        background-image: url("../img/btn_play_black.svg");
    }
}
.c-slider .splide__toggle__pause {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    background-image: url("../img/btn_pause.svg");
    opacity: 0;
    transition: opacity 0.3s;
}
.c-slider .splide__toggle__pause::before {
    background-image: url("../img/btn_pause_hover.svg");
}
@media screen and (max-width: 750px) {
    .c-slider .splide__toggle__pause {
        background-image: url("../img/btn_pause_black.svg");
    }
}
.c-slider .splide__toggle.is-active .splide__toggle__pause {
    opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
    .c-slider .splide__toggle:hover .splide__toggle__play::before,
    .c-slider .splide__toggle:hover .splide__toggle__pause::before {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   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-blur
--------------------------------------------- */
.js-blur {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, filter, transform;
    backface-visibility: hidden;
}
.js-blur.is-active {
    animation: blurFadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes blurFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0);
        filter: blur(15px);
    }
    1% {
        opacity: 1;
        transform: translateY(50px);
    }
    10% {
        filter: blur(15px);
    }
    25% {
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
/* ---------------------------------------------
*   js-fadein(フェードイン)
--------------------------------------------- */
.js-fadein {
    opacity: 0;
}
.js-fadein.is-active {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------------------------------------------
*   js-fadein-up(フェードインアップ)
--------------------------------------------- */
.js-fadein-up {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}
.js-fadein-up.is-active {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    1% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ---------------------------------------------
*   js-slidein-to-left(左にスライド)
--------------------------------------------- */
.js-slidein-to-left {
    opacity: 0;
    transform: translateX(50px);
}
.js-slidein-to-left.is-active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------------------------------------------
*   js-slidein-to-right(右にスライド)
--------------------------------------------- */
.js-slidein-to-right {
    opacity: 0;
    transform: translateX(-50px);
}
.js-slidein-to-right.is-active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------------------------------------------
*   js-txt-fadein
--------------------------------------------- */
.js-txt-fadein {
    opacity: 0;
}
.js-txt-fadein.is-active {
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------------------------------------------
*   js-txt-anim
--------------------------------------------- */
.js-txt-anim span {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------------------------------------------
*   js-acc-target
--------------------------------------------- */
.js-acc-target {
    display: none;
}
@media screen and (min-width: 1001px) {
    .js-acc-target {
        display: block !important;
    }
}

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .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: 750px) {
    .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: 750px) {
    .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;
    }
}