@charset "utf-8";
/* head,text */
.h_style01{
	font-size:32px;
	font-weight:bold;
	color:#333;
	text-align:center;
	margin-bottom:40px;
}
.h_style01 span{
	padding:30px 30px 20px;
	display:inline-block;
	border-top:#E60012 solid 4px;
}
.h_style01 sub{
	display:block;
	font-size:18px;
	color:#E50012;
	font-weight: normal;
	font-family:'Century';
}
.h_style02{
	text-align:center;
	font-size:24px;
	font-weight:bold;
	color:#1F1F1F;
	margin-bottom:25px;
}
.h_style02.large{
	font-size:32px;
}
.h_style03{
	display:block;
	font-size:28px;
	font-weight:bold;
	text-align:center;
	color:#E50012;
	margin-bottom:60px;
}
.h_style03 sub{
	display:block;
	font-size:19px;
	color:#1F1F1F;
	margin-top:10px;
}
.h_style04{
	font-size:20px;
	font-weight:bold;
	color:#1F1F1F;
	padding:5px 20px;
	border-left:#1F1F1F solid 4px;
	margin-bottom:20px;
}
.h_style05{
	font-size:18px;
	font-weight:bold;
	margin-bottom:10px;
}

/* Link */
.text_link a,
a.text_link{
	text-decoration:underline;
	transition: color 0.4s;
	text-decoration-thickness:1px;
}
.text_link a:hover,
a.text_link:hover{
	text-decoration:none;
	color:inherit;
}
.block_link a,
a.block_link{
	display:block;
	transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img{
	transition: opacity 0.4s;
}
.block_link a:hover,
a.block_link:hover{
	text-decoration:none;
}
.block_link a:hover img,
a:hover img.opacity{
	opacity: 0.7;
	text-decoration:none;
}
.common_btn{
	text-align:center;
	margin:2em auto 3em;
}
.common_btn a{
	display:flex;
	width: fit-content;
	max-width: 300px;
	min-width: 220px;
	color: #6b5226;
	background: #eddec3;
	background-position: right center;
	background-size: 200% 100%;
	font-size: 1rem;
	font-weight: 600;
	padding: 10px 2em;
	min-height: 50px;
	align-items:center;
	justify-content:center;
	position:relative;
	z-index: 0;
	text-decoration:none;
	border-radius: 3em;
	margin: 1em 0;
	transition: var(--hover);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}
.common_btn a::after{
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "\FF1E";
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b5226;
	margin: auto;
	inset: 0 1em 0 auto;
	width: 1.125rem;
	height: 1.125rem;
}
.common_btn.white a{
	color: #282828;
	background: #fff;
}
.common_btn.white a::after{
	color: #282828;
}

@media (any-hover: hover) {
	.common_btn a:hover{
		filter: none;
		transform: translateY(3px);
	}
}
@media screen and (max-width:767px) {
	.common_btn{
		margin:1em auto 1em;
	}
	.common_btn a{
		max-width: 300px;
		font-size: 1.125rem;
		padding: 0.5em 2em;
		min-height: 50px;
		margin-inline: auto;
	}
	.common_btn.white a{
		font-size: 1rem;
	}
}
.arrow_btn a {
	font-weight: 600;
	padding-left: 2em;
	text-decoration-color: transparent;
	text-underline-offset: 0.25em;
	transition: text-decoration-color 0.3s;
}
.arrow_btn a::before{
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	margin: auto;
	width: 26px;
	height: 26px;
	background-image: linear-gradient(90deg, rgb(28 162 213), rgb(133 220 227));
	border-radius: 50%;
	inset: 0 auto 0 0;
}
.arrow_btn a::after{
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "\FF1E";
	line-height: 1;
	font-size: 0.6rem;
	font-weight: 600;
	color: #ffffff;
	margin: auto;
	inset: 0 auto 0 1em;
	width: 0.6rem;
	height: 0.6rem;
}
.arrow_btn a:is(:hover , :focus) {
  text-decoration-color: #282828; 
}
