@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    color: #0d0e14;
    background-color: #fff;
}
body:not(.home) {
    background-color: #f9f9fe;
}
a {
    word-break: break-all;
    transition: .2s;
}
.en {
    font-family: "itc-avant-garde-gothic-pro", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.sp {
    display: none;
}
.inner {
    max-width: 1410px;
    padding: 0 7.46%;
    margin: 0 auto;
    box-sizing: content-box;
}
.inner_inner {
    max-width: 800px;
    margin: 0 auto;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
.slick-initialized .slick-slide {
	height: auto !important;
}
@media screen and (max-width:640px) {
    .inner {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .inner_inner {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}

.main_header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.main_header .header_inner {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.main_header .header_inner .header_logo {
    display: block;
    width: 234px;
}
.main_header .header_inner .header_menu_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main_header .header_inner #menu-header-nav {
    display: flex;
    gap: 20px;
}
.main_header .header_inner #menu-header-nav > li > a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}
.main_header .header_inner #menu-header-nav .sub-menu {
    display: none;
}
.main_header .header_inner .sns_list {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}
.main_header .header_inner .sns_img.yt {
    width: 36px;
}
.main_header .header_inner .sns_img.ig {
    width: 31px;
}
.main_header .header_inner .sns_img.tt {
    width: 27px;
}
.main_header .header_inner .header_cta {
    display: flex;
    gap: 25px;
    margin-left: auto;
}
.main_header .header_inner .header_cta .cta_link {
    display: flex;
    padding: 7px 15px 7px 10px;
    gap: 10px;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}
.main_header .header_inner .header_cta .cta_link.ec {
    background-color: #fff;
    color: #000;
}
.main_header .header_inner .header_cta .cta_link.ec .cta_icon {
    width: 28px;
}
.main_header .header_inner .header_cta .cta_link.ct {
    background-color: #e20c16;
    color: #fff;
}
.main_header .header_inner .header_cta .cta_link.ct .cta_icon {
    width: 32px;
}


/* common parts */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .title-en {
    font-size: 4rem;
    text-align: center;
    letter-spacing: .05em;
}
.section-title .title-en::first-letter {
    color: #e20c16;
}
.section-title .title-jp {
    font-size: 1.6rem;
    font-weight: 600;
}

.more {
    font-size: 1.4rem;
    font-weight: 400;
    padding: 6px 35px;
    border-radius: 20px;
    border: solid 1px #000;
    line-height: 1;
    color: #000;
}
.more:hover {
    background-color: #000;
    color: #fff;
}

.floating_cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}
.floating_cta.visible {
    visibility: visible;
    opacity: 1;
}
.floating_cta .fl_cta_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    height: 130px;
    width: 60px;
}
.floating_cta.hidden .fl_cta_link {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.floating_cta .fl_cta_link.ec {
    background-color: #e20c16;
}
.floating_cta .fl_cta_link.ct {
    background-color: #000;
}
.floating_cta .fl_cta_link .cta_icon {
    width: 46px;
    text-align: center;
}
.floating_cta .fl_cta_link .cta_txt {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2;
}
.floating_cta .fl_cta_link .cta_txt .min {
    text-align: center;
    font-size: 1rem;
}
.floating_cta #toggle-btn {
    background-color: #595959;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    border: none;
    outline: none;
    appearance: none;
    cursor: pointer;
    z-index: 99;
    transition: all .3s ease;
}
.floating_cta #toggle-btn:hover {
    background-color: #333;
}
.floating_cta.hidden #toggle-btn {
    width: 30px;
    opacity: .5;
}
.floating_cta #toggle-btn .toggle-arrow {
    width: 16px;
    transform: scale(-1, 1);
    transition: all .2s;
}
.floating_cta.hidden #toggle-btn .toggle-arrow {
    transform: scale(1, 1);
}

.footer_link .link_wrap {
    display: flex;
}
.footer_link .link_wrap .link-item {
    width: 50%;
    height: 26vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.footer_link .link_wrap .link-item::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s;
}
.footer_link .link_wrap .link-item:hover::after {
    opacity: .6;
}
.footer_link .link_wrap .link-item .link-item-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.footer_link .link_wrap .link-item .link-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}
.footer_link .link_wrap .link-item:hover .link-item-image img {
    transform: scale(1.04);
}
.footer_link .link_wrap .link-item .footer_link_title {
    text-align: center;
    position: relative;
    z-index: 2;
}
.footer_link .link_wrap .link-item .footer_link_title .title-en {
    font-size: 4rem;
    font-weight: 700;
}
.footer_link .link_wrap .link-item .footer_link_title .title-jp {
    font-size: 1.5rem;
    font-weight: 600;
}

