@charset "utf-8";

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

.inner_wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

p,li {
	line-height: 1.8;
    letter-spacing: 0.8px;
    word-break: break-all;
	color: rgb(51, 51, 51);
}

/*--------------------------------
 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 - web ver.
---------------------------------*/
@keyframes hello_fadeinLR {
	0% {opacity: 0; transform: translateX(-100px)}
	50% {opacity: 1;}
	100% {opacity: 0.2; transform: translateX(0px)}
}

.helloL,.helloR {
	font-family: 'Montserrat', sans-serif;
}

.helloL {
	font-size: 240px;
	font-weight: bold;
	color: #222;
	position: fixed;
	top: 80px;
	left: -100px;
	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: #222;
	position: fixed;
	bottom: 10px;
	right: -100px;
	z-index: -1;
	
	opacity: 0;
	animation-name: hello_fadeinLR;
	animation-duration: 3s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards; 
	animation-timing-function: ease;
}


/*--------------------------------
 article
---------------------------------*/

#mockup {
	/* background: radial-gradient(#fff, skyblue) no-repeat; */
	background-color: #FFD751;
	/* background: radial-gradient(#fff, #FFD751) no-repeat; */
	
	padding-top: 120px;
	padding-bottom: 6%;
	text-align: center;
}

#mockup img {
	max-width:600px;
	width: 70%;
}

section {
	background-color: #fff;
}

#info {
	box-sizing: border-box;
	padding: 0 4%;
	text-align: center;
}

h1 {
	padding: 5% 0;
	font-size: 120%;
	font-weight:600;
	opacity: .8;
}

#detail {
	margin-bottom: 2%;
}

#detail p.align_left {
	text-align: left;
}

#btn a {
	display: inline-block;
	text-align: center;
	width: 150px;
	padding: 12px;
	margin-bottom: 3%;
    border-radius: 5px;
    background: #0bd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	text-decoration: none;
	color: #fff;
	
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; 
}


#btn a:hover {
	background: #008BA4;
}



/* a {
    color: #353535;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; 
}*/

#list {
	border-top: 1px dotted #999;
	padding: 3% 0 7%;
	display: flex;
	text-align: left;
}

#list_left,
#list_right {
	width: 50%;
}

#list ul li {
	display: inline-block;
	text-align: left;
	margin-bottom: 2%;
	font-size: 95%;
}

#list ul li:first-child {
	background-color: #999;
	color: #fff;
	width: 100px;
	border-radius: 3px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	padding: 4px;
	margin-right: 1%;
}

/*--------------------------------
 footer
---------------------------------*/
footer {
    background-color: #1A1A1A;
}

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

/*--------------------------------
 pageTop
---------------------------------*/

#pageTop {
	position: fixed;
	bottom: 110px;
	right: 20px;
	font-size: 60%;
}

#pageTop a {
	text-decoration: none;
	color: #000;
	text-align: center;
	display: inline-block;
}

#pageTop img {
	width: 90%;	
}


#pageTop a:hover {
	color: #666;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	.logo {
		position: fixed;
		top: 14px;
		left: 12px;
		z-index: 1000;
	}
	
	.logo img {
		width: 38%;
	}
	
	.helloR {
		display: none;
	}

/* #gnav responsive
---------------------------------*/
	#gnav ul li {
		font-size: 95%;
		/*font-weight: bold;*/
		padding: 0 1.5%;
	}


/* #detail responsive
---------------------------------*/
	#detail {
		font-size: 95%;
	}
	
/* #list responsive
---------------------------------*/
	#list {
		display: block;
	}

	#list_left,
	#list_right {
		width:100%;
	}
	
	#list ul li {
		font-size: 90%;
	}
	.align_left_res {
		text-align: left;
	}

	

}