@charset "UTF-8";
/* 見出しデザイン・テキスト装飾ボタン・フォーム・カードなど共通パーツ */

/******************/
/* 共通部分 *********/

.section-title {
	margin-bottom: var(--space-96);
	text-align: center;
	color: var(--color-white);
}

.section-title__en {
	font-family: var(--font-en);
	font-size: var(--fz-56);
	font-weight: 600;
	line-height: var(--lh-tight);
}

.section-title__ja {
	font-family: var(--font-ja);
	font-size: var(--fz-16);
	line-height: var(--lh-tight);
}

.text {
	font-size: var(--fz-16);
	line-height: 2;
	overflow-wrap: break-word;
	word-wrap: break-word;
	white-space: normal;
	word-break: break-all;
}

.text .pc {
	display: block;
}

.text .sp {
	display: none;
}

.br-pc {
	display: inline;
}
.br-sp {
	display: none;
}

.sp-only {
	display: none;
}

@media (max-width: 768px) {
	.sp-only {
		display: inline;
	}
	.br-pc {
		display: none;
	}

	.br-sp {
		display: inline;
	}
}

@media screen and (max-width: 500px) {
	.text .pc {
		display: none;
	}
	.text .sp {
		display: block;
	}
	.en-title {
		font-size: 14px;
	}

	.ja-title {
		font-size: 24px;
	}
	.section-title{
		margin-bottom: var(--space-48);
	}
	.section-title__en {
		font-size: var(--fz-40);
	}
		.section-title__ja{
font-size: var(--fz-14);
		}
}

/******************/
/* btn**********/

.btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--akamaru-color-navy_main);
	color: var(--akamaru-color-white);
	background-color: var(--akamaru-color-navy_main);
	width: 285px;
	height: 60px;
	font-size: 1.4rem;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
}

.btn.btn-white {
	background-color: var(--akamaru-color-white);
	color: var(--akamaru-color-navy_main);
}

.btn::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--akamaru-color-white);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	z-index: -1;
}

.btn.btn-white::before {
	background-color: var(--akamaru-color-navy_main);
}

.btn:hover::before {
	transform: translateX(0);
}

.btn:hover {
	color: var(--akamaru-color-navy_main);
}
.btn.btn-white:hover {
	color: var(--akamaru-color-white);
}
.arrow {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 1px;
	background-color: currentColor;
	transition: all 0.3s ease;
}
.arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease;
}

.btn:hover .arrow {
	transform: translateY(-50%) translateX(5px);
}
.btn.btn-lg {
	width: 380px;
	height: 80px;
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	.btn {
		width: 100%;
		max-width: 285px;
		height: 50px;
		font-size: 1.3rem;
	}

	.btn.btn-lg {
		max-width: 380px;
		width: 100%;
		height: 50px;
		font-size: 1.4rem;
	}

	.arrow {
		right: 18px;
		width: 12px;
	}

	.arrow::after {
		width: 5px;
		height: 5px;
	}
}
