@charset "UTF-8";

.l-header-top {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 10;
    height: 7.3vw;
    padding-left: var(--p130-spa);
    padding-right: var(--p50-spa);
    padding-top: var(--p15-spa);
}

.l-header-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;

    height: 100%;
    gap: 24px;
}

.global-nav,
.global-nav__list {
    height: 100%;
}

.global-nav__list {
    display: flex;
    align-items: stretch;
    column-gap: var(--p65-spa);
}

.global-nav__item {
    display: flex;
}

.global-nav__link {
    position: relative;
    display: flex;
    align-items: center;

    height: 100%;
    font-family: var(--font-en);
    font-size: var(--fz-nav);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: var(--lsp-100);
    text-align: center;
    color: var(--white);
}

.global-nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 8vw;
    height: 4px;
    background-color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-nav__link--current::after,
.global-nav__link:hover::after {
    opacity: 1;
}

.global-nav__list:hover .global-nav__link--current:not(:hover)::after {
    opacity: 0;
}

.l-header-top__logo {
    display: inline-block;
    align-self: center;

}

.l-header-top__logo-link {
    display: block;
}

.l-header-top__logo-img {
    width: 140px;
    height: auto;
}

@keyframes top-header-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 769px) {
    .l-header-top.is-fixed {
        position: fixed;
        z-index: 50;
        background-color: var(--white);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        animation: top-header-in 0.3s ease;
    }

    .l-header-top.is-fixed .global-nav__link {
        color: var(--text);
    }

    .l-header-top.is-fixed .global-nav__link::after {
        background-color: var(--text);
    }
}

.p-mv {
    position: relative;

    height: 50.49vw;
    overflow: hidden;
    isolation: isolate;

}

.p-mv__bg {
    position: absolute;
    top: 7.3vw;

    left: 0;
    width: 100%;
    height: auto;

}

.p-mv__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 67.9vw;

    height: 66vw;
    z-index: 1;
    pointer-events: none;
}

.p-mv__cover--multiply {
    mix-blend-mode: multiply;

    filter: brightness(0.85);
}

.p-mv__cover--hardlight {
    mix-blend-mode: hard-light;

}

.p-mv__cover-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24vw;
    height: 35vw;
    z-index: 1;
    mix-blend-mode: hard-light;
    pointer-events: none;
}

.p-mv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 67.9vw;
    height: 7.3vw;
    background-color: rgba(37, 137, 252, 0.99);

    -webkit-mask-image: url(../images/cover_2_hardlight.png), url(../images/cover_3_multiply.png);
    mask-image: url(../images/cover_2_hardlight.png), url(../images/cover_3_multiply.png);
    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;
    -webkit-mask-position: left top, left top;
    mask-position: left top, left top;
    -webkit-mask-size: 67.9vw 66vw, 67.9vw 66vw;
    mask-size: 67.9vw 66vw, 67.9vw 66vw;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    z-index: 2;
    pointer-events: none;
}

.p-mv__catch {
    position: relative;
    width: 33vw;

    white-space: normal;

    font-size: 0;

    line-height: 0;
}

.p-mv__catch-heading {
    margin: 0;
}

.p-mv__catch-text {
    width: 100%;
    height: auto;
}

.p-mv__thanks {
    position: absolute;
    left: 29.5%;
    bottom: 0;

    width: 19.9%;

    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;

    pointer-events: auto;

}

.p-mv__thanks-img {
    width: 100%;
    height: auto;
}

.p-mv__thanks::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 38%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0) 62%);
    background-repeat: no-repeat;
    background-size: 220% 220%;

    background-position: 160% 160%;

    -webkit-mask: url(../images/mv-thanks.svg) no-repeat center / contain;
    mask: url(../images/mv-thanks.svg) no-repeat center / contain;
}

@media (hover: hover) and (min-width: 769px) {

    .p-mv__thanks:hover .p-mv__thanks-img {
        animation: mv-thanks-dim 0.8s ease;
    }

    .p-mv__thanks:hover::after {
        animation: mv-thanks-shine 0.8s ease;
    }
}

