@charset "UTF-8";
/* CSS Document */
/* loading
================================================== */
.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
.loading.is-active {
	opacity: 0;
	visibility: hidden;
}
.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #000086;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
.logo {
	width: 40%;
	-webkit-animation: logo 0.8s forwards;
	animation: logo 0.8s forwards;
	animation-delay: 0.2s;
}
@media screen and (max-width: 639px) {
	.logo {
		width: 60%;
	}
}
@keyframes byeShutter {
	70% {
		opacity: 1;
	}
	100% {
		display: none;
		opacity: 0;
		z-index: -1;
	}
}
@keyframes logo {
	0% {
		opacity: 1;
	}
	50% {
		transform: rotate(0deg);
	}
	100% {
		transform: scale(0.8);
	}
}
/* mainArea
================================================== */
#mainArea {
	position: absolute;
	z-index: 2;
	width: 100%;
	top: 115px;
	left: 0;
}
@media screen and (max-width: 639px) {
	#mainArea {
		top: 64px;
	}
}
#mainBlock {
	position: relative;
	width: 100%;
}
#mainBlock figure.main01 {
	position: absolute;
	width: 33%;
	top: 0;
	left: 34%;
	filter: drop-shadow(0 2px 5px #1d1817);
	margin-top: 16%;
}
#mainBlock figure.main02 {
	position: absolute;
	width: 15%;
	top: 0;
	left: 31.5%;
	margin-top: 11%;
}
@media screen and (max-width: 639px) {
	#mainBlock figure.main01 {
		width: 42%;
		top: 0;
		left: 31%;
		margin-top: 40%;
		filter: drop-shadow(0 0 5px #1d1817);
	}
	#mainBlock figure.main02 {
		width: 55%;
		top: 0;
		left: 22.5%;
		margin-top: 71%;
	}
}
/* slideArea
================================================== */
#slideArea {
	position: relative;
	width: 100%;
}
/* slideBox
================================================== */
#slideBox {
	width: 100%;
}
@media screen and (max-width: 639px) {
	#slideBox {
	}
}
/* ------ スライダー ------ */
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.25);
	}
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
	animation: zoomUp 10s linear 0s 1 normal both;
}
//imgタグだと下に隙間ができるのでblockに。
.slide-img img {
	display: block;
}
/* contentArea
================================================== */
.contentArea {
	max-width: 1080px;
	margin: 0 auto;
	padding: 3% 5% 7%;
}
@media screen and (max-width: 639px) {
	.contentArea {
		padding: 10% 5%;
	}
}
/* titBox
================================================== */
.titBox {
}
.titBox p {
	font-size: 160%;
	text-align: center;
	line-height: 160%;
	font-weight: 500;
}
@media screen and (max-width: 1000px) {
	.titBox p {
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 639px) {
	.titBox p {
		font-size: 5.5vw;
		line-height: 180%;
	}
}
/* topName
================================================== */
#topName {
	padding: 20px 0 60px;
	width: 50%;
	margin: 0 auto;
	max-width: 320px;
}
/* bannerFlex
================================================== */
.bannerFlex {
	width: 100%;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* bannerArea
================================================== */
.bannerArea {
	width: 48.5%;
	background-color: #000086;
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
	margin-bottom: 5%;
	overflow: hidden;
}
@media screen and (max-width: 700px) {
	.bannerArea {
		width: 100%;
	}
}
.bannerBox img {
	width: 100%;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, transform, fill, content, opacity;
	transition-property: background, border, color, transform, fill, content, opacity, -webkit-transform;
}
.bannerBox:hover img {
	width: 100%;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
/* bannerLong
================================================== */
.bannerLong {
	width: 100%;
	background-color: #000086;
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
	margin-bottom: 5%;
	overflow: hidden;
}
/* messageArea
================================================== */
.messageArea {
	background-color: #fff;
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
	margin-bottom: 5%;
	display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
	.messageArea {
		display: inherit;
		flex-wrap: nowrap;
	}
}
.messageImgBox {
	width: 35%;
	overflow: hidden;
}
.messageImgBoxS {
	display: none;
}
@media screen and (max-width: 900px) {
	.messageImgBox {
		display: none;
	}
	.messageImgBoxS {
		display: block;
		width: 70%;
		margin: 0 auto;
	}
}
.messageImgBox:hover img {
	width: 100%;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.messageImgBox img {
	width: 100%;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, transform, fill, content, opacity;
	transition-property: background, border, color, transform, fill, content, opacity, -webkit-transform;
}
.messageTxtBox {
	width: 65%;
	background-color: #000086;
	position: relative;
}
@media screen and (max-width: 900px) {
	.messageTxtBox {
		width: 100%;
	}
}
.messageTxtTitBox {
	padding: 0 5% 5%;
	color: #fff;
}
.messageTxtTitBox h3{
	font-size: 80%;
}
.messageTxtTitBox p{
	font-size: 130%;
	font-weight: 500;
}
@media screen and (max-width: 900px) {
	.messageTxtTitBox p{
		font-size: 100%;
	}
}
.messageLeadBox {
	padding: 3% 5% 5px;
	color: #fff;
}
@media screen and (max-width: 900px) {
	.messageLeadBox {
		padding: 5% 5% 5px;
	}
}
.messageLeadBox p{
	line-height: 120%;
}
.messageLeadBox p span{
	font-size: 240%;
	line-height: 120%;
}

.messageBtnArea {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 90%;
	background-color: #fff;
	padding: 10px 5%;
}
@media screen and (max-width: 900px) {
	.messageBtnArea {
		position: relative;
		background-color: #fff;
		padding: 15px 5%;
	}
}
.messageBtn {
	position: relative;
	display: inline-block;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	line-height: 2px%;
	background-color: #fff;
}
.messageBtn:hover {
	border: solid 1px #000086;
	transition: .3S;
	-webkit-transition: .3s;
}
.messageBtn a {
	padding: 5px 25px 5px 35px;
	color: #222;
	display: block;
	font-size: 80%;
	font-weight: 500;
}
.messageBtn:hover a {
	transition: .3S;
	-webkit-transition: .3s;
	color: #fff;
	background-color: #000086;
}
.messageBtn .btn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.messageBtn:hover .btn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #fff;
}
/* contentBlock */
.contentBlock {
	width: 100%;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
/* contentBox */
.contentBox {
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
	max-width: 30%;
	margin-bottom: 5%;
	display: -webkit-box;
	display: flex;
	text-align: left;
	background: #fff;
}
.mobileBlock {
    display: none;
}
.mobileNone {
    display: block;
}
@media screen and (max-width: 900px) {
	.contentBox {
		max-width: 47.5%;
		margin-bottom: 5%;
	}
	.mobileBlock {
		display: block;
	}
	.mobileNone {
		display: none;
	}
}
.contentBox a {
	display: block;
	color: #222;
	-webkit-transition: all 500ms;
	transition: all 500ms;
}
.contentBox a:hover {
	color: #fff;
	background: #000086;
}
.contentBox a:hover .contentBoxImg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
.contentBoxImg {
	overflow: hidden;
}
.contentBoxImg img {
	-webkit-transition: all 500ms;
	transition: all 500ms;
	width: 100%;
}
.contentBox:not(:nth-child(3n+3)) {
	margin-right: 5%;
}
@media screen and (max-width: 900px) {
	.contentBox:not(:nth-child(3n+3)) {
		margin-right: 0;
	}
	.contentBox:nth-child(2n) {
		margin-left: 5%;
	}
}
.contentBoxTit {
	letter-spacing: 0;
	padding: 26px 16px;
	font-weight: 500;
}
@media screen and (max-width: 700px) {
	.contentBoxTit {
		font-size: 90%;
	}
}



