@charset "utf-8";
/* ::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width:1024px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
@media screen and (min-width:1025px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}
/* icon */
.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}
/* common style */
body {
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: normal;
	margin: 0 auto;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
}
a {
	color: #D330B4;
	text-decoration: none;
}
a:hover {
	color: #DB00E1;
	text-decoration: none;
}
header {
	width: 100%;
	height: 50px;
	background: rgba(53, 68, 88, 0.50);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
nav a {
	font-size: 14px;
	color: #E400BF;
}
nav .disabled {
	background: #E57FD5;
}
.navbar {
	padding: 0;
	margin: 0;
}
.navbar-brand {
	padding: 5px 0;
	margin: auto 10px;
	z-index: 9999;
}
.navbar-brand img {
	width: 150px;
	margin: 4px 0;
}
#nav-toggle {
	position: fixed;
	top: 0;
	right: 0;
	cursor: pointer;
	background: #AE0092;
	width: 50px;
	height: 50px;
	z-index: 1000;
}
.menu-trigger, .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 50px;
	height: 44px;
}
.menu-trigger span {
	position: absolute;
	left: 15px;
	width: 20px;
	height: 1px;
	background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 15px;
}
.menu-trigger span:nth-of-type(2) {
	top: 25px;
}
.menu-trigger span:nth-of-type(3) {
	top: 35px;
}
.open .menu-trigger span {
	background: #fff;
}
.open .menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}
.open .menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
.open .menu-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}
ul.navbar-nav li.nav-item a.nav-link {
	color: #fff;
	text-align: center;
	height: 49px;
	padding: 0 30px 0;
	margin: 0;
	transition-duration: 1s;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.navbar-nav li.nav-item a:hover.nav-link {
	color: #fff;
	background: #D900B6;
}
ul.navbar-nav li.nav-item a.nav-link.disabled {
	color: #fff;
	background: #860070;
}

#gloval-nav {
	background: rgba(53, 68, 88, 0.90);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	text-align: center;
	display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .3s ease, visibility .3s ease;
	overflow: scroll;
}
#gloval-nav a {
	font-size: 14px;
	color: #fff;
	display: block;
	transition: color .3s ease;
	padding: 12px 50px;
	border-bottom: 1px solid;
	border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.0), #fff, rgba(255, 255, 255, 0.0));
	border-image-slice: 1;
}
#gloval-nav a:nth-of-type(0) {
	border-top: 1px solid #616C7B;
}
#gloval-nav a:hover {
	color: #E8C9E3;
}
#gloval-nav ul {
	list-style: none;
}
#gloval-nav ul li {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: transform .3s ease, opacity .2s ease;
	transition: transform .3s ease, opacity .2s ease, -webkit-transform .3s ease;
}
#gloval-nav ul li.tel a {
	font-size: 1.5rem;
	padding: 20px auto;
}
#gloval-nav ul li.tel .icon-phone {
	fill: #ccc;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	transition: opacity .9s ease, -webkit-transform 1s ease;
	transition: transform 1s ease, opacity .9s ease;
	transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

/* page_top */
#page_top {
	z-index: 10;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0.7;
	background: #5B7280;
	border-radius: 3%;
	padding: 2px 0 0 7px;
}
#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
}
#page_top a::before {
	fill: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: center;
}
.icon-arrow-top {
	font-size: 32px;
	fill: #31263F;
	margin: 15px 8px 0;
}
/* Footer */
.footer {
	color: #E0E3E5;
	font-size: .9em;
	text-align: center;
	padding: 0;
	background: #242424;
	width: 100%;
}
.footer .copy {
	color: #5E656A;
	font-size: 11px;
	text-align: center;
	padding: 20px;
	margin: 0;
}
.footer a {
	color: #A4DBFF;
}
.footer a:hover {
	color: #fff;
}