@charset "UTF-8";
.pc {
    display: none !important;
}
@media only screen and (min-width: 768px) {
    .pc {
        display: block !important;
    }
}

@media only screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

.heading .en,
.header_menu_entry_link,
.nav_toggler_state_txt {
    font-family: "Inter", sans-serif;
}

body {
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

html {
    line-height: 1.6;
    scrollbar-width: thin;
    overflow-y: scroll;
    scroll-padding-top: 80px;
}
@media only screen and (min-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }
}

body {
    --body-bc: #1f1f1f;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #fff;
    background-color: var(--body-bc);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    left: 0;
}

main {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    a {
        transition: opacity 150ms linear;
    }
    a:hover {
        opacity: 0.6;
    }
}
@media only screen and (min-width: 768px) {
    a[href^="tel"] {
        pointer-events: none;
    }
}

img {
    width: 100%;
    height: auto;
}

.wrapper,
#wrapper {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
@media only screen and (min-width: 768px) {
    .container {
        max-width: 1040px;
        margin-right: auto;
        margin-left: auto;
    }
}
.container_fluid {
    padding-left: 20px;
    padding-right: 20px;
}

html.is_loading #loadding {
    opacity: 1;
    pointer-events: all;
}
html.is_loading body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

#loadding {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background-color: #1f1f1f;
    opacity: 0;
    transition: opacity 1s ease-out 0.5s;
}

.three-body {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    animation: spin 2.75s infinite linear;
}
.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}
.three-body__dot:after {
    content: "";
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: #e50012;
    border-radius: 50%;
}
.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}
.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite ease-in-out;
    animation-delay: -0.33s;
}
.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}
.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite -0.165s ease-in-out;
}
.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}
.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 1.1s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes wobble1 {
    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}
@keyframes wobble2 {
    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}
.totop {
    width: 40px;
    height: 40px;
    background-color: #e50012;
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 68px;
    opacity: 0;
    transition-property: border-color, background-color, opacity;
    transition-duration: 300ms;
    pointer-events: none;
}
@media only screen and (min-width: 768px) {
    .totop {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 40px;
        border-width: 2px;
        cursor: pointer;
    }
    .totop:hover {
        background-color: #fff;
    }
    .totop:hover::after {
        content: "";
        border-bottom-color: #1f1f1f;
    }
}
.totop.is_show {
    opacity: 1;
    pointer-events: all;
}
.totop.is_footer {
    position: absolute;
    bottom: calc(100% - 20px);
}
@media only screen and (min-width: 768px) {
    .totop.is_footer {
        bottom: calc(100% - 30px);
    }
}
.totop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: 300ms linear;
    border: 0;
    border-left: 6px solid rgba(196, 0, 24, 0);
    border-right: 6px solid rgba(196, 0, 24, 0);
    border-bottom: 8px solid #fff;
}
@media only screen and (min-width: 768px) {
    .totop::after {
        border-left-width: 8px;
        border-right-width: 8px;
        border-bottom-width: 10px;
    }
}

.popup {
    position: fixed;
    z-index: 1000;
    inset: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 300ms linear;
}
.popup.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.popup_mask {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.4);
}
.popup_inner {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .popup_inner {
        width: 640px;
    }
}
.popup_ova {
    overflow: auto;
    max-height: calc(100vh - 140px);
}
.popup_item {
    display: none;
    color: #1f1f1f;
    background-color: #fff;
    position: relative;
    padding: 41px 32px 30px;
}
@media only screen and (min-width: 768px) {
    .popup_item {
        padding: 41px 32px 32px;
    }
}
.popup_item.is_open {
    display: block;
}
.popup_item_title {
    font-size: 2.4rem;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid #757575;
}
@media only screen and (min-width: 768px) {
    .popup_item_title {
        font-size: 2.4rem;
    }
}
.popup_item_txt {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 20px;
    text-align: justify;
}
@media only screen and (min-width: 768px) {
    .popup_item_txt {
        font-size: 1.6rem;
        margin-top: 22px;
    }
}
.popup_item_close {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 13px;
}
@media only screen and (min-width: 768px) {
    .popup_item_close {
        margin-top: 32px;
    }
}
.popup_item_close_link,
.popup_item_close_btn {
    min-width: 82px;
    height: 38px;
    border: 1px solid #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 20px;
}
@media only screen and (min-width: 768px) {
    .popup_item_close_link,
    .popup_item_close_btn {
        cursor: pointer;
        padding: 2px 20px;
        transition: opacity 150ms linear;
    }
    .popup_item_close_link:hover,
    .popup_item_close_btn:hover {
        opacity: 0.6;
    }
}
.popup_item_close_link {
    background-color: #e50012;
    border-color: #e50012;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .popup_item_close_link {
        transition: 150ms linear;
    }
    .popup_item_close_link:hover {
        opacity: 1;
        border-color: #1f1f1f;
        color: #1f1f1f;
        background-color: #fff;
    }
}
.popup_close {
    width: 24px;
    height: 24px;
    background-color: #e0e0e0;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 99px;
}
@media only screen and (min-width: 768px) {
    .popup_close {
        transition: opacity 150ms linear;
        cursor: pointer;
    }
    .popup_close:hover {
        opacity: 0.6;
    }
}
.popup_close::before,
.popup_close::after {
    content: "";
    width: 13px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: 45deg;
}
.popup_close::after {
    rotate: -45deg;
}

