
:root {
	--ffnoto:"Noto Sans JP", sans-serif;
}

/*-----------------------------------
	contents
-----------------------------------*/
main{
	margin: 110px auto 0;
    position: relative;
	line-height: 2;
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  z-index: -1;
  width: 1px;
  background-color: #E5E5E5;
}
main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 75%;
  z-index: -1;
  width: 1px;
  background-color: #E5E5E5;
}
.center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #E5E5E5;
  transform: translateX(-50%);
  pointer-events: none;
	z-index: -1;
}

.w_box{
	background: #fff;
	border: 1px solid #EBEBEB;
	border-radius: 20px;
	box-sizing: border-box;
}

.arrow_btn{
	background: #46AF1A;
	color: #fff;
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	padding: 15px 0;
	position: relative;
	max-width: 340px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	transition: 0.3s;
}
.arrow_btn::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	background: url("../img/lower/arrow.svg")no-repeat center/contain;
	width: 40px;
	height: 7px;
}
.arrow_btn:hover{
	letter-spacing: 0.15em;
    opacity: 0.8;
}
.fc_green{
	color: #46af1a;
}

/*title_box*/
.title_box{
	padding: 80px 0 0;
}
.title_box span{
    font-size: 16px;
    color:#46AF1A;
}

.h4_ttl{
	font-size: 28px;
	font-weight: 700;
	color: #000;
	font-family: var(--ffnoto);
	padding: 0 0 19px;
	position: relative;
	margin: 0 auto 60px;
}
.h4_ttl::before,
.h4_ttl::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
}
.h4_ttl::before{
	background: #EBEBEB;
	width: 100%;
}
.h4_ttl::after{
	background: #46AF1A;
	width: 40px;
}

.h5_ttl{
	font-size: 32px;
	font-weight: 700;
	color: #000;
	padding: 0 0 18px;
	position: relative;
	margin: 0 auto 30px;
	text-align: center;
}
.h5_ttl::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 2px;
	background: #46AF1A;
	width: 40px;
}

@media screen and (max-width: 640px){
	.w_box{
		border-radius: 10px;
	}
	.title_box{
		padding: 30px 0 0;
	}
	.arrow_btn{
		font-size: 14px;
		padding: 10px 0;
		width: 260px;
	}
	.arrow_btn::before{
		width: 25px;
		right: 15px;
	}
	
	.h4_ttl{
		font-size: 22px;
		padding: 0 0 10px;
		margin: 0 auto 20px;
	}
	.h5_ttl{
		font-size: 26px;
		padding: 0 0 10px;
	}
}

/*-----------------------------------
	breadcrumbs
-----------------------------------*/
.breadcrumb{
    text-align: end;
    margin: 80px auto 0;
	font-size: 14px;
}
.breadcrumb a{
	color: #46AF1A;
	text-decoration: underline;
	padding-right: 20px;
	margin-right: 5px;
	position: relative;
	font-weight: 700;
}
.breadcrumb a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 11px;
	height: 1.5px;
	background: #A8A8A8;
}
.breadcrumb span{
	color: #212121;
	font-weight: 700;
}

@media screen and (max-width: 640px){
	.breadcrumb{
		margin: 20px auto 0;
	}
}
