@charset "utf-8";
/* CSS Document */
body .wrraper{
	font-family: "Zen Kaku Gothic New", "Hiragino Sans","Yu Gothic UI","ＭＳ ゴシック",sans-serif;
	font-weight: 400;
	width: 100%;
	font-size: 25px;
	line-height: 1.8;
}
img{width: 100%;}
.contents{
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 15px;
}
.ip{display: none;}
.sp{display: none;}
@media screen and (max-width:1000px){
	.pc{display: none;}
	.ip{display: block;}
}
@media screen and (max-width:768px){
	body .wrraper{font-size: 17px;}
	.pc{display: none;}
	.sp{display: block;}
}
/****ヘッダー****/
header{
	padding: 15px 17px 15px 28px;
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 87%;
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	box-sizing: border-box;
	z-index: 100;
}
header a{display: flex;}
header a img{
	max-width: 230px;
	cursor: pointer;
}
header p{
	padding-right: 3%;
	color: #1e3c82;
	font-size: 13px;
}

header nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 100%;
	width: 100%;
	background: #1e3c82;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	transition: all .3s;
	z-index: 300;
	opacity: 0;
	padding: 0px 25px 0;
	box-sizing: border-box;
}
.open nav {
	bottom: 0;
	opacity: 1;
}
.inner ul{
	text-align: center;
	padding-top: 120px;
}
.inner li{margin-bottom: 30px;}
.inner li a{
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	font-size: 3vw;
}

.hamburger {
	display: block;
	position: absolute;
	top: 24%;
	right: 1%;
	width: 30px;
	height: 30px;
	transition: all .5s;
	cursor: pointer;
	z-index: 300;
}
.hamburger span {
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #1e3c82;
	border-radius: 4px;
	transition: all .5s;
}
.hamburger span:nth-child(1) {top: 6px;}
.hamburger span:nth-child(2) {top: 14px;}
.hamburger span:nth-child(3) {bottom: 5px;}
.open .hamburger span {background-color: #fff;}
.open .hamburger span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}
.open .hamburger span:nth-child(2) {opacity: 0;}
.open .hamburger span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-6px) rotate(315deg);
}

@media screen and (max-width:768px){
	header{
		padding: 15px 17px 15px 15px;
		width: 93%;
		top: 20px;
	}
	header p{display: none;}
	header nav {padding: 0px 25px 0;}
	.hamburger {
		top: 24%;
		right: 5%;
		width: 40px;
		height: 40px;
	}
	.inner ul{padding-top: 80px;}
	.inner li{margin-bottom: 30px;}
	.inner li a{font-size: 25px;}
	.hamburger span {width: 40px;}
	.hamburger span:nth-child(1) {top: 3px;}
	.hamburger span:nth-child(2) {top: 14px;}
	.hamburger span:nth-child(3) {bottom: 12px;}
	.open .hamburger span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(16px) rotate(-315deg);
	}
	.open .hamburger span:nth-child(2) {opacity: 0;}
	.open .hamburger span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-6px) rotate(315deg);
	}
}

/****MV****/
.mv{
	background-image: url("../img/mv.jpg");
	background-size: cover;
	background-position: center;
	height: 100vh;
	color: #FFFFFF;
	position: relative;
}
.mv .mv_heading{
	text-align: center;
	position: absolute;
	top: 40%;
	width: 100%;
}
.mv .mv_heading h1{
	font-size: 100px;
	font-weight: 500;
}
.mv .mv_heading span{font-size: 20px;}
.mv img{
	max-width: 30px;
	position: absolute;
	bottom: 5%;
	right: 0;
	left: 0;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.mv .mv_heading{top: 35%;}
	.mv .mv_heading h1{font-size: 60px;}
}

/****background/h2****/
.bg_blue{
	background-color: #1e3c82;
	background-image: url("../img/gr_blue.png");
	background-position: top;
	background-repeat: no-repeat;
	padding: 200px 0px 150px;
	color: #FFFFFF;
	text-align: center;
}
.h2_white{
	font-size: 6.5vw;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}
