@charset "UTF-8";



/****************************************************
 * ボタンデザイン｜シングル用
 ****************************************************/

.buttonCTA {
	text-align: center;
}
.buttonCTA-microcopy {
	font-size: 80%;
	color: #666;
	margin-bottom: 10px;
	opacity: 0.8;
	letter-spacing: 0.02em;
}
.buttonCTA-text {
	display: inline-block;
	min-width: 70%;
	padding: .8em 1.5em;
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, #8CC7C6 0%, #6FAEC0 100%);
	border-radius: 9999px;
	position: relative;
	overflow: hidden;
	transition: filter 0.4s ease, box-shadow 0.4s ease;
	filter: brightness(1);
	box-shadow: 0 4px 8px rgba(110, 174, 192, 0.25), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 768px) {
	.buttonCTA-text {
		font-size: 120%;
	}
}
.buttonCTA-text:hover {
	filter: brightness(1.1);
	color: #FFF;
	box-shadow: 0 6px 16px rgba(110, 174, 192, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.5);
}
.buttonCTA-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.35) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-25deg);
	animation: buttonCTA-shine 3.2s ease-in-out infinite;
}
@keyframes buttonCTA-shine {
	0% { left: -75%; }
	100% { left: 125%; }
}



/****************************************************
 * ボタンデザイン｜横並び用
 ****************************************************/

.buttonCTA2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.buttonCTA2-item {
	width: 100%;
	max-width: 360px;
	text-align: center;
}
@media (max-width: 600px) {
	.buttonCTA2 {
		flex-direction: column;
		align-items: center;
	}
	.buttonCTA2-item {
		max-width: 320px;
	}
}
.buttonCTA2-caption {
	color: #666;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px;
	animation: buttonCTA2-captionBlink 1.6s ease-in-out infinite;
}
@keyframes buttonCTA2-captionBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}
.buttonCTA2-caption::before {
	content: "＼";
	margin-right: 0.3em;
}
.buttonCTA2-caption::after {
	content: "／";
	margin-left: 0.3em;
}
.buttonCTA2-button {
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 14px 20px;
	border-radius: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.buttonCTA2-button br{
	display: none;
}
.buttonCTA2-leftButton {
	color: #FFF;
	background: linear-gradient(to right, #70B0E6, #6B8CE3);
}
.buttonCTA2-rightButton {
	color: #223366;
	background-color: #E5EAF4;
}
.buttonCTA2-button:hover {
	opacity: 0.95;
	transform: translateY(-3px) scale(1.03);
	color: #C2D6FF;
}



/****************************************************
 * ボタンデザイン｜オリジナル
 ****************************************************/

.buttonShiny {
	display: block;
	position: relative;
	padding: 1em 1.5em;
	background: linear-gradient(to bottom right, #CE9FFC, #7367F0);
	box-shadow: 0 3px 0 0 #594DD6;
	border-radius: 50px;
	margin: 30px auto;
	font-weight: bold;
	font-size: 16px;
	max-width: 500px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	transition: 300ms;
	z-index: 0;
}
.buttonShiny::before {
	position: absolute;
	content: '';
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #B5E7FF;
	animation: shinyshiny 2.5s ease-in-out infinite;
	z-index: 1;
}
.buttonShiny:hover {
	color: #FFF;
	box-shadow: none;
	transform: translateY(3px);
}
@keyframes shinyshiny {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes shinyshiny {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
