 /*
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 {
	    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
	/* 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;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
		color: #202020;

}
.wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	height: auto;
}
.pc {
	display: block;
}
.sp {
	display: none;
}

a {
	display: inline-block;
}

img {
	width: 100%;
	display: block;
}
a:hover {
	opacity: 0.8;
}
.heading {
	max-width: 1600px;
	width: 100%;
	padding: 80px 0;
	padding-left: min(15%, 180px);
	padding-right: min(15%, 180px);
}
.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 {
		max-width: 480px;
		padding-left: min(5.33%, 20px);
		padding-right: min(5.33%, 20px);
	}
	.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;
	flex-direction: column;
	gap: 0;
}
.area_main {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 12px;
	padding: 32px 28px 28px;
	box-shadow: 0px 2px 8px #00000014;
}
.area_main_upper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
	margin: 0 0 24px 0;
}
.area_map {
	width: 160px;
	flex-shrink: 0;
}
.area_map img {
	width: 100%;
	height: auto;
}
.area_content {
	flex: none;
}
.area_title {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #202020;
	margin: 0 0 12px 0;
	line-height: 1.5;
}
.area_text1 {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0px;
	color: #202020;
	margin: 0;
}
.area_recruit {
	background: #D9EDD6 0% 0% no-repeat padding-box;
	border-radius: 12px;
	padding: 20px 28px;
	width: 100%;
	box-sizing: border-box;
}
.area_recruit_title {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #438B52;
	margin: 0 0 10px 0;
	line-height: 1.7;
}
.area_recruit_text {
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 14px;
	color: #202020;
	line-height: 1.8;
	margin: 0;
}
@media screen and (max-width: 1167px) {
	.area_main {
		padding: 24px 20px;
	}
	.area_main_upper {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin: 0 0 20px 0;
	}
	.area_map {
		width: 120px;
		margin: 0 auto;
	}
	.area_title {
		font-size: 17px;
	}
	.area_recruit {
		padding: 20px;
	}
	.area_recruit_title {
		font-size: 15px;
		text-align: left;
	}
	.area_recruit_text {
		text-align: left;
	}
}
/* 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:10px;
  cursor:pointer;
}
@media screen and (max-width: 1167px) {
	#footer {
		height: 110px;
	}
	#footer ul li {
		padding-top: 3.2vw;
	}
	.cta_fixed {
		position: fixed;
		width: 100%;
		height: 50px;
		bottom: 0;
	}
	.arrow_wrapper {
		bottom: 60px;
	}
	.cta_fixed a {
		height: 50px;
		width: 100%;
		display: inline-block;
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		color: #fff;
		font-size: 20px;
        background: #438B52 0% 0% no-repeat padding-box;
        font-weight: 700;
	}
}
/* page02 */
.privacy_heading {
	max-width: 1600px;
	padding: 160px 0;
	padding-left: min(15%, 180px);
	padding-right: min(15%, 180px);
}
.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 {
		max-width: 480px;
		padding-left: min(5.33%, 20px);
		padding-right: min(5.33%, 20px);
	}
}


.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,
.btn-wrapper1 {
	display: flex;
	justify-content: center;
}
.btn_more,
.btn-more1 {
	text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #438b52 0% 0% no-repeat padding-box;
  border-radius: 32px;
  max-width: 220px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  color: #ffffff;

}

.btn_more:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

