@charset "UTF-8";

::selection {
background:#000;
color: #fff;
}

::-moz-selection {
background:#000;
color: #fff;
}

.pc_disp {
	display: block!important;
}

.sp_disp {
	display: none!important;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	background: #101010;
	min-width: 1100px;
	color: #fff;
}

header {
    position: fixed;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(16,16,16,0.8) 100%);
    width: 100%;
    padding-bottom: 20px;
    min-width: 1100px;
}

.header_logo a {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    line-height: 23px;
    display: block;
}

.header_logo a span {
    display: block;
    font-size: 1.2rem;
}

.header_inner {
    display: flex;
    justify-content: center;
}

ul.g_nav {
    display: flex;
    padding: 30px 0;
}

ul.g_nav li a span {
	display: block;
	width: 0;
	height: 1px;
	background: #fff;
	margin: 0 auto;
    transition: all 0.5s ease-in-out 0s;
}

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

ul.g_nav li a {
    color: #fff;
    font-size: 1.3rem;
    display: block;
}

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

ul.g_sns {
    display: flex;
    align-items: center;
    position: absolute;
    right: 2%;
    top: 30px;
}

ul.g_sns li:hover img {
	transform: scale(1.1);
}

ul.g_sns li img {
    height: 20px;
    width: auto;
    transition: all 0.2s ease-in-out 0s;
}

ul.g_sns li {
    margin: 0 7px;
}

a.header_contact {
    display: block;
    padding: 10px 30px;
    border: 0.5px solid #fff;
    color: #fff;
    position: fixed;
    top: 19px;
    right: 3%;
}

a.header_contact:after {
    display: block;
    content: "";
    position: absolute;
    width: 20px;
    height: 0.5px;
    background: #fff;
    top: 50%;
    right: 0;
}

.header_logo {
    position: fixed;
    top: 22px;
    left: 3%;
    z-index: 99999;
    font-size: 3rem;
    font-family: "Libre Caslon Display", serif;
}

.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: 480px) {
	
body {
	min-width: inherit;
}

.pc_disp {
	display: none!important;
}

.sp_disp {
	display: block!important;
}

header {
	min-width: inherit;
	height: 80px;
}
	
ul.g_nav {
    display: none;
}

a.header_contact {
    display: none;
}
	
.header_logo a {
    font-size: 2.4rem;
    line-height: 18px;
}
	
ul.g_sns {
    display: none;
}

ul.g_sns_sp {
    display: flex!important;
    align-items: center;
    justify-content: center!important;
    flex-direction: inherit!important;
    margin-top: 10px;
    flex-direction: inherit!important;
}

ul.g_sns_sp li {
    margin: 0 10px;
}

ul.g_sns_sp li a:after {
    display: none!important;
}
}