@charset "UTF-8";
/* CSS Document */

/***************** MENU SETTING *****************/
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed!important;
	top: 0;
	right: 0;
	width: 150px;
	height: 100px;
	cursor: pointer;
	z-index: 9999;
	border: none;
	background: #13b5b1;
	-webkit-transition: all 3s ease-in-out;
	transition: all .3s ease-in-out;
}
.menu-btn-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 1px;
	width: 45%;
	-webkit-transition: all 3s ease-in-out;
	transition: all .3s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
	content: "";
	height: 2px;
	width: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: inherit;
	transition: inherit;
}
.menu-btn-line::before{
	top: -3px;
}
.menu-btn-line::after{
	top: 3px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
	z-index: 9998;
}
.open .menu-btn {
	border-color: #fff;
}
.open .menu-btn-line{
	background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
	top: 0;
	background: #fff;
}
.open .menu-btn-line::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open .menu-btn-line::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*開いたメニュー*/
.menu {
	position: fixed;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color:#02194d;
	background:#FFF;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	overflow-y: scroll;
}
.menu a {
	color:#02194d;
}
.menu a:hover {
	color:#0ecaff;
}
.menu .nav_box {
	width: 90%;
	margin: 2.5% auto;
}
.menu ul {
	width: 100%;
	display: block;
}
.menu li {
	margin: 0 auto 20px;
	line-height: 1.5;
}
.menu h1 {
	font-size: 1.1rem;
	text-align: right;
	margin-top: 80px;
	line-height: 1.8;
}


@media screen and (max-width: 900px) {
.menu ul {
	width: calc(100% / 2);
	float: left;
}
	
}

@media screen and (max-width: 767px) {
	
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 9999;
	border: none;
	background: #13b5b1;
	-webkit-transition: all 3s ease-in-out;
	transition: all .3s ease-in-out;
}
.menu ul {
	width: calc(100% / 1);
	float: none;
	text-align: right;
	margin-top: 20%;
}
.menu .nav_box {
	max-width: 80%;
	width: 80%;
	margin: 5% auto;
	padding-bottom: 30%;
}
	

.menu .nav_box .img_box {
width: 35%;
	top: -1%;
	left: 3%;	
}	
	
.menu ul p span {
	font-size: 2.2rem;
	font-family: 'Barlow Condensed', sans-serif;
	letter-spacing: normal;
}

	
}