@charset "utf-8";
/* ------------------------------------- */
/* Reset */
/* ------------------------------------- */
a{
	color: #065FD4;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}
/* ------------------------------------- */
/* usually_header */
/* ------------------------------------- */
.usually_header{
	width: 100%;
}
.usually_header_inner{
	padding: 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #CCD0F1;
	box-shadow: 0 4px 5px -4px rgba(0,0,0,0.1);
	z-index: 1;
	text-align: left;
}
.usually_header h1{
	width: 110px;
}
/* ------------------------------------- */
/* usually_footer */
/* ------------------------------------- */
.usually_footer{
	width: 100%;
}
.usually_footer_inner{
	padding: 60px 0;
	background-color: #303945;
	text-align: center;
	color: #fff;
}
/* ------------------------------------- */
/* content */
/* ------------------------------------- */
.content_body{
	width: 1000px;
	margin: 0 auto;
	padding: 30px 0 60px;
	color: #333;
	font-size: 16px;
	line-height: 1.75;
}
/* ------------------------------------- */
/* ボタン共通 */
/* ------------------------------------- */
.button{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 30px;
	box-sizing: border-box;
	transition: 0.2s ease-in-out;
	box-shadow: 0 2px 4px 0px rgba(0,0,0,0.3);
}
.button i{
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.button::after{
	font-family: 'Font Awesome 6 Pro';
	content: '\f105';
	font-weight: 900;
	font-size: 16px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s ease-in-out;
}
.button:hover{
	text-decoration: none;
	transform: scale(1.05);
}
.button:hover::after{
	right: 15px;
}
.btn_blue{
	background-color: #065FD4;
	color: #fff;
}
.btn_orange{
	background-color: #FC7D32;
	color: #fff;
}
.btn_white_orange{
	background-color: #fff;
	color: #FC7D32;
	border: 3px solid #FC7D32;
}
.btn_white_blue{
	background-color: #fff;
	color: #065FD4;
	border: 3px solid #065FD4;
}