@charset "utf-8";


/********************  共通  ********************/

html,body {
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
	scroll-padding-top: 80px;
}

h1{
	margin-top: 5px;
	font-size: 1.2rem;
	font-family: 'Quicksand', sans-serif;
}

h2{
	font-size: 2rem;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
}

img {
	vertical-align: bottom;
}

a {
	color: #3d3f43;
	text-decoration: none;
}

.shadow {
	box-shadow: 0 4px 12px 4px rgb(0 0 0 / 4%);
}

.pc {
	display: none;
}


/********************  header  ********************/

#header{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 15px;
	background: #fff;
	color: #3d3f43;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

#header img {
	margin-right: 15px;
}


/***************  nav  ***************/

#g-nav {
    position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
    height: 100vh;
	background: #999;
	transition: all 0.3s;
}

#g-nav.panelactive{
	opacity: 1;
	z-index: 999;
}

#g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}


/***************  nav list  ***************/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 18px;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
}

#g-nav li a:hover {
	color: #fff;
}


/***************  btn  ***************/

.openbtn1{
	position: fixed;
    z-index: 9999;
	top: 8px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height: 50px;
}

.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #333;
  	width: 45%;
}

.openbtn1 span:nth-of-type(1) {
	top: 15px;	
}

.openbtn1 span:nth-of-type(2) {
	top: 23px;
}

.openbtn1 span:nth-of-type(3) {
	top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/********************  footer  ********************/

small{
	color: #fff;
	display: block;
	text-align: center;
	font-size: 1rem;
	font-family: 'Quicksand', sans-serif;
}

#footer{
	background:#666;
	padding: 20px;
}



/********************  animetion  ********************/

.fadeInUp {
	opacity: 0;
}

.fadeInLeft  {
	opacity: 0;
}

.zoomIn {
	opacity: 1;
}

.slideInUp {
	opacity: 1;
}



/***************  marker-animation  ***************/

.marker-animation.active{
    background-position: -100% .5em;
}
 
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(211,211,211) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%,  rgb(211,211,211) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%,  rgb(211,211,211) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(211,211,211) 50%);
    background-image: linear-gradient(left, transparent 50%,  rgb (211,211,211) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}



/******************** 600px～  ********************/

@media screen and (min-width:600px) {
	
	body {
		font-size: 16px;
	}
	
	/* #header {
		background: blue;
	} */
}



/******************** 1025px～  ********************/

@media screen and (min-width: 1025px) {
	
  	.pc {
		display:block;
	}
  
	.sm {
		display: none;
	}
}