@charset "UTF-8";

/*

    Yone Musics Website

    Copyright (C) よね/Yone

    No modification or reproduction of any kind is permitted.
    改変や複製を一切禁じます。

*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

:root {
    --page-font-size: 14px;
    --body-bgcolor: #ffffffff;
    --body-color: #404040ff;
    --header-height: 7rem;
    --header-max-width: 1024px;
    --header-padding-left-right: 1rem;
    /* --header-bgcolor: #ffffffff; */
    --header-bgcolor: #202020ff;
    --header-color: #ffffffff;
    --header-logo-height: calc(var(--header-height) * 0.55);
    --header-title-font-size: 1.1rem;
    --header-nav-height: calc(var(--header-height) * 0.45);
    --header-nav-bgcolor: #404040ff;
    --header-nav-color: #ffffffff;
    --header-nav-button-loc-offset: 2rem;
    --header-nav-button-size: 3.5rem;
    --footer-height: 6rem;
    --footer-bgcolor: #303030ff;

    --header-zindex: 10;
    --header-langs-menu-zindex: 20;
    --header-nav-zindex: 30;
    --footer-zindex: 10;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-size: var(--page-font-size);
}

body {
    margin-top: var(--header-height);
    background-color: var(--body-bgcolor);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--body-color);
}

body *.ja-jp,
body *.en-us,
body *.ko-kr {
    display: none;
}

body.ja-jp *.ja-jp {
    display: block;
}

body.en-us *.en-us {
    display: block;
}

body.ko-kr *.ko-kr {
    display: block;
}

body.ja-jp *.inline.ja-jp {
    display: inline;
}

body.en-us *.inline.en-us {
    display: inline;
}

body.ko-kr *.inline.ko-kr {
    display: inline;
}

body.ja-jp #headerLangsLists>.ja-jp {
    background-color: #000000d0;
    color: #ffffffff;
}

body.en-us #headerLangsLists>.en-us {
    background-color: #000000d0;
    color: #ffffffff;
}

body.ko-kr #headerLangsLists>.ko-kr {
    background-color: #000000d0;
    color: #ffffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: unset;
    font-weight: unset;
}

a {
    color: #40d080ff;
}

button {
    border: unset;
    cursor: pointer;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    font-size: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    border-radius: 2rem;
    padding: 0.5em 2em;
    background-color: #404040ff;
    font-size: 1.2rem;
    text-decoration: none;
    color: #ffffffff;
    transition: all 0.3s;
    user-select: none;
}

.button:hover {
    background-color: #f0f0f0ff;
    color: var(--body-color);
}

.button>.material-symbols-outlined {
    font-size: 1.5rem;
}

.sectionTitle,
.section-title {
    display: flex;
    font-size: 1.2rem;
}

.sectionTitle::before,
.section-title::before {
    display: block;
    width: 4px;
    height: auto;
    margin-right: 0.5em;
    background-color: #808080ff;
    content: "";
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    overflow: hidden;
    box-shadow: 0 0 2px 2px #00000040;
    background-color: var(--header-bgcolor);
    color: var(--header-color);
    user-select: none;
    z-index: var(--header-zindex);
}

#headerLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--header-logo-height);
}

#headerLogo>.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--header-max-width);
    height: 100%;
    padding-left: var(--header-padding-left-right);
    padding-right: var(--header-padding-left-right);
}

#headerLogo>.wrapper>.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

#headerIcon {
    margin-right: var(--header-padding-left-right);
    box-shadow: 0 0 2px 2px #00000020;
}

#headerIcon,
#headerIcon>* {
    height: calc(var(--header-logo-height) * 0.8);
    border-radius: 0.625rem;
}

#headerTitle {
    font-size: var(--header-title-font-size);
}

#headerLangsButton {
    width: calc(var(--header-logo-height) * 0.8);
    height: calc(var(--header-logo-height) * 0.8);
    border-radius: 0.625rem;
    background-color: #e8e8e8ff;
    font-size: calc(var(--header-logo-height) * 0.15);
    transition: all 0.3s;
}

#headerLangsButton.opened {
    background-color: #303030ff;
    color: #ffffffff;
}

#headerLangsButton>.material-symbols-outlined {
    font-size: calc(var(--header-logo-height) * 0.4);
}

#headerNav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--header-nav-height);
    background-color: var(--header-nav-bgcolor);
}

#headerNav>.wrapper {
    width: 100%;
    max-width: var(--header-max-width);
    height: 100%;
    padding-left: var(--header-padding-left-right);
    padding-right: var(--header-padding-left-right);
}

#headerNavLists {
    display: flex;
    width: 100%;
    height: 100%;
    color: #ffffffff;
}

#headerNavLists>li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 100%;
    border-right: 1px solid #808080ff;
    transition: all 0.3s;
}

#headerNavLists>li:hover {
    background-color: #ffffff40;
}

#headerNav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: #ffffffff;
}

#headerNavButton {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: var(--header-nav-button-loc-offset);
    right: var(--header-nav-button-loc-offset);
    width: var(--header-nav-button-size);
    height: var(--header-nav-button-size);
    box-shadow: 0 0 2px 2px #00000040;
    border-radius: 50%;
    background-color: #ffffffff;
    z-index: calc(var(--header-nav-zindex) + 1);
}

#headerNavButton>.material-symbols-outlined {
    font-size: calc(var(--header-nav-button-size) * 0.6);
}

#headerNavButton>.close {
    display: none;
}

#headerNavButton.opened>.open {
    display: none;
}

#headerNavButton.opened>.close {
    display: inline-block;
}

#headerLangsMenu {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-logo-height));
    background-color: #e0e0e0ff;
    transition: all 0.3s;
    z-index: var(--header-langs-menu-zindex);
}

#headerLangsMenu.opened {
    top: calc(var(--header-logo-height));
}

#headerLangsMenu>.wrapper {
    width: calc(100% - 20vw);
    height: calc(100% - 4rem);
    padding: 2rem 10vw;
}

#headerLangsLists {
    display: flex;
    flex-direction: column;
    list-style: none;
    color: var(--body-color);
}

#headerLangsLists>li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 1rem;
    transition: all 0.3s;
}

#headerLangsLists>li:hover {
    background-color: #00000060;
}

main {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

footer {
    width: 100%;
    height: var(--footer-height);
    overflow: hidden;
    background-color: var(--footer-bgcolor);
    color: #ffffffff;
    user-select: none;
    z-index: var(--footer-zindex);
}

footer>.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    body {
        margin-top: var(--header-logo-height);
    }

    main {
        min-height: calc(100vh - var(--header-logo-height) - var(--footer-height));
    }

    header {
        height: var(--header-logo-height);
    }

    #headerLogo {
        height: 100%;
    }

    #headerNav {
        display: block;
        position: fixed;
        top: var(--header-logo-height);
        left: 100vw;
        width: 100vw;
        height: calc(100vh - var(--header-logo-height));
        background-color: #000000ff;
        transition: all 0.3s;
        z-index: var(--header-nav-zindex);
    }

    #headerNav.opened {
        left: 0;
    }

    #headerNav>.wrapper {
        width: calc(100% - 20vw);
        height: calc(100% - 4rem);
        padding: 2rem 10vw;
    }

    #headerNavLists {
        flex-direction: column;
    }

    #headerNavLists>li {
        width: 100%;
        height: 3rem;
        margin-bottom: 1rem;
        border: none;
        border-radius: 1rem;
    }

    #headerNavButton {
        display: inline-flex;
    }
}