@charset "utf-8";
/*==================================================
	【トップ】ページ固有のスタイル
==================================================*/
#top_ttl img {
	width: 100%;
}
#top_news .box {
	border: 5px solid #000;
	background: #FFF;
	max-width: 900px;
	margin: auto;
	font-size: 90%;
}
#top_news .txt,
#top_news .photo {
	width: 49.5%;
}
#top_news p {
	margin-bottom: 0;
}
#top_news .txt .in {
	padding: 30px;
}
#top_news  h3 {
	font-size: 200%;
	margin-bottom: 20px;
	text-align: center;
}
#top_news .txt table {
	margin-bottom: 15px;
}
#top_news .txt table td a {
	text-decoration: underline;
	font-weight: bold;
}
#top_featured {
	padding-bottom: 150px;
}
#top_featured::before {
	height: 495px;
	top: auto;
	bottom: 0;
	background: #d22d27;
	clip-path: polygon(0 25%, 100% 0%, 100% 75%, 0% 100%);
}
#top_featured .grid {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 340px);
}
#top_featured .grid a {
	display: block;
	color: #fff;
}
#top_featured .grid a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#top_featured .grid a .img {
	margin-bottom: 15px;
}
#top_featured .grid a .img img {
	border-radius: 10px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
#top_featured .grid a .date {
	font-size: 12px;
	margin-bottom: 10px;
}
#top_featured .grid a .txt {
	text-decoration: underline;
}
#top_featured .grid a:hover .txt {
	text-decoration: none;
}
#top_featured .list_link {
	margin-top: 20px;
}
#top_featured .list_link a {
	color: #fff;
}
#top_concept::before {
	top: auto;
	bottom: 0;
	height: calc(100% - 155px);
	background: url("../img/top/bg-concept.jpg") no-repeat center /cover;
}
#top_concept .concept_txt dl {
	margin-bottom: 80px;
}
#top_concept .concept_txt dl:last-of-type {
	margin-bottom: 50px;
}
#top_concept .concept_txt dl dt {
	font-size: 39px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
}
#top_concept .concept_txt dl dd {
	line-height: 1.93;
}
#top_concept .grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px 30px;
	counter-reset: number 0;
}
#top_concept .grid .box {
	border: 2px solid #fff;
	width: 250px;
	border-radius: 10px;
	padding: 8px;
	position: relative;
}
#top_concept .grid .box:first-of-type {
	margin-left: 11px;
}
#top_concept .grid .box::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	font-family: var(--font-antonio);
	position: absolute;
	top: -22px;
	left: 10px;
	font-size: 56px;
	line-height: 1;
	font-style: italic;
	color: #999;
}
#top_concept .grid .box .in {
	background: rgba(255,255,255,0.5);
	border-radius: 9px;
	height: 100%;
	padding: 20px 0;
}
#top_concept .grid .box .in .ico {
	width: 135px;
	height: 118px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
#top_concept .grid .box .in .ttl {
	font-size: 39px;
	color: var(--color-gold);
	font-weight: 500;
}
#top_concept .grid .box .in .txt {
	padding: 0 10px;
}
#top_feature::before {
	background: url("../img/top/bg-feature.jpg") no-repeat center /cover;
}
#top_feature h3.sub {
	color: #fff;
}
#top_feature .txt {
	color: #fff;
	line-height: 1.93;
}
#top_feature .thin {
	color: #ccc;
}
/* コンテンツ */
#top_contents:before {
	background: #7ee;
}
#top_menu .grid {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 340px);
}
#top_menu .grid a {
	display: block;
	background: #fff;
	padding-bottom: 25px;
}
#top_menu .grid a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#top_menu .grid a .img {
	margin-bottom: 15px;
	position: relative;
}
#top_menu .grid a:hover .img::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(210, 45, 39, 0.5);
}
#top_menu .grid a h3.sub {
	color: #000;
	text-align: left;
	margin-left: 20px;
	margin-bottom: 0;
}
#top_menu .grid a h3.sub span {
	margin-top: 20px;
}
/* お知らせ */
#top_info {
	
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#top_news .txt,
	#top_news .photo {
		width: 100%;
	}
	#top_news .box {
		border: 2px solid #000;
	}
	#top_news .txt .in {
		padding: 15px;
	}
	#top_news .photo {
		max-width: 300px;
		text-align: center;
		margin-top: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	#top_featured {
		padding-bottom: 80px;
	}
	#top_featured::before {
		clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
		height: 350px;
	}
	#top_featured .grid {
		grid-template-columns: repeat(3, 32%);
	}
	#top_featured .grid a .img {
		margin-bottom: 10px;
	}
	#top_featured .grid a .date {
		margin-bottom: 5px;
	}
	#top_concept::before {
		height: calc(100% - 70px);
	}
	#top_concept .concept_txt dl {
		margin-bottom: 50px;
	}
	#top_concept .concept_txt dl dt {
		font-size: 25px;
		margin-bottom: 15px;
	}
	#top_concept .concept_txt dl dd {
		text-align: left;
	}
	#top_concept .grid {
		gap: 30px 1%;
	}
	#top_concept .grid .box {
		width: 32%;
		padding: 5px;
	}
	#top_concept .grid .box:first-of-type {
		margin-left: 0;
	}
	#top_concept .grid .box::before {
		font-size: 40px;
	}
	#top_concept .grid .box .in {
		padding: 15px 0;
	}
	#top_concept .grid .box .in .ico {
		transform: scale(0.8);
	}
	#top_concept .grid .box .in .ttl {
		font-size: 25px;
	}
	#top_menu .grid {
		grid-template-columns: repeat(3, 32%);
	}
	#top_menu .grid a {
		padding-bottom: 15px;
	}
	#top_menu .grid a .img {
		margin-bottom: 10px;
	}
	#top_menu .grid a h3.sub {
		margin-left: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#top_news h3 {
		font-size: 150%;
	}
	#top_featured {
		padding-bottom: 50px;
	}
	#top_featured::before {
		clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
		height: calc(100% - 90px);
	}
	#top_featured .grid {
		display: block;
	}
	#top_featured .grid a {
		position: relative;
		margin-bottom: 15px;
		display: flex;
		justify-content: space-between;
	}
	#top_featured .grid a .img {
		width: 35%;
		left: 0;
		margin-bottom: 0;
	}
	#top_featured .grid a .info {
		width: calc(100% - 37%);
	}
	#top_featured .grid a .txt {
		font-size: 90%;
	}
	#top_concept::before {
		height: calc(100% - 60px);
	}
	#top_concept .concept_txt dl dt {
		font-size: 20px;
	}
	#top_concept .grid {
		gap: 20px 2%;
	}
	#top_concept .grid .box {
		width: 48%;
	}
	#top_concept .grid .box::before {
		font-size: 35px;
		top: -15px;
	}
	#top_concept .grid .box .in .ttl {
		font-size: 23px;
	}
	#top_concept .concept_txt dl {
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 320px){
	#top_feature .thin {
		font-size: 14px;
	}
}