@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 330px;
	height: 145px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/


/*======================
　ボタン
======================*/
.btn_box{
	width: 150px;
	margin-top: 50px;
	margin-left: 100px;
	position: absolute;
}


.btn{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.1em;
	display: block;
	width: 100%;
	height: 50px;
	color: #FFFFFF;
	line-height: 50px;
	text-decoration: none;
	text-align: center; 
	border-radius: 0;
	cursor: pointer;
	transition: 0.4s ease;
	background-color: #F87D40;

}
.btn:hover{
	border-radius: 25px;
	transform: translateY(5px);
}

/*======================
　リンク
======================*/
.link_bg{
	width: 150px;
	margin-top: 150px;
	margin-left: 100px;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	display: inline-block;
}

.link_bg img{
	width: 100%;
	display: block;
}

.link_bg::before,.link_bg::after{
	content: "";
	position: absolute;
	top:0;
	left: 0;
	transform: .3s;
	opacity: 0;
}

.link_bg::before{
	width: 100%;
	height: 100%;
	background-color: rgba(3,3,3,0.5);
}
.link_bg::after{
	width: 100%;
	height: 100%;
	content: "リンク";
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.link_bg:hover::before,.link_bg:hover::after{
	opacity: 1;
}
/*======================
　クリック
======================*/

.click_box{
	width: 220px;
	margin-top: 50px;
	margin-left: 100px;
	margin-bottom: 50px;
	position: absolute;
}

.click{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 600;
	font-size: 20px;
	position: relative;
	background-color: #FFFFFF;
	border: 2px solid #F87D40;
	display: block;
	width: 100%;
	line-height: 50px;
	color: #F87D40;
	text-decoration: none;
	text-align: center; 
	transition: all 0.4s;
	overflow: hidden;
	z-index: 10;
}

.click:hover{
	color: #fff;
	letter-spacing: 4px;
}

.click::after,.click::before{
	position: absolute;
	content: "";
	display: block;
	z-index: -1;
	box-sizing: border-box;
	transition: all 0.4s;
}

.click:hover:after{
	top: 0;
	left: 0;
	background-color: #F87D40;
}
.click::after{
	top: 0;
	left: -220px;
	width: 100%;
	height: 100%;
}