@keyframes textBlurIn_Static {
    0% {
        opacity: 0;
        filter: blur(15px);
        transform: scale(1.4);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
/*  l-header
--------------------------------------------- */
.l-header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    font-size: var(--root-fz);
    color: var(--color-white-1);
    line-height: 1.5;
    font-weight: 700;
    height: calc(var(--fixed-header-height) * 1px);
    padding: 0 40px;
    overflow: visible;
    transition: background-color 0.3s ease;
}
.l-header.is-bg {
    background-color: color-mix(in srgb, var(--color-purple-5) 70%, transparent);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}
@media screen and (max-width: 767px) {
    .l-header {
        padding: calc(16 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw);
        height: calc(72 / var(--design-width) * 100vw);
    }
}
.l-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--contents-width);
    margin: 0 auto;
    padding: 0 var(--contents-side-padding);
}
.l-header__logo-link {
    display: block;
    width: 183px;
    transform: translateZ(0);
    backface-visibility: hidden;
}
@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__logo-link img {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .l-header__logo-link {
        width: calc(122 / var(--design-width) * 100vw);
    }
}
.l-header__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.l-header__menu-right {
    display: flex;
    align-items: center;
    gap: calc(24 / var(--design-width) * 100vw);
    overflow: visible;
}
.l-header__hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(44 / var(--design-width) * 100vw);
    height: calc(40 / var(--design-width) * 100vw);
    padding: 0;
    background-color: var(--color-purple-3);
    border-radius: calc(4 / var(--root-fz) * 1rem);
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__hamburger {
        transition: opacity var(--hover-duration);
    }
    .l-header__hamburger:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (min-width: 767px) {
    .l-header__hamburger {
        display: none;
    }
}
.l-header__hamburger span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(20 / var(--root-fz) * 1rem);
    height: 2px;
    margin-left: calc(-10 / var(--root-fz) * 1rem);
    margin-top: -1px;
    background-color: var(--color-white-1);
    border-radius: calc(2 / var(--root-fz) * 1rem);
}
.l-header__hamburger span:nth-child(1) {
    transform: translateY(calc(-3.5 / var(--root-fz) * 1rem)) scaleY(0.5);
}
.l-header__hamburger span:nth-child(2) {
    transform: translateY(calc(3.5 / var(--root-fz) * 1rem)) scaleY(0.5);
}
.l-header__hamburger.is-active span:nth-child(1) {
    animation: line1-off 0.6s forwards;
}
.l-header__hamburger.is-active span:nth-child(2) {
    animation: line2-off 0.6s forwards;
}
.l-header__hamburger.is-open span:nth-child(1) {
    animation: line1-on 0.6s forwards;
}
.l-header__hamburger.is-open span:nth-child(2) {
    animation: line2-on 0.6s forwards;
}
@keyframes line1-on {
    0% {
        transform: translateY(calc(-3.5 / var(--root-fz) * 1rem)) rotate(0deg) scaleY(0.5);
    }
    50% {
        transform: translateY(0) rotate(0deg) scaleY(0.5);
    }
    100% {
        transform: translateY(0) rotate(30deg) scaleY(0.5);
    }
}
@keyframes line1-off {
    0% {
        transform: translateY(0) rotate(30deg) scaleY(0.5);
    }
    50% {
        transform: translateY(0) rotate(0deg) scaleY(0.5);
    }
    100% {
        transform: translateY(calc(-3.5 / var(--root-fz) * 1rem)) rotate(0deg) scaleY(0.5);
    }
}
@keyframes line2-on {
    0% {
        transform: translateY(calc(3.5 / var(--root-fz) * 1rem)) rotate(0deg) scaleY(0.5);
    }
    50% {
        transform: translateY(0) rotate(0deg) scaleY(0.5);
    }
    100% {
        transform: translateY(0) rotate(-30deg) scaleY(0.5);
    }
}
@keyframes line2-off {
    0% {
        transform: translateY(0) rotate(-30deg) scaleY(0.5);
    }
    50% {
        transform: translateY(0) rotate(0deg) scaleY(0.5);
    }
    100% {
        transform: translateY(calc(3.5 / var(--root-fz) * 1rem)) rotate(0deg) scaleY(0.5);
    }
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
.l-header-nav {
    display: none;
}
.l-header-nav__link {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .l-header-nav__link:hover {
        background-color: var(--color-purple-3);
    }
}
@media screen and (min-width: 767px) {
    .l-header-nav {
        display: block;
    }
    .l-header-nav__list {
        display: flex;
        align-items: center;
        gap: 9px;
    }
    .l-header-nav__item--contact-link {
        position: relative;
        display: block;
        z-index: 0;
        color: var(--color-base-1);
        background-color: var(--color-green-1);
        padding: 8px 20px;
        border-radius: 4px;
        overflow: hidden;
        margin-left: 9px;
    }
    .l-header-nav__item--contact-link::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(90deg, var(--color-purple-4) 0%, var(--color-green-1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
}
@media screen and (min-width: 767px) and (hover: hover) and (pointer: fine) {
    .l-header-nav__item--contact-link:hover::before {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
.l-global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100svh;
    padding-top: calc(76 / var(--design-width) * 100vw);
    color: var(--color-white-1);
    background-color: var(--color-purple-1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}
.l-global-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    background-color: color-mix(in srgb, var(--color-purple-5) 70%, transparent);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}
.l-global-nav__inner {
    height: calc(100svh - var(--fixed-header-height) / var(--design-width) * 100vw);
    width: calc(350 / var(--design-width) * 100%);
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
}
.l-global-nav__list {
    margin-bottom: calc(48 / var(--design-width) * 100vw);
}
.l-global-nav__link {
    position: relative;
    display: block;
    font-size: calc(20 / var(--design-width) * 100vw);
    font-weight: 700;
    padding: calc(24 / var(--design-width) * 100vw) 0;
    width: calc(313 / var(--design-width) * 100vw);
    margin: auto;
}
@media (hover: hover) and (pointer: fine) {
    .l-global-nav__link {
        transition: opacity var(--hover-duration);
    }
    .l-global-nav__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-global-nav__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(16 / var(--design-width) * 100vw);
    height: calc(16 / var(--design-width) * 100vw);
    background-image: url("../img/common/ico_arrow_2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.l-global-nav__item:nth-child(1), .l-global-nav__item:nth-child(3) {
    border-top: 1px solid var(--color-gray-1);
    border-bottom: 1px solid var(--color-gray-1);
}
.l-global-nav__sub-list {
    padding: 0 calc(16 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
}
.l-global-nav__sub-link {
    display: block;
    font-size: calc(16 / var(--design-width) * 100vw);
    font-weight: 400;
    padding: calc(8 / var(--design-width) * 100vw) 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
    .l-global-nav__sub-link {
        transition: opacity var(--hover-duration);
    }
    .l-global-nav__sub-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-global-nav__contact {
    color: var(--color-base-1);
    text-align: center;
    font-size: calc(20 / var(--design-width) * 100vw);
    font-weight: 700;
    background-color: var(--color-green-1);
    border-radius: calc(4 / var(--design-width) * 100vw);
    margin-bottom: calc(114 / var(--design-width) * 100vw);
}
.l-global-nav__link--2 {
    display: block;
    padding: calc(20 / var(--design-width) * 100vw);
}
@media (hover: hover) and (pointer: fine) {
    .l-global-nav__link--3 {
        transition: opacity var(--hover-duration);
    }
    .l-global-nav__link--3:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-global-nav__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(32 / var(--design-width) * 100vw);
}
.l-global-nav__policy {
    font-size: calc(16 / var(--design-width) * 100vw);
    font-weight: 400;
}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    background-color: var(--color-gray-2);
    padding: calc(41 / var(--root-fz) * 1rem) calc(108 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .l-footer {
        padding: calc(41 / var(--root-fz) * 1rem) calc(50 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .l-footer {
        padding: calc(43 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
    }
}
.l-footer__contents {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(39 / var(--root-fz) * 1rem);
    margin-bottom: calc(18 / var(--root-fz) * 1rem);
    margin-left: calc(-5 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-3);
}
@media screen and (max-width: 767px) {
    .l-footer__contents {
        flex-direction: column;
        padding-bottom: calc(41 / var(--root-fz) * 1rem);
        margin-bottom: calc(20 / var(--root-fz) * 1rem);
        margin-left: 0;
    }
}
.l-footer__left {
    display: flex;
    flex-direction: column;
    gap: calc(125 / var(--root-fz) * 1rem);
    margin-right: calc(20 / var(--root-fz) * 1rem);
    margin-left: calc(-3 / var(--root-fz) * 1rem);
    margin-top: calc(15 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1200px) {
    .l-footer__left {
        margin-right: 0;
        justify-content: space-between;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__left {
        gap: calc(28 / var(--root-fz) * 1rem);
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        border-bottom: 1px solid var(--color-gray-3);
    }
}
.l-footer__logo {
    display: block;
    width: calc(289 / var(--root-fz) * 1rem);
    transform: translateZ(0);
    backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__logo {
        transition: opacity var(--hover-duration);
    }
    .l-footer__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-footer__logo img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        width: calc(212 / var(--root-fz) * 1rem);
        margin-top: calc(13 / var(--root-fz) * 1rem);
    }
}
.l-footer__company {
    margin-left: calc(7 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .l-footer__company {
        margin-left: 0;
        margin-bottom: calc(51 / var(--root-fz) * 1rem);
    }
}
.l-footer__company-name {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: calc(10 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .l-footer__company-name {
        margin-bottom: calc(8 / var(--root-fz) * 1rem);
    }
}
.l-footer__company-address {
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
}
.l-footer__right {
    position: relative;
    min-width: 0;
}
@media screen and (max-width: 767px) {
    .l-footer__right {
        width: 100%;
    }
}
.l-footer-nav {
    display: flex;
    align-items: start;
    gap: calc(40 / var(--root-fz) * 1rem);
    width: 100%;
    padding: calc(5 / var(--contents-width) * 100%) 0;
    border-left: 1px solid var(--color-gray-3);
    padding-left: calc(72 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1200px) {
    .l-footer-nav {
        flex-direction: column;
        gap: calc(23 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .l-footer-nav {
        flex-direction: column;
        border-left: none;
        padding: calc(30 / var(--root-fz) * 1rem) 0 0;
        padding-left: 0;
    }
}
.l-footer-nav__heading {
    display: block;
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: calc(36 / var(--root-fz) * 1rem);
    margin-bottom: calc(13 / var(--root-fz) * 1rem);
    transition: 0.3s;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
}
.l-footer-nav__heading::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(1em + (1lh - 1em) / 2 + 2 / var(--root-fz) * 1rem);
    width: 100%;
    height: 1px;
    background-color: #4750B3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__heading:hover::after {
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    .l-footer-nav__heading {
        margin-bottom: calc(17 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__heading:hover {
        color: var(--color-purple-3);
    }
}
.l-footer-nav__heading--1 {
    margin-right: calc(24 / var(--root-fz) * 1rem);
}
.l-footer-nav__heading--2 {
    margin-bottom: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .l-footer-nav__heading--2 {
        margin-bottom: calc(7 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .l-footer-nav__heading--3, .l-footer-nav__heading--4 {
        margin-bottom: 0;
    }
}
.l-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-black-1);
    font-weight: 400;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .l-footer__bottom {
        flex-direction: column-reverse;
        align-items: start;
        gap: calc(17 / var(--root-fz) * 1rem);
    }
}
.l-footer__copyright {
    font-size: calc(12 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
}
.l-footer__link {
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.5;
    text-decoration: none;
    color: var(--color-base-1);
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
}
.l-footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(1em + (1lh - 1em) / 2 + 2 / var(--root-fz) * 1rem);
    width: 100%;
    height: 1px;
    background-color: var(--color-base-1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__link:hover::after {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   c-block-pagetop
--------------------------------------------- */
.c-block-pagetop {
    --pagetop-follow: calc(60 / var(--root-fz) * 1rem);
    --pagetop-stop-inset: calc(336 / var(--root-fz) * 1rem);
    --footer-margin-top: calc(var(--pagetop-follow) + var(--pagetop-stop-inset));
    position: sticky;
    bottom: var(--footer-margin-top);
    z-index: 99;
    width: 100%;
    height: max(0px, 100vh - var(--footer-margin-top));
    margin-top: min(0px, -100vh + var(--footer-margin-top));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1024px) {
    .c-block-pagetop {
        --pagetop-follow: calc(80 / var(--root-fz) * 1rem);
        --pagetop-stop-inset: calc(550 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-block-pagetop {
        --pagetop-follow: calc(30 / var(--root-fz) * 1rem);
        --pagetop-stop-inset: calc(620 / var(--root-fz) * 1rem);
    }
}
.c-block-pagetop.is-show {
    opacity: 1;
    visibility: visible;
}
.c-block-pagetop__btn {
    position: absolute;
    right: calc(112 / var(--root-fz) * 1rem);
    bottom: calc(-1 * var(--pagetop-stop-inset));
    z-index: 9;
    pointer-events: none;
}
@media screen and (max-width: 1024px) {
    .c-block-pagetop__btn {
        right: calc(55 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-block-pagetop__btn {
        right: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-block-pagetop.is-show .c-block-pagetop__btn {
    pointer-events: auto;
}
.c-block-pagetop__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(48 / var(--root-fz) * 1rem);
    height: calc(48 / var(--root-fz) * 1rem);
    border-radius: 50%;
    overflow: hidden;
    color: var(--color-white-1);
    font-size: 1.25rem;
    text-decoration: none;
    background: linear-gradient(0deg, var(--color-green-1) 0%, var(--color-purple-4) 100%);
}
.c-block-pagetop__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-purple-1);
    border-radius: inherit;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-pagetop__link:hover::before {
        opacity: 0;
    }
}
.c-block-pagetop__arrow {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
    transform: rotate(-90deg);
    overflow: hidden;
}
.c-block-pagetop__arrow::before, .c-block-pagetop__arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/img/common/ico_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
}
.c-block-pagetop__arrow::after {
    transform: translateX(-100%);
    background-image: none;
    background-color: var(--color-base-1);
    -webkit-mask-image: url("/img/common/ico_arrow.svg");
            mask-image: url("/img/common/ico_arrow.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}
@media (hover: hover) and (pointer: fine) {
    .c-block-pagetop__link:hover .c-block-pagetop__arrow::before {
        animation-name: transformRightLeft;
        animation-delay: 0s;
    }
    .c-block-pagetop__link:hover .c-block-pagetop__arrow::after {
        animation-name: transformLeftRight;
        animation-delay: 0.2s;
    }
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   team modal
--------------------------------------------- */
.c-box-team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9999;
}
.c-box-team-modal.is-open {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .c-box-team-modal.is-open {
        align-items: flex-start;
        padding-top: calc(var(--fixed-header-height) * 1px + 16 / var(--root-fz) * 1rem);
        padding-bottom: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-box-team-modal.is-open {
        padding-top: calc(72 / var(--design-width) * 100vw + 16 / var(--root-fz) * 1rem);
        padding-bottom: calc(16 / var(--root-fz) * 1rem + env(safe-area-inset-bottom));
    }
}
.c-box-team-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--color-purple-1) 40%, transparent);
    background-blend-mode: multiply;
}
.c-box-team-modal__content {
    position: relative;
    z-index: 1;
    background-color: var(--color-white-1);
    width: calc(808 / var(--root-fz) * 1rem);
    max-width: 808px;
    max-height: 506px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(40 / var(--root-fz) * 1rem) calc(40 / var(--root-fz) * 1rem) calc(48 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .c-box-team-modal__content {
        width: 95%;
        height: auto;
        max-height: calc(100dvh - var(--fixed-header-height) * 1px - 32 / var(--root-fz) * 1rem);
        padding: calc(20 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-box-team-modal__content {
        height: auto;
        max-height: calc(100dvh - 72 / var(--design-width) * 100vw - 32 / var(--root-fz) * 1rem - env(safe-area-inset-bottom));
    }
}
.c-box-team-modal__close-btn {
    position: absolute;
    top: calc(20 / var(--root-fz) * 1rem);
    right: calc(20 / var(--root-fz) * 1rem);
    width: calc(36 / var(--root-fz) * 1rem);
    height: calc(36 / var(--root-fz) * 1rem);
    padding: calc(12 / var(--root-fz) * 1rem);
    background-color: var(--color-base-1);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.c-box-team-modal__close-btn img {
    display: block;
    width: calc(12 / var(--root-fz) * 1rem);
    height: calc(12 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-box-team-modal__close-btn {
        top: calc(16 / var(--root-fz) * 1rem);
        right: calc(16 / var(--root-fz) * 1rem);
    }
    body.is-windows .c-box-team-modal__close-btn {
        right: calc(10 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-box-team-modal__close-btn:hover {
        background-color: var(--color-purple-3);
    }
}
.c-box-team-modal__top {
    display: flex;
    align-items: center;
    gap: calc(24 / var(--root-fz) * 1rem);
    margin-bottom: calc(28 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-box-team-modal__top {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(20 / var(--root-fz) * 1rem);
        margin-bottom: calc(20 / var(--root-fz) * 1rem);
    }
}
.c-box-team-modal__img {
    width: calc(352 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-box-team-modal__img {
        width: calc(280 / var(--root-fz) * 1rem);
    }
}
.c-box-team-modal__txt-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--root-fz) * 1rem);
}
.c-box-team-modal__name {
    color: var(--color-base-1);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.25;
}
.c-box-team-modal__name-exp {
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 700;
    margin-bottom: calc(8 / var(--root-fz) * 1rem);
}
.c-box-team-modal__position {
    color: var(--color-black-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.25;
}
.c-box-team-modal__text {
    color: var(--color-black-2);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
}

/* ---------------------------------------------
*   c-btn-lang
--------------------------------------------- */
.c-btn-lang {
    position: relative;
}
.c-btn-lang--2::before {
    display: none;
}
@media screen and (max-width: 767px) and (hover: hover) and (pointer: fine) {
    .c-btn-lang--2 {
        transition: opacity var(--hover-duration);
    }
    .c-btn-lang--2:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-btn-lang__trigger, .c-btn-lang__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--color-white-1);
    padding: 7px 19px;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    font-size: calc(16 / var(--root-fz) * 1rem);
    text-decoration: none;
    transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-btn-lang__trigger, .c-btn-lang__link {
        text-align: center;
        gap: 0;
        width: calc(46 / var(--root-fz) * 1rem);
        height: calc(40 / var(--root-fz) * 1rem);
        padding: 0;
        border-radius: calc(4 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-lang__trigger--1:hover {
        background-color: var(--color-purple-3);
        border: 1px solid transparent;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-lang__link:hover {
        background-color: var(--color-purple-3);
        border: 1px solid transparent;
    }
}
.c-btn-lang::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 767px) {
    .c-btn-lang::before {
        left: initial;
        right: calc(-12 / var(--root-fz) * 1rem);
        height: calc(32 / var(--root-fz) * 1rem);
    }
}
.c-btn-lang__icon {
    width: 16px;
    height: 16px;
}
.c-btn-lang__icon:is(.c-btn-lang__link *) {
    flex-shrink: 0;
}
.c-btn-lang__icon img {
    display: block;
}
@media screen and (max-width: 767px) {
    .c-btn-lang__icon {
        display: none;
    }
}
.c-btn-lang__dropdown {
    position: absolute;
    top: calc(55 / var(--root-fz) * 1rem);
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}
@media screen and (max-width: 767px) {
    .c-btn-lang__dropdown {
        top: calc(45 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-btn-lang__dropdown--2 {
        top: calc(-45 / var(--root-fz) * 1rem);
    }
}
.c-btn-lang.is-open .c-btn-lang__dropdown {
    opacity: 1;
    visibility: visible;
}

body.is-nav-open .c-btn-lang__trigger--1 {
    display: none;
}
body.is-nav-open .c-btn-lang:has(.c-btn-lang__trigger--1)::before {
    display: none;
}

/* ---------------------------------------------
*   c-btn-purple
--------------------------------------------- */
.c-btn-purple {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(16 / var(--root-fz) * 1rem);
    color: var(--color-white-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    background-color: var(--color-purple-3);
    width: calc(184 / var(--root-fz) * 1rem);
    padding: calc(12 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
    text-decoration: none;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-btn-purple {
        width: 100%;
        font-size: calc(16 / var(--root-fz) * 1rem);
        padding: calc(12 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-btn-purple--pc::after {
        display: none;
    }
}
.c-btn-purple--prev {
    flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
    .c-btn-purple--prev, .c-btn-purple--next {
        width: calc(167 / var(--root-fz) * 1rem) !important;
    }
}
.c-btn-purple::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-purple-1);
    mix-blend-mode: color-dodge;
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.c-btn-purple__arrow,
.c-btn-purple > span {
    position: relative;
    z-index: 1;
}
.c-btn-purple__arrow {
    display: inline-block;
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-btn-purple__arrow {
        display: none;
    }
}
.c-btn-purple__arrow--prev {
    transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
    .c-btn-purple__arrow--prev, .c-btn-purple__arrow--next, .c-btn-purple__arrow--careers {
        display: block;
    }
}
.c-btn-purple__arrow::before, .c-btn-purple__arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/img/common/ico_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
}
.c-btn-purple__arrow::after {
    transform: translateX(-100%);
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-purple:hover::before {
        opacity: 1;
    }
    .c-btn-purple:hover .c-btn-purple__arrow::before {
        animation-name: transformRightLeft;
        animation-delay: 0s;
    }
    .c-btn-purple:hover .c-btn-purple__arrow::after {
        animation-name: transformLeftRight;
        animation-delay: 0.2s;
    }
}
@keyframes transformLeftRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes transformRightLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ---------------------------------------------
*   c-card-news
--------------------------------------------- */
.c-card-news {
    position: relative;
    width: calc(392 / var(--root-fz) * 1rem);
    height: 100%;
    background: var(--color-white-2);
    border-radius: calc(8 / var(--root-fz) * 1rem);
    padding: calc(32 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .c-card-news {
        padding: calc(24 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-card-news--1 {
        width: calc(310 / var(--root-fz) * 1rem);
        padding: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-card-news--2 {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-card-news--2 {
        width: calc(350 / var(--root-fz) * 1rem);
    }
}
.c-card-news::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(270deg, var(--color-green-1) 0%, var(--color-purple-4) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: opacity;
}
.c-card-news__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.c-card-news__tag {
    width: -moz-fit-content;
    width: fit-content;
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 600;
    background-color: var(--color-purple-2);
    border-radius: calc(4 / var(--root-fz) * 1rem);
    line-height: 1.5;
    margin-bottom: calc(13 / var(--root-fz) * 1rem);
    padding: calc(4 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
}
.c-card-news__txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.5;
}
.c-card-news__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: calc(31 / var(--root-fz) * 1rem);
}
.c-card-news__date {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
}
.c-card-news__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(40 / var(--root-fz) * 1rem);
    height: calc(40 / var(--root-fz) * 1rem);
    background-color: var(--color-purple-3);
    border-radius: calc(4 / var(--root-fz) * 1rem);
    padding: calc(12 / var(--root-fz) * 1rem);
}
.c-card-news__btn-arrow {
    position: relative;
    display: inline-block;
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
    overflow: hidden;
}
.c-card-news__btn-arrow::before, .c-card-news__btn-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/img/common/ico_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
}
.c-card-news__btn-arrow::after {
    transform: translateX(-100%);
}
@media (hover: hover) and (pointer: fine) {
    .c-card-news:hover {
        box-shadow: 0 2px 24px 0 color-mix(in srgb, var(--color-purple-1) 20%, transparent);
    }
    .c-card-news:hover::before {
        opacity: 1;
    }
    .c-card-news:hover .c-card-news__btn-arrow::before {
        animation-name: transformRightLeft;
        animation-delay: 0s;
    }
    .c-card-news:hover .c-card-news__btn-arrow::after {
        animation-name: transformLeftRight;
        animation-delay: 0.2s;
    }
}

/* ---------------------------------------------
*   c-card-diff
--------------------------------------------- */
.c-card-diff {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: calc(16 / var(--root-fz) * 1rem);
    height: 100%;
    background-color: var(--color-white-2);
    padding: calc(20 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-card-diff {
        padding: calc(16 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
        gap: calc(12 / var(--root-fz) * 1rem);
        width: calc(350 / var(--root-fz) * 1rem);
    }
}
.c-card-diff__ttl {
    display: flex;
    align-items: center;
    gap: calc(13 / var(--root-fz) * 1rem);
}
.c-card-diff__ttl-num {
    color: var(--color-green-1);
    font-size: calc(88 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-card-diff__ttl-num {
        font-size: calc(56 / var(--root-fz) * 1rem);
    }
}
.c-card-diff__ttl-txt {
    font-size: calc(22 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-black-2);
}
@media screen and (max-width: 767px) {
    .c-card-diff__ttl-txt {
        font-size: calc(20 / var(--root-fz) * 1rem);
    }
}
.c-card-diff__img {
    width: calc(324 / var(--root-fz) * 1rem);
    height: auto;
}
.c-card-diff__img img {
    width: 100%;
}
@media screen and (max-width: 1400px) {
    .c-card-diff__img {
        width: 100%;
    }
}
.c-card-diff__text {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-base-1);
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    position: relative;
    overflow-x: clip;
    background-color: var(--color-black-3);
    padding: calc(189 / var(--root-fz) * 1rem) calc(40 / var(--root-fz) * 1rem) calc(145 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv {
        padding: calc(433 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(80 / var(--root-fz) * 1rem);
    }
}
.c-kv__inner {
    position: relative;
    width: calc(640 / var(--root-fz) * 1rem);
    margin: auto;
    text-align: center;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .c-kv__inner {
        width: 100%;
        text-align: left;
    }
}
.c-kv__ttl {
    color: var(--color-green-1);
    font-size: calc(80 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv__ttl {
        font-size: calc(44 / var(--root-fz) * 1rem);
    }
}
.c-kv__ttl-line {
    display: block;
    opacity: 0;
    transform-origin: center center;
    animation: textBlurIn_Static 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}
.c-kv__ttl-line.js-anim-blur-scale:not(.is-show) {
    animation: none;
}
@media screen and (max-width: 767px) {
    .c-kv__ttl-line {
        width: -moz-fit-content;
        width: fit-content;
    }
}
.c-kv__ttl-line--1, .c-kv__ttl-line--2 {
    margin-left: calc(-21 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv__ttl-line--1, .c-kv__ttl-line--2 {
        margin-left: 0;
    }
}
.c-kv__bottom.js-fade-down {
    transition-delay: 1.2s;
    transition-duration: 1.1s;
}
.c-kv__text {
    font-size: calc(24 / var(--root-fz) * 1rem);
    color: var(--color-white-1);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: calc(48 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv__text {
        font-size: calc(16 / var(--root-fz) * 1rem);
        width: 100%;
        margin-bottom: calc(32 / var(--root-fz) * 1rem);
    }
}
.c-kv__btn-wrap {
    display: flex;
    gap: calc(16 / var(--root-fz) * 1rem);
    justify-content: center;
    opacity: 0;
    transform-origin: center center;
    animation: textBlurIn_Static 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}
.c-kv__btn-wrap.js-anim-blur-scale:not(.is-show) {
    animation: none;
}
@media screen and (max-width: 767px) {
    .c-kv__btn-wrap {
        gap: calc(13 / var(--root-fz) * 1rem);
        justify-content: start;
    }
}
.c-kv__btn {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    border-radius: calc(8 / var(--root-fz) * 1rem);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-kv__btn {
        font-size: calc(18 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-kv__btn:hover {
        box-shadow: 0 2px 24px 0 var(--color-purple-3);
    }
}
.c-kv__btn--1 {
    background: linear-gradient(90deg, var(--color-purple-4) 0%, var(--color-green-1) 100%);
}
.c-kv__btn--2 {
    background-color: var(--color-white-1);
}
.c-kv__btn-link {
    display: flex;
    align-items: center;
    gap: calc(16 / var(--root-fz) * 1rem);
    padding: calc(16 / var(--root-fz) * 1rem) calc(28 / var(--root-fz) * 1rem);
    transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-kv__btn-link {
        gap: calc(12 / var(--root-fz) * 1rem);
        padding: calc(16 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
    }
}
.c-kv__btn-link::before, .c-kv__btn-link::after {
    content: "";
    display: block;
    flex: none;
    align-self: center;
    width: calc(8 / var(--root-fz) * 1rem);
    height: calc(8 / var(--root-fz) * 1rem);
    min-width: 0;
    min-height: 0;
    background-image: url("/img/common/ico_kv-btn.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-kv__btn-link::before, .c-kv__btn-link::after {
        width: calc(6 / var(--root-fz) * 1rem);
        height: calc(6 / var(--root-fz) * 1rem);
    }
}
.c-kv__btn-link::after {
    width: 0;
    height: 0;
    opacity: 0;
    margin-left: calc(-16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-kv__btn-link::after {
        margin-left: calc(-12 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-kv__btn-link:hover {
        background-color: color-mix(in srgb, var(--color-white-1) 50%, transparent);
        box-shadow: 0 2px 24px 0 var(--color-purple-3);
    }
    .c-kv__btn-link:hover::before {
        width: 0;
        height: 0;
        opacity: 0;
        margin-right: calc(-16 / var(--root-fz) * 1rem);
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-kv__btn-link:hover::before {
        margin-right: calc(-12 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-kv__btn-link:hover::after {
        width: calc(8 / var(--root-fz) * 1rem);
        height: calc(8 / var(--root-fz) * 1rem);
        opacity: 1;
        margin-left: 0;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-kv__btn-link:hover::after {
        width: calc(6 / var(--root-fz) * 1rem);
        height: calc(6 / var(--root-fz) * 1rem);
    }
}
.c-kv__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    width: calc(1440 / var(--root-fz) * 1rem);
    -o-object-fit: cover;
       object-fit: cover;
    clip-path: inset(0 calc(50% - 1440 / var(--root-fz) * 0.5rem));
}
@media screen and (max-width: 767px) {
    .c-kv__video {
        top: 47%;
    }
}

/* ---------------------------------------------
*   c-lower-page-kv
--------------------------------------------- */
.c-lower-page-kv {
    background-color: var(--color-purple-1);
    padding: calc(121 / var(--root-fz) * 1rem) calc(108 / var(--root-fz) * 1rem) calc(51 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .c-lower-page-kv {
        padding: calc(91 / var(--root-fz) * 1rem) calc(50 / var(--root-fz) * 1rem) calc(34 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-lower-page-kv {
        padding: calc(91 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(34 / var(--root-fz) * 1rem);
    }
}
.c-lower-page-kv__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list-news
--------------------------------------------- */
.c-list-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .c-list-news {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-list-news {
        grid-template-columns: repeat(1, 1fr);
    }
}
.c-list-news-wrap {
    border-top: 1px solid var(--color-gray-4);
}
.c-list-news--news {
    gap: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-news--news {
        gap: calc(15 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   c-list-diff
--------------------------------------------- */
.c-list-diff {
    display: flex;
    gap: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (min-width: 911px) {
    .c-list-diff {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        -moz-column-gap: calc(24 / var(--root-fz) * 1rem);
             column-gap: calc(24 / var(--root-fz) * 1rem);
        row-gap: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 910px) {
    .c-list-diff {
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .c-list-diff {
        gap: calc(16 / var(--root-fz) * 1rem);
        flex-direction: column;
    }
}
.c-list-diff__item {
    display: flex;
    flex: 1;
}
@media screen and (min-width: 911px) {
    .c-list-diff__item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }
}

/* ---------------------------------------------
*   c-list-sort
--------------------------------------------- */
.c-list-sort {
    display: flex;
    gap: calc(19.5 / var(--root-fz) * 1rem);
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-block: calc(3 / var(--root-fz) * 1rem);
}
.c-list-sort::-webkit-scrollbar {
    display: none;
}
.c-list-sort__item {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.5;
    letter-spacing: 0.03em;
}
.c-list-sort__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-sort__item:hover::after {
        opacity: 0;
    }
}
.c-list-sort__item--current {
    color: var(--color-purple-3);
    font-weight: 700;
}
.c-list-sort__item--current::after {
    content: none;
}

/* ---------------------------------------------
*   c-list-team
--------------------------------------------- */
.c-list-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(40 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    margin-top: calc(30 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .c-list-team {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .c-list-team {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(28 / var(--root-fz) * 1rem) 0;
        margin-top: calc(20 / var(--root-fz) * 1rem);
    }
}
.c-list-team__item {
    display: flex;
    flex-direction: column;
    gap: calc(21 / var(--root-fz) * 1rem);
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-team__item:hover .c-list-team__img,
    .c-list-team__item:hover .c-list-team__txt-wrap {
        opacity: 0.8;
    }
    .c-list-team__item:hover .c-btn-purple::before {
        opacity: 1;
    }
    .c-list-team__item:hover .c-btn-purple__arrow::before {
        animation-name: transformRightLeft;
        animation-delay: 0s;
    }
    .c-list-team__item:hover .c-btn-purple__arrow::after {
        animation-name: transformLeftRight;
        animation-delay: 0.2s;
    }
}
@media screen and (max-width: 910px) {
    .c-list-team__item {
        gap: calc(14 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
        width: 100%;
    }
}
.c-list-team__img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: calc(8 / var(--root-fz) * 1rem);
    transition: opacity 0.3s ease;
}
.c-list-team__txt-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(8 / var(--root-fz) * 1rem);
    line-height: 1.25;
    transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-list-team__txt-wrap {
        gap: calc(4 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
    }
}
.c-list-team__name {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 700;
}
.c-list-team__name-exp {
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 700;
    margin-top: calc(-2 / var(--root-fz) * 1rem);
    margin-bottom: calc(7 / var(--root-fz) * 1rem);
}
.c-list-team__position {
    color: var(--color-black-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
}
.c-list-team__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: auto;
}
@media screen and (max-width: 900px) {
    .c-list-team__btn {
        width: calc(110 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   c-list-investors
--------------------------------------------- */
.c-list-investors {
    display: flex;
    gap: calc(24 / var(--root-fz) * 1rem);
    margin-top: calc(33 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .c-list-investors {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(16 / var(--root-fz) * 1rem);
        margin-top: calc(20 / var(--root-fz) * 1rem);
    }
}
.c-list-investors__item {
    width: calc(392 / var(--root-fz) * 1rem);
    border: 1px solid var(--color-gray-4);
    border-radius: calc(8 / var(--root-fz) * 1rem);
    outline: 2px solid transparent;
    transition: border-color 0.3s ease, outline-color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-list-investors__item {
        width: calc(167 / var(--root-fz) * 1rem);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-investors__item:hover {
        border-color: var(--color-purple-3);
        outline: 2px solid var(--color-purple-3);
    }
}
@media screen and (max-width: 910px) {
    .c-list-investors__item img {
        width: 100%;
    }
}
.c-list-investors__link {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: inherit;
}

/* ---------------------------------------------
*   c-list-footer
--------------------------------------------- */
.c-list-footer {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    list-style: none;
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
}
@media screen and (max-width: 1024px) {
    .c-list-footer {
        margin-bottom: calc(5 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .c-list-footer {
        gap: calc(15 / var(--root-fz) * 1rem);
        margin-bottom: 0;
    }
}
@media screen and (max-width: 900px) {
    .c-list-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
.c-list-footer--news {
    padding-top: calc(9 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-list-footer--news {
        padding-top: 0;
        margin-left: 0;
    }
}
.c-list-footer--2cols {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: calc(16 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem);
}
.c-list-footer--2cols .c-list-footer__item {
    margin-bottom: 0;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-list-footer--2cols {
        display: flex;
        flex-wrap: wrap;
        gap: calc(11 / var(--root-fz) * 1rem) calc(18 / var(--root-fz) * 1rem);
    }
    .c-list-footer--2cols .c-list-footer__item {
        margin-bottom: 0;
    }
}
.c-list-footer__link {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
}
.c-list-footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(1em + (1lh - 1em) / 2 + 2 / var(--root-fz) * 1rem);
    width: 100%;
    height: 1px;
    background-color: var(--color-base-1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-footer__link:hover::after {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   c-pagination
--------------------------------------------- */
.c-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(23 / var(--root-fz) * 1rem);
    margin-top: calc(64 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-pagination {
        gap: calc(15 / var(--root-fz) * 1rem);
        margin-top: calc(32 / var(--root-fz) * 1rem);
    }
}
.c-pagination[hidden] {
    display: none;
}
.c-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-pagination__btn:hover:not(:disabled) {
        background-color: var(--color-purple-2);
    }
}
.c-pagination__btn:disabled {
    display: none;
    cursor: not-allowed;
}
.c-pagination__arrow {
    display: block;
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
    background-image: url("/img/common/ico_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.c-pagination__arrow--prev {
    transform: scaleX(-1);
}

/* ---------------------------------------------
*   c-section-xx
--------------------------------------------- */
/* ---------------------------------------------
*   c-slider-news
--------------------------------------------- */
.c-slider-news__list {
    align-items: stretch;
}
.c-slider-news__track {
    overflow: hidden;
    position: relative;
    padding-block: calc(26 / var(--root-fz) * 1rem);
    padding-inline: calc(24 / var(--root-fz) * 1rem) !important;
    padding-left: calc(23 / var(--root-fz) * 1rem) !important;
    margin-block: calc(-26 / var(--root-fz) * 1rem);
    transform: translateX(calc(-24 / var(--root-fz) * 1rem));
}
@media screen and (max-width: 767px) {
    .c-slider-news__track {
        left: initial;
        width: initial;
        padding: initial !important;
        margin-block: initial;
        padding-inline: initial !important;
        transform: initial;
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: calc(20 / var(--root-fz) * 1rem);
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    transform-origin: center center;
    animation: textBlurIn_Static 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}
.c-ttl.js-anim-blur-scale:not(.is-show) {
    animation: none;
}
@media screen and (max-width: 767px) {
    .c-ttl {
        font-size: calc(32 / var(--root-fz) * 1rem);
        margin-bottom: calc(20 / var(--root-fz) * 1rem);
    }
}
.c-ttl--news {
    margin-bottom: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-ttl--news {
        margin-bottom: calc(16 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   c-ttl--lower
--------------------------------------------- */
.c-ttl--lower {
    color: var(--color-white-1);
    font-size: calc(96 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.25;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    transform-origin: center center;
    animation: textBlurIn_Static 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}
.c-ttl--lower.js-anim-blur-scale:not(.is-show) {
    animation: none;
}
@media screen and (max-width: 767px) {
    .c-ttl--lower {
        font-size: calc(44 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-news
--------------------------------------------- */
.p-top-news {
    position: relative;
    overflow-x: clip;
    background-color: var(--color-purple-2);
    padding: 0 calc(108 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-news {
        padding: 0 calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-top-news {
        padding: 0 calc(20 / var(--root-fz) * 1rem);
    }
}
.p-top-news__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(80 / var(--root-fz) * 1rem) 0 calc(96 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-news__inner {
        padding: calc(64 / var(--root-fz) * 1rem) 0 calc(80 / var(--root-fz) * 1rem);
    }
}
.p-top-news__btn {
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .p-top-news__btn {
        width: calc(93 / var(--root-fz) * 1rem);
    }
}
.p-top-news__list-wrap {
    position: relative;
    width: calc(100% + 108 / var(--root-fz) * 1rem + max(0px, (100vw - min(100vw, 1224 / var(--root-fz) * 1rem)) / 2));
    margin-top: calc(48 / var(--root-fz) * 1rem);
    margin-right: calc(-1 * (108 / var(--root-fz) * 1rem + max(0px, (100vw - min(100vw, 1224 / var(--root-fz) * 1rem)) / 2)));
}
@media screen and (max-width: 767px) {
    .p-top-news__list-wrap {
        width: calc(100% + 20 / var(--root-fz) * 1rem);
        margin-top: calc(40 / var(--root-fz) * 1rem);
        margin-right: calc(-1 * 20 / var(--root-fz) * 1rem);
    }
}
.p-top-news__list-btn-wrap {
    position: absolute;
    top: calc(-85 / var(--root-fz) * 1rem);
    right: calc(108 / var(--root-fz) * 1rem + max(0px, (100vw - min(100vw, 1224 / var(--root-fz) * 1rem)) / 2));
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-news__list-btn-wrap {
        top: calc(-87 / var(--root-fz) * 1rem);
        right: calc(20 / var(--root-fz) * 1rem);
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-top-news__list-btn {
    position: relative;
    width: calc(64 / var(--root-fz) * 1rem);
    height: calc(64 / var(--root-fz) * 1rem);
    background: linear-gradient(270deg, var(--color-green-1) 0%, var(--color-purple-4) 100%);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
}
@media screen and (max-width: 767px) {
    .p-top-news__list-btn {
        width: calc(48 / var(--root-fz) * 1rem);
        height: calc(48 / var(--root-fz) * 1rem);
        background: var(--color-white-1);
    }
}
.p-top-news__list-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-purple-3);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .p-top-news__list-btn:hover::before {
        opacity: 1;
    }
    .p-top-news__list-btn:hover .p-top-news__list-btn-arrow {
        background-color: var(--color-white-1);
    }
}
.p-top-news__list-btn.is-disabled {
    background: var(--color-gray-5);
    cursor: default;
    pointer-events: none;
}
.p-top-news__list-btn.is-disabled .p-top-news__list-btn-arrow {
    background-color: var(--color-gray-6);
}
.p-top-news__list-btn-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: calc(8 / var(--root-fz) * 1rem);
    height: calc(15 / var(--root-fz) * 1rem);
    background-color: var(--color-base-1);
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
    -webkit-mask-image: url("/img/common/ico_kunoji.svg");
            mask-image: url("/img/common/ico_kunoji.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
}
@media screen and (max-width: 767px) {
    .p-top-news__list-btn-arrow {
        width: calc(7 / var(--root-fz) * 1rem);
        height: calc(13 / var(--root-fz) * 1rem);
    }
}
.p-top-news__list-btn--prev {
    transform: translateZ(0) rotate(180deg);
}

/* ---------------------------------------------
*   p-top-science
--------------------------------------------- */
.p-top-science {
    position: relative;
    overflow-x: clip;
    padding: 0 calc(108 / var(--root-fz) * 1rem);
    background-color: var(--color-white-1);
}
@media screen and (max-width: 1024px) {
    .p-top-science {
        padding: 0 calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-top-science {
        padding: 0 calc(20 / var(--root-fz) * 1rem);
    }
}
.p-top-science__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(80 / var(--root-fz) * 1rem) 0 calc(120 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__inner {
        padding: calc(64 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message {
    padding-top: calc(23 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__message {
        padding-top: calc(4 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message-content {
    display: flex;
    gap: calc(48 / var(--root-fz) * 1rem);
    align-items: flex-start;
}
@media screen and (max-width: 1024px) {
    .p-top-science__message-content {
        flex-direction: column;
        gap: calc(20 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message-ttl {
    font-size: calc(56 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-black-2);
    margin-bottom: calc(30 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__message-ttl {
        font-size: calc(28 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 1024px) {
    .p-top-science__message-ttl {
        margin-bottom: calc(20 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message-txt-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    font-size: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__message-txt-wrap {
        font-size: calc(16 / var(--root-fz) * 1rem);
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message-txt {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}
@media screen and (max-width: 1024px) {
    .p-top-science__message-txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
.p-top-science__message-bold {
    font-weight: 700;
}
.p-top-science__message-img {
    display: block;
    flex-shrink: 0;
    max-width: none;
    width: calc(600 / var(--contents-width) * 100%);
}
@media screen and (max-width: 1024px) {
    .p-top-science__message-img {
        width: 100%;
    }
}
.p-top-science__contents {
    margin-top: calc(88 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__contents {
        margin-top: calc(47 / var(--root-fz) * 1rem);
    }
}
.p-top-science__lead {
    padding: calc(78 / var(--root-fz) * 1rem) 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("/img/top/science_title_bg.webp");
    background-size: cover;
    background-position: center;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-top-science__lead {
        padding: calc(104.5 / var(--root-fz) * 1rem) 0;
    }
}
.p-top-science__lead-ttl {
    font-size: calc(56 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white-1);
}
@media screen and (max-width: 1024px) {
    .p-top-science__lead-ttl {
        font-size: calc(28 / var(--root-fz) * 1rem);
    }
}
.p-top-science__intro-ttl {
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-base-1);
    text-align: center;
    margin-bottom: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__intro-ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
        margin-bottom: calc(16 / var(--root-fz) * 1rem);
    }
}
.p-top-science__intro-desc {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    width: calc(808 / var(--root-fz) * 1rem);
    margin: auto;
    margin-bottom: calc(40 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__intro-desc {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .p-top-science__intro-desc {
        margin-bottom: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-top-science__box {
    display: flex;
    flex-direction: column;
    gap: calc(64 / var(--root-fz) * 1rem);
    padding: calc(40 / var(--root-fz) * 1rem) 0 0;
}
@media screen and (max-width: 767px) {
    .p-top-science__box {
        gap: calc(40 / var(--root-fz) * 1rem);
        padding: calc(24 / var(--root-fz) * 1rem) 0 0;
    }
}
.p-top-science__feature {
    display: flex;
    gap: calc(24 / var(--root-fz) * 1rem);
    background-color: var(--color-green-2);
    align-items: center;
    padding: calc(32 / var(--root-fz) * 1rem) calc(40 / var(--root-fz) * 1rem) calc(40 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__feature {
        flex-direction: column;
        padding-bottom: calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-top-science__feature {
        padding: calc(24 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem);
    }
}
.p-top-science__feature-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    width: calc(560 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__feature-txt-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .p-top-science__feature-txt-wrap {
        width: 100%;
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-top-science__feature-ttl {
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-base-1);
    margin-bottom: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__feature-ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
        margin-bottom: calc(4 / var(--root-fz) * 1rem);
    }
}
.p-top-science__feature-text {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-base-1);
}
.p-top-science__feature-img {
    width: calc(560 / var(--root-fz) * 1rem);
    margin-bottom: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-top-science__feature-img {
        width: 100%;
        margin-bottom: 0;
    }
}
.p-top-science__diff-ttl {
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-base-1);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-top-science__diff-ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-top-science__diff-text {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-base-1);
    margin-inline: auto;
    margin-bottom: calc(48 / var(--root-fz) * 1rem);
    width: calc(808 / var(--root-fz) * 1rem);
    margin-top: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-top-science__diff-text {
        width: 100%;
        margin-top: calc(16 / var(--root-fz) * 1rem);
        margin-bottom: calc(40 / var(--root-fz) * 1rem);
    }
}
.p-top-science__outro {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--root-fz) * 1rem);
    width: calc(808 / var(--root-fz) * 1rem);
    margin: calc(24 / var(--root-fz) * 1rem) auto 0;
}
@media screen and (max-width: 1024px) {
    .p-top-science__outro {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .p-top-science__outro {
        gap: calc(16 / var(--root-fz) * 1rem);
        width: 100%;
        margin: calc(7 / var(--root-fz) * 1rem) auto 0;
    }
}
.p-top-science__outro-ttl {
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-base-1);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-top-science__outro-ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-top-science__outro-text-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
}
.p-top-science__outro-text {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-base-1);
    margin-bottom: calc(24 / var(--root-fz) * 1rem);
}
.p-top-science__btn-wrap {
    display: flex;
    gap: calc(20 / var(--root-fz) * 1rem);
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .p-top-science__btn-wrap {
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-top-science__btn {
    width: calc(394 / var(--root-fz) * 1rem);
}
.p-top-science__btn .c-btn-purple {
    width: 100%;
}

/* ---------------------------------------------
*   p-news-news
--------------------------------------------- */
.p-news-news {
    padding: 0 calc(108 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-news-news {
        padding: 0 calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-news-news {
        padding: 0 calc(20 / var(--root-fz) * 1rem);
    }
}
.p-news-news__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(74 / var(--root-fz) * 1rem) 0 calc(120 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-news-news__inner {
        padding: calc(25 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
    }
}
.p-news-news__sort {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(64 / var(--root-fz) * 1rem);
    padding-bottom: calc(25 / var(--root-fz) * 1rem);
    min-width: 0;
    margin-inline: calc(-1 * var(--contents-side-padding) / var(--root-fz) * 1rem);
    padding-inline-start: calc(var(--contents-side-padding) / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-news-news__sort {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding-bottom: calc(23 / var(--root-fz) * 1rem);
    }
}
.p-news-news__sort-wrap {
    display: flex;
    gap: calc(24 / var(--root-fz) * 1rem);
    align-items: center;
    min-width: 0;
    max-width: 50%;
    padding-block: calc(6 / var(--root-fz) * 1rem);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-news-news__sort-wrap {
        width: 100%;
        max-width: 100%;
    }
}
.p-news-news__sort-ttl {
    flex-shrink: 0;
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
    color: var(--color-black-2);
}
@media screen and (max-width: 767px) {
    .p-news-news__sort-ttl {
        font-size: calc(18 / var(--root-fz) * 1rem);
        width: calc(80 / var(--root-fz) * 1rem);
    }
}
.p-news-news__ttl {
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    width: 100%;
    padding: calc(8 / var(--root-fz) * 1rem) calc(32 / var(--root-fz) * 1rem);
    background-color: var(--color-purple-2);
    border-radius: calc(8 / var(--root-fz) * 1rem);
    margin: calc(40 / var(--root-fz) * 1rem) 0 calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-news-news__ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
        padding: calc(8 / var(--root-fz) * 1rem) calc(24 / var(--root-fz) * 1rem);
        margin: calc(32 / var(--root-fz) * 1rem) 0 calc(24 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-news-detail
--------------------------------------------- */
.p-news-detail {
    padding: 0 calc(108 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-news-detail {
        padding: 0 calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-news-detail {
        padding: 0 calc(20 / var(--root-fz) * 1rem);
    }
}
.p-news-detail__inner {
    color: var(--color-base-1);
    width: 100%;
    max-width: calc(808 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(80 / var(--root-fz) * 1rem) 0 calc(120 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-news-detail__inner {
        padding: calc(32 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
        border-bottom: none;
    }
}
.p-news-detail__info {
    display: flex;
    align-items: center;
    gap: calc(16 / var(--root-fz) * 1rem);
    margin-bottom: calc(20 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-news-detail__info {
        gap: calc(12 / var(--root-fz) * 1rem);
        margin-bottom: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-news-detail__tag {
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--color-purple-2);
    padding: calc(4 / var(--root-fz) * 1rem) calc(8 / var(--root-fz) * 1rem);
    border-radius: calc(4 / var(--root-fz) * 1rem);
}
.p-news-detail__date {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.5;
}
.p-news-detail__ttl {
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.25;
    padding-bottom: calc(40 / var(--root-fz) * 1rem);
    margin-bottom: calc(32 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-news-detail__ttl {
        font-size: calc(24 / var(--root-fz) * 1rem);
        padding-bottom: calc(32 / var(--root-fz) * 1rem);
        margin-bottom: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-news-detail__main {
    display: flex;
    flex-direction: column;
    gap: calc(35 / var(--root-fz) * 1rem);
    margin-bottom: calc(64 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-news-detail__main {
        gap: calc(23 / var(--root-fz) * 1rem);
        margin-bottom: calc(45 / var(--root-fz) * 1rem);
    }
}
.p-news-detail__btn {
    width: calc(184 / var(--root-fz) * 1rem);
    margin: auto;
}
.p-news-detail__btn .c-btn-purple {
    padding-left: calc(19 / var(--root-fz) * 1rem);
}

/* ---------------------------------------------
*   c-wysiwyg
--------------------------------------------- */
.c-wysiwyg {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg {
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg h3 {
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h3 {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg h4 {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h4 {
        font-size: calc(18 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg b, .c-wysiwyg strong {
    font-weight: 700;
}
.c-wysiwyg a {
    line-height: 1.7;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
    text-underline-offset: calc(3 / var(--root-fz) * 1rem);
    transition: text-decoration-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg a:hover {
        text-decoration-color: transparent;
    }
}
@media screen and (max-width: 767px) {
    .c-wysiwyg a {
        line-height: 1.75;
    }
}
.c-wysiwyg a[target=_blank] {
    position: relative;
}
.c-wysiwyg a[target=_blank]::after {
    content: "";
    display: inline-block;
    vertical-align: -0.15em;
    margin-left: calc(8 / var(--root-fz) * 1rem);
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
    background-image: url("/img/common/ico_link.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.c-wysiwyg h4 a[target=_blank]::after {
    margin-right: calc(8 / var(--root-fz) * 0.33rem);
    vertical-align: -0.05em;
}

@media screen and (max-width: 767px) {
    .c-wysiwyg a[target=_blank]::after {
        margin-left: calc(4 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg ul {
    list-style: none;
    padding-left: 0;
    padding-top: calc(4 / var(--root-fz) * 1rem);
}
.c-wysiwyg ul li {
    position: relative;
    padding-left: calc(15 / var(--root-fz) * 1rem);
    line-height: 1.6;
    margin-bottom: calc(5 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-wysiwyg ul li {
        line-height: 1.5;
        margin-bottom: calc(7 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(9 / var(--root-fz) * 1rem);
    width: calc(6 / var(--root-fz) * 1rem);
    height: calc(6 / var(--root-fz) * 1rem);
    border-radius: 50%;
    background-color: currentColor;
}
.c-wysiwyg ol {
    list-style: decimal;
    padding-left: calc(17 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-wysiwyg ol {
        margin-top: calc(-3 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg ol li {
    padding-left: calc(6 / var(--root-fz) * 1rem);
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.6;
    margin-bottom: calc(5 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .c-wysiwyg ol li {
        padding-left: calc(5 / var(--root-fz) * 1rem);
        line-height: 1.5;
        margin-bottom: calc(9 / var(--root-fz) * 1rem);
    }
}
.c-wysiwyg-img {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--root-fz) * 1rem);
}
.c-wysiwyg-img figcaption {
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1.5;
    letter-spacing: 0.24px;
    margin-bottom: calc(6 / var(--root-fz) * 1rem);
}

/* ---------------------------------------------
*   p-team-contents
--------------------------------------------- */
.p-team-contents {
    padding: 0 calc(108 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-team-contents {
        padding: 0 calc(50 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-team-contents {
        padding: 0 calc(20 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-team-anchor
--------------------------------------------- */
.p-team-anchor__nav {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(80 / var(--root-fz) * 1rem) 0 calc(32 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-team-anchor__nav {
        padding: calc(32 / var(--root-fz) * 1rem) 0;
    }
}
.p-team-anchor__list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(25 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-team-anchor__list {
        gap: calc(16 / var(--root-fz) * 1rem) calc(17 / var(--root-fz) * 1rem);
    }
}
.p-team-anchor__item {
    color: var(--color-black-2);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .p-team-anchor__item:nth-child(1) {
        margin-right: calc(13 / var(--root-fz) * 1rem);
    }
    .p-team-anchor__item:nth-child(2) {
        margin-right: calc(3 / var(--root-fz) * 1rem);
    }
}
.p-team-anchor__link {
    display: flex;
    align-items: center;
    gap: calc(4 / var(--root-fz) * 1rem);
    transform: translateZ(0);
    backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
    .p-team-anchor__link {
        transition: opacity var(--hover-duration);
    }
    .p-team-anchor__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.p-team-anchor__link::after {
    content: "";
    display: block;
    width: calc(20 / var(--root-fz) * 1rem);
    height: calc(20 / var(--root-fz) * 1rem);
    background-image: url("/img/team/ico_anchor.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---------------------------------------------
*   p-team-mission
--------------------------------------------- */
.p-team-mission__inner {
    display: flex;
    align-items: center;
    gap: calc(72 / var(--root-fz) * 1rem);
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(48 / var(--root-fz) * 1rem) 0 calc(85 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 1024px) {
    .p-team-mission__inner {
        flex-direction: column;
        gap: calc(24 / var(--root-fz) * 1rem);
        padding-bottom: calc(64 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-team-mission__inner {
        padding: calc(32 / var(--root-fz) * 1rem) 0 0;
        border-bottom: none;
    }
}
.p-team-mission__txt {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}
@media screen and (max-width: 767px) {
    .p-team-mission__txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-team-mission__txt-row--1 {
    font-weight: 700;
}
.p-team-mission__img {
    display: block;
    flex-shrink: 0;
    max-width: none;
    width: calc(496 / var(--contents-width) * 100%);
    height: auto;
    border-radius: calc(8 / var(--root-fz) * 1rem);
    margin-bottom: calc(-35 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-team-mission__img {
        width: 100%;
        margin-bottom: 0;
    }
}

/* ---------------------------------------------
*   p-team-message
--------------------------------------------- */
.p-team-message {
    background-image: url("/img/team/bg_message.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: calc(48 / var(--root-fz) * 1rem) auto calc(48 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-team-message {
        margin-left: calc(-20 / var(--root-fz) * 1rem);
        margin-right: calc(-20 / var(--root-fz) * 1rem);
        margin-bottom: 0;
        width: auto;
    }
}
.p-team-message__inner {
    width: calc(600 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(109 / var(--root-fz) * 1rem) 0 calc(105 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-team-message__inner {
        width: 100%;
        padding: calc(32 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(40 / var(--root-fz) * 1rem);
    }
}
.p-team-message__txt {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}
@media screen and (max-width: 1024px) {
    .p-team-message__txt {
        gap: calc(12 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-team-leadership
--------------------------------------------- */
.p-team-leadership {
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: 0 auto;
    padding: calc(48 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
    border-top: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-team-leadership {
        padding: calc(41 / var(--root-fz) * 1rem) 0;
        border-top: none;
    }
}

/* ---------------------------------------------
*   p-team-advisory
--------------------------------------------- */
.p-team-advisory {
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: 0 auto;
    padding: calc(48 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
    border-top: 1px solid var(--color-gray-4);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-team-advisory {
        padding: calc(32 / var(--root-fz) * 1rem) 0 calc(42 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-team-investors
--------------------------------------------- */
.p-team-investors__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(48 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-team-investors__inner {
        padding: calc(32 / var(--root-fz) * 1rem) 0 calc(37 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-team-about
--------------------------------------------- */
.p-team-about__inner {
    width: 100%;
    max-width: calc(1224 / var(--root-fz) * 1rem);
    margin: auto;
    padding: calc(48 / var(--root-fz) * 1rem) 0 calc(120 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-team-about__inner {
        padding: calc(32 / var(--root-fz) * 1rem) 0 calc(64 / var(--root-fz) * 1rem);
        border-bottom: none;
    }
}
.p-team-about__address {
    display: flex;
    gap: calc(68 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-team-about__address {
        flex-direction: column;
        gap: calc(24 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-team-about__address {
        gap: calc(19 / var(--root-fz) * 1rem);
    }
}
.p-team-about__address-map {
    width: 100%;
    max-width: calc(500 / var(--root-fz) * 1rem);
    height: calc(280 / var(--root-fz) * 1rem);
    margin-top: calc(8 / var(--root-fz) * 1rem);
    border-radius: calc(8 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1024px) {
    .p-team-about__address-map {
        max-width: 100%;
        height: auto;
        aspect-ratio: 350/197;
    }
}
.p-team-about__address-name {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: calc(13 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-team-about__address-name {
        font-size: calc(16 / var(--root-fz) * 1rem);
        margin-bottom: calc(12 / var(--root-fz) * 1rem);
    }
}
.p-team-about__address-txt {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-team-about__address-txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
        margin-bottom: calc(24 / var(--root-fz) * 1rem);
    }
}
.p-team-about__btn {
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-base-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}
.p-team-about__btn-link {
    display: flex;
    align-items: center;
    gap: calc(8 / var(--root-fz) * 1rem);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
    text-underline-offset: calc(3 / var(--root-fz) * 1rem);
    transition: text-decoration-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .p-team-about__btn-link:hover {
        text-decoration-color: transparent;
    }
}
.p-team-about__btn-img {
    width: calc(16 / var(--root-fz) * 1rem);
    height: calc(16 / var(--root-fz) * 1rem);
}
.p-team-about__btn-img img {
    width: 100%;
    display: block;
}

/* ---------------------------------------------
*   p-careers-contents
--------------------------------------------- */
.p-careers-contents {
    padding: calc(80 / var(--root-fz) * 1rem) calc(108 / var(--root-fz) * 1rem) calc(120 / var(--root-fz) * 1rem);
    margin: auto;
}
@media screen and (max-width: 1024px) {
    .p-careers-contents {
        padding: calc(80 / var(--root-fz) * 1rem) calc(50 / var(--root-fz) * 1rem) calc(120 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 767px) {
    .p-careers-contents {
        padding: calc(32 / var(--root-fz) * 1rem) calc(20 / var(--root-fz) * 1rem) calc(64 / var(--root-fz) * 1rem);
    }
}

/* ---------------------------------------------
*   p-careers-message
--------------------------------------------- */
.p-careers-message {
    margin-bottom: calc(48 / var(--root-fz) * 1rem);
}
.p-careers-message__inner {
    width: 100%;
    max-width: calc(808 / var(--root-fz) * 1rem);
    margin: auto;
    padding-bottom: calc(32 / var(--root-fz) * 1rem);
    border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 767px) {
    .p-careers-message__inner {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .p-careers-message {
        margin-bottom: calc(32 / var(--root-fz) * 1rem);
        width: 100%;
    }
}
.p-careers-message__txt-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--root-fz) * 1rem);
}
.p-careers-message__txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 400;
    line-height: 1.75;
}

/* ---------------------------------------------
*   p-careers-detail
--------------------------------------------- */
.p-careers-detail__inner {
    width: 100%;
    max-width: calc(808 / var(--root-fz) * 1rem);
    margin: auto;
}
@media screen and (max-width: 767px) {
    .p-careers-detail__inner {
        width: 100%;
    }
}
.p-careers-detail__ttl {
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: calc(40 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-careers-detail__ttl {
        margin-bottom: calc(16 / var(--root-fz) * 1rem);
    }
}
.p-careers-detail__sub-ttl {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: calc(12 / var(--root-fz) * 1rem);
}
.p-careers-detail__txt-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-careers-detail__txt-wrap {
        gap: calc(20 / var(--root-fz) * 1rem);
    }
}
.p-careers-detail__txt-wrap:not(:last-child) {
    margin-bottom: calc(40 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-careers-detail__txt-wrap:not(:last-child) {
        margin-bottom: calc(32 / var(--root-fz) * 1rem);
    }
}
.p-careers-detail__position {
    color: var(--color-black-2);
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
.p-careers-detail .p-careers-detail__list {
    padding-left: 1;
    margin: 0;
}
.p-careers-detail .p-careers-detail__item {
    position: relative;
    font-size: calc(16 / var(--root-fz) * 1rem);
    padding-left: calc(15 / var(--root-fz) * 1rem);
    margin-bottom: calc(8 / var(--root-fz) * 1rem);
    line-height: 1.5;
}
.p-careers-detail .p-careers-detail__item:last-child {
    margin-bottom: 0;
}
.p-careers-detail .p-careers-detail__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(0.75em - 3px);
    width: calc(6 / var(--root-fz) * 1rem);
    height: calc(6 / var(--root-fz) * 1rem);
    background-color: currentColor;
    border-radius: 50%;
}
.p-careers-detail .p-careers-detail__item--space {
    letter-spacing: -0.01em;
}
.p-careers-detail__btn {
    margin-top: calc(64 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 767px) {
    .p-careers-detail__btn {
        margin-top: calc(48 / var(--root-fz) * 1rem);
    }
}
.p-careers-detail__btn .c-btn-purple {
    width: calc(394 / var(--root-fz) * 1rem);
    margin: auto;
}
@media screen and (max-width: 767px) {
    .p-careers-detail__btn .c-btn-purple {
        width: 100%;
    }
}

/* ---------------------------------------------
*   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;
}

/* ---------------------------------------------
*   fade animation
--------------------------------------------- */
.js-fade-up,
.js-fade-down {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.js-fade-up {
    transform: translateY(15px);
}

.js-fade-down {
    transform: translateY(-15px);
}

.js-fade-up.is-show,
.js-fade-down.is-show {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .js-fade-up,
    .js-fade-down {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* acc */
.js-nav:not(.is-open) .js-fade-up {
    transition: none;
}

@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;
    }
}
@media print and (max-width: 850px), screen and (max-width: 850px) {
    .tb-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;
    }
}