@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;
	} */
}
/* scene刷新 */
.scene_en_text {
	text-align: center;
	font-family: Caveat, cursive;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #99CC94;
	margin: 0 0 2px 0;
	text-transform: uppercase;
}
.scene_text2 {
	text-align: left;
	font: normal normal normal 13px/22px "M PLUS Rounded 1c", sans-serif;
	letter-spacing: 0px;
	color: #202020;
	margin: 6px 0 0 0;
	padding: 0 12px 12px 12px;
}
.scene_down {
	padding: 10px 0 0 0;
}
@media screen and (max-width: 1167px) {
	.scene_text2 {
		font-size: 14px;
		line-height: 24px;
	}
}
/* contact Facebook button */
.contact_fb_wrapper {
	display: flex;
	justify-content: center;
	margin: 0 0 30px 0;
}
.contact_fb_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 50px;
	background: #1877F2 0% 0% no-repeat padding-box;
	border-radius: 25px;
	text-decoration: none;
	text-align: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #FFFFFF;
}
.contact_fb_btn:hover {
	opacity: 0.8;
}
/* plan table 刷新 */
.plan_area {
	display: block;
	margin: 0 0 20px 0;
}
.plan_banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #D9EDD6 0% 0% no-repeat padding-box;
	border: 2px solid #438B52;
	border-radius: 6px;
	padding: 12px 20px;
	margin: 0 0 20px 0;
}
.plan_banner_text {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #202020;
	margin: 0;
	line-height: 1.6;
}
.plan_banner_num {
	font-weight: 700;
	margin-right: 4px;
}
.plan_banner_new {
	color: #C0392B;
	font-weight: 700;
	margin-right: 4px;
}
.plan_banner_price {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #C0392B;
	margin: 0;
	white-space: nowrap;
	margin-left: 20px;
}
.plan_table_wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 10px;
}
.plan_table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	font-family: "M PLUS Rounded 1c", sans-serif;
	border-radius: 10px;
	overflow: hidden;
	background: #FDFAEF;
}
.plan_table th,
.plan_table td {
	border: 2px solid #D4C5B0;
	padding: 14px 12px;
	text-align: center;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.6;
}
.plan_price_num {
	font-size: 26px;
	font-weight: 700;
	color: #202020;
	font-family: "M PLUS Rounded 1c", sans-serif;
	display: block;
	line-height: 1.2;
}
.plan_price_unit {
	font-size: 12px;
	color: #666666;
	font-family: "M PLUS Rounded 1c", sans-serif;
}
.plan_th_label {
	background: #FDFAEF;
	font-weight: 700;
	width: 18%;
	color: #202020;
	font-size: 16px;
}
.plan_th {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	width: 27.3%;
}
.plan_th._iro {
	background: #C0392B;
	border-color: #C0392B;
}
.plan_th._sumi {
	background: #0097B2;
	border-color: #0097B2;
}
.plan_th._premium {
	background: #FDC95D;
	border-color: #FDC95D;
	color: #202020;
}
.plan_td_label {
	font-weight: 700;
	color: #202020;
	background: #FDFAEF;
	font-size: 15px;
}
.plan_td {
	background: #FDFAEF;
	color: #202020;
}
@media screen and (max-width: 1167px) {
	.plan_extra_area {
		flex-direction: row;
	}
	.plan_banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.plan_banner_price {
		margin-left: 0;
	}
	.plan_table {
		min-width: 0;
		width: 100%;
	}
	.plan_th_label,
	.plan_td_label {
		width: 22%;
	}
	.plan_th,
	.plan_td {
		width: auto;
	}
	.plan_table th,
	.plan_table td {
		font-size: 13px;
		padding: 8px 5px;
	}
	.plan_th {
		font-size: 15px;
	}
	.plan_price_num {
		font-size: 18px;
	}
	.plan_price_unit {
		font-size: 11px;
	}
}
/* plan extra (5+プラン / ドリンクプラン / オプション) */
.plan_extra_area {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 16px;
	margin: 24px 0 0 0;
}
.plan_extra_block {
	flex: 1;
	background: #FDFAEF;
	border: 2px solid #D4C5B0;
	border-radius: 10px;
	padding: 24px 30px;
	font-family: "M PLUS Rounded 1c", sans-serif;
}
.plan_extra_title {
	font-size: 20px;
	font-weight: 700;
	color: #202020;
	text-align: center;
	margin: 0 0 10px 0;
}
.plan_extra_sub {
	font-size: 14px;
	color: #666666;
	text-align: center;
	margin: 0 0 6px 0;
}
.plan_extra_price {
	font-size: 16px;
	color: #202020;
	text-align: center;
	margin: 0;
}
.plan_extra_price_num {
	font-size: 28px;
	font-weight: 700;
	color: #C0392B;
}
.plan_extra_drink_list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 4px 0 0 0;
}
.plan_extra_drink_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	color: #202020;
	border-bottom: 1px solid #E8DFD0;
	padding: 8px 0;
}
.plan_extra_drink_row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.plan_extra_drink_name {
	font-weight: 500;
}
.plan_extra_drink_price {
	font-weight: 700;
	color: #202020;
}
.plan_extra_block._option .plan_extra_title {
	margin: 0 0 14px 0;
}
.plan_extra_option_list {
	display: flex;
	flex-direction: column;
}
.plan_extra_option_row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 15px;
	color: #202020;
	padding: 6px 0;
	border-bottom: 1px solid #E8DFD0;
}
.plan_extra_option_row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.plan_extra_option_name {
	white-space: nowrap;
	min-width: 120px;
}
.plan_extra_option_price {
	white-space: nowrap;
	font-weight: 700;
	text-align: right;
	min-width: 110px;
}
@media screen and (max-width: 960px) {
	.plan_extra_area {
		flex-direction: column;
	}
	.plan_extra_block {
		padding: 18px 16px;
	}
	.plan_extra_title {
		font-size: 17px;
	}
	.plan_extra_price_num {
		font-size: 22px;
	}
	.plan_extra_drink_row {
		font-size: 14px;
	}
	.plan_extra_option_row {
		font-size: 13px;
	}
	.plan_extra_option_name {
		min-width: 90px;
	}
	.plan_extra_option_price {
		min-width: 90px;
	}
}
/* plan movie */
.plan_movie_area {
	margin: 30px 0 0 0;
	text-align: center;
}
.plan_movie_label {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #202020;
	margin: 0 0 14px 0;
}
.plan_movie_wrapper {
	position: relative;
	width: 600px;
	max-width: 100%;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}