.lr_select {
    width: 411px;
    max-width: 100%;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .lr_select {
        width: 411px;
    }
}
.lr_select select:invalid {
    color: gray; /* màu placeholder */
}
.lr_select select {
    color: black;
}
.lr_select .nice-select {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .lr_select .nice-select {
        width: 411px;
    }
}
.lr_select .nice-select.none .nice-select__display {
    color: #9e9e9e;
}

/** -- ▷ header -- */
.header {
    width: 100%;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
}
.header_inner {
    background-color: #1f1f1f;
    display: flex;
    align-items: flex-end;
    padding: 6px 13px 12px 9px;
}
@media only screen and (min-width: 768px) {
    .header_inner {
        align-items: center;
        padding: 7px 16px 7px 32px;
    }
}
.header_logo {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}
@media only screen and (min-width: 768px) {
    .header_logo {
        gap: 16px;
        align-items: center;
    }
}
.header_logo_link {
    display: block;
}
.header_logo_link img {
    width: 110px;
}
@media only screen and (min-width: 768px) {
    .header_logo_link img {
        width: 140px;
        width: clamp(100px, (100vw - 1200px) * 1000, 140px);
    }
}
.header_logo_txt {
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    position: relative;
    top: 2px;
}
@media only screen and (min-width: 768px) {
    .header_logo_txt {
        font-size: clamp(
            1rem,
            calc(1rem + 0.003164557 * (100vw - 768px)),
            1.2rem
        );
        top: 0;
    }
}
.header_menu {
    display: none;
    gap: 32px;
    gap: clamp(16px, (100vw - 1200px) * 1000, 32px);
    align-items: center;
    margin-left: auto;
}
@media only screen and (min-width: 768px) {
    .header_menu {
        display: flex;
    }
}
.header_menu_link {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    position: relative;
    bottom: 1px;
}
.header_menu_entry {
    margin-left: 8px;
}
.header_menu_entry_link {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    width: 160px;
    width: clamp(140px, (100vw - 1200px) * 1000, 160px);
    height: 46px;
    background-color: #e50012;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .header_menu_entry_link {
        transition: 150ms linear;
    }
    .header_menu_entry_link:hover {
        opacity: 1;
        color: #1f1f1f;
        background-color: #fff;
    }
}
.header_menu_entry_link::after {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    rotate: 45deg;
    border: 0;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-top-right-radius: 2px;
}

.nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 400ms linear;
    padding: 118px 20px 60px;
}
@media only screen and (min-width: 768px) {
    .nav {
        transition: none;
    }
}
.nav.is_open {
    visibility: visible;
    pointer-events: all;
}
.nav.is_open .nav_mask {
    max-height: 100%;
}
.nav.is_open .nav_menu_item {
    opacity: 1;
}
.nav.is_open .nav_menu_item:nth-child(0) {
    transition-delay: 0ms;
}
.nav.is_open .nav_menu_item:nth-child(1) {
    transition-delay: 100ms;
}
.nav.is_open .nav_menu_item:nth-child(2) {
    transition-delay: 200ms;
}
.nav.is_open .nav_menu_item:nth-child(3) {
    transition-delay: 300ms;
}
.nav.is_open .nav_menu_item:nth-child(4) {
    transition-delay: 400ms;
}
.nav.is_open .nav_menu_item:nth-child(5) {
    transition-delay: 500ms;
}
.nav.is_open .nav_menu_item:nth-child(6) {
    transition-delay: 600ms;
}
.nav.is_open .nav_menu_item:nth-child(7) {
    transition-delay: 700ms;
}
.nav.is_open .nav_menu_item:nth-child(8) {
    transition-delay: 800ms;
}
.nav.is_open .nav_menu_item:nth-child(9) {
    transition-delay: 900ms;
}
.nav_toggler {
    margin-left: auto;
    position: relative;
    bottom: -5px;
}
@media only screen and (min-width: 768px) {
    .nav_toggler {
        display: none;
    }
}
.nav_toggler.is_open .nav_toggler_bar:nth-child(1) {
    top: 50%;
    rotate: 45deg;
}
.nav_toggler.is_open .nav_toggler_bar:nth-child(2) {
    opacity: 0;
}
.nav_toggler.is_open .nav_toggler_bar:nth-child(3) {
    top: 50%;
    rotate: -45deg;
}
.nav_toggler.is_open .nav_toggler_state_txt:nth-child(1) {
    opacity: 0;
}
.nav_toggler.is_open .nav_toggler_state_txt:nth-child(2) {
    opacity: 1;
}
.nav_toggler_box {
    width: 25px;
    height: 15px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.nav_toggler_bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    transition: rotate 150ms linear;
}
.nav_toggler_bar:nth-child(1) {
    top: 0;
}
.nav_toggler_bar:nth-child(2) {
    top: 50%;
}
.nav_toggler_bar:nth-child(3) {
    top: 100%;
}
.nav_toggler_state {
    overflow: hidden;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.nav_toggler_state_txt {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}
.nav_toggler_state_txt:nth-child(2) {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.nav_mask {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: #1f1f1f;
    max-height: 0;
    transition: max-height 400ms cubic-bezier(0.4, 0, 0.6, 1);
}
.nav_wrap {
    width: 275px;
    margin-left: auto;
    margin-right: auto;
}
.nav_menu_item {
    opacity: 0;
    transition: opacity 320ms cubic-bezier(0.4, 0, 0.6, 1);
}
.nav_menu_link {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}
.nav_menu_entry {
    margin-top: 50px;
}
.nav_menu_entry_link {
    width: 255px;
    max-width: 100%;
    height: 48px;
    background-color: #e50012;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
}
.nav_menu_entry_link .icon {
    width: 28px;
    position: absolute;
    top: 50%;
    left: 24px;
    translate: 0 -50%;
}

/** -- ▷ footer -- */
.footer {
    margin-top: 68px;
    background-image: url("./../images/common/bg_footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 52px;
    padding-bottom: 120px;
}
@media only screen and (min-width: 768px) {
    .footer {
        margin-top: 136px;
        padding-top: 59px;
        padding-bottom: 65px;
    }
}
.footer_terms {
    text-align: center;
}
.footer_terms_link {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2.5714285714;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer_copyright {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 10px;
}
@media only screen and (min-width: 768px) {
    .footer_copyright {
        margin-top: 10px;
    }
}
.footer .nav_menu_entry {
    width: 100%;
    height: 68px;
    background-color: rgba(31, 31, 31, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    left: 0;
    bottom: 0;
}
@media only screen and (min-width: 768px) {
    .footer .nav_menu_entry {
        display: none;
    }
}
.footer .nav_menu_entry_link {
    border-radius: 4px;
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading .en,
.heading .jp {
    line-height: 1.4;
    font-weight: 700;
}
.heading .en {
    font-size: 4.6rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    background-image: linear-gradient(
        to bottom,
        #9e9e9e 0%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px transparent;
    color: var(--body-bc);
    opacity: 0.9;
}
@media only screen and (min-width: 768px) {
    .heading .en {
        font-size: clamp(
            6rem,
            calc(6rem + 0.0474683544 * (100vw - 768px)),
            9rem
        );
    }
}
.heading .jp {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    margin-top: -24px;
}
@media only screen and (min-width: 768px) {
    .heading .jp {
        font-size: clamp(
            3rem,
            calc(3rem + 0.0237341772 * (100vw - 768px)),
            4.5rem
        );
        position: relative;
        margin-top: -49px;
    }
}

[data-align="center"] {
    text-align: center;
}

[data-hidden="true"] {
    display: none !important;
}

.lr_select img {
    width: auto;
}
