/* --------------------------------------------------- */
/* common */
/* --------------------------------------------------- */
:root {
    --black: #2b3845;
    --white: #fff;
    --base: #f8fbfb;
    --base-on_color: #e6f1f1;
    --line: #d5e3e5;
    --light_gray: #f1f1f1;
    --middle_gray: #adadad;
    --dark_gray: #707070;
    --main: linear-gradient(to right, #26b8e9, #68f4ca);
    --attention: #f30000;
    --header-width: 0;
    --header-height: 0;
    --window-percent: 0;
    --window-vw: 0;
    --window-diff: 0;
}
* {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
html {
    /* scroll-behavior: smooth; */
    background-color: var(--base);
    font-size: calc(16 / 1440 * (100vw - var(--window-diff)));
    margin-top: 0 !important;
}
@media screen and (max-width: 1279px) {
    html {
        font-size: calc(16 / 1080 * (100vw - var(--window-diff)));
    }
}
@media screen and (max-width: 959px) {
    html {
        font-size: calc(16 / 768 * (100vw - var(--window-diff)));
    }
}
@media screen and (max-width: 767px) {
    html {
        font-size: calc(16 / 390 * (100vw - var(--window-diff)));
    }
}
h1,
h2,
h3,
h4,
p,
li {
    color: var(--black);
    line-height: 1;
    letter-spacing: 0.02em;
}
a {
    text-decoration: none;
    color: var(--black);
    transition: opacity 0.3s;
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    letter-spacing: 0.02em;
}
a:hover {
    /* opacity: 0.5; */
}
h1,
h2,
h3,
h4 {
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
}
p {
    font-size: 1rem;
    font-weight: 400;
}
span {
    font-family: inherit;
    line-height: inherit;
    display: inline-block;
}
button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
}
.eng {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0em;
}
img {
    /* width: 100%;
  height: auto; */
    display: block;
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
table {
    border-spacing: 0;
}
th {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    letter-spacing: 0.02em;
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.75;
    padding: 1.625rem 2rem;
    box-sizing: content-box;
    border-bottom: 1px solid var(--line);
    width: 10.5rem;
    text-align: left;
}
td {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    letter-spacing: 0.02em;
    font-size: 1rem;
    color: var(--black);
    font-weight: 400;
    line-height: 1.75;
    padding: 1.625rem 2rem 1.625rem 0;
    border-bottom: 1px solid var(--line);
}
tbody tr:last-child td,
tbody tr:last-child th {
    border-bottom: none;
}
@media screen and (max-width: 1279px) {
    th {
        padding: 1.625rem 1.75rem;
    }
    td {
        padding: 1.625rem 1.75rem 1.625rem 0;
    }
}
@media screen and (max-width: 959px) {
    th {
        width: 9rem;
    }
}
/* --------------------------------------------------- */
/* pagelink */
/* --------------------------------------------------- */
.pagelink {
    width: max-content;
    border-radius: 100vw;
    background-color: var(--black);
    display: flex;
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 0;
    transition: background-color 0.3s;
}
.pagelink__circle {
    width: 2rem;
    height: 2rem;
    border-radius: 100vw;
    border: 1px solid var(--white);
}
.pagelink__dot {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.3s;
}
.pagelink__dot::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0.3125rem, -50%);
    border-radius: 100vw;
    background: var(--white);
}
.pagelink::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100vw;
    background: var(--main);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.pagelink:hover {
    background-color: transparent;
}
.pagelink:hover::after {
    opacity: 1;
}
.pagelink:hover .pagelink__dot {
    animation: rotateDot 0.8s linear infinite;
}
@keyframes rotateDot {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------- */
/* responsive */
/* --------------------------------------------------- */
.sp-d {
    display: none;
}
.pc-d {
    display: block;
}
@media screen and (max-width: 959px) {
    .sp-d {
        display: block;
    }
    .pc-d {
        display: none !important;
    }
}

/* --------------------------------------------------- */
/* components */
/* --------------------------------------------------- */
.p-150 {
    font-size: 1rem;
    line-height: 150%;
}
.p-175 {
    font-size: 1rem;
    line-height: 175%;
}
.p-200 {
    font-size: 1rem;
    line-height: 200%;
}
.p-225 {
    font-size: 1rem;
    line-height: 225%;
}
.p-250 {
    font-size: 1rem;
    line-height: 250%;
}
.box_link {
    width: auto;
    border-radius: 0.25rem;
    background: var(--white);
}
.box_link__inner {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    gap: 2rem;
}
.box_link__desc {
    display: flex;
    padding: 1.25rem 0rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
}
.box_link__title {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}
.box_link__caption {
    color: var(--black);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}
.box_link__arrow {
    border-radius: 0.25rem;
    background-color: var(--black);
    display: flex;
    padding: 0rem 0.5rem;
    align-items: center;
    align-self: stretch;
    position: relative;
    transition: background-color 0.3s;
    z-index: 0;
}
.box_link__arrow .box_link__arrow-svg {
    width: 1.5rem;
    height: auto;
}
.box_link__arrow .box_link__arrow-path:first-of-type {
    fill: var(--white);
}
.box_link__arrow .box_link__arrow-path:last-of-type {
    stroke: var(--white);
}
.box_link__arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    border-radius: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.box_link:hover .box_link__arrow {
    background-color: transparent;
}
.box_link:hover .box_link__arrow::after {
    opacity: 1;
}
.p-tabs__nav {
    display: flex;
}
.p-tabs__button {
    flex: 1;
    background-color: var(--black);
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    display: flex;
    padding: 0rem 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    transition: background-color 0.3s;
}
.p-tabs__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 0.5rem 0.5rem 0rem 0rem;
}
.p-tabs__button:not(.active):hover {
    background-color: transparent;
}
.p-tabs__button:not(.active):hover::after {
    opacity: 1;
}
.p-tabs__button-text {
    padding: 1.5rem 0rem;
    text-align: center;
    align-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 100%;
    flex: 1;
}
.p-tabs__button.active {
    background-color: var(--white);
}
.p-tabs__button.active .p-tabs__button-text {
    color: var(--black);
    border-bottom: 1px solid var(--line);
}
.p-tabs__wrapper {
    background-color: var(--white);
    border-radius: 0 0 0.5rem 0.5rem;
}
.p-tabs__content {
    display: none;
    padding: 2rem;
}
.p-tabs__content.active {
    display: block;
}
.swiper_base {
    width: 100%;
}
.swiper--repeat {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.swiper,
.swiper--repeat {
    background-color: var(--base-on_color);
    padding: 1.5rem !important;
    border-radius: 0.25rem 0.25rem 0 0;
}
.swiper::before,
.swiper--repeat::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: var(--black);
    z-index: -1;
}
.swiper_controller {
    display: flex;
    gap: 0.0625rem;
}
.swiper-button-prev,
.swiper-button-next {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    width: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    background-color: var(--black);
    flex: 1;
    padding: 1.25rem 0;
    transition: opacity 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.5;
}
.swiper-button-next {
    border-radius: 0 0 0.25rem 0;
}
.swiper-button-prev {
    border-radius: 0 0 0 0.25rem;
}
.swiper_controller__svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.swiper-button-prev .swiper_controller__svg {
    left: 1.25rem;
}
.swiper-button-next .swiper_controller__svg {
    right: 1.25rem;
}
.swiper_controller__text {
    color: var(--white);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.02em;
}
.swiper-notification {
    display: none;
}
.our_business__main {
    width: 100%;
    height: 25rem;
    border-radius: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 0.125rem; */
    position: relative;
}
.our_business__main-container {
    flex: 1;
    height: 100%;
    position: relative;
}
.our_business__main-container--1 {
    background-image: url("../img/asset/business1.webp");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0 0 0.5rem;
}
.our_business__main-container--2 {
    background-image: url("../img/asset/business2.webp");
    background-size: cover;
    background-position: center;
}
.our_business__main-container--3 {
    background-image: url("../img/asset/business3.webp");
    background-size: cover;
    background-position: center;
    border-radius: 0 0.5rem 0.5rem 0;
}
.our_business__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.our_business__link-inner {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 2rem 2rem 2.125rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.4);
}
.our_business__link--1 .our_business__link-inner {
    border-radius: 0.5rem 0 0 0.5rem;
}
.our_business__link--3 .our_business__link-inner {
    border-radius: 0 0.5rem 0.5rem 0;
}
.our_business__link-number {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 100%; /* 1.25rem */
}
.our_business__link-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
    line-height: 120%; /* 2.4rem */
    margin: -0.2rem 0;
}
.our_business__link-caption {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.75rem;
}
.our_business__hover_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}
.our_business__hover_bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
}
.our_business__link.darkly .our_business__link-number,
.our_business__link.darkly .our_business__link-desc {
    opacity: 0.5;
}
.flow_list__item {
    outline: 1px solid var(--black);
    outline-offset: -1px;
    border-radius: 0.25rem;
    display: flex;
    position: relative;
}
.flow_list__item:not(:last-of-type) {
    margin-bottom: 2rem;
}
.flow_list__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 2rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--black);
}
.flow_list__number {
    background-color: var(--black);
    padding: 0rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem 0 0 0.25rem;
}
.flow_list__number-text {
    width: 1.375rem;
    color: var(--white);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%; /* 1rem */
}
.flow_list__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
}
.flow_list__title {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 100%; /* 1.25rem */
}
.flow_list__desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
}
.flow_list__desc-text {
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    line-height: 175%; /* 1.75rem */
    margin: -0.375rem 0;
}
@media screen and (max-width: 1279px) {
    .our_business__main {
        height: 20rem;
    }
    .our_business__link-inner {
        padding: 1.5rem 1.5rem 1.625rem;
    }
    .our_business__link-number {
        font-size: 1.125rem;
    }
    .our_business__link-title {
        font-size: 1.625rem;
        margin: -0.1625rem 0;
    }
    .our_business__link-caption {
        margin-top: 0.625rem;
        font-size: 0.875rem;
    }
    .box_link__inner {
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
        gap: 1.5rem;
    }
    .box_link__desc {
        padding: 0.75rem 0rem;
        gap: 0.75rem;
    }
    .box_link__title {
        font-size: 1.25rem;
    }
    .box_link__caption {
        font-size: 0.875rem;
    }
    .box_link__arrow {
        padding: 0rem 0.375rem;
    }
    .p-tabs__button {
        padding: 0rem 1.75rem;
    }
    .p-tabs__content {
        padding: 1.75rem;
    }
    .flow_list__item:not(:last-of-type) {
        margin-bottom: 1.75rem;
    }
    .flow_list__item:not(:last-of-type)::after {
        height: 1.75rem;
    }
}
@media screen and (max-width: 959px) {
    .our_business__main {
        flex-direction: column;
        height: auto;
        border-radius: 0.5rem;
    }
    .our_business__main-container {
        height: 12.5rem;
        width: 100%;
        flex: unset;
    }
    .our_business__main-container--1,
    .our_business__link--1 .our_business__link-inner {
        border-radius: 0.5rem 0.5rem 0 0;
    }
    .our_business__main-container--3,
    .our_business__link--3 .our_business__link-inner {
        border-radius: 0 0 0.5rem 0.5rem;
    }
    .box_link__inner {
        padding: 0.5rem 0.5rem 0.5rem 1.25rem;
        gap: 1.25rem;
    }
    .box_link__desc {
        padding: 0.5rem 0rem;
        gap: 0.5rem;
    }
    .box_link__caption {
        line-height: 150%;
    }
    .p-tabs__nav {
        overflow-x: scroll;
    }
    .p-tabs__button {
        /* flex: none; */
    }
    .p-tabs__button-text {
        white-space: nowrap;
    }
}
@media screen and (max-width: 767px) {
    .our_business__main-container {
        height: 10rem;
    }
    .our_business__link-inner {
        padding: 1.25rem 1.25rem 1.375rem;
    }
    .box_link__inner {
        padding: 0.5rem 0.5rem 0.5rem 1.125rem;
        gap: 1.125rem;
    }
    .box_link__desc {
        padding: 0.375rem 0rem;
        gap: 0.375rem;
    }
    .box_link__title {
        font-size: 1.125rem;
    }
    .swiper,
    .swiper--repeat {
        padding: 0.75rem !important;
    }
    .swiper_controller__svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    .swiper-button-prev .swiper_controller__svg {
        left: 0.5rem;
    }
    .swiper-button-next .swiper_controller__svg {
        right: 0.5rem;
    }
    .swiper_controller__text {
        font-size: 0.9375rem;
    }
    .p-tabs__button {
        padding: 0rem 1.25rem;
    }
    .p-tabs__button-text {
        padding: 1.25rem 0;
    }
    .p-tabs__content {
        padding: 1.75rem 1.5rem 1.5rem;
    }
    .flow_list__number {
        padding: 0rem 0.625rem;
    }
    .flow_list__number-text {
        width: 1.25rem;
        font-size: 0.9375rem;
    }
    .flow_list__content {
        padding: 1rem 1.125rem;
        gap: 0.5rem;
    }
    .flow_list__title {
        font-size: 1.125rem;
        line-height: 140%;
    }
    .flow_list__desc {
        gap: 0.375rem;
    }
    .flow_list__desc-text {
        font-size: 0.9375rem;
        margin: 0;
    }
}

