﻿@charset "UTF-8";
/* CSS Document */
#TopVisual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
	width: 100%;
	overflow: hidden;
	position: relative;
    z-index: 0;
}
.Slide{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vw * ( 600 / 1000));
    max-height: 600px;
	position: relative;
    list-style: none;
    margin: 0 !important;
    z-index: 1;
}
.Slide li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vw * ( 600 / 1000));
    max-height: 600px;
	position: relative;
}
.Slide li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.Slide li:nth-of-type(1) a{
    background-image: url("../images/top/slide_bg_01.jpg");
}
.Slide li:nth-of-type(2) a{
    background-image: url("../images/top/slide_bg_02.jpg");
}
.Slide li:nth-of-type(3) a{
    background-image: url("../images/top/slide_bg_03.jpg");
}
.Slide li:nth-of-type(4) a{
    background-image: url("../images/top/slide_bg_04.jpg");
}
.Slide li:nth-of-type(5) a{
    background-image: url("../images/top/slide_bg_05.jpg");
}
.Slide li a .Copy{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 950px;
    height: 100%;
    margin: 0 auto;
}
.Slide li a .Copy img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.Slide li a .LinkBtn{
    font-size: 120%;
    line-height: 125%;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    position: absolute;
    bottom:2em;
    left:50%;
    transform: translateX(-50%);
}
.Slide li a .LinkBtn span{
    padding: 0.25em 0.5em 0.25em 1.75em;
    background: url("../images/global/icn_arrow_10_r_w.png") no-repeat left 0.25em center;
    background-color: rgba(0,0,0,0.5);
    background-size: 1em;
    margin-right: 1em;
}
.dots {
    width: 90vw;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.Pager {
    display: flex;
    width: 100%;
    justify-content: center;
    gap:1em;
    list-style: none;
    margin: 0.5em auto 0;
    padding: 0;
    position: relative;
}
.Pager li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.Pager li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10px;
    cursor: pointer;
    position: relative;
    background: #eeeeee;
}
.Pager li:not(.slick-active):hover{
    background-color: #cccccc;
}
.Pager li.slick-active::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #047149;
	animation: progress 7s linear 0s forwards; 
    z-index: 1;
}
@keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
.SliderArrows{
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
}
.SlideArrow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    opacity: 0.5;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: auto;
    cursor: pointer;
}
.SlideArrow:hover{
    opacity: 1;
}
.SlideArrow.PrevArrow{
    background-image: url("../images/top/slide_prev.png");
}
.SlideArrow.NextArrow{
    background-image: url("../images/top/slide_next.png");
}
#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) {
	#InfoArea {
		font-size: 80%;
	}
	@media screen and (max-aspect-ratio: 11/10) {
		/* 縦向きの場合のスタイル */
        .Slide{
            width: 100%;
            height: auto;
            max-height: auto;
            aspect-ratio: 1/1.2 !important;
        }
        .Slide li{
            height: 100%;
            max-height: 100%;
            aspect-ratio: 1/1.2 !important;
        }
        .Slide li:nth-of-type(3) a{
            background-image: url("../images/top/slide_bg_03_SP.jpg");
        }
        .Slide li:nth-of-type(4) a{
            background-image: url("../images/top/slide_bg_04_SP.jpg");
        }
        .Slide li a .Copy{
            width: 100%;
        }
        .Slide li a .Copy img{
            object-position: center 30%;
        }
        .Slide li a .LinkBtn{
            font-size: 100%;
            line-height: 125%;
        }
        .Pager li {
            height: 1.5vmin;
        }
		#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");
		}
	}
}