@charset "utf-8";
/* CSS Document */
.global-nav {
	position: fixed;
	right: -320px;
	top: 0;
	width: 300px;
	height: 100vh;
	padding-top: 90px;
	background-color: #fff;
	transition: all .6s;
	z-index: 10000;
	overflow-y: auto;
	box-sizing: border-box;
}
.hamburger {
	position: fixed;
	right: 0;
	top: 0;
	width: 80px;
	height: 80px;
	cursor: pointer;
	z-index: 10001;
	background: #FBE6ED;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	display: block;
}
.global-nav__item {
	position: relative;
	list-style-type: none;
	border-bottom: 1px solid #D95281;
	z-index:1;
}
.global-nav__item.nl {
	padding: 8px 15px;
	border-bottom: 1px solid #eee;
}
.global-nav__item .nl {
	display: none;
}
.global-nav__item a {
    display: block;
    min-height: 48px;
    align-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 700;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1;
    text-align: left;
    background: #ffffff;
	color: #D95281;
	position: relative;
}
.global-nav__item a:hover {
	background-color: #FEF8FF;
	color: #b93261;
    opacity: 1;
    filter: alpha(opacity=100);
}

.global-nav__item ul.child-nav{
	height: 0;
	position: relative;
	padding-left: 0;
	z-index: 0;
}

.global-nav__item ul.child-nav.is-active{
	height: auto;
}

.global-nav__item ul.child-nav li{
	border-bottom: 1px solid #D95281;
}

.global-nav__item ul.child-nav li:last-child{
	border-bottom: 0;
}

.global-nav__item ul.child-nav li a{
	position: relative;
	min-height: 3rem;
	background: #FBE6ED;
	color: #D95281;
	padding-left: 2.5rem;
}

.global-nav__item ul.child-nav li a::before{
    content: "";
    position: absolute;
    width: 1rem;
    height: 100%;
    border-bottom: 1px dotted #D95281;
    border-left: 1px dotted #D95281;
    left: 1rem;
    top: -1.5rem;
}

.global-nav__item ul.child-nav li:first-child a::before{
	height: 50%;
	top: 0;
}

.global-nav__item ul.child-nav li a:hover{
	background-color: #D95281;
	color: #FBE6ED;
}

.global-nav__item.parent .sign{
    position: absolute;
    width: 1.75rem;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #FBE6ED;
    right: 0.875rem;
    top: 0.625rem;
	cursor: pointer;
}

.global-nav__item.parent .sign:hover{
	filter: brightness(80%);
}

.global-nav__item.parent .sign::before,
.global-nav__item.parent .sign::after{
	content: "";
	position: absolute;
	width: 1rem;
	height: 2px;
	background: #D95281;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.global-nav__item.parent .sign::after{
	transform: rotate(90deg);
}

.global-nav__item.parent .sign.is-active::after{
	transform: rotate(0);
}

.global-nav__item.parent ul.child-nav{
	margin: 0;
	visibility: hidden;
	opacity: 0;
}

.global-nav__item.parent ul.child-nav.is-active{
	visibility: visible;
	opacity: 1;
}

.hamburger__line {
    position: absolute;
    left: 21px;
    width: 38px;
    height: 2px;
    background-color: #D95281;
    transition: all .6s;
}
.hamburger__line--1 {
	top: 18px;
}
.hamburger__line--2 {
	top: 30px;
}
.hamburger__line--3 {
	top: 42px;
}
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	background-color: rgba(0,0,0,0.5);
	filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#99ffffff,EndColorStr=#99ffffff); /* IE8以下*/
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}
.m-tx {
	width: 100%;
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	font-size: 0.625rem;
	letter-spacing: 0.08em;
	color: #D95281;
	font-weight: 700;
	line-height: 1;
}
.close-tx {
	display: none;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
	right: 0;
}
.nav-open .black-bg {
	opacity: .8;
	visibility: visible;
}
.nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 30px;
}
.nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
}
.nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 30px;
}
.nav-open .open-tx {
	display: none;
}
.nav-open .close-tx {
	display: block;
}
.acco {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0px 23px;
    transition: all .5s ease;
    display: block;
    width: 46px;
    height: 46px;
}
.acco::before,
.acco::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.acco::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.acco::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
.btn-acco.close .acco::before{
	transform: rotate(45deg);
}

.btn-acco.close .acco::after{
	transform: rotate(-45deg);
}
.main-nav ul.menu-second {
	display: none;
	margin: 0;
}
.global-nav__item.menu-single {
	position: relative;
}
.global-nav__item.menu-single .btn-acco {
	position: absolute;
	right: 14px;
	top: 0;
	width: 45px;
	height: 45px;
	border: 1px solid #EEE;
	border-width: 0 0 0 1px;
	background-color: #FFF;
}
.main-nav .global-nav__item ul.menu-second a {
    font-size: .975rem;
    padding: 8px 0;
    color: #333;
}
ul.nav-recruit {
	padding: 0 14px;
	margin: 0 auto 10px auto;
	list-style-type: none;
	box-sizing: border-box;
}
ul.nav-recruit li {
	width: 100%;
}
ul.nav-recruit li a {
    display: block;
    box-sizing: border-box;
    padding: 18px 14px;
    text-align: center;
    background-color: #D95281;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 7px;
    font-size: 1rem;
    position: relative;
    outline: 1px solid #FFF;
    outline-offset: -3px;
}
ul.nav-recruit li a:hover {
	opacity: 1;
	background-color: #006;
}
ul.nav-recruit li a:after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-top: solid 2px #D95281;
	border-right: solid 2px #D95281;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 30px;
	right: 22px;
	z-index: 2;
}
ul.nav-recruit li a:before {
    position: absolute;
    content: '';
    right: 16px;
    top: 24px;
    width: 18px;
    height: 18px;
    background-color: #FFF;
    border-radius: 50vh;
}
ul.nav-about {
	padding: 0 14px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	box-sizing: border-box;
}
ul.nav-about li {
	width: 50%;
}
ul.nav-about li a {
    color: #D95281;
    text-decoration: none;
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: .75rem;
    font-weight: 500;
    border-bottom: 1px dotted #D95281;
}
ul.nav-about li a:before {
	position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: solid 4px transparent;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: transparent;
    border-left: solid 5px #D95281;
    top: 50%;
    left: 5px;
    margin-top: -3px;
}
@media screen and (min-width:1025px){
	.global-nav {
		padding-top: 120px;
	}
	.hamburger {
		width: 110px;
		height: 110px;
	}
	.hamburger__line {
		left: 29px;
		width: 52px;
	}
	.hamburger__line--1 {
		top: 26px;
	}
	.hamburger__line--2 {
		top: 40px;
	}
	.hamburger__line--3 {
		top: 54px;
	}
	.m-tx {
		bottom: 25px;
		font-size: 0.875rem;
	}
	.nav-open .hamburger__line--1 {
		top: 40px;
	}
	.nav-open .hamburger__line--3 {
		top: 40px;
	}
}
@media screen and (max-width:480px) {
	 .global-nav {
		right: -100%;
		width: 100%;
	}
}
@media screen and (max-width:360px) {
	.global-nav__item a:after {
		right: 13px;
	}
	.global-nav__item a {
		padding-right: 26px;
	}
}