/*--------------------------------
nav
--------------------------------*/
.col-md-0 {
	display: none;
}

nav {
	background: #20B2D3;
}

nav a {
	text-decoration: none;
	color: #FFF;
	transition: .5s;
}

nav a:hover {
	color: #20B2D3;
}

.btnCont {
	background: #FFF;
	color: #20B2D3;
	display: inline-block;
	height: 46px;
	padding: 10px 35px;
	max-width: 146px;
}

.btnCont:hover {
	color: #fff;
	opacity: .5;
}

/*** SP ***/
.hamburger-menu {
	right: 0;
	display: inline-block;
	position: relative;
	top: 0;
	z-index: 999;
	cursor: pointer;
}

.menu-btn {
	position: relative;
	display: flex;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background: #20B2D3;
	background-size: 100%;
	transition: .5s;
	padding-top: 42px;
	color: #20B2D3;
	font-weight: bold;
	font-size: 12px;
	cursor: pointer;
	border-radius: 10px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 4px;
	width: 40px;
	border-radius: 3px;
	background-color: #FFF;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	transition: .5s;
}

.menu-btn span {
	top: 19px;
}

.menu-btn span:before {
	bottom: 10px;
}

.menu-btn span:after {
	top: 10px;
}

#menu-btn-check:checked~.menu-btn {
	background: none;
}

#menu-btn-check:checked~.menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
	background-color: #20B2D3;
}

#menu-btn-check:checked~.menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
	background-color: #20B2D3;
}

#menu-btn-check {
	display: none;
}

.menu-content {
	width: 100%;
	height: calc(100vh - 69px);
	position: fixed;
	top: 74px;
	right: -100%;
	z-index: -80;
	background-color: rgba(32, 178, 211, .9);
	transition: all 0.5s;
	opacity: 0;
}

.menu-content .btnCont {
	display: inline-block;
	border: 1px solid #FFF;
	color: #20B2D3;
	height: auto;
	padding: 10px 15px;
}

.menu-content .top {
	margin: 30px 20px 0;
	text-align: left;
	border-bottom: solid 1px #194e73;
}

.menu-content .top p {
	display: block;
	font-size: 15px;
	color: #194e73;
	font-weight: bold;
	padding: 0 10px 6px;
}

.menu-content ul {
	padding: 0 20px;
	width: 100%;
	magin: auto;
}

.menu-content ul li {
	list-style: none;
	text-align: left;
	position: relative;
}

.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 22px;
	box-sizing: border-box;
	color: #FFF;
	text-decoration: none;
	padding: 10px;
	margin: 5px 0 !important;
	position: relative;
	text-align: left;
	font-weight: bold;
	border-bottom: 1px solid #FFF;
}

#menu-btn-check:checked~.menu-content {
	right: 0;
	opacity: 1;
	z-index: 80;
}

@media (max-width:991px) {
	.hamburger-menu {
		right: 0;
		top: 0;
	}

	nav {
		background: #20B2D3;
		width: 100%;
		position: fixed;
		z-index: 999;
	}

	.col-md-0 {
		display: inline-block;
		margin-left: auto;
	}

	.menu-btn {
		background: #FFF;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		background-color: #20B2D3;
	}

	#menu-btn-check:checked~.menu-btn {
		background: #FFF;
	}
}

@media (max-width:767px) {
	.menu-content {
		top: 80px;
		height: calc(100vh - 80px);
	}
}

@media (max-width:575px) {
	.sc {
		max-width: 170px;
	}

	.menu-content {
		top: 56px;
		height: calc(100vh - 56px);
	}
}