footer {
    background-color: #000;
    padding: 80px 0 20px;
}
.footer-nav-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    line-height: 1;
}
.footer-nav-list .parent-link {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
}
.footer-nav-list .list-item-parent .parent-link.related-cp {
    margin-top: 40px;
}
.footer-nav-list .nav-list-child {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}
.footer-nav-list .nav-list-child.shop-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 416px;
    gap: 24px;
}
.footer-nav-list .list-item-child {
    min-width: 196px;
}
.footer-nav-list .list-item-child .child-link {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}
footer .footer-logo {
    display: block;
    max-width: 420px;
    margin: 70px auto 0;
}
footer .copyright {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin-top: 60px;
}

/* サービスメニューのポップアップ */
#menu-item-36 {
    position: relative;
}
#menu-item-36 .sub-menu {
    display: none;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px;
    min-width: 200px;
    z-index: 100;
    margin-top: 10px;
    border-radius: 0;
}

#menu-item-36 .sub-menu li {
    margin-bottom: 10px;
}

#menu-item-36 .sub-menu li:last-child {
    margin-bottom: 0;
}

#menu-item-36 .sub-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

#menu-item-36 .sub-menu a:hover {
    color: #dc3232;
} 



/*  RESPONSIVE FOR LAPTOP */
@media screen and (min-width: 841px) and (max-width: 1390px) {
    .main_header .header_inner .header_logo {
        width: 200px;
    }
    .main_header .header_inner #menu-header-nav {
        gap: 15px;
    }
    .main_header .header_inner #menu-header-nav > li > a {
        font-size: 1.4rem;
    }
    .main_header .header_inner .sns_list {
        gap: 15px;
    }
    .main_header .header_inner .sns_img.yt {
        width: 36px;
    }
    .main_header .header_inner .sns_img.ig {
        width: 32px;
    }
    .main_header .header_inner .sns_img.tt {
        width: 27px;
    }
    .main_header .header_inner .header_cta {
        gap: 20px;
    }
    .main_header .header_inner .header_cta .cta_link {
        padding: 8px 12px;
        gap: 13px;
        font-weight: 600;
    }

    #menu-item-36 .sub-menu {
        left: 30%;
    }
}
@media screen and (min-width: 1150px) and (max-width: 1250px) {
    .main_header .header_inner .header_menu_wrapper {
        gap: 15px;
    }
    .main_header .header_inner #menu-header-nav {
        gap: 10px;
    }
    .main_header .header_inner .sns_list {
        gap: 20px;
    }
    .main_header .header_inner .sns_img.yt {
        width: 32px;
    }
    .main_header .header_inner .sns_img.ig {
        width: 28px;
    }
    .main_header .header_inner .sns_img.tt {
        width: 25px;
    }
    .main_header .header_inner .header_cta {
        gap: 10px;
    }
    .main_header .header_inner .header_cta .cta_link {
        gap: 10px;
    }
}

