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

/*お問い合わせボタン*/

.contact-button {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.contact-button:hover {
  background-color: #e68a00;
}

/* 作戦カードボタン */
a.btn_25 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	height: 4rem;
	width: auto; /* ←幅を固定せずに中身に合わせる */
	min-width: 120px; /* 最小幅だけ確保しておくといい */
	margin: auto;
	padding: 0 2rem; /* 左右のパディングを少し小さめに */
	border-radius: 100vw;
	background: #6a6e78;
	background-size: 400%;
	color: #fff;
}

a.btn_25::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%; /* ← inheritじゃなくて100%に！ */
	border-radius: inherit;
	background: linear-gradient(
		82.3deg,
		rgba(39, 172, 217, 1) 10.8%,
		rgba(18, 83, 229, 1) 94.3%
	);
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: all 0.475s ease;
}

a.btn_25:hover::before {
	transform: scaleX(1);
}

a.btn_25:hover {
	color: #fff;
}

a.btn_25 span {
	position: relative;
	z-index: 1;
}