.plan_movie_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}
@media screen and (max-width: 960px) {
	.plan_movie_wrapper {
		width: 100%;
	}
}
/* welfare plan */
.welfare_area {
	margin: 50px 0 0 0;
	background: #FDFAEF 0% 0% no-repeat padding-box;
	border: 2px solid #438B52;
	border-radius: 16px;
	padding: 40px;
}
.welfare_header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 28px 0;
}
.welfare_header_left {
	flex-shrink: 0;
}
.welfare_sub {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #438B52;
	letter-spacing: 1px;
	margin: 0 0 4px 0;
}
.welfare_lead {
	text-align: left;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #202020;
	margin: 0 0 8px 0;
	line-height: 1.3;
}
.welfare_plan_name {
	text-align: center;
	font-family: Caveat, cursive;
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
	background: #438B52 0% 0% no-repeat padding-box;
	border-radius: 25px;
	display: inline-block;
	padding: 5px 22px;
	margin: 0;
	white-space: nowrap;
}
.welfare_blocks {
	display: flex;
	gap: 20px;
	margin: 0 0 32px 0;
}
.welfare_block {
	flex: 1;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0px 2px 8px #00000014;
}
.welfare_block_title {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #438B52;
	margin: 0 0 8px 0;
	line-height: 1.4;
}
.welfare_block_text {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 13px;
	color: #202020;
	line-height: 1.8;
	margin: 0;
	text-align: left;
}
.welfare_cta {
	background: #D9EDD6 0% 0% no-repeat padding-box;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.welfare_cta_text {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #202020;
	margin: 0;
}
.welfare_cta_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	text-decoration: none;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF;
	background: #438B52 0% 0% no-repeat padding-box;
	border-radius: 25px;
	padding: 12px 28px;
	flex-shrink: 0;
}
.welfare_cta_btn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 1167px) {
	.welfare_area {
		padding: 24px 16px;
		margin: 40px 0 0 0;
	}
	.welfare_header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.welfare_sub {
		font-size: 11px;
	}
	.welfare_lead {
		font-size: 20px;
	}
	.welfare_blocks {
		flex-direction: column;
		gap: 14px;
	}
	.welfare_block {
		text-align: left;
	}
	.welfare_cta {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.welfare_cta_btn {
		width: 100%;
		box-sizing: border-box;
	}
}


/* 実績セクション調整 */
.work_block {
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.work_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.work_item {
    width: calc((100% - 30px) / 3);
    background: #f9fdf9;
    border: 1px solid #D9EDD6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    min-height: 80px;
    word-break: break-all;
}

.work_main {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #438B52;
    line-height: 1.4;
    display: block;
}

.work_sub {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
}

/* スマホ・タブレット対応 */
@media screen and (max-width: 991px) {
    .work_item {
        width: calc((100% - 15px) / 2);
    }
}

@media screen and (max-width: 599px) {
    .work_item {
        width: 100%;
        min-height: auto;
        padding: 12px;
    }
    .work_main {
        font-size: 14px;
    }
    .work_sub {
        font-size: 12px;
    }
}



/* page02 common */
.page02 {
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
    height: 288px;
    background: #F1F5E5 0% 0% no-repeat padding-box;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

@media screen and (max-width: 1167px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
	max-width: 1600px;
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #438B52;

}

.crumbs-separator {
    margin: 0 8px;
}

.crumbs-current {
    font-size: 16px;
}

@media screen and (max-width: 1167px) {
    .heading._crumbs {
    	max-width: 480px;
        padding: 20px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #fff 0% 0% no-repeat padding-box;
    color: #438B52;
    border: 1px solid #438B52;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #438B52 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 1167px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.88px;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #438B52;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #438B52;
    padding: 0 0 0 10px;
    margin: 20px 0 40px 0;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    color: #438B52;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    border-bottom: 1px solid #438B52;
    padding: 0 0 10px 0;
    margin: 40px 0 10px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
}

.detail-common-area a {
    font-size: 16px;
    color: #438B52;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #438B52;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 1167px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}


/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}

._error {
    overflow-wrap: anywhere;
}

.btn-wrapper1 {
	margin: 20px 0 0 0;
}

@media screen and (max-width: 1167px) {

    ._minheight {
        min-height: 62vh;
    }

}




/* archiveページ用 */
.archive-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}



.archive-block {
    position: relative;
}


.archive-block._event {
	text-decoration: none;
    position: relative;
	border-radius: 15px;
	padding: 10px;
    box-sizing: border-box;
    background: #fff;
}


.archive-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 0 8px 0;
    aspect-ratio: 1/1;
	border-radius: 10px;
}


.archive-img-wrapper._event {
    aspect-ratio: 240/123;
}


.archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.archive-link1 {
    text-decoration: none;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
		font-family: "M PLUS Rounded 1c", sans-serif;
		color: #202020;
}

.archive-link2 {
    text-decoration: none;
    width: 100%;
    font-size: 16px;
    margin: 0;
}

.archive-text1 {
	border-top: 1px solid #ddd;
	padding: 10px 0;
	text-align: right;
	font-size: 14px;
	font-weight: 700;
	color: #438B52;
	margin: 0;
}

.archive-event,
.crumbs-event {
	background: #D9EDD6 0% 0% no-repeat padding-box;

}

@media screen and (max-width: 1167px) {
    .archive-block-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }
}

/* ==========================================================================
   追加：バナーセクション調整
   ========================================================================== */
#banner_section {
	background-color: #E1F1DE;
	padding: 40px 0;
}
.banner_container {
	max-width: 600px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
}
.banner_container a {
	display: block;
	width: 100%;
}
.banner_container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

@media screen and (max-width: 1167px) {
	#banner_section {
		padding: 30px 0;
	}
}s