@charset "UTF-8";
@import url(cmn.css);
@import url(base.css);

#lv #bg{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

/*-------------*/

#s1{
	padding: 15vh 30px 0;
	margin: 0 auto 100px;
	max-width: 1800px;
}
#s1 h3{
	font-size: 14rem;
	margin-bottom: 50px;
}
#s1 h3 span{
	color: #f0fa01;
}
#s1 .outer{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}
#s1 article{
	margin-bottom: 80px;
	width: 33.3%;
	padding: 0 4%;
	border-left: 1px solid rgba(255,255,255,0.3);
	position: relative;
}
#s1 article:last-child{
	border-right: 1px solid rgba(255,255,255,0.3);
}
#s1 article:nth-of-type(3n){
	border-right: 1px solid rgba(255,255,255,0.3);
}
#s1 article:nth-of-type(n+4):before{
	content: "";
	display: block;
	width: 80%;
	height: 1px;
	background: rgba(255,255,255,0.3);
	position: absolute;
	top: -41px;
	left: 10%;
}
#s1 article a{
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-direction: column-reverse;
}
#s1 article h4{
	font-size: 2rem;
	line-height: 1.4;
}
#s1 article p{
	font-size: 2rem;
	font-weight: 900;
	color: #f0fa01;
}
#s1 article div{
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 20px;
}
#s1 article img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s;
}
#s1 article a:hover img{
	transform: scale(1.1);
}
@media screen and (max-width: 950px){
	#s1 article{
		margin-bottom: 60px;
		width: 50%;
		padding: 0 3%;
	}
	#s1 article:last-child{
		border-right: 1px solid rgba(255,255,255,0.3);
	}
	#s1 article:nth-of-type(3n){
		border-right: none;
	}
	#s1 article:nth-of-type(2n){
		border-right: 1px solid rgba(255,255,255,0.3);
	}
	#s1 article:nth-of-type(n+3):before{
		content: "";
		display: block;
		width: 90%;
		height: 1px;
		background: rgba(255,255,255,0.3);
		position: absolute;
		top: -31px;
		left: 5%;
	}
}
@media screen and (max-width: 850px){
	#s1{
		padding-left: 20px;
		padding-right: 20px;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 620px){
	#s1{
		padding-top: 20vw;
		margin-bottom: 40px;
	}
	#s1 h3{
		font-size: 20vw;
	}
	#s1 article{
		padding: 0 20px;
	}
	#s1 article h4{
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 455px){
	#s1 article{
		margin-bottom: 60px;
		padding: 0;
		border: none !important;
		width: 100%;
	}
	#s1 article:nth-of-type(n+2):before{
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background: rgba(255,255,255,0.3);
		position: absolute;
		top: -31px;
		left: 0;
	}
}

/*-------------*/

#news_single{
	padding: 15vh 30px 0;
	margin: 0 auto 100px;
	max-width: 1100px;
}
#news_single .outer{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}
#news_single h3{
	line-height: 1.2;
	font-size: 4rem;
	margin-bottom: 40px;
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
#news_single .date{
	color: #f0fa01;
	font-size: 3rem;
	font-weight: bold;
}
#news_single article{
	position: relative;
	text-align: left;
}
#news_single article .img{
	text-align: center;
	margin-bottom: 30px;
}
#news_single article .img:empty{
	margin-bottom: 0;
}
#news_single .article_body{
	padding-bottom: 50px;
	text-align: justify;
}
#news_single .article_body p{
	margin-bottom: 25px;
	word-break: break-all;
}
#news_single .yt{
	margin-bottom: 30px;
}
#news_single .article_body .yt{
	margin-bottom: 25px;
}
.article_body a{
	color: #f0fa01;
	text-decoration: underline;
}
.article_body a:hover{
	opacity: 0.7;
}
.article_body ul{
	display: block;
}
.article_body ul li{
	display: block;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}
.article_body ul li:last-child{
	margin-bottom: 25px;
}
.article_body ul li:before{
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: #f0fa01;
	position: absolute;
	top: 16px;
	left: 0;
}
.article_body ul li ul{
	padding-top: 10px;
}
.article_body blockquote{
	display: block;
	padding: 30px 75px;
	position: relative;
	overflow: hidden;
	background:  rgba(255,255,255,0.15);
	margin-bottom: 25px;
	text-align: justify;
}
.article_body blockquote:before,
.article_body blockquote:after{
	position: absolute;
	top: 10px;
	left: 20px;
	display: block;
	content: "“";
	line-height: 1;
	font-size: 12rem;
	color: #ddd;
}
.article_body blockquote:after{
	content: "”";
	top: auto;
	left: auto;
	bottom: -50px;
	right: 20px;
}
.article_body blockquote p:last-child{
	margin-bottom: 0 !important;
}
.article_body blockquote i{
	font-style: italic;
	opacity: 0.6;
}
.pager{
	position: relative;
	padding-top: 20px;
	width: 100%;
}
.pager ul{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	mix-blend-mode: normal;
	background: #3b15e2;
	text-align: center;
}
.pager li{
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 33.3%;
}
.pager li:first-child{
	justify-content: flex-start;
	text-align: left;
}
.pager li:last-child{
	justify-content: flex-end;
	text-align: right;
}
.pager .btn li a{
	min-width: 0 !important;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold;
	padding: 0 20px;
	font-size: 4rem;
	line-height: 1;
}
.pager .btn li a:hover{
	background:#eff901;
	color: #000;
}
@media screen and (max-width: 850px){
	#news_single{
		padding-left: 20px;
		padding-right: 20px;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 768px){
	#news_single h3{
		font-size: 3rem;
	}
	#news_single .article_body{
		padding-bottom: 30px;
	}
	.pager{
		padding-top: 30px;
	}
}
@media screen and (max-width: 620px){
	#news_single{
		padding-top: 20vw;
		margin-bottom: 40px;
	}
	.pager .btn li a{
		padding: 0 5px;
	}
}
@media screen and (max-width: 480px){
	#news_single h3{
		font-size: 2.2rem;
		margin-bottom: 25px;
	}
	.article_body blockquote{
		padding: 30px 30px;
	}
	.article_body blockquote:before,
	.article_body blockquote:after{
		top: 10px;
		left: 10px;
		font-size: 8rem;
	}
	.article_body blockquote:after{
		top: auto;
		left: auto;
		bottom: -20px;
		right: 10px;
	}
	.pager .btn li a{
		padding: 15px 5px;
		font-size: 2.5rem;
	}
}

.store{
  margin-bottom: 25px;
  word-break: break-all;
}
.store ol{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 10px;
}
.store ol li{
	display: block;
	margin: 0 0 5px 10px;
}
.store ol li img{
	display: block;
	width: auto;
	height: 35px;
}
@media screen and (max-width: 480px){
	.store ol li img{
		height: 30px;
	}
}