@import url('https://fonts.googleapis.com/css2?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.43;
    font-weight: 400;
    color: #313131;
    counter-reset: number 0;
    background-color: #f6f6f6;
}
a {
    word-break: break-all;
    color: #313131;
}
.en {
    font-family: YakuHanJP, "adobe-garamond-pro", "Noto Sans JP", serif;
    font-weight: 600;
    font-style: normal;
}
.sp {
    display: none;
}
.main-inner {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}
img {
    height: auto;
    max-width: 100%;
}
@media screen and (max-width:640px) {
    .main-inner {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
header .header_inner {
    display: flex;
    padding: 20px 24px;
    align-items: flex-start;
}
header .header_inner .site-logo {
    width: 220px;
    display: block;
    position: relative;
    z-index: 999;
    transition: all .4s ease;
}
header.scrolled .header_inner .site-logo {
    width: 170px;
}
header .header_inner .site-logo img {
    vertical-align: middle;
}
header .header_inner .global_menu {
    display: flex;
    gap: 25px;
    margin-left: auto;
}
header .header_inner .global_menu .menu_item {
    font-size: 1.4rem;
    font-weight: 500;
}
header .header_inner .search-cont {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}
.search_button {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin-left: 40px;
}
.search_button .search-icon {
    width: 17px;
    height: 17px;
    display: block;
}
.header_contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e3e3e3;
    z-index: 10;
    padding: 150px 5%;
    opacity: 0;
    pointer-events: none;
    border: #000;
    height: 100lvh;
    flex-direction: column;
}

@media screen and (max-width:640px) {
    header .header_inner {
        justify-content: space-between;
        padding: 0 0 0 5%;
    }
    header .header_inner .site-logo {
        width: 160px;
        padding-top: 20px;
    }
    header.scrolled .header_inner .site-logo {
        width: 140px;
    }
    header .header_inner .global_menu {
        display: none;
    }
    header .header_inner .search_button {
        display: none;
    }
    .hum {
        display: block;
        position: relative;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .3s;
        z-index: 101;
        outline: none;
        border: none;
        background-color: transparent;
        vertical-align: bottom;
        padding: 0;
    }
    .hum span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 16px;
        height: 4px;
        background: #000;
    }
    .hum span:nth-child(1) {
        top: 25px;
        width: 50%;
    }
    .hum span:nth-child(2) {
        top: 32px;
        width: 30%;
    }
    .hum.active span:nth-child(1) {
        top: 20px;
        left: 16px;
        transform: translate(3px, 9px) rotate(-45deg);
        width: 40%;
    }
    .hum.active span:nth-child(2) {
        top: 32px;
        left: 16px;
        transform: translate(3px, -3px) rotate(45deg);
        width: 40%;
    }
    .header_contents.active {
        opacity: 1;
        pointer-events: unset;
    }
    header .header_contents.active .search_area {
        opacity: 1;
        pointer-events: unset;
        position: relative;
    }
    header .header_contents.active .search_area .form-text {
        width: 100%;
        background-color: #fff;
        font-size: 1.4rem;
        font-weight: 400;
        padding: 12px 14px;
        border: none;
    }
    header .header_contents.active .search_area .search-btn {
        background: transparent;
        border: none;
        padding: none;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }
    header .header_contents.active .search_area .search-btn .search-icon {
        display: block;
        width: 20px;
        height: 20px;
    }
    header .header_contents.active .global_menu-sp {
        display: flex;
        flex-direction: column;
        margin: 20px 0 40px;
    }
    header .header_contents.active .global_menu-sp .menu_item {
        display: block;
        font-size: 1.4rem;
        border-bottom: solid 1px #cbcbcb;
        padding: 15px 0;
    }
}

.tag-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 140px;
    background-color: #fff;
    padding: 15px 0;
}
.tag-marquee__inner {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: tag-marquee 20s linear infinite;
}
.tag-item {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    opacity: .8;
    transition: opacity .2s ease;
}
.tag-item:hover {
    opacity: 1;
}
@keyframes tag-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media screen and (max-width:640px) {
    .tag-marquee {
        margin-top: 120px;
    }
    .tag-marquee__inner {
        gap: 20px;
    }
    .tag-item {
        font-size: 1.4rem;
    }
}

.main-footer {
    background-color: #86878c;
    padding: 80px 0 40px;
}
.main-footer .footer-inner {
    width: 700px;
    margin: 0 auto;
}
.footer-inner .upper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 56px;
    border-bottom: solid 1px #f6f6f6;
    margin-bottom: 56px;
}
.global_menu-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    max-width: 450px;
}
.global_menu-footer .menu_item {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
}
.sns-links {
    display: flex;
    gap: 20px;
}
.sns-links .sns-link {
    width: 22px;
    display: block;
    transition: all .2s;
    line-height: 1;
}
.sns-links .sns-link:hover {
    opacity: .7;
}
.main-footer .search_button {
    color: #fff;
    letter-spacing: .05em;
    margin-left: 0;
    margin-top: 40px;
}
.main-footer .lower_nav {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}
.main-footer .lower_nav a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
}
.main-footer .lower_caution {
    font-size: 1.3rem;
    font-weight: 400;
    color: #f6f6f6;
}
.main-footer .copyright {
    font-size: 1.4rem;
    font-weight: 400;
    color: #f6f6f6;
    margin-top: 40px;
}

@media screen and (max-width:640px) {
    .main-footer {
        padding: 60px 0 20px;
    }
    .footer-inner .upper {
        flex-direction: column;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .main-footer .footer-inner {
        width: 100%;
        padding: 0 5%;
        margin: 0 auto;
    }
    .global_menu-footer {
        max-width: 100%;
        gap: 10px 20px;
        justify-content: center;
    }
    .main-footer .search_button {
        margin: 35px auto 0;
    }
    .sns-links {
        justify-content: center;
        margin-top: 50px;
    }
    .main-footer .lower_nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .main-footer .lower_caution {
        font-size: 1.2rem;
    }
    .main-footer .copyright {
        text-align: center;
    }
}