@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 330px;
	height: 145px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/
.btn-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	height: 30vh;
}


.btn-box{
	position: static; /* 絶対位置指定を解除 */
	transform: none;
	margin: 0;
}

.btn {
	display: block;
	width: 200px;
	height: 78px;
	line-height: 78px;
	font-size: 24px;
	text-decoration: none;
	background-color: #ff9933;
	color: #fff;
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

.btn:hover {
	background-color: #fff;
	border: 2px solid #f15a4a;
	color: #f15a4a;
}
/*=================
リンクボタン
=================*/
.btn-box-link{
	position: static; /* 絶対位置指定を解除 */
	transform: none;
	margin: 0;
}

.btn-link{
	position: relative;
	display: block;
	width: 200px;
	height: 78px;
	line-height: 78px;
	font-size: 24px;
	text-decoration: none;
	background-color: #fff;
	color: #f15a4a;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn-link:hover:before {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 0;
	left: 0;
	border: 3px solid #f15a4a;
	border-width: 3px 0 0 3px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn-link:hover::after {
	content: "";
	height: 25px;
	width: 25px;
	position: absolute;
	top: 53px;
	left: 174px;
	border: 3px solid #f15a4a;
	border-width: 0 3px 3px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn-link:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 3px solid #f15a4a;
	border-width: 3px 0 0 3px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn-link:after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 3px solid #f15a4a;
	border-width: 0 3px 3px 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
/*=================
こちらをクリック
=================*/
.btn-box-click{
	position: static; /* 絶対位置指定を解除 */
	transform: none;
	margin: 0;
}

.btn-click {
	display: block;
	width: 200px;
	height: 78px;
	line-height: 78px;
	font-size: 24px;
	text-decoration: none;
	background-color: #ff9933;
	color: #fbfbfb;
	text-align: center;
	cursor: pointer;
	border-radius: 39px;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.btn-click:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}