@charset "UTF-8";

/* ▼▼▼ トップ
======================================================*/
#mainVisual {
	width: 90%;
	margin: 0 0 0 auto;
	padding-top: 3.5%;
	position: relative;
}

#mainVisual::before {
	content: "";
	width: calc(100% + 10vw);
	height: calc(100% - 13vh);
	background-color: #C3D825;
	position: absolute;
	top: 20%;
	left: -10vw;
	z-index: -1;
}

#mainVisual .bg {
	position: relative;
	z-index: -1;
}

#mainVisual .bg .inner {
	position: absolute;
	top: 25%;
	width: 100%;
}

#mainVisual .bg .inner div {
	width: 41%;
	max-width: 432px;
	margin: 0 auto 27px;
}

#mainVisual .bg .inner p {
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 2px;
}

#mainVisual .bg .inner p span {
	font-size: 22px;
}

#mainVisual .border {
	position: relative;
	left: 18%;
	text-align: right;
	font-size: 18px;
}

#mainVisual .border:before {
	content: '';
	position: absolute;
	left: 100%;
	bottom: 0;
	width: 0;
	transform: translateX(-100%);
	border-bottom: solid 2px #000;
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

/* SERVICE */
#service {
	position: relative;
	margin-bottom: 15%;
}

#service::before {
	content: "";
	width: calc(100% - 3%);
	height: calc(100% - 16%);
	background-color: #C3D825;
	position: absolute;
	bottom: -7%;
	left: 0;
	z-index: -1;
}

#service .subtitle {
	font-size: 20px;
	font-weight: bold;
}

#service ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#service ul li {
	width: 48%;
	margin-bottom: 50px;
}

#service ul li p {
	font-size: 50px;
	position: relative;
	bottom: -50px;
	left: 10px;
}


#service .subtitle {
	font-size: 20px;
	font-weight: bold;
}

#service ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#service ul li div {
	margin-bottom: 10px;
}

#service ul li dl dt {
	font-size: 24px;
	font-weight: 500;
}

/* REVIEW */
#review {
	width: 100%;
	background-color: #F4F7E1;
	position: relative;
	padding-bottom: 67px;
}

#review:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: -133px;
	left: 50%;
	border-bottom: 133px solid #F4F7E1;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	transform: translateX(-50%);
}

#review .review_title div {
	width: 50%;
	max-width: 500px;
	margin: 0 auto;
}

#review .review_title p {
	text-align: center;
}

#review ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}

#review ul li {
	width: 45%;
	max-width: 544px;
	margin: 1% 2%;
	position: relative;
}

#review ul li:before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #CFDF50, #F6FDBB);
	position: absolute;
	bottom: -10px;
	right: -10px;
}

#review ul li:nth-child(even)::before {
	right: auto;
	left: -10px;
}

#review ul li>div {
	height: 100%;
	background-color: #fff;
	padding: 20px 31px;
	position: relative;
}

#review ul li dl {
	display: flex;
	align-items: center;
}

#review ul li:nth-child(even) dl {
	flex-direction: row-reverse;
	justify-content: space-between;
}

#review ul li dl dt {
	width: 95px;
	height: 95px;
	padding: 0 5px;
}

#review ul li dl dd {
	font-size: 18px;
	font-weight: bold;
	padding: 0 5px;
}

#review .btn {
	text-align: center;
}

#review .btn a {
	color: #fff;
	background-color: #6C1D13;
	font-weight: bold;
	padding: 10px 60px 10px 45px;
	position: relative;
}

#review .btn a::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	margin: auto;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	right: 20px;
	bottom: 0;
}

/* link */
#link {
	background-color: #CFDF50;
	padding: 140px 0 160px;
	position: relative;
}

#link::before {
	content: "";
	width: 4vw;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
}

#link>.container>ul {
	display: flex;
	justify-content: space-between;
}

#link>.container>ul>li {
	width: 45%;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
	position: relative;
}

#link>.container>ul>li a {
	display: flex;
	width: 100%;
	height: 140px;
	color: #fff;
	padding: 0 20px;
	align-items: center;
}

#link>.container>ul>li::before {
	content: "";
	width: 15px;
	height: 15px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	margin: auto;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	right: 20px;
	bottom: 0;
}

#link>.container>ul>li .oswald {
	font-size: 46px;
	margin-right: 15px;
}

#link>.container>ul>li p:nth-of-type(2),
#link>.container>ul>li ul li {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}

#link>.container>ul>li ul li span {
	font-size: 7px;
}

/* ACCESS */
#access {
	padding: 140px 0;
}

#access h2 {
	margin-bottom: 60px;
	text-align: center;
}

#access .text_area dl {
	display: flex;
	flex-wrap: wrap;
}

#access .text_area dl dt {
	width: 30%;
}

#access .text_area dl dd {
	width: 70%;
}

#access .text_area .box {
	width: 90%;
	background-color: #F4F7E1;
	border: 3px solid #CFDF50;
	padding: 20px;
}

#access .text_area .box .lead {
	font-size: 20px;
	font-weight: bold;
}

#access .text_area .box .detail {
	font-size: 18px;
	line-height: 1.4;
}

