@charset "UTF-8";
/* CSS Document */
/*ウィンドウスクロールで要素を表示*/
.animationY {
	opacity : 0;
	visibility: hidden;
	transition: 0.7s;
	transform: translateY(50px);/*初期値 Y方向に50px*/
}
/*ウィンドウスクロールで要素を表示*/

/*指定した要素までスクロール*/
.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);/*アニメーション後 0px*/
}
/*指定した要素までスクロール*/

.top_nwes {
	overflow: auto;
	width: 80%;
	height: 80px;
	margin-bottom: 50px;
	padding: 5px 5px 5px 30px;
	color: #000;
	background-color: #FFF;
	text-align: left;
	line-height: 30px;
	border-radius: 15px;
}
/*緑色のボタン*/
.button a {
	border: 3px solid #030;
	width: 250px;
	padding: 20px;
	font-size: 32px;
	text-align: center;
	color: #030;
	background-color: #FFF;
	background-position: center center;
	display: block;
}
.button a:hover {
	color: #FFF;
	background-color: #002c1c;
	transition: all 0.5s ease 0s;
}
/*緑色のボタン*/

/*濃いオレンジの背景(斜め)*/
.triangle {
	width: 100%;
	height: 150px;
	background-color: #ff9133;
	transform: skewY(-5deg);
	position: relative;
	top: -100px;
}
.triangle p {
	vertical-align: middle;
	text-align: center;
	font-size: 50px;
	color: #fff;
}
/*濃いオレンジの背景(斜め)*/

/* スライドショー*/
.swiper-wrapper {
	width: 100%;
}
.swiper-slide p{
	width: 100%;
	margin-top: -80px;
	color: #3d0000;
	background-color: rgba(255,255,255,0.7);
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	line-height: 80px;
	position: absolute;
}
/* スライドショー*/

/*アコーディオンメニュー*/
.accordion ul {
	margin-left: -35px;
	position: relative;
	display: flex;
	justify-content: center;
	list-style-type: none;
}
.accordion li {
	width: 80%;
	margin-top: 270px;
	text-align: left;
	background: linear-gradient(90deg, #FFF 0%, #FFF 85%, #002c1c 85%, #002c1c 100%);
	padding-left: 10px;
}
.accordion_img {
	width: 100%;
	height: 350px;
	margin: 15px;
	background: #FFC;
}
.accordion a {
	color:#000;
	display: block;
}
.btn-more {
	display: block;
	width: 30%;
	height: 60px;
	line-height: 50px;
	background: #F30;
	border-radius: 5px;
	cursor: pointer;
}
.btn-more.close {
	background-color: #999;
}
.btn-more span {
	color: #FFF;
	position: relative;
	padding-left: 30px;
}
.btn-more ::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	transition: 0.3s;
	margin-top: -18px;
}
.btn-more.close ::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(225deg);
	transition: 0.3s;
	margin-top: -3px;
}
.accordion_img:nth-child(1) {
	background-image: url(../images/people1.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
	
}
.accordion_img:nth-child(2) {
	background-image: url(../images/people2.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.accordion_img:nth-child(3) {
	background-image: url(../images/people3.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.accordion_img:nth-child(4) {
	background-image: url(../images/people4.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.dropdown .accordion_img:nth-child(1) {
	background-image: url(../images/people5.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.dropdown .accordion_img:nth-child(2) {
	background-image: url(../images/people6.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.dropdown .accordion_img:nth-child(3) {
	background-image: url(../images/people7.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
.dropdown .accordion_img:nth-child(4) {
	background-image: url(../images/people8.gif);
	background-position: center bottom;
	background-size: 150%;
	background-repeat: no-repeat;
}
/*アコーディオンメニュー*/

/*募集要項＆お問い合わせ*/
.bottom_button {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 25px;
}
.bottom_button a {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #fff;
	background-color: #002c1c;
	position: relative;
	z-index: 2;
}
/*募集要項*/
.bosyu a:before {
	content: '';
	position: absolute;
	left: -100%;
	width: 120%;
	height: 100%;
	margin-top: -20px;
	z-index: -1;
	background-color: #ff9133;
	transition: all 300ms linear;
	transform: skewX(-45deg) scale(0, 1);
}
.bosyu a:hover:before {
	left: -20%;
	transform: skewX(-45deg) scale(1, 1);
}
/*募集要項*/
/*お問い合わせ*/
.info a:before {
	content: '';
	position: absolute;
	left: -100%;
	width: 120%;
	height: 100%;
	margin-top: -20px;
	z-index: -1;
	background-color: #fb4a00;
	transition: all 300ms linear;
	transform: skewX(-45deg) scale(0, 1);
}
.info a:hover:before {
	left: -20%;
	transform: skewX(-45deg) scale(1, 1);
}
/*お問い合わせ*/
/*募集要項＆お問い合わせ*/