@charset "UTF-8";

/*--------------------------------------------------------------------
index.html	(トップページ)
top.css
--------------------------------------------------------------------*/

/*------------#title---------------------------------------------------------------*/
#title {
	height: 700px;
	margin-bottom: 0;
	background: var(--co-black);
	clip-path: none;
}
#title .mv {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	z-index: 0;

}
#title #mv01 { background-image: url("../img/mv_p01.jpg"); }
#title #mv02 { background-image: url("../img/mv_p02.jpg"); }
#title #mv03 { background-image: url("../img/mv_p03.jpg"); }
#title #mv04 { background-image: url("../img/mv_p04.jpg"); }
#title #mv05 { background-image: url("../img/mv_p05.jpg"); }
#title h2 {
	line-height: 1.2;
	color: var(--co-black);
	text-shadow: 
		 3px  3px 3px var(--co-white),
		-3px  3px 3px var(--co-white),
		 3px -3px 3px var(--co-white),
		-3px -3px 3px var(--co-white),
		 3px  0px 3px var(--co-white),
		 0px  3px 3px var(--co-white),
		-3px  0px 3px var(--co-white),
		 0px -3px 3px var(--co-white);
}
#title h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 65%;
	height: 15px;
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 20%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0.8) 80%,rgba(255,255,255,0) 100%);
	top: 50%;
	left: 50%;
	transform: var(--transformXY);
	z-index: -1;
}
#title h2 span {
	display: inline-block;
	font-weight: bold;
}

@media (max-width: 480px) {
	#title { height: 50vh; }
}

@media (max-width: 840px) {
}

@media (max-width: 420px) {
}


/*------------article-------------------------*/
article { padding: 0; }
main article:not(:last-of-type) { margin-bottom: 0; }
article:not(:last-of-type)::after { display: none; }


/*------------TopTxt-------------------------*/
#TopTxt {
	position: relative;
	width: 100%;
	max-width: inherit;
	padding: 50px 0 115px;
	background: var(--co-black);
}
#TopTxt::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 65px;
	background-color: var(--co-white);
	clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
	bottom: 0;
	left: 0;
}
#TopTxt h2 {
	width: 100%;
	padding: 0 0.5em;
	line-height: 1.2;
	text-align: center;
	font-size: 2.2em;
	font-weight: bold;
	color: var(--co-red);
}
#TopTxt h2 span {
	display: inline-block;
	font-weight: bold;
}
#TopTxt p {
	width: 90%;
	max-width: 1060px;
	margin: 35px auto 0;
	padding: 0 1em;
	line-height: 1.8;
	text-align: center;
}


/*------------content-------------------------*/
#content {
	margin: 0 auto;
}
#content h2 {
	padding-top: 35px;
	background-color: var(--co-white);
	text-align: center;
	font-size: 2.2em;
	font-weight: bold;
	color: var(--co-black);
}
#content nav {
	position: relative;
	width: 100%;
	margin-bottom: 55px;
	padding-top: 65px;
}
#content nav::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 65px;
	background-color: var(--co-white);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	top: 0;
	left: 0;
}
#content nav h3 {
	margin-top: 50px;
	font-size: 2.2em;
}
#content nav h3::before {
	width: 60%;
	max-width: 640px;
	height: 7px;
	background: var(--co-white);
}
#content ul {
	display: flex;
	gap: 25px;
	max-width: 1100px;
	margin: 55px auto 0;
}
#content ul li {
	position: relative;
	width: 100%;
	max-width: calc((100% - 25px * 2) / 3);
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
	z-index: 0;
}
#content ul li::before,
#content ul li::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	left: 0;
	z-index: -1;

}
#content ul li::before {
	height: 100%;
	background-color: #909191;
	mix-blend-mode: multiply;
	clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
	top: 80px;
}
#content ul li::after {
	height: 90px;
	background-color: #dd261e;
	clip-path: polygon(0 65%, 100% 0, 100% 100%, 0% 100%);
	bottom: 0;
}
#content ul li:nth-child(2)::after { background-color: #231815; }
#content ul li:nth-child(3)::after { background-color: #c3b295; }
#content ul li a {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 105px;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
#content ul li .conPho {
	position: relative;
	text-align: center;
}
#content ul li dl { margin-top: 20px; }
#content ul li dl dt {
	position: relative;
	margin-bottom: 0.55em;
	padding-bottom: 0.55em;
	text-align: center;
	line-height: 1;
	font-size: 1.9em;
	font-weight: bold;
}
#content ul li dl dt::before {
	position: absolute;
	display: block;
	content: "";
	width: 72%;
	max-width: 250px;
	border-bottom: 3px solid var(--co-white);
	left: 50%;
	bottom: 0;
	transform: var(--transformX);
}
#content ul li dl dd {
	text-align: center;
	font: bold 1.5em / 1 var(--gothic);
}
#content #krrb2d {
	width: 96%;
	max-width: 980px;
	margin: 55px auto 0;
	text-align: center;
}
#content #movie { margin-top: 90px; }

@media (max-width: 960px) {
	#content ul {
		width: 100%;
		padding: 0 1em;
	}
}
@media (max-width: 740px) {
	#content ul {
		flex-wrap: wrap;
		gap: 0 25px;
	}
	#content ul li {
		max-width: calc((100% - 25px) / 2);
		margin: 0 auto;
	}
}
@media (max-width: 480px) {
	#content ul {
		flex-direction: column;
		gap: 0;
	}
	#content ul li {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
}


/*------------recruit------------------------*/
#recruit a {
	position: relative;
	width: 100%;
	height: 100%;
	color: var(--co-white);
}
#recruit h2 {
	position: absolute;
	bottom: -0.2em;
	left: 50%;
	transform: var(--transformX);
	z-index: 2;
	padding-top: 100px;
	background: url("../img/arrow_w.png") no-repeat center top;
	line-height: 1;
	font: bold clamp(50px, 13.8889vw + -24.4444px, 170px) / 1 var(--mincho);
	color: var(--co-white);
}
#recruit #bgMix {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#recruit #bgMix::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--co-orange);
	mix-blend-mode: overlay;
}
#recruit #bgMix img {
	width: 100%;
	height: 350px;
	z-index: 0;
}

@media (max-width: 480px) {
	#recruit #bgMix img { height: 250px; }
}


/*------------info------------------------*/
.info {
	position: relative;
	width: 100%;
	margin: 70px auto 0;
}
.info h2 {
	margin-bottom: 10px;
	padding: 0;
	text-align: center;
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 2.2em;
	font-weight: bold;
}
#news h2 { color: var(--co-orange); }
#blog h2 { color: var(--co-purple); }
.info section {
	width: 100%;
	max-width: inherit;
	padding: 35px 40px;
	background-color: var(--co-gray20);
}
#news section { background-color: #ffe4cc; }
#blog section { background-color: #dbd6e4; }
.info div {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.info iframe {
	display: block;
	width: 100%;
	height: 350px;
	border: none;
	background-color: transparent;
}

@media (max-width: 790px) {
	.info section {
		flex-direction: column;
		gap: 20px;
	}
	.info h2 {
		width: 100%;
		padding-right: 0;
		writing-mode: horizontal-tb;
		text-align: center;
	}
	.info div { margin-left: auto; }
}

@media (max-width: 420px) {
	.info div { width: 100%; }
}