@charset "UTF-8";

/*--------------------------------------------------------------------
index.html	(トップページ)
top.css
--------------------------------------------------------------------*/

/*------------#title---------------------------------------------------------------*/
#title {
	height: 700px;
	margin-bottom: 0;
	background: inherit !important;
}
#title::after { display: none; }
#title h2 { font-size: 2.8em; }
#title div.Anima {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	z-index: 0;
}
#title div#Anima01 { background-image: url("../img/mv_p01.jpg"); }
#title div#Anima02 { background-image: url("../img/mv_p02.jpg"); }
#title div#Anima03 { background-image: url("../img/mv_p03.jpg"); }
#title div#Anima04 { background-image: url("../img/mv_p04.jpg"); }
#title div#Anima05 { background-image: url("../img/mv_p05.jpg"); }

@media (max-width: 840px) {
}

@media (max-width: 480px) {
	#title { height: 60vh; }
}

@media (max-width: 420px) {
}


/*------------article-------------------------*/
article { padding-bottom: 0; }
main article:not(:last-of-type) { margin-bottom: 0; }
article::after { display: none; }


/*------------TopTxt-------------------------*/
#TopTxt {
	width: 100%;
	max-width: inherit;
	margin-top: 40px;
	font: bold 1em / 1 var(--mincho);
	font-feature-settings: "palt" 1;
}
#TopTxt h2 {
	width: 100%;
	padding: 0 0.5em;
	font-size: 2.2em;
	text-align: center;
	font-weight: bold;
	color: var(--co-green);
}
#TopTxt p {
	margin: 20px auto 0;
	padding: 0 1em;
	text-align: center;
	line-height: 1.6;
	font-weight: bold;
}


/*------------content-------------------------*/
#content {
	position: relative;
	width: 100%;
	max-width: inherit;
	margin: 50px auto 0;
	overflow: hidden;
}
#content h3 {
	margin-bottom: 20px;
	padding-bottom: 0;
	text-align: center;
	font: bold 2.2em / 1 var(--mincho);
}
#content h3::before { display: none; }
#content ul li:not(:first-of-type) { margin-top: 35px; }
#content ul li {
	position: relative;
	width: 92%;
}
#content ul li:nth-of-type(1) { margin-left: 0; }
#content ul li:nth-of-type(2) { margin-left: auto; }
#content ul li a { position: relative; }
#content ul li .conPho { position: relative; }
#content ul li:nth-of-type(1) a { clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%); }
#content ul li:nth-of-type(2) a { clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%); }
#content ul li .conPho::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(42,43,43,0.60);
	mix-blend-mode: multiply;
	top: 0;
	left: 0;
	z-index: 1;
}
#content ul li img {
	width: 100%;
	height: 350px;
}
#content ul li dl {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 43%;
	max-width: 550px;
	height: 75%;
	max-height: 260px;
	top: 50%;
	left: 50%;
	transform: var(--transformXY);
	z-index: 5;
	text-align: center;
	font: bold 1em / 1 var(--mincho);
	color: var(--co-white);
}
#content ul li:nth-of-type(1) dl {
	background-color: rgba(0,102,43,0.80);
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
#content ul li:nth-of-type(2) dl {
	background-color: rgba(255,89,0,0.80);
	clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}
#content dl dt {
	font-size: 1.9em;
	font-weight: bold;
}
#content dl dd {
	position: relative;
	padding-bottom: 60px;
	font-size: 1.125em;
}
#content dl dd span {
	position: absolute;
	display: inline-block;
	width: 34px;
	height: 34px;
	background-color: var(--co-white);
	border-radius: 50%;
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
}
#content dl dd span::before {
	position: absolute;
	content: "";
	display: block;
	width: 13px;
	height: 15px;
	background-color: var(--co-green);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	left: 50%;
	transform: var(--transformXY);
	transition: 0.5s;
}
#content ul li:nth-of-type(2) dl dd span::before { background-color: var(--co-orange); }

@media (max-width: 960px) {}
@media (max-width: 480px) {
	#content ul li img { height: 250px; }
	#content ul li dl { width: 60%; }
}


/*------------info------------------------*/
#news {
	position: relative;
	width: 100%;
	margin: 115px auto 0;
	background-color: var(--co-brown);
}
#news section {
	display: flex;
	gap: 10px 50px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 35px 40px;
}
#news h2 {
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
	font: bold 1.9em / 1 var(--mincho);
	color: var(--co-white);
}
#news div {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding-left: 50px;
	border-left: 4px solid var(--co-white);
}
#news iframe {
	display: block;
	width: 100%;
	height: 210px;
	border: none;
	background-color: transparent;
}
@media (max-width: 960px) {}
@media (max-width: 770px) {
	#news section { flex-direction: column; }
}
@media (max-width: 480px) {}