/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/*---------------------------------------------共通---------------------------------------------*/
/*header*/
.site-header-container{
	width: calc(100% + (var(--vk-width-full) - 100%) / 2);
    margin-left: calc((100% - var(--vk-width-full)) / 4);
    margin-right: calc((100% - var(--vk-width-full)) / 4);
    max-width: var(--vk-width-full);
}
/*header-logo*/
@media (min-width: 992px) {
    .site-header-logo img {
        max-height: 32px !important;
    }
}

/*header-nav*/
.global-nav-list>li:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 0;
    border-bottom: 1px solid #ffffff !important;
    transition: all .5s ease-out;
}

/*footer*/
.f-tel{
	font-size:1.8rem;
}
.f-li-none{
	padding-left:0 !important;
}
.f-li-none li::before {
	display:none !important;
}

@media (min-width: 0px) and (max-width: 991.98px){
.f-end{
	display:block !important;
}
.copyright{
	text-align:center;
}
}

/*footer-nav*/
@media (min-width: 768px) and (max-width: 991.98px){
.f-nav{
	font-size:13px;
}
}
@media (min-width: 0px) and (max-width: 575.98px){
.f-nav{
	font-size:12px;
}
}

.f-nav a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.f-nav a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -7px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#0b52a0;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}
/*現在地とhoverの設定*/
.f-nav a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*CTA*/
.cta-cover span{
	transition:0.3s;
}
.cta-cover a:hover .cta-cover span{
	background-color:#333333 !important;
}

/*========= デフォルトページtopボタン===============*/
.page_top_btn {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: 47px;
    height: 47px;
    color: transparent;
    border: none;
    background: rgb(33 42 55);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, .8), 0 0 0 0px rgba(0, 0, 0, .8); 
    background-image: var(--ver_page_top_button_url);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: 0.3s !important;
    text-decoration: none;
}
.page_top_btn:hover{
	background: #0B52A0;
	background-image: var(--ver_page_top_button_url);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #212A37;
	z-index: 9999999;
	text-align:center;
	color:#fff;
	letter-spacing: 2px;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size:4rem;
	letter-spacing: 2px;
	transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #0B52A0;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*Google Fonts*/
.yuji-syuku-regular {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
}


/*---------------------------------------------ホーム---------------------------------------------*/
.hero--text{
	font-size:5rem;
	text-shadow: 0 0 12px black;
	line-height: 1;
}
.hero--text2{
	font-size:2rem;
	text-shadow: 0 0 12px black;
}
@media (min-width: 0px) and (max-width: 767.98px){
.hero--text{
	font-size:3rem;
}
.hero--text2{
	font-size:1.5rem;
}
}



/*---------------------------------------------お問い合わせ---------------------------------------------*/
.submit-btn{
	margin:auto;
	text-align:center;
}

.submit-btn p{
	margin-bottom:0;
}

.wpcf7-spinner{
	display:block;
	margin:12px auto;
}