/*
Theme Name: Lightning Child 
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.5.1
*/
/* ▼ カスタムハンバーガー */
.toggle__outer { position:fixed;z-index: 50000; top:0;}
.toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  padding: 17px;
  cursor: pointer;
  background-color:#f7b515;
  box-sizing: content-box;
}

.toggle::before {
  content: "MENU";
  position: absolute;
  font-size: 12px;
  text-align: center;
  width: 64px;
  padding-top: 40px;
  top: 0;
  left: 0;
  color:#FFF;
  font-weight: 600;
}

.toggle div {
  position: relative;
}

.toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  transition: .35s ease-in-out;
}

.toggle span:nth-child(1) { top: 0; }
.toggle span:nth-child(2) { top: 8px; }
.toggle span:nth-child(3) { top: 16px; }

/* ▼ 開閉アニメーション */
.toggle.open span:nth-child(1) {
  top: 9px;
  transform: rotate(-135deg);
}

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

.toggle.open span:nth-child(3) {
  top: 9px;
  transform: rotate(135deg);
}

/* PCでは非表示 */
@media print, screen and (min-width: 992px) {
  .toggle { display: none; }
}

/* 標準モバイルボタンを非表示に */
#vk-mobile-nav-menu-btn {
    display: none !important;
}
@media (max-width: 991.98px){
	.site-header {
		position:fixed !important;
		top:0px;
	}
	.header_scrolled .site-header-logo{
		display:block;
	}
	body {
		/* モバイル時のヘッダーの高さ */
		 padding-top:64px;
	}
	/* ヘッダー透過の時 */
	.site-header--trans--true+div {
		/* モバイル時のヘッダー高さ分マイナスオフセット */
		margin-top:-64px;
	}
}