@charset "UTF-8";

*{
    box-sizing: border-box;
}
*::before{
    box-sizing: border-box;
}
*::after{
    box-sizing: border-box;
}
:root{
    --font-title: 'Major Mono Display', monospace;
    --font-main: 'Rubik', sans-serif;
}
html,body{
    height:100%;
    width: 100%;
    margin:0;
    
    position: relative;
}
body{
    background-color: #202020;
    /* background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover; */
}
a{
    text-decoration: none;
}
label{
    display: flex;
}
/* ------------------------------------------------------------------------------ */
.root{
    display: flex;
    flex-direction: row;
    height: 100%;
    width:100%;
}
.menu-section{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width:calc(10%);
    margin-left: 10px;


}
.menu-section input{
    display: none;
}
.menu-section input[type="radio"]:checked + label {
    color: beige;
    text-shadow: 0 0px 5px beige;
    animation: ShowAnim .5s cubic-bezier(.42,0,.58,1);
}
.menu-text{
    writing-mode: vertical-rl;
    font-size: 40px;
    font-family: var(--font-title);
    font-weight: bolder;
}
.menu-contents{
    position: relative;
    border-radius: 0px 20px 20px 0px;
    padding-top: 5px;
    margin-bottom: 5px;
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0, 0, 0, 0);
}
/* ------------------------------------------------------------------------------ */
.menu-subsection{
    position: absolute;
    font-size: 30px;
    left: 2px;
}
.NoCheckHide{
    display: none;
}
.CheckAnim{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0px 5px beige;
    color: beige;
    animation: ShowAnim .5s cubic-bezier(.42,0,.58,1);
}
@keyframes ShowAnim {
    0%{
        color: rgba(0, 0, 0, 0);
        text-shadow: 0 0px 5px rgba(0, 0, 0, 0);
    }
    10%{
        
        text-shadow: 0 0px 10px white;
    }
    25%{
        color: rgb(182, 182, 163);
    }
    100%{
        color: beige;
        text-shadow: 0 0px 5px beige;
    }
}
.unCheckAnim{
    opacity: 0;
    animation: HideAnim .5s cubic-bezier(.42,0,.58,1);
}
@keyframes HideAnim {
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}
/* ------------------------------------------------------------------------------ */
.welcome-pad-Check{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-blend-mode:color-burn;
    padding-bottom: calc(2.5em + 10px);
    animation: WelcomePadAnimAfter .5s cubic-bezier(.42,0,.58,1);
}
.welcome-pad-Check::before{
    filter: blur(50px);
}
@keyframes WelcomePadAnimAfter {
    from {
        padding-bottom: 0;
    }
    to {
        padding-bottom: calc(2.5em + 10px);
    }
}
.welcome-pad-noCheck{
    padding-bottom: 0;
    animation: WelcomePadAnimBefore .5s cubic-bezier(.42,0,.58,1);
}
@keyframes WelcomePadAnimBefore {
    from {
        padding-bottom: calc(2.5em + 10px);
    }
    to{
        padding-bottom: 0;
    }
}
/* ------------------------------------------------------------------------------ */
.about-pad-Check{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(2em + 10px);
    animation: AboutPadAnimAfter .5s cubic-bezier(.42,0,.58,1);
}
@keyframes AboutPadAnimAfter {
    from {
        padding-bottom: 0;
    }
    to {
        padding-bottom: calc(2em + 10px);
    }
}
.about-pad-noCheck{
    padding-bottom: 0em;
    animation: AboutPadAnimBefore .5s cubic-bezier(.42,0,.58,1) !important;
}
@keyframes AboutPadAnimBefore {
    from {
        padding-bottom: calc(2em + 10px);
    }
    to{
        padding-bottom: 0;
    }
}
/* ------------------------------------------------------------------------------ */
.work-pad-Check{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(2em + 10px);
    animation: WorkPadAnimAfter .5s cubic-bezier(.42,0,.58,1);
}
@keyframes WorkPadAnimAfter {
    from {
        padding-bottom: 0;
    }
    to {
        padding-bottom: calc(2em + 10px);
    }
}
.work-pad-noCheck{
    padding-bottom: 0em;
    animation: WorkPadAnimBefore .5s cubic-bezier(.42,0,.58,1) !important;
}
@keyframes WorkPadAnimBefore {
    from {
        padding-bottom: calc(2em + 10px);
    }
    to{
        padding-bottom: 0;
    }
}
/* ------------------------------------------------------------------------------ */
.contact-pad-Check{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    padding-bottom: calc(3.5em + 10px);
    animation: ContactPadAnimAfter .5s cubic-bezier(.42,0,.58,1);
}
@keyframes ContactPadAnimAfter {
    from {
        padding-bottom: 0;
    }
    to {
        padding-bottom: calc(3.5em + 10px);
    }
}
.contact-pad-noCheck{
    padding-bottom: 0em;
    animation: ContactPadAnimBefore .5s cubic-bezier(.42,0,.58,1) !important;
}
@keyframes ContactPadAnimBefore {
    from {
        padding-bottom: calc(3.5em + 10px);
    }
    to{
        padding-bottom: 0;
    }
}
/* --------------------------------------------------------------------------------- */
.section-root{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    height: calc(100% - 20px);
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 10px;
    backdrop-filter: brightness(10%) !important;
    z-index: 1;
}
.section{
    display: grid;
    justify-items: center;
    align-items: center;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    margin: 5px;
    border-radius: 10px;
    border: 5px solid #202020;
}
#IDSectionFrame{
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    padding: 5px;
    border-radius: 10px;
    border-width: 0;
    background-color: #202020;
}
/* ----------------------------------------SECTION----------------------------------------- */
.rootdiv{
    margin: 10px;
    color: #202020;
    font-size: 30px;
    font-family: var(--font-main);
}
.LanRadioRoot{
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-size: 25px;
    font-family: var(--font-title);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}
