@charset "utf-8";

/*
各ページ用パーツ
ボタン・リンクテキスト
*/

/* ボタンエリア
---------------------------------------------------- */
.btnblock01 {
	margin: 0 auto 110px;
	width: 100%;
	max-width: 1440px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (max-width:900px) {
	.btnblock01 {
		margin: 0 auto 50px;
	}
}

.btn_size01 {
	width: 380px;
	margin: 0 20px 20px;
}

.btn_size02 {
	width: 100%;
	max-width: 520px;
	margin: 0 20px 20px;
}

.btn_margin01 {
	margin-bottom: 50px;
}

@media screen and (max-width:900px) {
	.btn_margin01 {
		margin-bottom: 20px;
	}
}


/* ボタン01
---------------------------------------------------- */
.btn_style01 {
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
	overflow: hidden;
}

.btn_style01 a {
	display: block;
	color: #EC8B2D;
	padding: 30px 0;
	border: 2px solid #BBBBBB;
	border-radius: 90px;
	transition: all .6s;
	position: relative;;
}

.btn_style01 a::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #EC8B2D;
	border-right: 0;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
}

.btn_style01 a:visited {
	color: #EC8B2D;
}

.btn_style01 a:hover {
	color: #fff;
	border: 2px solid #EC8B2D;
	background: #EC8B2D;
	opacity: 0.6;
}

.btn_style01 a:hover::after{
	border-left: 6px solid #fff;
}


@media screen and (max-width:900px) {
	.btn_style01 {
		font-size: 1.6rem;
	}
	.btn_style01 a {
		padding: 15px 0;
		border-radius: 15px;
		border: 2px solid #EC8B2D;
	}
}


/* ボタン02
---------------------------------------------------- */
.btn_style02 {
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
	overflow: hidden;
}

.btn_style02 a {
	display: block;
	color: #EC8B2D;
	padding: 30px 0;
	border: 2px solid #EC8B2D;
	background: #fff;
	border-radius: 5px;
	transition: all .6s;
	position: relative;;
}

.btn_style02 a::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #EC8B2D;
	border-right: 0;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
}

.btn_style02 a:visited {
	color: #EC8B2D;
}

.btn_style02 a:hover {
	color: #fff;
	border: 2px solid #EC8B2D;
	background: #EC8B2D;
	opacity: 0.6;
}

.btn_style02 a:hover::after{
	border-left: 6px solid #fff;
}


@media screen and (max-width:900px) {
	.btn_style02 {
		font-size: 1.6rem;
	}
	.btn_style02 a {
		padding: 15px 0;
		border-radius: 10px;
		border: 2px solid #EC8B2D;
	}

	.btn_style02 a::after{
		right: 10px;
	}
}



/* テキストリンク01
---------------------------------------------------- */
.link_txt_style01 {
	position: relative;
}

.link_txt_style01 a {
	display: block;
	font-size: 1.6rem;
	line-height: 2;
	color: #EC8B2D;
	padding: 0 0 10px 25px;
	border-bottom: 1px solid #EC8B2D;
	position: relative;
	transition: all .6s;
}

.link_txt_style01 a::after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border: 1px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 12px;
	left: 5px;
}

.link_txt_style01 a::before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #EC8B2D;
	position: absolute;
	top: 6px;
	left: 0;
}

.link_txt_style01 a:visited {
	color: #EC8B2D;
}

.link_txt_style01 a:hover {
	opacity: 0.6;
}

@media screen and (max-width:900px) {
	.link_txt_style01 a {
		font-size: 1.4rem;
		padding: 0 0 5px 20px;
	}

	.link_txt_style01 a::after{
		top: 10px;
		left: 3px;
	}

	.link_txt_style01 a::before{
		width: 15px;
		height: 15px;
		top: 6px;
		left: 0;
	}
}

/* テキストリンク02
---------------------------------------------------- */
.link_txt_style02 {
	position: relative;
}

.link_txt_style02 a {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2;
	color: #EC8B2D;
	padding: 0 0 10px 25px;
	position: relative;
	transition: all .6s;
}

.link_txt_style02 a::after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border: 1px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 12px;
	left: 5px;
}

.link_txt_style02 a::before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #EC8B2D;
	position: absolute;
	top: 6px;
	left: 0;
}

.link_txt_style02 a:visited {
	color: #EC8B2D;
}

.link_txt_style02 a:hover {
	opacity: 0.6;
}

@media screen and (max-width:900px) {
	.link_txt_style02 a {
		font-size: 1.4rem;
		padding: 0 0 5px 20px;
	}

	.link_txt_style02 a::after{
		top: 10px;
		left: 3px;
	}

	.link_txt_style02 a::before{
		width: 15px;
		height: 15px;
		top: 6px;
		left: 0;
	}
}