@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
.l-wrapper {
    background-color: var(--color-bg-1);
    overflow: clip;
}
.is-menu-opened .l-wrapper {
    overflow: hidden;
    scrollbar-gutter: stable;
}

/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    height: calc(var(--fixed-header-height) * 1px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*  l-header-nav
    --------------------------------------------- */
    /*  l-header-menu
    --------------------------------------------- */
    /*  l-header-menu-button
    --------------------------------------------- */
    /*  l-header-sns-list
    --------------------------------------------- */
}
.l-header__container {
    height: 100%;
}
.l-header__logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
@media screen and (max-width: 768px) {
    .l-header__logo {
        width: calc(150 / var(--design-width) * 100vw);
        aspect-ratio: 1/1;
    }
}
.l-header__logo-link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-header__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header .l-header-nav {
    padding-top: 40px;
    padding-right: 110px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-nav {
        display: none;
    }
}
.l-header.is-blended .l-header-nav {
    mix-blend-mode: difference;
    animation: fadeBlendIn 1s -0.5s forwards;
}

.l-header.is-unblend .l-header-nav {
    mix-blend-mode: normal;
    animation: fadeBlendOut 1s -0.5s forwards;
}

.l-header .l-header-nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.l-header .l-header-nav__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-nav__link {
        transition: opacity var(--hover-duration);
    }
    .l-header .l-header-nav__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header .l-header-nav__link img {
    display: block;
}
.l-header .l-header-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overscroll-behavior-y: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    scrollbar-width: none;
    z-index: 120;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu {
        width: 100%;
    }
}
.l-header .l-header-menu::-webkit-scrollbar {
    display: none;
}
.is-menu-opened .l-header .l-header-menu {
    opacity: 1;
    visibility: visible;
}

.l-header .l-header-menu__container {
    overflow-y: auto;
    height: calc(100% + 1px);
    padding: 100px 72px;
    display: grid;
    place-items: center;
    background-color: rgba(var(--color-base-1-rgb), 0.95);
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__container {
        padding: calc(160 / var(--design-width) * 100vw) calc(76 / var(--design-width) * 100vw);
    }
}
.is-animating .l-header .l-header-menu__container {
    scrollbar-width: none;
}
.is-animating .l-header .l-header-menu__container::-webkit-scrollbar {
    display: none;
}

