@charset "utf-8";

/*=============================================
				グローバルナビ
=============================================*/

.header-nav {
	background-color: rgba(255, 255, 255, 0.95);
	position: fixed;
	float: none;
	padding: 0;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
	overflow-y: scroll;
	clear: both;
	padding-bottom: 100px;
	-webkit-overflow-scrolling: touch;
}

.header-nav__list {
	width: 100%;
	padding: 0 5%;
}

.header-nav__item {
	width: 100%;
	height: 100%;
	border-bottom: dotted 2px #3f82c4;
}

.header-nav__item:first-child {
	height: 62px;
	position: relative;
}

.header-nav__item:last-child {
	border-right: none;
}

.header-nav__item:nth-child(n+2) {
	position: relative;
}

.header-nav__item:nth-child(n+2)::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #3f82c4;
	border-right: solid 2px #3f82c4;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 5%;
	margin-top: -4px;
}

.header-nav__link {
	text-decoration: none;
	display: block;
	padding: 8px 8px 8px 0;
}

.header-nav__link > i {
	display: inline-block;
	font-size: 20px;
	color: #3f82c4;
	text-align: center;
	width: 36px;
}

.header-nav__link > p {
	font-family: rmgen;
	display: inline-block;
	color: #5b5b5b;
	font-size: 18px;
	letter-spacing: 0.15em;
}


@media screen and (min-width:480px) { 

.header-nav__list {
	height: 45px;
}

.header-nav__link {
	padding: 5px 0 0 0;
}

.header-nav__link > i {
	font-size: 21px;
}

.header-nav__link > p {
	font-size: 10px;
}
}


@media screen and (min-width:768px) {
}


@media screen and (min-width:1000px) {

.header-nav {
	width: auto;
	padding: 35px 5px 0 0;
	position: static;
	background: transparent;
	border-top: none;
	height: auto;
	transition: 0.3s;
	overflow-y: auto;
	display: block !important;
}

.header-nav__list {
	width: auto;
	height: auto;
	display: block;
	padding: 0;
	text-align: right;
}

.header-nav__item {
	width: auto;
	border: none;
	display: inline-block;
	padding: 0 0 0 20px;
}

.header-nav__item:first-child {
	display: none;
}

.header-nav__item:nth-child(n+2)::after {
	content: '';
	width: 0px;
	height: 0px;
	border: none;
	position: static;
	top: 0;
	right: 0;
	margin: 0;
}

.header-nav__link {
	text-align: left;
	padding: 0;
	display: inline;
}

.header-nav__link > i {
	font-size: 24px;
	display: none;
}

.header-nav__link > p {
	font-size: 15px;
	padding: 0;
	color: #fff;
}

.is-animation .header-nav {
	padding: 30px 5px 0 0;
}

.is-animation .header-nav__item {
	padding: 0 0 0 16px;
}

.is-animation .header-nav__link > p {
	font-size: 13px;
	color: #fff;
}
}


@media screen and (min-width:1280px) {

.header-nav {
	padding: 0;
	position: absolute;
	top: 56px;
	right: 0;
}

.is-animation .header-nav {
	padding: 15px 5px 0 0;
	position: static;
}
}





/*=============================================
			ハンバーガーメニュー
=============================================*/

/*-----------ハンバーガーボタン-------------*/

#nav_toggle {
	width: 42px;
	height: 42px;
	z-index: 100;
	position: fixed;
	top: 30px;
	right: 5%;
	transform: translateY(-50%);
	border-radius: 4px;
	padding: 8px;
}

.nav_toggle__box {
	position: relative;
}

.nav_toggle__box span {
	display: block;
	height: 3px;
	border-radius: 3px;
	position:absolute;
	width: 100%;
	left: 0;
	transition: 0.3s ease-in-out;	
}

.nav_toggle__box p {
	font-size: 10px;
	font-weight: bold;
	top: 18px;
	position: absolute;
	left: -4px;
	letter-spacing: 0.15em;
	transition: 0.3s ease-in-out;
}

.nav_toggle__box span:nth-child(1) {
	top: 0;
}

.nav_toggle__box span:nth-child(2) {
	top: 7px;
}

.nav_toggle__box span:nth-child(3) {
	top: 14px;
}

.open .nav_toggle__box span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.open .nav_toggle__box span:nth-child(2) {
	width: 0;
	left: 50%;
}

.open .nav_toggle__box span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}


@media screen and (min-width: 480px) {

}


@media screen and (min-width: 768px) {

#nav_toggle {
	width: 30px;
	height: 30px;
}

.nav_toggle__box span:nth-child(1) {
	top: 4px;
}

.nav_toggle__box span:nth-child(2) {
	top: 14px;
}

.nav_toggle__box span:nth-child(3) {
	top: 24px;
}

.open .nav_toggle__box span:nth-child(1) {
	top: 14px;
}

.open .nav_toggle__box span:nth-child(3) {
	top: 14px;
}
}


@media screen and (min-width: 1000px) {

#nav_toggle {
	display: none;
}
}