@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');

/* main_head
---------------------------- */
#main {
	letter-spacing: 0.05em;
}
.main_head {
	text-align: center;
}
.main_head .title {
	padding: 100px 0 0;
	font-size: 3.4rem;
	letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
	.main_head .title {
		padding: 10% 0 0;
		font-size: 2.4rem;
	}
}

/* section_lead
---------------------------- */
#section_lead {
	background-color: #fbf7e8;
	text-align: center;
	padding: 50px 0 50px;
	margin-top: 50px;
}
#section_lead .text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 3.4rem;
}
#section_lead .text span.border{
	border-bottom: 5px solid #fca215;
}
#section_lead .text span.orange {
	color: #fc7215;
}
#section_lead .text span.large {
	font-size: 5rem;
}
#section_lead .text sup {
	font-size: 1.4rem;
	vertical-align: text-top;
}
#section_lead .note {
	font-size: 1.2rem;
	padding-top: 20px;
}
@media screen and (max-width:767px) {
	#section_lead {
		padding: 5% 0 7%;
		margin-top: 10%;
	}
	#section_lead .text {
		font-size: 2rem;
	}
	#section_lead .text span.border{
		border-bottom: 3px solid #fca215;
	}
	#section_lead .text span.large {
		font-size: 3.4rem;
	}
	#section_lead .text sup {
		font-size: 1.2rem;
	}
	#section_lead .note {
		font-size: 1.1rem;
		padding-top: 15px;
	}
}

/* section
---------------------------- */
.section {
	padding-bottom: 100px;
}
.section .section_inner {
	position: relative;
	padding-top: 100px;
}
.section .num {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
}
.section h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 45px;
}
.section h2 span {
	position: relative;
	display: inline-block;
	padding-bottom: 25px;
	line-height: 1.5;
}
.section h2 span::after{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 3.5em;
  height: 1px;
  background-color: #fc7215;
}
@media screen and (max-width:767px) {
	.section {
		padding-bottom: 10%;
	}
	.section .section_inner {
		padding-top: 20%;
	}
	.section .num {
		left: 4%;
		width: 16%;
	}
	.section h2 {
		font-size: 2.2rem;
		margin-bottom: 10%;
	}
	.section h2 span {
		padding-bottom: 5%;
	}
	.section .text {
		font-size: 1.4rem;
	}
}

/* section_success
---------------------------- */
#section_success {
	padding: 100px 0;
	background-color: #fbf7e8;
}
#section_success h2 {
	font-size: 3rem;
	text-align: center;
	color: #fc7215;
}
#section_success .lead {
	font-size: 2rem;
	text-align: center;
	padding: 30px 0 15px;
}
#section_success .successBox {
	background-color: #fff;
	padding: 30px 60px;
	overflow: hidden;
	margin-top: 30px;
	box-shadow: 1px 5px 10px 0px rgba(0,0,0,0.1);
}
#section_success .successBox .img {
	float: left;
	width: 34%;
}
#section_success .successBox .text {
	float: right;
	width: 60%;
	padding-top: 10px;
}
#section_success .successBox .img p {
	font-size: 1rem;
	padding-top: 10px;
	line-height: 1.4;
}
#section_success .successBox .text .category {
	background: rgb(106,191,30);
	background: -moz-linear-gradient(90deg, rgba(106,191,30,1) 0%, rgba(147,191,30,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(106,191,30,1) 0%, rgba(147,191,30,1) 100%);
	background: linear-gradient(90deg, rgba(106,191,30,1) 0%, rgba(147,191,30,1) 100%);
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	padding: 2px 15px;
}
#section_success .successBox .text h3 {
	font-weight: bold;
	font-size: 2rem;
	border-bottom: 1px solid #90bf1e; 
	padding: 10px 0 15px;
}
#section_success .successBox .text p {
	padding-top: 20px;
}
@media screen and (max-width:767px) {
	#section_success {
		padding: 10% 0;
	}
	#section_success h2 {
		font-size: 2.2rem;
		line-height: 1.6;
	}
	#section_success .lead {
		font-size: 1.6rem;
		padding: 5% 0;
	}
	#section_success .successBox {
		padding: 4%;
		margin-top: 5%;
	}
	#section_success .successBox .img {
		float: none;
		width: 100%;
	}
	#section_success .successBox .text {
		float: none;
		width: 100%;
		padding-top: 8%;
	}
	#section_success .successBox .text .category {
		font-size: 1.4rem;
	}
	#section_success .successBox .text h3 {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	#section_success .successBox .text p {
		font-size: 1.4rem;
	}
}