/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/


/* スマホのレスポンシブ改行 */
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

/* スマホのレスポンシブaboutスペース */
.sp-space{
	display: none;
}
@media (max-width: 600px) {
    .sp-space {
        display: inline-block;
    }
}

/* メニュー内ショップテキスト */
@media (max-width: 768px) {
.nav-grid__shop a{
	font-size: 17px;	
}
}

/* タイトル共通 */
@media (max-width: 768px) {
.title-common {
	font-size: 25px !important;
}

.subtitle-common{
	margin-bottom: -30px !important;
}
}

@media (max-width: 400px) {
	.title-common {
	font-size: 22px !important;
}
}

/* ホームaboutエリア */
@media (max-width: 768px) {
.home-about__content{
	padding-left: 10px;
	padding-right: 10px;
}
.home-about__content h2{
	font-size: 23px;
}
}

/* ホーム採用エリア */
@media (max-width: 768px) {
.home-recruit__content{
	padding-top: 2em !important;
    padding-right: 1em !important;
    padding-bottom: 2em !important;
    padding-left: 1em !important;
}
}

/* ホームfooter上部エリア */
@media (max-width: 768px) {
.home-footertop__content{
	min-height: 250px !important;
}
}

/* コンタクトタイトル */
@media (max-width: 768px) {
.contact-title01{
	margin-top: 40px !important;
}
}

/* 採用エントリーエリア */
@media (max-width: 768px) {
.recruit-footer__entrytitle{
	font-size: 13px !important;
}
}

/* ショップフッター上部エリア */
@media (max-width: 768px) {
.shop-footer__toptext{
	font-size: 20px !important;
}
}


/* プライバシーポリシー */
@media (max-width: 768px) {
	.privacy_maintitle{
		font-size: 23px;
	}
	.privacy_title{
	font-size: 20px;
}
}
	


/* iphoneSE用 */
/* ホーム紹介エリア */
@media (max-width: 400px) {
	.home-introduction__area a{
		font-size: 14px !important;
	}
	.home-introduction__title{
		font-size: 23px !important;
	}
	.home-introduction__subtitle{
		font-size: 15px !important;
	}
	.home-introduction__text{
		font-size: 14px !important;
	}
}

/* ホームAboutusエリア */
@media (max-width: 400px) {
	.home-about__content h2{
		font-size: 21px;
	}	
	.home-aboutus__subtitle{
		font-size: 21px !important;
	}
}








/* ホームトップデザイン */
.home-top_design{
	min-height: 100vh;
}

/* Googleフォント */
body{
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 既存ヘッダー削除 */
#site-header{
	display: none;
}

#vk-mobile-nav-menu-btn{
	display: none;
}

/* トップタイトル非表示 */
.page-header{
display: none;
}

/* サイトマップ非表示 */
.breadcrumb{
display: none;
}

/* 上の空白削除 */
.site-body{
padding-top: 0;
}

/* ハンバーガーを囲む青い背景枠 */
.btn-wrapper {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 70px;
    height: 70px;
    background-color: #1a1a1a;
    border-radius: 6px;
    z-index: 1000;
    display: flex;
    align-items: center;
  justify-content: center;
}

/* ハンバーガー本体 */
.btn-trigger {
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* アクティブ時の変形 */
#btn03.active {
  transform: rotate(360deg);
}

#btn03.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#btn03.active span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}

#btn03.active span:nth-of-type(3) {
  opacity: 0;
}

/*========= メニュー内容 =========*/
.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 900;
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}

.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin-bottom: 20px;
  color: #666;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.5s ease, color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #4a90e2;
}

@media (max-width: 768px) {
  .nav-grid__content {
    padding: 80px 20px;
  }

  .nav-grid__sections {
    grid-template-columns: 1fr;
  }

  .nav-grid__link {
    font-size: 20px;
  }
}




/* フッター削除 */
.site-footer{
	display: none;
}

/* フッター */
.footer_icon img{
width: 18%;
height: auto;
}













