 /*
Theme Name: 
Theme URI: NA
Author: T.Oka
Author URI: NA
Description: NA
Version: 1.0.0
*/
@charset "UTF-8";
html {
	scroll-behavior: smooth;
	margin: 0 !important;
	padding: 0;
}
main {
	display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 92vh;
}
.body {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: Noto Sans JP;
}
.wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	height: auto;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
a:hover {
	opacity: 0.8;
}
.heading {
	width: 100%;
	padding: 80px 0;
	padding-left:15%;
	padding-right:15%;
}
.heading h2 {
	text-align: left;
	font: normal normal bold 70px/70px Caveat;
	letter-spacing: 0px;
	color: #438B52;
	text-transform: capitalize;
	margin: 0;
}
.heading h3 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 4.167vw 0;
}
.heading h4 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 20px 0;
}
/* .heading p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 20px 0;
} */
img {
	width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
	padding: 0;
}
@media screen and (max-width: 1167px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.heading {
		padding-left: 5.33%;
		padding-right: 5.33%;
	}
	.heading h2 {
		font: normal normal bold 50px/50px Caveat;
	}
	.heading h3 {
		font-size: 18px;
		margin: 0 0 10.667vw 0;
	}
}
/* header */
header {
	width: 96.66%;
	position: fixed;	
  top: 1.667vw;
  left: 1.667vw;
	z-index: 4;
}
.header {
	display: flex;
	width: 100%;
	height: 60px;
	justify-content: space-between;
	align-items: center;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 10px #00000029;
	border-radius: 30px;
	align-items: center;
}
a.logo {
	width: 238px;
	height: 40px;
	margin: 0 0 0 2.5vw;
}
ul.menu  {
	display: flex;
	line-height: 60px;
	height: 60px;
	margin: 0;
}
li.list_entry {
	width: fit-content;
	height: auto;
	line-height: 60px;
	margin: 0;
	align-items: center;
	display: flex;
}
.menu li a.header_text {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 14px;
	line-height: 23px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #202020;
	text-decoration: none;
	margin-right: 1.167vw;
}
a.header_contact1 {	
	width: 40px;
	height: auto;
	margin: 0 0.4vw 0 0;
}
a.header_contact3 {
	width: 120px;
	height: auto;
	margin: 0 2.5vw 0 0;
}
@media screen and (max-width: 1167px) {
	header {
		width: 100%;
		height: auto;
		position: fixed;
	  top: 0;
		left: 0;
		z-index: 999;
	}
	a.logo {
		width: 174px;
		height: 34px;
		margin: 0 0 0 2.667vw;
	}
	a.header_contact2 {
		display: block;
		width: 40px;
		height: 40px;
		margin: 0 auto;
	}
	.header_sp {
		position: fixed;
		width: 100%;
		background: #fff;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		z-index: 999;
	}
	.drawer__button {
		position: relative;
		width: 50px;
		height: 50px;
		border: none;
		cursor: pointer;
		background: #438B52 0% 0% no-repeat padding-box;
	}
	.drawer__button > span {
		display: block;
		position: absolute;
		top: 40%;
		left: 50%;
		width: 25px;
		height: 2px;
		background: #fff;
		transform: translateX(-50%);
	}
	.drawer__button::after {
		display: block;
		content: "MENU";
		text-align: center;
		font: normal normal bold 10px/28px Noto Sans JP;
		letter-spacing: 0px;
		color: #FFFFFF;
		text-transform: uppercase;
		padding-top: 25px;
	}
	.drawer__button > span:first-child {
		transform: translate(-50%, calc(-50% - 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button > span:nth-child(2) {
		transform: translate(-50%, -50%);
		transition: opacity 0.3s ease;
	}
	.drawer__button > span:last-child {
		transform: translate(-50%, calc(-50% + 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button.active > span:first-child {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.drawer__button.active > span:nth-child(2) {
		opacity: 0;
	}
	.drawer__button.active > span:last-child {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.drawer__nav {
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		transition: opacity 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}
	.drawer__nav.active {
		opacity: 1;
		visibility: visible;
	}
	.drawer__nav__inner {
		position: relative;
		width: 100%;
		height: 100%;
		background: #fff 0% 0% no-repeat padding-box;
		padding: 0;
		margin: -1px 0 0 auto;
		overflow: scroll;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		text-align: center;
	}
	.drawer__nav.active .drawer__nav__inner {
		transform: translateX(0);
	}
	.drawer__nav__menu {
		list-style: none;
		padding-left: 0;
		margin-top: 100px;
	}
	.drawer__nav__item {
		margin-bottom: 20px;
	}
	.drawer__nav__link {
		text-align: center;
		font: normal normal bold 18px/26px Noto Sans JP;
		letter-spacing: 0px;
		color: #222222;
		text-decoration: none;
		line-height: 36px;
	}
	a.header_contact {
		background: #004096 0% 0% no-repeat padding-box;
		border-radius: 25px;
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	a.header_now {
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	body.active {
		height: 100%;
		overflow: hidden;
	}
}
/* fv */
#fv {
	position: relative;
}	
@media screen and (max-width: 1167px) {
	.page01 .block0 {
		height: 50px;
	}
}
/* about */
.content_wrapper {
	display: flex;
	align-items: stretch;
	margin: 0 0 50px 0;
}
.content_wrapper2 {
	display: flex;
	align-items: stretch;
	margin: 0;
}
.content_img {
	width: 40.7%;
	height: auto;
  flex-direction: column;
}
.content_img2 {
	width: 30.9%;
	height: auto;
  flex-direction: column;
}
.content_text {
	width: 56.9%;
	height: auto;
  flex-direction: column;
  display: flex;
  margin-right: 3.57%;
}
.content_text2 {
	width: 64.2%;
	height: auto;
  flex-direction: column;
  display: flex;
  margin-left: 3.57%;
}
.content_text h4 {
	text-align: left;
	font: normal normal bold 26px/30px Noto Sans JP;
	letter-spacing: 0px;
	color: #E47D22;
	margin: 0 0 10px 0;
}
.content_text p.about_text {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 40px 0;
}
p.about_content {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
.about_area {
	display: flex;
	margin: 0 0 50px 0;
}
.about_block {
	width: 47.6%;
	background: #FDFAEF 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 40px;	
}
.about_block:nth-child(2) {
	margin-left: 4.76%;
}
.about_block img {
	width: 40%;
	margin: 0 auto 10px auto;
}
p.about_title {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 10px 0;
}
p.about_name_roma {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	line-height: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #99CC94;
	text-transform: uppercase;
	margin: 0;	
}
p.about_name {
	text-align: left;
	font: normal normal bold 28px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 20px 0;
}
.about_note_block {
	background: #D9EDD6 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 20px;
}
p.about_note_text {
	text-align: left;
	font-size: 14px;
	line-height: 21px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	.d-flex {
		width: 100%;
	}
	.about_area {
		display: block;
	}
	.content_wrapper,
	.content_wrapper2 {
		display: block;
	}
	.content_img,
	.content_img2 {
		width: 90%;
		margin: 0 auto 20px auto;
	}
	.about_block:nth-child(2) {
		margin-left: 0;
	}
	.about_block {
		width: 89%;
		padding: 20px;
		margin: 0 0 20px 0;
	}
	.content_text,
	.content_text2 {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 20px;
	}
	.content_text p.about_text {
		font-size: 16px;
	}
}
/* area */
#area {
	background: #FDFAEF 0% 0% no-repeat padding-box;
}
.area_block {
	display: flex;
}
.area_img {
	width: 41.6%;
	margin-right: 4.76%;
}
.area_text1 {
	text-align: left;
	font: normal normal normal 16px/16px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 20px 0;
}
p.area_note {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 5px 0;	
}
@media screen and (max-width: 1167px) {
	.area_block {
		display: block;
	}
	.area_img {
		width: 100%;
		margin: 0 0 40px 0;
	}
}
/* plan */
.plan_area {
	display: flex;
	margin: 0 0 20px 0;
}
.plan_block {
	width: 23.8%;
	margin-right: 1.54%;
}
.plan_block:nth-child(4) {
	margin-right: 0;
}
.plan_block p span {
	font-size: 20px;
}
.plan_upper1,
.plan_upper2,
.plan_upper3,
.plan_upper4 {
	border: 1px solid #99CC94;
	border-radius: 10px 10px 0px 0px;
	padding: 10px;
}
.plan_upper1 {
	background: #D9EDD6 0% 0% no-repeat padding-box;
}
.plan_upper1 p.plan_upper1_text {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	line-height: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
}
.plan_upper2 {
	background: #99CC94 0% 0% no-repeat padding-box;
}
.plan_upper2 p.plan_upper2_text {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}
.plan_upper3 {
	background: #438B52 0% 0% no-repeat padding-box;
}
.plan_upper3 p.plan_upper3_text,
.plan_upper4 p.plan_upper4_text {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}
.plan_upper4 {
	background: #2DA08B 0% 0% no-repeat padding-box;
}
.plan_down {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #99CC94;
	border-radius: 0px 0px 10px 10px;
	opacity: 1;
	padding: 12px;
}
p.plan_down_text {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
p.plan_note {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	.plan_area {
		display: block;
		margin: 0;
	}
	.plan_block {
		width: 100%;
		margin: 0 0 10px 0;
	}
}
/* sns */
#sns {
	width: 100%;
	height: auto;
	background-image: url(../img/sns_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.sns_block {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 20px;
	padding: 30px 0;
	display: flex;
	justify-content: center;
}
.sns_content {
	width: 37.9%;
	margin-right: 2.38%;
}
p.sns_content_text {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
.sns_img {
	width: 25%;
}
@media screen and (max-width: 1167px) {
	.sns_block {
		display: block;
	}
	.sns_content {
		width: 88%;
		margin: 0 auto 20px auto;
	}
	.sns_img {
		width: 62.6%;
		margin: 0 auto;
	}
}
/* contact */
#contact {
	background: #D9EDD6 0% 0% no-repeat padding-box;
}
.contact_area {
	width: 100%;
	height: auto;
}
.contact_text_area {
	background: #FAFAFA 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 20px 0;
	margin: 0 0 70px 0;
}
.contact_text_area h4 {
	text-align: center;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #E47D22;
	margin: 0 0 5px 0;
}
.contact_text_area p {
	text-align: center;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #222222;
}
.contact-items__wrap {
	margin-bottom: 24px;
}
.contact-items__title {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #232220;
	margin-bottom: 10px;
}
.contact-items__title span {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #E47D22;
	margin-left: 10px;
}
.contact-items__editor {
	width: 96%;
}
select.form-select {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	width: 33%;
	height: 56px;
}
input.form-control {
	width: 100%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #99CC94;
	border-radius: 5px;
	height: 56px;
	padding: 5px 10px;
}
.btn_area {
	display: flex;
	justify-content: center;
}
.button_wrapper {
	display: flex;
	justify-content: center;
}
#contact button img {
	margin: 0 auto;
}
.button_wrapper button {
	background: none;
	border: none;
	margin-top: 30px;
	padding-left: 0;
	padding-right: 0;
}
.validation-block {
	color: #fff;
}
textarea.form-control {
	height: 240px !important;
	padding: 5px 10px;
	border: 1px solid #99CC94;
	border-radius: 5px;
}

.has-error .validation-block {
	text-align: left;
	color: #D30001;
}
.consent_area {
	display: flex;
	justify-content: center;
}
.consent_area label {
	margin: 0 0 0 10px;
}
.consent_area label a {
	text-decoration: underline;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0px;
	color: #438B52;
	line-height: 20px;
}
.consent_area {
	position: relative;
}
#consent-error {
  position: absolute;
  left: 50%;
  margin-top: 32px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  color: #D30001;
  font-weight: normal;
  font-size: 16px;
}
.btn {
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn01 .btn {
  background-color: #009E96;
  width: 120px;
  margin-left: 20px;
  margin-left: 15px;
  color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
	text-align: center;
}
.modal-footer {
	display: flex;
	justify-content: center;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-primary {
  background: #3958A7;
  color: #fff;
  border: 2px solid #3958A7;
}
.thanks_heading {
	padding: 25vh 4% 15vh 4%;
	text-align: center;
}
input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
@media screen and (max-width: 1167px) {
	.button_wrapper {
		width: 100%;
	}
	#contact button img {
		width: 60%;
		margin: 0 auto;
	}
	select.form-select {
		width: 66%;
	}
}
/* footer */
#footer {
	background: #438B52 0% 0% no-repeat padding-box;
	display: flex;
	justify-content: center;
	height: 50px;
}
#footer ul {
	display: flex;
	margin: 0;
}
#footer ul li {
	margin-right: 25px;
	padding-top: 12px;
}
#footer ul li:last-child {
	margin-right: 0;
}
#footer p.footer_text {
	text-align: left;
	font: normal normal normal 14px/20px Noto Sans JP;
	letter-spacing: 0px;
	color: #99CC94;
	margin: 0;
	line-height: 25px;
}
#footer a {
	text-align: left;
	text-decoration: underline;
	font: normal normal normal 14px/20px Noto Sans JP;
	letter-spacing: 0px;
	color: #99CC94;
	margin: 0;
}
.arrow_wrapper {
	width: 50px;
	height: 50px;
  position:fixed;
  right:10px;
  bottom:60px;
  cursor:pointer;
}
@media screen and (max-width: 1167px) {
	#footer {
		height: 26.666vw;
	}
	#footer ul li {
		padding-top: 3.2vw;
	}
	.cta_fixed {
		position: fixed;
		width: 100%;
		height: 13.333vw;
		bottom: 0;
	}
	.arrow_wrapper {
		width: 13.333vw;
		height: 13.333vw;
		bottom:24vw;
	}
	.cta_fixed a {
		width: 100%;
		display: inline-block;
	}
}
/* page02 */
.privacy_heading {
	padding: 160px 0;
	padding-left:15%;
	padding-right:15%;
}
.privacy_heading h2 {
	text-align: left;
}
.privacy_heading h3 {
	text-align: left;
}
.privacy_heading p {
	text-align: left;
}
@media screen and (max-width: 1167px) {
	.privacy_heading {
		padding-left:5.3%;
		padding-right:5.3%;
	}
}


.movie_wrapper {

  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.movie_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 0121 */
#service {
	background: #D9EDD6 0% 0% no-repeat padding-box;
}

.about_text2 {
	text-align: left;
	font-size: 26px;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 10px 0;
}
.aout_note_text2 {
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 10px 0;
}
.mission_area {
	background: #FDFAEF 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 50px 0;
}
.mission_text1 {
	text-align: center;
	font: normal normal bold 38px/57px Caveat;
	letter-spacing: 0px;
	color: #2DA08B;
	text-transform: capitalize;
	margin: 0;
}
.mission_text2 {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 10px 0;
}
.mission_text3 {
	text-align: center;
	font-size: 16px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
#thought {
	width: 100%;
	height: auto;
	background-image: url(../img/about_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.thought_text1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 60px 0;
	text-shadow: -2px -2px 3px #fff;
}
.thought_text2 {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 30px 0;
}
.thought_text2 span {
	color: #438B52;
	font-weight: 700;
}
@media screen and (max-width: 610px) {
	#thought {
		background-image: url(../img/about_bg_sp.png);
	}
	.thought_text1 {
		font-size: 26px;
	}
	.thought_text2 {
		text-align: left;
		font-size: 18px;
	}
}
/* features */
#features {
	background: #FDFAEF 0% 0% no-repeat padding-box;
}
.features_block {
	display: flex;
	margin: 0 0 5vw 0;
}
.features_left {
	width: 46.4%;
	margin: 0 3.5% 0 0;
}
.features_right {
	position: relative;
	width: 51.1%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 2.5vw;
}
.features_text1 {
	position: absolute;
	top: -5vw;
	left: 2.5vw;
	text-align: left;
	font-size: 7.5vw;
	font-weight: 700;
	font-family: Caveat;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
}
.features_text2 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #202020;
	margin: 0 0 8px 0;
}
.features_text2 span {
	font-size: 20px;
}
.features_text3 {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	.features_block {
		display: block;
		margin: 16vw 0 10.667vw 0;
	}
	.features_left {
		width: 100%;
		margin: 0;
	}
	.features_right {
		width: 82%;
		padding: 8vw;
	}
	.features_text1 {
		font-size: 24vw;
		top: -17vw;
		left: 3.5vw;
	}
	.features_text2 {
		font-size: 26px;
	}
}
/* flow */
.flow_area {
	display: flex;
}
.flow_block {
	position: relative;
	width: 23.8%;
	margin: 0 1.6% 0 0;
}
.flow_block:last-child {
	margin: 0;
}
.flow_img {
	margin: 0 0 20px 0;
}
.flow_text1 {
	position: absolute;
	top: -3.8vw;
	left: 0.2vw;
	text-align: left;
	font-size: 5.5vw;
	font-weight: 700;
	font-family: Caveat;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
	text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.flow_text2 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 4px 0;
}
.flow_text3 {
	text-align: left;
	font: normal normal normal 14px/21px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	.flow_area {
		display: block;
	}
	.flow_block {
		width: 100%;
		margin: 0 0 17.6vw 0;
	}
	.flow_img {
		margin: 0 0 5px 0;
	}
	.flow_text1 {
		top: -12vw;
		left: 0.2vw;
		font-size: 17.6vw;
	}
}
/* scene */
#scene {
	width: 100%;
	height: auto;
	background-image: url(../img/scene_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.scene_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.scene_block {
	width: 30.9%;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 3.65% 30px 0;
}
.scene_block:nth-child(3n) {
	margin: 0 0 30px 0;
}
.scene_down {
	background: #fff;
	padding: 10px 0;
}
.scene_text1 {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	#scene {
		background-image: url(../img/scene_bg_sp.png);
	}
	.scene_block {
		width: 100%;
		margin: 0 0 30px 0;
	}
}
/* voice */
#voice {
	background: #FDFAEF 0% 0% no-repeat padding-box;
}
.voice_block {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 5px #00000029;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 20px 0;
}
.voice_title {
	display: flex;
	align-items: center;
}
.voice_text1 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0;
}
.voice_text2 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 0 10px;
}
.voice_text3 {
	text-align: left;
	font: normal normal normal 14px/25px Noto Sans JP;
	letter-spacing: 0px;
	color: #202020;
	margin: 10px 0 0 0;
}
@media screen and (max-width: 1167px) {
	.voice_title {
		display: block;
	}
	.voice_text2 {
		margin: 5px 0 0 0;
	}
}
/* event */
#event {
	background: #D9EDD6 0% 0% no-repeat padding-box;
}
.event_block {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 20px;
	padding: 32px 0;
}
.event_text1 {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #438B52;
	margin: 0 0 10px 0;
}
.event_text2 {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	color: #202020;
	margin: 0 0 24px 0;
}
.btn_wrapper {
	display: flex;
	justify-content: center;
}
.btn_more {
	width: 210px;
	display: inline-block;
}
@media screen and (max-width: 1167px) {
}

/* work */
#work {
	width: 100%;
	height: auto;
	background-image: url(../img/work_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.work_block {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 20px;
	padding: 20px 0;
}
.work_text1 {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #438B52;
	margin: 0 0 10px 0;
}
@media screen and (max-width: 1167px) {
	#work {
		background-image: url(../img/work_bg_sp.png);
	}
	.work_block {
		padding: 20px;
	}
}
