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

/* スクロールボタンのベース */

/* 円形テキスト */
.circle-text {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  animation: rotateText 10s linear infinite;
}

.circle-text text {
  font-size: 10px;
  fill: white;
  text-transform: uppercase;
  letter-spacing: 2px;
	font-weight: bold; 
}

/* 真ん中の矢印 */
.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
	font-weight: bold; 
  color: white;
}



/* テキストを回転 */
@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width:768px) {
  .scroll-btn {
    display:none !important;
  }

  /* リングの文字をやや小さく */
  .circle-text text {
    font-size: 9px;
    letter-spacing: 1.6px;
  }

  /* 中央の矢印も少し小さく */
  .scroll-arrow {
    font-size: 22px;
  }
}

.wp-block-columns {
    margin-bottom: 1.5em !important;
}
.is-layout-flex {
    gap: 15!important;
}


/*------------- Contact Form 7------------- */
/* 必須マーク */
.must{
	color: #fff;
	margin-right: 10px;
	padding: 6px 10px;
	background: #e26c0c; /* 背景色 */
	border-radius: 0px;
}
/* 任意マーク */
.any {
    color: #76573C !important;
	margin-right: 10px;
	padding: 6px 10px;
	background: #fff; /* 背景色 */
	border-radius: 0px;
}

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