@charset "utf-8";
/* ============================================================ */
/* .index */
/* ============================================================ */
.contents._index_ {
	background: url("../../img/index/bg_index_bottom.png"), linear-gradient(270deg, #001B25 0%, rgba(0, 38, 53, 0) 100%);
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-top: 0;
}


/* .index-visual
------------------------------------------------------------ */
.index-visual {
	width: 100%;
	height: 100vh;
	position: relative;
	background: url("../../img/index/bg_visual.jpg") center center no-repeat;
	background-size: cover;
}

.index-visual__ttl {
	animation-name: zoomOutAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	max-width: 600px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

@keyframes zoomOutAnime {
  from {
		transform: scale(1.2);
  }

  to {
    transform:scale(1);
  }
}

/* .index-news
------------------------------------------------------------ */
.index-news {
	background: linear-gradient(90deg, #005C9F 0%, #00A7EA 100%);
	padding: 40px 0;
}

.index-event ,
.index-info {
	display: flex;
	justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
	.index-event ,
	.index-info {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
}

.index-info {
	margin: 0 0 45px;
}

.index-info__ttl ,
.index-event__ttl {
	align-items: center;
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
	.index-info__ttl ,
	.index-event__ttl {
		margin-bottom: 30px;
	}
}

.index-info__ttl .__ico ,
.index-event__ttl .__ico {
	display: inline-flex;
	width: 60px;
	height: 60px;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	background: var(--white);
	color: var(--blue);
	text-align: center;
	padding: 0 0 0 7px;
	margin: 15px 0 0;
}

.index-event .index-news__list {
	order: 1;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
	.index-event .index-news__list {
		order: 2;
	}
}

.index-event .index-event__ttl {
	order: 2;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
	.index-event .index-event__ttl {
		order: 1;
	}
}

.index-news__list {
	display: flex;
	width: 75%;
	margin: 0 -20px;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
	.index-news__list {
		width: 100%;
	}
}

.index-news__item {
	margin: 0 20px;
	width: calc((100% - 120px) / 3);
}

.index-news__img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 182px;
	overflow: hidden;
	margin: 0 0 15px;
}

.index-news__img .__elem {
	width: 100%;
	height: 100%;
	object-fit: cover;
 	transition: 1s all;
}

.index-news__link {
	display: flex;
	flex-direction: column;
	color: var(--white);
}

.index-news__link:hover .index-news__img .__elem {
  transform: scale(1.2,1.2);
  transition: 1s all;
}

.index-news__link .__txt {
	background: linear-gradient(0deg, var(--white), var(--white)) no-repeat right bottom / 0 var(--bg-h2);
}

.index-news__date {
	font-size: 1.2rem;
	margin: 0 0 5px;
	display: block;
}

.index-news__txt {
	font-size: 1.6rem;
}

.index-news__detail {
}

.index-news__detail .label {
	margin: 0 10px 5px 0;
	font-weight: 400;
}

.index-news__detail .index-news__txt {
	overflow: hidden;
}


/* .index-about
------------------------------------------------------------ */
.index-about {
	background: url("../../img/index/bg_about.png"), linear-gradient(90deg, #001B25 0%, rgba(0, 38, 53, 0) 100%);
	background-size: cover;
	background-position: center bottom;
	padding: 90px 0 215px;
	background-repeat: no-repeat;
}

.index-about__inner {
	margin: 0 0 400px;
}

.index-about-wrapper {
	display: flex;
	justify-content: space-between;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}

.index-about-wrapper__img {
	width: calc((100% - 37.5%) - 120px);
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1150px) {
	.index-about-wrapper__img {
		width: calc((100% - 45%) - 50px);
	}
}

.index-about-wrapper__img .__elem {
	position: absolute;
	top: 0;
	left: 0;
	width: 990px;
	height: 604px;
}

.index-about-wrapper__img .__elem .lazyload {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.index-about-wrapper__txt {
	width: 37.5%;
	font-size: 1.6rem;
}

@media only screen and (min-width: 768px) and (max-width: 1150px) {
	.index-about-wrapper__txt {
		width: 45%;
	}
}


/* .index-office
------------------------------------------------------------ */
.index-office {
}

.index-office__bnr {
	background: url("../../img/index/bg_office.jpg") center center no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: var(--white);
	transition: all .4s;
	padding: 28px 0 35px;
}

.index-office__bnr:hover {
	opacity: 0.7;
}

.index-office__bnr:hover .btn-arrow {
	background: var(--white);
	color: var(--blue);
}

.index-office__bnr:hover .btn-arrow .__ico {
	transform: translateX(-15px) translateY(-50%);
}


/* .index-service
------------------------------------------------------------ */
.index-service {
	background: url("../../img/index/bg_service.png") center bottom no-repeat;
	background-size: cover;
	padding: 90px 0 120px;
}

.index-service__inner {
	display: flex;
	justify-content: space-between;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}

.index-service__img {
	width: calc((100% - 50%) - 80px);
	position: relative;
	order: 1;
}

@media only screen and (min-width: 768px) and (max-width: 1150px) {
	.index-service__img {
		width: calc((100% - 50%) - 50px);
	}
}

.index-service__img .__elem {
	position: absolute;
	top: -212px;
	right: 0;
	width: 880px;
	height: 640px;
}

.index-about-wrapper__img .__elem .lazyload {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.index-service__txt {
	width: 50%;
	order: 2;
	font-size: 1.6rem;
}


/* .index-recruit
------------------------------------------------------------ */
.index-recruit {
	position: relative;
	height: 805px;
	z-index: 1;
}

.index-recruit__inner {
	position: relative;
	z-index: 2;
	max-width: 1260px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.index-recruit__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 805px;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index-recruit__bg .__elem {
	width: auto;
	height: 100%;
	object-fit: cover;
}


/* .recruit-bnr
------------------------------------------------------------ */
.recruit-bnr {
	margin: -160px auto 120px;
	z-index: 2;
	max-width: 1260px;
	padding: 0 30px;
	position: relative;
}

.recruit-bnr__list {
	display: flex;
	margin: 0 -20px;
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {
	.recruit-bnr__list {
		margin: 0 -10px;
	}
}

.recruit-bnr__item {
	width: calc((100% - 120px) / 3);
	margin: 0 20px;
	background: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {
	.recruit-bnr__item {
		width: calc((100% - 60px) / 3);
		margin: 0 10px;
	}
}

.recruit-bnr__link {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 240px;
	position: relative;
	color: var(--white);
	padding: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {
	.recruit-bnr__link {
		padding: 15px 7px;
	}
}

.recruit-bnr__link::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 48px 48px;
	border-color: transparent transparent #00A7EA transparent;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.recruit-bnr__link:hover .__txt {
	background: none;
}

.recruit-bnr__link .h3 {
	z-index: 3;
	position: relative;
	letter-spacing: 4px;
	text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {
	.recruit-bnr__link .h3 {
		font-size: 2.6rem;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1120px) {
	.h3 .__txt::before {
		font-size: 2.2rem;
		margin: 0 5px 0 0;
	}
}

.recruit-bnr__link .recruit-bnr__bg {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.recruit-bnr__link .recruit-bnr__bg .__elem {
	width: auto;
	height: 100%;
	object-fit: cover;
}


/* .index-sd
------------------------------------------------------------ */
.index-sd {
}

.index-sd .__br {
	display: none;
}

@media only screen and (min-width: 768px) and (max-width: 880px) {
	.index-sd .__br {
		display: block;
	}
}

.index-sd .h2 .__jp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.index-sd .h2 .__jp::before {
	content: "\e903";
	font-size: 7.2rem;
	font-weight: 400;
	line-height: 1.0;
	display: inline-block;
}

.index-sd__inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 1276px) {
	.index-sd__inner {
		justify-content: center;
	}
}

.index-sd__list {
	display: flex;
	margin: 0 -10px;
}

.index-sd__item {
	width: calc((100% - 80px) / 4);
	margin: 0 10px;
}

.index-sd__btn {
	width: 23.33%;
	margin: 0 0 0 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1276px) {
	.index-sd__btn {
		margin: 40px 0 0;
	}
}

.index-sd__link {
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	transition: all .4s;
}

.index-sd__link .__ico {
	display: inline-flex;
	width: 160px;
	height: 160px;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: var(--blue);
	color: var(--white);
	text-align: center;
	margin: 0 0 10px;
	font-size: 8.0rem;
	line-height: 1.0;
	transition: all .4s;
}

.index-sd__link:hover .__ico {
	opacity: 0.7;
}

.index-sd__instagram {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 1.6px;
	line-height: 1.4;
}

.index-sd__link .__txt {
}
