@charset "UTF-8";

body {
	font-family: "ryo-gothic-plusn", sans-serif;
	min-width: 1100px;
	margin: 0 auto;
	font-size: 1rem;
	font-weight: 300;
}

header {
	min-width: 1100px;
	margin: 0 auto;
    width: 100%;
    position: fixed;
    z-index: 9999;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 40px 5% 100px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.7535014689469538) 100%);
}

header.header_change {
    padding: 10px 5%;
    background: #fff;
    border-bottom: 1px solid #242422;
}

.header_change .header_logo a {
    font-size: 1.2rem;
    line-height: 14px;
	color: #242422;
}

.header_change .header_logo span {
    width: 26px;
}

a.headercontact span {
    width: 15px;
    margin-left: 5px;
}

.header_change a.headercontact span {
    width: 15px;
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%);
}

.header_logo {
    line-height: 23px;
    color: #fff;
    font-weight: bold;
    padding: 4px 9px;
    letter-spacing: -1px;
    display: flex;
    font-family: "ab-karuta-el", sans-serif;
    align-items: center;
    font-size: 1.8rem;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.header_logo a {
	display: block;
	line-height: 21px;
	font-weight: bold;
	font-size: 1.6rem;
	color: #242422;
}

.header_logo span {
    width: 32px;
    margin-right: 10px;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
}

a.headercontact {
    display: flex;
    background: #fff;
    color: #242422;
    padding: 7px 20px;
    font-size: 1.3rem;
    align-items: center;
    border-radius: 54px;
    font-weight: 400;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.header_change a.headercontact {
	font-size: 1.1rem;
	background: #242422;
	color: #fff;
}

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

ul.header_menu li a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.header_change ul.header_menu li a {
	font-size: 1.3rem;
	color: #242422;
}

ul.header_menu li a:hover span {
	width: 100%;
}

ul.header_menu li a span {
	display: block;
	width: 0;
	height: 1px;
	margin-top: -1px;
	background: #fff;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
}

.header_change ul.header_menu li a span {
	background: #242422;
}

ul.header_menu li {
    margin: 0 15px;
}

a.headercontact:hover {
    background: #ccc;
}

.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;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1250px) {
	
header {
    padding: 40px 4% 100px;
}
	
ul.header_menu li a {
    font-size: 1.2rem;
}
	
a.headercontact {
    padding: 7px 20px;
    font-size: 1.2rem;
}
	
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
body {
	min-width: inherit;
	width: 100%;
}
	
ul.header_menu {
    display: none;
}

header {
	min-width: inherit;
	padding: 14px 3% 0;
	width: 100%;
}
	
header.header_change {
    padding: 10px 3%;
    border: none;
    background: rgba(255,255,255,0.9);
}

a.headercontact {
    font-size: 1.1rem;
    padding: 4px 12px 3px 17px;
    margin-right: 49px;
}

.header_logo {
    font-size: 1.6rem;
    line-height: 22px;
    padding: 0;
}
}