.l-header .l-header-menu__list {
    display: block;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item {
        margin-inline: auto;
    }
}
.l-header .l-header-menu__item:not(:first-of-type) {
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item:not(:first-of-type) {
        margin-top: calc(94 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item:nth-of-type(1) {
        width: calc(86 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item:nth-of-type(2) {
        width: calc(246 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item:nth-of-type(3) {
        width: calc(374 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__item:nth-of-type(4) {
        width: calc(234 / var(--design-width) * 100vw);
    }
}
.l-header .l-header-menu__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-menu__link {
        transition: opacity var(--hover-duration);
    }
    .l-header .l-header-menu__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu__link {
        width: 100%;
    }
}
.l-header .l-header-menu__link img {
    display: block;
}
.l-header .l-header-menu-button {
    display: block;
    position: relative;
    padding: 15px;
    border: 0;
    border-radius: 0;
    background: none;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    touch-action: manipulation;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 200;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-menu-button {
        transition: opacity var(--hover-duration);
    }
    .l-header .l-header-menu-button:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button {
        padding: calc(15 / var(--design-width) * 100vw);
        top: calc(16 / var(--design-width) * 100vw);
        right: calc(16 / var(--design-width) * 100vw);
    }
}
.l-header.is-blended .l-header-menu-button {
    mix-blend-mode: difference;
    animation: fadeBlendIn 1s -0.5s forwards;
}

.l-header.is-unblend .l-header-menu-button {
    mix-blend-mode: normal;
    animation: fadeBlendOut 1s -0.5s forwards;
}

.is-menu-opened .l-header .l-header-menu-button {
    mix-blend-mode: normal;
}

.l-header .l-header-menu-button__lines {
    position: relative;
    display: block;
    width: 34px;
    height: 18px;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button__lines {
        width: calc(54 / var(--design-width) * 100vw);
        height: calc(32 / var(--design-width) * 100vw);
    }
}
.l-header .l-header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 2px;
    background-color: var(--color-white-1);
    transition: 0.3s;
}
.l-header .l-header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-header .l-header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
}

.l-header .l-header-menu-button__line--center {
    top: 50%;
    margin-top: -1px;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button__line--center {
        margin-top: calc(-2 / var(--design-width) * 100vw);
    }
}
.is-menu-opened .l-header .l-header-menu-button__line--center {
    background-color: rgba(var(--color-white-1-rgba), 0);
}

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

.l-header .l-header-menu-button__txt {
    display: block;
    margin-inline: auto;
    position: relative;
}
.l-header .l-header-menu-button__txt-img {
    display: block;
    margin-top: 10px;
    margin-inline: auto;
    transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button__txt-img {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button__txt-img--state-close {
        width: calc(56 / var(--design-width) * 100vw);
    }
}
.is-menu-opened .l-header .l-header-menu-button__txt-img--state-close {
    opacity: 0;
    visibility: hidden;
}

.l-header .l-header-menu-button__txt-img--state-open {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
    .l-header .l-header-menu-button__txt-img--state-open {
        width: calc(60 / var(--design-width) * 100vw);
    }
}
.is-menu-opened .l-header .l-header-menu-button__txt-img--state-open {
    opacity: 1;
    visibility: visible;
}

.l-header .l-header-sns-list {
    margin-top: 46px;
    padding-top: 34px;
    border-top: 1px solid var(--color-white-1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list {
        margin-top: calc(146 / var(--design-width) * 100vw);
        padding-top: calc(54 / var(--design-width) * 100vw);
        border-width: calc(4 / var(--design-width) * 100vw);
        gap: calc(50 / var(--design-width) * 100vw);
    }
}
.l-header .l-header-sns-list__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-sns-list__link {
        transition: opacity var(--hover-duration);
    }
    .l-header .l-header-sns-list__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list__link--facebook {
        width: calc(var(--sns-facebook-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list__link--x {
        width: calc(var(--sns-x-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list__link--youtube {
        width: calc(var(--sns-youtube-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list__link--instagram {
        width: calc(var(--sns-instagram-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-header .l-header-sns-list__link--linkedin {
        width: calc(var(--sns-linkedin-icon-size) / var(--design-width) * 100vw);
    }
}
@keyframes fadeBlendIn {
    0% {
        opacity: 1;
    }
    49% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeBlendOut {
    0% {
        opacity: 1;
    }
    49% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   l-container
--------------------------------------------- */
.l-container {
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
}
@media screen and (min-width: 769px) {
    .l-container {
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
    }
}
@media screen and (max-width: 768px) {
    .l-container {
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
}

/*  PC用container
--------------------------------------------- */
@media screen and (min-width: 769px) {
    .l-container-pc {
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
        margin-inline: auto;
        padding-inline: calc(var(--contents-side-padding) * 1px);
    }
}

/*  SP用container
--------------------------------------------- */
@media screen and (max-width: 768px) {
    .l-container-sp {
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-container-inner-pc
--------------------------------------------- */
@media screen and (min-width: 769px) {
    .l-container-inner-pc {
        max-width: calc((var(--contents-inner-width) + var(--contents-inner-side-padding) * 2) * 1px);
        margin-inline: auto;
        padding-inline: calc(var(--contents-inner-side-padding) * 1px);
    }
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    position: relative;
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    position: relative;
    z-index: 1;
    /*  l-footer-sns
    --------------------------------------------- */
}
.l-footer__container {
    padding-block: 56px 46px;
    background-color: var(--color-bg-2);
}
@media screen and (max-width: 768px) {
    .l-footer__container {
        padding-block: calc(87 / var(--design-width) * 100vw) calc(94 / var(--design-width) * 100vw);
    }
}
.l-footer__logo {
    margin-inline: auto;
}
@media screen and (min-width: 769px) {
    .l-footer__logo {
        max-width: 408px;
    }
}
@media screen and (max-width: 768px) {
    .l-footer__logo {
        width: calc(592 / var(--design-width) * 100vw);
    }
}
.l-footer__logo-link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-footer__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-footer__copyright {
    padding-block: 11px;
    background-color: var(--color-black-1);
}
@media screen and (max-width: 768px) {
    .l-footer__copyright {
        padding-block: calc(27 / var(--design-width) * 100vw);
    }
}
.l-footer__copyright-txt {
    display: block;
    color: var(--color-white-1);
    font-size: calc(12 / var(--root-fz) * 1rem);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .l-footer__copyright-txt {
        font-size: calc(24 / var(--root-fz) * 1rem);
        line-height: 1.5;
    }
}
.l-footer .l-footer-sns {
    margin-top: 30px;
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns {
        margin-top: calc(48 / var(--design-width) * 100vw);
    }
}
.l-footer .l-footer-sns__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__list {
        gap: calc(54 / var(--design-width) * 100vw);
    }
}
.l-footer .l-footer-sns__link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer .l-footer-sns__link {
        transition: opacity var(--hover-duration);
    }
    .l-footer .l-footer-sns__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__link--facebook {
        width: calc(var(--sns-facebook-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__link--x {
        width: calc(var(--sns-x-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__link--youtube {
        width: calc(var(--sns-youtube-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__link--instagram {
        width: calc(var(--sns-instagram-icon-size) / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .l-footer .l-footer-sns__link--linkedin {
        width: calc(var(--sns-linkedin-icon-size) / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*
--------------------------------------------- */
/*  l-footer-pagetop
--------------------------------------------- */
.l-footer-pagetop {
    position: sticky;
    bottom: 0;
    z-index: 100;
}
.l-footer-pagetop__btn {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 40px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    display: grid;
    place-items: center;
    width: 60px;
    aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
    .l-footer-pagetop__btn {
        bottom: calc(40 / var(--design-width) * 100vw);
        right: calc(40 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 1024px) {
    .l-footer-pagetop__btn {
        width: calc(80 / 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 {
        transition: opacity var(--hover-duration);
    }
    .l-footer-pagetop__btn.is-show:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   c-block-logo
--------------------------------------------- */
.c-block-logo {
    padding-block: 32px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
    .c-block-logo {
        padding-block: calc(42 / var(--design-width) * 100vw) calc(58 / var(--design-width) * 100vw);
    }
}
.c-block-logo__img {
    margin-inline: auto;
}
@media screen and (min-width: 769px) {
    .c-block-logo__img {
        max-width: 1107px;
    }
}
@media screen and (max-width: 768px) {
    .c-block-logo__img {
        width: calc(687 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-bg
--------------------------------------------- */
.c-block-bg {
    position: relative;
}
.c-block-bg__img-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
@media screen and (min-width: 769px) {
    .c-block-bg__img-wrap {
        max-width: calc(var(--design-width) * 1px);
        margin-inline: auto;
    }
}
.c-block-bg__img {
    mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
    .c-block-bg__img {
        background-size: calc(50 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 769px) {
    .c-block-bg__img:not(.c-block-bg__img--1) {
        position: absolute;
    }
}
.c-block-bg__img--1 {
    width: calc(1874 / var(--design-width) * 100%);
    margin-top: 260px;
    margin-left: calc(-404 / var(--design-width) * 100%);
}
@media screen and (max-width: 768px) {
    .c-block-bg__img--1 {
        width: calc(1065 / var(--design-width) * 100vw);
        margin-top: calc(782 / var(--design-width) * 100vw);
        margin-left: calc(-296 / var(--design-width) * 100vw);
    }
}
.c-block-bg__img--2 {
    width: calc(427 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--2 {
        top: 20.3%;
        right: calc(-211 / var(--design-width) * 100%);
    }
}
@media screen and (max-width: 768px) {
    .c-block-bg__img--2 {
        width: calc(440 / var(--design-width) * 100vw);
        margin-top: 0;
        margin-inline: 0;
        position: absolute;
        bottom: calc(773 / var(--design-width) * 100vw);
        left: calc(-104 / var(--design-width) * 100vw);
    }
}
.c-block-bg__img--3 {
    width: calc(1845 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--3 {
        top: 28.2%;
        left: calc(-19 / var(--design-width) * 100%);
    }
}
@media screen and (max-width: 768px) {
    .c-block-bg__img--3 {
        width: calc(1066 / var(--design-width) * 100vw);
        margin-top: 0;
        margin-left: 0;
        position: absolute;
        bottom: calc(-422 / var(--design-width) * 100vw);
        left: calc(-89 / var(--design-width) * 100vw);
    }
}
.c-block-bg__img--4 {
    width: calc(427 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--4 {
        top: 41.9%;
        left: calc(-326 / var(--design-width) * 100%);
    }
}
.c-block-bg__img--5 {
    width: calc(1845 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--5 {
        top: 49.85%;
        left: calc(-53 / var(--design-width) * 100%);
    }
}
.c-block-bg__img--6 {
    width: calc(446 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--6 {
        top: 68.2%;
        right: calc(-21 / var(--design-width) * 100%);
    }
}
.c-block-bg__img--7 {
    width: calc(1845 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--7 {
        top: 73.35%;
        left: calc(-612 / var(--design-width) * 100%);
    }
}
.c-block-bg__img--8 {
    width: calc(440 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--8 {
        top: 86.2%;
        right: calc(-251 / var(--design-width) * 100%);
    }
}
.c-block-bg__img--9 {
    width: calc(1804 / var(--design-width) * 100%);
}
@media screen and (min-width: 769px) {
    .c-block-bg__img--9 {
        top: 94%;
        left: calc(-250 / var(--design-width) * 100%);
    }
}
@media screen and (min-width: 1025px) {
    .c-block-bg__img--9 {
        top: 91.5%;
    }
}

/* ---------------------------------------------
*   c-block-detail
--------------------------------------------- */
.c-block-detail {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.c-block-detail__img {
    position: absolute;
    width: 111px;
    z-index: 10;
    animation: singleShake 10s infinite;
    /* ブルブル震えるアニメーション */
}
@media screen and (max-width: 1024px) {
    .c-block-detail__img {
        width: calc(111 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-block-detail__img {
        width: calc(130 / var(--design-width) * 100vw);
    }
}
@keyframes singleShake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    0.75% {
        transform: translate(2px, -2px) rotate(1deg);
    }
    1.5% {
        transform: translate(-2px, 2px) rotate(-1deg);
    }
    2.25% {
        transform: translate(2px, 2px) rotate(1deg);
    }
    3% {
        transform: translate(-2px, -2px) rotate(-1deg);
    }
    3.75% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}
.c-block-detail__img--1 {
    top: min(55 / var(--design-width) * 100vw, 55px);
    right: min(110 / var(--design-width) * 100vw, 110px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--1 {
        top: calc(46 / var(--design-width) * 100vw);
        right: calc(62 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--2 {
    top: min(186 / var(--design-width) * 100vw, 186px);
    right: min(19 / var(--design-width) * 100vw, 19px);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--2 {
        top: calc(257 / var(--design-width) * 100vw);
        right: calc(6 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--3 {
    top: max(-44 / var(--design-width) * 100vw, -44px);
    left: min(67 / var(--design-width) * 100vw, 67px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--3 {
        top: calc(-71 / var(--design-width) * 100vw);
        left: calc(54 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--4 {
    top: min(140 / var(--design-width) * 100vw, 140px);
    left: max(-44 / var(--design-width) * 100vw, -44px);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--4 {
        top: calc(90 / var(--design-width) * 100vw);
        left: calc(-58 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--5 {
    top: max(-17 / var(--design-width) * 100vw, -17px);
    right: max(-222 / var(--design-width) * 100vw, -222px);
    animation-delay: var(--detail-animation-delay-2);
}
@media screen and (max-width: 1200px) {
    .c-block-detail__img--5 {
        right: calc(-170 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--5 {
        top: calc(9 / var(--design-width) * 100vw);
        right: calc(-7 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--6 {
    top: min(103 / var(--design-width) * 100vw, 103px);
    right: max(-136 / var(--design-width) * 100vw, -136px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 1200px) {
    .c-block-detail__img--6 {
        right: calc(-84 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--6 {
        top: calc(187 / var(--design-width) * 100vw);
        right: calc(33 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--7 {
    bottom: max(-87 / var(--design-width) * 100vw, -87px);
    left: max(-124 / var(--design-width) * 100vw, -124px);
    animation-delay: var(--detail-animation-delay-2);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--7 {
        bottom: calc(-5 / var(--design-width) * 100vw);
        left: calc(105 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--8 {
    top: 11.05%;
    left: max(-4 / var(--design-width) * 100vw, -4px);
}
.c-block-detail__img--9 {
    top: 14.2%;
    left: min(47 / var(--design-width) * 100vw, 47px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 1024px) {
    .c-block-detail__img--9 {
        left: calc(6 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--10 {
    top: 21.6%;
    right: max(-36 / var(--design-width) * 100vw, -36px);
    animation-delay: var(--detail-animation-delay-2);
}
.c-block-detail__img--11 {
    top: 28.4%;
    left: min(22 / var(--design-width) * 100vw, 22px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 1024px) {
    .c-block-detail__img--11 {
        left: calc(-15 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--12 {
    top: 36.5%;
    right: max(-15 / var(--design-width) * 100vw, -15px);
}
.c-block-detail__img--13 {
    top: 40.95%;
    right: min(49 / var(--design-width) * 100vw, 49px);
    animation-delay: var(--detail-animation-delay-2);
}
@media screen and (max-width: 1024px) {
    .c-block-detail__img--13 {
        right: calc(3 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--14 {
    top: 50.3%;
    left: max(-4 / var(--design-width) * 100vw, -4px);
}
.c-block-detail__img--15 {
    top: 63.2%;
    right: min(31 / var(--design-width) * 100vw, 31px);
    animation-delay: var(--detail-animation-delay-1);
}
@media screen and (max-width: 1024px) {
    .c-block-detail__img--15 {
        right: calc(-6 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--16 {
    top: 66.05%;
    right: max(-42 / var(--design-width) * 100vw, -42px);
    animation-delay: var(--detail-animation-delay-2);
}
.c-block-detail__img--17 {
    top: 74.6%;
    left: max(-41 / var(--design-width) * 100vw, -41px);
}
.c-block-detail__img--18 {
    top: 80.95%;
    right: max(-4 / var(--design-width) * 100vw, -4px);
    animation-delay: var(--detail-animation-delay-1);
}
.c-block-detail__img--19 {
    top: 84.35%;
    left: max(-43 / var(--design-width) * 100vw, -43px);
    animation-delay: var(--detail-animation-delay-2);
}
.c-block-detail__img--20 {
    top: 94.65%;
    left: max(-4 / var(--design-width) * 100vw, -4px);
}
.c-block-detail__img--21 {
    top: max(-123 / var(--design-width) * 100vw, -123px);
    left: max(-168 / var(--design-width) * 100vw, -168px);
    animation-delay: var(--detail-animation-delay-3);
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--21 {
        top: calc(-122 / var(--design-width) * 100vw);
        left: calc(44 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--22 {
    top: max(-85 / var(--design-width) * 100vw, -85px);
    right: max(-279 / var(--design-width) * 100vw, -279px);
}
@media screen and (max-width: 1180px) {
    .c-block-detail__img--22 {
        right: calc(-200 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--22 {
        top: calc(-134 / var(--design-width) * 100vw);
        right: calc(41 / var(--design-width) * 100vw);
    }
}
.c-block-detail__img--23 {
    top: min(38 / var(--design-width) * 100vw, 38px);
    right: max(-205 / var(--design-width) * 100vw, -205px);
    animation-delay: var(--detail-animation-delay-3);
}
@media screen and (max-width: 1180px) {
    .c-block-detail__img--23 {
        right: calc(-126 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-block-detail__img--23 {
        top: calc(17 / var(--design-width) * 100vw);
        right: calc(-43 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 32px 9px 20px;
    color: var(--color-bg-2);
    font-size: calc(15 / var(--root-fz) * 1rem);
    letter-spacing: 0.06em;
    font-weight: 600;
    background-color: var(--color-white-1);
    border-radius: 50em;
    position: relative;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1 {
        transition: opacity var(--hover-duration);
    }
    .c-btn-1:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .c-btn-1 {
        padding: calc(17 / var(--design-width) * 100vw) calc(63 / var(--design-width) * 100vw) calc(17 / var(--design-width) * 100vw) calc(52 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-btn-1::after {
    content: "";
    display: block;
    width: 5px;
    aspect-ratio: 1/2;
    -webkit-mask: url(../img/ico_arrow.svg) center/contain no-repeat;
            mask: url(../img/ico_arrow.svg) center/contain no-repeat;
    background-color: var(--color-bg-2);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .c-btn-1::after {
        width: calc(10 / var(--design-width) * 100vw);
        right: calc(26 / var(--design-width) * 100vw);
        -webkit-mask-image: url(../img/sp/ico_arrow.svg);
                mask-image: url(../img/sp/ico_arrow.svg);
    }
}

/* ---------------------------------------------
*   c-btn-2
--------------------------------------------- */
.c-btn-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-inline: auto;
    padding: 26px 56px 26px 40px;
    background-color: var(--color-bg-4);
    border-radius: 50em;
    position: relative;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-2 {
        transition: opacity var(--hover-duration);
    }
    .c-btn-2:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .c-btn-2 {
        justify-content: flex-end;
        gap: calc(24 / var(--design-width) * 100vw);
        padding: calc(33 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw) calc(33 / var(--design-width) * 100vw) 0;
    }
}
.c-btn-2::after {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 1/2;
    -webkit-mask: url(../img/ico_arrow.svg) center/contain no-repeat;
            mask: url(../img/ico_arrow.svg) center/contain no-repeat;
    background-color: var(--color-base-1);
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .c-btn-2::after {
        width: calc(12 / var(--design-width) * 100vw);
        right: calc(32 / var(--design-width) * 100vw);
        -webkit-mask-image: url(../img/sp/ico_arrow.svg);
                mask-image: url(../img/sp/ico_arrow.svg);
    }
}
@media screen and (max-width: 768px) {
    .c-btn-2__logo {
        display: block;
        width: calc(198 / var(--design-width) * 100vw);
    }
}
.c-btn-2__logo img {
    display: block;
}
.c-btn-2__txt {
    font-size: calc(17 / var(--root-fz) * 1rem);
    font-weight: 600;
    font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
    .c-btn-2__txt {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 768px) {
    .iphone.safari .c-btn-2__txt, .windows.edge .c-btn-2__txt {
        transform: translateY(calc(1 / var(--design-width) * 100vw));
    }
}

/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1__btn {
    display: block;
    width: 100%;
    text-align: left;
    font-feature-settings: "palt" 1;
}
.c-card-1__btn:hover .c-card-1__img img {
    transform: scale(1.05);
}
.c-card-1__cat {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5.25px 16px 4.75px;
    margin-top: 13px;
    color: var(--color-white-1);
    font-size: calc(12 / var(--root-fz) * 1rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1666666667;
    border-radius: 50em;
}
@media screen and (max-width: 768px) {
    .c-card-1__cat {
        margin-top: calc(27 / var(--design-width) * 100vw);
        padding: calc(8.5 / var(--design-width) * 100vw) calc(27 / var(--design-width) * 100vw) calc(7.5 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--root-fz) * 1rem);
        line-height: 1.2;
    }
}
.c-card-1__cat--tofu-bar {
    background-color: var(--color-cat-1);
}
.c-card-1__cat--natto {
    background-color: var(--color-cat-2);
}
.c-card-1__cat--tofu {
    background-color: var(--color-cat-3);
}
.c-card-1__cat--fried-tofu {
    background-color: var(--color-cat-4);
}
.c-card-1__cat--soy {
    background-color: var(--color-cat-5);
}
.c-card-1__cat--other-soy-products {
    background-color: var(--color-cat-6);
}
.c-card-1__cat--soybean-oil {
    background-color: var(--color-cat-7);
}
.c-card-1__cat--soy-protein {
    background-color: var(--color-cat-8);
}
.c-card-1__cat--miso {
    background-color: var(--color-cat-9);
}
@media screen and (max-width: 768px) {
    .mac.safari .c-card-1__cat, .windows.edge .c-card-1__cat {
        padding-block: calc(9 / var(--design-width) * 100vw) calc(7 / var(--design-width) * 100vw);
    }
}

.c-card-1__img {
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    background-color: var(--color-white-1);
}
.c-card-1__img img {
    width: 73.8636363636%;
    transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
    .c-card-1__img img {
        width: calc(240 / var(--design-width) * 100vw);
    }
}
.c-card-1__ttl {
    display: block;
    color: var(--color-base-1);
    margin-top: 17px;
    font-size: calc(15 / var(--root-fz) * 1rem);
    letter-spacing: 0;
    line-height: 1.3333333333;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .c-card-1__ttl {
        margin-top: calc(34 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--root-fz) * 1rem);
        letter-spacing: 0;
        line-height: 1.3571428571;
    }
}

/* ---------------------------------------------
*   c-cassette-product
--------------------------------------------- */
.c-cassette-product {
    padding-top: calc(var(--anchor-padding) * 1px);
}
@media screen and (max-width: 768px) {
    .c-cassette-product {
        padding-top: calc(var(--anchor-padding) / var(--design-width) * 100vw);
    }
}
.c-cassette-product__ttl {
    padding: 12.5px 17px 11.5px;
    color: var(--color-white-1);
    font-size: calc(24 / var(--root-fz) * 1rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
    font-weight: 700;
    background-color: var(--color-base-1);
}
@media screen and (max-width: 768px) {
    .c-cassette-product__ttl {
        padding: calc(21.5 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw) calc(19.5 / var(--design-width) * 100vw);
        font-size: calc(36 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 768px) {
    .c-cassette-product__ttl-small {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-cassette-product__body {
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    .c-cassette-product__body {
        margin-top: calc(80 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    background-color: var(--color-bg-2);
    aspect-ratio: 1440/700;
    position: relative;
}
@media screen and (max-width: 768px) {
    .c-kv {
        display: flex;
        flex-direction: column-reverse;
    }
}
.c-kv__contents {
    width: calc(410 / var(--design-width) * 100%);
    aspect-ratio: 410/700;
    padding-top: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
@media screen and (min-width: 769px) {
    .c-kv__contents {
        position: absolute;
        left: 0;
        top: 0;
    }
}
@media screen and (max-width: 768px) {
    .c-kv__contents {
        width: 100%;
        aspect-ratio: 750/300;
        padding-top: calc(54 / var(--design-width) * 100vw);
        position: relative;
    }
}
.c-kv__contents-inner {
    width: 100%;
    margin-inline: auto -33.6585365854%;
}
@media screen and (max-width: 900px) {
    .c-kv__contents-inner {
        width: 90%;
        margin-right: -30.243902439%;
    }
}
@media screen and (max-width: 768px) {
    .c-kv__contents-inner {
        margin-inline: auto;
        margin-top: calc(-122 / var(--design-width) * 100vw);
        display: flex;
        align-items: center;
        gap: calc(28 / var(--design-width) * 100vw);
        transform: translateX(calc(6 / var(--design-width) * 100vw));
    }
}
.c-kv__detail-wrap {
    display: flex;
    opacity: 0;
    transform: translateY(50px);
}
.is-show .c-kv__detail-wrap {
    animation: fadeInUpNormal 0.4s ease 1.2s forwards;
}

.c-kv__detail {
    width: 31.2195121951%;
    padding-bottom: 22.9268292683%;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 768px) {
    .c-kv__detail {
        width: calc(159 / var(--design-width) * 100vw);
        padding-bottom: calc(115 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 769px) {
    .c-kv__detail img {
        width: 100%;
    }
}
.c-kv__detail--2 {
    margin-left: -7px;
}
@media screen and (max-width: 768px) {
    .c-kv__detail--2 {
        margin-left: calc(-7 / var(--design-width) * 100vw);
    }
}
.c-kv__detail--2 > img {
    width: 40.625%;
}
@media screen and (max-width: 768px) {
    .c-kv__detail--2 > img {
        width: calc(65 / var(--design-width) * 100vw);
        transform: translateY(calc(-3 / var(--design-width) * 100vw));
    }
}
.c-kv__detail-dot {
    width: 85.9375%;
    aspect-ratio: 1/1;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-48%);
}
@media screen and (max-width: 768px) {
    .c-kv__detail-dot {
        width: calc(136 / var(--design-width) * 100vw);
        bottom: calc(7 / var(--design-width) * 100vw);
    }
}
.is-show .c-kv__detail-dot img {
    animation: shakeIcon 3s 2s infinite;
}
.is-show .c-kv__detail-dot--2 img {
    animation: shakeIcon 4s 1.2s infinite;
}

.c-kv__ttl {
    width: 78.0487804878%;
    margin-top: 8px;
    transform: translateY(50px);
    opacity: 0;
}
@media screen and (max-width: 768px) {
    .c-kv__ttl {
        width: calc(297 / var(--design-width) * 100vw);
        margin-top: calc(38 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 769px) {
    .c-kv__ttl img {
        width: 100%;
    }
}
.is-show .c-kv__ttl {
    animation: fadeInUpNormal 0.4s ease 2s forwards;
}

.c-kv__slider {
    aspect-ratio: 1030/700;
}
@media screen and (min-width: 769px) {
    .c-kv__slider {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }
}
@media screen and (max-width: 768px) {
    .c-kv__slider {
        position: relative;
        aspect-ratio: 750/720;
    }
}
.c-kv__scroll {
    position: absolute;
    right: 24px;
    bottom: 0;
}
@media screen and (max-width: 768px) {
    .c-kv__scroll {
        width: calc(15 / var(--design-width) * 100vw);
        right: calc(21 / var(--design-width) * 100vw);
    }
}
.c-kv__scroll-line {
    width: 1px;
    height: 111px;
    margin-top: 18px;
    margin-inline: auto;
    background-color: rgba(var(--color-white-1-rgb), 0.2);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .c-kv__scroll-line {
        width: calc(2 / var(--design-width) * 100vw);
        height: calc(94 / var(--design-width) * 100vw);
        margin-top: calc(21 / var(--design-width) * 100vw);
    }
}
.c-kv__scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white-1);
    animation: scrollLineAnimation 2s infinite;
}
@keyframes scrollLineAnimation {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
@keyframes fadeInUpNormal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shakeIcon {
    0%, 70% {
        transform: translate(0, 0) rotate(0deg);
    }
    72% {
        transform: translate(-4px, -2px) rotate(-3deg);
    }
    76% {
        transform: translate(4px, 2px) rotate(3deg);
    }
    80% {
        transform: translate(-4px, 2px) rotate(-2deg);
    }
    84% {
        transform: translate(0, 0) rotate(0deg);
    }
    85%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    align-items: center;
    gap: 24px 0.5em;
}
@media screen and (max-width: 1120px) {
    .c-list-1 {
        grid-template-columns: repeat(3, max-content);
    }
}
@media screen and (max-width: 96px) {
    .c-list-1 {
        grid-template-columns: repeat(3, 1fr);
        -moz-column-gap: 1em;
             column-gap: 1em;
    }
}
@media screen and (max-width: 860px) {
    .c-list-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .c-list-1 {
        grid-template-columns: repeat(2, max-content);
        gap: calc(29 / var(--design-width) * 100vw) 0;
    }
}
.c-list-1__item {
    max-height: 1.2em;
}
.c-list-1__link {
    display: inline-block;
    padding-left: 28px;
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: 600;
    background: url(../img/ico_arrow-anchor.svg) no-repeat left center/18px 18px;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-1__link {
        transition: opacity var(--hover-duration);
    }
    .c-list-1__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .c-list-1__link {
        padding-left: calc(37 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--root-fz) * 1rem);
        line-height: 1.125;
        letter-spacing: 0;
        background-size: calc(26 / var(--design-width) * 100vw) calc(26 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 769px) {
    .c-list-1__link--2row {
        margin-top: -0.4em;
    }
}

/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2__item {
    margin-top: 48px;
}
@media screen and (max-width: 768px) {
    .c-list-2__item {
        margin-top: calc(54 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-loading
--------------------------------------------- */
.c-loading {
    width: 100vw;
    height: 100dvh;
    background-color: var(--color-bg-2);
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    /* ブルブル震えるアニメーション（ローディング用） */
    /* 1.5秒のうち、最初の33%（0.5秒間）だけ動き、残りは静止させる */
}
.c-loading__txt {
    width: 100px;
    margin-inline: auto;
}
.c-loading__txt img {
    display: block;
}
.c-loading__img-wrap {
    display: flex;
}
.c-loading__img {
    width: 90px;
    aspect-ratio: 1/1;
    animation: loadingShake 1.5s infinite;
}
.c-loading__img:nth-child(2) {
    margin-inline: -18px;
    animation-delay: 0.5s;
}
.c-loading__img:nth-child(3) {
    animation-delay: 1s;
}
.c-loading__img img {
    display: block;
}
@keyframes loadingShake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    5% {
        transform: translate(2px, -2px) rotate(1deg);
    }
    10% {
        transform: translate(-2px, 2px) rotate(-1deg);
    }
    15% {
        transform: translate(2px, 2px) rotate(1deg);
    }
    20% {
        transform: translate(-2px, -2px) rotate(-1deg);
    }
    25% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ---------------------------------------------
*   c-modal
--------------------------------------------- */
.c-modal.is-first-time {
    visibility: hidden;
    opacity: 0;
}
.c-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    overflow-y: auto;
    overscroll-behavior-y: none;
    scrollbar-width: none;
    background: rgba(var(--color-base-1-rgb), 0.95);
}
.c-modal__overlay::-webkit-scrollbar {
    display: none;
}
.c-modal__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}
@media screen and (max-width: 768px) {
    .c-modal__inner {
        padding: calc(120 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
    }
}
.c-modal__container {
    position: relative;
    width: min(100%, 960px);
}
@media screen and (max-width: 768px) {
    .c-modal__container {
        width: calc(630 / var(--design-width) * 100vw);
    }
}
.c-modal__contents-wrap {
    padding: 65px 70px;
    background-color: var(--color-bg-3);
}
@media screen and (max-width: 768px) {
    .c-modal__contents-wrap {
        padding: calc(70 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn {
    padding: 10px;
    position: fixed;
    top: -70px;
    right: -12px;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-modal__close-btn {
        transition: opacity var(--hover-duration);
    }
    .c-modal__close-btn:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 768px) {
    .c-modal__close-btn {
        padding: calc(10 / var(--design-width) * 100vw);
        top: calc(-100 / var(--design-width) * 100vw);
        right: calc(-12 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn-lines {
    position: relative;
    display: block;
    width: 40px;
    height: 18px;
}
@media screen and (max-width: 768px) {
    .c-modal__close-btn-lines {
        width: calc(54 / var(--design-width) * 100vw);
        height: calc(32 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn-line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 2px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
    .c-modal__close-btn-line {
        padding-top: calc(4 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn-line--top {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
}
.c-modal__close-btn-line--bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-30deg);
}
.c-modal__close-btn-txt {
    display: block;
    margin-inline: auto;
    position: relative;
}
@media screen and (max-width: 768px) {
    .c-modal__close-btn-txt {
        width: calc(60 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn-txt-img {
    display: block;
    margin-top: 10px;
}
@media screen and (min-width: 769px) {
    .c-modal__close-btn-txt-img {
        max-width: initial;
        width: 40px;
    }
}
@media screen and (max-width: 768px) {
    .c-modal__close-btn-txt-img {
        width: calc(56 / var(--design-width) * 100vw);
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-modal__btn {
    margin-top: 40px;
}
@media screen and (min-width: 769px) {
    .c-modal__btn {
        max-width: 435px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 768px) {
    .c-modal__btn {
        margin-top: calc(48 / 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) forwards;
}
.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) forwards;
}
.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 {
        visibility: hidden;
        opacity: 0;
    }
    to {
        visibility: visible;
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }
    to {
        visibility: hidden;
        opacity: 0;
    }
}
/* ---------------------------------------------
*   c-section-about
--------------------------------------------- */
.c-section-about {
    background-color: var(--color-bg-2);
}
.c-section-about__container {
    margin-inline: auto;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}
@media screen and (min-width: 769px) {
    .c-section-about__container {
        max-width: calc(var(--design-width) * 1px);
    }
}
@media screen and (max-width: 1024px) {
    .c-section-about__container {
        display: block;
    }
}
.c-section-about__txt-wrap {
    width: 50%;
    padding: 40px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .c-section-about__txt-wrap {
        width: 100%;
        padding: 82px 20px;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__txt-wrap {
        padding: calc(112 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw) calc(128 / var(--design-width) * 100vw) calc(90 / var(--design-width) * 100vw);
    }
}
.c-section-about__txt-wrap::before {
    content: "";
    display: block;
    width: 56.6666666667%;
    aspect-ratio: 408/454;
    position: absolute;
    bottom: -7.012987013%;
    right: -7.5%;
    background: url(../img/bg_about.png) no-repeat center/contain;
    opacity: 0.2;
}
@media screen and (max-width: 1024px) {
    .c-section-about__txt-wrap::before {
        width: 408px;
        right: -54px;
        bottom: -54px;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__txt-wrap::before {
        width: calc(571 / var(--design-width) * 100vw);
        right: calc(-72 / var(--design-width) * 100vw);
        bottom: calc(-72 / var(--design-width) * 100vw);
    }
}
.c-section-about__txt-inner {
    width: min(100%, 510px);
}
@media screen and (max-width: 1250px) {
    .c-section-about__txt-inner {
        width: -moz-fit-content;
        width: fit-content;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__txt-inner {
        width: calc(638 / var(--design-width) * 100vw);
    }
}
.c-section-about__img {
    width: 50%;
}
@media screen and (max-width: 1024px) {
    .c-section-about__img {
        width: 100%;
    }
}
@media screen and (min-width: 769px) {
    .c-section-about__img img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.c-section-about__ttl-en {
    display: block;
}
@media screen and (max-width: 1250px) and (min-width: 1025px) {
    .c-section-about__ttl-en {
        width: calc(116 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__ttl-en {
        width: calc(154 / var(--design-width) * 100vw);
    }
}
.c-section-about__ttl-en img {
    display: block;
}
.c-section-about__ttl-jp {
    display: block;
    margin-top: 36px;
    margin-left: 0.12em;
}
@media screen and (max-width: 1250px) and (min-width: 1025px) {
    .c-section-about__ttl-jp {
        width: calc(400 / var(--design-width) * 100vw);
        margin-top: 5%;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__ttl-jp {
        width: calc(560 / var(--design-width) * 100vw);
        margin-top: calc(53 / var(--design-width) * 100vw);
    }
}
.c-section-about__txt {
    color: var(--color-white-1);
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .c-section-about__txt {
        font-size: calc(28 / var(--root-fz) * 1rem);
        line-height: 1.9285714286;
        letter-spacing: 0.1em;
    }
}
.c-section-about__txt:first-of-type {
    margin-top: 28px;
}
@media screen and (max-width: 1250px) and (min-width: 1025px) {
    .c-section-about__txt:first-of-type {
        margin-top: 3.8888888889%;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__txt:first-of-type {
        margin-top: calc(42 / var(--design-width) * 100vw);
    }
}
.c-section-about__txt + .c-section-about__txt {
    margin-top: 1em;
}
.c-section-about__btn {
    margin-top: 48px;
}
@media screen and (max-width: 1250px) and (min-width: 1025px) {
    .c-section-about__btn {
        margin-top: 6.6666666667%;
    }
}
@media screen and (max-width: 768px) {
    .c-section-about__btn {
        margin-top: calc(68 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-intro
--------------------------------------------- */
.c-section-intro {
    padding-block: 88px 75px;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 769px) {
    .c-section-intro {
        max-width: calc(var(--design-width) * 1px);
        margin-inline: auto;
    }
}
@media screen and (max-width: 768px) {
    .c-section-intro {
        padding-block: calc(100 / var(--design-width) * 100vw) calc(122 / var(--design-width) * 100vw);
    }
}
.c-section-intro__head {
    margin-inline: auto;
}
@media screen and (min-width: 769px) {
    .c-section-intro__head {
        max-width: 883px;
        position: relative;
    }
}
@media screen and (max-width: 768px) {
    .c-section-intro__head {
        width: calc(618 / var(--design-width) * 100vw);
    }
}
.c-section-intro__body {
    margin-top: 66px;
}
@media screen and (min-width: 769px) {
    .c-section-intro__body {
        width: -moz-fit-content;
        width: fit-content;
        margin-inline: auto;
        position: relative;
    }
}
@media screen and (max-width: 768px) {
    .c-section-intro__body {
        width: calc(650 / var(--design-width) * 100vw);
        margin-inline: auto;
        margin-top: calc(56 / var(--design-width) * 100vw);
    }
}
.c-section-intro__link {
    display: block;
    margin-inline: auto;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-intro__link {
        transition: opacity var(--hover-duration);
    }
    .c-section-intro__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (min-width: 769px) {
    .c-section-intro__link {
        max-width: 800px;
    }
}

/* ---------------------------------------------
*   c-section-products
--------------------------------------------- */
.c-section-products {
    padding-block: calc(var(--anchor-padding) * 1px) 94px;
    position: relative;
}
@media screen and (min-width: 769px) {
    .c-section-products {
        max-width: calc(var(--design-width) * 1px);
        margin-inline: auto;
    }
}
@media screen and (max-width: 768px) {
    .c-section-products {
        padding-block: 0 calc(120 / var(--design-width) * 100vw);
    }
}
.c-section-products::before {
    content: "";
    display: block;
    width: calc(361 / var(--design-width) * 100%);
    aspect-ratio: 1/1;
    background: url(../img/txt_circle.png) repeat 0 0/contain;
    position: absolute;
    margin-top: calc(-124 / var(--design-width) * 100%);
    margin-right: calc(-68 / var(--design-width) * 100%);
    top: 0;
    right: 0;
    z-index: 1;
    mix-blend-mode: overlay;
    animation: rotateAnimation 18s linear infinite;
    will-change: transform;
    /* 回転アニメーション */
}
@media screen and (max-width: 768px) {
    .c-section-products::before {
        width: calc(361 / var(--design-width) * 100vw);
        margin-top: calc(-90 / var(--design-width) * 100vw);
        margin-right: calc(-117 / var(--design-width) * 100vw);
    }
}
@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media screen and (min-width: 769px) {
    .c-section-products__outer-container {
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
        margin-inline: auto;
        padding-inline: calc(var(--contents-side-padding) / 2 / 1024 * 100vw);
    }
}
@media screen and (min-width: 1025px) {
    .c-section-products__outer-container {
        padding-inline: calc(var(--contents-side-padding) * 1px);
    }
}
.c-section-products__container {
    padding-block: 59px 80px;
    background-color: var(--color-white-1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 769px) {
    .c-section-products__container {
        position: relative;
        z-index: 20;
    }
}
@media screen and (max-width: 768px) {
    .c-section-products__container {
        padding-block: calc(38 / var(--design-width) * 100vw) calc(100 / var(--design-width) * 100vw);
        border-radius: calc(40 / var(--design-width) * 100vw);
    }
}
.c-section-products__container::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/bg.png) repeat 0 0/50px 50px;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .c-section-products__container::before {
        background-size: calc(50 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-products__contents {
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 860px) and (min-width: 769px) {
    .c-section-products__contents {
        padding-inline: 40px;
    }
}
.c-section-products__ttl-en {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .c-section-products__ttl-en {
        width: calc(198 / var(--design-width) * 100vw);
    }
}
.c-section-products__ttl-jp {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .c-section-products__ttl-jp {
        width: calc(335 / var(--design-width) * 100vw);
        margin-top: calc(15 / var(--design-width) * 100vw);
    }
}
.c-section-products__note {
    margin-top: 18px;
    font-size: calc(12 / var(--root-fz) * 1rem);
    font-weight: 600;
    text-align: right;
}
@media screen and (max-width: 768px) {
    .c-section-products__note {
        margin-top: calc(28 / var(--design-width) * 100vw);
        padding-inline: calc(28 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-section-products__anchor {
    margin-top: 31px;
}
@media screen and (max-width: 768px) {
    .c-section-products__anchor {
        margin-top: calc(21 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-recipe
--------------------------------------------- */
.c-section-recipe {
    padding-block: calc(var(--anchor-padding) * 1px) 94px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .c-section-recipe {
        padding-block: 0 calc(150 / var(--design-width) * 100vw);
    }
}
.c-section-recipe__container {
    position: relative;
}
.c-section-recipe__ttl {
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .c-section-recipe__ttl {
        width: calc(444 / var(--design-width) * 100vw);
    }
}
.c-section-recipe__ttl img {
    display: block;
    margin-inline: auto;
}
.c-section-recipe__body {
    margin-top: 30px;
}
@media screen and (max-width: 768px) {
    .c-section-recipe__body {
        width: calc(670 / var(--design-width) * 100vw);
        margin-inline: auto;
        margin-top: calc(52 / var(--design-width) * 100vw);
    }
}
.c-section-recipe__banner {
    margin-inline: auto;
    position: relative;
}
@media screen and (min-width: 769px) {
    .c-section-recipe__banner {
        max-width: 750px;
    }
}
.c-section-recipe__banner + .c-section-recipe__banner {
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    .c-section-recipe__banner + .c-section-recipe__banner {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.c-section-recipe__banner-link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-recipe__banner-link {
        transition: opacity var(--hover-duration);
    }
    .c-section-recipe__banner-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

/* ---------------------------------------------
*   c-section-modal
--------------------------------------------- */
.c-section-modal__contents {
    display: grid;
    grid-template-columns: 48.7804878049% 1fr;
    gap: 40px;
}
@media screen and (max-width: 768px) {
    .c-section-modal__contents {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-modal__img {
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
    .c-section-modal__img {
        width: calc(430 / var(--design-width) * 100vw);
        margin-inline: auto;
    }
}
.c-section-modal__img img {
    width: 73.75%;
}
@media screen and (max-width: 768px) {
    .c-section-modal__img img {
        width: calc(317 / var(--design-width) * 100vw);
    }
}
.c-section-modal__ttl {
    font-size: calc(27 / var(--root-fz) * 1rem);
    font-weight: bold;
    font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
    .c-section-modal__ttl {
        font-size: calc(36 / var(--root-fz) * 1rem);
    }
}
.c-section-modal__txt {
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 2;
    font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
    .c-section-modal__txt {
        font-size: calc(28 / var(--root-fz) * 1rem);
        line-height: 1.6428571429;
    }
}
.c-section-modal__txt:first-of-type {
    margin-top: 10px;
}
@media screen and (max-width: 768px) {
    .c-section-modal__txt:first-of-type {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-modal__txt + .c-section-modal__txt {
    margin-top: 26px;
}
@media screen and (max-width: 768px) {
    .c-section-modal__txt + .c-section-modal__txt {
        margin-top: calc(46 / var(--design-width) * 100vw);
    }
}
.c-section-modal__table {
    margin-top: 42px;
}
@media screen and (max-width: 768px) {
    .c-section-modal__table {
        margin-top: calc(48 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
.c-slider__slide img {
    transform: scale(1);
    transition: transform 8s;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.is-show .c-slider__slide.is-active img {
    transform: scale(1.075);
}

.c-slider__img--first {
    position: absolute;
    inset: 0;
    z-index: 10;
}
.is-show .c-slider__img--first {
    transition: opacity 0.3s 8s, visibility 0.3s 8s;
    opacity: 0;
    visibility: hidden;
}

.c-slider__img-balloon {
    width: 19.9029126214%;
    position: absolute;
    top: 18.2%;
    left: 50.8%;
    transform: scale(0.3);
    transform-origin: bottom left;
    opacity: 0;
    /* 最初の1回だけ弾む */
}
@media screen and (max-width: 768px) {
    .c-slider__img-balloon {
        width: calc(262 / var(--design-width) * 100vw);
        top: 20.2%;
        left: 60.8%;
    }
}
.is-show .c-slider__img-balloon {
    animation: naturalPoyonOnce 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.9s forwards;
}

@keyframes naturalPoyonOnce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
.c-table {
    width: 100%;
}
.c-table, .c-table__td, .c-table__th {
    border: 1px solid var(--color-base-1);
    border-collapse: collapse;
}
@media screen and (max-width: 768px) {
    .c-table, .c-table__td, .c-table__th {
        border-width: calc(2 / var(--design-width) * 100vw);
    }
}
.c-table__td, .c-table__th {
    padding: 18.25px 20px;
    color: var(--color-base-1);
    font-size: calc(15 / var(--root-fz) * 1rem);
    letter-spacing: 0;
    font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
    .c-table__td, .c-table__th {
        padding: calc(25 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw);
        font-size: calc(30 / var(--root-fz) * 1rem);
        line-height: 1.6666666667;
    }
}
.c-table__th {
    width: 150px;
}
@media screen and (max-width: 768px) {
    .c-table__th {
        width: calc(170 / var(--design-width) * 100vw);
    }
}
.c-table__td {
    width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
    .c-table__td {
        width: calc(100% - 165 / var(--design-width) * 100vw);
    }
}
.c-table__td a {
    display: inline;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-base-1);
}
@media screen and (max-width: 768px) {
    .c-table__td a {
        padding-bottom: calc(4 / var(--design-width) * 100vw);
        border-width: calc(2 / var(--design-width) * 100vw);
    }
}
.c-table__td a::after {
    content: "";
    display: inline-block;
    width: 12px;
    aspect-ratio: 1/1;
    margin-left: 6px;
    background: url(../img/ico_external.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
    .c-table__td a::after {
        width: calc(23 / var(--design-width) * 100vw);
        margin-left: calc(6 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-table__td a:hover {
        border-bottom-color: transparent;
    }
}

/* ---------------------------------------------
*   c-tile-1
--------------------------------------------- */
.c-tile-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 70px calc(30 / var(--contents-inner-width) * 100%);
}
@media screen and (max-width: 1024px) {
    .c-tile-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .c-tile-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(80 / var(--design-width) * 100vw) calc(38 / var(--design-width) * 100vw);
    }
}

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

/* ---------------------------------------------
*   display
--------------------------------------------- */
.display-inline-block {
    display: inline-block !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-fadein {
    opacity: 0;
}
.js-fadein.is-active {
    opacity: 1;
    transition: opacity 1s;
}

/* ---------------------------------------------
*   ローディング
--------------------------------------------- */
.js-loading {
    transition: opacity 0.8s, visibility 0.8s;
}
.js-loading.is-loaded {
    opacity: 0;
    visibility: hidden;
}

.js-loading-contents {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s, visibility 1.2s;
}
.js-loading-contents.is-show {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------
*   ページトップボタン
--------------------------------------------- */
/*  .js-pagetop-threshold
--------------------------------------------- */
.js-pagetop-threshold {
    position: absolute;
    top: 0;
    height: 300px;
}

/* ---------------------------------------------
*   ヘッダー スタイル変更
--------------------------------------------- */
/*  js-scroll-threshold
--------------------------------------------- */
.js-scroll-threshold {
    position: absolute;
    top: 0;
    height: calc(640 / var(--design-width) * 100vw);
}
@media screen and (max-width: 768px) {
    .js-scroll-threshold {
        height: calc(920 / var(--design-width) * 100vw);
    }
}

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