/*
** buenavista-adios
** comment/css/
**
*/
@-ms-viewport
{
	width: auto;
	initial-scale: 1;
}
@viewport
{
	width: device-width;
}

/* asset
-------------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
*:before,
*:after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
img[src$=".svg"] {
	max-width: 100%;
	width: 100%; /* IE対応 */
	height: auto;
}
/* clearfix
-------------------------------------------*/
.clearfix:before,
.clearfix:after{
	content:".";
	height:0;
	clear:both;
	display: block;
	visibility:hidden;
}
.clearfix {
	display:inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }
/* End hide from IE-mac */


.fade-up {
	/*transition: opacity 0.7s;
	-moz-transition: opacity 0.7s;
	-webkit-transition: opacity 0.7s;
	-o-transition: opacity 0.7s;
	transition: transform 0.7s;
	-moz-transition: transform 0.7s;
	-webkit-transition: transform 0.7s;
	-o-transition: transform 0.7s;*/
	transition: opacity 0.2s;
}

/* #comment
-------------------------------------------*/
#comment {
	/*font-size: 100%;*/
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 27px;
	background: rgba(1,50,29,1.0);
	color: rgba(255,255,255,1.0);
	font-family: YakuHanJP,'Noto Sans Japanese', 'Meiryo', 'メイリオ', Verdana,'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック',sans-serif;
}
#comment .__bg {
	background: rgba(0,0,0,1.0) url(../img/bg-comment.jpg) center top no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	content: "";
}
#comment #wrap {
	padding-top: 90px;
	padding-bottom: 100px;
}

#comment header,
#comment section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
	text-align: center;
}
#comment header {
	margin-bottom: 100px;
}
#comment header h1 {
	max-width: 360px;
	margin: 0 auto 100px;
}

.__comment {
	margin-bottom: 20px;
	width: 800px;
}
.__comment:nth-child(odd) {
	margin-left: auto;
	margin-right: 0;
}
.__comment:nth-child(even) {
	margin-left: 0;
	margin-right: auto;
}
.__comment:last-child {
	margin-bottom: 100px;
}



@media screen and (max-width:640px){
	#comment #wrap {
		padding-bottom: 50px;
	}
	#comment {
		font-size: 16px;
	}d
	#comment .__bg {
		background: rgba(0,0,0,1.0) url(../img/bg-comment.jpg) center top no-repeat;
		background-size: auto 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100vh;
		content: "";
	}
	
	#comment header {
		margin-bottom: 50px;
	}
	#comment header h1 {
		max-width: 80%;
		margin: 0 auto;
	}
	.__comment {
		margin-bottom: 20px;
		width: 95%;
	}
	.__comment:last-child {
		margin-bottom: 50px;
	}

}



.__normal {
	transform: scale(1.0);
}
.__scale {
	animation: sizeScale 0.3s cubic-bezier(0.595, -0.365, 0.420, 1.350) 1;
}
@keyframes sizeScale {
	0% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1.0);
	}
}







