@charset "utf-8";
/* common css */

/*---------------------------------
memo
普遍のもの中心
---------------------------------*/

html{
	font-size: 62.5%;
}

body{
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	padding:0;
	margin:0;
	color:#333;
	font-size:1.3rem;
	line-height: 1.5em;
	background-color:#FFF;
}

#wrapper{
	border-top:7px solid #000;
}

img{
	vertical-align: middle;
}

h1,h2,h3,h4,h5,p,div,span{
	padding:0;
	margin:0;
	box-sizing: border-box;
}

ul,ol,li{
	margin:0;
	padding:0;
	list-style-type: none;
	box-sizing: border-box;
}

*:focus {
  outline: none;
}

a{
	color:#000;
	cursor: pointer;
}

a:hover{
}

textarea,input[type="button"],input[type="reset"],input[type="email"],input[type="text"],input[type="submit"],input[type="password"] {/*safariの効果削除*/
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

/*--- clear---------------------*/
.clearfix {zoom:1;}
.clearfix:after {
	content: ""; 
	display: block; 
	clear: both;
}


/*---------------------------------
ヘッダー
---------------------------------*/

#header{
	height:22vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top:20px;
}

#header h1{
	font-size: 4.0rem;
	padding-bottom:10px;
	font-family: 'Questrial', sans-serif;
}


/*---------------------------------
フッター
---------------------------------*/

#footer{
	background-color: rgba(15, 15, 15, 0.9);
	color:#FFF;
	margin-top:100px;
}

#footer .footerInner > div.snsLogo{
	width:26%;
	margin-right:2%;
}

#footer .snsLogo img{
	width: 30px;
	margin-right:5px;
}

#footer .snsLogo h2{
	margin-bottom:10px;
	padding:5px 0;
}

#footer .footerInner{
	width:90%;
	max-width: 1000px;
	margin:0 auto;
	display: flex;
	padding:30px 0;
	justify-content:space-between;
}

#footer .footerInner > div{
	width:30%;
}

#footer .footerInner > div h3{
	border-bottom:1px solid #FFF;
	padding:5px 10px;
	margin-bottom:10px;
}

#footer .footerInner div ul{
	width:100%;
	display: block;
}

#footer .footerInner div li{
	padding:0 10px;
}

#footer a{
	color:#FFF;
}

#footer .copy{
	text-align: center;
	font-size:1.2rem;
	padding:10px 0;
	background-color: #000;
	color:#999;
}

#footer .pagetop{
	background: url(../img/arrow_up.png) center center no-repeat;
	width:80px;
	height:80px;
	background-size:100% 100%;
	display: block;
	color:#FFF;
	text-align: center;
	position: fixed;
	bottom:5px;
	right:15px;
	text-indent: -9999px;
	opacity: 0.7;
}

#footer .pagetop:hover{
	transition: 0.2s;
	opacity: 1;
}



/*---------------------------------
common
---------------------------------*/

main{
	width:90%;
	margin:0 auto;
	max-width: 1000px;
}

section.com{
	display: flex;
	justify-content: space-between;
	padding:20px 0;
	box-sizing: border-box;
	border-bottom:1px solid #EDEDED;
}

section.com h2{
	display: flex;
	width:25%;
	background-color: #FFF;
	color:#999;
	align-items: center;
	justify-content: center;
	padding:10px;
	box-sizing: border-box;
}

section.com h2 img{
	width:90%;
	-webkit-box-reflect: below 3px -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(0.3, transparent), to(rgba(0,0,0,0.5)));
}

section.com .body{
	width:62%;
	min-height: 100px;
}

section.com .body.dummy{
	color:#CCC;
}

section.com a.link{
	width:8%;
	min-width: 70px;
	background: url(/img/arrow_r.png) no-repeat center center;
	background-size:60px 60px;
	text-indent: -9999px;
	overflow: hidden;
	display:block; 
}

section.com .link:hover{
	opacity: 0.5;
	transition: 0.2s;
}

@media screen and (max-width:767px){
	section.com{
		display: block;
		
	}
	
	section.com h2{
		margin-bottom:20px;
	}	
	
	section.com h2,
	section.com .body,
	section.com .link{
		width:100%;
		min-height: 70px;
	}
	
	section.com a.link{
	transform: rotate(90deg);
	width:100%;
	}
	
	section.com h2 img{
	width:90%;
	-webkit-box-reflect:inherit;
}

	
}