.LanRadioRoot input{
    display: none;
}
/* .LanRadioRoot input[type="radio"]:checked + label{
    color: #202020;
} */
/* --------------------------------------------------------------------------------- */
.LanguageICON{
    width: 1em;
    height: 1em;
    padding: 2.5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
}
.LanguageICON-OFF {
    width: 1em;
    height: 1em;
    padding: 2.5px;
    margin-left: 2.5px;
    margin-right: 2.5px;
    filter: invert(100%) !important;
}
.LangSelected{
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 5px;
    
    background-color: beige;
    /* box-shadow: 0px 0px 5px 1px beige; */
    
    box-shadow: 1px 1px 5px 0px #202020 inset;
    border: 1px solid beige;
    border-top-width: 1;
    border-left-width: 1;
    animation: LangAnim .5s cubic-bezier(.42,0,.58,1);
}
@keyframes LangAnim {
    0%{
        background-color: #202020;
        box-shadow: 2px 2px 5px 0px #202020 inset;
    }
    10%{
    }
    25%{
        color: #202020;
    }
    100%{
        /* text-shadow: 0 0px 5px beige; */
    }
}
.LangNotSelected{
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 5px;

    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    box-shadow: 1px 1px 0px 0px beige;
}
/* --------------------------------------------------------------------------------- */
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}
.maintxt{
    color: beige;
}
.maintxt-title{
    font-size: larger;
}
.HIDE{
    display: none;
}
/* -------------------------------------WELCOME------------------------------------- */
.Title-Slogan{
    display: grid;
    justify-items: center;
    align-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
}
.Slogan-Big{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Yuji Boku', serif;
    font-size: 100px;
    line-height: .9;
    padding-bottom: 10px;
}
.Slogan-Small{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Caveat', cursive;
    font-size: 30px;
}
@media (279px <= width <= 400px) {
    .Slogan-Big{
        font-size: 70px;
    }
}
/* -------------------------------------WORK---------------------------------------- */
.Work-root{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: beige;
    width: 100%;
    height: 100%;
}
.Work-article{
    background-image: url("../img/VvG_Wut.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    width: 80%;
    height: auto;
    padding: 5px;
    border-radius: 5px;
}
.Work-article-background{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    height: auto;
    padding: 5px;
    background-color: #202020 !important;
}
.Work-article section{
    height: 80%;
}
.article-thumb{
    width: 100%;
}
.Work-article-title{
    height: 20%;
    font-size: 20px;
}
/* -------------------------------------CONTACT------------------------------------- */
.sns{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sns-title{
    font-size: 1.5rem;
    color: beige;
}
.sns-text{
    font-size: 1rem;
    color: beige;
}