@keyframes mv-thanks-dim {

    0%,
    100% {
        filter: brightness(1);
    }

    45% {
        filter: brightness(0.68);
    }
}

@keyframes mv-thanks-shine {

    0% {
        opacity: 1;
        background-position: 160% 160%;
    }

    100% {
        opacity: 1;
        background-position: -60% -60%;
    }
}

.p-mv__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: var(--p170-spa) 0 0 var(--p130-spa);
}

.p-mv__lead {
    margin-top: var(--p40-spa);
    color: var(--white);
    font-family: var(--font-en);
    font-weight: 500;
    font-size: var(--fz-body);
    line-height: 1.7;
    letter-spacing: var(--lsp-50);
}

.p-mv__sns {
    display: flex;
    gap: 12px;
    margin-top: 1vw;
}

.p-mv__sns-link {
    display: block;
    width: 40px;
}

.p-mv__sns-link img {
    width: 100%;
    height: auto;
}

.p-mv__category {
    position: fixed;

    top: 25vw;
    right: 0;
    z-index: 15;
    width: 13.9vw;
    min-width: 170px;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-mv__category.is-shown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cat-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--p15-spa) 0.8vw;
    background-color: var(--white);
    color: var(--text);
    font-size: var(--fz-body);
    font-weight: bold;
    letter-spacing: var(--lsp-100);
    text-align: center;
    border: 1px solid var(--secondary);
    border-bottom-width: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cat-nav__item:last-child .cat-nav__link {
    border-bottom-width: 1px;
}

@media (hover: hover) {
    .cat-nav__link:hover {
        background-color: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }
}

.p-product {
    position: relative;
    margin-top: var(--p60-spa);
    padding-top: 2vw;
    padding-bottom: var(--p40-spa);
}

.p-product__title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 1vw var(--p60-spa) 1vw var(--p90-spa);
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: var(--fz-h2);
    letter-spacing: var(--lsp-120);
}

.p-product__inner {
    width: 76.9vw;

    margin-inline: auto;

    background-color: #E9E9E9;
    padding: 6vw var(--p30-spa) 3.5vw;
}

.p-product__list {
    display: flex;
}

.p-product__card {
    flex: 0 0 33.333%;
    min-width: 0;
}

.p-product__card+.p-product__card {
    border-left: 1px solid #C8C8C8;
    padding-left: 1vw;
}

.p-product__link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .p-product__link:hover {
        opacity: 0.7;
    }
}

.p-product__thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20vw;
    padding-top: 3vw;
}

.p-product__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--accent);
    color: var(--white);
    font-family: var(--font-ja);
    font-weight: bold;
    font-size: var(--fz-small);
    letter-spacing: var(--lsp-50);
    padding: 2px 12px;
}

.p-product__img {
    max-width: 70%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.p-product__info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* gap: var(--p60-spa); */
    gap: 0;
    margin-top: 2vw;
}

.p-product__name {
    width: 35%;
}

.p-product__maker {
    font-size: var(--fz-small);
    line-height: 1.4;
}

.p-product__model {
    font-size: var(--fz-model);
    font-weight: bold;
    line-height: 1.3;
}

.p-product__specs {
    font-size: var(--fz-small);
    line-height: 1.9;
    letter-spacing: var(--lsp-20);
}

.p-news {
    padding-bottom: var(--p70-spa);
}

.p-news__title {
    text-align: center;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: var(--fz-h2);
    letter-spacing: var(--lsp-120);
    margin-bottom: 0;
}

.p-news__title::after {
    content: "";
    display: block;
    width: 110px;
    height: 5px;
    margin: 5px auto 0;
    background-color: var(--primary);
}

.p-news__list {
    max-width: 64vw;
    margin-inline: auto;
}

.p-news__item {
    display: flex;
    align-items: flex-start;
    gap: 3vw;
    padding: 1.8vw 0;
    border-top: 1px solid #CFCFCF;
}

.p-news__item:first-child {
    border-top: none;
}

.p-news__item--extra {
    display: none;
}

.p-news__list.is-open .p-news__item--extra {
    display: flex;
}

