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

/*
Theme Name: Lightning Child Custom
Template: lightning
Version: 1.0
*/

/* ヘッダー */
.custom-header {
  position: fixed;
  top: -100px; /* 最初は画面外 */
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.6); /* 半透明 */
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  transition: top 0.6s ease;
}
.custom-header.show {
  top: 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  height: 50px;
  width: auto;
}
.header-nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav ul{
  display:flex;
  gap:20px;
  list-style:none;
}
.header-nav .menu li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}




/* 下スクロール誘導 */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}



/* 下スクロール誘導 */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}


/* WPデフォルト余白リセット */
body.home .site-content,
body.home main {
  margin: 0;
  padding: 0;
}
/* ホームページだけ KV の直下 container の余白を消す */
body.home .container {
  max-width: 100%;
  width: 100% ;
  margin: 0 ;
  padding: 0;
}
.site-header--layout--nav-float .site-header-container,.header-top{
	display:none;
}
.site-body{
	padding:0;
}