@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: absolute;
    top: 47px;
    right: 38px;
    width: 93px;
}
@media screen and (max-width: 860px) {
    .l-header {
        top: 27px;
        right: 28px;
        width: 63px;
    }
}
@media screen and (max-width: 750px) {
    .l-header {
        top: calc(17 / var(--design-width) * 100vw);
        right: calc(17 / var(--design-width) * 100vw);
        width: calc(50 / var(--design-width) * 100vw);
    }
}
.l-header__icon img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}
.l-header__icon img img:last-child {
    opacity: 0; /* 最初は非表示 */
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header {
        transition: opacity var(--hover-duration);
    }
    .l-header:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

.en {
    font-family: var(--ff-vida);
    font-weight: 500;
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding-block: 77px 22px;
    background-color: #382B20;
}
@media screen and (max-width: 750px) {
    .l-footer {
        padding-block: calc(40 / var(--design-width) * 100vw) calc(13 / var(--design-width) * 100vw);
    }
}
.l-footer__logo {
    display: block;
    width: 281px;
    margin: 0 auto 48px;
}
@media screen and (max-width: 750px) {
    .l-footer__logo {
        width: calc(153 / var(--design-width) * 100vw);
        margin: 0 auto calc(35 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-footer__logo {
        transition: opacity var(--hover-duration);
    }
    .l-footer__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-footer__logo img {
    display: block;
}
.l-footer__copyright {
    font-family: var(--ff-lato);
    font-weight: 400;
    font-size: calc(10 / var(--root-fz) * 1rem);
    letter-spacing: 0.12em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .l-footer__copyright {
        font-size: calc(10 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 100px;
    margin: 0 auto;
    background: transparent;
    background-color: var(--color-white-1);
    border-radius: 50px;
}
@media screen and (max-width: 750px) {
    .c-btn {
        width: calc(300 / var(--design-width) * 100vw);
        height: calc(68 / var(--design-width) * 100vw);
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: var(--color-white-1);
    transition: scale 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn::before {
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-btn--s {
    margin-top: 50px;
    width: 296px;
    height: 45px;
    background-color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-btn--s {
        margin-top: calc(42 / var(--design-width) * 100vw);
        width: calc(226 / var(--design-width) * 100vw);
        height: calc(36 / var(--design-width) * 100vw);
    }
}
.c-btn--s::before {
    background-color: var(--color-red-1);
}
.c-btn--s .c-btn__icon {
    right: 14px;
    width: 18px;
    height: 18px;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-btn--s .c-btn__icon {
        right: calc(9 / var(--design-width) * 100vw);
        width: calc(18 / var(--design-width) * 100vw);
        height: calc(18 / var(--design-width) * 100vw);
    }
}
.c-btn--s .c-btn__icon::before {
    width: 5px;
    height: 8px;
    background-color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-btn--s .c-btn__icon::before {
        width: calc(5 / var(--design-width) * 100vw);
        height: calc(8 / var(--design-width) * 100vw);
    }
}
.c-btn--s .c-btn__txt {
    font-size: calc(18 / var(--root-fz) * 1rem);
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-btn--s .c-btn__txt {
        padding-right: calc(12 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-btn__icon {
    position: absolute;
    top: 50%;
    right: 32px;
    translate: 0 -50%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-red-1);
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn__icon {
        right: calc(16 / var(--design-width) * 100vw);
        width: calc(36 / var(--design-width) * 100vw);
        height: calc(36 / var(--design-width) * 100vw);
    }
}
.c-btn__icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -25% -45%;
    content: "";
    width: 4px;
    height: 8px;
    -webkit-mask-image: url("../img/icon_arrow.svg");
            mask-image: url("../img/icon_arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #fff;
    transition: translate 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn__icon::before {
        width: calc(4 / var(--design-width) * 100vw);
        height: calc(8 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn:hover::before {
        scale: 1.1;
    }
    .c-btn:hover .c-btn__icon {
        opacity: 0.8;
    }
    .c-btn:hover .c-btn__icon::before {
        translate: 36% -45%;
    }
}
.c-btn__txt {
    position: relative;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.5;
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-btn__txt {
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 1.4;
        padding-right: calc(9 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-card-howto
--------------------------------------------- */
.c-card-howto {
    max-width: 1200px;
    padding-block: 40px 55px;
    margin: 77px auto 0;
    border-radius: 20px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .c-card-howto {
        max-width: initial;
        width: calc(360 / var(--design-width) * 100vw);
        margin: calc(72 / var(--design-width) * 100vw) auto 0;
        padding-block: calc(17 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
        border-radius: calc(20 / var(--design-width) * 100vw);
    }
}
.c-card-howto__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__head {
        display: block;
        text-align: center;
    }
}
.c-card-howto__line {
    display: flex;
    flex-shrink: 0;
    gap: 17px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__line {
        justify-content: center;
        align-items: center;
        padding-right: calc(34 / var(--design-width) * 100vw);
        gap: calc(8 / var(--design-width) * 100vw);
    }
}
.c-card-howto__line-icon {
    display: block;
    flex-shrink: 0;
    width: 54px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__line-icon {
        width: calc(42 / var(--design-width) * 100vw);
    }
}
.c-card-howto__line-txt {
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.5;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-card-howto__line-txt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-card-howto__qr {
    width: 137px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__link {
        position: relative;
        display: block;
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        margin: calc(5 / var(--design-width) * 100vw) auto 0;
        font-weight: 700;
        font-size: calc(12 / var(--root-fz) * 1rem);
        color: var(--color-black-2);
    }
    .c-card-howto__link::after {
        content: "";
        position: absolute;
        bottom: calc(-4 / var(--design-width) * 100vw);
        left: 50%;
        translate: -50% 0;
        width: calc(90 / var(--design-width) * 100vw);
        height: calc(2 / var(--design-width) * 100vw);
        background: var(--color-black-2);
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-card-howto__link {
        transition: opacity var(--hover-duration);
    }
    .c-card-howto__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-card-howto__body {
    position: relative;
    max-width: 660px;
    padding: 32px 43px 29px 32px;
    margin: 33px auto 0;
    border-radius: 20px;
    background: #fff;
    opacity: 1;
}
@media screen and (max-width: 750px) {
    .c-card-howto__body {
        max-width: initial;
        width: calc(330 / var(--design-width) * 100vw);
        padding: calc(22 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw) calc(22 / var(--design-width) * 100vw) calc(15 / var(--design-width) * 100vw);
        margin: calc(20 / var(--design-width) * 100vw) auto 0;
        border-radius: calc(20 / var(--design-width) * 100vw);
    }
}
.c-card-howto__inner {
    max-width: 395px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__inner {
        max-width: initial;
        width: calc(145 / var(--design-width) * 100vw);
    }
}
.c-card-howto__ttl {
    display: block;
    font-weight: 700;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-card-howto__ttl {
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 1.36;
    }
}
.c-card-howto__txt {
    display: block;
    margin-top: 7px;
    font-weight: 700;
    font-size: calc(14 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.4285714286;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-card-howto__txt {
        width: calc(140 / var(--design-width) * 100vw);
        margin-top: calc(9 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        line-height: 1.34;
    }
}
.c-card-howto__img {
    position: absolute;
    top: 0;
    right: 43px;
    width: 180px;
}
@media screen and (max-width: 750px) {
    .c-card-howto__img {
        right: calc(15 / var(--design-width) * 100vw);
        width: calc(150 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-cassette-howto
--------------------------------------------- */
.c-cassette-howto {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto {
        margin-top: calc(21 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__head {
    text-align: center;
}
.c-cassette-howto__ttl {
    font-weight: 500;
    font-size: calc(27 / var(--root-fz) * 1rem);
    line-height: 1.5555555556;
    color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__ttl {
        font-size: calc(18 / var(--design-width) * 100vw);
        line-height: 1.3333333333;
    }
}
.c-cassette-howto__ttl--num {
    padding-inline: 2px;
    font-family: var(--ff-vida);
    font-size: calc(78 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__ttl--num {
        padding-inline: calc(2 / var(--design-width) * 100vw);
        letter-spacing: 0.01em;
        font-size: calc(49 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__ttl--en {
    padding-right: 4px;
    font-family: var(--ff-vida);
    font-size: calc(38 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__ttl--en {
        padding-right: calc(3 / var(--design-width) * 100vw);
        font-size: calc(25 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__body {
        margin-top: calc(27 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__list {
    display: flex;
    justify-content: center;
    gap: 58px;
    translate: -7px 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__list {
        display: block;
        translate: 0 0;
    }
}
.c-cassette-howto__item {
    position: relative;
    max-width: 300px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__item {
        max-width: initial;
        width: calc(275 / var(--design-width) * 100vw);
        margin: 0 auto;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__item:nth-of-type(2) {
        margin-top: calc(54 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 22px;
    right: -79px;
    background: url("../img/icon_step-anno.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 130px;
    height: 130px;
}
@media screen and (max-width: 820px) {
    .c-cassette-howto__item:nth-of-type(2)::before {
        top: 12px;
        right: -29px;
        width: 110px;
        height: 110px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__item:nth-of-type(2)::before {
        top: calc(-26 / var(--design-width) * 100vw);
        right: calc(-27 / var(--design-width) * 100vw);
        width: calc(100 / var(--design-width) * 100vw);
        height: calc(100 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: 43%;
    left: -30px;
    translate: 0 -50%;
    background: url("../img/img_step-arrow.svg") 0 0 no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 45px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__item:nth-of-type(2)::after {
        top: calc(-29 / var(--design-width) * 100vw);
        left: 50%;
        width: calc(24 / var(--design-width) * 100vw);
        height: calc(45 / var(--design-width) * 100vw);
        transform: translateX(-50%) rotate(90deg);
    }
}
.c-cassette-howto__img {
    max-width: 300px;
    margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__img {
        max-width: initial;
        margin-bottom: calc(11 / var(--design-width) * 100vw);
        translate: calc(-12 / var(--design-width) * 100vw) 0;
    }
}
.c-cassette-howto__list-ttl {
    display: block;
    font-weight: 700;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.625;
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (min-width: 751px) {
    .c-cassette-howto__list-ttl {
        translate: 9px 0;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__list-ttl {
        line-height: 1.8571428571;
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto__list-txt {
    display: block;
    font-weight: 500;
    font-size: calc(14 / var(--root-fz) * 1rem);
    line-height: 1.4285714286;
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (min-width: 751px) {
    .c-cassette-howto__list-txt {
        translate: 9px 0;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-howto__list-txt {
        font-size: calc(12 / var(--design-width) * 100vw);
        margin-top: calc(4 / var(--design-width) * 100vw);
        line-height: 1.328571;
    }
}

/* ---------------------------------------------
*   c-cassette-howto02
--------------------------------------------- */
.c-cassette-howto02 {
    position: relative;
    display: block;
    max-width: 860px;
    margin: 98px auto 0;
    padding-block: 37px 40px;
    border-radius: 70px;
    background: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02 {
        max-width: initial;
        width: calc(330 / var(--design-width) * 100vw);
        margin: calc(76 / var(--design-width) * 100vw) auto 0;
        padding: calc(36 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) calc(55 / var(--design-width) * 100vw);
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 65px;
    background: var(--color-red-1);
    transition: scale 0.5s;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02::before {
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02__body {
    margin-top: 11px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__body {
        margin-top: 0;
    }
}
.c-cassette-howto02__ttl {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: calc(36 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.2222222222;
    color: var(--color-yellow-1);
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__ttl {
        font-size: calc(30 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02__ttl--en {
    display: inline;
    padding-left: 34px;
    padding-right: 13px;
    font-weight: 400;
    font-size: calc(45 / var(--root-fz) * 1rem);
    color: var(--color-white-1);
    font-family: var(--ff-vida);
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__ttl--en {
        display: block;
        margin-bottom: calc(5 / var(--design-width) * 100vw);
        padding-left: 0;
        padding-right: 0;
        font-size: calc(30 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02__period {
    position: relative;
    width: 248px;
    margin: 0 auto;
    padding-left: 16px;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__period {
        width: calc(201 / var(--design-width) * 100vw);
        padding-left: 0;
        margin: calc(7 / var(--design-width) * 100vw) auto 0;
    }
}
.c-cassette-howto02__txt {
    position: relative;
    margin-top: 26px;
    padding-left: 30px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.64;
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__txt {
        margin-top: calc(15 / var(--design-width) * 100vw);
        padding-left: 0;
        text-align: left;
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 1.4285714286;
    }
}
.c-cassette-howto02__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--color-white-1);
    width: 216px;
    height: 32px;
    border-radius: 50px;
    translate: 15px 0;
    margin: 17px auto 0;
    transition: opacity 0.5s;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__link {
        gap: calc(11 / var(--design-width) * 100vw);
        border: calc(1 / var(--design-width) * 100vw) solid var(--color-white-1);
        width: calc(202 / var(--design-width) * 100vw);
        height: calc(32 / var(--design-width) * 100vw);
        translate: 0 0;
        margin: calc(29 / var(--design-width) * 100vw) auto 0;
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.safari .c-cassette-howto02__link {
    padding-top: 3px;
}
@media screen and (max-width: 750px) {
    .safari .c-cassette-howto02__link {
        padding-top: calc(2 / var(--design-width) * 100vw);
    }
}

.c-cassette-howto02__link-txt {
    padding-right: 11px;
    font-weight: 700;
    font-size: calc(13 / var(--root-fz) * 1rem);
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__link-txt {
        font-size: calc(13 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02__link-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    translate: 0 -50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__link-icon {
        width: calc(18 / var(--design-width) * 100vw);
        height: calc(18 / var(--design-width) * 100vw);
    }
}
.c-cassette-howto02__link-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: url("../img/icon_arrow_red.svg") 0 0 no-repeat;
    background-size: contain;
    width: 3px;
    height: 6px;
    transition: translate 0.3s;
}
@media screen and (max-width: 750px) {
    .c-cassette-howto02__link-icon::before {
        width: calc(3 / var(--design-width) * 100vw);
        height: calc(6 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-cassette-howto02:hover::before {
        scale: 1.1;
    }
    .c-cassette-howto02:hover .c-cassette-howto02__link {
        opacity: 0.8;
    }
    .c-cassette-howto02:hover .c-cassette-howto02__link-icon::before {
        translate: 36% -50%;
    }
}

/* ---------------------------------------------
*   c-cassette-program
--------------------------------------------- */
.c-cassette-program {
    margin-top: 100px;
}
@media screen and (max-width: 750px) {
    .c-cassette-program {
        margin-top: calc(61 / var(--design-width) * 100vw);
    }
}
.c-cassette-program__ttl {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-cassette-program__ttl {
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-cassette-program__ttl::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    translate: -50% 0;
    background-color: var(--color-red-1);
    width: 170px;
    height: 4px;
}
@media screen and (max-width: 750px) {
    .c-cassette-program__ttl::before {
        width: calc(150 / var(--design-width) * 100vw);
        height: calc(2 / var(--design-width) * 100vw);
    }
}
.c-cassette-program__lead {
    margin-top: 29px;
    font-weight: 700;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.625;
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-cassette-program__lead {
        font-size: calc(14 / var(--design-width) * 100vw);
        letter-spacing: 0;
        line-height: 1.8571428571;
    }
}
.c-cassette-program__body {
    max-width: 1100px;
    margin: 45px auto 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-program__body {
        margin: calc(57 / var(--design-width) * 100vw) auto 0;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-program__inner {
        padding-left: calc(30 / var(--design-width) * 100vw);
        overflow-x: auto;
        /* for Firefox */
        scrollbar-width: none;
    }
    .c-cassette-program__inner::-webkit-scrollbar {
        display: none;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-program__img {
        width: calc(853 / var(--design-width) * 100vw);
    }
}
.c-cassette-program__anno {
    display: block;
    margin-top: 11px;
    font-weight: 500;
    font-size: calc(11 / var(--root-fz) * 1rem);
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-cassette-program__anno {
        font-size: calc(11 / var(--design-width) * 100vw);
        width: calc(360 / var(--design-width) * 100vw);
        margin: calc(13 / var(--design-width) * 100vw) auto 0;
    }
}

/* ---------------------------------------------
*   c-cassette-reef
--------------------------------------------- */
.c-cassette-reef {
    max-width: 1100px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-cassette-reef {
        max-width: initial;
        width: calc(360 / var(--design-width) * 100vw);
    }
}
.c-cassette-reef__container {
    margin-top: 47px;
    padding: 60px 50px 50px 50px;
    border-radius: 70px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__container {
        margin-top: calc(123 / var(--design-width) * 100vw);
        border-radius: calc(25 / var(--design-width) * 100vw);
        padding: calc(20 / var(--design-width) * 100vw) 0 calc(57 / var(--design-width) * 100vw) 0;
    }
}
.c-cassette-reef__icon {
    width: 78px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__icon {
        width: calc(68 / var(--design-width) * 100vw);
    }
}
.c-cassette-reef__ttl {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    font-size: calc(27 / var(--root-fz) * 1rem);
    line-height: 1.5555555556;
    text-align: center;
    color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__ttl {
        margin-top: calc(11 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-cassette-reef__ttl--en {
    margin-top: 0;
    font-family: var(--ff-vida);
    font-weight: 400;
    font-size: calc(38 / var(--root-fz) * 1rem);
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__ttl--en {
        font-size: calc(23 / var(--design-width) * 100vw);
    }
}
.c-cassette-reef__body {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__body {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-cassette-reef__anno {
    display: block;
    margin-top: 11px;
    font-weight: 500;
    font-size: calc(11 / var(--root-fz) * 1rem);
    color: #382f2d;
}
@media screen and (max-width: 750px) {
    .c-cassette-reef__anno {
        margin-top: calc(11 / var(--design-width) * 100vw);
        font-size: calc(11 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    display: grid;
    place-content: center;
    height: 100vh;
}
@media screen and (max-width: 750px) {
    .c-kv {
        background-attachment: fixed;
        overflow: hidden;
    }
}
.c-kv__container {
    max-width: 1040px;
    margin: 0 auto;
    translate: -33px 0;
}
@media screen and (max-width: 750px) {
    .c-kv__container {
        width: 100%;
        margin: 0 auto;
        translate: 0 0;
    }
}
@media screen and (max-width: 750px) {
    .c-kv__img {
        width: calc(406 / var(--design-width) * 100vw);
        translate: calc(-12 / var(--design-width) * 100vw) 0;
    }
}

.bg-intro {
    background: linear-gradient(90deg, rgb(234, 60, 39) 0%, rgb(234, 60, 39) 5%, rgb(196, 16, 42) 25%, rgb(196, 16, 42) 75%, rgb(234, 60, 39) 95%, rgb(234, 60, 39) 100%);
}
@media screen and (max-width: 750px) {
    .bg-intro {
        background: linear-gradient(180deg, rgb(233, 69, 34) -5%, rgb(190, 2, 47) 10%, rgb(190, 2, 47) 90%, rgb(233, 69, 34) 105%);
        background-attachment: fixed;
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list-reef
--------------------------------------------- */
.c-list-reef {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
    max-width: 1000px;
}
@media screen and (max-width: 750px) {
    .c-list-reef {
        row-gap: calc(18 / var(--design-width) * 100vw);
        max-width: initial;
    }
}
.c-list-reef__item {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    background-color: #F0EBE6;
    border-radius: 25px;
    width: 48%;
}
@media screen and (max-width: 750px) {
    .c-list-reef__item {
        display: block;
        width: calc(156 / var(--design-width) * 100vw);
        border-radius: calc(15 / var(--design-width) * 100vw);
    }
}
.c-list-reef__item--center {
    justify-content: space-between;
    align-items: center;
}
.c-list-reef__item--center .c-list-reef__img {
    height: 100%;
}
@media screen and (max-width: 750px) {
    .c-list-reef__item--center .c-list-reef__img {
        height: auto;
    }
}
.c-list-reef__item--center .c-list-reef__txt-area {
    padding: 35px 15px 20px 28px;
}
@media screen and (max-width: 750px) {
    .c-list-reef__item--center .c-list-reef__txt-area {
        display: flex;
        align-items: center;
        padding: 0 0 0 calc(12 / var(--design-width) * 100vw);
    }
}
.c-list-reef__img {
    flex-shrink: 0;
    width: 45.8333333333%;
}
@media screen and (max-width: 750px) {
    .c-list-reef__img {
        width: 100%;
        height: auto;
    }
}
.c-list-reef__img img {
    width: 100%;
    height: 100%;
    border-radius: 0 25px 25px 0;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 750px) {
    .c-list-reef__img img {
        border-radius: 0;
    }
}
.c-list-reef__txt-area {
    padding: 35px 25px 20px 28px;
}
@media screen and (max-width: 750px) {
    .c-list-reef__txt-area {
        height: calc(165 / var(--design-width) * 100vw);
        padding: calc(17 / var(--design-width) * 100vw) calc(12 / var(--design-width) * 100vw) 0;
    }
}
.c-list-reef__ttl {
    display: block;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.5;
    color: #382f2d;
}
@media screen and (max-width: 750px) {
    .c-list-reef__ttl {
        font-size: calc(14 / var(--design-width) * 100vw);
        color: var(--color-red-1);
    }
}
.c-list-reef__ttl--en {
    display: inline;
    font-family: var(--ff-vida);
    font-weight: 400;
}
.c-list-reef__ttl--color {
    color: var(--color-red-1);
}
.c-list-reef__txt {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    font-size: calc(14 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.4285714286;
    color: #382f2d;
}
@media screen and (max-width: 750px) {
    .c-list-reef__txt {
        font-size: calc(12 / var(--design-width) * 100vw);
        letter-spacing: -0.02em;
        line-height: 1.3333333333;
    }
}
.c-list-reef__note {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4285714286;
    text-align: left;
    color: #382f2d;
}
@media screen and (max-width: 750px) {
    .c-list-reef__note {
        bottom: calc(-40 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        letter-spacing: -0.02em;
    }
}

/* ---------------------------------------------
*   c-section-intro
--------------------------------------------- */
.c-section-intro {
    position: relative;
    overflow: hidden;
    padding-block: 133px 315px;
    margin-top: -1px;
}
@media screen and (max-width: 750px) {
    .c-section-intro {
        background-attachment: fixed;
        padding-block: calc(90 / var(--design-width) * 100vw) calc(160 / var(--design-width) * 100vw);
    }
}
.c-section-intro__reef {
    position: absolute;
    top: 72px;
    left: 50%;
    translate: -50% 0;
    min-width: 1430px;
    pointer-events: none;
}
@media screen and (min-width: 2001px) {
    .c-section-intro__reef {
        width: 2093px;
    }
}
@media screen and (max-width: 2000px) {
    .c-section-intro__reef {
        width: 104.6852122987vw;
    }
}
@media screen and (max-width: 750px) {
    .c-section-intro__reef {
        min-width: initial;
        top: calc(44 / var(--design-width) * 100vw);
        left: 48.8%;
        width: calc(425 / var(--design-width) * 100vw);
    }
}
.c-section-intro__ttl {
    display: block;
    margin-bottom: 29px;
    font-weight: 700;
    font-size: calc(47 / var(--root-fz) * 1rem);
    text-align: center;
    color: var(--color-white-1);
    font-feature-settings: "palt" 1;
    letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
    .c-section-intro__ttl {
        margin-bottom: calc(33 / var(--design-width) * 100vw);
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.5333333333;
    }
}
.c-section-intro__lead {
    margin-bottom: 86px;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 2.5;
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-intro__lead {
        margin-bottom: calc(92 / var(--design-width) * 100vw);
        font-size: calc(15 / var(--design-width) * 100vw);
        letter-spacing: -0.02em;
        line-height: 2.5333333333;
    }
}

/* ---------------------------------------------
*   c-section-howto
--------------------------------------------- */
.c-section-howto {
    position: relative;
    margin-top: -83px;
    padding-block: 141px 215px;
    border-radius: 100px 100px 0 0;
    background-color: var(--color-white-3);
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-section-howto {
        margin-top: calc(-57 / var(--design-width) * 100vw);
        border-radius: calc(60 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw) 0 0;
        padding-block: calc(120 / var(--design-width) * 100vw) calc(145 / var(--design-width) * 100vw);
    }
}
.c-section-howto__container {
    padding-inline: 20px;
}
@media screen and (max-width: 750px) {
    .c-section-howto__container {
        padding-inline: 0;
    }
}

/* ---------------------------------------------
*   c-section-service
--------------------------------------------- */
.c-section-service {
    position: relative;
    margin-top: -75px;
    padding-block: 77px 206px;
    border-radius: 100px 100px 0 0;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-service {
        margin-top: calc(-48 / var(--design-width) * 100vw);
        border-radius: calc(60 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw) 0 0;
        padding-block: calc(70 / var(--design-width) * 100vw) calc(167 / var(--design-width) * 100vw);
    }
}
.c-section-service__body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 20px;
    margin-top: 48px;
}
@media screen and (max-width: 750px) {
    .c-section-service__body {
        display: block;
        max-width: initial;
        padding-inline: 0;
        margin-top: calc(41 / var(--design-width) * 100vw);
    }
}
.c-section-service__card {
    position: relative;
    display: block;
    width: 28.6046511628%;
    min-height: 500px;
    border-radius: 70px;
    padding-top: 91px;
    transition: translate 0.5s;
}
@media screen and (max-width: 750px) {
    .c-section-service__card {
        display: flex;
        padding-left: calc(26 / var(--design-width) * 100vw);
        width: calc(330 / var(--design-width) * 100vw);
        margin: 0 auto;
        min-height: calc(182 / var(--design-width) * 100vw);
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-section-service__card:hover {
        translate: 0 30px;
    }
    .c-section-service__card:hover .c-section-service__icon {
        opacity: 0.8;
    }
    .c-section-service__card:hover .c-section-service__icon::before {
        translate: -50% 0%;
    }
}
.c-section-service__card--1 {
    background: url("../img/bg_service.png") 0 0 no-repeat;
    background-size: cover;
}
@media screen and (max-width: 750px) {
    .c-section-service__card--1 {
        background-image: url("../img/bg_service_sp.png");
        padding-top: calc(37 / var(--design-width) * 100vw);
        gap: calc(47 / var(--design-width) * 100vw);
    }
}
.c-section-service__card--1 .c-section-service__img {
    width: 36.5853658537%;
    margin: 50px auto 0;
    translate: 7px 0;
}
@media screen and (max-width: 750px) {
    .c-section-service__card--1 .c-section-service__img {
        width: calc(58 / var(--design-width) * 100vw);
        margin: 0;
    }
}
.c-section-service__card--2 {
    background-color: var(--color-red-1);
}
@media screen and (max-width: 750px) {
    .c-section-service__card--2 {
        margin-top: calc(20 / var(--design-width) * 100vw);
        padding-top: calc(47 / var(--design-width) * 100vw);
        gap: calc(3 / var(--design-width) * 100vw);
    }
}
.c-section-service__card--2 .c-section-service__img {
    width: 85.7723577236%;
    margin: 28px 0 0 10px;
    translate: 8px 0;
}
@media screen and (max-width: 750px) {
    .c-section-service__card--2 .c-section-service__img {
        width: calc(117 / var(--design-width) * 100vw);
        translate: calc(12 / var(--design-width) * 100vw) calc(-13 / var(--design-width) * 100vw);
        margin: 0;
    }
}
@media screen and (max-width: 750px) {
    .c-section-service__card--2 .c-section-service__card-inner {
        margin-top: calc(9 / var(--design-width) * 100vw);
    }
}
.c-section-service__card--3 {
    background-color: #D690D1;
}
@media screen and (max-width: 750px) {
    .c-section-service__card--3 {
        margin-top: calc(20 / var(--design-width) * 100vw);
        padding-top: calc(47 / var(--design-width) * 100vw);
        gap: calc(3 / var(--design-width) * 100vw);
    }
}
.c-section-service__card--3 .c-section-service__img {
    width: 101.6260162602%;
    margin: 28px 0 0 0;
}
@media screen and (max-width: 750px) {
    .c-section-service__card--3 .c-section-service__img {
        width: calc(157 / var(--design-width) * 100vw);
        translate: calc(16 / var(--design-width) * 100vw) calc(-19 / var(--design-width) * 100vw);
        margin: 0;
    }
}
@media screen and (max-width: 750px) {
    .c-section-service__card--3 .c-section-service__card-inner {
        margin-top: calc(9 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-section-service__card-inner {
        margin-top: calc(15 / var(--design-width) * 100vw);
    }
}
.c-section-service__icon {
    position: absolute;
    left: 43%;
    bottom: 40px;
    translate: 0 -50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-white-1);
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .c-section-service__icon {
        bottom: calc(-10 / var(--design-width) * 100vw);
        width: calc(38 / var(--design-width) * 100vw);
        height: calc(38 / var(--design-width) * 100vw);
    }
}
.c-section-service__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transform: rotate(90deg);
    background: url("../img/icon_arrow_red.svg") 0 0 no-repeat;
    background-size: contain;
    width: 7px;
    height: 12px;
    transition: translate 0.3s;
}
@media screen and (max-width: 750px) {
    .c-section-service__icon::before {
        width: calc(7 / var(--design-width) * 100vw);
        height: calc(12 / var(--design-width) * 100vw);
    }
}
.c-section-service__lead {
    display: block;
    font-weight: 500;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-service__lead {
        text-align: left;
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-section-service__ttl {
    display: block;
    margin-top: 5px;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-service__ttl {
        text-align: left;
        margin-top: calc(5 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-section-service__ttl--en {
    font-family: var(--ff-vida);
}

/* ---------------------------------------------
*   c-section-program
--------------------------------------------- */
.c-section-program {
    position: relative;
    background-color: #F5F7FB;
    padding-block: 45px 77px;
}
@media screen and (max-width: 750px) {
    .c-section-program {
        padding-block: calc(74 / var(--design-width) * 100vw) calc(37 / var(--design-width) * 100vw);
    }
}
.c-section-program::before {
    content: "";
    position: absolute;
    top: -105px;
    left: 50%;
    translate: -50% 0;
    width: 337px;
    height: 109px;
    background: url("../img/bg_program.png") 0 0 no-repeat;
    background-size: contain;
}
@media screen and (max-width: 750px) {
    .c-section-program::before {
        top: calc(-43 / var(--design-width) * 100vw);
        background-image: url("../img/bg_program_sp.png");
        width: calc(174 / var(--design-width) * 100vw);
        height: calc(45 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-section-program__container {
        padding-inline: 20px;
    }
}
.c-section-program__icon {
    position: absolute;
    top: -50px;
    left: 50%;
    translate: -50% 0;
    width: 60px;
}
@media screen and (max-width: 750px) {
    .c-section-program__icon {
        top: calc(-4 / var(--design-width) * 100vw);
        left: 50.7%;
        width: calc(42 / var(--design-width) * 100vw);
    }
}
.c-section-program__lead {
    display: block;
    margin-top: 65px;
    font-weight: 700;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.625;
    text-align: center;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-section-program__lead {
        margin-top: calc(43 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 1.8571428571;
        letter-spacing: 0;
    }
}
.c-section-program__head {
    margin-top: 12px;
}
@media screen and (max-width: 750px) {
    .c-section-program__head {
        margin-top: 2px;
    }
}
.c-section-program__step01 {
    max-width: 850px;
    margin: 45px auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-program__step01 {
        max-width: initial;
        width: calc(317 / var(--design-width) * 100vw);
        margin: calc(47 / var(--design-width) * 100vw) auto 0;
    }
}
.c-section-program__step02 {
    max-width: 1093px;
    margin: 63px auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-program__step02 {
        max-width: initial;
        width: calc(360 / var(--design-width) * 100vw);
        margin: calc(26 / var(--design-width) * 100vw) auto 0;
    }
}
.c-section-program__step02-anno {
    display: block;
    margin-top: 9px;
    font-weight: 500;
    font-size: calc(11 / var(--root-fz) * 1rem);
    text-align: left;
    color: var(--color-black-2);
}
@media screen and (max-width: 750px) {
    .c-section-program__step02-anno {
        margin-top: calc(14 / var(--design-width) * 100vw);
        font-size: calc(11 / var(--design-width) * 100vw);
    }
}
.c-section-program__link {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 18px;
    margin: 20px auto 0;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.3333333333;
    border-bottom: 2px solid #382F2D;
    color: #382f2d;
}
@media screen and (max-width: 750px) {
    .c-section-program__link {
        padding-right: calc(18 / var(--design-width) * 100vw);
        margin: calc(35 / var(--design-width) * 100vw) auto 0;
        font-size: calc(14 / var(--design-width) * 100vw);
        border-bottom: calc(2 / var(--design-width) * 100vw) solid #382F2D;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-section-program__link {
        transition: opacity var(--hover-duration);
    }
    .c-section-program__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-section-program__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    background: url("../img/icon_link.svg") 0 0 no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
}
@media screen and (max-width: 750px) {
    .c-section-program__link::before {
        width: calc(11 / var(--design-width) * 100vw);
        height: calc(11 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-order
--------------------------------------------- */
.c-section-order {
    padding-block: 110px 150px;
    background-color: var(--color-white-1);
    overflow: hidden;
}
@media screen and (min-width: 751px) {
    .c-section-order {
        padding-inline: 20px;
    }
}
@media screen and (max-width: 750px) {
    .c-section-order {
        padding-block: calc(92 / var(--design-width) * 100vw) calc(110 / var(--design-width) * 100vw);
    }
}
.c-section-order__container {
    position: relative;
    display: block;
    max-width: 860px;
    margin: 0 auto;
    padding-block: 40px;
    border-radius: 50px;
    background: #c10230;
}
@media screen and (max-width: 750px) {
    .c-section-order__container {
        max-width: initial;
        width: calc(330 / var(--design-width) * 100vw);
        padding-block: calc(31 / var(--design-width) * 100vw);
        border-radius: calc(20 / var(--design-width) * 100vw);
    }
}
.c-section-order__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: var(--color-red-1);
    transition: scale 0.5s;
}
@media screen and (max-width: 750px) {
    .c-section-order__container::before {
        border-radius: calc(15 / var(--design-width) * 100vw);
    }
}
.c-section-order__container--2 {
    background: #D690D1;
    margin-top: 60px;
}
@media screen and (max-width: 750px) {
    .c-section-order__container--2 {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.c-section-order__container--2::before {
    background: #D690D1;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-order__container:hover::before {
        scale: 1.1;
    }
    .c-section-order__container:hover .c-section-order__btn {
        opacity: 0.8;
    }
    .c-section-order__container:hover .c-section-order__btn-icon::before {
        translate: 36% -50%;
    }
}
.c-section-order__body {
    padding-top: 20px;
}
@media screen and (max-width: 750px) {
    .c-section-order__body {
        padding-top: calc(4 / var(--design-width) * 100vw);
    }
}
.c-section-order__ttl {
    position: relative;
    padding-bottom: 18px;
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-order__ttl {
        padding-bottom: calc(9 / var(--design-width) * 100vw);
    }
}
.c-section-order__ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    translate: -50% 0;
    background-color: var(--color-white-1);
}
.c-section-order__ttl--2 {
    padding-bottom: 48px;
}
@media screen and (max-width: 750px) {
    .c-section-order__ttl--2 {
        padding-bottom: calc(28 / var(--design-width) * 100vw);
    }
}
.c-section-order__ttl-main {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: calc(40 / var(--root-fz) * 1rem);
    letter-spacing: 0.01em;
    line-height: 0.9;
}
@media screen and (max-width: 750px) {
    .c-section-order__ttl-main {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-section-order__ttl-sub {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-section-order__ttl-sub {
        margin-top: calc(4 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-order__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
@media screen and (max-width: 750px) {
    .c-section-order__inner {
        display: block;
    }
}
.c-section-order__inner--2 {
    gap: 15px;
}
.c-section-order__body {
    padding-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-section-order__body {
        padding-top: 0px;
    }
}
.c-section-order__img {
    width: 280px;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .c-section-order__img {
        width: calc(190 / var(--design-width) * 100vw);
        margin: calc(28 / var(--design-width) * 100vw) auto calc(3 / var(--design-width) * 100vw);
    }
}
.c-section-order__img--2 {
    width: 320px;
}
@media screen and (max-width: 750px) {
    .c-section-order__img--2 {
        width: calc(220 / var(--design-width) * 100vw);
        margin: 0 auto calc(3 / var(--design-width) * 100vw);
    }
}
.c-section-order__txt {
    max-width: 363px;
    padding-top: 12px;
    font-weight: 500;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    line-height: 1.625;
    text-align: left;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-order__txt {
        max-width: initial;
        width: calc(250 / var(--design-width) * 100vw);
        padding-top: calc(10 / var(--design-width) * 100vw);
        margin: 0 auto calc(36 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        line-height: 1.3333333333;
        text-align: left;
    }
}
.c-section-order__txt--2 {
    max-width: 358px;
}
@media screen and (max-width: 750px) {
    .c-section-order__txt--2 {
        width: calc(256 / var(--design-width) * 100vw);
    }
}
.c-section-order__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-white-1);
    width: 234px;
    height: 44px;
    border-radius: 50px;
    margin: 23px auto 0;
    transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
    .c-section-order__btn {
        border: 1px solid var(--color-white-1);
        width: calc(181 / var(--design-width) * 100vw);
        height: calc(32 / var(--design-width) * 100vw);
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-order__btn-txt {
    font-family: var(--ff-vida);
    font-weight: 400;
    font-size: calc(20 / var(--root-fz) * 1rem);
    text-align: center;
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-order__btn-txt {
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-section-order__btn-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-section-order__btn-icon {
        right: calc(7 / var(--design-width) * 100vw);
        width: calc(18 / var(--design-width) * 100vw);
        height: calc(18 / var(--design-width) * 100vw);
    }
}
.c-section-order__btn-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: url("../img/icon_arrow_red.svg") 0 0 no-repeat;
    background-size: contain;
    width: 4px;
    height: 7px;
    transition: translate 0.3s;
}
@media screen and (max-width: 750px) {
    .c-section-order__btn-icon::before {
        width: calc(3 / var(--design-width) * 100vw);
        height: calc(6 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}
.c-ttl::before {
    content: "";
    position: absolute;
    background: url("../img/icon_reef.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 124px;
    height: 73px;
}
@media screen and (max-width: 750px) {
    .c-ttl::before {
        width: calc(71 / var(--design-width) * 100vw);
        height: calc(42 / var(--design-width) * 100vw);
    }
}
.c-ttl--1::before {
    top: 42px;
    right: -121px;
}
@media screen and (max-width: 750px) {
    .c-ttl--1::before {
        top: calc(46 / var(--design-width) * 100vw);
        right: calc(-62 / var(--design-width) * 100vw);
    }
}
.c-ttl--2::before {
    top: 54px;
    right: auto;
    left: -144px;
}
@media screen and (max-width: 750px) {
    .c-ttl--2::before {
        top: calc(38 / var(--design-width) * 100vw);
        right: auto;
        left: calc(-80 / var(--design-width) * 100vw);
    }
}
.c-ttl--3::before {
    top: -15px;
    right: -153px;
}
@media screen and (max-width: 800px) {
    .c-ttl--3::before {
        right: -133px;
    }
}
@media screen and (max-width: 750px) {
    .c-ttl--3::before {
        top: calc(-35 / var(--design-width) * 100vw);
        right: calc(-49 / var(--design-width) * 100vw);
    }
}
.c-ttl__main {
    display: block;
    margin-bottom: 7px;
    font-family: var(--ff-vida);
    font-size: calc(80 / var(--root-fz) * 1rem);
    letter-spacing: 0.01em;
    line-height: 1.1625;
    color: #c10230;
}
@media screen and (max-width: 750px) {
    .c-ttl__main {
        margin-bottom: 0;
        font-size: calc(42 / var(--design-width) * 100vw);
    }
}
.c-ttl__sub {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 24px;
    color: #c10230;
}
@media screen and (max-width: 750px) {
    .c-ttl__sub {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-ttl__sub--ff {
    display: inline;
    font-family: var(--ff-vida);
    font-weight: 400;
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   c-tabs
--------------------------------------------- */
.c-tabs__tab-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-tabs__tab-list {
        max-width: initial;
        width: calc(330 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 200px;
    height: 58px;
    border-radius: 30px;
    background: #f9eddc;
    font-weight: 700;
    font-size: calc(12 / var(--root-fz) * 1rem);
    letter-spacing: -0.02em;
    color: #382f2d;
    transition: color 0.5s, background 0.5s;
}
@media screen and (max-width: 1000px) {
    .c-tabs__tab {
        width: 24%;
    }
}
@media screen and (max-width: 750px) {
    .c-tabs__tab {
        display: block;
        width: calc(80 / var(--design-width) * 100vw);
        height: calc(37 / var(--design-width) * 100vw);
        border-radius: calc(20 / var(--design-width) * 100vw);
        font-size: calc(10 / var(--design-width) * 100vw);
        line-height: 1;
    }
}
.c-tabs__tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 65px;
    background: #f9eddc;
    transition: scale 0.5s;
}
@media screen and (max-width: 750px) {
    .c-tabs__tab::before {
        border-radius: calc(50 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab--num {
    width: auto;
    font-family: var(--ff-vida);
    font-weight: 400;
    font-size: calc(34 / var(--root-fz) * 1rem);
    background-color: transparent;
}
.is-current .c-tabs__tab--num {
    color: var(--color-white-1);
}
.is-current .c-tabs__tab--num::before {
    content: none;
}

@media screen and (max-width: 750px) {
    .c-tabs__tab--num {
        display: inline;
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab--num::before {
    content: none;
}
.c-tabs__tab--s {
    width: auto;
    padding-top: 14px;
    background-color: transparent;
}
.is-current .c-tabs__tab--s {
    color: var(--color-white-1);
}
.is-current .c-tabs__tab--s::before {
    content: none;
}

@media screen and (max-width: 750px) {
    .c-tabs__tab--s {
        display: inline;
    }
}
.c-tabs__tab--s::before {
    content: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-tabs__tab:hover {
        color: var(--color-red-1);
    }
    .c-tabs__tab:hover .c-tabs__tab--num {
        color: var(--color-red-1);
    }
    .c-tabs__tab:hover .c-tabs__tab--s {
        color: var(--color-red-1);
    }
    .c-tabs__tab:hover::before {
        scale: 1.1;
    }
}
.c-tabs__tab.is-current {
    background-color: var(--color-red-1);
    color: var(--color-white-1);
}
.c-tabs__tab.is-current::before {
    content: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-tabs__tab.is-current:hover {
        color: var(--color-white-1);
    }
    .c-tabs__tab.is-current:hover .c-tabs__tab--num {
        color: var(--color-white-1);
    }
    .c-tabs__tab.is-current:hover .c-tabs__tab--s {
        color: var(--color-white-1);
    }
    .c-tabs__tab.is-current:hover::before {
        scale: 1.1;
    }
}
.c-tabs__body {
    margin-top: 53px;
}
@media screen and (max-width: 750px) {
    .c-tabs__body {
        width: calc(330 / var(--design-width) * 100vw);
        margin: calc(30 / var(--design-width) * 100vw) auto 0;
    }
}

/* ---------------------------------------------
*   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-tab-target
--------------------------------------------- */
.js-tab-target {
    display: none;
}
.js-tab-target.is-current {
    display: block;
}

/* フェードインアップ */
.js-fadein-up {
    opacity: 0;
    transform: translateY(50px);
}
.js-fadein-up.is-active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s, opacity 1s;
}

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