@charset "UTF-8";

/* RESET */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}
a:active, a:focus,input:active, input:focus{outline:0;}


/* GLOBAL */
body{
	background: #000;
	color: #fff;
	font-family: "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", YuGothic, メイリオ, meiryo, Verdana, Helvetica, -apple-system, sans-serif;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2.1;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
}

#wrap{
	margin: 0 auto;
}


/* GENERAL */
p{
	margin-bottom: 1em;
	text-align: left;
}
img{
	max-width: 100%;
	height: auto;
}

/* LINKS */
a{
	color: #fff;
	text-decoration: none;
}
a.linkLine{
	position: relative;
	padding-left: 0.5em;
	padding-right: 0.5em;
}
a.linkLine::before{
	content: "";
	display: block;
	width: 100%;
	height: 0.5em;
	position: absolute;
	top: 60%;
	left: 0;
	background: #CEFF00;
	opacity: 0.5;
	z-index: -1;
	transition: 0.3s;
}
a.linkLine:hover::before{
	left: 10px;
	opacity: 0.8;
}
a.linkArrow{
	display: inline-block;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 2.2em;
	background: url("img/linkArrow.svg") no-repeat scroll 0.5em 50% / 1em auto;
	line-height: 1;
}

/* COMMON */
.sections{
	position: relative;
	margin: 0;
}
.cWidth{
	width: 640px;
	max-width: 90%;
	margin: 0 auto;
}




/* ------ CONTACT ------ */
#contact{
	position: relative;
}
#contact::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	opacity: 0.75;
	z-index: 0;
}

#contact .cWidth{
	position: relative;
	z-index: 1;
}


h2{
	margin-bottom: 1em;
	padding: 0;
	text-align: center;
}
h2 span::after{
	content: ":";
}
form{
	display: flex;
	flex-direction: column;
}
input, textarea{
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 1em;
	padding: 0.25em 0.5em;
	border: none;
	background: rgba(255,255,255,0.9);
	color: #000;
	font-family: "Noto Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", YuGothic, メイリオ, meiryo, Verdana, Helvetica, -apple-system, sans-serif;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	line-height: 2;
}
textarea{
	height: 10em;
}
input::placeholder, textarea::placeholder{
	color: rgba(0,0,0,0.3);
}


#submitBtn{
	width: 8em;
	margin: 1.5em auto 0 auto;
	padding: 0.5em;
	background: rgba(255,255,255,0.1);
	border: solid 1px #fff;
	color: #fff;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: 0.3s ease;
}
#submitBtn:hover{
	background: rgba(255,255,255,1);
	color: #000;
}



a#backtoHP{
	position: absolute;
	bottom: 2.5em;
	left: 50%;
	font-size: 12px;
	transform: translateX(-50%);
	z-index: 5;
}
a#backtoHP::before{
	transform: rotate(-135deg) translate(25%,50%);
}

#footer{
	position: relative;
	padding: 2em 0;
	z-index: 1;
}




@media only screen and (max-width: 960px){
	/* ------ CONTACT ------ */
	#contact{
		height: auto;
		min-height: 100vh;
		align-items: center;
		background: url("./img/img05.jpg") no-repeat scroll 50% 50% / auto 100%;
	}
	#contact .cWidth{
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3em 0 6em 0;
		background: none;
	}
	#contact h2{
		padding: 0 0 1em 0;
		font-size: 3.6vw;
		line-height: 1.5;
	}
	#contact h2 span{
		display: block;
	}
	#contact h2 span::after{
		content: "";
	}
	
	textarea{
		height: 24vh;
	}
	
	#submitBtn{
		margin: 0.5em auto 0 auto;
	}
	
	#contact a{
		white-space: nowrap;
	}
}














