@charset "utf-8";

/*----------コンテンツ---------*/

#contents {
	min-height: 700px;
}
	@media screen and (max-width: 619px){
		#contents {
			min-height: auto;
		}
	}
	
/*----------ロゴ----------*/

h1 img {
	width: 200px;
}
	@media screen and (max-width: 619px){
		h1 img {
			width: 25%;
		}
	}

/*----------ページタイトル---------*/

h2.pagettl {
	margin-bottom: 35px;
	text-align: center;
}
h2.pagettl img {
	width: 350px;
}
	@media screen and (max-width: 619px){
		h2.pagettl {
			margin-bottom: 20px;
		}
		h2.pagettl img {
			width: 50%;
		}
	}

/*----------記事ボックス----------*/

.entry {
	margin: 0 40px 40px;
	padding: 0 40px 30px;
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
	overflow-wrap: break-word;
}
.entry .ttlbox {
	margin: 0 -40px 30px;
	padding: 10px 15px 15px;
	text-align: center;
	background: url("../images/ttl_bg.png") repeat center top / 490px;
	border-radius: 30px 30px 0 0;
}
.entry .ttlbox h3 {
	font-size: 24px;
	font-weight: 900;
	color: #afff53;
	font-feature-settings: "palt";
	line-height: 1.5;
}
.entry .date {
	display: table;
	margin: 0 auto 8px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	border-bottom: 4px solid #fff;
}
.entry .newsimg {
	width: 500px;
}
.entry .newsimg img {
	width: 100%;
}
.entry .newsimg.center {
	margin: 0 auto;
}
.entry .newsimg.artist {
	margin-top: 0.5em;
}
.entry .news_ttl {
	margin-bottom: 0.5em;
	padding: 0 0 2px 10px;
	font-weight: 900;
	font-size: 120%;
	color: #fff;
	background: #000;
}
.entry .news_sttl {
	font-weight: 700;
	font-size: 120%;
	color: #1d1dff;
}
	@media screen and (max-width: 619px){
		.entry {
			margin: 0 15px 20px;
			padding: 0 15px 12px;
			border-radius: 15px;
			box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
		}
		.entry .ttlbox {
			margin: 0 -15px 12px;
			padding: 8px 15px;
			border-radius: 15px 15px 0 0;
		}
		.entry .ttlbox h3 {
			font-size: 18px;
		}
		.entry .date {
			border-bottom: 3px solid #fff;
		}
		.entry .newsimg {
			width: 100%;
		}
	}

/*----------ボタン----------*/

.btn {
	width: 350px;
	margin: 50px auto 40px;
}
.btn img {
	width: 100%;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15)) drop-shadow(-2px 2px 4px rgba(0, 0, 0, 0.15)) drop-shadow(2px -2px 4px rgba(0, 0, 0, 0.15)) drop-shadow(-2px -2px 4px rgba(0, 0, 0, 0.15));
}
	@media screen and (max-width: 619px){
		.btn {
			width: 60%;
			margin: 30px auto;
		}
		.btn img {
			filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(-1px 1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(1px -1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.15));
		}
	}


