@charset "UTF-8";

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

a.float_btn {
	display: none;	
}

a {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

a:hover {
	opacity: 0.5;
}

.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_logo {
    font-family: "Sonsie One", system-ui;
    font-size: 1.5rem;
    line-height: 16px;
}

header {
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    padding: 30px 30px 100px;
    align-items: center;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.header_logo a {
    color: #000;
}

ul.g_nav {
    display: flex;
    justify-content: end;
    width: 100%;
    right: 20px;
    position: absolute;
}

ul.g_nav li a {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
}

ul.g_nav li:first-child a {
    padding: 8px 20px 9px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    color: rgba(108, 215, 182, 1);
    background: #000;
    border-radius: 44px;
    box-shadow: 6px 6px 10px rgba(0,0,0,0.1);
}

ul.g_nav li {
    margin: 0 12px;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
body {
    min-width: inherit;
    width: 100%;
}

ul.g_nav {
    display: none;
}

header {
    padding: 15px;
}
	
.header_logo a {
    color: #000;
    font-size: 1.5rem;
    line-height: 16px;
}
	
a.float_btn {
	display: block;
    position: fixed;
    z-index: 9999;
    bottom: 1%;
    width: 96%;
    text-align: center;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 14px 0;
    left: 2%;
}
}