@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: fixed;
    inset: 0;
    height: calc(var(--fixed-header-height) * 1px);
    background-color: var(--color-bg-1);
    z-index: 999;
}
@media screen and (max-width: 767px) {
    .l-header {
        height: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}
.l-header__btn {
    position: relative;
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.17em;
    color: var(--color-white-1);
    background-color: var(--color-primary-1);
    border-radius: 100vh;
    padding: 15px 71px 15px 35px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__btn {
        transition: opacity 0.3s;
    }
    .l-header__btn:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .l-header__btn {
        font-size: calc(25 / var(--design-width) * 100vw);
        letter-spacing: 0.07em;
        padding: calc(19 / var(--design-width) * 100vw) calc(82 / var(--design-width) * 100vw) calc(19 / var(--design-width) * 100vw) calc(26 / var(--design-width) * 100vw);
    }
}
.l-header__btn::after {
    position: absolute;
    top: 50%;
    right: 31px;
    transform: translateY(-50%);
    content: "";
    background: url(../img/ico_new.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 23px;
    height: 19px;
}
@media screen and (max-width: 767px) {
    .l-header__btn::after {
        right: calc(31 / var(--design-width) * 100vw);
        width: calc(35 / var(--design-width) * 100vw);
        height: calc(29 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-header-container
--------------------------------------------- */
.l-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(var(--design-width) * 1px);
    margin-inline: auto;
    padding-inline: 24px 41px;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .l-header-container {
        padding-inline: calc(24 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
    }
}
.l-header-container__right {
    display: flex;
    align-items: center;
    -moz-column-gap: 41px;
         column-gap: 41px;
}
@media screen and (max-width: 767px) {
    .l-header-container__right {
        -moz-column-gap: calc(19 / var(--design-width) * 100vw);
             column-gap: calc(19 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-header-logo
--------------------------------------------- */
.l-header-logo {
    width: 173px;
}
@media screen and (max-width: 767px) {
    .l-header-logo {
        width: calc(180 / var(--design-width) * 100vw);
    }
}
.l-header-logo img {
    width: 100%;
    height: auto;
}
.l-header-logo__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-logo__link {
        transition: opacity 0.3s;
    }
    .l-header-logo__link:hover {
        opacity: 0.6;
    }
}

/* ---------------------------------------------
*   l-header-menu
--------------------------------------------- */
.l-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior-y: none;
    z-index: 1;
    background-color: var(--color-primary-1);
    opacity: 0;
    visibility: hidden;
    scrollbar-width: none;
    backface-visibility: hidden;
    will-change: opacity, visibility, transform;
    transform: translate3d(0, 0, 0);
    perspective: 1000;
}
.l-header-menu::-webkit-scrollbar {
    display: none;
}
.l-header-menu.is-animating {
    transition: opacity 0.5s, visibility 0.5s;
}
.l-header-menu__head {
    display: flex;
    align-items: center;
    max-width: calc(var(--design-width) * 1px);
    margin-inline: auto;
    padding-inline: 24px 41px;
    height: calc(var(--fixed-header-height) * 1px);
}
@media screen and (max-width: 767px) {
    .l-header-menu__head {
        padding-inline: calc(24 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
        height: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}
.l-header-menu__logo {
    width: 173px;
}
@media screen and (max-width: 767px) {
    .l-header-menu__logo {
        width: calc(180 / var(--design-width) * 100vw);
    }
}
.l-header-menu__logo img {
    width: 100%;
    height: auto;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu__logo-link {
        transition: opacity 0.3s;
    }
    .l-header-menu__logo-link:hover {
        opacity: 0.6;
    }
}
.is-menu-opened .l-header-menu {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
.l-header-nav {
    max-width: calc(var(--contents-width) * 1px);
    margin-top: 121px;
    margin-inline: auto;
    padding-inline: 15px;
}
@media screen and (max-width: 767px) {
    .l-header-nav {
        margin-top: calc(151 / var(--design-width) * 100vw);
        padding-bottom: calc(151 / var(--design-width) * 100vw);
        padding-inline: calc(32.5 / var(--design-width) * 100vw);
        width: 90%;
    }
}
.l-header-nav__item {
    border-bottom: 2px solid var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .l-header-nav__item {
        border-bottom: calc(4 / var(--design-width) * 100vw) solid var(--color-white-1);
    }
}
.l-header-nav__item + .l-header-nav__item {
    margin-top: 34px;
}
@media screen and (max-width: 767px) {
    .l-header-nav__item + .l-header-nav__item {
        margin-top: calc(49 / var(--design-width) * 100vw);
    }
}
.l-header-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    -moz-column-gap: 28px;
         column-gap: 28px;
    padding-bottom: 30px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link {
        transition: opacity 0.3s;
    }
    .l-header-nav__link:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .l-header-nav__link {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: calc(28 / var(--design-width) * 100vw);
    }
}
.l-header-nav__link::after {
    position: absolute;
    top: 11px;
    right: 3px;
    content: "";
    background: url(../img/ico_arrow_01.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 40px;
    height: 40px;
}
@media screen and (max-width: 767px) {
    .l-header-nav__link::after {
        top: calc(13 / var(--design-width) * 100vw);
        right: calc(3 / var(--design-width) * 100vw);
        background-image: url(../img/ico_arrow_04.svg);
        width: calc(57 / var(--design-width) * 100vw);
        height: calc(57 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .l-header-nav__link--5 {
        padding-bottom: calc(52 / var(--design-width) * 100vw);
    }
}
.l-header-nav__link-txt-01 {
    font-size: calc(31 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.05em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .l-header-nav__link-txt-01 {
        font-size: calc(45 / var(--design-width) * 100vw);
        line-height: 1.75;
        letter-spacing: 0.054em;
    }
}
.l-header-nav__item:nth-of-type(4) .l-header-nav__link-txt-01 {
    letter-spacing: 0.03em;
}

.l-header-nav__link-txt-02 {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .l-header-nav__link-txt-02 {
        margin-top: calc(-17 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 1.75;
    }
}

/* ---------------------------------------------
*   l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
    display: grid;
    place-items: center;
    width: 60px;
    height: 40px;
    z-index: 999;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-menu-button {
        transition: opacity 0.3s;
    }
    .l-header-menu-button:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .l-header-menu-button {
        width: calc(70 / var(--design-width) * 100vw);
        height: calc(40 / var(--design-width) * 100vw);
    }
}
.l-header-menu-button__lines {
    display: block;
    position: relative;
    width: 86.6666666667%;
    height: 77.5%;
}
@media screen and (max-width: 767px) {
    .l-header-menu-button__lines {
        width: 90%;
        height: 100%;
    }
}
.is-menu-opened .l-header-menu-button__lines {
    width: 115%;
}

.l-header-menu-button__line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-1);
    border-radius: 100vh;
    transition: transform 0.3s;
}
.l-header-menu-button__line:nth-of-type(1) {
    top: 0;
    left: 0;
}
.l-header-menu-button__line:nth-of-type(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.l-header-menu-button__line:nth-of-type(3) {
    bottom: 0;
    left: 0;
}
.is-menu-opened .l-header-menu-button__line {
    background-color: var(--color-white-1);
}
.is-menu-opened .l-header-menu-button__line:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
}
.is-menu-opened .l-header-menu-button__line:nth-of-type(2) {
    display: none;
}
.is-menu-opened .l-header-menu-button__line:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-30deg);
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    padding-top: calc(var(--fixed-header-height) * 1px);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .l-contents {
        padding-top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    padding-block: 14px 20px;
}
@media screen and (max-width: 767px) {
    .l-footer {
        padding-block: calc(14 / var(--design-width) * 100vw) calc(29 / var(--design-width) * 100vw);
    }
}
.l-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    width: 571px;
}
@media screen and (max-width: 767px) {
    .l-footer__container {
        flex-direction: column-reverse;
        width: 100%;
    }
}
.l-footer__copyright {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.l-footer__copyright-txt {
    font-size: calc(13 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 2.6623076923;
    letter-spacing: 0.19em;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright-txt {
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 1.7305;
    }
}

/* ---------------------------------------------
*   l-footer-logo
--------------------------------------------- */
.l-footer-logo {
    margin-left: 2px;
    width: 136px;
}
@media screen and (max-width: 767px) {
    .l-footer-logo {
        margin-top: calc(17 / var(--design-width) * 100vw);
        margin-left: 0;
        width: calc(171 / var(--design-width) * 100vw);
    }
}
.l-footer-logo img {
    width: 100%;
    height: auto;
}
.l-footer-logo__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-logo__link {
        transition: opacity 0.3s;
    }
    .l-footer-logo__link:hover {
        opacity: 0.6;
    }
}

/* ---------------------------------------------
*   l-footer-pagetop
--------------------------------------------- */
.l-footer-pagetop {
    position: sticky;
    bottom: 100px;
    z-index: 1;
    max-width: 1440px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .l-footer-pagetop {
        bottom: calc(100 / var(--design-width) * 100vw);
    }
}
.l-footer-pagetop__btn {
    position: absolute;
    bottom: -37px;
    right: min(13.2638888889vw, 191px);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    display: grid;
    place-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-1);
    border: 1px solid var(--color-white-1);
}
@media screen and (max-width: 1100px) {
    .l-footer-pagetop__btn {
        right: 4.5454545455%;
    }
}
@media screen and (max-width: 767px) {
    .l-footer-pagetop__btn {
        bottom: calc(-29 / var(--design-width) * 100vw);
        right: 2.6666666667%;
        width: calc(92 / var(--design-width) * 100vw);
        height: calc(92 / var(--design-width) * 100vw);
    }
}
.l-footer-pagetop__btn.is-show {
    visibility: visible;
    opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-pagetop__btn.is-show:hover {
        opacity: 0.6;
    }
}
.l-footer-pagetop__btn::before {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    background: url(../img/ico_up.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 17px;
    height: 12px;
}
@media screen and (max-width: 767px) {
    .l-footer-pagetop__btn::before {
        top: calc(19 / var(--design-width) * 100vw);
        background-image: url(../img/sp/ico_up.svg);
        width: 29.347826087%;
        height: calc(15 / var(--design-width) * 100vw);
    }
}
.l-footer-pagetop__btn-txt {
    display: block;
    margin-top: 12px;
    margin-left: 2px;
    font-size: calc(12.51 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.7498001599;
    letter-spacing: 0.21em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .l-footer-pagetop__btn-txt {
        margin-top: calc(20 / var(--design-width) * 100vw);
        margin-left: 5.4347826087%;
        font-size: calc(19.76 / var(--design-width) * 100vw);
        line-height: 1.7505060729;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box-movie-01
--------------------------------------------- */
.c-box-movie-01 {
    margin-top: 15px;
    margin-inline: auto;
    width: 71.2%;
}
@media screen and (max-width: 767px) {
    .c-box-movie-01 {
        margin-top: calc(31 / var(--design-width) * 100vw);
        width: 97.7777777778%;
    }
}
.c-box-movie-01 + .c-box-movie-01 {
    margin-top: 100px;
}
@media screen and (max-width: 767px) {
    .c-box-movie-01 + .c-box-movie-01 {
        margin-top: calc(75 / var(--design-width) * 100vw);
    }
}
.c-box-movie-01__link {
    display: block;
    margin-inline: auto;
    width: 100%;
    box-shadow: 10px 10px 0px 0px var(--color-shadow-3);
}
@media (hover: hover) and (pointer: fine) {
    .c-box-movie-01__link {
        transition: opacity 0.3s;
    }
    .c-box-movie-01__link:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .c-box-movie-01__link {
        box-shadow: calc(10 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) 0px 0px var(--color-shadow-3);
    }
}
.c-box-movie-01__link img {
    width: 100%;
    height: auto;
}
.c-box-movie-01__ttl {
    margin-bottom: 15px;
    text-align: center;
    font-size: calc(26 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.05em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-movie-01__ttl {
        margin-bottom: calc(38 / var(--design-width) * 100vw);
        font-size: calc(45 / var(--design-width) * 100vw);
        line-height: 1.75;
        letter-spacing: 0.05em;
    }
}
.c-box-movie-01__txt {
    display: block;
    margin-top: 28px;
    text-align: center;
    font-size: calc(15 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.8666666667;
    letter-spacing: 0.07em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-movie-01__txt {
        margin-top: calc(32 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1;
        letter-spacing: 0.08em;
    }
}
.c-box-movie-01--small {
    width: 466px;
}
@media screen and (max-width: 767px) {
    .c-box-movie-01--small {
        width: 97.7777777778%;
    }
}

/* ---------------------------------------------
*   c-box-business
--------------------------------------------- */
.c-box-business {
    position: relative;
}
.c-box-business__ttl {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white-1);
    font-size: calc(25 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.476;
    letter-spacing: 0.06em;
    color: var(--color-accent-1);
    height: 57px;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-box-business__ttl {
        font-size: calc(37 / var(--design-width) * 100vw);
        line-height: 1;
        letter-spacing: 0.06em;
        height: calc(80 / var(--design-width) * 100vw);
    }
}
.c-box-business__ttl::before, .c-box-business__ttl::after {
    position: absolute;
    content: "";
    display: block;
}
.c-box-business__inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 38px;
         column-gap: 38px;
    padding: 36px 36px 31px 36px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-box-business__inner {
        flex-direction: column;
        padding: calc(47 / var(--design-width) * 100vw) 8.5039370079% calc(49 / var(--design-width) * 100vw) 10.7086614173%;
    }
}
.c-box-business__inner:after, .c-box-business__inner:before {
    position: absolute;
    content: "";
    display: block;
}
.c-box-business__lead {
    font-size: calc(22 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1.4090909091;
    letter-spacing: 0.15em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-business__lead {
        font-size: calc(35 / var(--design-width) * 100vw);
        line-height: 1.37;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-box-business__lead {
        letter-spacing: 0.11em;
    }
}

@media screen and (max-width: 767px) {
    .windows.chrome .c-box-business__lead {
        letter-spacing: 0.12em;
    }
}

.c-box-business__txt {
    margin-top: 19px;
    text-align: justify;
    font-size: calc(15 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.8666666667;
    letter-spacing: 0.07em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-business__txt {
        margin-top: calc(31 / var(--design-width) * 100vw);
        padding-right: calc(13 / var(--design-width) * 100vw);
        text-align: justify;
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.5960714286;
    }
}
.c-box-business__right {
    flex-shrink: 0;
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .c-box-business__right {
        margin-top: calc(28 / var(--design-width) * 100vw);
        flex-shrink: initial;
        width: 97.6608187135%;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business__img {
        width: 100%;
    }
    .c-box-business__img img {
        width: 100%;
        height: auto;
    }
}
.c-box-business__link {
    position: relative;
    margin-top: 15px;
    display: block;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--color-primary-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-box-business__link {
        transition: opacity 0.3s;
    }
    .c-box-business__link:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business__link {
        margin-top: calc(24 / var(--design-width) * 100vw);
        padding-bottom: calc(12 / var(--design-width) * 100vw);
        font-size: calc(36 / var(--design-width) * 100vw);
        line-height: 1.7180555556;
    }
}
.c-box-business__link::after {
    position: absolute;
    top: -2px;
    right: -1px;
    content: "";
    display: block;
    background: url(../img/ico_arrow_03.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
}
@media screen and (max-width: 767px) {
    .c-box-business__link::after {
        top: calc(5 / var(--design-width) * 100vw);
        right: calc(-1 / var(--design-width) * 100vw);
        background-image: url(../img/sp/ico_arrow_03.svg);
        width: calc(58 / var(--design-width) * 100vw);
        height: calc(58 / var(--design-width) * 100vw);
    }
}
.c-box-business--1 {
    margin-inline: auto 8%;
    padding-top: 40px;
    padding-left: 63px;
    width: 699px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 {
        margin-inline: 2px 0;
        padding-top: calc(54 / var(--design-width) * 100vw);
        padding-left: calc(17 / var(--design-width) * 100vw);
        width: 96.5925925926%;
    }
}
.c-box-business--1 .c-box-business__inner {
    width: 636px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__inner {
        width: 100.157480315%;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__inner::before {
        top: calc(-60 / var(--design-width) * 100vw);
        right: -3.3018867925%;
        background-image: url(../img/sp/img_decoration_03.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 10.0628930818%;
        height: calc(109 / var(--design-width) * 100vw);
    }
}
.c-box-business--1 .c-box-business__inner::after {
    top: -34px;
    right: -16px;
    background: url(../img/img_decoration_05.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 52px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__inner::after {
        top: auto;
        bottom: calc(-16 / var(--design-width) * 100vw);
        right: auto;
        left: -2.358490566%;
        background-image: url(../img/sp/img_decoration_04.png);
        width: 5.0314465409%;
        height: calc(76 / var(--design-width) * 100vw);
    }
}
.c-box-business--1 .c-box-business__ttl {
    left: 0;
    width: 268px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__ttl {
        width: 53.6809815951%;
    }
}
.c-box-business--1 .c-box-business__ttl::before {
    top: -35px;
    left: -58px;
    background: url(../img/img_decoration_04.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 64px;
    height: 82px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__ttl::before {
        display: none;
    }
}
.c-box-business--1 .c-box-business__txt {
    margin-right: 8px;
}
@media screen and (max-width: 767px) {
    .c-box-business--1 .c-box-business__txt {
        margin-right: 0;
    }
}
.c-box-business--2 {
    margin-top: 66px;
    margin-inline: 8% auto;
    padding-top: 51px;
    padding-right: 33px;
    width: 682px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 {
        margin-top: calc(56 / var(--design-width) * 100vw);
        margin-inline: 2px 0;
        padding-top: calc(54 / var(--design-width) * 100vw);
        padding-left: calc(17 / var(--design-width) * 100vw);
        padding-right: 0;
        width: 96.5925925926%;
    }
}
.c-box-business--2 .c-box-business__inner {
    width: 650px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__inner {
        width: 100.157480315%;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__inner::before {
        top: calc(-57 / var(--design-width) * 100vw);
        right: -3.3018867925%;
        background-image: url(../img/sp/img_decoration_05.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 10.0628930818%;
        height: calc(109 / var(--design-width) * 100vw);
    }
}
.c-box-business--2 .c-box-business__inner::after {
    bottom: -31px;
    left: -20px;
    background: url(../img/img_decoration_08.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 60px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__inner::after {
        bottom: calc(-23 / var(--design-width) * 100vw);
        left: -2.5157232704%;
        background-image: url(../img/sp/img_decoration_06.png);
        width: 7.5471698113%;
        height: calc(140 / var(--design-width) * 100vw);
    }
}
.c-box-business--2 .c-box-business__ttl {
    right: 0;
    width: 330px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__ttl {
        right: auto;
        left: 0;
        width: calc(448 / var(--design-width) * 100vw);
    }
}
.c-box-business--2 .c-box-business__ttl::before {
    top: -36px;
    left: -22px;
    background: url(../img/img_decoration_06.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 52px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__ttl::before {
        display: none;
    }
}
.c-box-business--2 .c-box-business__ttl::after {
    top: -29px;
    right: -55px;
    background: url(../img/img_decoration_07.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 64px;
    height: 93px;
}
@media screen and (max-width: 767px) {
    .c-box-business--2 .c-box-business__ttl::after {
        display: none;
    }
}
.c-box-business--3 {
    margin-top: 79px;
    margin-inline: auto 8%;
    padding-top: 50px;
    padding-left: 86px;
    width: 721px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 {
        margin-top: calc(56 / var(--design-width) * 100vw);
        margin-inline: 2px 0;
        padding-top: calc(54 / var(--design-width) * 100vw);
        padding-left: calc(17 / var(--design-width) * 100vw);
        padding-right: 0;
        width: 96.5925925926%;
    }
}
.c-box-business--3 .c-box-business__inner {
    width: 636px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__inner {
        width: 100.157480315%;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__inner::before {
        top: calc(-55 / var(--design-width) * 100vw);
        right: -2.5157232704%;
        background-image: url(../img/sp/img_decoration_07.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 10.0628930818%;
        height: calc(114 / var(--design-width) * 100vw);
    }
}
.c-box-business--3 .c-box-business__inner::after {
    bottom: -33px;
    right: -14px;
    background: url(../img/img_decoration_11.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 56px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__inner::after {
        right: auto;
        bottom: calc(-15 / var(--design-width) * 100vw);
        left: -2.5157232704%;
        background-image: url(../img/sp/img_decoration_08.png);
        width: 5.0314465409%;
        height: calc(56 / var(--design-width) * 100vw);
    }
}
.c-box-business--3 .c-box-business__ttl {
    left: 0;
    width: 326px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__ttl {
        width: calc(448 / var(--design-width) * 100vw);
    }
}
.c-box-business--3 .c-box-business__ttl::before {
    top: -35px;
    right: -22px;
    background: url(../img/img_decoration_09.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 52px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__ttl::before {
        display: none;
    }
}
.c-box-business--3 .c-box-business__ttl::after {
    top: 10px;
    left: -55px;
    background: url(../img/img_decoration_10.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 64px;
    height: 88px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__ttl::after {
        display: none;
    }
}
.c-box-business--3 .c-box-business__txt {
    margin-right: 9px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__txt {
        margin-right: 0;
    }
}
.c-box-business--3 .c-box-business__link {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-box-business--3 .c-box-business__link {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-box-business--4 {
    margin-top: 76px;
    margin-inline: 8% auto;
    padding-top: 46px;
    padding-right: 49px;
    width: 698px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 {
        margin-top: calc(56 / var(--design-width) * 100vw);
        margin-inline: 2px 0;
        padding-top: calc(54 / var(--design-width) * 100vw);
        padding-left: calc(17 / var(--design-width) * 100vw);
        padding-right: 0;
        width: 96.5925925926%;
    }
}
.c-box-business--4 .c-box-business__inner {
    width: 650px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__inner {
        width: 100.157480315%;
    }
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__inner::before {
        top: calc(-30 / var(--design-width) * 100vw);
        right: -2.5157232704%;
        background-image: url(../img/sp/img_decoration_09.png);
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 5.0314465409%;
        height: calc(60 / var(--design-width) * 100vw);
    }
}
.c-box-business--4 .c-box-business__inner::after {
    bottom: -37px;
    left: -16px;
    background: url(../img/img_decoration_13.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 32px;
    height: 52px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__inner::after {
        bottom: calc(-15 / var(--design-width) * 100vw);
        left: -2.5157232704%;
        background-image: url(../img/sp/img_decoration_10.png);
        width: 5.0314465409%;
        height: calc(60 / var(--design-width) * 100vw);
    }
}
.c-box-business--4 .c-box-business__ttl {
    right: 0;
    width: 277px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__ttl {
        right: auto;
        left: 0;
        width: calc(399 / var(--design-width) * 100vw);
    }
}
.c-box-business--4 .c-box-business__ttl::before {
    top: -38px;
    right: -55px;
    background: url(../img/img_decoration_12.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 64px;
    height: 104px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__ttl::before {
        display: none;
    }
}
.c-box-business--4 .c-box-business__txt {
    margin-right: 3px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__txt {
        margin-right: 0;
    }
}
.c-box-business--4 .c-box-business__link {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .c-box-business--4 .c-box-business__link {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-box-job
--------------------------------------------- */
.c-box-job {
    border: 2px solid var(--color-primary-1);
    height: 100%;
}
.c-box-job__head {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-primary-1);
    height: 83px;
}
@media screen and (max-width: 767px) {
    .c-box-job__head {
        height: calc(99 / var(--design-width) * 100vw);
    }
}
.c-box-job__head-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-left: 2px solid var(--color-primary-1);
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .c-box-job__head-wrap {
        flex-direction: row;
    }
}
.c-box-job__num, .c-box-job__ttl, .c-box-job__sub-ttl {
    color: var(--color-primary-1);
}
.c-box-job__num {
    display: grid;
    place-content: center;
    padding-inline: 20px;
    font-size: calc(34 / var(--root-fz) * 1rem);
    line-height: 1;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .c-box-job__num {
        padding-inline: 5.8544303797%;
        font-size: calc(40 / var(--design-width) * 100vw);
        font-weight: 500;
    }
}
.c-box-job__ttl {
    display: block;
    font-size: calc(30 / var(--root-fz) * 1rem);
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-box-job__ttl {
        font-size: calc(38 / var(--design-width) * 100vw);
        font-weight: 500;
    }
}
@media screen and (max-width: 767px) {
    .android .c-box-job__ttl {
        font-weight: 600;
    }
}

.c-box-job__sub-ttl {
    display: block;
    margin-top: 6px;
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-box-job__sub-ttl {
        margin-top: 0;
        margin-left: 1.9569471624%;
        font-size: calc(23 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .android .c-box-job__sub-ttl {
        font-weight: 600;
    }
}

.c-box-job__txt {
    padding: 19px 32px 21px 33px;
    font-size: calc(15 / var(--root-fz) * 1rem);
    font-weight: 400;
    text-align: justify;
}
@media screen and (max-width: 767px) {
    .c-box-job__txt {
        padding: calc(32 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw) calc(41 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-box-job--1 .c-box-job__ttl {
    letter-spacing: 0.26em;
}
.c-box-job--1 .c-box-job__txt {
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .c-box-job--1 .c-box-job__txt {
        line-height: 1.5714285714;
        letter-spacing: 0.037em;
    }
}
.c-box-job--2 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
@media screen and (max-width: 767px) {
    .c-box-job--2 .c-box-job__sub-ttl {
        margin-top: calc(12 / var(--design-width) * 100vw);
        letter-spacing: 0.07em;
    }
}
.c-box-job--2 .c-box-job__txt {
    line-height: 2;
    letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
    .c-box-job--2 .c-box-job__txt {
        line-height: 1.6071428571;
        letter-spacing: 0.08em;
    }
}
.c-box-job--3 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
@media screen and (max-width: 767px) {
    .c-box-job--3 .c-box-job__sub-ttl {
        margin-top: calc(12 / var(--design-width) * 100vw);
        letter-spacing: 0.01em;
    }
}
.c-box-job--3 .c-box-job__txt {
    line-height: 2;
    letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
    .c-box-job--3 .c-box-job__txt {
        line-height: 1.6071428571;
        letter-spacing: 0.08em;
    }
}
.c-box-job--4 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
@media screen and (max-width: 767px) {
    .c-box-job--4 .c-box-job__sub-ttl {
        margin-top: calc(12 / var(--design-width) * 100vw);
        margin-left: 1.1741682975%;
        letter-spacing: 0.01em;
    }
}
.c-box-job--4 .c-box-job__txt {
    line-height: 2;
    letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
    .c-box-job--4 .c-box-job__txt {
        line-height: 1.6071428571;
        letter-spacing: 0.08em;
    }
}
.c-box-job--5 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
.c-box-job--5 .c-box-job__txt {
    line-height: 1.8666666667;
    letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
    .c-box-job--5 .c-box-job__txt {
        line-height: 1.6071428571;
        letter-spacing: 0.08em;
    }
}
.c-box-job--6 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
.c-box-job--6 .c-box-job__txt {
    line-height: 2;
    letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
    .c-box-job--6 .c-box-job__txt {
        line-height: 1.6428571429;
        letter-spacing: 0.12em;
    }
}
.c-box-job--7 .c-box-job__ttl {
    letter-spacing: 0.19em;
}
.c-box-job--7 .c-box-job__txt {
    line-height: 2;
    letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
    .c-box-job--7 .c-box-job__txt {
        line-height: 1.6428571429;
        letter-spacing: 0.12em;
    }
}

/* ---------------------------------------------
*   c-box-point
--------------------------------------------- */
.c-box-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--color-primary-1);
    width: 100%;
    height: 90.8088235294%;
}
.c-box-point__heading {
    display: block;
    margin-top: 33px;
    text-align: center;
    font-size: calc(22 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1.4090909091;
    letter-spacing: 0.15em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-point__heading {
        margin-top: calc(31 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
        letter-spacing: 0.1em;
    }
}
.c-box-point__txt {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: calc(15 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.11em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-box-point__txt {
        margin-top: calc(10 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
        line-height: 1.4038461538;
        letter-spacing: 0.05em;
    }
}
.c-box-point--1 .c-box-point__img {
    margin-top: 22px;
    margin-right: -12px;
    width: 93px;
    height: 56px;
}
@media screen and (max-width: 767px) {
    .c-box-point--1 .c-box-point__img {
        margin-top: calc(15 / var(--design-width) * 100vw);
        margin-right: -1.2658227848%;
        width: 43.9873417722%;
        height: calc(85 / var(--design-width) * 100vw);
    }
}
.c-box-point--1 .c-box-point__img img {
    width: 100%;
    height: auto;
}
.c-box-point--2 .c-box-point__img {
    margin-top: 22px;
    width: 90px;
    height: 60px;
}
@media screen and (max-width: 767px) {
    .c-box-point--2 .c-box-point__img {
        margin-top: calc(18 / var(--design-width) * 100vw);
        margin-left: 0.3164556962%;
        width: 40.8227848101%;
        height: calc(90 / var(--design-width) * 100vw);
    }
}
.c-box-point--2 .c-box-point__img img {
    width: 100%;
    height: auto;
}
.c-box-point--3 .c-box-point__img {
    margin-top: 21px;
    width: 86px;
    height: 67px;
}
@media screen and (max-width: 767px) {
    .c-box-point--3 .c-box-point__img {
        margin-top: calc(12 / var(--design-width) * 100vw);
        width: 41.1392405063%;
        height: calc(100 / var(--design-width) * 100vw);
    }
}
.c-box-point--3 .c-box-point__img img {
    width: 100%;
    height: auto;
}
.c-box-point--4 .c-box-point__img {
    margin-top: 19px;
    width: 90px;
    height: 79px;
}
@media screen and (max-width: 767px) {
    .c-box-point--4 .c-box-point__img {
        margin-top: calc(18 / var(--design-width) * 100vw);
        margin-left: 0.6329113924%;
        width: 31.9620253165%;
        height: calc(88 / var(--design-width) * 100vw);
    }
}
.c-box-point--4 .c-box-point__img img {
    width: 100%;
    height: auto;
}
.c-box-point--5 .c-box-point__img {
    margin-top: 16px;
    margin-left: -10px;
    width: 98px;
    height: 76px;
}
@media screen and (max-width: 767px) {
    .c-box-point--5 .c-box-point__img {
        margin-top: calc(16 / var(--design-width) * 100vw);
        margin-left: -4.746835443%;
        width: 38.6075949367%;
        height: calc(94 / var(--design-width) * 100vw);
    }
}
.c-box-point--5 .c-box-point__img img {
    width: 100%;
    height: auto;
}
.c-box-point--6 .c-box-point__img {
    margin-top: 17px;
    margin-left: -6px;
    width: 72px;
    height: 76px;
}
@media screen and (max-width: 767px) {
    .c-box-point--6 .c-box-point__img {
        margin-top: calc(24 / var(--design-width) * 100vw);
        margin-left: 0.3164556962%;
        width: 25.6329113924%;
        height: calc(85 / var(--design-width) * 100vw);
    }
}
.c-box-point--6 .c-box-point__img img {
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   c-btn-01
--------------------------------------------- */
.c-btn-01 {
    position: relative;
    display: flex;
    align-items: center;
    width: 475px;
    height: 65px;
    transition: transform 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
    .c-btn-01 {
        width: 88.1481481481%;
        height: calc(90 / var(--design-width) * 100vw);
    }
}
.c-btn-01::after {
    position: absolute;
    top: 50%;
    right: 37px;
    transform: translateY(-50%);
    content: "";
    -webkit-mask: url(../img/ico_arrow_01.svg) center center no-repeat;
            mask: url(../img/ico_arrow_01.svg) center center no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    width: 44px;
    height: 44px;
}
@media screen and (max-width: 767px) {
    .c-btn-01::after {
        -webkit-mask-size: 99% auto;
                mask-size: 99% auto;
        right: calc(37 / var(--design-width) * 100vw);
        width: calc(58 / var(--design-width) * 100vw);
        height: calc(58 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-01:hover {
        transform: translate(7px, 7px);
        box-shadow: 0 0 0 0 var(--color-shadow-1);
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-btn-01:hover {
        transform: translate(calc(10 / var(--design-width) * 100vw), calc(10 / var(--design-width) * 100vw));
    }
}
.c-btn-01__txt {
    font-size: calc(27 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
    .c-btn-01__txt {
        font-size: calc(40 / var(--design-width) * 100vw);
        font-weight: 500;
        letter-spacing: 0.09em;
    }
}
.c-btn-01__txt span {
    font-size: calc(30 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .c-btn-01__txt span {
        font-size: calc(40 / var(--design-width) * 100vw);
        letter-spacing: 0.09em;
    }
}
.iphone .c-btn-01__txt {
    font-weight: 500;
}

.android .c-btn-01__txt {
    font-weight: 500;
}

.c-btn-01--white {
    background-color: var(--color-white-1);
    box-shadow: 7px 7px 0 0 var(--color-shadow-1);
}
@media screen and (max-width: 767px) {
    .c-btn-01--white {
        box-shadow: calc(10 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) 0 0 var(--color-shadow-1);
    }
}
.c-btn-01--white::after {
    background-color: var(--color-primary-1);
}
.c-btn-01--white .c-btn-01__txt {
    margin-left: 140px;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-btn-01--white .c-btn-01__txt {
        margin-left: 5.7142857143%;
    }
}
.c-btn-01--blue {
    background-color: var(--color-primary-1);
    box-shadow: 7px 7px 0 0 var(--color-shadow-2);
}
@media screen and (max-width: 767px) {
    .c-btn-01--blue {
        box-shadow: calc(10 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) 0 0 var(--color-shadow-2);
    }
}
.c-btn-01--blue::after {
    background-color: var(--color-white-1);
}
.c-btn-01--blue .c-btn-01__txt {
    margin-left: 52px;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-btn-01--blue .c-btn-01__txt {
        margin-left: 5.7142857143%;
    }
}
.c-btn-01--large {
    width: 718px;
    height: 86px;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large {
        width: 88.1481481481%;
        height: calc(90 / var(--design-width) * 100vw);
    }
}
.c-btn-01--large::after {
    right: 67px;
    width: 50px;
    height: 50px;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large::after {
        -webkit-mask-size: 99% auto;
                mask-size: 99% auto;
        right: calc(37 / var(--design-width) * 100vw);
        width: calc(58 / var(--design-width) * 100vw);
        height: calc(58 / var(--design-width) * 100vw);
    }
}
.c-btn-01--large .c-btn-01__txt {
    font-size: calc(37 / var(--root-fz) * 1rem);
    letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large .c-btn-01__txt {
        font-size: calc(40 / var(--design-width) * 100vw);
        letter-spacing: 0.09em;
    }
}
.c-btn-01--large .c-btn-01__txt span {
    font-size: calc(37 / var(--root-fz) * 1rem);
    letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large .c-btn-01__txt span {
        font-size: calc(40 / var(--design-width) * 100vw);
        letter-spacing: 0.09em;
    }
}
.c-btn-01--large.c-btn-01--blue .c-btn-01__txt {
    margin-left: 103px;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large.c-btn-01--blue .c-btn-01__txt {
        margin-left: 5.7142857143%;
    }
}
.c-btn-01--large.c-btn-01--white .c-btn-01__txt {
    margin-left: 103px;
    letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
    .c-btn-01--large.c-btn-01--white .c-btn-01__txt {
        margin-left: 5.7142857143%;
        letter-spacing: 0.09em;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv__img img {
    width: 100%;
    height: auto;
}
.c-kv__cta {
    padding-block: 31px 40px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    background-color: var(--color-bg-2);
}
@media screen and (max-width: 767px) {
    .c-kv__cta {
        padding-block: calc(63 / var(--design-width) * 100vw) calc(71 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
}
.c-kv__cta-inner {
    margin-inline: auto;
    max-width: calc(var(--contents-width) * 1px);
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
}
@media screen and (max-width: 1100px) {
    .c-kv__cta-inner {
        flex-direction: column-reverse;
        row-gap: 40px;
    }
}
@media screen and (max-width: 767px) {
    .c-kv__cta-inner {
        row-gap: calc(36 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list-job
--------------------------------------------- */
.c-list-job {
    display: grid;
    grid-template-columns: repeat(2, 414px);
    grid-template-rows: repeat(4, 316px);
    gap: 33px 30px;
}
@media screen and (max-width: 920px) {
    .c-list-job {
        grid-template-columns: repeat(1, 414px);
        grid-template-rows: repeat(7, 316px);
    }
}
@media screen and (max-width: 767px) {
    .c-list-job {
        justify-content: center;
        grid-template-columns: repeat(1, 94.2222222222%);
        grid-template-rows: repeat(7, calc(480 / var(--design-width) * 100vw));
        gap: calc(40 / var(--design-width) * 100vw) 0;
    }
}

/* ---------------------------------------------
*   c-list-point
--------------------------------------------- */
.c-list-point {
    display: grid;
    grid-template-columns: repeat(3, 270px);
    grid-template-rows: repeat(2, 275px);
    gap: 44px 21px;
}
@media screen and (max-width: 920px) {
    .c-list-point {
        grid-template-columns: repeat(2, 270px);
        grid-template-rows: repeat(3, 275px);
    }
}
@media screen and (max-width: 767px) {
    .c-list-point {
        grid-template-columns: repeat(2, 47.5555555556%);
        grid-template-rows: repeat(3, calc(330 / var(--design-width) * 100vw));
        gap: calc(29 / var(--design-width) * 100vw) 4.7548291233%;
    }
}
.c-list-point__item-ttl {
    display: block;
    margin-bottom: 10px;
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-list-point__item-ttl {
        margin-bottom: calc(-2 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
        line-height: 1.75;
    }
}

/* ---------------------------------------------
*   c-modal
--------------------------------------------- */
/*  c-modal
--------------------------------------------- */
.c-modal {
    display: none;
}
.c-modal.is-open {
    display: block;
}
.c-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
}
.c-modal__inner {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(89, 87, 87, 0.8);
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-modal__inner {
        padding-inline: 0;
    }
}
.c-modal__container {
    position: relative;
    width: min(100%, 1000px);
    max-height: 100vh;
    box-sizing: border-box;
    padding: 21px 10px 36px;
    background-color: var(--color-primary-1);
}
@media screen and (max-width: 1040px) {
    .c-modal__container {
        padding: 2.0192307692vw 10px 3.4615384615vw;
    }
}
@media screen and (max-width: 767px) {
    .c-modal__container {
        padding: calc(10 / var(--design-width) * 100vw) 1.3333333333% calc(40 / var(--design-width) * 100vw);
        width: 100%;
    }
}
.c-modal__close-btn {
    position: absolute;
    top: -12px;
    right: -16px;
    border-radius: 50%;
    background-color: var(--color-white-1);
    width: 34px;
    height: 34px;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-modal__close-btn {
        transition: opacity 0.3s;
    }
    .c-modal__close-btn:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .c-modal__close-btn {
        top: calc(-45 / var(--design-width) * 100vw);
        right: 1.5068493151%;
        width: calc(34 / var(--design-width) * 100vw);
        height: calc(34 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn::before, .c-modal__close-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    content: "";
    width: 21px;
    height: 1px;
    background-color: #898989;
}
@media screen and (max-width: 767px) {
    .c-modal__close-btn::before, .c-modal__close-btn::after {
        width: calc(21 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__ttl {
    margin-top: 24px;
    text-align: center;
    font-size: calc(23 / var(--root-fz) * 1rem);
    font-weight: 500;
    line-height: 1.0926086957;
    letter-spacing: 0.08em;
    color: var(--color-white-1);
}
@media screen and (max-width: 1040px) {
    .c-modal__ttl {
        margin-top: 2.3076923077vw;
    }
}
@media screen and (max-width: 767px) {
    .c-modal__ttl {
        margin-top: 0;
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.1113333333;
    }
}
.c-modal__ttl strong {
    font-size: calc(45 / var(--root-fz) * 1rem);
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .c-modal__ttl strong {
        font-size: calc(60 / var(--design-width) * 100vw);
        letter-spacing: 0.02em;
    }
}
.c-modal__ttl--2 {
    letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
    .c-modal__ttl--2 {
        margin-top: calc(28 / var(--design-width) * 100vw);
    }
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal[aria-hidden=false] .c-modal__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-modal__container {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__container {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal__overlay, .c-modal__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* ---------------------------------------------
*   c-movie
--------------------------------------------- */
.c-movie {
    margin-top: 18px;
    margin-inline: auto;
    width: 711px;
    aspect-ratio: 711/400;
}
@media screen and (max-width: 767px) {
    .c-movie {
        margin-top: calc(18 / var(--design-width) * 100vw);
        width: 88.3561643836%;
    }
}
.c-movie iframe {
    width: 100%;
    height: 100%;
}

/* ---------------------------------------------
*   c-section-01
--------------------------------------------- */
.c-section-01 {
    position: relative;
    padding-block: 107px 235px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    background-image: url(../img/img_heading_01.jpg);
    background-position: 0.1388888889% calc(-252 / var(--design-width) * 100vw);
    background-repeat: no-repeat;
    background-size: 103.9583333333% auto;
    z-index: 1;
}
@media screen and (min-width: 1025px) {
    .c-section-01 {
        padding-block: 107px calc(235 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .c-section-01 {
        padding-block: calc(230 / var(--design-width) * 100vw) calc(252 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
        background-position: 83.4074074074% calc(-283 / var(--design-width) * 100vw);
        background-size: 160% auto;
    }
}
.c-section-01::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-1) 49.853%, transparent 100%);
}
@media screen and (max-width: 767px) {
    .c-section-01::after {
        background: linear-gradient(0deg, var(--color-primary-1) 59.6%, transparent 100%);
    }
}
.c-section-01__inner {
    position: relative;
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
    height: 347px;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-section-01__inner {
        height: auto;
    }
}
.c-section-01__inner::before {
    position: absolute;
    top: -26px;
    left: 0;
    content: "";
    display: block;
    background: url(../img/img_decoration_01.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 96px;
    height: 303px;
}
@media screen and (max-width: 767px) {
    .c-section-01__inner::before {
        top: calc(-255 / var(--design-width) * 100vw);
        left: -0.2962962963%;
        background-image: url(../img/sp/img_decoration_01.png);
        width: 9.4814814815%;
        height: calc(205 / var(--design-width) * 100vw);
    }
}
.c-section-01__ttl {
    margin-left: 159px;
}
@media screen and (max-width: 767px) {
    .c-section-01__ttl {
        margin-left: 8%;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-section-01__ttl {
        margin-left: 7.1111111111%;
    }
}

.c-section-01__txt {
    margin-top: 16px;
    margin-left: 156px;
}
@media screen and (max-width: 767px) {
    .c-section-01__txt {
        margin-top: calc(20 / var(--design-width) * 100vw);
        margin-left: 8.2962962963%;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-section-01__txt {
        margin-left: 7.4074074074%;
    }
}

/* ---------------------------------------------
*   c-section-02
--------------------------------------------- */
.c-section-02 {
    margin-top: -235px;
    position: relative;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    padding-block: 233px 120px;
    z-index: 1;
}
@media screen and (min-width: 1025px) {
    .c-section-02 {
        margin-top: calc(-235 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .c-section-02 {
        margin-top: calc(-122 / var(--design-width) * 100vw);
        padding-block: calc(233 / var(--design-width) * 100vw) calc(92 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-02::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    width: 170%;
    aspect-ratio: 1;
    border-radius: 50% 50% 0 0;
    background-color: var(--color-bg-2);
}
.c-section-02::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background-color: var(--color-bg-2);
}
.c-section-02__inner {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    padding-top: 38px;
    z-index: 1;
}
.c-section-02__inner::before, .c-section-02__inner::after {
    position: absolute;
    content: "";
    display: block;
}
.c-section-02__inner::before {
    top: -185px;
    right: 14px;
    width: 64px;
    height: 245px;
    background: url(../img/img_decoration_02.png) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 767px) {
    .c-section-02__inner::before {
        top: calc(-327 / var(--design-width) * 100vw);
        right: 0;
        background-image: url(../img/sp/img_decoration_02.png);
        width: 9.4814814815%;
        height: calc(198 / var(--design-width) * 100vw);
    }
}
.c-section-02__inner::after {
    top: 691px;
    left: 16px;
    width: 64px;
    height: 238px;
    background: url(../img/img_decoration_03.png) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 767px) {
    .c-section-02__inner::after {
        display: none;
    }
}
.c-section-02__wrap {
    position: relative;
    margin-top: -118px;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-section-02__wrap {
        margin-top: -49px;
        width: 72.5925925926%;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-section-02__wrap {
        width: 75.5555555556%;
    }
}

@media screen and (max-width: 767px) {
    .windows.chrome .c-section-02__wrap {
        width: 74.0740740741%;
    }
}

.c-section-02__label {
    position: absolute;
    top: -30px;
    left: 20px;
    display: block;
    padding-top: 14px;
    padding-left: 21px;
    background-color: var(--color-primary-1);
    text-align: center;
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 1;
    letter-spacing: 0.085em;
    color: var(--color-white-1);
    width: 280px;
    height: 38px;
}
@media screen and (max-width: 767px) {
    .c-section-02__label {
        top: calc(-71 / var(--design-width) * 100vw);
        left: calc(1 / var(--design-width) * 100vw);
        padding: calc(22 / var(--design-width) * 100vw) calc(12 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) calc(37 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
        letter-spacing: 0.1em;
        width: 100%;
        height: calc(66 / var(--design-width) * 100vw);
    }
}
.c-section-02__label::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 9px 0 9px;
    border-color: var(--color-primary-1) transparent transparent transparent;
}
@media screen and (max-width: 767px) {
    .c-section-02__label::after {
        bottom: calc(-20 / var(--design-width) * 100vw);
        border-width: calc(30 / var(--design-width) * 100vw) calc(15 / var(--design-width) * 100vw) 0 calc(15 / var(--design-width) * 100vw);
    }
}
.c-section-02__label strong {
    position: absolute;
    top: 44%;
    left: 10px;
    transform: translateY(-50%);
    font-size: calc(30 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-section-02__label strong {
        top: 47%;
        left: 4.0816326531%;
        font-size: calc(40 / var(--design-width) * 100vw);
        letter-spacing: 0.02em;
    }
}
.edge .c-section-02__label strong {
    left: 4.1176470588%;
}

.windows.chrome .c-section-02__label strong {
    left: 3%;
}

.c-section-02__ttl {
    margin-left: 2px;
    letter-spacing: 0.03em !important;
}
@media screen and (max-width: 767px) {
    .c-section-02__ttl {
        margin-left: 0;
    }
}

/* ---------------------------------------------
*   c-section-03
--------------------------------------------- */
.c-section-03 {
    position: relative;
    background-color: var(--color-primary-1);
    z-index: 1;
}
.c-section-03__inner {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-03__head {
    height: 322px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-section-03__head {
        height: auto;
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
}
.c-section-03__head-inner {
    position: relative;
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-03__head-img {
    position: relative;
    margin-inline: auto calc(50% - 50vw);
    width: max(60.2777777778vw, 868px);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-section-03__head-img {
        margin-inline: calc(50% - 50vw);
        width: 111.1111111111%;
    }
}
.c-section-03__head-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-section-03__head-img::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-1) 0%, transparent 79.9%);
}
.c-section-03__head-txt-area {
    position: absolute;
    top: 82px;
    left: 101px;
}
@media screen and (max-width: 767px) {
    .c-section-03__head-txt-area {
        position: static;
    }
}
.c-section-03__ttl {
    letter-spacing: 0.03em !important;
}
@media screen and (max-width: 767px) {
    .c-section-03__ttl {
        margin-top: calc(11 / var(--design-width) * 100vw);
        margin-left: -2.962962963%;
        letter-spacing: 0.029em !important;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-section-03__ttl {
        margin-left: -1.6296296296%;
    }
}

@media screen and (max-width: 767px) {
    .windows.chrome .c-section-03__ttl {
        margin-left: -1.6296296296%;
    }
}

.c-section-03__txt {
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .c-section-03__txt {
        margin-top: calc(-3 / var(--design-width) * 100vw);
        margin-left: -0.2962962963%;
        padding-inline: 9.037037037%;
        text-align: justify;
    }
}
@media screen and (max-width: 767px) {
    .edge .c-section-03__txt {
        margin-left: 0;
        padding-inline: 8.5925925926%;
    }
}

@media screen and (max-width: 767px) {
    .windows.chrome .c-section-03__txt {
        margin-left: 0;
        padding-inline: 8.5925925926%;
    }
}

.c-section-03__body {
    padding-block: 76px 93px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
}
@media screen and (max-width: 767px) {
    .c-section-03__body {
        padding-block: calc(61 / var(--design-width) * 100vw) calc(84 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-03__wrap {
    display: flex;
}
.c-section-03__wrap:nth-of-type(odd) {
    justify-content: flex-start;
}
.c-section-03__wrap:nth-of-type(even) {
    justify-content: flex-end;
}
@media screen and (max-width: 767px) {
    .c-section-03__wrap:nth-of-type(even) {
        justify-content: flex-start;
    }
}
.c-section-03__foot {
    padding-inline: calc(var(--contents-side-padding) * 1px);
    padding-block: 61px 70px;
    background-color: var(--color-bg-2);
}
@media screen and (max-width: 767px) {
    .c-section-03__foot {
        padding-block: calc(47 / var(--design-width) * 100vw) calc(57 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-03__foot-inner {
    margin-inline: auto;
    max-width: calc(var(--contents-width) * 1px);
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
}
@media screen and (max-width: 1100px) {
    .c-section-03__foot-inner {
        flex-direction: column-reverse;
        row-gap: 40px;
    }
}
@media screen and (max-width: 767px) {
    .c-section-03__foot-inner {
        row-gap: calc(37 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-04
--------------------------------------------- */
.c-section-04 {
    position: relative;
    padding-block: 80px 110px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    background-color: var(--color-bg-1);
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-section-04 {
        padding-block: calc(62 / var(--design-width) * 100vw) calc(108 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-04__inner {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-04__ttl {
    position: relative;
    margin-inline: auto;
    text-align: center;
    letter-spacing: 0.029em !important;
    width: 810px;
}
.c-section-04__ttl::before {
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    display: block;
    background: url(../img/img_decoration_14.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 92px;
}
@media screen and (max-width: 767px) {
    .c-section-04__ttl::before {
        top: calc(19 / var(--design-width) * 100vw);
        left: calc(-1 / var(--design-width) * 100vw);
        background-image: url(../img/sp/img_decoration_11.png);
        height: calc(130 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 920px) {
    .c-section-04__ttl {
        font-size: calc(55 / var(--root-fz) * 1rem) !important;
        width: 718px;
    }
}
@media screen and (max-width: 767px) {
    .c-section-04__ttl {
        margin-left: -2.2222222222%;
        font-size: calc(70 / var(--design-width) * 100vw) !important;
        line-height: 1.1285714286 !important;
        width: calc(707 / var(--design-width) * 100vw);
    }
}
.c-section-04__list {
    margin-top: 49px;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-section-04__list {
        margin-top: calc(63 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-05
--------------------------------------------- */
.c-section-05 {
    padding-block: 68px 100px;
    background-color: var(--color-bg-2);
}
@media screen and (max-width: 767px) {
    .c-section-05 {
        padding-block: calc(42 / var(--design-width) * 100vw) calc(59 / var(--design-width) * 100vw);
    }
}
.c-section-05__inner {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-05__ttl {
    position: relative;
    margin-inline: auto;
    text-align: center;
    letter-spacing: 0.029em;
    width: 486px;
}
@media screen and (max-width: 767px) {
    .c-section-05__ttl {
        width: calc(486 / var(--design-width) * 100vw);
    }
}
.c-section-05__ttl::before {
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    display: block;
    background: url(../img/img_decoration_15.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .c-section-05__ttl::before {
        top: calc(18 / var(--design-width) * 100vw);
        background-image: url(../img/sp/img_decoration_12.png);
    }
}

/* ---------------------------------------------
*   c-section-06
--------------------------------------------- */
.c-section-06 {
    position: relative;
    padding-block: 110px 144px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    background-color: var(--color-bg-1);
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-section-06 {
        padding-block: calc(45 / var(--design-width) * 100vw) calc(83 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-06__inner {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-06__ttl {
    position: relative;
    margin-inline: auto;
    text-align: center;
    width: 830px;
}
@media screen and (max-width: 920px) {
    .c-section-06__ttl {
        font-size: calc(48 / var(--root-fz) * 1rem) !important;
        width: 718px;
    }
}
@media screen and (max-width: 767px) {
    .c-section-06__ttl {
        font-size: calc(70 / var(--design-width) * 100vw) !important;
        line-height: 1.1571428571 !important;
        letter-spacing: 0.03em;
        width: 98.2222222222%;
    }
}
.c-section-06__ttl::before {
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
    display: block;
    background: url(../img/img_decoration_16.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .c-section-06__ttl::before {
        top: calc(21 / var(--design-width) * 100vw);
        background-image: url(../img/sp/img_decoration_13.png);
    }
}
.c-section-06__list {
    margin-top: 66px;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-section-06__list {
        margin-top: calc(24 / var(--design-width) * 100vw);
        width: 99.7037037037%;
    }
}

/* ---------------------------------------------
*   c-section-07
--------------------------------------------- */
.c-section-07 {
    padding-block: 48px 77px;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    background-color: var(--color-bg-2);
}
@media screen and (max-width: 767px) {
    .c-section-07 {
        padding-block: calc(22 / var(--design-width) * 100vw) calc(98 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100%);
    }
}
.c-section-07__inner {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
}
.c-section-07__ttl {
    width: 718px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .c-section-07__ttl {
        padding-left: 9.6296296296%;
        width: 100%;
    }
}
.c-section-07__txt {
    margin-top: 5px;
    margin-inline: auto;
    width: 718px;
}
@media screen and (max-width: 767px) {
    .c-section-07__txt {
        margin-top: calc(4 / var(--design-width) * 100vw);
        padding-left: 9.4814814815%;
        padding-right: 9.1851851852%;
        text-align: justify;
        font-size: calc(28 / var(--design-width) * 100vw) !important;
        line-height: 1.5960714286 !important;
        letter-spacing: 0.07em !important;
        width: 100%;
    }
}
.edge .c-section-07__txt {
    letter-spacing: 0.05em !important;
}

.windows.chrome .c-section-07__txt {
    letter-spacing: 0.05em !important;
}

.c-section-07__btn {
    margin-inline: auto;
}
.c-section-07__btn:first-of-type {
    margin-top: 27px;
}
@media screen and (max-width: 767px) {
    .c-section-07__btn:first-of-type {
        margin-top: calc(37 / var(--design-width) * 100vw);
    }
}
.c-section-07__btn + .c-section-07__btn {
    margin-top: 41px;
}
@media screen and (max-width: 767px) {
    .c-section-07__btn + .c-section-07__btn {
        margin-top: calc(36 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
.c-slider {
    margin-top: 50px;
    margin-inline: calc(50% - 50vw);
    padding-block: 95px 52px;
    background-color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-slider {
        margin-top: calc(19 / var(--design-width) * 100vw);
        padding-block: calc(49 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw);
    }
}
.c-slider__wrapper {
    position: relative;
}
.c-slider .splide__slide {
    transform: translate3d(0, 0, 0);
    width: calc(836 / var(--design-width) * 100vw) !important;
}
@media screen and (max-width: 767px) {
    .c-slider .splide__slide {
        width: calc(549 / var(--design-width) * 100vw) !important;
    }
}
.c-slider .splide__arrow {
    position: absolute;
    top: 45.2%;
    z-index: 1;
    translate: 0 -50%;
    display: grid;
    place-items: center;
    width: calc(83 / var(--design-width) * 100vw);
    height: calc(83 / var(--design-width) * 100vw);
    touch-action: manipulation;
    cursor: pointer;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: calc(5 / var(--design-width) * 100vw) calc(5 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) rgba(58, 58, 58, 0.4);
}
@media (hover: hover) and (pointer: fine) {
    .c-slider .splide__arrow {
        transition: opacity 0.3s;
    }
    .c-slider .splide__arrow:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 767px) {
    .c-slider .splide__arrow {
        top: 44%;
        width: calc(70 / var(--design-width) * 100vw);
        height: calc(70 / var(--design-width) * 100vw);
    }
}
.c-slider .splide__arrow:focus-visible {
    outline: 3px solid #b4e900;
    outline-offset: 3px;
}
.c-slider .splide__arrow--prev {
    left: 16.4583333333%;
}
@media screen and (max-width: 767px) {
    .c-slider .splide__arrow--prev {
        left: 6.1333333333%;
    }
}
.c-slider .splide__arrow--next {
    right: 16.4583333333%;
}
@media screen and (max-width: 767px) {
    .c-slider .splide__arrow--next {
        right: 6.1333333333%;
    }
}
.c-slider .splide__arrow--next::before {
    transform: rotate(180deg);
}
.c-slider .splide__arrow::before {
    content: "";
    width: calc(18 / var(--design-width) * 100vw);
    height: calc(21 / var(--design-width) * 100vw);
    background: url(../img/ico_arrow_02.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
.c-slider__img {
    position: relative;
    width: 100%;
}
.c-slider__img::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
    border-radius: calc(6 / var(--design-width) * 100vw);
}
.c-slider__img img {
    width: 100%;
    height: auto;
}
.splide__slide.is-active .c-slider__img::before {
    opacity: 0;
    visibility: hidden;
}

.c-slider__txt {
    margin-top: 19px;
    display: block;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.13em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-slider__txt {
        margin-top: calc(16 / var(--design-width) * 100vw);
        font-size: calc(22 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-01
--------------------------------------------- */
.c-ttl-01 {
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-ttl-01 {
        font-size: calc(70 / var(--design-width) * 100vw);
        line-height: 1.75;
        letter-spacing: 0.029em;
    }
}

/* ---------------------------------------------
*   c-ttl-02
--------------------------------------------- */
.c-ttl-02 {
    font-size: calc(60 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.019em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-ttl-02 {
        text-align: center;
        font-size: calc(70 / var(--design-width) * 100vw);
        line-height: 1.75;
        letter-spacing: 0.01em;
    }
}
.c-ttl-02--white {
    color: var(--color-white-1);
}

/* ---------------------------------------------
*   c-ttl-03
--------------------------------------------- */
.c-ttl-03 {
    font-size: calc(55 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: var(--color-primary-1);
}
.c-ttl-03--white {
    color: var(--color-white-1);
}

/* ---------------------------------------------
*   c-ttl-04
--------------------------------------------- */
.c-ttl-04 {
    font-size: calc(50 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.12em;
    color: var(--color-primary-1);
}
@media screen and (max-width: 767px) {
    .c-ttl-04 {
        font-size: calc(70 / var(--design-width) * 100vw);
        line-height: 1.75;
    }
}

/* ---------------------------------------------
*   c-txt-01
--------------------------------------------- */
.c-txt-01 {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 2.3125;
    letter-spacing: 0.19em;
    color: var(--color-white-1);
}
@media screen and (max-width: 767px) {
    .c-txt-01 {
        font-size: calc(30 / var(--design-width) * 100vw);
        line-height: 1.9666666667;
        letter-spacing: 0.16em;
    }
}
.c-txt-01--blue {
    color: var(--color-primary-1);
}

/* ---------------------------------------------
*   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-pagetop-threshold
--------------------------------------------- */
.js-pagetop-threshold {
    position: absolute;
    top: 0;
    height: 300px;
}

@media print and (min-width: 768px), screen and (min-width: 768px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 767px), screen and (max-width: 767px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}