@charset "UTF-8";

html {
	scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
	 font-family: "Zen Old Mincho", serif;
	 font-size: 1rem;
	 background: #000;
	 color: #fff;
}

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 30px 5% 0;
    width: 100%;
    position: fixed;
    z-index: 99999;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.header_change {
    padding: 10px 5%;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.7035014689469538) 100%);
}

.header_logo {
	display: flex;
	font-family: "Noto Serif Display", serif;
	font-size: 3rem;
	align-items: center;
	font-weight: 400;
	position: relative;
	z-index: 99999;
}

ul.header_menu {
    display: flex;
    align-items: center;
}

ul.header_menu li a {
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-family: "Noto Serif Display", serif;
}

ul.header_menu li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #fff;
bottom: -5px;
transform: scale(0, 1);
transform-origin: right top; 
transition: transform 0.3s; 
}

ul.header_menu li a:hover::after {
transform: scale(1, 1); 
transform-origin: left top;
}

ul.header_menu li {
    margin-left: 30px;
}

.header_logo span {
    font-size: 1rem;
    margin-left: 10px;
    line-height: 14px;
    letter-spacing: 0.5px;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
.mv_label_language {
    position: fixed;
    top: 52px;
    left: 5%;
	z-index: 99999;
}

span.mv_label_language_active {
    font-size: 1.1rem;
    line-height: 13px;
}

span.mv_label_language_passive {
    font-size: 1.2rem;
    line-height: 10px;
}
}