/*  RESPONSIVE FOR TABLET AND SP */
@media screen and (max-width: 840px) {
    .main_header .header_inner {
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 60px;
    }
    .main_header .header_inner .header_logo {
        width: 160px;
        margin-left: 15px;
        position: relative;
        z-index: 101;
    }
    .main_header .header_inner .header_menu_wrapper {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 130%;
        background: #000;
        z-index: 100;
        padding: 60px 15px;
        pointer-events: none;
        opacity: 0;
        transition: opacity .1s linear;
        display: flex;
        flex-direction: column;
    }
    .main_header .header_inner .header_menu_wrapper.active {
        opacity: 1;
        pointer-events: auto;
    }
    .main_header .header_inner .header_menu_wrapper .header-nav {
        width: 100%;
    }
    .main_header .header_inner #menu-header-nav {
        display: flex;
        flex-direction: column;
        border-top: solid 1px #333;
        gap: 0;
    }
    .main_header .header_inner #menu-header-nav .menu-item {
        border-bottom: solid 1px #333;
    }
    .main_header .header_inner #menu-header-nav .menu-item a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    .hum {
        width: 60px;
        height: 60px;
        position: relative;
        position: relative;
        z-index: 101;
    }
    .hum i {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 16px;
        height: 2px;
        background-color: #fff;
    }
    .hum i:nth-of-type(1) {
        top: 25px;
        width: 50%;
    }
    .hum.active i:nth-of-type(1) {
        top: 20px;
        left: 16px;
        transform: translate(3px, 9px) rotate(-45deg);
        width: 35%;
    }
    .hum i:nth-of-type(2) {
        top: 32px;
        width: 30%;
    }
    .hum.active i:nth-of-type(2) {
        top: 32px;
        left: 16px;
        transform: translate(3px, -3px) rotate(45deg);
        width: 35%;
    }
    .main_header .header_inner .sns_list {
        margin: 0 auto;
    }
    .main_header .header_inner .header_cta {
        flex-direction: column;
        align-items: center;
        margin-left: unset;
        width: 85%;
    }
    .main_header .header_inner .header_cta .cta_link {
        width: 100%;
        height: 70px;
        justify-content: center;
        font-size: 1.7rem;
    }
    .main_header .header_inner .header_cta .cta_link.ec .cta_icon {
        width: 34px;
    }

    .section-title {
        margin-bottom: 30px;
    }
    .section-title .title-en {
        font-size: 3rem;
    }
    .section-title .title-en.title-long {
        font-size: 2.2rem;
    }
    .section-title .title-jp {
        font-size: 1.4rem;
    }

    .footer_link .link_wrap {
        display: flex;
        flex-direction: column;
    }
    .footer_link .link_wrap .link-item {
        width: 100%;
        height: 200px;
    }
    .footer_link .link_wrap .link-item .footer_link_title .title-en {
        font-size: 3rem;
    }
    .footer_link .link_wrap .link-item .footer_link_title .title-jp {
        font-size: 1.4rem;
    }

    footer {
        padding: 40px 0 20px;
    }
    footer .inner {
        padding: 0;
    }
    .footer-nav-list {
        flex-wrap: wrap;
        gap: 0;
    }
    .footer-nav-list .list-item-parent {
        width: 100%;
        position: relative;
    }
    .footer-nav-list .list-item-parent .parent-link {
        padding: 25px 5%;
        border-bottom: solid 1px #333;
        font-size: 1.7rem;
        position: relative;
    }
    .footer-nav-list .list-item-parent .parent-link.related-cp {
        margin-top: 0;
    }
    .footer-nav-list .list-item-parent .parent-link::after {
        content: url(../images/common/arrow-accordion.svg);
        display: block;
        width: 15px;
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
    }
    .footer-nav-list .list-item-parent .parent-link.active::after {
        transform: scale(1, -1);
    }
    .footer-nav-list .list-item-parent .parent-link:first-child {
        border-top: solid 1px #333;
    }
    .footer-nav-list .list-item-parent .nav-list-child {
        display: none;
        margin: 15px 0;
        width: 100%;
    }
    .footer-nav-list .list-item-parent .nav-list-child .child-link {
        color: #f9f9f9;
        padding: 15px 5%;
        display: block;
        font-size: 1.5rem;
    }
    footer .footer-logo {
        width: 240px;
        margin: 40px auto 0;
    }
    footer .copyright {
        margin-top: 40px;
    }

    /* サービスメニューのスマホ表示 */
    #menu-item-36 {
        position: relative;
        border-bottom: solid 1px #333;
    }

    #menu-item-36 > a {
        padding: 15px 0;
        display: block;
        width: 100%;
        position: relative;
        color: #fff;
        font-size: 1.7rem;
    }

    #menu-item-36 .sub-menu {
        display: none;
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        margin-top: 0;
        transform: none;
        width: 100%;
    }

    #menu-item-36 .sub-menu::before {
        display: none;
    }

    #menu-item-36 .sub-menu li {
        margin-bottom: 0;
        border-bottom: solid 1px #333;
    }

    #menu-item-36 .sub-menu li:last-child {
        border-bottom: none;
    }

    #menu-item-36 .sub-menu a {
        color: #fff;
        padding: 15px 0;
        display: block;
        font-size: 1.5rem;
        opacity: 0.7;
    }

    #menu-item-36 .sub-menu a:hover {
        color: #fff;
        opacity: 1;
    }
}