#access .map_container {
	position: relative;
	width: 54%;
	height: 0;
	padding-top: 36%;
}

#access .map_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* line */
#line {
	margin-bottom: 200px;
}

#line .container {
	background-color: #06C755;
	display: flex;
	border-radius: 20px;
	padding: 45px 60px;
}

#line .title {
	text-align: center;
	margin-bottom: 20px;
}

#line .title span {
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	position: relative;
}

#line .title span::before,
#line .title span::after {
	content: "";
	width: 36px;
	height: 40px;
	position: absolute;
	bottom: 0;
}

#line .title span::before {
	background: url(../img/line_title_l.svg)no-repeat top center /contain;
	left: -50px;
}

#line .title span::after {
	background: url(../img/line_title_r.svg)no-repeat top center /contain;
	right: -50px;
}

#line .detail {
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin-top: -30px;
	margin-bottom: 40px;
}

#line .img_area {
	width: 80%;
}

#line .btn {
	display: flex;
	justify-content: center;
}

#line .btn a {
	background: linear-gradient(to bottom, #CFDF50, #F6FDBB);
	color: #6C1D13;
	border-radius: 50px;
	font-size: 26px;
	padding: 15px 40px;
	position: relative;
}

#line .btn a::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 1px solid #6C1D13;
	border-right: 1px solid #6C1D13;
	margin: auto;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	right: 20px;
	bottom: 0;
}

/* ▼▼▼ 480px〜768px
======================================================*/
@media screen and (max-width: 768px) {


	#mainVisual {
		padding-top: 0;
		margin: 0 0 0 40px;
		position: relative;
	}

	#mainVisual::before {
		top: 30%;
		left: -18vw;
	}

	#mainVisual .bg .inner p {
		font-size: 15px;
	}

	#mainVisual .bg .inner p span {
		font-size: 13px;
	}

	#mainVisual .border {
		left: 4%;
	}

	#service {
		top: 100px;
		padding-bottom: 220px;
	}

	#service::before {
		width: calc(100% - 20px);
		bottom: 5%;
	}

	#service .subtitle {
		font-size: 18px;
		text-align: center;
	}

	#service ul {
		display: block;
	}

	#service ul li {
		width: 100%;
		padding: 0 20px;
		margin-bottom: 0;
	}

	#service ul li p {
		font-size: 40px;
		bottom: -40px;
		left: 5px;
	}

	#service ul li dl dt {
		font-size: 20px;
		text-align: center;
		margin-bottom: 10px;
	}

	#review {
		top: -40px;
		padding-bottom: 77px;
	}

	#review:before {
		top: -73px;
		border-bottom: 76px solid #F4F7E1;
	}

	#review .review_title {
		margin-bottom: 30px;
	}

	#review .review_title div {
		width: 100%;
		padding: 0 20px 10px;
	}

	#review ul {
		display: block;
	}

	#review ul li {
		width: 87%;
		max-width: 335px;
		margin: 0 auto 40px 20px;
	}

	#review ul li:nth-child(even) {
		margin: 0 20px 40px auto;
	}

	#review ul li dl dt {
		width: 55px;
		height: 55px;
	}

	#review ul li dl dd {
		font-size: 16px;
	}

	#review ul li>div {
		padding: 20px;
	}

	#review .btn a::before {
		width: 8px;
		height: 8px;
	}

	#link {
		margin-top: -40px;
		padding: 50px 0 80px;
	}

	#link>.container>ul {
		display: block;
		margin-left: 20px;
	}

	#link>.container>ul>li {
		width: calc(100% - 20px);
		border-width: 2px;
	}

	#link>.container>ul>li:nth-child(2) .oswald {
		margin-right: 44px;
	}

	#link>.container>ul>li:not(:last-child) {
		border-bottom: none;
	}

	#link>.container>ul>li::before {
		width: 10px;
		height: 10px;
		border-width: 1px;
	}

	#link>.container>ul>li .oswald {
		font-size: 36px;
	}

	#link>.container>ul>li p:nth-of-type(2),
	#link>.container>ul>li ul li {
		font-size: 13px;
	}

	#access {
		padding: 70px 0;
	}

	#access h2 {
		margin-bottom: 40px;
	}

	#access .text_area p,
	#access .text_area dl {
		font-size: 16px;
	}

	#access .text_area .box {
		width: 100%;
		margin-bottom: 20px;
	}

	#access .text_area .box .lead {
		font-size: 18px;
	}

	#access .text_area .box .detail {
		font-size: 16px;
	}

	#access .map_container {
		width: 100%;
		padding-top: 76%;
	}

	#line {
		padding: 0 20px;
	}

	#line .container {
		padding: 40px 25px;
	}

	#line .title {
		margin-bottom: 5px;
	}

	#line .title span {
		font-size: 27px;
	}

	#line .title span::before,
	#line .title span::after {
		width: 27px;
		height: 30px;
	}

	#line .text_area div {
		width: 100%;
		margin-bottom: 35px;
	}

	#line .btn a {
		width: 100%;
		font-size: 18px;
		text-align: center;
	}

	#line .btn a::before {
		width: 8px;
		height: 8px;
		right: 30px;
	}
}