@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
.l-wrapper {
    overflow: clip;
}

/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    height: calc(var(--fixed-header-height) * 1px);
    background-color: var(--color-white-1);
    position: sticky;
    top: 0;
    z-index: 100;
    /*  l-header-nav
    --------------------------------------------- */
}
@media screen and (max-width: 750px) {
    .l-header {
        height: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .l-header__logo {
        max-width: 162px;
        margin-right: 45px;
    }
}
@media screen and (max-width: 1024px) {
    .l-header__logo {
        width: 12.6666666667vw;
    }
}
@media screen and (max-width: 750px) {
    .l-header__logo {
        width: calc(114 / var(--design-width) * 100vw);
        margin-top: calc(-7 / var(--design-width) * 100vw);
    }
}
.l-header__logo img {
    width: 100%;
    height: auto;
}
.l-header__logo-link {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
    .l-header__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-header__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header__container {
    max-width: 1728px;
    height: 100%;
    margin-inline: auto;
    padding-inline: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 751px) {
    .l-header__container {
        gap: 20px;
    }
}
@media screen and (max-width: 1296px) {
    .l-header__container {
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
        padding-inline: calc(var(--contents-side-padding) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .l-header__container {
        max-width: initial;
        padding-inline: calc(24 / var(--design-width) * 100vw);
    }
}
.l-header .l-header-nav__list {
    display: flex;
    align-items: center;
}
.l-header .l-header-nav__item {
    flex-shrink: 0;
}
.l-header .l-header-nav__item:not(:first-of-type):not(.l-header .l-header-nav__item--btn-2) {
    margin-left: 28px;
}
@media screen and (max-width: 1024px) {
    .l-header .l-header-nav__item:not(:first-of-type):not(.l-header .l-header-nav__item--btn-2) {
        margin-left: 20px;
    }
}
@media screen and (min-width: 1025px) {
    .l-header .l-header-nav__item--btn-2 {
        width: 200px;
    }
}
@media screen and (min-width: 751px) {
    .l-header .l-header-nav__item--btn-2 {
        margin-left: 16px;
    }
}
@media screen and (max-width: 750px) {
    .l-header .l-header-nav__item--btn-2 {
        width: calc(160 / var(--design-width) * 100vw);
    }
}
.l-header .l-header-nav__link {
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-style: normal;
    font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-nav__link:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 1024px) {
    .l-header .l-header-nav__link {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .l-header .l-header-nav__link {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}

.l-header .l-header-nav__item.is-active .l-header-nav__link{
  position:relative;
  color:var(--color-blue-1);
}
.l-header .l-header-nav__item.is-active .l-header-nav__link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:3px;
  border-radius:50em;
}
.l-header .l-header-nav__item.is-active .l-header-nav__link {
  position: relative;
  color: inherit; /* 色はそのまま継承 */
}

.l-header .l-header-nav__item.is-active .l-header-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  background: #1a73e8;
  border-radius: 50em;
}

@media (max-width:750px){
  .l-header .l-header-nav__list{display:none;}
  .l-header .l-header-nav__item--btn-2{display:none;}
}
.l-header__burger{
  width:50px;height:44px;display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;border:0;background:transparent;
}
.l-header__burger span{
  display:block;width:27px;height:2px;background:#111;border-radius:2px;transition:transform .25s, opacity .25s;
}
.l-header__burger.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.l-header__burger.is-open span:nth-child(2){opacity:0;}
.l-header__burger.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
.l-header-drawer{
  position:fixed;inset:0 0 0 auto;width:min(80vw,320px);height:100vh;background:#fff;box-shadow:-8px 0 24px rgba(0,0,0,.08);transform:translateX(100%);transition:transform .25s ease;z-index:9999;padding:40px 20px;
}
.l-header-drawer.is-open{transform:translateX(0);}
.l-header-drawer__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px;}
.l-header-drawer__list a{font-size:18px;display:inline-flex;padding:12px 4px;font-weight:700;color:#111;text-decoration:none;}
.l-header-drawer__list .cta{margin-top:8px;}
.l-header-drawer::before{
  content:"";position:fixed;inset:0;right:min(80vw,320px);background:rgba(0,0,0,.25);opacity:0;pointer-events:none;transition:opacity .25s;
}
.l-header-drawer.is-open::before{opacity:1;pointer-events:auto;}
body.is-fixed{overflow:hidden;}
.l-header-drawer__close{
  position:absolute;top:10px;right:10px;width:38px;height:38px;line-height:38px;text-align:center;font-size:20px;font-weight:700;color:#111;background:#f3f3f3;border:0;border-radius:50%;box-shadow:0 1px 4px rgba(0,0,0,.08);cursor:pointer;
}
.l-header-drawer__close:active{transform:scale(.98);}

/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents:not(.l-contents--top):not(.l-contents--service) {
    padding-block: 65px 120px;
}
@media screen and (max-width: 750px) {
    .l-contents:not(.l-contents--top):not(.l-contents--service) {
        padding-block: calc(65 / var(--design-width) * 100vw) calc(160 / var(--design-width) * 100vw);
    }
}
.l-contents:has(.c-block-4:last-child):not(.l-contents--top):not(.l-contents--service) {
    padding-bottom: 0;
}
.l-contents--service {
    padding-block: 55px 0;
}
@media screen and (max-width: 750px) {
    .l-contents--service {
        padding-top: 0;
    }
}

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

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

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

/* ---------------------------------------------
*   l-ng-breadcrumb
--------------------------------------------- */
.l-breadcrumb {
    margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
    .l-breadcrumb {
        margin-bottom: calc(24 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .l-breadcrumb__list {
        padding-inline: 8px;
    }
}
.l-breadcrumb__item {
    display: inline;
}
.l-breadcrumb__item:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-inline: 8px;
    background: url("../img/common/icon_arrow-5.svg") no-repeat center/contain;
    transform: translateY(1px);
}
@media screen and (max-width: 750px) {
    .l-breadcrumb__item:not(:last-of-type)::after {
        width: calc(12 / var(--design-width) * 100vw);
        height: calc(12 / var(--design-width) * 100vw);
        margin-inline: calc(16 / var(--design-width) * 100vw);
        transform: translateY(calc(1 / var(--design-width) * 100vw));
    }
}
.l-breadcrumb__txt {
    padding-block: 8px;
    font-size: calc(12 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .l-breadcrumb__txt {
        padding-block: calc(8 / var(--design-width) * 100vw) calc(8 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.l-breadcrumb__txt[href] {
    color: var(--color-blue-1);
    text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
    .l-breadcrumb__txt[href] {
        transition: opacity var(--hover-duration);
    }
    .l-breadcrumb__txt[href]:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-breadcrumb__txt[href] {
        transition: color var(--hover-duration);
    }
}
.l-breadcrumb__txt:not([href]) {
    color: var(--color-black-5);
}

/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    background-color: var(--color-black-3);
    /*  l-footer-nav
    --------------------------------------------- */
}
.l-footer__container {
    margin-inline: auto;
    padding: 60px calc(var(--contents-side-padding) * 1px) 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
    .l-footer__container {
        max-width: calc(((var(--contents-width)) + var(--contents-side-padding) * 2) * 1px);
        -moz-column-gap: 72px;
             column-gap: 72px;
    }
}
@media screen and (max-width: 820px) and (min-width: 751px) {
    .l-footer__container {
        -moz-column-gap: 48px;
             column-gap: 48px;
    }
}
@media screen and (max-width: 750px) {
    .l-footer__container {
        padding: calc(60 / var(--design-width) * 100vw) calc(var(--contents-side-padding) / var(--design-width) * 100vw) calc(22 / var(--design-width) * 100vw);
		 flex-direction: column;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__logo-link {
        transition: opacity var(--hover-duration);
    }
    .l-footer__logo-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-footer__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 34px;
    color: var(--color-white-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    text-align: center;
    background-color: var(--color-red-1);
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__btn {
        transition: opacity var(--hover-duration);
    }
    .l-footer__btn:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-footer__btn {
        margin-top: calc(20 / var(--design-width) * 100vw);
        padding: calc(13 / var(--design-width) * 100vw) calc(34 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.l-footer__sns-list-wrap {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}
@media screen and (max-width: 750px) {
    .l-footer__sns-list-wrap {
        margin-top: calc(30 / var(--design-width) * 100vw);
    }
}
.l-footer__sns-txt {
    color: var(--color-white-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .l-footer__sns-txt {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.l-footer__sns-list {
    display: flex;
    gap: 10px;
}
@media screen and (max-width: 750px) {
    .l-footer__sns-list {
        gap: calc(10 / var(--design-width) * 100vw);
    }
}
.l-footer__sns-link {
    display: block;
    width: 24px;
    height: 24px;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__sns-link {
        transition: opacity var(--hover-duration);
    }
    .l-footer__sns-link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-footer__sns-link {
        width: calc(24 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
    }
}
.l-footer__sns-link img {
    vertical-align: top;
}
@media screen and (max-width: 750px) {
    .l-footer__sns-link img {
        width: 100%;
    }
}
.l-footer__link-list {
    width: 100%;
    margin-top: 54px;
    display: flex;
    gap: 40px;
}
@media screen and (max-width: 750px) {
    .l-footer__link-list {
        margin-top: calc(54 / var(--design-width) * 100vw);
        flex-direction: column;
        gap: calc(24 / var(--design-width) * 100vw);
    }
}
.l-footer__link {
    display: block;
    color: var(--color-white-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    text-underline-offset: 0.2em;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer__link:hover {
        text-decoration: none;
    }
}
@media screen and (max-width: 750px) {
    .l-footer__link {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.l-footer__copyright {
    width: 100%;
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .l-footer__copyright {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.l-footer__copyright-txt {
    display: block;
    color: var(--color-white-1);
    font-size: calc(12 / var(--root-fz) * 1rem);
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .l-footer__copyright-txt {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .l-footer .l-footer-nav {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.l-footer .l-footer-nav__list {
    max-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px 40px;
    flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
    .l-footer .l-footer-nav__list {
        max-height: initial;
        flex-direction: column;
        gap: calc(24 / var(--design-width) * 100vw);
    }
}
.l-footer .l-footer-nav__link {
    display: block;
    min-width: 208px;
    color: var(--color-white-1);
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.3;
    text-underline-offset: 0.2em;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer .l-footer-nav__link:hover {
        text-decoration: none;
    }
}
@media screen and (max-width: 820px) {
    .l-footer .l-footer-nav__link {
        min-width: 160px;
    }
}
@media screen and (max-width: 750px) {
    .l-footer .l-footer-nav__link {
        min-width: initial;
        width: -moz-fit-content;
        width: fit-content;
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}

/*  l-footer-page-top
--------------------------------------------- */
.l-footer-page-top {
    position: sticky;
    z-index: 99;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.l-footer-page-top.is-show {
    opacity: 1;
    visibility: visible;
}
.l-footer-page-top__link {
    display: inline-block;
    padding: 16px 24px 16px 52px;
    background: url("../img/common/icon_arrow-2.svg") no-repeat left 21px center/24px 24px;
    color: var(--color-blue-1);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: bold;
    border-radius: 50em;
    border: 2px solid var(--color-blue-1);
    background-color: var(--color-white-1);
    position: absolute;
    right: 24px;
    bottom: 20px;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-page-top__link {
        transition: opacity var(--hover-duration);
    }
    .l-footer-page-top__link:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .l-footer-page-top__link {
        display: none;
        padding: calc(16 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw) calc(52 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
        background-size: calc(24 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw);
        background-position: left calc(21 / var(--design-width) * 100vw) center;
    }
}

/* ---------------------------------------------
*   c-acc
--------------------------------------------- */
.c-acc {
    background-color: var(--color-gray-1);
    border-radius: 24px;
}
@media screen and (max-width: 750px) {
    .c-acc {
        padding-inline: calc(32 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-acc:not(:first-of-type) {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-acc:not(:first-of-type) {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-acc__head {
    width: 100%;
    padding: 32px;
    display: flex;
    gap: 18px;
    align-items: center;
    color: var(--color-black-1);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: left;
    touch-action: manipulation;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-acc__head {
        transition: opacity var(--hover-duration);
    }
    .c-acc__head:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-acc__head {
        padding: calc(32 / var(--design-width) * 100vw) calc(2 / var(--design-width) * 100vw);
        gap: calc(16 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-acc__head::after {
    content: "";
    display: block;
    width: 48px;
    margin-inline: auto 0;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background: url("../img/common/icon_arrow-6.svg") no-repeat center/24px 24px;
    border: 1px solid rgba(var(--color-black-1-rgb), 0.3);
    border-radius: 50%;
    transform: rotate(-180deg);
    transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
    .c-acc__head::after {
        width: calc(32 / var(--design-width) * 100vw);
        background-size: calc(16 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
    }
}
.is-open .c-acc__head::after {
    transform: rotate(0deg);
}

.c-acc__head-inner {
    color: var(--color-blue-1);
    font-family: var(--ff-inter);
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.3;
}
@media screen and (max-width: 750px) {
    .c-acc__head-inner {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-acc__body {
        padding-inline: 32px;
    }
}
.c-acc__body::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: url("../img/system/bg_dot.svg") repeat-x center/8px 3px;
}
.c-acc__body-inner {
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
}
@media screen and (min-width: 751px) {
    .c-acc__body-inner {
        padding: 28px 50px 32px;
    }
}
@media screen and (max-width: 750px) {
    .c-acc__body-inner {
        padding: calc(28 / var(--design-width) * 100vw) calc(8 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw) calc(42 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-bg
--------------------------------------------- */
.c-block-bg--gray {
    background-color: var(--color-gray-1);
}
.c-block-bg--gray-2 {
    background-color: var(--color-gray-2);
}

/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1__item-wrap {
    margin-top: 34px;
    display: flex;
}
@media screen and (max-width: 750px) {
    .c-block-1__item-wrap {
        margin-top: calc(40 / var(--design-width) * 100vw);
        flex-direction: column;
    }
}
.c-block-1__list-wrap {
    width: calc(637 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-block-1__list-wrap {
        width: 100%;
    }
}
.c-block-1__list {
    margin-top: 36px;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .c-block-1__list {
        width: 100%;
        margin-top: calc(18 / var(--design-width) * 100vw);
        -moz-column-gap: calc(10 / var(--design-width) * 100vw);
             column-gap: calc(10 / var(--design-width) * 100vw);
    }
}
.c-block-1__list-2 {
    margin-top: 36px;
}
.c-block-1__list-item {
    aspect-ratio: 1/1;
    display: grid;
    place-content: center;
    background-color: var(--color-white-1);
    border-radius: 50%;
}
@media screen and (max-width: 750px) {
    .c-block-1__list-item {
        width: calc(164 / var(--design-width) * 100vw);
    }
}
.c-block-1__list-item:nth-of-type(1) {
    grid-area: 1/2/2/4;
}
.c-block-1__list-item:nth-of-type(2) {
    margin-top: -8.1168831169%;
    grid-area: 2/1/3/3;
}
.c-block-1__list-item:nth-of-type(3) {
    margin-top: -8.1168831169%;
    grid-area: 2/3/3/5;
}
.c-block-1__icn {
    margin-top: -10px;
    margin-inline: auto;
}
@media screen and (min-width: 751px) {
    .c-block-1__icn {
        max-width: 114px;
    }
}
@media screen and (max-width: 1200px) {
    .c-block-1__icn {
        width: 8.59375vw;
    }
}
@media screen and (max-width: 960px) {
    .c-block-1__icn {
        width: 7.03125vw;
    }
}
@media screen and (max-width: 750px) {
    .c-block-1__icn {
        width: calc(60 / var(--design-width) * 100vw);
        margin-top: calc(-6 / var(--design-width) * 100vw);
    }
}
.c-block-1__icn-2 {
    width: 80px;
}
@media screen and (min-width: 751px) {
    .c-block-1__icn-2 {
        margin-top: 8px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 1200px) {
    .c-block-1__icn-2 {
        width: 6.25vw;
    }
}
@media screen and (max-width: 750px) {
    .c-block-1__icn-2 {
        width: calc(48 / var(--design-width) * 100vw);
    }
}
.c-block-1__plus {
    display: block;
    width: 40px;
    margin-top: 76px;
    align-self: center;
    aspect-ratio: 1/1;
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-block-1__plus {
        width: calc(20 / var(--design-width) * 100vw);
        margin-top: 0;
    }
}
.c-block-1__item {
    width: calc(434 / var(--contents-width) * 100%);
    margin-left: calc(48 / var(--contents-width) * 100%);
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .c-block-1__item {
        width: calc(280 / var(--design-width) * 100vw);
        margin-top: calc(14 / var(--design-width) * 100vw);
        margin-inline: auto;
    }
}
.c-block-1__txt-2 + .c-block-1__txt {
    margin-top: 24px;
}

.c-block-1__txt-1 {
    margin-top: -4px;
    font-size: calc(21 / var(--root-fz) * 1rem);
    letter-spacing: 0.0761904762em;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .c-block-1__txt-1 {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 960px) {
    .c-block-1__txt-1 {
        font-size: calc(14 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-block-1__txt-1 {
        margin-top: 0;
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-block-1__item-wrap + .c-block-1__txt-2 {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-block-1__item-wrap + .c-block-1__txt-2 {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__txt-2:has(.c-block-1__icn-2) {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: calc(8 / var(--design-width) * 100vw);
    }
}
.c-block-1__txt-3 {
    width: 100%;
    height: auto;
    margin-top: 18px;
    padding: 48px;
    aspect-ratio: 1/1;
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 1200px) {
    .c-block-1__txt-3 {
        font-size: calc(28 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 960px) {
    .c-block-1__txt-3 {
        font-size: calc(18 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-block-1__txt-3 {
        margin-top: calc(16 / var(--design-width) * 100vw);
        padding: calc(31 / var(--design-width) * 100vw);
        font-size: calc(21 / var(--design-width) * 100vw);
    }
}
.c-block-1__txt-3::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-white-1-rgb), 0.2);
    border-radius: 50%;
    position: absolute;
    inset: 0;
}
.c-block-1__txt-3-inner {
    display: grid;
    place-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--color-white-1);
    border-radius: 50%;
}

/* ---------------------------------------------
*   c-block-2
--------------------------------------------- */
.c-block-2__txt {
    display: inline-block;
    padding: 12px 24px;
    color: var(--color-white-1);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: bold;
    text-align: center;
    background-color: var(--color-blue-1);
    border-radius: 50em;
}
@media screen and (max-width: 750px) {
    .c-block-2__txt {
        padding: calc(10 / var(--design-width) * 100vw) calc(18 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
    }
}
.c-block-2__img {
    margin-top: -16px;
}
@media screen and (max-width: 750px) {
    .c-block-2__img {
        margin-top: calc(-16 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-3
--------------------------------------------- */
.c-block-3__top {
    padding-block: 120px;
}
@media screen and (max-width: 750px) {
    .c-block-3__top {
        padding-block: calc(60 / var(--design-width) * 100vw) calc(65 / var(--design-width) * 100vw);
    }
}
.c-block-3__txt {
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-block-3__txt {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__bottom .c-block-3__txt {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}

.c-block-3__txt-s {
    display: block;
    font-size: calc(24 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
}
@media screen and (max-width: 750px) {
    .c-block-3__txt-s {
        margin-bottom: calc(6 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__bottom .c-block-3__txt-s {
        margin-bottom: calc(15 / var(--design-width) * 100vw);
    }
}

.c-block-3__frame-wrap {
    min-height: 398px;
    margin-top: 64px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
}
@media screen and (max-width: 1140px) and (min-width: 961px) {
    .c-block-3__frame-wrap {
        min-height: max(33.3333333333vw, 342px);
    }
}
@media screen and (max-width: 960px) {
    .c-block-3__frame-wrap {
        min-height: initial;
        margin-top: 32px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-wrap {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-block-3__frame-txt {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-max-content;
    height: max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    justify-self: center;
    padding: 24px;
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
    background-color: var(--color-white-1);
    border-radius: 16px;
    filter: drop-shadow(8px 8px 64px rgba(var(--color-black-1-rgb), 0.12));
    transform: translateZ(0);
    position: relative;
}
@media screen and (max-width: 1140px) {
    .c-block-3__frame-txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 1024px) {
    .c-block-3__frame-txt {
        font-size: calc(14 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 960px) {
    .c-block-3__frame-txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt {
        padding: calc(16 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        border-radius: calc(11 / var(--design-width) * 100vw);
        filter: drop-shadow(calc(6 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) calc(44 / var(--design-width) * 100vw) rgba(var(--color-black-1-rgb), 0.1));
    }
}
.c-block-3__frame-txt::before {
    content: "";
    display: block;
    width: 31px;
    height: 14px;
    position: absolute;
    top: calc(100% - 2px);
    margin-top: -1px;
    background-color: var(--color-white-1);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt::before {
        width: calc(22 / var(--design-width) * 100vw);
        height: calc(10 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 961px) {
    .c-block-3__frame-txt--1 {
        margin-top: 52px;
        margin-right: -20px;
        grid-area: 2/1/3/3;
    }
}
@media screen and (max-width: 960px) and (min-width: 751px) {
    .c-block-3__frame-txt--1 {
        margin-top: 32px;
        transform: translateX(-48px);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--1 {
        margin-top: calc(25 / var(--design-width) * 100vw);
        margin-left: calc(-44 / var(--design-width) * 100vw);
    }
}
.c-block-3__frame-txt--1::before {
    right: 64px;
    -webkit-mask-image: url("../img/system/img_frame-2.svg");
            mask-image: url("../img/system/img_frame-2.svg");
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--1::before {
        right: calc(42 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 961px) {
    .c-block-3__frame-txt--2 {
        margin-left: -16px;
        grid-area: 1/1/2/6;
    }
}
@media screen and (max-width: 1100px) and (min-width: 961px) {
    .c-block-3__frame-txt--2 {
        margin-bottom: -0.9460737938%;
    }
}
@media screen and (max-width: 960px) and (min-width: 751px) {
    .c-block-3__frame-txt--2 {
        margin-top: 6px;
        transform: translateX(-38px);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--2 {
        margin-top: calc(3 / var(--design-width) * 100vw);
        margin-left: calc(-19 / var(--design-width) * 100vw);
    }
}
.c-block-3__frame-txt--2::before {
    left: 64px;
    -webkit-mask-image: url("../img/system/img_frame-2.svg");
            mask-image: url("../img/system/img_frame-2.svg");
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--2::before {
        left: calc(42 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 961px) {
    .c-block-3__frame-txt--3 {
        margin-top: 24px;
        margin-left: -58px;
        grid-area: 2/4/3/6;
    }
}
@media screen and (max-width: 960px) and (min-width: 751px) {
    .c-block-3__frame-txt--3 {
        margin-top: 32px;
        transform: translateX(20px);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--3 {
        margin-top: calc(16 / var(--design-width) * 100vw);
        margin-inline: auto calc(-10 / var(--design-width) * 100vw);
    }
}
.c-block-3__frame-txt--3::before {
    left: 64px;
    -webkit-mask-image: url("../img/system/img_frame-3.svg");
            mask-image: url("../img/system/img_frame-3.svg");
}
@media screen and (max-width: 750px) {
    .c-block-3__frame-txt--3::before {
        left: calc(42 / var(--design-width) * 100vw);
    }
}
.c-block-3__img {
    width: calc(160 / (var(--contents-width) / 5) * 100%);
    min-width: 120px;
    max-width: 160px;
    margin-inline: auto;
}
@media screen and (min-width: 961px) {
    .c-block-3__img {
        grid-area: 2/3/4/4;
        align-self: flex-end;
    }
}
@media screen and (max-width: 960px) {
    .c-block-3__img {
        width: 178px;
        min-width: initial;
        margin-top: 36px;
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__img {
        width: calc(89 / var(--design-width) * 100vw);
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}
.c-block-3__bottom {
    max-width: calc((1648 + var(--contents-side-padding) * 2) * 1px);
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-block-3__bottom {
        max-width: calc(370 / var(--design-width) * 100vw);
        padding-inline: 0;
    }
}
.c-block-3__bottom::after {
    content: "";
    display: block;
    width: 64px;
    margin-top: -1px;
    aspect-ratio: 64/24;
    -webkit-mask: url("../img/system/img_frame-1.svg") no-repeat center/contain;
            mask: url("../img/system/img_frame-1.svg") no-repeat center/contain;
    background-color: var(--color-gray-1);
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
    .c-block-3__bottom::after {
        width: calc(48 / var(--design-width) * 100vw);
    }
}
.c-block-3__bottom-inner {
    padding-block: 120px;
    background-color: var(--color-blue-1);
    border-radius: 64px;
}
@media screen and (max-width: 750px) {
    .c-block-3__bottom-inner {
        padding-block: calc(64 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-block-3__txt-border {
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
}
.c-block-3__txt-border::before {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 50em;
    background-color: var(--color-yellow-1);
    position: absolute;
    left: 0;
    bottom: 0;
}
.c-block-3__list {
    margin-top: 75px;
    display: flex;
    justify-content: center;
    gap: 32px;
}
@media screen and (max-width: 750px) {
    .c-block-3__list {
        margin-top: calc(120 / var(--design-width) * 100vw);
        flex-direction: column;
        gap: calc(56 / var(--design-width) * 100vw);
    }
}
.c-block-3__list-item {
    width: 33.3333333333%;
    margin-top: 90px;
    padding: calc(76 / var(--contents-width) * 100%) calc(24 / var(--contents-width) * 100%) calc(32 / var(--contents-width) * 100%) calc(24 / var(--contents-width) * 100%);
    background-color: var(--color-white-1);
    position: relative;
    border-radius: 32px;
}
@media screen and (max-width: 750px) {
    .c-block-3__list-item {
        width: 100%;
        margin-top: 0;
        padding: calc(64 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
        border-radius: calc(20 / var(--design-width) * 100vw);
    }
}
.c-block-3__icn {
    position: absolute;
    top: 0;
    left: 50%;
}
@media print, screen and (min-width: 751px) {
    .c-block-3__icn {
        width: min(41.0052910053%, 155px);
        transform: translate(-50%, -70%);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__icn {
        transform: translateX(-50%);
    }
}
.c-block-3__icn--1 {
    left: calc(50% + 10px);
}
@media screen and (max-width: 750px) {
    .c-block-3__icn--1 {
        width: calc(108 / var(--design-width) * 100vw);
        top: calc(-69 / var(--design-width) * 100vw);
        left: calc(50% + 7 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__icn--2 {
        width: calc(110 / var(--design-width) * 100vw);
        top: calc(-41 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__icn--3 {
        width: calc(108 / var(--design-width) * 100vw);
        top: calc(-42 / var(--design-width) * 100vw);
    }
}
.c-block-3__list-item-txt {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .c-block-3__list-item-txt {
        font-size: calc(18 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-block-3__list-item-txt {
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-4
--------------------------------------------- */
.c-block-4 {
    margin-top: 120px;
    background-color: var(--color-gray-2);
}
@media screen and (max-width: 750px) {
    .c-block-4 {
        margin-top: calc(80 / var(--design-width) * 100vw);
    }
}
.c-block-4__container {
    padding-block: 120px;
}
@media screen and (max-width: 750px) {
    .c-block-4__container {
        padding-block: calc(80 / var(--design-width) * 100vw) calc(160 / var(--design-width) * 100vw);
    }
}
.c-block-4__body {
    margin-top: 48px;
}
@media screen and (max-width: 750px) {
    .c-block-4__body {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-block-4__txt {
    margin-top: 20px;
    font-size: calc(19 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-block-4__txt {
        margin-top: calc(20 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-block-4__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 24px;
}
@media screen and (max-width: 860px) {
    .c-block-4__list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media screen and (max-width: 750px) {
    .c-block-4__list {
        gap: calc(24 / var(--design-width) * 100vw);
    }
}
.c-block-4__list-item {
    padding: 80px calc(80 / var(--contents-width) * 100%);
    border-radius: 24px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-block-4__list-item {
        padding: calc(40 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-block-4__txt-main {
    font-size: calc(36 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-block-4__txt-main {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-block-4__txt-wrap {
    margin-top: 19px;
}
@media screen and (max-width: 750px) {
    .c-block-4__txt-wrap {
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}
.c-block-4__btn {
    margin-top: 42px;
    margin-inline: auto;
}
@media screen and (min-width: 751px) {
    .c-block-4__btn {
        max-width: 326px;
    }
}
@media screen and (max-width: 750px) {
    .c-block-4__btn {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-5
--------------------------------------------- */
.c-block-5 {
    padding: 80px calc(80 / var(--contents-width) * 100%);
    background-color: var(--color-blue-1);
    border-radius: 40px;
}
@media screen and (max-width: 750px) {
    .c-block-5 {
        padding: calc(40 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
        border-radius: calc(40 / var(--design-width) * 100vw);
    }
}
.c-block-5__inner {
    display: grid;
    grid-template-columns: max(36.1538461538%, 280px) 1fr;
    align-items: center;
    gap: 3.8461538462%;
}
@media screen and (max-width: 750px) {
    .c-block-5__inner {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-block-5__img img {
    filter: drop-shadow(32px 24px 64px rgba(0, 0, 0, 0.07));
    transform: translateZ(0);
}
@media screen and (max-width: 750px) {
    .c-block-5__img img {
        filter: drop-shadow(calc(32 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw) calc(64 / var(--design-width) * 100vw) rgba(0, 0, 0, 0.07));
    }
}
.c-block-5__list {
    margin-top: 34px;
}
@media screen and (max-width: 750px) {
    .c-block-5__list {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-block-5__btn {
    margin-top: 42px;
}
@media screen and (max-width: 750px) {
    .c-block-5__btn {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-block-6
--------------------------------------------- */
.c-block-6__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 765px 1fr;
}
@media screen and (max-width: 1024px) {
    .c-block-6__inner {
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 1025px) {
    .c-block-6__item {
        margin-left: 10.1149425287%;
        padding-left: 11.9540229885%;
        position: relative;
        max-width: 316px;
    }
}
@media screen and (max-width: 1024px) {
    .c-block-6__item {
        margin-top: 24px;
        max-width: 264px;
    }
}
@media screen and (max-width: 750px) {
    .c-block-6__item {
        width: calc(152 / var(--design-width) * 100vw);
        max-width: initial;
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 1025px) {
    .c-block-6__item::before {
        content: "";
        display: block;
        width: 1px;
        height: 126px;
        background-color: var(--color-black-1);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

/* ---------------------------------------------
*   c-block-7
--------------------------------------------- */
.c-block-7 {
    position: relative;
}
.c-block-7__contents {
    position: relative;
}
.c-block-7__item {
    width: 15.6305506217%;
    position: absolute;
    bottom: 1%;
    transform: scaleY(0);
}
.c-block-7.is-active .c-block-7__item {
    animation-name: scaleY;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform-origin: bottom;
}
@keyframes scaleY {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.c-block-7__item--1 {
    left: 5.6838365897%;
}
.c-block-7__item--2 {
    left: 24.5115452931%;
}
.c-block-7__item--3 {
    left: 43.5168738899%;
}
.c-block-7__item--4 {
    right: 21.8472468917%;
}
.c-block-7__item--5 {
    right: 2.8419182948%;
}
.c-block-7__txt {
    margin-top: 10px;
}
@media screen and (max-width: 750px) {
    .c-block-7__txt {
        margin-top: calc(4 / var(--design-width) * 100vw);
    }
}
.c-block-7__border {
    position: absolute;
    top: 16.1725067385%;
    left: 60.6571936057%;
    transform: translateX(-50%);
    opacity: 0;
}
.c-block-7.is-active .c-block-7__border {
    animation-name: opacity;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
}
@keyframes opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 750px) {
    .c-block-7__border {
        width: calc(130 / var(--design-width) * 100vw);
    }
}
.c-block-7__border img {
    width: 100%;
}

/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
    padding-block: 66px;
    background-color: var(--color-white-1);
    border-radius: 32px;
}
@media screen and (max-width: 750px) {
    .c-box-1 {
        padding-block: calc(32 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-box-1:not(:first-of-type) {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-box-1:not(:first-of-type) {
        margin-top: calc(25 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-box-1--2, .c-box-1--3 {
        padding-block: calc(47 / var(--design-width) * 100vw);
    }
}
.c-box-1__inner {
    display: grid;
    align-items: center;
}
@media screen and (min-width: 751px) {
    .c-box-1__inner {
        max-width: calc((1056 + var(--contents-side-padding) * 2) * 1px);
        margin-inline: auto;
        padding-inline: calc(var(--contents-side-padding) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .c-box-1__inner {
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 751px) {
    .c-box-1--1 .c-box-1__inner {
        grid-template-columns: 1fr 75.6628787879%;
        gap: 4.5454545455%;
    }
}
@media screen and (max-width: 750px) {
    .c-box-1--1 .c-box-1__inner {
        gap: calc(44 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-box-1--3 .c-box-1__inner {
        max-width: calc((1072 + var(--contents-side-padding) * 2) * 1px);
    }
}
@media screen and (min-width: 751px) {
    .c-box-1--4 .c-box-1__inner {
        grid-template-columns: 1fr 53.0303030303%;
        gap: 6.8181818182%;
    }
}
@media screen and (max-width: 750px) {
    .c-box-1--4 .c-box-1__inner {
        gap: calc(44 / var(--design-width) * 100vw);
    }
}
.c-box-1--reverse .c-box-1__txt-wrap {
    order: 2;
}

.c-box-1__ttl {
    font-size: calc(40 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-box-1__ttl {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
.c-box-1__txt {
    margin-top: 20px;
}
@media screen and (max-width: 750px) {
    .c-box-1__txt {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-box-1__btn {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-box-1__btn {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-box-1--reverse .c-box-1__item {
    order: 1;
    margin-top: 0;
}

.c-box-1--2 .c-box-1__item {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-box-1--2 .c-box-1__item {
        margin-top: calc(26 / var(--design-width) * 100vw);
    }
}

.c-box-1--3 .c-box-1__item {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-box-1--3 .c-box-1__item {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .c-box-1__img {
        width: calc(160 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-box-2
--------------------------------------------- */
.c-box-2 {
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
}
@media screen and (min-width: 751px) {
    .c-box-2 {
        max-width: calc((1612 + var(--contents-side-padding) * 2) * 1px);
    }
}
@media screen and (max-width: 750px) {
    .c-box-2 {
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
}
.c-box-2__container {
    padding-block: 120px;
    border-radius: 40px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .c-box-2__container {
        padding-block: calc(64 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-box-2__contents {
    display: grid;
    grid-template-columns: calc(518 / var(--contents-width) * 100%) 1fr;
    justify-content: center;
    align-items: center;
    gap: calc(80 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-box-2__contents {
        grid-template-columns: 1fr;
        gap: calc(40 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-box-2__txt-wrap {
        max-width: 595px;
    }
}
.c-box-2__txt {
    margin-top: 16px;
    color: rgba(var(--color-white-3-rgb), 0.9);
    font-size: calc(24 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-box-2__txt {
        margin-top: calc(16 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-box-2__img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 32px 24px 64px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 750px) {
    .c-box-2__img img {
        box-shadow: calc(32 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw) calc(64 / var(--design-width) * 100vw) rgba(0, 0, 0, 0.07);
        border-radius: calc(9 / var(--design-width) * 100vw);
    }
}
.c-box-2__btn {
    margin-top: 34px;
}
@media screen and (max-width: 750px) {
    .c-box-2__btn {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
    display: grid;
    place-content: center;
    width: -moz-fit-content;
    width: fit-content;
    padding: 18px 30px;
    font-size: calc(18 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    font-weight: bold;
    text-align: center;
    border-radius: 50em;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1 {
        transition: opacity var(--hover-duration);
    }
    .c-btn-1:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (min-width: 751px) {
    .c-btn-1 {
        min-width: 200px;
        min-height: 68px;
    }
}
@media screen and (max-width: 750px) {
    .c-btn-1 {
        width: 100%;
        padding: calc(20 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-btn-1:not(.c-btn-1--download):not(.c-btn-1--arrow):not(.c-btn-1--white):not(.c-btn-1--blue) {
    background-color: var(--color-blue-1);
}
.c-btn-1:not(.c-btn-1--download):not(.c-btn-1--arrow):not(.c-btn-1--blue) {
    color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-btn-1--s {
        padding-block: calc(16 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-btn-1--right {
        margin-inline: auto 0;
    }
}
.c-btn-1--download, .c-btn-1--arrow, .c-btn-1--download-white {
    color: var(--color-blue-1);
    border: 2px solid var(--color-blue-1);
}
.c-btn-1--download, .c-btn-1--download-white {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 22px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-btn-1--download, .c-btn-1--download-white {
        padding-inline: calc(22 / var(--design-width) * 100vw);
    }
}
.c-btn-1--download::before, .c-btn-1--download-white::before {
    content: "";
    display: block;
    width: 28px;
    aspect-ratio: 1/1;
    margin-right: 6px;
    background: url("../img/common/icon_download.svg") no-repeat center/contain;
}
@media screen and (max-width: 750px) {
    .c-btn-1--download::before, .c-btn-1--download-white::before {
        width: calc(28 / var(--design-width) * 100vw);
        margin-right: calc(6 / var(--design-width) * 100vw);
    }
}
.c-btn-1--download-white {
    color: var(--color-white-1);
    background-color: var(--color-blue-1);
    border-color: var(--color-white-1);
}
.c-btn-1--download-white::before {
    background-image: none;
    -webkit-mask: url("../img/common/icon_download.svg") no-repeat center/contain;
            mask: url("../img/common/icon_download.svg") no-repeat center/contain;
    background-color: var(--color-white-1);
}
.c-btn-1--arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-btn-1--arrow {
        gap: calc(8 / var(--design-width) * 100vw);
    }
}
.c-btn-1--arrow::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    background: url("../img/common/icon_arrow-1.svg") no-repeat center/contain;
}
@media screen and (max-width: 750px) {
    .c-btn-1--arrow::after {
        width: calc(20 / var(--design-width) * 100vw);
        height: calc(20 / var(--design-width) * 100vw);
        margin-top: calc(1 / var(--design-width) * 100vw);
    }
}
.c-btn-1--white {
    border: 2px solid var(--color-white-1);
}
.c-btn-1--blue {
    margin: auto;
    color: var(--color-blue-1);
    border: 2px solid var(--color-blue-1);
}
.c-btn-1__txt-s {
    font-size: calc(12 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-btn-1__txt-s {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1 {
    padding: 30px calc(40 / var(--contents-width) * 100%) 40px;
    background-color: var(--color-white-1);
    border-radius: 24px;
}
@media screen and (min-width: 751px) {
    .c-card-1 {
        height: 100%;
    }
}
@media screen and (max-width: 750px) {
    .c-card-1 {
        padding: calc(32 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-card-1__txt-main {
    margin-top: 8px;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-card-1__txt-main {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-card-1__icn {
    max-width: 160px;
    margin-top: 8px;
    margin-inline: auto;
    aspect-ratio: 1/1;
}
@media screen and (max-width: 750px) {
    .c-card-1__icn {
        width: calc(120 / var(--design-width) * 100vw);
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-card-2
--------------------------------------------- */
.c-card-2 {
    padding: 40px 10.4166666667%;
    background-color: var(--color-white-1);
    border-radius: 24px;
}
@media screen and (min-width: 751px) {
    .c-card-2 {
        height: 100%;
    }
}
@media screen and (max-width: 750px) {
    .c-card-2 {
        padding: calc(32 / var(--design-width) * 100vw);
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-card-2__img-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
    gap: 16px;
}
@media screen and (max-width: 750px) {
    .c-card-2__img-wrap {
        gap: calc(16 / var(--design-width) * 100vw);
    }
}
.c-card-2__num {
    color: var(--color-blue-1);
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: bold;
    font-family: var(--ff-inter);
}
@media screen and (max-width: 750px) {
    .c-card-2__num {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-card-2__icn {
    aspect-ratio: 1/1;
}
@media screen and (max-width: 750px) {
    .c-card-2__icn {
        width: calc(144 / var(--design-width) * 100vw);
    }
}
.c-card-2__icn img {
    width: 100%;
    height: auto;
}
.c-card-2__txt-main {
    margin-top: 16px;
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-card-2__txt-main {
        margin-top: calc(16 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-card-2__txt {
    margin-top: 8px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.8;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-card-2__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
.c-form__wrap {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
    gap: 3px;
}
@media screen and (max-width: 750px) {
    .c-form__wrap {
        grid-template-columns: 1fr;
        gap: calc(3 / var(--design-width) * 100vw);
    }
}
.c-form__wrap:not(:first-of-type) {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-form__wrap:not(:first-of-type) {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.c-form__dt {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-form__dt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-form__dt--required p::after {
    content: "*";
}
@media screen and (min-width: 751px) {
    .c-form__dt:has(+ .c-form__dd > textarea) {
        margin-top: 16px;
        align-self: flex-start;
    }
}
.c-form__dd input,
.c-form__dd select,
.c-form__dd textarea {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    letter-spacing: 0.05em;
    background-color: rgba(var(--color-black-1-rgb), 0.03);
    border: rgba(var(--color-black-5-rgb), 0.1) 1px solid;
    border-radius: 12px;
}
@media screen and (max-width: 750px) {
    .c-form__dd input,
    .c-form__dd select,
    .c-form__dd textarea {
        padding: calc(18 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        border-radius: calc(12 / var(--design-width) * 100vw);
    }
}
.c-form__dd input::-moz-placeholder, .c-form__dd select::-moz-placeholder, .c-form__dd textarea::-moz-placeholder {
    color: rgba(var(--color-black-5-rgb), 0.7);
}
.c-form__dd input::placeholder,
.c-form__dd select::placeholder,
.c-form__dd textarea::placeholder {
    color: rgba(var(--color-black-5-rgb), 0.7);
}
@media screen and (min-width: 751px) {
    .c-form__dd input,
    .c-form__dd select {
        min-height: 58px;
    }
}
.c-form__dd select {
    padding-right: 46px;
    color: var(--color-black-1);
    border-color: rgba(var(--color-black-5-rgb), 0.5);
}
@media screen and (max-width: 750px) {
    .c-form__dd select {
        padding-right: calc(46 / var(--design-width) * 100vw);
    }
}
.c-form__dd select:has(option:checked[value=""]) {
    color: rgba(var(--color-black-5-rgb), 0.7);
}
.c-form__dd select:focus {
    color: var(--color-black-1);
}
.c-form__dd textarea {
    height: 226px;
}
@media screen and (max-width: 750px) {
    .c-form__dd textarea {
        height: calc(226 / var(--design-width) * 100vw);
    }
}
.c-form__dd:has(.wpcf7-not-valid-tip) {
    position: relative;
}
.c-form__dd:has(select) {
    position: relative;
}
.c-form__dd:has(select)::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1/1;
    background: url("../img/common/icon_selelct-1.svg") no-repeat center/contain;
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}
@media screen and (max-width: 750px) {
    .c-form__dd:has(select)::before {
        width: calc(20 / var(--design-width) * 100vw);
        top: calc(20 / var(--design-width) * 100vw);
        right: calc(20 / var(--design-width) * 100vw);
    }
}
.c-form__dd .wpcf7-not-valid-tip {
    display: inline-block;
    color: var(--color-red-1);
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
    .c-form__dd .wpcf7-not-valid-tip {
        margin-top: calc(5 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-form__desc {
    color: var(--color-black-1);
    font-size: 14px;
    line-height: 1.6428571429;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
    .c-form__desc {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-form__btn {
    margin-top: 48px;
    margin-inline: auto;
}
@media screen and (min-width: 751px) {
    .c-form__btn {
        max-width: 360px;
    }
}
@media screen and (max-width: 750px) {
    .c-form__btn {
        margin-top: calc(48 / var(--design-width) * 100vw);
    }
}
.c-form__btn input {
    width: 100%;
    padding: 20px 1em;
    color: var(--color-white-1);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background-color: var(--color-blue-1);
    border-radius: 50em;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-form__btn input {
        transition: opacity var(--hover-duration);
    }
    .c-form__btn input:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-form__btn input {
        padding-block: calc(20 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-form__agreement {
    margin-top: 48px;
    font-size: calc(12 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-form__agreement {
        margin-top: calc(48 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-form__agreement input[type=checkbox] {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.c-form__agreement label {
    padding-left: 28px;
    position: relative;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-form__agreement label {
        transition: opacity var(--hover-duration);
    }
    .c-form__agreement label:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-form__agreement label {
        padding-left: calc(28 / var(--design-width) * 100vw);
    }
}
.c-form__agreement label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-blue-1);
    background-color: var(--color-white-1);
    border-radius: 4px;
    transition: background-color 0.3s;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
    .c-form__agreement label::before {
        width: calc(20 / var(--design-width) * 100vw);
        height: calc(20 / var(--design-width) * 100vw);
        border-radius: calc(4 / var(--design-width) * 100vw);
    }
}
.c-form__agreement label::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/common/icon_check.svg") no-repeat center/contain;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
    .c-form__agreement label::after {
        width: calc(16 / var(--design-width) * 100vw);
        height: calc(16 / var(--design-width) * 100vw);
        left: calc(2 / var(--design-width) * 100vw);
    }
}
.c-form__agreement label:has(input[type=checkbox]:checked)::before {
    background-color: var(--color-blue-1);
}
.c-form__agreement label:has(input[type=checkbox]:checked)::after {
    opacity: 1;
}
@media screen and (max-width: 750px) {
    .c-form__agreement label span {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-form__agreement label a {
    color: var(--color-blue-1);
    position: relative;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-form__agreement label a:hover {
        text-decoration: none;
    }
}
.c-form .wpcf7 form.sent .wpcf7-response-output {
    display: none;
}
.c-form .wpcf7 input[type=submit].disabled,
.c-form .wpcf7 input[type=submit]:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv-1
--------------------------------------------- */
.c-kv-1 {
    position: relative;
    margin-bottom: 88px;
}
@media screen and (max-width: 750px) {
    .c-kv-1 {
        margin-bottom: calc(64 / var(--design-width) * 100vw);
    }
}
.c-kv-1::before, .c-kv-1::after {
    content: "";
    display: block;
    width: 100%;
    height: 88px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 0;
}
@media screen and (max-width: 750px) {
    .c-kv-1::before, .c-kv-1::after {
        height: calc(64 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 851px) {
    .c-kv-1--top {
        margin-bottom: 46px;
    }
}
@media screen and (min-width: 851px) {
    .c-kv-1--top::before, .c-kv-1--top::after {
        top: 94%;
    }
}
.c-kv-1::before {
    background-color: var(--color-white-1);
    border-radius: 0px 0px 64px 64px;
    z-index: 10;
}
@media screen and (max-width: 750px) {
    .c-kv-1::before {
        border-radius: 0px 0px calc(32 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
    }
}
.c-kv-1::after {
    background-color: var(--color-gray-1);
}


body:not(.home) .c-kv-1::before,
body:not(.home) .c-kv-1::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  background: none !important;
}
.c-kv-1__inner {
    margin-inline: auto;
    padding-inline: 20px;
    position: relative;
}
@media screen and (min-width: 751px) {
    .c-kv-1__inner {
        max-width: 1616px;
    }
}
.c-kv-1--top .c-kv-1__inner {
    padding-bottom: 15px;
    border-radius: 0px 0px 64px 64px;
}
@media screen and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__inner {
        padding-bottom: 40px;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__inner {
        padding-bottom: 0;
    }
}
.c-kv-1--service .c-kv-1__inner {
    padding-top: 35px;
    min-height: 749px;
}
@media screen and (max-width: 1200px) {
    .c-kv-1--service .c-kv-1__inner {
        min-height: initial;
        padding-block: 50px 30px;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__inner {
        padding: 0;
    }
}
.c-kv-1__contents {
    margin-inline: auto;
    display: flex;
}
@media screen and (min-width: 851px) {
    .c-kv-1__contents {
        max-width: calc((var(--contents-width) + var(--contents-side-padding) * 2) * 1px);
        padding-inline: calc(var(--contents-side-padding) * 1px);
    }
}
@media screen and (max-width: 1200px) {
    .c-kv-1__contents {
        align-items: center;
        padding-inline: 0;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__contents {
        flex-direction: column-reverse;
        gap: 0;
    }
}
.c-kv-1--top .c-kv-1__contents {
    justify-content: flex-end;
    align-items: flex-end;
    gap: calc(40 / var(--contents-width) * 100%);
}
@media screen and (min-width: 751px) {
    .c-kv-1--top .c-kv-1__contents {
        max-width: calc((var(--contents-width) + 152 + var(--contents-side-padding) * 2) * 1px);
    }
}
@media screen and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__contents {
        align-items: center;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__contents {
        gap: 8.2089552239vw;
    }
}
.c-kv-1__txt-wrap {
    flex-shrink: 0;
    opacity: 0;
    position: relative;
    z-index: 30;
    animation: fadeAnimation 0.8s ease-in-out forwards;
    will-change: transform, opacity;
}
@media screen and (max-width: 750px) {
    .c-kv-1__txt-wrap {
        animation-delay: 1s;
    }
}
@keyframes fadeAnimation {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.c-kv-1--top .c-kv-1__txt-wrap {
    margin-bottom: 8px;
}
@media screen and (min-width: 1201px) {
    .c-kv-1--service .c-kv-1__txt-wrap {
        margin-top: calc(36 / var(--contents-width) * 100%);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__txt-wrap {
        margin-top: -10.9452736318vw;
    }
}
.c-kv-1__txt-main {
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.c-kv-1--top .c-kv-1__txt-main {
    font-size: calc(61 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__txt-main {
        font-size: calc(48 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__txt-main {
        font-size: calc(36 / var(--root-fz) * 1rem);
        line-height: 1.7;
    }
}
@media screen and (max-width: 750px) {
    .c-kv-1--top .c-kv-1__txt-main {
        font-size: calc(36 / var(--design-width) * 100vw);
    }
}
.c-kv-1--service .c-kv-1__txt-main {
    font-size: calc(48 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1200px) {
    .c-kv-1--service .c-kv-1__txt-main {
        font-size: calc(34 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__txt-main {
        font-size: calc(30 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-kv-1--service .c-kv-1__txt-main {
        font-size: calc(30 / var(--design-width) * 100vw);
    }
}
.c-kv-1--top .c-kv-1__txt-sub {
    font-size: calc(32 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: bold;
}
@media screen and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__txt-sub {
        font-size: calc(24 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__txt-sub {
        font-size: calc(20 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-kv-1--top .c-kv-1__txt-sub {
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-kv-1__txt-border {
    display: inline-block;
    padding-bottom: 6px;
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-kv-1__txt-border {
        padding-bottom: calc(6 / var(--design-width) * 100vw);
    }
}
.c-kv-1--top .c-kv-1__txt-border::after {
    content: "";
    display: block;
    width: 96%;
    height: 4px;
    background-color: rgba(var(--color-black-2-rgb), 0.1);
    position: absolute;
    left: 0;
    bottom: 0;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__txt-border::after {
        height: 2px;
    }
}
.c-kv-1--top .c-kv-1__logo-wrap {
    margin-top: 32px;
}
@media print, screen and (min-width: 851px) {
    .c-kv-1--top .c-kv-1__logo-wrap {
        display: flex;
        align-items: center;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__logo-wrap {
        margin-top: 5.223880597vw;
    }
}
.c-kv-1--top .c-kv-1__logo {
    position: relative;
}
@media screen and (min-width: 1201px) {
    .c-kv-1--top .c-kv-1__logo {
        max-width: 192px;
    }
}
@media print, screen and (min-width: 851px) {
    .c-kv-1--top .c-kv-1__logo {
        margin-left: 24px;
        padding-left: 24px;
    }
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--top .c-kv-1__logo {
        max-width: 148px;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__logo {
        width: 35.8208955224vw;
        margin-top: 2.9850746269vw;
    }
}
@media print, screen and (min-width: 851px) {
    .c-kv-1--top .c-kv-1__logo::before {
        content: "";
        display: block;
        width: 1px;
        height: 46px;
        background-color: var(--color-black-1);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
@media screen and (min-width: 851px) and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__logo::before {
        height: 85%;
    }
}
.c-kv-1--service .c-kv-1__logo {
    margin-top: 24px;
}
@media screen and (max-width: 1200px) {
    .c-kv-1--service .c-kv-1__logo {
        width: 180px;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__logo {
        width: 41.7910447761vw;
        margin-top: 3.9800995025vw;
    }
}
.c-kv-1__txt {
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.8;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
    .c-kv-1__txt {
        font-size: calc(16 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__txt {
        margin-top: 3.9800995025vw;
        font-size: calc(14 / var(--root-fz) * 1rem);
    }
}
@media screen and (max-width: 750px) {
    .c-kv-1__txt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-kv-1--top .c-kv-1__txt {
    margin-top: 16px;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__txt {
        margin-top: 3.9800995025vw;
    }
}
.c-kv-1--service .c-kv-1__txt {
    margin-top: 32px;
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__txt {
        margin-top: 3.9800995025vw;
    }
}
.c-kv-1__btn {
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 850px) {
    .c-kv-1__btn {
        gap: 3.9800995025vw;
    }
}
@media screen and (max-width: 750px) {
    .c-kv-1__btn {
        flex-direction: column;
    }
}
.c-kv-1--top .c-kv-1__btn {
    margin-top: 48px;
}
@media screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__btn {
        margin-top: 7.960199005vw;
    }
}
.c-kv-1--service .c-kv-1__btn {
    margin-top: 40px;
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__btn {
        margin-top: 7.960199005vw;
    }
}
.c-kv-1__img-wrap {
    position: relative;
}
.c-kv-1--top .c-kv-1__img-wrap {
    width: min(100%, 652px);
    height: 100%;
    aspect-ratio: 652/538;
    padding-top: 70px;
    z-index: 20;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__img-wrap {
        width: 86.3184079602vw;
        aspect-ratio: 347/369;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__img-wrap {
        margin-top: 5.4726368159vw;
        padding-top: 0;
    }
}
@media screen and (min-width: 1201px) {
    .c-kv-1--service .c-kv-1__img-wrap {
        margin-top: calc(-98 / var(--contents-width) * 100%);
        margin-left: calc(-112 / var(--contents-width) * 100%);
    }
}
@media screen and (max-width: 1100px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__img-wrap {
        aspect-ratio: 563/379;
    }
}
@media screen and (max-width: 1100px) {
    .c-kv-1--service .c-kv-1__img-wrap {
        width: 100%;
        height: 100%;
    }
}
.c-kv-1__img-1 {
    padding-block: 180px 72px;
    position: relative;
    z-index: -2;
}
@media screen and (min-width: 751px) {
    .c-kv-1__img-1 {
        width: 120.4216073781%;
    }
}
@media screen and (max-width: 1200px) {
    .c-kv-1__img-1 {
        width: 110%;
        transform: translateX(8%);
        padding-block: 0;
    }
}
@media screen and (max-width: 1100px) and (min-width: 851px) {
    .c-kv-1__img-1 {
        width: min(150%, 620px);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__img-1 {
        width: 100vw;
        margin-inline: auto 0;
        padding-block: 10.447761194vw 0;
        transform: none;
    }
}
.c-kv-1__img-1::before {
    content: "";
    display: block;
    width: 64.1530054645%;
    aspect-ratio: 1/1;
    position: absolute;
    background-color: var(--color-blue-1);
    border-radius: 50%;
    top: 48%;
    left: 51%;
    z-index: -1;
}
@media screen and (min-width: 751px) {
    .c-kv-1__img-1::before {
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 1200px) {
    .c-kv-1__img-1::before {
        width: auto;
        height: 100%;
        top: 50%;
        left: 50%;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__img-1::before {
        width: 85.5721393035vw;
        height: auto;
        top: 5.4726368159vw;
        left: -6.9651741294vw;
        transform: none;
    }
}
.c-kv-1__img-1 img {
    opacity: 0;
    transform: scale(0.8);
    animation: ScaleAnimation 0.8s ease-in-out 1s forwards;
}
@media screen and (max-width: 1200px) {
    .c-kv-1__img-1 img {
        transform: translate(-2%, 5%);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__img-1 img {
        width: 100%;
        transform: none;
        animation-delay: 0s;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__img-1 img {
        width: 130.8457711443vw;
        max-width: initial;
        margin-left: -1.9900497512vw;
    }
}

.c-kv-1__img-2 {
    border-radius: 32px;
    overflow: hidden;
    position: absolute;
    box-shadow: 32px 28px 128px 0px rgba(var(--color-blue-3-rgb), 0.15);
    opacity: 0;
    transform: scale(0.8);
    animation: ScaleAnimation 0.8s ease-in-out 1s forwards;
}
@media screen and (max-width: 1200px) {
    .c-kv-1__img-2 {
        border-radius: 24px;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1__img-2 {
        border-radius: 4.9751243781vw;
        box-shadow: calc(32 / var(--design-width) * 100vw) calc(28 / var(--design-width) * 100vw) calc(128 / var(--design-width) * 100vw) 0px rgba(var(--color-blue-3-rgb), 0.15);
        animation-delay: 0s;
    }
}
.c-kv-1__img-2--1 {
    width: 62.4233128834%;
    top: 0;
    left: 12.5766871166%;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1__img-2--1 {
        width: 60.447761194vw;
        left: 5.223880597vw;
    }
}
.c-kv-1__img-2--2 {
    width: 47.6993865031%;
    top: 55%;
    right: 0.7668711656%;
    translate: 0 -50%;
    z-index: 1;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1__img-2--2 {
        width: 46.0199004975vw;
        top: 44.776119403vw;
        right: 0.4975124378vw;
    }
}
.c-kv-1__img-2--3 {
    width: 47.5460122699%;
    left: -1.3803680982%;
    bottom: 0;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1__img-2--3 {
        width: 44.5273631841vw;
        left: -0.4975124378vw;
    }
}
.c-kv-1__img-2 img {
    width: 100%;
}
.c-kv-1__path-wrap {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
@media screen and (max-width: 1200px) {
    .c-kv-1__path-wrap {
        width: 100%;
    }
}
.c-kv-1--top .c-kv-1__path-wrap {
    z-index: 20;
}
@media screen and (min-width: 1201px) {
    .c-kv-1--top .c-kv-1__path-wrap {
        width: max(100%, 1460px);
    }
}
@media screen and (min-width: 1201px) {
    .c-kv-1--service .c-kv-1__path-wrap {
        width: max(100%, 1390px);
    }
}
.c-kv-1__path {
    display: block;
    aspect-ratio: 1/1;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    animation: ScaleAnimation 0.8s ease-in-out 1s forwards;
}
.c-kv-1__path:not(.c-kv-1__path--2):not(.c-kv-1__path--4):not(.c-kv-1__path--5) {
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1__path {
        animation-delay: 0s;
    }
}
@keyframes ScaleAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    80% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.c-kv-1__path--1 {
    background-color: var(--color-blue-1);
    -webkit-mask-image: url("../img/system/img_path-1.svg");
            mask-image: url("../img/system/img_path-1.svg");
}
.c-kv-1--top .c-kv-1__path--1 {
    width: 4.0222772277%;
    top: 23.1543624161%;
    left: 1.7326732673%;
}

.p-hero.c-kv-1--top .c-kv-1__path--1{
    top: -9.845638%;
    left: 4.732673%;
}

@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--top .c-kv-1__path--1 {
        display: none;
    }
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--1 {
        width: 9.4527363184vw;
        top: 40.5472636816vw;
        left: 22.8855721393vw;
    }

        .p-hero.c-kv-1--top .c-kv-1__path--1{
display: none;

}
}
.c-kv-1--service .c-kv-1__path--1 {
    width: 3.4653465347%;
    top: 8.8117489987%;
    left: 5.0742574257%;
}
@media screen and (max-width: 1480px) {
    .c-kv-1--service .c-kv-1__path--1 {
        top: 3.2042723632%;
    }
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--1 {
        top: calc(2 / var(--contents-width) * 100vw);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--1 {
        display: none;
    }
}
.c-kv-1__path--2 {
    aspect-ratio: 1/1;
    background-color: var(--color-yellow-1);
    border-radius: 50%;
}
.c-kv-1--top .c-kv-1__path--2 {
    width: 6.1881188119%;
    left: -6.4356435644%;
    bottom: 16.4429530201%;
}

.p-hero.c-kv-1--top .c-kv-1__path--2{
    left: -1.435644%;
    bottom: 35.442953%;
}

@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--2 {
        width: 14.6766169154vw;
        top: 74.6268656716vw;
        left: -2.4875621891vw;
        bottom: auto;
    }

    .p-hero.c-kv-1--top .c-kv-1__path--2{
    top:0%;
    bottom: auto;
    left: 1.564356%;
}


    
}
.c-kv-1--service .c-kv-1__path--2 {
    width: 4.5792079208%;
    left: 0;
    bottom: 26.3017356475%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--2 {
        display: none;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--2 {
        width: 11.4427860697vw;
        top: 8.4577114428vw;
        left: auto;
        right: 9.9502487562vw;
        bottom: auto;
    }
}
.c-kv-1__path--3 {
    background-color: var(--color-gray-3);
    -webkit-mask-image: url("../img/system/img_path-3.svg");
            mask-image: url("../img/system/img_path-3.svg");
}
.c-kv-1--top .c-kv-1__path--3 {
    width: 1.6089108911%;
    left: 4.9504950495%;
    bottom: 0;
}
.p-hero.c-kv-1--top .c-kv-1__path--3{
    left: 9.950495%;
    top: 47%;
}

@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--3 {
        width: 3.7313432836vw;
        top: 91.5422885572vw;
        left: 61.6915422886vw;
        bottom: auto;
    }
    .p-hero.c-kv-1--top .c-kv-1__path--3{
    left: 9.950495%;
    top: 93%;
}
}
.c-kv-1--service .c-kv-1__path--3 {
    width: 1.6089108911%;
    left: 10.5816831683%;
    bottom: 20.0267022697%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--3 {
        bottom: 0;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--3 {
        display: none;
    }
}
.c-kv-1__path--4 {
    border-radius: 50%;
}
.c-kv-1--top .c-kv-1__path--4 {
    width: 5.4455445545%;
    background-color: var(--color-blue-1);
    top: 9.3959731544%;
    right: 6.0643564356%;
}

.p-hero.c-kv-1--top .c-kv-1__path--4{
    top: 44.395973%;
    right: 2.064356%;
}

@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--4 {
        width: 12.9353233831vw;
        top: 76.368159204vw;
        right: -2.2388059701vw;
    }

    .p-hero.c-kv-1--top .c-kv-1__path--4{
    top: 3.395973%;
    right: 2.064356%;
}
}
.c-kv-1--service .c-kv-1__path--4 {
    width: 5.1361386139%;
    background-color: var(--color-yellow-1);
    top: 0;
    right: 12.5%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--4 {
        top: calc(-24 / var(--contents-width) * 100vw);
        right: calc(100 / var(--contents-width) * 100vw);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--4 {
        display: none;
    }
}
.c-kv-1__path--5 {
    background-color: var(--color-gray-3);
    border-radius: 50%;
}
.c-kv-1--top .c-kv-1__path--5 {
    width: 2.0420792079%;
    bottom: 30.5369127517%;
    right: 35.7673267327%;
}

.p-hero.c-kv-1--top .c-kv-1__path--5{
    bottom: 20.5369127517%;
    right: 14.767327%;
}
@media screen and (max-width: 1200px) {
    .c-kv-1--top .c-kv-1__path--5 {
        display: none;
    }
}
.c-kv-1--service .c-kv-1__path--5 {
    width: 2.1658415842%;
    top: 19.4926568758%;
    right: 7.0544554455%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--5 {
        top: calc(72 / var(--contents-width) * 100vw);
        right: calc(10 / var(--contents-width) * 100vw);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--5 {
        width: 4.7263681592vw;
        top: 23.8805970149vw;
        right: -1.7412935323vw;
    }
}
.c-kv-1__path--6 {
    background-color: var(--color-blue-1);
    -webkit-mask-image: url("../img/system/img_path-6.svg");
            mask-image: url("../img/system/img_path-6.svg");
}
.c-kv-1--top .c-kv-1__path--6 {
    width: 4.6410891089%;
    bottom: 6.0402684564%;
    right: 8.1683168317%;
}

.p-hero.c-kv-1--top .c-kv-1__path--6{
    bottom: 90.040268%;
    right: 3.168317%;
}
@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--6 {
        display: none;
    }
}
.c-kv-1--service .c-kv-1__path--6 {
    width: 4.4554455446%;
    bottom: 31.2416555407%;
    right: 3.8366336634%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--6 {
        bottom: calc(30 / var(--contents-width) * 100vw);
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--6 {
        width: 9.9502487562vw;
        top: 69.9004975124vw;
        right: -0.7462686567vw;
        bottom: auto;
    }
}
.c-kv-1__path--7 {
    background-color: var(--color-yellow-1);
    -webkit-mask-image: url("../img/system/img_path-7.svg");
            mask-image: url("../img/system/img_path-7.svg");
}
.c-kv-1--top .c-kv-1__path--7 {
    width: 2.4133663366%;
    right: 28.5891089109%;
    bottom: 11.744966443%;
}
.p-hero.c-kv-1--top .c-kv-1__path--7{
    right: 20.589109%;
    bottom: 96.744966%;
}

@media print, screen and (max-width: 850px) {
    .c-kv-1--top .c-kv-1__path--7 {
        width: 5.7213930348vw;
        top: 20.1492537313vw;
        right: 14.9253731343vw;
        bottom: auto;
    }
}
.c-kv-1--service .c-kv-1__path--7 {
    width: 3.3415841584%;
    right: 20.6683168317%;
    bottom: 17.6234979973%;
}
@media screen and (max-width: 1200px) and (min-width: 851px) {
    .c-kv-1--service .c-kv-1__path--7 {
        right: calc(160 / var(--contents-width) * 100vw);
        bottom: 0;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1--service .c-kv-1__path--7 {
        width: 7.7114427861vw;
        top: 85.8208955224vw;
        right: 46.2686567164vw;
        bottom: auto;
    }
}
.c-kv-1__slider {
    margin-block: -62px 88px;
    position: relative;
    z-index: 30;
}
@media screen and (max-width: 1200px) {
    .c-kv-1__slider {
        margin-top: 65px;
    }
}
@media screen and (max-width: 850px) {
    .c-kv-1__slider {
        margin-block: 8.9552238806vw 0;
    }
}

/* ---------------------------------------------
*   c-link-1
--------------------------------------------- */
.c-link-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.c-link-1__txt {
    display: block;
    margin-top: 8px;
    font-size: calc(22 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
@media (hover: hover) and (pointer: fine) {
    .c-link-1__txt {
        transition: opacity var(--hover-duration);
    }
    .c-link-1__txt:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-link-1__txt {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-link-1__txt::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 12px;
    background-color: var(--color-black-1);
    border-radius: 50em;
}
@media screen and (max-width: 750px) {
    .c-link-1__txt::after {
        margin-top: calc(12 / var(--design-width) * 100vw);
    }
}
.c-link-1__txt-s {
    margin-bottom: 8px;
    display: block;
    font-size: calc(14 / var(--root-fz) * 1rem);
    font-weight: 400;
}
@media screen and (max-width: 750px) {
    .c-link-1__txt-s {
        margin-bottom: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

.c-link-1-wrap {
    margin-top: 77px;
}
@media screen and (max-width: 750px) {
    .c-link-1-wrap {
        margin-top: calc(64 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   hero
--------------------------------------------- */
.s-hero{width:100%;padding:56px 0}
.s-hero p{color: #2c3338; font-weight: 700;line-height: 1.8;padding: 20px 0;}
.s-hero .l-breadcrumb__list{padding-left:0}
.s-hero__title{font-size:56px;font-weight:700;line-height:1.4;letter-spacing:.05em;margin:0}
.s-hero__title.align-center{text-align:center}
.s-hero__title.align-left{text-align:left}
.s-hero__title.align-right{text-align:right}
.s-hero__subtitle{margin-top:16px;font-size:22px;line-height:2;text-align:center}
.s-hero a.l-breadcrumb__txt{color:inherit}
.c-kv-1 .s-hero{background:transparent;padding:40px 0}
@media (max-width:749px){
  .s-hero{padding:28px 0}
  .s-hero__title{font-size:28px}
  .s-hero__subtitle{font-size:18px}
}


/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media screen and (max-width: 750px) {
    .c-list-1 {
        grid-template-columns: 1fr;
        gap: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2__item {
    position: relative;
    padding: 40px 92px 40px calc(48 / var(--contents-width) * 100%);
    background: url("../img/common/icon_arrow-3.svg") no-repeat right 40px center/28px 28px;
}
@media screen and (max-width: 750px) {
    .c-list-2__item {
        padding: calc(24 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) calc(20 / var(--design-width) * 100vw) 0;
        background-size: calc(16 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
        background-position: right 0 center;
    }
}
.c-list-2__item:not(:first-of-type) {
    border-top: 1px solid var(--color-gray-3);
}
.c-list-2__link {
    display: block;
    position: absolute;
    inset: 0;
}
.c-list-2__link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-white-1-rgb), 0.3);
    position: absolute;
    inset: 0;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-2__link:hover::before {
        opacity: 1;
    }
}
.c-list-2__cat {
    display: inline-block;
    padding: 5px 22px;
    color: var(--color-blue-1);
    font-size: calc(18 / var(--root-fz) * 1rem);
    background-color: var(--color-cat-1);
    font-weight: bold;
    border-radius: 50em;
    position: relative;
    z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-2__cat {
        transition: opacity var(--hover-duration);
    }
    .c-list-2__cat:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-list-2__cat {
        padding: calc(8 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-2__txt {
    margin-top: 24px;
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
@media screen and (max-width: 750px) {
    .c-list-2__txt {
        margin-top: calc(20 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-2__date {
    display: inline-block;
    margin-top: 16px;
    color: rgba(var(--color-black-2-rgb), 0.7);
    font-size: calc(18 / var(--root-fz) * 1rem);
    font-family: var(--ff-inter);
}
@media screen and (max-width: 750px) {
    .c-list-2__date {
        margin-top: calc(16 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3--bg-gray {
    padding: 24px 32px;
    border-radius: 8px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .c-list-3--bg-gray {
        padding: calc(24 / var(--design-width) * 100vw) calc(32 / var(--design-width) * 100vw);
        border-radius: calc(8 / var(--design-width) * 100vw);
    }
}
.c-list-3__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-list-3__item {
        gap: calc(16 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-3--2 .c-list-3__item {
    gap: 12px;
    color: var(--color-white-1);
    font-size: calc(18 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-list-3--2 .c-list-3__item {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}

.c-list-3__item:not(:first-of-type) {
    margin-top: 14px;
}
@media screen and (max-width: 750px) {
    .c-list-3__item:not(:first-of-type) {
        margin-top: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-3--2 .c-list-3__item:not(:first-of-type) {
    margin-top: 18px;
}
@media screen and (max-width: 750px) {
    .c-list-3--2 .c-list-3__item:not(:first-of-type) {
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}

.c-list-3__item::before {
    content: "";
    display: block;
    width: 8px;
    margin-top: 8px;
    aspect-ratio: 1/1;
    background-color: var(--color-blue-1);
    border-radius: 50%;
}
@media screen and (max-width: 750px) {
    .c-list-3__item::before {
        width: calc(8 / var(--design-width) * 100vw);
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}
.c-list-3--2 .c-list-3__item::before {
    width: 6px;
    margin-top: 12px;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 750px) {
    .c-list-3--2 .c-list-3__item::before {
        width: calc(6 / var(--design-width) * 100vw);
        margin-top: calc(12 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media screen and (max-width: 750px) {
    .c-list-4 {
        grid-template-columns: 1fr;
        gap: calc(24 / var(--design-width) * 100vw);
    }
}
.c-list-4__img {
    border-radius: 16px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-4__img {
        border-radius: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-4__txt {
    margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .c-list-4__txt {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-5
--------------------------------------------- */
.c-list-5 {
    display: flex;
}
@media screen and (max-width: 750px) {
    .c-list-5 {
        flex-direction: column;
    }
}
.c-list-5--col-3-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.347826087%;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3-2 {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-list-5--col-3 .c-list-5__item:first-of-type {
    width: 28.3582089552%;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3 .c-list-5__item:first-of-type {
        width: 100%;
    }
}
@media screen and (min-width: 751px) {
    .c-list-5--col-3 .c-list-5__item:not(:first-of-type) {
        width: 32.5757575758%;
        margin-left: 3.7313432836%;
        padding-left: 3.7313432836%;
        border-left: 1px solid rgba(var(--color-black-3-rgb), 0.2);
    }
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3 .c-list-5__item:not(:first-of-type) {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}

@media screen and (min-width: 751px) {
    .c-list-5--col-3-2 .c-list-5__item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        gap: 0px;
    }
}

.c-list-5--col-4 .c-list-5__item:first-of-type {
    width: 21.9696969697%;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-4 .c-list-5__item:first-of-type {
        width: 100%;
    }
}
@media screen and (min-width: 751px) {
    .c-list-5--col-4 .c-list-5__item:not(:first-of-type) {
        width: 24.2424242424%;
        margin-left: 2.2727272727%;
        padding-left: 2.2727272727%;
        border-left: 1px solid rgba(var(--color-black-3-rgb), 0.2);
    }
}
@media screen and (max-width: 750px) {
    .c-list-5--col-4 .c-list-5__item:not(:first-of-type) {
        margin-top: calc(25 / var(--design-width) * 100vw);
    }
}

.c-list-5__img {
    overflow: hidden;
}
.c-list-5--col-3 .c-list-5__img {
    border-radius: 24px;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3 .c-list-5__img {
        border-radius: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-5--col-3 .c-list-5__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.c-list-5--col-3-2 .c-list-5__img {
    aspect-ratio: 336/195;
    border-radius: 12px;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3-2 .c-list-5__img {
        border-radius: calc(12 / var(--design-width) * 100vw);
    }
}
.c-list-5--col-3-2 .c-list-5__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

@media screen and (max-width: 750px) {
    .c-list-5--col-4 .c-list-5__img {
        width: calc(80 / var(--design-width) * 100vw);
        height: calc(80 / var(--design-width) * 100vw);
    }
}

.c-list-5__txt-main {
    margin-top: 8px;
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-list-5__txt-main {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-list-5--col-3 .c-list-5__txt-main, .c-list-5--col-3-2 .c-list-5__txt-main {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3 .c-list-5__txt-main, .c-list-5--col-3-2 .c-list-5__txt-main {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}

.c-list-5--col-4 .c-list-5__txt-main {
    margin-top: 8px;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-4 .c-list-5__txt-main {
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}

.c-list-5__txt {
    margin-top: 8px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-list-5__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-5--col-3-2 .c-list-5__txt {
    font-size: calc(18 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-list-5--col-3-2 .c-list-5__txt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-6
--------------------------------------------- */
.c-list-6__item {
    font-size: calc(18 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-list-6__item {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-6__item::before {
    content: "・";
}

/* ---------------------------------------------
*   c-list-7
--------------------------------------------- */
.c-list-7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media screen and (max-width: 1024px) {
    .c-list-7 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 750px) {
    .c-list-7 {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 {
    grid-template-columns: 1fr;
    gap: 0;
}
.c-list-7__item {
    position: relative;
}
@media screen and (min-width: 751px) {
    .c-list-7__item:not(.c-list-7--col-1) .c-list-7__item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        gap: 0px;
    }
}
.c-list-7--col-1 .c-list-7__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__item {
        flex-direction: column;
        gap: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__item:not(:first-of-type) {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(var(--color-black-1-rgb), 0.3);
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__item:not(:first-of-type) {
        margin-top: calc(24 / var(--design-width) * 100vw);
        padding-top: calc(24 / var(--design-width) * 100vw);
    }
}

.c-list-7__link {
    position: absolute;
    inset: 0;
}
.c-list-7__link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-white-1-rgb), 0.3);
    position: absolute;
    inset: 0;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-7__link:hover::before {
        opacity: 1;
    }
}
.c-list-7__img {
    aspect-ratio: 378/207;
    outline: 1px solid rgba(var(--color-black-5-rgb), 0.05);
    outline-offset: -1px;
    border-radius: 16px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-7__img {
        border-radius: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__img {
    flex-shrink: 0;
    aspect-ratio: 160/104;
    border-radius: 8px;
    outline: 1px solid rgba(var(--color-black-5-rgb), 0.1);
}
@media screen and (min-width: 751px) {
    .c-list-7--col-1 .c-list-7__img {
        width: min(38.4615384615%, 160px);
    }
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__img {
        border-radius: calc(8 / var(--design-width) * 100vw);
    }
}

.c-list-7__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-list-7__cat {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 19px;
    padding: 8px 13px;
    color: var(--color-blue-1);
    background-color: var(--color-cat-1);
    border-radius: 50em;
    position: relative;
    z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-7__cat {
        transition: opacity var(--hover-duration);
    }
    .c-list-7__cat:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-list-7__cat {
        margin-top: calc(24 / var(--design-width) * 100vw);
        padding: calc(8 / var(--design-width) * 100vw) calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__cat {
    margin-top: 0;
    padding: 2px 8px 3px;
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__cat {
        padding: calc(4 / var(--design-width) * 100vw) calc(8 / var(--design-width) * 100vw);
    }
}

.c-list-7__cat-txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-7__cat-txt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__cat-txt {
    font-size: calc(14 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__cat-txt {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

.c-list-7__txt {
    margin-top: 8px;
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-7__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__txt {
    margin-top: 8px;
    font-size: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

.c-list-7__date {
    display: block;
    margin-top: 8px;
    font-family: var(--ff-inter);
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-list-7__date {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-7--col-1 .c-list-7__date {
    margin-top: 8px;
    color: var(--color-black-6);
    font-size: calc(14 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-list-7--col-1 .c-list-7__date {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

.c-news-cats-box {
  border:1px solid #ddd;
  border-radius:8px;
  padding:16px;
  background:#fff;
  margin-bottom: 50px;
}
.c-news-cats-box__title {
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
  display:flex;
  align-items:center;
}
.c-news-cats-list {
  list-style:none;
  margin:0;
  padding:0;
}
.c-news-cats-list li {
  border-bottom:1px solid #eee;
}
.c-news-cats-list li:last-child {
  border-bottom:none;
}
.c-news-cats-list a {
  display:block;
  padding:12px 0;
  font-size:18px;
  color:#333;
  text-decoration:none;
  transition:color .2s ease;
}
.c-news-cats-list a .count {
  margin-left:4px;
  color:#888;
  font-size:16px;
}
.c-news-cats-list a:hover {
  color:#1141a3;
}
.c-news-cats-list a.is-current {
  font-weight:700;
  color:#1141a3;
}


/* ---------------------------------------------
*   c-list-8
--------------------------------------------- */
.c-list-8 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media screen and (max-width: 750px) {
    .c-list-8 {
        flex-direction: column;
        gap: calc(64 / var(--design-width) * 100vw);
    }
}
.c-list-8__item--half {
    width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 750px) {
    .c-list-8__item--half {
        width: 100%;
    }
}
.c-list-8__item:not(.c-list-8__item--half) {
    width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 750px) {
    .c-list-8__item:not(.c-list-8__item--half) {
        width: 100%;
    }
}
.c-list-8__link {
    display: block;
    padding-bottom: 24px;
    color: var(--color-black-5);
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
    background: url("../img/common/icon_arrow-4.svg") no-repeat top 10px right/12px 12px;
    border-bottom: 1px solid rgba(var(--color-black-1-rgb), 0.3);
}
@media screen and (max-width: 750px) {
    .c-list-8__link {
        padding-bottom: calc(24 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
        background-position: top calc(8 / var(--design-width) * 100vw) right;
        background-size: calc(12 / var(--design-width) * 100vw) calc(12 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-8__link[href] {
        transition: opacity var(--hover-duration);
    }
    .c-list-8__link[href]:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-list-8__item-list {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-list-8__item-list {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-8__item-lv2 {
    padding-block: 12px;
}
@media screen and (max-width: 750px) {
    .c-list-8__item-lv2 {
        padding-block: calc(12 / var(--design-width) * 100vw);
    }
}
.c-list-8__link-lv2 {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-black-5);
    font-size: calc(14 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.3;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-8__link-lv2 {
        transition: opacity var(--hover-duration);
    }
    .c-list-8__link-lv2:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-list-8__link-lv2 {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-9
--------------------------------------------- */
.c-list-9__item:not(:first-of-type) {
    margin-top: 46px;
}
@media screen and (max-width: 750px) {
    .c-list-9__item:not(:first-of-type) {
        margin-top: calc(46 / var(--design-width) * 100vw);
    }
}
.c-list-9__txt-main {
    padding-bottom: 29px;
    display: flex;
    gap: 26px;
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
    border-bottom: 1px solid rgba(var(--color-black-1-rgb), 0.3);
}
@media screen and (max-width: 750px) {
    .c-list-9__txt-main {
        padding-bottom: calc(24 / var(--design-width) * 100vw);
        gap: calc(16 / var(--design-width) * 100vw);
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-list-9__txt-main-num {
    margin-top: 1.5px;
    color: var(--color-blue-1);
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.2;
    font-family: var(--ff-inter);
}
@media screen and (max-width: 750px) {
    .c-list-9__txt-main-num {
        margin-top: calc(3 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .android .c-list-9__txt-main-num {
        margin-top: calc(2 / var(--design-width) * 100vw);
    }
}

.c-list-9__txt {
    margin-top: 24px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .c-list-9__txt {
        margin-top: calc(24 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-10
--------------------------------------------- */
.c-list-10 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media screen and (max-width: 1024px) {
    .c-list-10 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 750px) {
    .c-list-10 {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-list-10__item {
    border: 1px solid var(--color-black-1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 751px) {
    .c-list-10__item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        gap: 0px;
    }
}
@media screen and (max-width: 750px) {
    .c-list-10__item {
        border-radius: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-10__img {
    aspect-ratio: 378/213;
    border-bottom: 1px solid var(--color-black-1);
}
.c-list-10__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-list-10__txt-main {
    margin-top: 32px;
    padding-inline: 8.4656084656%;
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-10__txt-main {
        margin-top: calc(32 / var(--design-width) * 100vw);
        padding-inline: calc(24 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-10__txt {
    margin-top: 8px;
    padding-inline: 8.4656084656%;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-list-10__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        padding-inline: calc(24 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-list-10--col-1 .c-list-10__txt {
    margin-top: 8px;
    font-size: calc(16 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-list-10--col-1 .c-list-10__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

.c-list-10__btn {
    margin-block: 32px;
}
@media screen and (max-width: 750px) {
    .c-list-10__btn {
        margin-block: calc(32 / var(--design-width) * 100vw);
        padding-inline: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-list-11
--------------------------------------------- */
.c-list-11__item {
    display: flex;
    font-size: calc(20 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-list-11__item {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
/*  c-modal
--------------------------------------------- */
.c-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    position: absolute;
    z-index: 200;
}
.c-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.c-modal__overlay {
    position: fixed;
    inset: 0;
}
.c-modal__inner {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(var(--color-black-1-rgb), 0.6);
}
.c-modal__container {
    position: relative;
    width: min(100%, 800px);
    max-height: 100vh;
    box-sizing: border-box;
    padding: 32px;
    border-radius: 24px;
    background-color: var(--color-white-1);
    overflow-y: auto;
}
@media screen and (max-width: 750px) {
    .c-modal__container {
        width: 90%;
        padding: calc(18 / var(--design-width) * 100vw);
        border-radius: calc(12 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: inherit;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-modal__close-btn {
        transition: opacity var(--hover-duration);
    }
    .c-modal__close-btn:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
@media screen and (max-width: 750px) {
    .c-modal__close-btn {
        top: calc(8 / var(--design-width) * 100vw);
        right: calc(8 / var(--design-width) * 100vw);
    }
}
.c-modal__close-btn::before {
    content: "✕";
}
.c-modal__movie {
    aspect-ratio: 16/9;
}
.c-modal__movie iframe {
    width: 100%;
    height: 100%;
}

.c-modal-btn {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-modal-btn {
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-modal-btn::before {
    content: "";
    display: block;
    width: 15.9722222222%;
    aspect-ratio: 1/1;
    background: url("../img/common/icon_play.svg") no-repeat center/100% auto;
    border-radius: 50%;
    box-shadow: 8px 8px 40px rgba(var(--color-black-1-rgb), 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
    .c-modal-btn::before {
        width: calc(46 / var(--design-width) * 100vw);
        box-shadow: calc(8 / var(--design-width) * 100vw) calc(8 / var(--design-width) * 100vw) calc(40 / var(--design-width) * 100vw) rgba(var(--color-black-1-rgb), 0.15);
    }
}

/* Modal Animation Style
--------------------------------------------- */
.c-modal[aria-hidden=false] .c-modal__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-modal__container {
    animation: mmslideIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal__overlay, .c-modal__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(15%);
    }
}
/* ---------------------------------------------
/* c-pagenavi
--------------------------------------------- */
.c-pagenavi {
    margin-top: 64px;
    font-family: var(--ff-inter_noto);
}
@media screen and (max-width: 750px) {
    .c-pagenavi {
        margin-top: calc(64 / var(--design-width) * 100vw);
    }
}
.c-pagenavi .wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 0.5em;
}
@media screen and (max-width: 750px) {
    .c-pagenavi .wp-pagenavi {
        gap: 0.25em;
    }
}
.c-pagenavi .wp-pagenavi span,
.c-pagenavi .wp-pagenavi a {
    display: grid;
    place-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0.25em 0.5em;
    color: var(--color-black-2);
    font-size: calc(14 / var(--root-fz) * 1rem);
    border: 1px solid #BFBFBF;
}
@media screen and (max-width: 750px) {
    .c-pagenavi .wp-pagenavi span,
    .c-pagenavi .wp-pagenavi a {
        min-width: calc(28 / var(--design-width) * 100vw);
        height: calc(28 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-pagenavi .wp-pagenavi a {
        transition: opacity var(--hover-duration);
    }
    .c-pagenavi .wp-pagenavi a:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-pagenavi .wp-pagenavi .current {
    background-color: #EEEEEE;
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    padding-block: 120px;
}
@media screen and (max-width: 750px) {
    .c-section-1 {
        padding-block: calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-1--bg-blue {
    background-color: var(--color-blue-1);
    border-radius: 48px;
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-section-1--bg-blue {
        border-radius: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-1--bg-blue::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-gray-1);
    position: absolute;
    inset: 0;
    z-index: -1;
}
.c-section-1__body {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-section-1__body {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.c-section-1--2 .c-section-1__body {
    margin-top: 18px;
}
@media screen and (max-width: 750px) {
    .c-section-1--2 .c-section-1__body {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-1__head-txt {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-section-1__head-txt {
        margin-top: calc(18 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
    padding-top: 80px;
}
@media screen and (max-width: 750px) {
    .c-section-2 {
        padding-top: calc(64 / var(--design-width) * 100vw);
    }
}
.c-section-2__container {
    display: grid;
    grid-template-columns: max(226 / var(--contents-width) * 100%, 180px) 1fr;
    gap: calc(42 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-2__container {
        grid-template-columns: 1fr;
        gap: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-2__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 24px;
    margin-inline: auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-2__btn {
        width: 100%;
        margin-top: calc(24 / var(--design-width) * 100vw);
        margin-inline: auto;
    }
}

/* ---------------------------------------------
*   c-section-3
--------------------------------------------- */
.c-section-3 {
    padding-block: 80px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .c-section-3 {
        padding-block: calc(64 / var(--design-width) * 100vw);
    }
}
.c-section-3__container {
    display: grid;
    grid-template-columns: calc(600 / var(--contents-width) * 100%) 1fr;
    align-items: center;
    gap: calc(60 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-3__container {
        grid-template-columns: 1fr;
        gap: calc(48 / var(--design-width) * 100vw);
    }
}
.c-section-3__ttl {
    color: var(--color-blue-1);
    font-size: calc(28 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-section-3__ttl {
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-section-3__txt-main {
    margin-top: 18px;
    font-size: calc(36 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-section-3__txt-main {
        margin-top: calc(12 / var(--design-width) * 100vw);
        font-size: calc(28 / var(--design-width) * 100vw);
    }
}
.c-section-3__txt {
    margin-top: 16px;
    font-size: calc(24 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-section-3__txt {
        margin-top: calc(12 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-4
--------------------------------------------- */
.c-section-4 {
    padding-block: 120px;
}
@media screen and (max-width: 750px) {
    .c-section-4 {
        padding-block: calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-4__container {
    display: flex;
    align-items: center;
    gap: calc(48 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-4__container {
        flex-direction: column;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-section-4--1 .c-section-4__container {
        align-items: flex-start;
        gap: calc(64 / var(--contents-width) * 100%);
    }
}
@media screen and (min-width: 751px) {
    .c-section-4--2 .c-section-4__container {
        gap: calc(72 / var(--contents-width) * 100%);
    }
}
@media screen and (max-width: 750px) {
    .c-section-4--2 .c-section-4__container {
        flex-direction: column-reverse;
    }
}
.c-section-4__txt-wrap {
    flex-shrink: 0;
}
@media screen and (min-width: 751px) {
    .c-section-4--1 .c-section-4__txt-wrap {
        width: calc(573 / var(--contents-width) * 100%);
    }
}
@media screen and (min-width: 751px) {
    .c-section-4--2 .c-section-4__txt-wrap {
        width: calc(724 / var(--contents-width) * 100%);
    }
}
.c-section-4__txt {
    margin-top: 20px;
}
@media screen and (max-width: 750px) {
    .c-section-4__txt {
        margin-top: calc(20 / var(--design-width) * 100vw);
    }
}
.c-section-4__btn {
    margin-top: 36px;
}
@media screen and (max-width: 750px) {
    .c-section-4__btn {
        margin-top: calc(30 / var(--design-width) * 100vw);
    }
}
.c-section-4__list {
    margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .c-section-4__list {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-section-4--1 .c-section-4__body {
        width: calc(563 / var(--contents-width) * 100%);
    }
}
.c-section-4__frame {
    margin-bottom: -12px;
    padding: 20px;
    color: var(--color-white-1);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.6;
    background-color: var(--color-white-1);
    border-radius: 16px;
    background-color: var(--color-blue-1);
    position: relative;
    z-index: 10;
}
@media print, screen and (min-width: 751px) {
    .c-section-4__frame {
        width: min(100%, 551px);
    }
}
@media screen and (max-width: 750px) {
    .c-section-4__frame {
        padding: calc(12 / var(--design-width) * 100vw);
        font-size: calc(15 / var(--design-width) * 100vw);
        border-radius: calc(9 / var(--design-width) * 100vw);
    }
}
.c-section-4__frame::before {
    content: "";
    display: block;
    width: 34px;
    height: 18px;
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1px;
    background-color: var(--color-white-1);
    -webkit-mask: url("../img/top/img_frame.svg") no-repeat center/contain;
            mask: url("../img/top/img_frame.svg") no-repeat center/contain;
    background-color: var(--color-blue-1);
}
@media screen and (max-width: 750px) {
    .c-section-4__frame::before {
        width: calc(24 / var(--design-width) * 100vw);
        height: calc(13 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-5
--------------------------------------------- */
.c-section-5 {
    padding-block: 160px;
    background-color: var(--color-black-4);
}
@media screen and (max-width: 750px) {
    .c-section-5 {
        padding-block: calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-5__container {
    display: grid;
    grid-template-columns: max(352 / var(--contents-width) * 100%, 360px) 1fr;
    align-items: center;
    gap: calc(72 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-5__container {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-5__txt {
    margin-top: 16px;
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-section-5__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-6
--------------------------------------------- */
.c-section-6--padding {
    padding-block: 120px;
}

.c-section-6--faq{
padding-bottom: 120px;
}

@media screen and (max-width: 750px) {
    .c-section-6--padding {
        padding-block: calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-6--3 {
    padding-block: 120px;
}
@media screen and (max-width: 750px) {
    .c-section-6--3 {
        padding-block: calc(120 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 750px) {
    .c-section-6--faq {
        margin-top: calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-6__body {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-section-6__body {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}
.c-section-6--2 .c-section-6__body {
    margin-top: 64px;
}
@media screen and (max-width: 750px) {
    .c-section-6--2 .c-section-6__body {
        margin-top: calc(64 / var(--design-width) * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .c-section-6--3 .c-section-6__body {
        margin-top: calc(44 / var(--design-width) * 100vw);
    }
}

.c-section-6--faq .c-section-6__body {
    margin-top: 56px;
}
@media screen and (max-width: 750px) {
    .c-section-6--faq .c-section-6__body {
        margin-top: calc(42 / var(--design-width) * 100vw);
    }
}

.c-section-6__head-txt {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-section-6__head-txt {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-6__txt {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-section-6__txt {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-6__foot {
    margin-top: 48px;
    margin-inline: auto;
	display: flex;
    gap: 16px;
}
@media screen and (min-width: 751px) {
    .c-section-6__foot {
        max-width: 450px;
    }
}
@media screen and (max-width: 750px) {
    .c-section-6__foot {
        margin-top: calc(35 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-7
--------------------------------------------- */
.c-section-7:not(:first-child) {
    margin-top: 64px;
}
@media screen and (max-width: 750px) {
    .c-section-7:not(:first-child) {
        margin-block: calc(64 / var(--design-width) * 100vw);
    }
}
.c-section-7:not(.c-section-7--complete) .c-section-7__container {
    display: grid;
    grid-template-columns: max(420 / var(--contents-width) * 100%, 300px) 1fr;
    gap: calc(80 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-7:not(.c-section-7--complete) .c-section-7__container {
        grid-template-columns: 1fr;
        gap: calc(56 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 751px) {
    .c-section-7--2:not(.c-section-7--complete) .c-section-7__container {
        grid-template-columns: max(360 / var(--contents-width) * 100%, 305px) 1fr;
    }
}

.c-section-7__img {
    width: -moz-fit-content;
    width: fit-content;
    aspect-ratio: 420/237;
    margin-inline: auto;
    border-radius: 16px;
    border: 1px solid var(--color-black-2);
    box-shadow: 32px 28px 100px 0px rgba(8, 90, 103, 0.1);
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-section-7__img {
        width: 100%;
        border-radius: calc(16 / var(--design-width) * 100vw);
        box-shadow: calc(32 / var(--design-width) * 100vw) calc(28 / var(--design-width) * 100vw) calc(100 / var(--design-width) * 100vw) 0px rgba(8, 90, 103, 0.1);
    }
}
.c-section-7--complete .c-section-7__img {
    aspect-ratio: 418/237;
}
@media screen and (min-width: 751px) {
    .c-section-7--complete .c-section-7__img {
        max-width: 418px;
    }
}

.c-section-7__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-section-7__ttl {
    margin-top: 44px;
}
@media screen and (max-width: 750px) {
    .c-section-7__ttl {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-1:not(:first-child) {
    margin-top: 14px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-1:not(:first-child) {
        margin-top: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-2 {
    padding-left: 6px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-2 {
        padding-left: 0;
    }
}
.c-section-7__txt-2:not(:first-child) {
    margin-top: 26px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-2:not(:first-child) {
        margin-top: calc(26 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-3 {
    font-size: calc(19 / var(--root-fz) * 1rem);
    letter-spacing: 0.0473684211em;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-3 {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-3:not(:first-child) {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-3:not(:first-child) {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-4 {
    font-size: calc(34 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-4 {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-4:not(:first-child) {
    margin-top: 56px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-4:not(:first-child) {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-7__txt-5:not(:first-child) {
    margin-top: 16px;
}
@media screen and (max-width: 750px) {
    .c-section-7__txt-5:not(:first-child) {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-7__list {
    margin-top: 15px;
    padding-left: 6px;
}
@media screen and (max-width: 750px) {
    .c-section-7__list {
        margin-top: calc(15 / var(--design-width) * 100vw);
        padding-left: 0;
    }
}
.c-section-7__btn {
    margin-top: 32px;
    margin-inline: auto;
}
@media screen and (min-width: 751px) {
    .c-section-7__btn {
        max-width: 360px;
    }
}
@media screen and (max-width: 750px) {
    .c-section-7__btn {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-8
--------------------------------------------- */

.c-section-8__side {
  position: sticky;
  top: 20px; 
}

.c-section-8__container {
    display: grid;
    grid-template-columns: max(720 / var(--contents-width) * 100%, 450px) 1fr;
    gap: calc(64 / var(--contents-width) * 100%);
}
@media screen and (max-width: 750px) {
    .c-section-8__container {
        grid-template-columns: 1fr;
        gap: calc(32 / var(--design-width) * 100vw);
    }
}
.c-section-8__date {
    display: block;
    margin-top: 19px;
    color: var(--color-black-2);
    font-family: var(--ff-inter);
    font-size: calc(20 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
    .c-section-8__date {
        margin-top: calc(16 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-8__side-ttl {
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-section-8__side-ttl {
        font-size: calc(20 / var(--design-width) * 100vw);
    }
}
.c-section-8__side-list {
    margin-top: 28px;
}
@media screen and (max-width: 750px) {
    .c-section-8__side-list {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-8__block {
    margin-top: 40px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05625em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-section-8__block {
        margin-top: calc(32 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-8__block > :last-child {
    margin-bottom: 0 !important;
}
.c-section-8__block sup {
    vertical-align: super;
    font-size: smaller;
}
.c-section-8__block sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-section-8__block h1, .c-section-8__block h2 {
    font-size: calc(24 / var(--root-fz) * 1rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.c-section-8__block h2 {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(var(--color-black-2-rgb), 0.5);
}
.c-section-8__block h3 {
    font-size: calc(20 / var(--root-fz) * 1rem);
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.c-section-8__block > h1, .c-section-8__block > h2 {
    margin-top: 2.5rem;
}
.c-section-8__block > h3, .c-section-8__block > h4, .c-section-8__block > h5, .c-section-8__block > h6 {
    margin-top: 2rem;
}
.c-section-8__block h1, .c-section-8__block h2, .c-section-8__block h3, .c-section-8__block h4, .c-section-8__block h5, .c-section-8__block h6 {
    font-weight: 700;
}
.c-section-8__block i,
.c-section-8__block strong {
    font-weight: bold;
}
.c-section-8__block > p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-section-8__block em {
    font-style: italic;
}
.c-section-8__block a {
    color: var(--color-blue-1);
    text-decoration: underline;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-8__block a:hover {
        text-decoration: none;
    }
}
.c-section-8__block ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-section-8__block ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-section-8__block li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.c-section-8__block del {
    text-decoration: line-through;
}
.c-section-8__block hr {
    display: block;
    border: none;
    border-top: #9a9a9a 1px solid;
    border-bottom: #eee 1px solid;
}
.c-section-8__block img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    outline: 1px solid rgba(var(--color-black-5-rgb), 0.1);
    outline-offset: -1px;
    overflow: hidden;
}
.c-section-8__block .wp-block-image:not(:first-of-type) img {
  margin-top: 36px;
}
@media screen and (max-width: 750px) {
    .c-section-8__block img {
        border-radius: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-8__block table {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.c-section-8__block table th,
.c-section-8__block table td {
    padding: 0.5em;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    word-break: break-all;
}
.c-section-8__block table th {
    background-color: #eee;
}
.c-section-8 :where(.wp-block-columns),
.c-section-8 :where(.wp-block-image) {
    margin-bottom: 1.75rem;
}
.c-section-8 :where(figure) {
    margin: 0 0 1.75rem;
}

/* ---------------------------------------------
*   c-section-9
--------------------------------------------- */
.c-section-9 {
    margin-top: 64px;
}
@media screen and (max-width: 750px) {
    .c-section-9 {
        margin-top: calc(80 / var(--design-width) * 100vw);
    }
}
.c-section-9 + .c-section-9 {
    margin-top: 64px;
}
@media screen and (max-width: 750px) {
    .c-section-9 + .c-section-9 {
        margin-top: calc(64 / var(--design-width) * 100vw);
    }
}
.c-section-9__body {
    margin-top: 40px;
}
@media screen and (max-width: 750px) {
    .c-section-9__body {
        margin-top: calc(40 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-slider-1
--------------------------------------------- */
.c-slider-1__item {
    border-radius: 24px;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    .c-slider-1__item {
        border-radius: calc(12 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-tab
--------------------------------------------- */
.c-tabs__tab-list {
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 750px) {
    .c-tabs__tab-list {
        gap: calc(8 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab {
    display: inline-block;
    padding: 16px 96px 16px 24px;
    color: rgba(var(--color-black-2-rgb), 0.5);
    font-size: calc(20 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    background-color: var(--color-gray-2);
    border-radius: 16px;
    touch-action: manipulation;
    position: relative;
}
@media screen and (max-width: 750px) {
    .c-tabs__tab {
        padding: calc(10 / var(--design-width) * 100vw) calc(52 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw) calc(14 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        border-radius: calc(10 / var(--design-width) * 100vw);
    }
}
.c-tabs__tab.is-current {
    color: var(--color-white-1);
    background-color: var(--color-blue-1);
    cursor: auto;
}
.c-tabs__tab:not(.is-current) {
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .c-tabs__tab:not(.is-current) {
        transition: opacity var(--hover-duration);
    }
    .c-tabs__tab:not(.is-current):hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.c-tabs__tab-icn {
    position: absolute;
    right: 16px;
    bottom: 0;
}
@media screen and (min-width: 751px) {
    .c-tabs__tab-icn {
        max-width: 86px;
    }
}
@media screen and (max-width: 750px) {
    .c-tabs__tab-icn {
        width: calc(55 / var(--design-width) * 100vw);
        right: calc(5 / var(--design-width) * 100vw);
    }
}
.c-tabs__body {
    margin-top: 40px;
    padding: 48px 24px;
    background-color: var(--color-gray-1);
    border-radius: 32px;
}
@media screen and (max-width: 750px) {
    .c-tabs__body {
        margin-top: calc(40 / var(--design-width) * 100vw);
        padding: calc(32 / var(--design-width) * 100vw);
        border-radius: calc(16 / var(--design-width) * 100vw);
    }
}
.c-tabs__body-inner {
    max-width: 1104px;
    margin-inline: auto;
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
    font-size: calc(56 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-ttl-1 {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2__main {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    color: var(--color-blue-1);
    font-size: calc(40 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__main {
        gap: calc(16 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
.c-ttl-2--s .c-ttl-2__main {
    font-size: calc(32 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-ttl-2--s .c-ttl-2__main {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}

.c-ttl-2:not(.c-ttl-2--jp) .c-ttl-2__main {
    font-family: var(--ff-inter);
}
.c-ttl-2__main::before {
    content: "";
    display: block;
    margin-top: 26px;
    width: 12px;
    aspect-ratio: 1/1;
    background-color: var(--color-blue-1);
    border-radius: 50%;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__main::before {
        width: calc(8 / var(--design-width) * 100vw);
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}
.c-ttl-2--white .c-ttl-2__main::before {
    background-color: var(--color-white-1);
}

.c-ttl-2--s .c-ttl-2__main::before {
    margin-top: 21px;
}
@media screen and (max-width: 750px) {
    .c-ttl-2--s .c-ttl-2__main::before {
        margin-top: calc(16 / var(--design-width) * 100vw);
    }
}

.c-ttl-2--white .c-ttl-2__main {
    color: var(--color-white-1);
}

.c-ttl-2__txt-sub {
    color: var(--color-blue-1);
    font-size: calc(24 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__txt-sub {
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-ttl-2--white .c-ttl-2__txt-sub {
    color: var(--color-white-1);
}

.c-ttl-2__txt {
    font-size: calc(56 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__txt {
        font-size: calc(32 / var(--design-width) * 100vw);
        line-height: 1.6;
    }
}
.c-ttl-2--s .c-ttl-2__txt {
    font-size: calc(29 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 750px) {
    .c-ttl-2--s .c-ttl-2__txt {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

.c-ttl-2--white .c-ttl-2__txt {
    color: var(--color-white-1);
}

.c-ttl-2__main + .c-ttl-2__txt-sub {
    margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__main + .c-ttl-2__txt-sub {
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-ttl-2__main + .c-ttl-2__txt {
    margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__main + .c-ttl-2__txt {
        margin-top: calc(32 / var(--design-width) * 100vw);
    }
}
.c-ttl-2--s .c-ttl-2__main + .c-ttl-2__txt {
    margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .c-ttl-2--s .c-ttl-2__main + .c-ttl-2__txt {
        margin-top: calc(24 / var(--design-width) * 100vw);
                font-size: 20px;
    }
}

.c-ttl-2__txt-sub + .c-ttl-2__txt {
    margin-top: 8px;
}
@media screen and (max-width: 750px) {
    .c-ttl-2__txt-sub + .c-ttl-2__txt {
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-ttl-3 {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}
.c-ttl-3--blue {
    color: var(--color-blue-2);
}
@media screen and (max-width: 750px) {
    .c-ttl-3--sp-s {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-ttl-4
--------------------------------------------- */
.c-ttl-4 {
    font-size: calc(48 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
@media screen and (max-width: 750px) {
    .c-ttl-4 {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-ttl-5
--------------------------------------------- */
.c-ttl-5 {
    font-size: calc(40 / var(--root-fz) * 1rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-ttl-5 {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
    font-size: calc(16 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-txt-1 {
        font-size: calc(14 / var(--design-width) * 100vw);
        letter-spacing: 0.05em;
    }
}

/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
    font-size: calc(18 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 1.8;
}
@media screen and (max-width: 750px) {
    .c-txt-2 {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-3
--------------------------------------------- */
.c-txt-3 {
    font-size: calc(20 / var(--root-fz) * 1rem);
    letter-spacing: 0.05em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-txt-3 {
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-txt-3 + .c-txt-3 {
    margin-top: 1em;
}
@media screen and (max-width: 750px) {
    .c-txt-3--sp-l {
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-txt-4
--------------------------------------------- */
.c-txt-4 {
    color: var(--color-blue-1);
    font-size: calc(32 / var(--root-fz) * 1rem);
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-txt-4 {
        font-size: calc(18 / var(--design-width) * 100vw);
        letter-spacing: 0.05em;
    }
}
@media screen and (max-width: 750px) {
    .c-txt-4--sp-l {
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 2;
    }
}

/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   display
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .display-inline-block {
        display: inline-block;
    }
}

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

.fc-blue {
    color: var(--color-blue-1) !important;
}

.fc-black-1 {
    color: var(--color-black-1) !important;
}

.fc-black-2 {
    color: var(--color-black-2) !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   letter-spacing
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .letter-spacing-pc-0 {
        letter-spacing: 0 !important;
    }
}

/* ---------------------------------------------
*   line-height
--------------------------------------------- */
.line-height-1 {
    line-height: 1.4 !important;
}

.line-height-2 {
    line-height: 1.6 !important;
}

.line-height-3 {
    line-height: 1.8 !important;
}

.line-height-4 {
    line-height: 2 !important;
}

@media screen and (max-width: 750px) {
    .line-height-4-sp {
        line-height: 2 !important;
    }
}

.line-height-5 {
    line-height: 2.5 !important;
}

@media screen and (max-width: 750px) {
    .line-height-5-sp {
        line-height: 2.5 !important;
    }
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-center-sp {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/* ---------------------------------------------
*   text-decoration
--------------------------------------------- */
.txt-dc-underline {
    text-decoration: underline;
}

/* ---------------------------------------------
*   width
--------------------------------------------- */
.w-100 {
    width: 100% !important;
}

/* ---------------------------------------------
*   js-acc-target
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 0px;
    height: 0;
    overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

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

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

/* ---------------------------------------------
*   js-order
--------------------------------------------- */
.js-order__item[data-order="1"] {
    animation-delay: 0.3s;
}
.js-order__item[data-order="2"] {
    animation-delay: 0.6s;
}
.js-order__item[data-order="3"] {
    animation-delay: 0.9s;
}
.js-order__item[data-order="4"] {
    animation-delay: 1.2s;
}
.js-order__item[data-order="5"] {
    animation-delay: 1.5s;
}

/* ---------------------------------------------
*   js-fadein-up
--------------------------------------------- */
.js-fadein-up {
    opacity: 0;
    transform: translateY(50px);
}
.js-fadein-up.is-active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s, opacity 1s;
}

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

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

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}


/* ===== Header Dropdown（common.css の末尾に追記してください） ===== */

/* ドロップダウンの親要素 */
.l-header-nav__item--has-dropdown {
  position: relative;
}

/* ドロップダウンメニュー本体（通常は非表示） */
.l-header-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
}

/* マウスホバーでドロップダウンを表示 */
.l-header-nav__item--has-dropdown:hover .l-header-nav__dropdown {
  display: block;
}

/* ドロップダウン内の各アイテム */
.l-header-nav__dropdown-item {
  margin: 0;
  padding: 0;
}

/* ドロップダウン内のリンク */
.l-header-nav__dropdown-link {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

/* ドロップダウン内リンクのホバー */
.l-header-nav__dropdown-link:hover {
  background: #f5f5f5;
}

/* ===== End Header Dropdown ===== */