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


.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700 !important;
  font-style: normal;
}


/*----------重なっていく円----------*/

.circle {
  position: absolute;
  border-radius: 50%;
  animation: slideAndFade 6s infinite ease-in-out;
  opacity: 0.2;
}

.circle1 {
  width: 100px;
  height: 100px;
  background: rgba(162, 199, 201, 1);
  bottom: 0;
  left: 0;
  animation-delay: 0s;
}

.circle2 {
  width: 180px;
  height: 180px;
  background: rgba(162, 199, 201, 1);
  bottom: 50px;
  left: 50px;
  animation-delay: 1s;
}

.circle3 {
  width: 300px;
  height: 300px;
  background: rgba(162, 199, 201, 1);
  bottom: 100px;
  left: 100px;
  animation-delay: 2s;
}

@keyframes slideAndFade {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1) translate(-10px, -10px); /* 右上に向かう動き */
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}
/*----------重なっていく円　ここまで----------*/

/*ハンバーガーメニューのデザイン設定*/
.vk-mobile-nav-menu-btn {
	border-color: #e68b56;
	width: 30px;
    height: 30px;
    border: 2px solid #e68b56;
}


/*-------------- Contact Form 7-------------- */
.inquiry th{
	text-align:left;}
/* 必須マーク */
.must{
	color: #fff;
	margin-right:3px;
	padding: 5px 5px;
	background: #F78DA7; /* 背景色 */

}
/* 任意マーク */
.any {
    color: #F78DA7;
	margin-right: 3px;
	padding: 5px 5px;
	background: #fff; /* 背景色 */

}

/* 項目名を太字にする */
form p {
	font-weight: 600;
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#e58853;
	border:0;
	width: 100%;
	color:#fff;
	font-size:0.9em;
	font-weight:bold;
	margin:0 auto;
	border-radius: 5px;
}
        