@charset "UTF-8";

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-SemiBold.woff2);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

.l-header.org-header {
    padding-block: 14px;
    z-index: 6;
    background: #FFFFFF;
    width: 100%;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    transition: .4s;
    opacity: 1;
    z-index: 8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.l-header.org-header.scroll-fixed {
    top: -80px;
    transition: top .5s;
}
.l-header.org-header.org-header--top {
    position: fixed;
}
.header__inner {
    padding-inline: 16px 15px;
    display: flex;
    margin: 0;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.header__left {
    width: 246px;
    height: 51px;
    display: block;
}
.header__logo {
    width: 100%;
    height: 100%;
    display: flex;
}
.header__logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.header__logo:hover {
    opacity: 1;
}
.header__right {
    display: flex;
    gap: 19px;
    align-items: center;
}
.header-nav__list {
    display: flex;
    gap: 22px;
    padding-top: 6px;
}
.header-nav__item {
    width: fit-content;
}
.header-nav__link {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.8px;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}
.header-nav__link::after {
    content: "";
    position: absolute;
    background: #2E61A3;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -3px;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.header-nav__link:hover {
    color: #2E61A3;
    opacity: 1;
}
.header-nav__link:hover::after {
    transform: scale(1, 1);
    transition: transform .3s;
}
.header__btn-list {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header__btn--instagram {
    width: 40px;
    height: 40px;
}
.header__btn--youtube {
    width: 54px;
    height: 35px;
}
.header__btn-link {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}
.header__btn--buy {
    width: 200px;
    height: 50px;
}
.header__btn--buy .header__btn-link {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.8px;
    border-radius: 9999px;
    background: #FFA600;
    align-items: center;
    justify-content: center;
}
.header__btn--buy .header__btn-link:hover {
    color: #FFA600;
    background: #FFF;
    opacity: 1;
    border: 1px solid #FFA600;
}