@charset "UTF-8";

.l-main {
  background:none;
}

.sns{
	display:none;
}

#bg{
	width:100%;
	height:100vh;
	position:fixed;
	z-index:1;
	background: url(../img/dot_sp.png) no-repeat center bottom #000;
	background-size:100% auto;
}

.l-wrap{
	background: url(../img/comment_bg_sp.jpg) no-repeat center top;
	background-size:100% auto;
	z-index:10;
}

ul,
li {
  list-style: none;
}

#comment_logo{
	width:330rem;
	position:relative;
	left:auto;
	top:auto;
	margin:0 auto;
	padding-top:320rem;
}

.l-cont{
	width:100%;
	padding-top:70rem;
}

#comment_title{
	width:160rem;
	position:relative;
	margin:0 auto;
}

#comment_lead{
	font-size:40rem;
	font-weight:600;
	text-align:center;
	margin-top:25rem;
}

#comment_lead span{
	font-size:36rem;
}

#caution{
	font-size:15rem;
	text-align:center;
	margin:10rem 0 60rem;
}

#comment_block ul li {
	width: 100%;
	left: auto;
	top: auto;
	position: static;
	margin-bottom:80rem;
}

#comment_block ul li p{
	width:86%;
	margin:20rem auto 0;
	color: #fff;
	font-size:26rem;
	box-sizing: border-box;
	border-top:1px solid #666666;
	padding-top:20rem;
}

#comment_block ul li .name{
	width:86%;
	margin:0 auto;
	color: #bcc0b2;
	font-size:40rem;
}

#comment_block ul li span{
	display:block;
	width:86%;
	margin:0 auto;
	color: #e50012;
	font-size:28rem;
}

/* PC */
@media screen and (min-width: 769px) {
	.sns{
	  display: flex;
	}

	#bg{
		width:100%;
		height:100vh;
		position:fixed;
		z-index:1;
		background: url(../img/dot_pc.png) no-repeat center bottom #000;
		background-size:100% auto;
	}

	.l-wrap{
		background: url(../img/comment_bg_pc.jpg) no-repeat center top;
		background-size:100% auto;
		z-index:10;
	}

	#comment_logo{
		width:250px;
		position:absolute;
		left:40px;
		top:90px;
		padding-top:0;
	}

	.l-cont{
		width:960px;
		padding-top:320px;
	}

	#comment_title{
		width:160px;
		position:relative;
		margin:0 auto;
	}

	#comment_lead{
		font-size:40px;
		font-weight:600;
		text-align:center;
		margin-top:25px;
	}

	#comment_lead span{
		font-size:36px;
	}

	#caution{
		font-size:12px;
		text-align:center;
		margin:5px 0 0;
	}

	#comment_block ul{
    width: 100%;
    max-width: 960px;
    margin: 60px auto 0;
    list-style: none;
    padding: 0;
    position: relative;
    }

	#comment_block ul li {
    width: calc((100% - 60px) / 2);
    margin-bottom: 60px;
  }

	#comment_block ul li p{
    width: 100%;
    color: #fff;
    font-size:16px;
    box-sizing: border-box;
		border-top:1px solid #666666;
		padding-top:20px;
		margin-top:20px;
  }

	#comment_block ul li .name{
    width: 100%;
    color: #bcc0b2;
    font-size:28px;
  }

	#comment_block ul li span{
		display:block;
    width: 100%;
    color: #e50012;
    font-size:18px;
  }

}


/* --------------------------------------------------
animation
-------------------------------------------------- */

#comment_logo,
#comment_title,
#comment_lead,
#caution,
#comment_block{
	opacity: 0;
}

.is_loaded #comment_logo{
  animation: fadeIn 1.0s cubic-bezier(.17,.62,.17,.92) 0.6s forwards;
}

.is_loaded #comment_title{
  animation: fadeInUp 1.0s cubic-bezier(.17,.62,.17,.92) 1.0s forwards;
}

.is_loaded #comment_lead,
.is_loaded #caution{
  animation: fadeInUp 1.0s cubic-bezier(.17,.62,.17,.92) 1.2s forwards;
}

.is_loaded #comment_block{
  animation: fadeInUp 1.0s cubic-bezier(.05,.72,.29,1) 1.6s forwards;
}