/* --------------------------------------------------- */
/* header & nav */
/* --------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s;
}
header.open {
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.2);
}
.header__top {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, background-color 0.3s;
}
header.open .header__top {
    box-shadow: none;
}
.header__top-inner {
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.header__logo {
    transition: opacity 0.3s;
    opacity: 1;
}
.header__logo:hover {
    opacity: 0.5;
}
.header__logo-img {
    height: 3rem;
    width: auto;
    transition: filter 0.3s, -webkit-filter 0.3s;
}
.header__top-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}
.header__top-item {
    height: 100%;
}
.header__top-link {
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    height: 100%;
    align-content: center;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
    z-index: 0;
}
.header__top-link--contact {
    background-color: var(--black);
    color: var(--white);
    display: flex;
    padding: 1rem 1.5rem 1rem 1.375rem;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    border-radius: 100vw;
    transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
}
.header__top-link--contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    z-index: -1;
    border-radius: 100vw;
    opacity: 0;
    transition: opacity 0.3s;
}
.header__top-link--contact:hover {
    background-color: transparent;
}
.header__top-link .text_grdn {
    background: var(--main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.header__top-link:not(.header__top-link--contact):hover {
    color: transparent;
}
.header__top-link:not(.header__top-link--contact):hover .text_grdn {
    opacity: 1;
}
.header__top-svg {
    width: 1.25rem;
    height: 1.25rem;
}
.header__top-link .spacer {
    margin-bottom: 0.125rem;
}
.header__top:not(.megamenu_open).transparent {
    background-color: transparent;
    box-shadow: none;
}
.header__top-svg-path {
    transition: stroke 0.3s;
}
.header__logo-img g path {
    transition: fill 0.3s;
}
.header__top:not(.megamenu_open).transparent .header__top-link {
    color: var(--white);
    text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.4);
}
.header__top:not(.megamenu_open).transparent
    .header__top-link:not(.header__top-link--contact):hover {
    color: transparent;
    text-shadow: none;
}
.header__top:not(.megamenu_open).transparent .header__top-link--contact {
    background-color: var(--white);
    color: var(--black);
    text-shadow: none;
}
.header__top:not(.megamenu_open).transparent .header__top-svg-path {
    stroke: var(--black);
}
.header__top:not(.megamenu_open).transparent .header__logo-img {
    filter: drop-shadow(0px 0px 1rem rgba(0, 0, 0, 0.4));
    -webkit-filter: drop-shadow(0px 0px 1rem rgba(0, 0, 0, 0.4));
}
.header__top:not(.megamenu_open).transparent .header__logo-img g path {
    fill: var(--white);
}
.header__top:not(.megamenu_open).transparent .header__top-link--contact:hover {
    background-color: transparent;
    color: var(--white);
}
.header__top:not(.megamenu_open).transparent
    .header__top-link--contact:hover
    .header__top-svg-path {
    stroke: var(--white);
}
.header__top-link--contact:hover::before {
    opacity: 1;
}

.megamenu {
    width: 100%;
    padding-top: 1rem;
    display: none;
}
.megamenu__inner {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.megamenu__heading {
    border-radius: 0.5rem 0rem 0rem 0.5rem;
    background: var(--black);
    width: 18.75rem;
    padding: 2rem 0rem 2rem 2rem;
}
.megamenu__heading-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
    line-height: 100%;
}
.megamenu__heading-caption {
    color: var(--white);
    font-weight: 600;
    margin-top: 0.625rem;
}
.megamenu__nav {
    background-color: var(--white);
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}
.megamenu__nav.open_child_nav {
    border-radius: 0;
}
.megamenu__nav-caption {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
    color: var(--dark_gray);
    font-size: 0.8125rem;
}
.megamenu__nav-list {
    width: 21.25rem;
}
.megamenu__nav-item {
    position: relative;
    z-index: 0;
}
.megamenu__nav-link {
    display: flex;
    padding: 1.25rem 0rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: padding 0.3s;
}
.megamenu__nav-spacer {
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s;
}
.megamenu__nav-svg {
    width: 1.25rem;
    height: auto;
}
.megamenu__nav-svg path {
    transition: stroke 0.3s, fill 0.3s;
}
.megamenu__nav-heading {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 500;
    transition: color 0.3s;
}
.megamenu__nav-text {
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: color 0.3s;
}
.megamenu__child_nav {
    flex: 1;
    padding: 1.75rem;
    background: var(--main);
    border-radius: 0 0.5rem 0.5rem 0;
    display: none;
}
.megamenu__nav--in_child_nav {
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    border-radius: 0.25rem;
    height: 100%;
}
.megamenu__nav-list--in_child_nav {
    width: 100%;
}
.megamenu__nav-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    border-radius: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.megamenu__nav-item:hover::after {
    opacity: 1;
}
.megamenu__nav-item:hover .megamenu__nav-link {
    padding: 1.25rem;
}
.megamenu__nav-item:hover .megamenu__nav-spacer {
    color: var(--white);
}
.megamenu__nav-item:hover .megamenu__nav-path:first-of-type {
    fill: var(--white);
}
.megamenu__nav-item:hover .megamenu__nav-path:last-of-type {
    stroke: var(--white);
}
.megamenu__nav-item:hover .megamenu__nav-heading,
.megamenu__nav-item:hover .megamenu__nav-text {
    color: var(--white);
}

@media screen and (max-width: 1279px) {
    header {
        padding: 0.75rem;
    }
    .header__top-inner {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    }
    .header__top-list {
        gap: 1.25rem;
    }
    .megamenu {
        padding-top: 0.75rem;
    }
    .megamenu__heading {
        padding: 1.75rem 0rem 1.75rem 1.75rem;
        width: 17.5rem;
    }
    .megamenu__heading-title {
        font-size: 1.875rem;
    }
    .megamenu__nav-list {
        width: 18.5rem;
    }
    .megamenu__child_nav {
        padding: 1rem;
    }
    .megamenu__nav-list--in_child_nav {
        width: 100%;
    }
}
@media screen and (max-width: 959px) {
    header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 0.75rem);
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 84.61538%,
            rgba(0, 0, 0, 0) 100%
        );
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s;
    }
    header:has(.header__top.transparent)::before {
        opacity: 1;
    }
    header:has(.header__top.megamenu_open)::before {
        opacity: 0;
    }
    .header__top-item--hamburger {
        height: auto;
    }
    .hamburger {
        width: 4rem;
        height: 4rem;
        border-radius: 0.25rem;
        background: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hamburger__inner {
        width: 1.5rem;
        height: 0.875rem;
        position: relative;
    }
    .hamburger__inner-line {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        transform: translateY(-50%);
    }
    .hamburger__inner-line:first-of-type {
        top: 0;
        transition: top 0.3s, transform 0.3s;
    }
    .hamburger__inner-line:nth-of-type(2) {
        top: 50%;
        transition: opacity 0.3s;
    }
    .hamburger__inner-line:last-of-type {
        top: 100%;
        transition: top 0.3s, transform 0.3s;
    }
    .hamburger.active .hamburger__inner-line:first-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .hamburger.active .hamburger__inner-line:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.active .hamburger__inner-line:last-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    .header__top:not(.megamenu_open).transparent {
        background-color: transparent;
        box-shadow: none;
    }
    .header__top:not(.megamenu_open).transparent .header__top-link {
        color: var(--white);
        text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.4);
    }
    .header__top:not(.megamenu_open).transparent .hamburger {
        background-color: var(--white);
    }
    .header__top:not(.megamenu_open).transparent .hamburger__inner-line {
        background-color: var(--black);
    }
    header.open {
        height: auto;
        background-color: var(--black);
    }
    .header__top {
        border-radius: 0.25rem;
    }
    .header__top-inner {
        padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    }
    .header__logo {
        display: flex;
        align-items: center;
    }
    .header__logo-img {
        height: 2.5rem;
    }
    .header__top-list {
        gap: 1.5rem;
    }
    .sp_menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100dvh - var(--header-height));
        background-color: var(--black);
        z-index: 100;
        border-top: 1px solid var(--dark_gray);
        overflow-y: scroll;
        display: none;
    }
    .sp_menu::-webkit-scrollbar {
        display: none;
    }
    .sp_menu::-webkit-scrollbar-thumb {
        display: none;
    }
    .sp_menu__item {
        border-bottom: 1px solid var(--dark_gray);
    }
    .sp_menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sp_menu__head:has(.sp_menu__head-box--link) {
        align-items: stretch;
        gap: 2rem;
    }
    .sp_menu__head-box {
        flex: 1;
    }
    .sp_menu__head-box--link {
        padding: 2rem 0 2rem 2rem;
    }
    .sp_menu__head-title {
        color: var(--white);
        font-size: 2.25rem;
        font-weight: 500;
    }
    .sp_menu__head-caption {
        color: var(--white);
        font-size: 1.125rem;
        font-weight: 600;
        margin-top: 0.625rem;
    }
    .sp_menu__head-item {
        padding: 2rem;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sp_menu__head-svg {
        width: 1.75rem;
        height: 1.75rem;
        transition: transform 0.3s;
    }
    .sp_menu__head.open .sp_menu__head-svg {
        transform: rotate(180deg);
    }
    .sp_menu__child {
        background-color: var(--white);
        padding: 0 2rem;
        display: none;
    }
    .sp_menu__child:has(.sp_menu__child_list--has_head) {
        padding: 0;
    }
    .sp_menu__child_list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0 2rem;
    }
    .sp_menu__child_item {
        border-bottom: 1px solid var(--line);
    }
    .sp_menu__child_item:first-of-type,
    .sp_menu__child_item:nth-of-type(2) {
        /* border-top: 1px solid var(--line); */
    }
    .sp_menu__child_item:last-of-type {
        border-bottom: unset;
    }
    .sp_menu__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 0;
    }
    .sp_menu__link-text {
        color: var(--black);
        font-size: 0.9375rem;
        font-weight: 500;
        line-height: 100%;
    }
    .sp_menu__link-svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .sp_menu__child_list--has_head {
        grid-template-columns: 1fr;
    }
    .sp_menu__child_item--head {
        border-top: unset !important;
        border-bottom: unset !important;
    }
    .sp_menu__child_head {
        padding: 0;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
        /* padding: 1.75rem 0rem; */
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    .sp_menu__child_head.open .sp_menu__head-svg {
        transform: rotate(180deg);
    }
    .sp_menu__child_head .sp_menu__head-title {
        color: var(--black);
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 100%;
    }
    .sp_menu__child_head .sp_menu__head-caption {
        color: var(--black);
        font-size: 1rem;
        font-weight: 600;
        line-height: 100%;
    }
    .sp_menu__child_head .sp_menu__head-path {
        stroke: var(--black);
    }
    .sp_menu__child_list--has_head .sp_menu__child_item:nth-of-type(2) {
        border-top: unset;
    }
    .sp_menu__child--grandchild {
        padding: 1rem;
        background: var(--main);
    }
    .sp_menu__child--grandchild .sp_menu__child_list {
        background-color: var(--white);
        border-radius: 0.25rem;
        gap: 0 1.5rem;
        padding: 0 1.5rem;
    }
    .sp_menu__child--grandchild .sp_menu__child_item:first-of-type {
        border-top: unset;
    }
    .sp_menu__child--grandchild .sp_menu__child_item:nth-of-type(2) {
        /* border-top: 1px solid var(--line); */
    }
    .sp_menu__child--grandchild .sp_menu__child_item:last-of-type {
        border-bottom: unset;
    }
    .sp_menu__child_item--other {
        padding: 0 2rem;
        border-bottom: unset;
    }
    .sp_menu__child_item--other .sp_menu__link {
        /* border-bottom: 1px solid var(--line); */
    }
    .sp_menu__mainlink {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .header__top-inner {
        padding: 0.375rem 0.375rem 0.375rem 1rem;
    }
    .header__logo-img {
        height: 2.25rem;
    }
    .header__top-list {
        gap: 1rem;
    }
    .header__top-link {
        font-size: 0.875rem;
    }
    .hamburger {
        width: 3.5rem;
        height: 3.5rem;
    }
    .hamburger__inner {
        width: 1.25rem;
        height: 0.75rem;
    }
    .sp_menu__head:has(.sp_menu__head-box--link) {
        gap: 1.5rem;
    }
    .sp_menu__head-box--link {
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
    .sp_menu__head-title {
        font-size: 1.75rem;
    }
    .sp_menu__head-caption {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    .sp_menu__head-item {
        padding: 1.5rem;
    }
    .sp_menu__head-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .sp_menu__mainlink {
        padding: 1.5rem;
    }
    .sp_menu__child {
        padding: 0 1.5rem;
    }
    .sp_menu__child_list {
        gap: 0rem 1.5rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .sp_menu__child_item:nth-of-type(2) {
        border-top: unset;
    }
    .sp_menu__child:has(.sp_menu__child_list--has_head) {
        padding: 0;
    }
    .sp_menu__link {
        padding: 1.25rem 0;
    }
    .sp_menu__child_head {
        padding: 0;
        gap: 1.5rem;
    }
    .sp_menu__child_head-inner {
        padding: 1.25rem 0;
    }
    .sp_menu__child_head .sp_menu__head-title {
        font-size: 1.375rem;
    }
    .sp_menu__child_head .sp_menu__head-caption {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    .sp_menu__child--grandchild {
        padding: 0.75rem;
    }
    .sp_menu__child--grandchild .sp_menu__child_list {
        padding: 0 1.25rem;
    }
    .sp_menu__child--grandchild .sp_menu__child_item:nth-of-type(2) {
        border-top: unset;
    }
    .sp_menu__child_item--other {
        padding: 0rem 1.5rem;
    }
}

/* --------------------------------------------------- */
/* footer */
/* --------------------------------------------------- */
footer {
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: var(--black);
}
.footer__inner {
    padding: 0 9.25rem;
}
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 5rem 0;
}
.footer__top-heading {
    color: var(--white);
    font-size: 4rem;
    font-weight: 500;
    line-height: 100%; /* 3rem */
}
.footer__top-caption {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

footer .top_section__title-heading {
    color: var(--white);
}
footer .top_section__title-caption {
    color: var(--white);
}
.footer__top-desc {
    margin-top: 2.375rem;
}
.footer__top-desc .p-225 {
    color: var(--white);
}
.footer__contact {
    width: 47rem;
}
.footer__contact-link {
    background-color: var(--white);
    color: var(--black);
    border-radius: 0.25rem;
}
.footer__contact-link--top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0.25rem;
    font-weight: 600;
    line-height: 1;
    font-size: 1.25rem;
    padding: 1.75rem 0;
    flex: 1;
}
.footer__contact-link--line {
    color: var(--white);
    background-color: #06c755;
}
.footer__contact-link--line::after {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    border-radius: 0.25rem;
    border: 1px solid #fff;
}
.footer__contact-acs {
    color: var(--white);
    font-weight: 400;
    position: absolute;
    top: -1.625rem;
    left: 0;
}
.footer__contact-icon {
    width: 1.75rem;
    height: auto;
}
.footer__contact-container {
    display: flex;
    gap: 0.5rem;
}
.footer__contact-container:last-of-type {
    margin-top: 0.5rem;
}
.footer__contact-link--tel,
.footer__contact-link--fax {
    flex: 1;
    position: relative;
    padding: 1.25rem 0;
    text-align: center;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
}
.footer__contact-address {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 0.25rem;
    color: var(--black);
    font-weight: 500;
    font-size: 2rem;
    margin-top: 0.75rem;
}
.footer__contact-caption {
    color: var(--dark_gray);
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 0.625rem;
}
.footer__contact-link--tel .footer__contact-acs {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: unset;
    right: 0;
    text-align: right;
}
.footer__contact-link--fax .footer__contact-acs {
    top: 0;
    left: calc(100% + 0.625rem);
    transform-origin: top left;
    transform: rotate(90deg) translateY(-100%);
    text-align: left;
    white-space: nowrap;
}
.footer__middle {
    width: 100%;
    padding: 2.25rem 0;
    border-top: 1px solid var(--dark_gray);
    border-bottom: 1px solid var(--dark_gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__nav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem 0;
}
.footer__nav-item {
    width: 10rem;
}
.footer__nav-link {
    color: var(--base);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    padding: 1rem 0;
    position: relative;
    z-index: 0;
    transition: color 0.3s;
}
.footer__nav-link .text_grdn {
    background: var(--main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.footer__nav-link:hover .text_grdn {
    opacity: 1;
}
.footer__nav-link:hover {
    color: transparent;
}

.back_to_top {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: right;
    font-size: 1.125rem;
    line-height: 1;
    position: relative;
    z-index: 0;
    transition: color 0.3s;
}
.back_to_top .text_grdn {
    background: var(--main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: left;
}
.back_to_top:hover .text_grdn {
    opacity: 1;
}
.back_to_top:hover {
    color: transparent;
}
.back_to_top__box {
    border-radius: 4rem;
    outline: 1px solid var(--white, #f8fbfb);
    outline-offset: -1px;
    display: flex;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    transition: outline-color 0.3s;
}
.back_to_top__box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100vw;
    background: var(--main);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.back_to_top:hover .back_to_top__box {
    outline-color: transparent;
}
.back_to_top:hover .back_to_top__box::after {
    opacity: 1;
}
.back_to_top__box-arrow {
    width: 1.5rem;
    height: 1.5rem;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 0;
}
.footer__information {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.footer__logo-img {
    height: 3.5rem;
    width: auto;
}
.footer__information-text {
    color: var(--middle_gray);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 175%;
}
.footer__bottom-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
}
.footer__policy {
    color: var(--middle_gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: right;
    position: relative;
    z-index: 0;
    transition: color 0.3s;
}
.footer__policy .text_grdn {
    background: var(--main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.footer__policy:hover .text_grdn {
    opacity: 1;
}
.footer__policy:hover {
    color: transparent;
}
.footer__copyright {
    color: var(--middle_gray);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: right;
    margin-top: 0.1rem;
}
.back_to_top--sml {
    display: none;
}

@media screen and (max-width: 1279px) {
    .footer__inner {
        padding: 0 5.5rem;
    }
    .footer__top {
        padding: 4rem 0;
        gap: 3rem;
    }
    .footer__top-box {
        flex: none;
    }
    .footer__top-desc {
        margin-top: 1.875rem;
    }
    .footer__top-heading {
        font-size: 3.5rem;
    }
    .footer__top-caption {
        font-size: 1.375rem;
        margin-top: 0.75rem;
    }
    .footer__contact-link--top {
        font-size: 1.125rem;
        padding: 1.5rem 0;
    }
    .footer__contact-icon {
        width: 1.75rem;
    }
    .footer__contact-container {
        gap: 0.375rem;
    }
    .footer__contact-container:last-of-type {
        margin-top: 0.375rem;
    }
    .footer__contact-link--tel,
    .footer__contact-link--fax {
        padding: 1rem 0;
        font-size: 1rem;
    }
    .footer__contact-address {
        margin-top: 0.5625rem;
        font-size: 1.75rem;
    }
    .footer__contact-caption {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
    }
    .footer__middle {
        padding: 1.75rem 0;
    }
}
@media screen and (max-width: 959px) {
    .footer__inner {
        padding: 0rem 4rem;
    }
    .footer__top {
        padding: 3rem 0rem 3.5rem;
        flex-direction: column;
        gap: 3.5rem;
    }
    .footer__top-box {
        flex: 1;
        display: flex;
        align-items: flex-end;
        gap: 2.25rem;
    }
    .footer__top-heading {
        font-size: 2.75rem;
    }
    .footer__top-caption {
        font-size: 1.25rem;
        margin-top: 0.625rem;
    }
    .footer__top-desc {
        margin-top: 0;
    }
    .footer__top-desc .p-225 {
        line-height: 200%;
    }
    .footer__contact {
        width: 100%;
    }
    .footer__contact-acs {
        font-size: 0.875rem;
        top: -1.375rem;
    }
    .footer__contact-link--tel .footer__contact-acs {
        top: calc(100% + 0.375rem);
    }
    .footer__contact-link--fax .footer__contact-acs {
        left: calc(100% + 0.375rem);
    }
    .footer__middle {
        padding: 1.5rem 0;
    }
    .footer__nav {
        width: 100%;
    }
    .footer__nav-list {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer__nav-item {
        width: auto;
    }
    .back_to_top {
        flex-direction: column-reverse;
        gap: 0.75rem;
        font-size: 1rem;
    }
    .back_to_top__box {
        width: 5rem;
        height: 5rem;
    }
    .back_to_top__box-arrow {
        width: 1.75rem;
        height: 1.75rem;
    }
    .footer__bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    .footer__information {
        grid-area: 1 / 1 / 2 / 2;
    }
    .footer__bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        grid-area: 2 / 1 / 3 / 2;
        margin-top: 0.671875rem;
    }
    .footer__middle-box {
        grid-area: 1 / 2 / 3 / 3;
    }
    .footer__policy,
    .footer__copyright {
        text-align: left;
        line-height: 1;
    }
    .back_to_top .text_grdn {
        text-align: center;
        align-content: end;
    }
}
@media screen and (max-width: 767px) {
    .footer__inner {
        padding: 0 1.25rem;
    }
    .footer__top {
        padding: 3rem 0rem 2.5rem;
        gap: 1.75rem;
    }
    .footer__top-box {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.75rem;
    }
    .footer__top-heading {
        font-size: 2.25rem;
        text-align: center;
    }
    .footer__top-caption {
        font-size: 1.125rem;
        text-align: center;
    }
    .footer__top-desc .p-225 {
        text-align: center;
    }
    .footer__contact-container:first-of-type {
        flex-direction: column-reverse;
    }
    .footer__contact-acs {
        display: none;
    }
    .footer__contact .box_link__arrow {
        display: none;
    }
    .footer__contact-container {
        flex-direction: column;
    }
    .footer__middle {
        padding: 1.25rem 0;
    }
    .footer__nav {
        flex: 1;
    }
    .footer__nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .footer__bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 2.5rem;
        grid-row-gap: 0px;
        padding: 1.875rem 0;
    }
    .footer__information {
        grid-area: 1 / 1 / 2 / 2;
    }
    .footer__bottom-container {
        grid-area: 2 / 1 / 3 / 2;
        align-items: flex-start;
        margin-top: 1rem;
    }
    .back_to_top {
        display: none;
    }
    .back_to_top--sml {
        display: flex;
        grid-area: 1 / 2 / 3 / 3;
    }
}
