@charset "UTF-8";

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

a {
    transition: all 0.2s ease-in-out 0s;	
}

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 {
	min-width: 1100px;
	margin: 0 auto;
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    top: 0;
    align-items: center;
    left: 0;
    z-index: 9999;
    padding: 30px;
}

h1.header_logo {
    width: 130px;
}

ul.header_menu {
    display: flex;
    justify-content: center;
}

ul.header_menu li a {
    display: block;
    color: #000;
    text-align: center;
    padding: 0 20px;
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

ul.header_menu li a span {
    display: block;
    font-size: 1.4rem;
    margin-top: 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

ul.sns_float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    padding: 15px 24px;
    z-index: 9999;
    background: #80c9c3;
    border-radius: 100px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

ul.sns_float li {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

ul.sns_float li a img {
    width: 35px;
    height: auto;
}

@media screen and (max-width: 480px) {
	
header {
    min-width: inherit!important;
    width: 100%;
    padding: 15px 5%;
}

ul.header_menu {
    display: none;
}

h1.header_logo {
    width: 120px;
    margin: 0 auto;
}

body {
    min-width: inherit!important;
}
	
ul.sns_float {
    width: 68%;
    left: 16%;
    justify-content: center;
    bottom: 2%;
    padding: 10px 20px;
}

ul.sns_float li a img {
    width: 25px;
}
}