@charset "utf-8";

html, body {
	background: radial-gradient(#fff, skyblue) no-repeat;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	
}

#wrapper {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

/*--------------------------------
 header
---------------------------------*/
/********** Arlee logo **********/
.logo {
	position: fixed;
	top: 10px;
	left: 30px;
	z-index: 1000;
}

.logo img {
	width: 45%;
	height: 45%;
}

.logo:hover {
	 animation: poyooon .9s linear 1 forwards;
}

@keyframes poyooon {
      0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
      10%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
      40%  { transform: scale(1.15, 0.8) translate(0%, 10%); }
      50%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
      60%  { transform: scale(0.9, 1.1) translate(0%, -25%); }
      75%  { transform: scale(0.9, 1.0) translate(0%, -20%); }
      85%  { transform: scale(1.2, 0.8) translate(0%, 10%); }
      100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/*--------------------------------
 gnav
---------------------------------*/
#gnav {
	width: 100%;
	height: 70px;
	line-height: 70px;
	box-sizing: border-box;
	
	background-color: rgba(255,255,255,0.8);
	-webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
	
	position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
}

#gnav ul {
	text-align: center;
	box-sizing: border-box;
}

#gnav ul li {
	font-family: 'Quicksand', sans-serif;
	display: inline-block;
	padding: 0 10px;
	font-size: 95%;
	box-sizing: border-box;
}

#gnav ul li a {
	text-decoration: none;
	color: #000;
	position: relative;
}

#gnav ul li a:after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: "";
	height: 3px;
	width: 100%; /* 文字の幅全体 */
	background-color: #444444;
	transform: scale(0); /* 最初は出ていない*/
	transform-origin: center top; /* 真ん中からトップへ */
	transition: 0.3s;
}

#gnav ul li a:hover::after {
	transform: scale(1);
}

/********** hello slider - contact ver. **********/
@keyframes hello_fadeinLR {
	0% {opacity: 0; transform: translateX(-100px)}
	50% {opacity: 1;}
	100% {opacity: 0.4; transform: translateX(0px)}
}

.helloL {
	font-size: 240px;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-weight: bold;
	color: white;
	position: fixed;
	top: 80px;
	left: -50px;
	z-index: -1;
	
	
	opacity: 0;
	animation-name: hello_fadeinLR;
	animation-duration: 3s;
	animation-fill-mode: forwards; 
	animation-timing-function: ease;
}

.helloR {
	font-size: 240px;
	font-weight: bold;
	color: white;
	position: fixed;
	bottom: 0px;
	right: -100px;
	
	opacity: 0;
	animation-name: hello_fadeinLR;
	animation-duration: 3s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards; 
	animation-timing-function: ease;
}


/***** google form *****/
iframe {
	margin-top: 80px;
	width: 100%;
	height: 1050px;
	z-index: 1000;
}

/*--------------------------------
 footer
---------------------------------*/
footer small p {
	font-family: 'Quicksand', sans-serif;
	text-align: center;
    color: #000;
	font-size: 70%;
	padding: 40px 0;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	.logo {
		position: fixed;
		top: 14px;
		left: 12px;
		z-index: 1000;
	}
	
	.logo img {
		width: 38%;
	}
	
	/********** gnav **********/	
	#gnav ul li {
		font-size: 95%;
		/*font-weight: bold;*/
		padding: 0 1.5%;
	}
}/*** media Queries 767 end ***/

/*media Queries 375 for small phones
----------------------------------------------------*/
@media screen and (max-width: 375px) {
	
	.logo {
		position: fixed;
		top: 17px;
		left: 12px;
		z-index: 1000;
	}
	
	.logo img {
		width: 26%;
	}
	
		#gnav ul li {
		font-size: 80%;
		padding: 0 1.5%;
	}
	
	.align_center {
		font-size: 85%;
	}
}
