﻿@charset "UTF-8";
/* CSS Document */
#TopVisual {
	width: 100%;
	height: 80vh;
	/*min-height: 50vw;*/
	overflow: hidden;
	position: relative;
    /*251222追記*/
    z-index: 0;
}
.slide {
	display: block;
	z-index: 10;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 32s 0s infinite;
	animation: anime 32s 0s infinite;
}
.slide:nth-of-type(1) {
	background-image: url("../images/top/slide01.jpg");
}
.slide:nth-of-type(2) {
	background-image: url("../images/top/slide02.jpg");
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}
.slide:nth-of-type(3) {
	background-image: url("../images/top/slide03.jpg");
	-webkit-animation-delay: 16s;
	animation-delay: 16s;
}
.slide:nth-of-type(4) {
	/*240227修正*/
	/*background-image: url("../images/top/slide04.jpg");*/
	background-image: url("../images/top/slide04_r2.jpg");
	-webkit-animation-delay: 24s;
	animation-delay: 24s;
}
.SlideText {
	display: block;
	z-index: 100;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1000px;
	height: 75vw;
	max-height: 500px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-indent: -999em;
}
.SlideText.Copy01 {
	background-image: url("../images/top/slide_copy01.png");
}
.SlideText.Copy02 {
	/*240227修正*/
	/*background-image: url("../images/top/slide_copy02.png");*/
	background-image: url("../images/top/slide_copy02_r2.png");
}
/* ふわっとアニメーション */
@keyframes anime {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	30% {
		opacity: 1;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes anime {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	30% {
		opacity: 1;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
#InfoArea {
	width: 95%;
	margin: 0 auto 1em;
}
#InfoTbl {
	width: 100%;
	border-top: solid 1px #cccccc;
	margin-bottom: 1em;
}
#InfoTbl tr {
	border-bottom: solid 1px #cccccc;
}
#InfoTbl td {
	vertical-align: middle;
	padding: 0.5em 1em;
	line-height: 120%;
}
#InfoTbl td.Date {
	text-align: center;
	white-space: nowrap;
}
#InfoTbl td.Category {
	text-align: center;
	padding: 0.5em;
	width: 120px;
}
#InfoTbl td.Category img {
	height: 25px;
	width: 100px;
}
#InfoTbl td a {
	color: #4d4d4d;
	text-decoration: none;
}
#InfoTbl td a .PDFLink {
	position: relative;
	padding-left: 30px;
	display: inline-block;
}
#InfoTbl td a .PDFLink::before {
	content: '';
	display: block;
	position: absolute;
	left: 5px;
	width: 20px;
	height: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/global/icn_pdf.png") no-repeat center center;
	background-size: contain;
}
#BannerArea {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#BannerArea a {
	margin: 0 1.5em;
}
#BannerArea img {
	height: 75px;
	width: auto;
}

/*タブレット*/
@media screen and (min-width:768px) and (max-width:999px) {}
/*スマホ*/
@media screen and (max-width: 767px) {
	#TopVisual {
		height: 75vh;
		min-height: 75vh;
	}
	.SlideText {
		height: 75vh;
		max-height: 500px;
	}
	#InfoArea {
		font-size: 80%;
	}
	@media screen and (max-aspect-ratio: 11/10) {
		/* 縦向きの場合のスタイル */
		#TopVisual {
			height: 60vh;
		}
		#InfoTbl td {
			display: block;
			width: 100%;
			padding: 5px;
			line-height: 150%;
		}
		#InfoTbl td.Date {
			text-align: left;
		}
		#InfoTbl td.Category {
			text-align: left;
			/*display: inline-block;
			width: 10em;*/
		}
		#BannerArea a {
			margin: 0 1vw
		}
		#BannerArea img {
			height: auto;
			width: 40vw;
		}
		/*240227追記*/
		#CategoryBtn ul li:nth-of-type(7) a {
			background-image: none;
		}
		#CategoryBtn ul li:nth-of-type(7) a::after {
			background-image: url("../images/global/category08.png");
		}
	}
}