.p-news__date {
    flex-shrink: 0;
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: var(--fz-body);
    letter-spacing: var(--lsp-50);
    line-height: 1.7;
}

.p-news__body {
    flex: 1;
    min-width: 0;
    padding-right: 2vw;

}

.p-news__text,
.p-news__body p {
    font-size: var(--fz-body);
    line-height: 1.7;
    letter-spacing: var(--lsp-20);
}

.p-news__text+.p-news__text,
.p-news__body p+p {
    margin-top: 0.3em;
}

.p-news__link,
.p-news__body a {
    color: var(--primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {

    .p-news__link:hover,
    .p-news__body a:hover {
        opacity: 0.7;
    }
}

.p-news__more {
    text-align: center;
    margin-top: 2vw;
}

.p-news__more-btn {
    min-width: 160px;
    padding: 10px 40px;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: var(--fz-body);
    letter-spacing: var(--lsp-100);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
    .p-news__more-btn:hover {
        background-color: var(--primary);
        color: var(--white);
    }
}

@media screen and (max-width:1100px) {
    .global-nav__list {
        column-gap: var(--p50-spa);
    }
}

@media screen and (max-width: 768px) {

    .l-header-top {
        height: 70px;
        padding: 0 var(--p20-spa);
    }

    .l-header-top.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        z-index: 50;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        animation: top-header-in 0.3s ease;
    }

    @keyframes top-header-in {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .l-header-top.is-fixed .l-header-top__menu-icon {
        filter: brightness(0);
    }

    .l-header-top__inner {
        align-items: center;
        gap: 12px;
    }

    .l-header-top__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        z-index: 30;
    }

    .l-header-top__menu-icon {
        width: 42px;
        height: auto;
    }

    .l-header-top__menu-label {
        font-family: var(--font-en);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: var(--lsp-50);
        color: var(--white);
    }

    .l-header-top__logo-img {
        width: 83px;
    }

    .global-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 40vw;
        height: auto;
        display: none;
        z-index: 25;
    }

    .global-nav.is-open {
        display: block;
    }

    .global-nav__list {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        column-gap: 0;
    }

    .global-nav__item {
        display: block;
    }

    .global-nav__link {
        height: auto;
        justify-content: center;
        padding: 12px 8px;
        font-size: 12px;
        color: var(--primary);
        background-color: var(--white);
        border: 1px solid var(--secondary);
        border-bottom-width: 0;
    }

    .global-nav__item:last-child .global-nav__link {
        border-bottom-width: 1px;
    }

    .global-nav__link--current {
        background-color: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    .global-nav__link br {
        display: none;
    }

    .global-nav__link::after {
        display: none;
    }

    .p-mv {
        height: auto;
        overflow: hidden;
    }

    .p-mv__bg {
        position: absolute;
        top: 70px;

        left: 0;
        width: 100%;
        height: calc(100% - 70px);
        object-fit: cover;
        object-position: center;
    }

    .p-mv__cover {
        top: 0;
        left: 0;
        width: 70.4vw;

        height: 100%;
        object-fit: fill;
    }

    .p-mv::after {
        width: 70.4vw;
        height: 100%;
        -webkit-mask-image: url(../images/cover_2_hardlight_sp.png), url(../images/cover_3_multiply_sp.png);
        mask-image: url(../images/cover_2_hardlight_sp.png), url(../images/cover_3_multiply_sp.png);
        -webkit-mask-size: 100% 100%, 100% 100%;
        mask-size: 100% 100%, 100% 100%;
        clip-path: inset(0 0 calc(100% - 70px) 0);
    }

    .p-mv__inner {
        position: relative;
        z-index: 2;
        padding: var(--p100-spa) var(--p20-spa) var(--p40-spa);
    }

    .p-mv__catch {
        width: 88%;
    }

    .p-mv__thanks {
        left: 29%;
        bottom: 0;
        width: 21%;
    }

    .p-mv__thanks-img {
        opacity: 0;
    }

    .p-mv__lead {
        margin-top: var(--p30-spa);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    }

    .p-mv__sns {
        margin-top: var(--p20-spa);
    }

    .p-mv__sns-link {
        width: 27px;
    }

    .p-product {
        margin-top: 0;
        padding-top: 0;
        padding-bottom: var(--p70-spa);
    }

    .p-product__badge {
        padding: 3px 5px;
    }

    .p-product__title {
        position: static;
        width: 100%;
        height: auto;
        text-align: center;
        display: block;
        padding: var(--p10-spa) var(--p20-spa);
        letter-spacing: var(--lsp-150);
    }

    .p-product__inner {
        width: 73vw;
        margin-left: auto;
        margin-right: auto;
        margin-top: var(--p20-spa);
        padding: var(--p30-spa) var(--p20-spa);
    }

    .p-product__list {
        flex-direction: column;
        gap: var(--p20-spa);
    }

    .p-product__card {
        padding: 0;
    }

    .p-product__card+.p-product__card {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-top: var(--p20-spa);
    }

    .p-product__info {
        flex-direction: column;
        /* gap: var(--p30-spa); */
        gap: var(--p15-spa);
    }

    .p-product__name {
        padding-left: 0;
        width: 100%;
    }

    .p-product__maker {
        font-size: 10px;
    }

    .p-product__specs {
        font-size: 10px;
    }

    .p-product__model {
        font-size: 14px;
    }

    .p-product__thumb {
        height: 60vw;
        padding: var(--p40-spa) 0 var(--p20-spa);
    }

    .p-product__img {
        max-width: 66%;
        max-height: 100%;
    }

    .p-mv__category {
        top: 26vw;
        bottom: auto;
        right: 0;
        width: auto;
        min-width: 0;
        display: flex;
        align-items: flex-start;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .p-mv__category-tab {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: vertical-rl;
        padding: var(--p20-spa) 8px var(--p20-spa) 6px;
        background-color: var(--primary);
        color: var(--white);
        font-family: var(--font-en);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: var(--lsp-50);
        cursor: pointer;
        border-radius: 10px 0 0 10px;
        width: 40px;
        height: 160px;
    }

    .cat-nav__list {
        display: none;
        width: var(--p120-spa);
    }

    .p-mv__category.is-open .cat-nav__list {
        display: block;
    }

    .cat-nav__link {
        white-space: nowrap;
        font-size: 10px;
        padding: var(--p10-spa) 0.8vw;
    }

    .p-news {
        padding: 0 var(--p20-spa) var(--p60-spa);
    }

    .p-news__list {
        max-width: none;
    }

    .p-news__item {
        gap: var(--p20-spa);
        padding: var(--p20-spa) 0;
    }

    .p-news__text,
    .p-news__body p {
        font-size: 12px;
    }

    .p-news__date {
        font-size: 12px;
    }

    .p-news__more-btn {
        padding: 5px 20px;
        min-width: 70px;
        font-size: 10px;
    }
}

.p-song {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding-bottom: var(--p60-spa);
    background-color: rgba(35, 24, 21, 0.8);
}

.p-song[hidden] {
    display: none;
}

.p-song__close {
    position: absolute;
    top: var(--p25-spa);
    right: var(--p15-spa);
    z-index: 2;
    width: var(--p35-spa);
    height: var(--p35-spa);
    min-width: 35px;
    min-height: 35px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.p-song__close::before,
.p-song__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--p15-spa) * 1.414);
    height: 1px;
    background-color: #000;
}

.p-song__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.p-song__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.p-song__logo {
    display: block;
    align-self: flex-start;
    width: 14.3vw;
    /* max-width: 35.8vw; */
    height: auto;
    margin-top: var(--p160-spa);
    margin-left: calc(50% - min(640px, 82vw) / 2);
}

.p-song__video {
    width: 640px;
    max-width: 82vw;
    aspect-ratio: 4 / 3;
    margin-top: var(--p40-spa);
}

.p-song__video-el {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .p-song__logo {
        width: 26vw;
        /* max-width: 60vw; */
        margin-top: 22vw;
        margin-left: calc(50% - 44vw);
    }

    .p-song__video {
        width: 100%;
        max-width: 88vw;
        margin-top: var(--p40-spa);
    }
}