/*
Theme Name: Lightning Child Sample
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
.site-header {
    display: none;
}
div#vk-mobile-nav-menu-btn {
    display: none;
}

/* add original border-radius class  */
.add-border-radius {
	border-radius:5px;
}
.add-border-radius-m {
  border-radius: 20px;
}
.add-border {
 border: 1px solid #424242;
}

/* add original box shadow class  */
.add-box-shadow {
	box-shadow:3px 5px 16px 2px #777777;
}

/* add original negative-margin  */
.add-negative-margin {
	margin-top: -30px !important;
}

@media screen and (max-width: 781px) {
	.add-flex-direction-column-reverse {
		flex-direction: column-reverse !important;
	}
}

.add-align-items-end {
 align-items: end;
}
.add-padding-bottom-zero {
padding-bottom:unset
}
@media screen and (max-width: 781px) {
	.add-only-pc {
		display:none;
	}
}
/* <span class="add-only-pc">&emsp;&emsp;</span> */



/* ＝＝＝＝＝＝＝＝＝ */

.scroll-top {
  display:inline-block;
  position: fixed;
  right: .5%;
  bottom: 20%;
  z-index: 9999;
  text-align: center;
}

@media screen and (max-width: 783px) {
.scroll-top {
  bottom: 0%;
}

}
.scroll-top img {
 width:8em;
 height:auto;
}
.scroll-top:hover {
  cursor: pointer;
  opacity: 0.7;
}

.scroll-top{
  opacity: 0;
  transition: opacity 350ms ease;
}

.is-hide {
  pointer-events: none;
}


/* ============contact*/
.contact-box input[type=submit] {
    background-color: var(--wp--preset--color--vk-color-custom-2);
}

@media (max-width: 768px) {
	.contact-box tr{
    	display: grid;
    	width: 100%;
	}
	.contact-box th {
    width: 100%;
	}
	.contact-box td {
    width: 100%;
	}
}


input.wpcf7-form-control.has-spinner.wpcf7-submit {
    background-color: #2ed157c2;
    padding: 1em 4em;
	display: block;
    margin-inline: auto;
}

/* ========== */
.shake{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

/* @keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
} */

.shake-002{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(2deg);
  }
  50%{
      transform: rotate(-2deg);
  }
}


/* モーダル用 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 4rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-content--box {
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #888;
  text-align: center;
}