@charset "UTF-8";



/* ----------メニュー---------- */

/* -----全体----- */

.menu_all {
	width: 1200px;
	margin: 0 auto 80px;
}

/* ハンバーガーメニュー無効化 */

.toggle,
.global_nav {
	display: none;
}



/* -----メニュー----- */

/* ロゴとメニューの横並び */

.main_logo,
.drop_menu,
.drop_menu li {
	display: inline-block;
	vertical-align: bottom;
}



/* 全体 */

.drop_menu {
	float: right;
	padding-top: 8px;
}

/* 線 */

.line:not(:first-child) {
	padding-left: 15px;
	border-left: solid 0.5px #dcdddd;
}

.line:not(:last-child) {
	padding-right: 15px;
}

/* 矢印 */

.arrow_l {
	font-size: 20px;
	color: #abcd03;
}

/* ホームボタン */

.home_icon {
	color: #abcd03;
	font-size: 22px;
	padding-top: 10px;
}

/* 1行目 */

.drop_menu a {
	font-size: 16px;
	color: #6f6f69;
	font-weight: normal;
}

.drop_menu li {
	line-height: 20px;
}

/* 2行目 */

.drop_menu a span {
	letter-spacing: 1px;
	color: #dfdfaa;
	font-size: 14px;
	font-weight: normal;
}

/* ドロップ */

.sub a {
	font-size: 14px;
}

.sub a:hover {
	background: #6f6f69;
	color: #f8f8ec;
	opacity: 1;
}



/* ウィンドウ幅が0?479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{



/* ----------メニュー---------- */

/* PC用無効化 */

.menu_all {
	display: none;
}



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

/* 有効化 */

.toggle,
.global_nav {
	display: inline-block;
}

/* アイコン */

.toggle {
	position: fixed; /* bodyに対しての絶対位置指定 */
	left: 8px;
	top: 8px;
	display: block;
	width: 45px;
	height: 43px;
	cursor: pointer;
	z-index: 10;
	background: #abcd03;
}

.toggle span {
	display: block;
	position: absolute; /* .toggleに対して */
	width: 60%;
	border-bottom: solid 3px white;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	padding-top: 10px;
	left: 9px;
}

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

.toggle span:nth-child(2) {
	top: 10px;
}

.toggle span:nth-child(3) {
	top: 20px;
}

/* 最初のspanをマイナス45度に */

.toggle.active span:nth-child(1) {
	top: 11px;
	left: 5.5px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */

.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
	top: 11px;
	left: 12.5px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* メニューテキスト */

.toggle p {
	margin: 0;
	color: white;
	font-size: 12px;
	position: absolute;
	top: 30px;
	left: 10px;
}

/* メニュー */

.global_nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
	z-index: 9;
	padding: 40px 0 20px;
	text-align: center;
	color: #000;
	background: #f8f8ec;
	transition: all 0.8s;
}

.global_nav .nav_li {
	width: 300px;
	margin: 0 auto;
	padding: 7px 0;
	list-style-type: none;
}

.global_nav .nav_li:not(:last-child) {
	border-bottom: solid 0.3px #dbdcd9;
}

.global_nav .nav_li a {
	display: block;
	color: #6f6f69;
    text-decoration: none;
}

/* .global_navに.activeが追加 */

.global_nav.active {
	transform: translateY(0%);
}

/* SNSアイコン */

.global_nav li:last-child a {
	display: inline-block;
}

.global_nav li:last-child a:first-child,
.global_nav li:last-child a:nth-child(2) {
	padding-right: 13px;
}

.global_nav li:last-child img {
	width: 25px;
}



}