@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: calc(var(--fixed-header-height) * 1px);
    background-color: var(--color-white-1);
}
@media print, screen and (min-width: 751px) {
    .l-header {
        min-width: calc(var(--minwidth) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .l-header {
        height: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}
.l-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
    height: 100%;
}
@media screen and (max-width: 750px) {
    .l-header__container {
        padding-inline: calc(33 / var(--design-width) * 100vw) calc(38 / var(--design-width) * 100vw);
        max-width: none;
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .l-header__logo img {
        display: block;
        width: 100%;
    }
}
.l-header__logo--1 {
    width: 277px;
}
@media screen and (max-width: 750px) {
    .l-header__logo--1 {
        width: calc(290 / var(--design-width) * 100vw);
    }
}
.l-header__logo--2 {
    display: block;
    width: 214px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__logo--2 {
        transition: opacity var(--hover-duration);
    }
    .l-header__logo--2:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-header__logo--2 {
        width: calc(247 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-gnav
--------------------------------------------- */
.l-gnav {
    position: fixed;
    top: calc(var(--fixed-header-height) * 1px);
    z-index: 10;
    width: 100%;
}
@media print, screen and (min-width: 751px) {
    .l-gnav {
        left: 0;
        background-color: var(--color-orange-1);
        min-width: calc(var(--minwidth) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .l-gnav {
        top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
        right: calc(30 / var(--design-width) * 100vw);
        width: calc(117 / var(--design-width) * 100vw);
        height: calc(97 / var(--design-width) * 100vw);
    }
}

/*  l-gnav-menu
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .l-gnav-menu {
        display: block !important;
        margin-inline: auto;
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-menu {
        position: fixed;
        inset: calc(var(--fixed-header-height) / var(--design-width) * 100vw) 0 calc(100% - (var(--fixed-header-height) / var(--design-width) * 100vw));
        overflow-y: auto;
        overscroll-behavior-y: none;
        visibility: hidden;
        transition: bottom 0.3s, visibility 0.3s;
        scrollbar-width: none;
        background-color: rgba(var(--color-black-3-rgb), 0.5);
    }
    .l-gnav-menu::-webkit-scrollbar {
        display: none;
    }
    .is-menu-opened .l-gnav-menu {
        bottom: 0;
        visibility: visible;
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-menu__container {
        overflow-y: auto;
        box-sizing: border-box;
        height: calc(100% + 1px);
    }
    .is-animating .l-gnav-menu__container {
        scrollbar-width: none;
    }
    .is-animating .l-gnav-menu__container::-webkit-scrollbar {
        display: none;
    }
}

/*  l-gnav-nav
--------------------------------------------- */
@media print, screen and (min-width: 751px) {
    .l-gnav-nav {
        height: 75px;
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-nav {
        padding: calc(140 / var(--design-width) * 100vw) calc(80 / var(--design-width) * 100vw) calc(133 / var(--design-width) * 100vw);
        width: 100%;
        background-color: var(--color-orange-2);
    }
}
.l-gnav-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    height: 100%;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__list {
        display: block;
    }
}
.l-gnav-nav__item {
    height: 100%;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__item {
        position: relative;
        width: 100%;
        height: calc(88 / var(--design-width) * 100vw);
    }
    .l-gnav-nav__item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(4 / var(--design-width) * 100vw);
        background: url(../img/sp/img_line-2.svg) no-repeat top left/calc(590 / var(--design-width) * 100vw) calc(4 / var(--design-width) * 100vw);
    }
    .windows .l-gnav-nav__item::after {
        height: calc(5 / var(--design-width) * 100vw);
        background: url(../img/sp/img_line-2.svg) no-repeat top left/calc(590 / var(--design-width) * 100vw) calc(5 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
    .windows .l-gnav-nav__item:nth-of-type(3)::after {
        height: calc(3 / var(--design-width) * 100vw);
        background: url(../img/sp/img_line-2.svg) no-repeat top left/calc(590 / var(--design-width) * 100vw) calc(3 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    height: 100%;
    will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
    .l-gnav-nav__link {
        transition: opacity var(--hover-duration);
    }
    .l-gnav-nav__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link {
        justify-content: space-between;
        padding-inline: calc(30 / var(--design-width) * 100vw);
        padding-bottom: calc(4 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.l-gnav-nav__link-txt--top {
    width: 53px;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-txt--top {
        width: calc(61 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt--1 {
    width: 49px;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-txt--1 {
        width: calc(57 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt--2 {
    width: 166px;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-txt--2 {
        width: calc(192 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt--3 {
    width: 74px;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-txt--3 {
        width: calc(85 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt--4 {
    width: 103px;
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-txt--4 {
        width: calc(119 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-txt img {
    display: block;
}
.l-gnav-nav__link-ico {
    flex-shrink: 0;
    display: block;
    width: 17px;
}
@media print, screen and (min-width: 751px) {
    .l-gnav-nav__link-ico {
        margin-top: 3px;
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-nav__link-ico {
        width: calc(24 / var(--design-width) * 100vw);
    }
}
.l-gnav-nav__link-ico img {
    display: block;
    width: 100%;
    height: auto;
}

/*  l-gnav-menu-button
--------------------------------------------- */
.l-gnav-menu-button {
    display: none;
    position: relative;
    padding: 15px;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: none;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    touch-action: manipulation;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .l-gnav-menu-button {
        transition: opacity var(--hover-duration);
    }
    .l-gnav-menu-button:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-gnav-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-orange-4);
        border-radius: 0 0 calc(21 / var(--design-width) * 100vw) calc(21 / var(--design-width) * 100vw);
    }
}
.l-gnav-menu-button__lines {
    position: relative;
    width: calc(42 / var(--design-width) * 100vw);
    height: calc(32 / var(--design-width) * 100vw);
}
.l-gnav-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: calc(6 / var(--design-width) * 100vw);
    background-color: var(--color-white-1);
    transition: 0.3s;
    border-radius: calc(5 / var(--design-width) * 100vw);
}
.l-gnav-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-gnav-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.l-gnav-menu-button__line--center {
    top: 50%;
    margin-top: calc(-3 / var(--design-width) * 100vw);
}
.is-menu-opened .l-gnav-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

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

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    position: relative;
    padding-top: calc(var(--fixed-header-height) * 1px);
}
@media screen and (max-width: 750px) {
    .l-contents {
        padding-top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    min-width: 1064px;
}
@media screen and (max-width: 750px) {
    .l-footer {
        min-width: 100%;
    }
}
.l-footer__container {
    padding-block: 40px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .l-footer__container {
        padding: calc(30 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-footer-nav
--------------------------------------------- */
.l-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
}
@media screen and (max-width: 750px) {
    .l-footer-nav {
        display: block;
        width: 100%;
    }
}
.l-footer-nav__item {
    position: relative;
    padding-inline: 6px;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__item {
        margin-inline: auto;
        padding-inline: 0;
        width: -moz-max-content;
        width: max-content;
    }
}
.l-footer-nav__item::after {
    position: absolute;
    content: "｜";
    display: inline-block;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white-1);
    font-size: calc(12 / var(--root-fz) * 1rem);
}
.windows .l-footer-nav__item::after {
    top: 46%;
}

@media screen and (max-width: 750px) {
    .l-footer-nav__item::after {
        display: none;
    }
}
.l-footer-nav__item:first-of-type::before {
    position: absolute;
    content: "｜";
    display: inline-block;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
    color: var(--color-white-1);
    font-size: calc(12 / var(--root-fz) * 1rem);
}
.windows .l-footer-nav__item:first-of-type::before {
    top: 46%;
}

@media screen and (max-width: 750px) {
    .l-footer-nav__item:first-of-type::before {
        display: none;
    }
}
.l-footer-nav__link {
    display: block;
    color: var(--color-white-1);
    font-family: var(--ff-hiragino);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.75;
    white-space: nowrap;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__link {
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__link {
        transition: opacity var(--hover-duration);
    }
    .l-footer-nav__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   l-footer-copyright
--------------------------------------------- */
.l-footer-copyright__inner {
    margin-inline: auto;
    padding: 33px 10px;
    display: flex;
    justify-content: space-between;
    max-width: 1220px;
}
@media screen and (max-width: 750px) {
    .l-footer-copyright__inner {
        flex-direction: column-reverse;
        padding: calc(69 / var(--design-width) * 100vw) 0 calc(70 / var(--design-width) * 100vw);
        max-width: none;
    }
}
.l-footer-copyright__txt {
    color: var(--color-gray-2);
    font-family: var(--ff-hiragino);
    font-size: 12px;
    letter-spacing: -0.035em;
}
@media screen and (max-width: 750px) {
    .l-footer-copyright__txt {
        text-align: center;
        margin-top: calc(63 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 1.8;
    }
}
.l-footer-copyright__logo {
    display: block;
    width: 226px;
}
@media screen and (max-width: 750px) {
    .l-footer-copyright__logo {
        margin-inline: auto;
        width: calc(464 / var(--design-width) * 100vw);
    }
}
.l-footer-copyright__logo img {
    display: block;
    width: 100%;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-copyright__logo {
        transition: opacity var(--hover-duration);
    }
    .l-footer-copyright__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   c-acc
--------------------------------------------- */
.c-acc {
    margin-top: 21px;
}
@media screen and (max-width: 750px) {
    .c-acc {
        margin-top: calc(25 / var(--design-width) * 100vw);
    }
}
.c-acc__head {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--color-blue-1);
    border-radius: 11px;
    color: var(--color-white-1);
    text-align: center;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    font-feature-settings: "palt" 1;
}
@media (hover: hover) and (pointer: fine) {
    .c-acc__head {
        transition: opacity var(--hover-duration);
    }
    .c-acc__head:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-acc__head {
        height: calc(100 / var(--design-width) * 100vw);
        border-radius: calc(14 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-acc__head::before, .c-acc__head::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    translate: 0 -50%;
    width: 4px;
    height: 22px;
    background-color: var(--color-white-1);
    transition: rotate 0.3s;
}
@media screen and (max-width: 750px) {
    .c-acc__head::before, .c-acc__head::after {
        right: calc(47 / var(--design-width) * 100vw);
        width: calc(4 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
    }
}
.c-acc__head::after, .c-acc.is-open .c-acc__head::before {
    rotate: 90deg;
}
.c-acc__body-inner {
    margin-top: 43px;
}
@media screen and (max-width: 750px) {
    .c-acc__body-inner {
        margin-top: calc(53 / var(--design-width) * 100vw);
    }
}
.c-acc__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px 17px;
}
@media screen and (max-width: 750px) {
    .c-acc__list {
        flex-direction: column;
        gap: calc(120 / var(--design-width) * 100vw);
        padding-inline: calc(23 / var(--design-width) * 100vw);
    }
}
.c-acc__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
@media screen and (max-width: 750px) {
    .c-acc__item {
        justify-content: flex-start;
        gap: calc(40 / var(--design-width) * 100vw);
        width: 100%;
    }
}
.c-acc__item:nth-of-type(1)::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 97px;
    background: url(../img/ico_arw_right.svg) no-repeat center center/contain;
}
@media print, screen and (min-width: 751px) {
    .c-acc__item:nth-of-type(1)::after {
        top: 50%;
        right: -60px;
        transform: translateY(-42%);
    }
}
@media screen and (max-width: 750px) {
    .c-acc__item:nth-of-type(1)::after {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 96%) rotate(90deg);
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(97 / var(--design-width) * 100vw);
    }
}
.c-acc__list-img--1 {
    width: 148px;
}
@media screen and (max-width: 750px) {
    .c-acc__list-img--1 {
        width: calc(148 / var(--design-width) * 100vw);
    }
}
.c-acc__list-img--2 {
    width: 149px;
}
@media screen and (max-width: 750px) {
    .c-acc__list-img--2 {
        width: calc(149 / var(--design-width) * 100vw);
    }
}
.c-acc__list-txt {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-acc__list-txt {
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.6153846154;
    }
}
.c-acc__list-txt--point {
    color: var(--color-orange-5);
}
@media print, screen and (min-width: 751px) {
    .c-acc__list-txt--lh {
        line-height: 1.75;
    }
}
.c-acc__hr {
    position: relative;
}
@media print, screen and (min-width: 751px) {
    .c-acc__hr {
        margin: 54px auto 0;
        width: calc(100% - 10px);
        height: 4px;
        background-color: var(--color-orange-1);
    }
}
.c-acc__hr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 65px) rotate(90deg);
    width: 40px;
    height: 97px;
    background: url(../img/ico_arw_right.svg) no-repeat center center/contain;
}
@media screen and (max-width: 750px) {
    .c-acc__hr::after {
        transform: translate(-50%, 125%) rotate(90deg);
        width: calc(40 / var(--design-width) * 100vw);
        height: calc(97 / var(--design-width) * 100vw);
    }
}
.c-acc__txt {
    margin-top: 75px;
    text-align: center;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5833333333;
}
@media screen and (max-width: 750px) {
    .c-acc__txt {
        text-align: justify;
        margin-top: calc(150 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.6153846154;
    }
}

/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1 {
    position: relative;
    margin: 100px auto 0;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
}
@media screen and (max-width: 750px) {
    .c-block-1 {
        margin-top: calc(113 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
        width: calc(var(--contents-width)calc(calc(var(--contents-side-padding) * 2) / var(--design-width) * 100vw) / var(--design-width) * 100vw);
    }
}
.c-block-1__container {
    padding: 85px 20px 30px;
    background-color: var(--color-orange-2);
}
@media screen and (max-width: 750px) {
    .c-block-1__container {
        padding: calc(45 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw) 0 calc(35 / var(--design-width) * 100vw);
        border-radius: calc(13 / var(--design-width) * 100vw);
    }
}
.c-block-1__ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-54%, -60%);
    width: 557px;
}
@media screen and (max-width: 750px) {
    .c-block-1__ttl {
        width: calc(612 / var(--design-width) * 100vw);
        transform: translate(-51%, -65%);
    }
}
.c-block-1__list {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
}
@media screen and (max-width: 750px) {
    .c-block-1__list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.c-block-1__item {
    width: 100%;
}
@media print, screen and (min-width: 751px) {
    .c-block-1__item {
        display: contents;
    }
}

/* ---------------------------------------------
*   c-block-2
--------------------------------------------- */
.c-block-2 {
    position: relative;
    padding-inline: 58px;
    background-color: var(--color-orange-2);
    border-width: 14px;
    border-style: solid;
}
@media screen and (max-width: 750px) {
    .c-block-2 {
        padding-inline: calc(35 / var(--design-width) * 100vw);
        border-width: calc(14 / var(--design-width) * 100vw);
    }
}
.c-block-2:nth-of-type(1) {
    z-index: 5;
    padding-block: 40px 55px;
    border-color: var(--color-orange-3);
}
@media screen and (max-width: 750px) {
    .c-block-2:nth-of-type(1) {
        padding-block: calc(55 / var(--design-width) * 100vw);
    }
}
.c-block-2:nth-of-type(1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 76px;
    height: 31px;
    background: url(../img/ico_arw_bottom_1.svg) no-repeat center center/contain;
}
@media screen and (max-width: 750px) {
    .c-block-2:nth-of-type(1)::after {
        width: calc(97 / var(--design-width) * 100vw);
        height: calc(40 / var(--design-width) * 100vw);
    }
}
.windows.firefox .c-block-2:nth-of-type(1)::after {
    transform: translate(-50%, calc(100% + 1px));
}

.c-block-2:nth-of-type(2) {
    z-index: 4;
    margin-top: -14px;
    padding-block: 55px 58px;
    border-color: var(--color-orange-1);
}
@media screen and (max-width: 750px) {
    .c-block-2:nth-of-type(2) {
        margin-top: calc(-14 / var(--design-width) * 100vw);
        padding-block: calc(74 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw);
    }
}
.c-block-2:nth-of-type(2)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 76px;
    height: 31px;
    background: url(../img/ico_arw_bottom_2.svg) no-repeat center center/contain;
}
@media screen and (max-width: 750px) {
    .c-block-2:nth-of-type(2)::after {
        width: calc(97 / var(--design-width) * 100vw);
        height: calc(40 / var(--design-width) * 100vw);
    }
}
.windows.firefox .c-block-2:nth-of-type(2)::after {
    transform: translate(-50%, calc(100% + 1px));
}

.c-block-2:nth-of-type(3) {
    z-index: 3;
    margin-top: -14px;
    padding-block: 65px 60px;
    border-color: var(--color-orange-4);
}
@media screen and (max-width: 750px) {
    .c-block-2:nth-of-type(3) {
        margin-top: calc(-14 / var(--design-width) * 100vw);
        padding-block: calc(76 / var(--design-width) * 100vw) calc(55 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-3
--------------------------------------------- */
.c-block-3 {
    margin: 56px auto 0;
    width: 929px;
    background-color: rgba(var(--color-white-1-rgb), 0.6);
    border: 1px solid rgba(var(--color-orange-4-rgb), 0.6);
    border-radius: 13px;
}
@media screen and (max-width: 750px) {
    .c-block-3 {
        margin-top: calc(75 / var(--design-width) * 100vw);
        width: 100%;
        border-width: calc(1 / var(--design-width) * 100vw);
        border-radius: calc(13 / var(--design-width) * 100vw);
    }
}
.c-block-3__inner {
    padding: 56px 110px 62px 120px;
}
@media screen and (max-width: 750px) {
    .c-block-3__inner {
        padding: calc(50 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) calc(65 / var(--design-width) * 100vw);
    }
}
.c-block-3__ttl {
    display: block;
    text-align: center;
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1;
    font-feature-settings: "palt" 1;
}
@media screen and (max-width: 750px) {
    .c-block-3__ttl {
        font-size: calc(33 / var(--design-width) * 100vw);
    }
}
.c-block-3__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 0;
    width: 536px;
    height: 63px;
    background-color: var(--color-white-1);
    border: 2.5px solid var(--color-orange-4);
}
@media (hover: hover) and (pointer: fine) {
    .c-block-3__box {
        transition: opacity var(--hover-duration);
    }
    .c-block-3__box:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__box {
        gap: calc(10 / var(--design-width) * 100vw);
        margin-top: calc(30 / var(--design-width) * 100vw);
        width: 100%;
        height: calc(67 / var(--design-width) * 100vw);
        border-width: calc(3 / var(--design-width) * 100vw);
    }
}
.windows.edge .c-block-3__box {
    border-width: calc(4 / var(--design-width) * 100vw);
}

.c-block-3__box-ico {
    flex-shrink: 0;
    width: 39px;
}
@media screen and (max-width: 750px) {
    .c-block-3__box-ico {
        width: calc(43 / var(--design-width) * 100vw);
    }
}
.c-block-3__box-ico img {
    display: block;
    width: 100%;
    height: auto;
}
.c-block-3__box-txt {
    color: var(--color-orange-5);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1;
}
@media screen and (max-width: 750px) {
    .c-block-3__box-txt {
        padding-bottom: calc(1 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .c-box-1 {
        gap: calc(20 / var(--design-width) * 100vw);
        padding-inline: calc(15 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
    }
}
.c-box-1--app {
    margin-top: 15px;
}
@media print, screen and (min-width: 751px) {
    .c-box-1--app {
        gap: 34px;
    }
}
@media screen and (max-width: 750px) {
    .c-box-1--app {
        margin-top: calc(43 / var(--design-width) * 100vw);
        padding-inline: 0;
    }
}

/* ---------------------------------------------
*   c-box-2
--------------------------------------------- */
.c-box-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    height: 60px;
    background-color: rgba(var(--color-white-1-rgb), 0.6);
    border: 1px solid var(--color-orange-4);
}
@media screen and (max-width: 750px) {
    .c-box-2 {
        margin-top: calc(27 / var(--design-width) * 100vw);
        height: calc(87 / var(--design-width) * 100vw);
        border-width: calc(1 / var(--design-width) * 100vw);
    }
}
.c-box-2__txt {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-box-2__txt {
        text-align: center;
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-box-2__link {
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-box-2__link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-box-app
--------------------------------------------- */
.c-box-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}
@media screen and (max-width: 750px) {
    .c-box-app {
        gap: calc(40 / var(--design-width) * 100vw);
    }
}
.c-box-app__wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media screen and (max-width: 750px) {
    .c-box-app__wrap {
        gap: calc(10 / var(--design-width) * 100vw);
    }
}
.c-box-app__wrap:nth-of-type(1) {
    width: 220px;
}
@media screen and (max-width: 750px) {
    .c-box-app__wrap:nth-of-type(1) {
        width: calc(231 / var(--design-width) * 100vw);
    }
}
.c-box-app__wrap:nth-of-type(2) {
    width: 267px;
}
@media screen and (max-width: 750px) {
    .c-box-app__wrap:nth-of-type(2) {
        width: calc(280 / var(--design-width) * 100vw);
    }
}
.c-box-app__txt {
    text-align: center;
    font-family: var(--ff-hiragino);
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1;
}
@media screen and (max-width: 750px) {
    .c-box-app__txt {
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-box-app__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-box-app__link {
        transition: opacity var(--hover-duration);
    }
    .c-box-app__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   c-bg-blue
--------------------------------------------- */
.c-bg-blue {
    position: relative;
    margin-top: -430px;
    background-color: var(--color-blue-1);
}
@media screen and (max-width: 750px) {
    .c-bg-blue {
        margin-top: calc(-330 / var(--design-width) * 100vw);
    }
}
.c-bg-blue::before {
    content: "";
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    height: 446px;
    background: url(../img/img_bg_blue.png) repeat-x -40px top/1407px 446px;
}
@media screen and (max-width: 750px) {
    .c-bg-blue::before {
        top: calc(-47 / var(--design-width) * 100vw);
        height: calc(70 / var(--design-width) * 100vw);
        background: url(../img/sp/img_bg_blue.png) repeat-x 48px top/calc(150 / var(--design-width) * 100vw) calc(75 / var(--design-width) * 100vw);
    }
}
.c-bg-blue__inner {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 750px) {
    .c-bg-blue__inner {
        padding-top: calc(45 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   c-bg-yellow
--------------------------------------------- */
.c-bg-yellow {
    position: relative;
    margin-top: 150px;
    background-color: var(--color-orange-2);
}
@media screen and (max-width: 750px) {
    .c-bg-yellow {
        margin-top: calc(82 / var(--design-width) * 100vw);
    }
}
.c-bg-yellow::before {
    content: "";
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    height: 446px;
    background: url(../img/img_bg_yellow.png) repeat-x -40px top/1407px 446px;
}
@media screen and (max-width: 750px) {
    .c-bg-yellow::before {
        top: calc(-47 / var(--design-width) * 100vw);
        height: calc(70 / var(--design-width) * 100vw);
        background: url(../img/sp/img_bg_yellow.png) repeat-x 48px top/calc(150 / var(--design-width) * 100vw) calc(75 / var(--design-width) * 100vw);
    }
}
.c-bg-yellow__inner {
    position: relative;
    z-index: 2;
    padding-top: 35px;
}
@media screen and (max-width: 750px) {
    .c-bg-yellow__inner {
        padding-top: calc(16 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-cassette-1
--------------------------------------------- */
.c-cassette-1 {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
}
@media screen and (max-width: 750px) {
    .c-cassette-1 {
        display: flex;
        align-items: center;
        padding-block: calc(48 / var(--design-width) * 100vw);
    }
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1--2 {
        transform: translateX(-2%);
    }
}
.c-cassette-1::after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 100%;
    background: url(../img/img_line.svg) no-repeat top left/contain;
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1::after {
        top: -7px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1::after {
        bottom: 0;
        width: 100%;
        height: calc(4 / var(--design-width) * 100vw);
        background: url(../img/sp/img_line.svg) no-repeat top left/calc(612 / var(--design-width) * 100vw) calc(4 / var(--design-width) * 100vw);
    }
}
@media print, screen and (min-width: 751px) {
    .c-block-1__item:nth-of-type(1) .c-cassette-1::after {
        right: -23px;
    }
}
@media screen and (max-width: 750px) {
    .c-block-1__item:nth-of-type(1) .c-cassette-1::after {
        bottom: calc(1 / var(--design-width) * 100vw);
    }
}

@media print, screen and (min-width: 751px) {
    .c-block-1__item:nth-of-type(2) .c-cassette-1::after {
        right: -25px;
    }
}

.c-block-1__item:nth-of-type(3) .c-cassette-1::after {
    display: none;
}

.c-cassette-1__contents {
    display: contents;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__contents {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: calc(12 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1--3 .c-cassette-1__contents {
        gap: calc(15 / var(--design-width) * 100vw);
    }
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1__main {
        order: 2;
        margin-inline: auto;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1__main {
        flex-shrink: 0;
        width: calc(211 / var(--design-width) * 100vw);
    }
}
.c-cassette-1__main img {
    display: block;
    margin-inline: auto;
    height: auto;
}
.c-cassette-1--1 .c-cassette-1__main img {
    width: 247px;
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1--1 .c-cassette-1__main img {
        margin-top: -10px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1--1 .c-cassette-1__main img {
        position: absolute;
        top: calc(16 / var(--design-width) * 100vw);
        left: calc(-27 / var(--design-width) * 100vw);
        width: calc(269 / var(--design-width) * 100vw);
    }
}
.c-cassette-1--2 .c-cassette-1__main img {
    width: 199px;
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1--2 .c-cassette-1__main img {
        margin-top: 30px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1--2 .c-cassette-1__main img {
        width: calc(168 / var(--design-width) * 100vw);
    }
}
.c-cassette-1--3 .c-cassette-1__main img {
    width: 163px;
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1--3 .c-cassette-1__main img {
        margin-top: 33px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1--3 .c-cassette-1__main img {
        width: calc(143 / var(--design-width) * 100vw);
    }
}
.c-cassette-1__label {
    width: 257px;
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1__label {
        order: 1;
        margin-inline: auto;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1__label {
        width: calc(246 / var(--design-width) * 100vw);
    }
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1__txt-wrap {
        order: 3;
        margin-top: -18px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1__txt-wrap {
        display: flex;
        flex-direction: column;
        gap: calc(6 / var(--design-width) * 100vw);
    }
}
.c-cassette-1__txt {
    text-align: center;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.375;
    letter-spacing: -0.1em;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__txt {
        -moz-text-align-last: left;
             text-align-last: left;
        font-size: calc(27 / var(--design-width) * 100vw);
        line-height: 1.4;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1--2 .c-cassette-1__txt {
        line-height: 1.5;
    }
}
.c-cassette-1--1 .c-cassette-1__txt--s {
    display: block;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.5;
    letter-spacing: -0.005em;
}
@media screen and (max-width: 750px) {
    .c-cassette-1--1 .c-cassette-1__txt--s {
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.1923076923;
    }
}
.c-cassette-1--2 .c-cassette-1__txt--s {
    display: block;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.5;
    letter-spacing: 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-1--2 .c-cassette-1__txt--s {
        display: inline-block;
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.1923076923;
        letter-spacing: -0.005em;
    }
}
.c-cassette-1__txt--l {
    display: inline-block;
    font-size: calc(28 / var(--root-fz) * 1rem);
    line-height: 1.1785714286;
    letter-spacing: -0.01em;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__txt--l {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-cassette-1__txt--img {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 110px;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__txt--img {
        margin-top: calc(10 / var(--design-width) * 100vw);
        margin-right: calc(5 / var(--design-width) * 100vw);
        width: calc(110 / var(--design-width) * 100vw);
    }
}
.c-cassette-1__txt--ls {
    letter-spacing: -0.045em;
}

/* ---------------------------------------------
*   c-img-app
--------------------------------------------- */
.c-img-app {
    flex-shrink: 0;
    width: 70px;
}
@media screen and (max-width: 750px) {
    .c-img-app {
        width: calc(116 / var(--design-width) * 100vw);
    }
}
.c-img-app img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   c-img-qr
--------------------------------------------- */
.c-img-qr {
    flex-shrink: 0;
    width: 140px;
}
.c-img-qr img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    background-color: var(--color-orange-2);
}
@media print, screen and (min-width: 751px) {
    .c-kv {
        min-width: calc(var(--minwidth) * 1px);
    }
}
.c-kv__container {
    margin-inline: auto;
    background: url(../img/img_kv_bg.png) no-repeat center top/contain;
}
@media screen and (max-width: 750px) {
    .c-kv__container {
        background-image: url(../img/sp/img_kv_bg.png);
    }
}
.c-kv__main {
    position: relative;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}
@media print, screen and (min-width: 751px) {
    .c-kv__main {
        padding: 16px calc(var(--contents-side-padding) * 1px) 0;
    }
}
.c-kv__img {
    margin-inline: auto;
}
@media print, screen and (min-width: 751px) {
    .c-kv__img {
        width: 1156px;
    }
}
.c-kv__img img {
    display: block;
    width: 100%;
    height: auto;
}
.c-kv__badge {
    position: absolute;
    z-index: 7;
    width: 217px;
    bottom: 444px;
    right: 125px;
}
@media screen and (max-width: 750px) {
    .c-kv__badge {
        width: calc(153 / var(--design-width) * 100vw);
        bottom: calc(300 / var(--design-width) * 100vw);
        right: calc(10 / var(--design-width) * 100vw);
    }
}
.c-kv__badge img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 17px 15px;
}
@media screen and (max-width: 750px) {
    .c-list-1 {
        justify-content: flex-start;
        gap: calc(18 / var(--design-width) * 100vw) calc(17 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .mac.firefox .c-list-1 {
        gap: calc(17 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
    }
}

.c-list-1:has(:nth-child(3)) {
    justify-content: flex-start;
}
.c-list-1__item {
    position: relative;
    width: calc((100% - 30px) / 3);
    height: 108.6px;
    -webkit-mask: url("../img/img_list_bg.svg") no-repeat center/contain;
            mask: url("../img/img_list_bg.svg") no-repeat center/contain;
}
@media screen and (max-width: 750px) {
    .c-list-1__item {
        width: calc((100% - (17 / var(--design-width) * 100vw)) / 2);
        height: calc(108.6 / var(--design-width) * 100vw);
    }
}
.c-list-1__item--orange {
    background-color: var(--color-orange-3);
}
.c-list-1__item--pink {
    background-color: var(--color-pink-1);
}
.c-list-1__item--blue {
    background-color: var(--color-blue-2);
}
.c-list-1__item--green {
    background-color: var(--color-green-1);
}
.c-list-1__item--purple {
    background-color: var(--color-purple-1);
}
.c-list-1__item::after {
    content: "";
    position: absolute;
    bottom: 7px;
    right: 7px;
    width: 16px;
    height: 16px;
    background: url(../img/ico_area.svg) no-repeat center center/contain;
}
@media screen and (max-width: 750px) {
    .c-list-1__item::after {
        bottom: calc(7 / var(--design-width) * 100vw);
        right: calc(7 / var(--design-width) * 100vw);
        width: calc(16 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-1__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-1__link {
        transition: opacity 0.3s;
    }
    .c-list-1__link:hover {
        opacity: 0.6;
    }
}
.c-list-1__link-txt {
    text-align: center;
    color: var(--color-black-4);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.4166666667;
    font-feature-settings: "palt" 1;
}
@media screen and (max-width: 750px) {
    .c-list-1__link-txt {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-note
--------------------------------------------- */
.c-list-note--center-2 {
    text-align: center;
}
@media print, screen and (min-width: 751px) {
    .c-list-note--flex {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}
.c-list-note--white {
    color: var(--color-white-1);
}
@media print, screen and (min-width: 751px) {
    .c-cassette-1--2 .c-cassette-1__txt-wrap .c-list-note {
        margin-top: 6px;
        transform: translateX(-1%);
    }
}

@media print, screen and (min-width: 751px) {
    .c-cassette-1--3 .c-cassette-1__txt-wrap .c-list-note {
        margin-top: 20px;
        transform: translateX(-5%);
    }
}

.c-list-note__item {
    display: flex;
    font-size: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-list-note__item {
        font-size: calc(22 / var(--design-width) * 100vw);
        line-height: 1.56;
    }
}
.c-list-note__item::before {
    content: "※";
    display: inline-block;
}
@media print, screen and (min-width: 751px) {
    .c-list-note--flex .c-list-note__item {
        white-space: nowrap;
    }
}
@media print, screen and (min-width: 751px) {
    .c-list-note--center .c-list-note__item {
        justify-content: center;
    }
}
.c-list-note--center-2 .c-list-note__item {
    justify-content: center;
}
.c-list-note--inquiry .c-list-note__item + .c-list-note__item {
    margin-top: 6px;
}
@media screen and (max-width: 750px) {
    .c-list-note--inquiry .c-list-note__item + .c-list-note__item {
        margin-top: calc(3 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-link-bnr
--------------------------------------------- */
.c-link-bnr {
    position: fixed;
    bottom: 1rem;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}
@media print, screen and (min-width: 751px) {
    .c-link-bnr {
        right: 50px;
    }
}
@media screen and (max-width: 750px) {
    .c-link-bnr {
        bottom: 0;
        left: 0;
    }
}
.c-link-bnr.is-show {
    opacity: 1;
    visibility: visible;
}
.c-link-bnr.is-footer-inview {
    opacity: 0;
    visibility: hidden;
}
.c-link-bnr__btn {
    display: block;
    width: 200px;
    overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-bnr__btn {
        transition: opacity var(--hover-duration);
    }
    .c-link-bnr__btn:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-link-bnr__btn {
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    position: relative;
    margin: 70px auto 0;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
}
@media screen and (max-width: 750px) {
    .c-section-1 {
        margin-top: calc(75 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
        width: calc((var(--contents-width) / var(--design-width) * 100vw) + (var(--contents-side-padding) / var(--design-width) * 100vw) * 2);
        max-width: 100%;
    }
}
.c-section-1__head {
    margin-inline: auto;
    width: 267px;
}
@media screen and (max-width: 750px) {
    .c-section-1__head {
        width: calc(349 / var(--design-width) * 100vw);
    }
}
.c-section-1__head img {
    display: block;
    width: 100%;
    height: auto;
}
.c-section-1__body {
    margin-top: 33px;
}
@media screen and (max-width: 750px) {
    .c-section-1__body {
        margin-top: calc(37 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
    position: relative;
    margin: 88px auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-2 {
        margin-top: calc(95 / var(--design-width) * 100vw);
    }
}
.c-section-2__head {
    margin-inline: auto;
    width: 295px;
}
@media screen and (max-width: 750px) {
    .c-section-2__head {
        width: calc(402 / var(--design-width) * 100vw);
    }
}
.c-section-2__head img {
    display: block;
    width: 100%;
    height: auto;
}
.c-section-2__body {
    margin-top: 29px;
}
@media screen and (max-width: 750px) {
    .c-section-2__body {
        margin-top: calc(45 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-3
--------------------------------------------- */
.c-section-3 {
    position: relative;
    padding-block: 85px 140px;
    background-color: var(--color-orange-2);
}
@media screen and (max-width: 750px) {
    .c-section-3 {
        padding-block: calc(75 / var(--design-width) * 100vw) calc(85 / var(--design-width) * 100vw);
    }
}
.c-section-3__head {
    width: 100%;
    height: 75px;
    background-color: var(--color-orange-1);
}
@media screen and (max-width: 750px) {
    .c-section-3__head {
        height: calc(94 / var(--design-width) * 100vw);
    }
}
.c-section-3__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-white-1);
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.75;
}
@media screen and (max-width: 750px) {
    .c-section-3__ttl {
        font-size: calc(33 / var(--design-width) * 100vw);
        line-height: 1.7272727273;
    }
}
.c-section-3__body {
    margin: 50px auto 0;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
}
@media screen and (max-width: 750px) {
    .c-section-3__body {
        margin-top: calc(50 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
        width: calc((var(--contents-width) / var(--design-width) * 100vw) + (var(--contents-side-padding) / var(--design-width) * 100vw) * 2);
        max-width: 100%;
    }
}
.c-section-3__note {
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}

/* ---------------------------------------------
*   c-tabs
--------------------------------------------- */
.c-tabs {
    margin-inline: auto;
    width: calc(var(--contents-width) * 1px);
}
@media screen and (max-width: 750px) {
    .c-tabs {
        width: calc(var(--contents-width) / var(--design-width) * 100vw);
    }
}
.c-tabs__tab-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-tabs__tab {
    padding-top: 5px;
    width: 170px;
    height: 154px;
    background-color: var(--color-white-3);
    border-top: 2px solid var(--color-orange-1);
    border-bottom: 2px solid var(--color-orange-1);
    border-right: 2px solid var(--color-orange-1);
    text-align: center;
    color: var(--color-orange-1);
    font-size: calc(26 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.3846153846;
    font-feature-settings: "palt" 1;
}
@media (hover: hover) and (pointer: fine) {
    .c-tabs__tab {
        transition: opacity var(--hover-duration);
    }
    .c-tabs__tab:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-tabs__tab {
        padding: calc(1 / var(--design-width) * 100vw);
        width: calc(113 / var(--design-width) * 100vw);
        height: calc(127 / var(--design-width) * 100vw);
        border-top-width: calc(1 / var(--design-width) * 100vw);
        border-bottom-width: calc(1 / var(--design-width) * 100vw);
        border-right-width: calc(1 / var(--design-width) * 100vw);
        font-size: calc(22 / var(--design-width) * 100vw);
        line-height: 1.3636363636;
    }
}
.c-tabs__tab:first-of-type {
    border-left: 2px solid var(--color-orange-1);
}
@media screen and (max-width: 750px) {
    .c-tabs__tab:first-of-type {
        border-left-width: calc(1 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab.is-current {
    color: var(--color-white-1);
    background-color: var(--color-orange-1);
}
.c-tabs__body {
    margin-top: 60px;
}
@media screen and (max-width: 750px) {
    .c-tabs__body {
        margin-top: calc(43 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
    margin-inline: auto;
    width: 945px;
}
@media print, screen and (min-width: 751px) {
    .c-txt-1 {
        transform: translateX(-1%);
    }
}
@media screen and (max-width: 750px) {
    .c-txt-1 {
        width: calc(636 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
    text-align: center;
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5714285714;
    font-feature-settings: "palt" 1;
}
@media screen and (max-width: 750px) {
    .c-txt-2 {
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.4666666667;
    }
}
@media screen and (max-width: 750px) {
    .c-txt-2--left {
        -moz-text-align-last: left;
             text-align-last: left;
    }
}
.c-txt-2--white {
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-txt-2--s {
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.5714285714;
    }
}

/* ---------------------------------------------
*   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-acc-target
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 0px;
    height: 0;
    overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

.js-acc-scope.is-open .js-acc-target {
    animation: openAccAnim 0.5s forwards;
}

@keyframes openAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    100% {
        height: auto;
    }
}
@keyframes closeAccAnim {
    0% {
        height: var(--acc-body-height);
    }
    99% {
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}

/* ---------------------------------------------
*   Float bnr
--------------------------------------------- */
/*  .js-floatbnr-threshold
--------------------------------------------- */
.js-floatbnr-threshold {
    position: absolute;
    top: 0;
    height: 300px;
}

/* ---------------------------------------------
*   tab切り替え
--------------------------------------------- */
/*  .js-tab-target
--------------------------------------------- */
.js-tab-target {
    display: none;
}
.js-tab-target.is-current {
    display: block;
}

@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;
    }
}