.h2_white::before{
	content: "(";
	padding-right: 10%;
}
.h2_white::after{
	content: ")";
	padding-left: 10%;
}
.h2_blue{color: #1e3c82;}
.bg_img{
	background-image: url("../img/gr_grey1.png"),url("../img/op_bg.jpg");
	background-position: top,center;
	background-repeat: no-repeat;
	background-size: auto,cover;
	padding: 200px 15px 150px;
}
@media screen and (max-width:768px){
	.bg_blue{padding: 40px 0px;}
	.h2_white{
		font-size: 30px;
		margin-bottom: 30px;
		font-weight: 700;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.h2_white::before{display: none;}
	.h2_white::after{display: none;}
	.bg_img{padding: 40px 15px 30px;}
}
@media screen and (max-width:350px){.h2_white{font-size: 25px;}}


/****ABOUT US****/
.about p{margin-bottom: 100px;}
.popuparea{
	display: flex;
	justify-content: space-evenly;
	width: 80%;
	margin: 0 auto;
}
#popup {display: none;}
#popup2 {display: none;}
#popup3 {display: none;}

.popup-open {
	cursor: pointer;
	color: #FFFFFF;
	width: 40%;
	max-width: 340px;
	text-align: center;
	padding: 20px 0;
	font-size: 18px;
	border: 1px solid #FFFFFF;
	display: inline-block;
	position: relative;
	height: 70px;
	box-sizing: border-box;
	margin: 0 10px;
}
.popup-open::after{
	content: "";
	width: 25px;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	background-color: #FFFFFF;
}
.popup-overlay {display: none;}
.popup-overlay2 {display: none;}
.popup-overlay3 {display: none;}
#popup:checked ~ .popup-overlay {
	display: block;
	z-index: 99999;
	background-color: #1e3c82;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#popup2:checked ~ .popup-overlay2 {
	display: block;
	z-index: 99999;
	background-color: #1e3c82;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#popup3:checked ~ .popup-overlay3 {
	display: block;
	z-index: 99999;
	background-color: #1e3c82;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.popup-contents{
	position: relative;
	width: 75%;
	margin: 0 auto;
}

.popup-window {
	width: 75%;
	padding: 3% 5%;
	background-color: #ffffff;
	border-radius: 25px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	color: #1e3c82;
	height: 80%;
	overflow: hidden scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	font-size: 18px;
	text-align: start;
	font-weight: 500;
	max-width: 1600px;
}
.popup-window::-webkit-scrollbar{display: none;}
.popup-text {margin: 0;}
.popup-text:not(:last-of-type) {margin-bottom: 1em}
.popup-close {
	cursor: pointer;
	position: absolute;
	top: 26px;
	right: 0;
	max-width: 34px;
}
@media screen and (max-width:1000px){
	.popuparea{flex-direction: column;}
	.popup-open {
		width: 100%;
		max-width: 100%;
		padding: 10px 0;
		margin: 10px 0px;
		height: auto;
	}
}
@media screen and (max-width:768px){
	.popup-open {font-size: 17px;}
	.about p{margin-bottom: 30px;}
	.popup-contents{width: 90%;}
	.popup-window {
		width: 90%;
		padding: 5%;
		border-radius: 15px;
		font-size: 19px;
	}
	.popup-overlay3 .popup-window {height: auto;}
}

.popup-window h4{
	font-size: 4vw;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.popup-window h4::before{
	content: "(";
	padding-right: 15%;
	font-size: 6vw;
}
.popup-window h4::after{
	content: ")";
	padding-left: 15%;
	font-size: 6vw;
}
.popup-window p{
	font-size: 18px;
	margin: 50px 0;
	text-align: inherit;
}
.popup-window span{
	display: block;
	text-align: end;
}
.popup-window .massage_img{margin-bottom: 20px;}
.popup-window .profile_img{margin-bottom: 20px;}
.popup-window table{width: 100%;}
.popup-window tr{
	padding: 30px 0;
	border-bottom: 1px solid #1e3c82;
	display: block;
}
.popup-window tr:last-child{border-bottom: none;}
.popup-window th{
	font-weight: bold;
	width: 300px;
	padding-left: 70px;
	font-size: 26px;
}
.popup-window td{padding-right: 70px;}
.popup-overlay3 .popup-window h4::before{
	content: "(";
	padding-right: 12%;
	font-size: 6vw;
}
.popup-overlay3 .popup-window h4::after{
	content: ")";
	padding-left: 12%;
	font-size: 6vw;
}
@media screen and (max-width:1000px){
	.popup-window tr{
		padding: 20px 0;
		display: block;
	}
	.popup-window th{
		width: 100%;
		padding-left: 15px;
		font-size: 22px;
	}
	.popup-window td{
		width: 100%;
		display: block;
		padding: 0 15px;
		box-sizing: border-box;
	}
}
@media screen and (max-width:768px){
	.popup-window p{font-size: 19px;}
	.popup-window h4{
		font-size: 25px;
		margin-bottom: 15px;
		font-weight: 700;
	}
	.popup-window h4::before{display: none;}
	.popup-window h4::after{display: none;}
	.popup-window p{margin: 25px 0;}
	.popup-window .massage_img{margin-bottom: 10px;}
}
@media screen and (max-width:350px){
	.popup-window h4{font-size: 20px;}
}

/****OPERATION FIELDS****/
.operation img{margin-bottom: 40px;}


/****CAPACITIES****/
.bg_img2{
	background-image: url("../img/gr_grey1.png"),url("../img/ca_bg.jpg");
}
.capacities_contents{
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	margin-top: 50px;
}
.capacities_contents img{margin-bottom: 50px;}
.cap_1{
	width: 48%;
	background: #FFFFFF;
	padding: 70px 100px;
	box-sizing: border-box;
	border-radius: 30px;
	font-size: 16px;
	position: relative;
}
.cap_2{
	width: 48%;
	background: #FFFFFF;
	padding: 70px 100px;
	box-sizing: border-box;
	border-radius: 30px;
	font-size: 16px;
	position: relative;
}
.cap_1 .nam1{
	max-width: 81px;
	position: absolute;
	top: -15px;
	left: 40px;
}
.cap_2 .nam2{
	max-width: 104px;
	position: absolute;
	top: -15px;
	left: 40px;
}
@media screen and (max-width:1000px){
	.capacities_contents img{
		display: block;
		margin: 0 auto;
		margin-bottom: 30px;
		max-width: 500px;
	}
	.cap_1{padding: 50px;}
	.cap_2{padding: 50px;}
	.cap_1 .nam1{max-width: 60px;}
	.cap_2 .nam2{max-width: 80px;}
}
@media screen and (max-width:768px){
	.capacities_contents{margin-top: 20px;}
	.capacities_contents{flex-direction: column;}
	.cap_1{
		width: 100%;
		border-radius: 20px;
		margin-bottom: 50px;
		padding: 50px 20px;
		font-size: 17px;
	}
	.cap_2{
		width: 100%;
		border-radius: 20px;
		padding: 50px 20px;
		font-size: 17px;
	}
}


/****OUR PROJECT****/
#project{padding-bottom: revert-layer;}
.swiperarea{
	display: block;
	margin: 0 auto;
	margin-top: 180px;
	width: 100%;
	max-width: 1900px;
}
.s_left{display: flex;}
.s_right{display: flex;}
.swiper{
	width: 50%;
	position: relative;
	z-index: 1;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
	height: 70px;
	width: 40px;
	top: 47.5%;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 70px;
	margin: auto;
	width: 40px;
}
.swiper .swiper-button-prev::after {
	content: "";
  	background-image: url("../img/left.png");
}
.swiper .swiper-button-next::after {
  	background-image: url("../img/right.png");
}

.swiper .swiper-slide img {
	height: auto;
	width: 100%;
}

.s_p{
	width: 50%;
	background: #0d4fb7;
	color: #FFFFFF;
	padding: 4% 13% 3% 4%;
	position: relative;
	box-sizing: border-box;
	text-align: start;
	font-size: 18px;
}
.s_p span{
	font-size: 2.5vw;
	font-weight: 500;
	margin-bottom: 30px;
	display: block;
}
.s_p2{background: #1e3c82;}
.s_p img{
	max-width: 120px;
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 10;
}
.s_p p{
	position: relative;
	z-index: 20;
}
@media screen and (max-width:1200px){
	.swiperarea{margin-top: 90px;}
	.s_p{padding: 2% 6% 2% 4%;}
	.s_p span{margin-bottom: 10px;}
}
@media screen and (max-width:768px){
	.swiperarea{margin-top: 40px;}
	.s_left{flex-direction: column-reverse;}
	.s_right{flex-direction: column;}
	.swiper{width: 100%;}
	.s_p{
		font-size: 19px;
		padding: 8% 7%;
		width: 100%;
	}
	.s_p span{font-size: 25px;}
}


/****footer****/
footer{
	background: #e9f5ff;
	padding: 40px;
	text-align: center;
	font-size: 15px;
	color: #1e3c82;
	font-weight: 500;
}
footer ul{
	font-weight: bold;
	display: flex;
	justify-content: center;
}
footer ul li{padding: 0 10px;}
footer ul li a{
	text-decoration: none;
	color: #1e3c82;
}
footer p{
	margin-bottom: 20px;
	display: block;
}
footer small{font-weight: 500;}
@media screen and (max-width:768px){
	footer{padding: 20px;}
	footer ul{
		flex-direction: column;
		margin-bottom: 10px;
	}
	footer ul li{padding: 5px 0px;}

}