@charset "UTF-8";
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	font: inherit;
}

span, small, em, time, i {
	font-style: normal;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

a {
	color: inherit;
	text-decoration: none;
	border: medium;
}

a:-webkit-any-link:focus-visible {
	outline-offset: 1px;
}

:focus-visible {
	outline: -webkit-focus-ring-color auto 1px;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

legend {
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.7;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

li {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

input, select {
	vertical-align: middle;
}

abbr[title], dfn[title] {
	cursor: help;
}

del {
	text-decoration: line-through;
}

ins {
	font-style: oblique;
	text-decoration: none;
}

mark {
	background: transparent;
	font-style: normal;
}

img {
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th {
	font-weight: normal;
	text-align: left;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

::-moz-selection {
	background: #d4dcd6;
}

::selection {
	background: #d4dcd6;
}

img {
	max-width: 100%;
	height: auto;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

body,
html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	font-family: "FOT-筑紫明朝 Pr6N M", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
	color: #000;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

a[href^=tel] {
	cursor: default;
}

.hidden {
	overflow: hidden;
}

:target {
	scroll-margin-top: 135px;
}

@media (max-width: 800px) {
	:target {
		scroll-margin-top: 10px;
	}
}
html {
	scroll-behavior: smooth;
}

.container {
	margin: 0 auto;
	max-width: 1024px;
	width: 90%;
}
.container.wide {
	max-width: 1200px;
}

@media (max-width: 800px) {
	body {
		font-size: 15px;
		line-height: 1.8;
	}
	h1, h2, h3, h4, h5, h6 {
		line-height: 1.4;
	}
	.container {
		margin: 0 auto;
		max-width: 90%;
		width: 90%;
	}
}
/*------------
Header
--------------*/
.header {
	position: fixed;
	z-index: 9999;
	width: 100%;
	transition: 0.3s;
}
.header-inr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px 0 60px;
	width: 100%;
}
.header .h-logo {
	width: 114px;
	transition: 0.3s;
}
.header .h-TOP {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	justify-content: flex-end;
	transition: 0.3s;
}
.header .tel {
	font-size: 31px;
	color: #fff;
}
.header .tel > span {
	font-size: 22px;
}
.header .btn-cta {
	margin-left: 35px;
}
.header.is-fixed {
	background: rgba(255, 255, 255, 0.9);
}
.header.is-fixed .h-logo {
	width: 94px;
	padding-bottom: 15px;
}
.header.is-fixed .pc-navi {
	color: #000;
}
.header.is-fixed .pc-navi .item:hover .item-link {
	color: #3C9843;
}
.header.is-fixed .tel {
	color: #000;
}
.header.is-fixed .h-TOP {
	margin-bottom: 0;
}

@media (max-width: 800px) {
	.header {
		position: absolute;
	}
	.header-inr {
		display: block;
		padding: 0;
	}
	.header .h-right {
		display: none;
	}
}
/*------------
G-navi
--------------*/
.pc-navi {
	color: #fff;
}
.pc-navi-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.pc-navi .item {
	line-height: 1.4;
	padding: 15px 0;
}
.pc-navi .item .item-link {
	display: block;
	transition: 0.3s;
}
.pc-navi .item:hover .item-link {
	color: #F2DD6D;
}
.pc-navi .item:not(:last-child) {
	margin-right: 30px;
}

.pc-dropdown {
	position: relative;
}
.pc-dropdown .pc-navi-child {
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	top: calc(100% + 0px);
	left: 50%;
	text-align: left;
	padding: 20px 30px;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	width: -moz-max-content;
	width: max-content;
	min-width: 150px;
	transform: translate(-50%, -10px);
	transition: 0.4s ease-in-out;
	color: #000;
}
.pc-dropdown .pc-navi-child li {
	font-size: 15px;
	line-height: 1.6;
	width: 100%;
}
.pc-dropdown .pc-navi-child li:not(:last-child) {
	margin-bottom: 10px;
}
.pc-dropdown .pc-navi-child li:hover {
	text-decoration: underline;
}
.pc-dropdown:hover .pc-navi-child {
	pointer-events: auto;
	transform: translate(-50%, 0);
	opacity: 1;
}

.sp-navi {
	display: none;
}

@media (max-width: 800px) {
	.pc-navi {
		display: none;
	}
	:root {
		--navi-background: #0E4D03;
		--navi-border-color: #fff;
		--navi-text-color: #fff;
		--svg-stroke: #fff;
		--menu-btn: #fff;
	}
	.sp-navi {
		display: block;
		/* ボタン類 */
		/* コンテンツ */
	}
	.sp-navi .sp-navi-btns {
		display: flex;
		background: var(--navi-background);
		box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 53px;
		z-index: 10000;
	}
	.sp-navi .sp-navi-btns > * {
		flex: 1;
		position: relative;
	}
	.sp-navi .sp-navi-btns .item {
		border-right: 1px solid var(--navi-border-color);
		font-size: 10px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}
	.sp-navi .sp-navi-btns .item a {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		color: var(--navi-text-color);
		text-decoration: none;
		height: 100%;
		padding: 7px 0;
	}
	.sp-navi .sp-navi-btns .item .img {
		display: block;
	}
	.sp-navi .sp-navi-btns .item .img img {
		-o-object-fit: contain;
		object-fit: contain;
		height: 20px;
		margin-bottom: 5px;
	}
	.sp-navi .sp-navi-btns .item .ttl {
		display: block;
	}
	.sp-navi .sp-menu-btn {
		background-color: transparent;
		border: none;
		cursor: pointer;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 7px;
	}
	.sp-navi .sp-menu-btn .ttl {
		display: block;
		color: var(--navi-text-color);
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		font-family: "FOT-筑紫明朝 Pr6N M";
	}
	.sp-navi .sp-menu-btn span:not(.ttl) {
		background: var(--menu-btn);
		position: absolute;
		left: 50%;
		width: 22px;
		height: 1px;
		transform: translateX(-50%);
		transition: 0.4s;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(1) {
		top: 11px;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(2) {
		top: 19px;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(3) {
		top: 27px;
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
		transform: translate(-50%, 10px) rotate(-45deg);
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
		opacity: 0;
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(3) {
		transform: translate(-50%, -6px) rotate(45deg);
	}
	.sp-navi .sp-navi-contents {
		pointer-events: none;
		visibility: hidden;
		background: #fff;
		padding: 50px 10% 100px;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transition: 0.5s;
		opacity: 0;
		z-index: 9999;
	}
	.sp-navi .sp-navi-contents.is-open {
		pointer-events: auto;
		visibility: visible;
		overflow-y: auto;
		opacity: 1;
	}
	.sp-navi .sp-navi-list {
		border-top: 1px solid #d6d6d6;
		margin: 0 0 30px;
	}
	.sp-navi .sp-navi-list > li {
		border-bottom: 1px solid #d6d6d6;
	}
	.sp-navi .sp-navi-list > li > a {
		color: #333;
		display: block;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		text-decoration: none;
		padding: 15px 0;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown {
		position: relative;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::before, .sp-navi .sp-navi-list > li.sp-dropdown::after {
		content: "";
		background-color: #333;
		position: absolute;
		transition: 0.5s;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::before {
		width: 1px;
		height: 11px;
		top: 17px;
		right: 20px;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::after {
		width: 11px;
		height: 1px;
		top: 22px;
		right: 15px;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown.is-on::before {
		transform: rotate(90deg);
	}
	.sp-navi .sp-navi-list > li.sp-dropdown > a {
		padding: 15px 0;
		width: 85%;
	}
	.sp-navi .sp-navi-list .child {
		padding: 0 0 15px;
	}
	.sp-navi .sp-navi-list .child > ul > li {
		position: relative;
		padding-left: 15px;
		margin-bottom: 5px;
	}
	.sp-navi .sp-navi-list .child > ul > li::before {
		content: "-";
		color: #333;
		position: absolute;
		left: 0;
		top: 0;
	}
	.sp-navi .sp-navi-list .child > ul > li > a {
		display: inline-block;
		font-size: 13px;
		font-weight: bold;
		text-decoration: none;
	}
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
	width: 100%;
	margin-bottom: 130px;
	position: relative;
}
.hero .splide__slide img {
	width: 100%;
	height: 960px;
	-o-object-fit: cover;
	object-fit: cover;
}
.hero .splide__pagination {
	display: none;
}
.hero-desc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hero-ttl {
	font-size: 65px;
	color: #fff;
	text-shadow: 0 0 30px #000;
	text-align: center;
	line-height: 1.45;
	white-space: nowrap;
}
.hero-ttl > span {
	font-size: 54px;
}

@media (max-width: 800px) {
	.hero {
		margin-bottom: 50px;
	}
	.hero .splide__slide img {
		height: 341px;
	}
	.hero-desc {
		width: 100%;
		text-align: center;
		transform: translate(-50%, 0);
		top: auto;
		bottom: 15px;
	}
	.hero-ttl {
		font-size: 35px;
		display: inline-block;
	}
	.hero-ttl > span {
		font-size: 29px;
	}
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
	margin-bottom: 50px;
}
.t-ttl .en {
	font-family: "Cormorant Garamond", serif;
	font-size: 15px;
	font-weight: 600;
	color: #8B8B8B;
	display: block;
	line-height: 1;
	margin-bottom: 10px;
}
.t-ttl .jp {
	line-height: 1.7;
	font-size: 52px;
	background: linear-gradient(to right, #3C9843 0%, #0E4D03 85%, #000000 100%);
	display: inline-block;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (max-width: 800px) {
	.t-ttl {
		margin-bottom: 20px;
	}
	.t-ttl .en {
		margin-bottom: 5px;
	}
	.t-ttl .jp {
		font-size: 24px;
		line-height: 1.4;
	}
}
/*------------
Block
--------------*/
.sec01 {
	margin-bottom: 100px;
}
.sec01-layout {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	padding-top: 65px;
	position: relative;
}
.sec01-img {
	position: relative;
}
.sec01-img img {
	position: relative;
}
.sec01-img::before {
	position: absolute;
	content: "";
	background: #0E4D03;
	width: 100%;
	height: 100%;
	top: -95px;
	left: -10%;
}
.sec01-ttl {
	position: absolute;
	top: 40px;
	left: -25px;
	z-index: 5;
}
.sec01-ttl .intxt {
	font: 52px/1.2 "FOT-筑紫明朝 Pr6N M", serif;
	letter-spacing: 0.13em;
	writing-mode: vertical-rl;
}
.sec01-ttl .txt-bg {
	background: #fff;
	padding: 15px 6px 5px 4px;
	display: inline-block;
}
.sec01-ttl .txt-color {
	background: linear-gradient(to bottom, #3C9843 0%, #0E4D03 85%, #000000 100%);
	display: inline-block;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sec01-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}

.sec02 {
	margin-bottom: 100px;
	background: url(../images/sec02_bg.jpg) center/cover no-repeat;
	padding: 130px 0 120px;
	position: relative;
}
.sec02-ttl {
	text-align: center;
	font-size: 52px;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 50px;
}
.sec02-ttl > span {
	font-size: 30px;
}
.sec02-layout {
	max-width: 1270px;
	margin: 0 auto;
	width: 90%;
}
.sec02-card {
	display: flex;
	align-items: center;
}
.sec02-card .card-item:first-child {
	margin-right: 90px;
}
.sec02-card .card-link {
	position: relative;
	display: block;
	transition: 0.3s;
}
.sec02-card .card-link:hover {
	opacity: 0.7;
}
.sec02-card .card-link.num01 {
	margin-bottom: 75px;
}
.sec02-card .card-num {
	font-size: 90px;
	font-family: "Cormorant Garamond", serif;
	color: #fff;
	line-height: 1;
	position: absolute;
	top: -55px;
	z-index: 4;
}
.sec02-card .card-ttl {
	margin-top: -35px;
	position: relative;
}
.sec02-card .card-ttl .txt-bg {
	background: #fff;
	padding: 4px 10px;
	display: inline-block;
	font-size: 32px;
}
.sec02-card .card-ttl .txt-bg.long {
	padding: 4px 16.5px 4px 10px;
}
.sec02-card .card-ttl .txt-bg + .txt-bg {
	padding-top: 5px;
}
.sec02-card .card-ttl .txt-color {
	background: linear-gradient(to bottom, #3C9843 0%, #0E4D03 85%, #000000 100%);
	display: inline-block;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sec02-card .card-ttl .txt-ls {
	letter-spacing: 0.25em;
}
.sec02-en {
	font-size: 171px;
	font-family: "Cormorant Garamond", serif;
	color: rgba(255, 255, 255, 0.2);
	line-height: 1;
	display: inline-block;
	position: absolute;
	right: 20%;
	bottom: -30px;
}

@media (max-width: 1200px) {
	.sec02-card .card-ttl .txt-color {
		line-height: 1.3;
	}
}
.sec03 {
	margin-bottom: 162px;
	position: relative;
}
.sec03-layout {
	max-width: 1579px;
	width: 90%;
	margin: 0 auto 0 0;
	display: flex;
	align-items: center;
}
.sec03-layout .l-img {
	width: 76%;
	z-index: 10;
	height: 686px;
	position: relative;
}
.sec03-layout .l-img .img {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.5s;
}
.sec03-layout .l-img .img img {
	width: 100%;
	height: 686px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: left;
	object-position: left;
}
.sec03-layout .l-img .img.is-show {
	opacity: 1;
}
.sec03-layout .l-desc {
	width: 42.69%;
	margin-left: -19%;
	position: relative;
	z-index: 11;
}
.sec03-layout .l-btn {
	position: relative;
	padding: 35px 90px 60px 50px;
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
}
.sec03-layout .l-btn:hover {
	opacity: 0.7;
}
.sec03-layout .l-btn::before, .sec03-layout .l-btn::after {
	position: absolute;
	content: "";
}
.sec03-layout .l-btn::before {
	width: 60px;
	height: 60px;
	background: #3C9843;
	bottom: 0;
	right: 0;
}
.sec03-layout .l-btn::after {
	background: url(../images/share/btn-more_arrow.svg) center/contain no-repeat;
	width: 25px;
	height: 4px;
	bottom: 28px;
	right: 17px;
}
.sec03-layout .l-btn:first-child {
	background: #0E4D03;
	margin-bottom: 15px;
}
.sec03-layout .l-btn:nth-child(2) {
	background: #5DA230;
}
.sec03-layout .l-ttl {
	font-size: 32px;
	margin-bottom: 15px;
}
.sec03 .t-ttl {
	margin-bottom: 0;
	position: absolute;
	left: 21.56%;
	top: 13.22%;
	z-index: 12;
}

.sec04 {
	margin-bottom: 250px;
}
.sec04-layout {
	overflow-x: hidden;
}
.sec04-layout02 {
	max-width: 1700px;
	width: 95%;
	margin: 0 -75px 0 auto;
}
.sec04-ttl {
	margin-bottom: 65px;
	display: flex;
	align-items: first end;
}
.sec04 .t-ttl {
	margin-bottom: 0;
	margin-right: 65px;
}
.sec04 .t-ttl .en {
	margin-bottom: 25px;
}
.sec04 .t-ttl .jp {
	line-height: 1.2;
}
.sec04-list, .sec04-list02 {
	position: relative;
}
.sec04-list .splide__slide a, .sec04-list02 .splide__slide a {
	display: block;
	padding-right: 20px;
	padding-bottom: 140px;
	position: relative;
}
.sec04-list .splide__slide, .sec04-list02 .splide__slide {
	max-width: 421px;
	margin-right: 40px;
}
.sec04-list .splide__slide img, .sec04-list02 .splide__slide img {
	width: 100%;
	height: 460px;
	-o-object-fit: cover;
	object-fit: cover;
}
.sec04-list .list-desc, .sec04-list02 .list-desc {
	position: absolute;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	width: 370px;
	height: 220px;
	right: 0;
	bottom: 0;
	padding: 120px 30px 35px;
	z-index: -1;
	font-size: 18px;
	margin-bottom: 15px;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.sec04 a {
	transition: 0.5s;
}
.sec04 a:hover {
	opacity: 0.8;
}
.sec04 .btn-more {
	margin: 0 auto;
}
.sec04 .splide {
	padding-bottom: 40px;
	min-width: 99.2vw;
}
.sec04 .splide .pagination {
	right: calc(30.8% + 168px);
	top: -109px;
}
.sec04 .splide__arrow {
	top: -125px;
}
.sec04 .splide__arrow--prev {
	right: calc(30.8% + 70px);
}
.sec04 .splide__arrow--next {
	right: 30.8%;
}

@media screen and (max-width: 1350px) and (min-width: 801px) {
	.sec04 .t-ttl {
		margin-bottom: 0;
		margin-right: 40px;
	}
}
.sec05 {
	position: relative;
	padding: 130px 0 120px;
	margin-bottom: 140px;
	overflow: hidden;
}
.sec05::before {
	position: absolute;
	content: "";
	background: #F8F8F8;
	width: 93.17%;
	right: 0;
	top: 0;
	bottom: 0;
}
.sec05-layout {
	max-width: 1270px;
	width: 90%;
	margin: 0 auto 0 18.17%;
	display: flex;
	align-items: center;
	position: relative;
	flex-direction: row-reverse;
	margin-bottom: 110px;
}
.sec05-layout .l-img {
	width: 56.38%;
}
.sec05-layout .l-desc {
	flex: 1;
	margin-right: 60px;
}
.sec05-layout .btn-more {
	margin-top: 50px;
}
.sec05-layout .l-ttl {
	font-size: 26px;
	color: #0E4D03;
	margin-bottom: 30px;
}
.sec05-layout .l-ttl span {
	padding-bottom: 5px;
	border-bottom: 1px solid #0E4D03;
	display: inline-block;
}
.sec05-layout .t-ttl .jp {
	line-height: 1.45;
}
.sec05-layout02 {
	display: flex;
	max-width: 1600px;
	width: 90%;
	margin: 0 auto 0 0;
	align-items: flex-start;
}
.sec05-layout02 .splide__arrows {
	display: none;
}
.sec05-layout02 .splide__list {
	margin-left: -20% !important;
}
.sec05-layout02 .l-img {
	width: 73.75vw;
}
.sec05-layout02 .l-img .splide__slide {
	max-width: 52.72vw;
	margin-right: 40px;
}
.sec05-layout02 .l-img .splide__slide img {
	width: 100%;
	height: 34.74vw;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.sec05-layout02 .l-desc {
	background: #fff;
	padding: 60px 100px 50px 60px;
	width: 37.94%;
	margin: 100px 0 0 -190px;
	position: relative;
}
.sec05-layout02 .btn-more {
	margin-top: 40px;
}
.sec05-layout02 .btn-more + .btn-more {
	margin-top: 20px;
}
.sec05-layout02 .splide__pagination {
	bottom: -30px;
	left: 13.66vw;
	right: auto;
}

@media screen and (max-width: 1500px) and (min-width: 801px) {
	.sec05-layout {
		margin: 0 auto 80px 8.17%;
	}
	.sec05-layout .l-img {
		width: 50%;
	}
}
@media (max-width: 1200px) {
	.sec05-layout .t-ttl .jp {
		padding: 5px 5px 0 0;
	}
	.sec05-layout02 .splide__pagination {
		left: 15.66vw;
	}
}
.sec06 {
	margin-bottom: 130px;
	overflow: hidden;
}
.sec06-layout {
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
	max-width: 1410px;
	margin: 0 auto;
	width: 90%;
}
.sec06-layout .l-img {
	position: relative;
	width: 50.64%;
	z-index: 1;
}
.sec06-layout .l-img img {
	width: 100%;
	height: 576px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.sec06-layout .l-desc {
	background: #0E4D03;
	padding: 90px 41.91vw 90px 90px;
	margin: 90px -37.66vw 0 0;
	flex: 1;
	color: #fff;
}
.sec06-layout .t-ttl .en {
	color: #fff;
}
.sec06-layout .t-ttl .jp {
	background: none;
	color: #fff;
	-webkit-text-fill-color: #fff;
	line-height: 1.5;
}
.sec06-layout .btn-more {
	margin-top: 50px;
}

@media screen and (max-width: 1450px) and (min-width: 1201px) {
	.sec06-layout .l-img {
		width: 48%;
	}
	.sec06-layout .t-ttl .jp {
		font-size: 43px;
	}
}
@media (max-width: 1200px) {
	.sec06-layout .t-ttl .jp {
		font-size: 40px;
	}
}
@media (max-width: 800px) {
	.sec01 {
		margin-bottom: 50px;
		padding-top: 20px;
		overflow: hidden;
	}
	.sec01-ttl {
		position: absolute;
		top: auto;
		left: -10px;
		bottom: -10px;
		z-index: 5;
	}
	.sec01-ttl .intxt {
		font-size: 24px;
	}
	.sec01-ttl .txt-bg {
		padding: 5px 10px;
	}
	.sec01-layout {
		padding-top: 35px;
	}
	.sec01-img::before {
		display: none;
	}
	.sec01-wrap {
		display: block;
		position: relative;
		padding-bottom: 40px;
		color: #fff;
	}
	.sec01-wrap::before {
		position: absolute;
		content: "";
		background: #0E4D03;
		width: 110vw;
		left: -6%;
		right: -1%;
		bottom: 0;
		height: 80vw;
		z-index: -1;
	}
	.sec01-wrap .btn-more {
		margin-top: 20px;
	}
	.sec02 {
		margin-bottom: 50px;
		padding: 50px 0 80px;
	}
	.sec02-en {
		font-size: 70px;
		right: 10px;
		bottom: -13px;
	}
	.sec02-ttl {
		font-size: 24px;
	}
	.sec02-ttl > span {
		font-size: 16px;
	}
	.sec02-card {
		display: grid;
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.sec02-card .card-ttl .txt-bg {
		font-size: 20px;
	}
	.sec02-card .card-ttl .txt-bg.long {
		padding: 4px 13.5px 4px 10px;
	}
	.sec02-card .card-link.num01 {
		margin-bottom: 0;
	}
	.sec03 {
		overflow: hidden;
		margin-bottom: 50px;
	}
	.sec03 .t-ttl {
		position: static;
		width: 90%;
		margin: 0 auto 20px;
	}
	.sec03-layout {
		display: block;
		margin: 0 auto;
	}
	.sec03-layout .l-img {
		width: 100%;
		height: 300px;
		margin-bottom: 20px;
	}
	.sec03-layout .l-img .img img {
		height: 300px;
	}
	.sec03-layout .l-desc {
		width: 100%;
		margin: 0;
	}
	.sec03-layout .l-btn {
		padding: 30px 20px 40px;
	}
	.sec03-layout .l-btn::before {
		width: 40px;
		height: 40px;
	}
	.sec03-layout .l-btn::after {
		width: 22px;
		height: 3px;
		bottom: 18px;
		right: 9px;
	}
	.sec03-layout .l-ttl {
		font-size: 20px;
	}
	.sec04 {
		margin-bottom: 60px;
	}
	.sec04-layout02 {
		width: 95%;
		margin-left: 5%;
	}
	.sec04-list .splide, .sec04-list02 .splide {
		padding-bottom: 0;
		min-width: auto;
	}
	.sec04-list .splide .pagination, .sec04-list02 .splide .pagination {
		right: calc(5% + 105px);
		top: -124px;
	}
	.sec04-list .splide__slide, .sec04-list02 .splide__slide {
		max-width: 200px;
		margin-right: 20px !important;
	}
	.sec04-list .splide__slide a, .sec04-list02 .splide__slide a {
		padding: 0;
	}
	.sec04-list .splide__slide img, .sec04-list02 .splide__slide img {
		height: 250px;
	}
	.sec04-list .splide__arrow, .sec04-list02 .splide__arrow {
		top: -130px;
	}
	.sec04-list .splide__arrow--prev, .sec04-list02 .splide__arrow--prev {
		right: calc(5% + 45px);
	}
	.sec04-list .splide__arrow--next, .sec04-list02 .splide__arrow--next {
		right: 5%;
	}
	.sec04-list .list-img, .sec04-list02 .list-img {
		margin-bottom: 20px;
	}
	.sec04-list .list-desc, .sec04-list02 .list-desc {
		position: static;
		width: 100%;
		padding: 20px 20px 35px;
		height: auto;
		font-size: 13px;
	}
	.sec04-list02 .splide .pagination {
		top: -47px;
	}
	.sec04-list02 .splide__arrow {
		top: -54px;
	}
	.sec04-ttl {
		display: block;
		margin-bottom: 40px;
	}
	.sec04 .t-ttl {
		margin-bottom: 20px;
	}
	.sec04 .t-ttl .en {
		margin-bottom: 10px;
	}
	.sec04 .btn-more {
		margin-top: 30px;
	}
	.tab-area {
		justify-content: left;
	}
	.sec05 {
		padding: 50px 0;
		background: #F8F8F8;
		margin-bottom: 50px;
	}
	.sec05::before {
		display: none;
	}
	.sec05-layout {
		display: block;
		margin: 0 auto 50px;
	}
	.sec05-layout .l-img {
		width: 100%;
		margin-bottom: 20px;
	}
	.sec05-layout .l-desc {
		width: 100%;
		margin: 0 auto;
	}
	.sec05-layout .t-ttl {
		margin-bottom: 20px;
	}
	.sec05-layout .l-ttl {
		font-size: 18px;
		margin-bottom: 25px;
	}
	.sec05-layout .l-ttl span {
		padding-bottom: 10px;
	}
	.sec05-layout .btn-more {
		margin-top: 30px;
	}
	.sec05-layout02 {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	.sec05-layout02 .splide__list {
		margin-left: 0 !important;
	}
	.sec05-layout02 .l-img {
		width: 100%;
		margin-bottom: 30px;
	}
	.sec05-layout02 .l-img .splide__slide {
		max-width: 100%;
		width: 100%;
		margin-right: 0;
	}
	.sec05-layout02 .l-img .splide__slide img {
		height: 60vw;
	}
	.sec05-layout02 .l-desc {
		width: 100%;
		margin: 0;
		padding: 30px 20px;
	}
	.sec05-layout02 .btn-more {
		margin-top: 30px;
	}
	.sec05-layout02 .btn-more + .btn-more {
		margin-top: 10px;
	}
	.sec05 .splide__pagination {
		left: -5px;
		bottom: -15px;
	}
	.sec06 {
		margin-bottom: 50px;
	}
	.sec06-layout {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	.sec06-layout .l-img {
		width: 100%;
	}
	.sec06-layout .l-img img {
		height: auto;
	}
	.sec06-layout .l-desc {
		margin: 0;
		padding: 30px 20px;
		width: 100%;
	}
	.sec06-layout .t-ttl .jp {
		font-size: 24px;
	}
	.sec06 .btn-more {
		margin-top: 30px;
	}
}
/*------------
下層レイアウト
--------------*/
.page-ttl {
	background: url(../images/under/page-ttl_bg.jpg) center/cover no-repeat;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 255px 10px 199px;
	width: 100%;
	margin-bottom: 20px;
}

.page-ttl-main {
	font-size: 50px;
	line-height: 1.2;
}

.breadcrumb {
	position: relative;
	z-index: 1;
}
.breadcrumb ul {
	font-size: 0.8rem;
}
.breadcrumb ul li {
	display: inline;
}
.breadcrumb ul li a {
	transition: 0.3s;
}
.breadcrumb ul li a:hover {
	color: #0E4D03;
}
.breadcrumb ul li + li:before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	transform: rotate(45deg);
	margin: 0 12px 0 3px;
	vertical-align: 1px;
}

.u-contents p + p {
	margin-top: 1em;
}

@media (max-width: 800px) {
	.page-ttl {
		padding: 150px 0 90px;
	}
	.page-ttl-main {
		font-size: 25px;
	}
}
.u-h2, .post-category-ttl, .postdata h1 {
	font-size: 42px;
	position: relative;
	padding-top: 10px;
	margin-bottom: 50px;
}
.u-h2::before, .post-category-ttl::before, .postdata h1::before {
	content: "";
	background: #0E4D03;
	width: 40px;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
}

.u-h3, .post-ttl, .postdata h2 {
	font-size: 26px;
	margin-bottom: 30px;
	position: relative;
	color: #0E4D03;
	background: #F8F8F8;
	padding: 5px 15px;
}

.postdata h3 {
	margin-bottom: 25px;
}

.u-h4, .postdata h3 {
	font-size: 20px;
	color: #0E4D03;
	margin-bottom: 15px;
}

.num-ttl {
	border-bottom: 2px solid #eee;
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.num-ttl .num {
	background: #0E4D03;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	line-height: 25px;
	padding: 0 9px;
	margin-right: 20px;
	vertical-align: 3px;
	position: relative;
}
.num-ttl .num::after {
	content: "";
	border-style: solid;
	border-width: 12.5px 0 12.5px 7px;
	border-color: transparent transparent transparent #0E4D03;
	position: absolute;
	top: 0;
	right: -7px;
}

@media (max-width: 800px) {
	.u-h2, .post-category-ttl, .postdata h1 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.u-h3, .post-ttl, .postdata h2 {
		font-size: 20px;
		margin-bottom: 20px;
		padding: 5px 10px;
	}
	.u-h4, .postdata h3 {
		font-size: 18px;
	}
	.num-ttl {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.num-ttl .num {
		display: table;
		font-size: 10px;
		padding: 0 10px;
		margin-bottom: 8px;
	}
	.num-ttl .num::after {
		display: none;
	}
}
.short + .short {
	margin-top: 50px;
}

.tall {
	padding: 70px 0;
}
.tall.bg {
	padding-bottom: 0;
}

@media (max-width: 800px) {
	.short + .short {
		margin-top: 30px;
	}
	.tall {
		padding: 50px 0;
	}
}
.u-bnr {
	background: #F8F8F8;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	padding: 30px 55px 30px 30px;
}
.u-bnr::after {
	position: absolute;
	content: "";
	border: 1px solid #0E4D03;
	width: 98%;
	height: 94%;
	top: 10px;
	left: 10px;
}
.u-bnr:hover {
	opacity: 0.5;
}
.u-bnr .txt-box {
	margin-left: 35px;
}
.u-bnr .bnr-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}
.u-bnr .bnr-desc {
	flex: 1;
	margin-left: 70px;
}
.u-bnr .bnr-ttl {
	display: inline-block;
	background: url(../images/under/bnr_deco.svg) center/contain no-repeat;
	width: 212px;
	height: 68px;
	font-size: 40px;
	padding: 15px 10px;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.u-bnr .bnr-ttl + .bnr-ttl {
	margin-left: 3px;
	margin-right: 25px;
}
.u-bnr .bnr-txt01 {
	font-size: 40px;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0.1em;
}
.u-bnr .bnr-txt02 {
	font-size: 75px;
	margin-left: 29px;
	display: inline-block;
	color: #0E4D03;
	line-height: 1;
	letter-spacing: 0.1em;
}
.u-bnr .txt-box p {
	font-size: 15px;
	letter-spacing: 0.1em;
}

@media (max-width: 800px) {
	.u-bnr {
		display: block;
		padding: 30px 20px;
	}
	.u-bnr::after {
		width: 96%;
		height: 96%;
		top: 10px;
		left: 6px;
	}
	.u-bnr .bnr-img {
		margin-bottom: 15px;
	}
	.u-bnr .bnr-desc {
		margin-left: 0;
	}
	.u-bnr .bnr-wrap {
		margin-bottom: 15px;
	}
	.u-bnr .bnr-ttl {
		font-size: 20px;
		width: 120px;
		height: auto;
	}
	.u-bnr .bnr-ttl + .bnr-ttl {
		margin-right: 10px;
	}
	.u-bnr .bnr-txt01 {
		font-size: 20px;
	}
	.u-bnr .bnr-txt02 {
		font-size: 40px;
		margin-left: 15px;
	}
	.u-bnr .txt-box {
		margin-left: 0;
	}
	.u-bnr .txt-box p {
		font-size: 14px;
	}
}
.l-style01 {
	display: flex;
}
.l-style01 .l-img {
	flex: 1;
	margin-right: 50px;
}
.l-style01 .l-img.small {
	flex: 0.5;
}
.l-style01 .l-desc {
	flex: 1;
}

.l-style02 {
	display: flex;
	flex-direction: row-reverse;
}
.l-style02 .l-img {
	flex: 1;
	margin-left: 50px;
}
.l-style02 .l-img.small {
	flex: 0.5;
}
.l-style02 .l-img.box {
	max-width: 370px;
	margin-left: 10px;
}
.l-style02 .l-desc {
	flex: 1;
}

.l-style03 {
	display: flex;
}
.l-style03 .l-img {
	width: 48.02%;
	margin-left: -7.91%;
	position: relative;
	z-index: 2;
}
.l-style03 .l-desc {
	background: #F8F8F8;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	padding: 45px 50px 40px 280px;
	margin: 122px 0 0 -239px;
	flex: 1;
	position: relative;
	z-index: 1;
}
.l-style03 .l-en {
	font-size: 35px;
	position: absolute;
	color: #0E4D03;
	top: -40px;
	z-index: 5;
}
.l-style03 .l-ttl {
	font-size: 24px;
	padding-bottom: 5px;
	position: relative;
	margin-bottom: 30px;
}
.l-style03 .l-ttl::before {
	position: absolute;
	content: "";
	width: 60px;
	height: 1px;
	background: #0E4D03;
	bottom: 0;
	left: 0;
}
.l-style03.reverse {
	flex-direction: row-reverse;
}
.l-style03.reverse .l-img {
	margin-right: -7.91%;
	margin-left: 0;
}
.l-style03.reverse .l-desc {
	padding: 45px 280px 40px 50px;
	margin: 122px -239px 0 0;
}
.l-style03.reverse.check .l-desc {
	padding: 45px 0 40px 50px;
}
.l-style03.reverse.check .l-desc .check-desc {
	padding-right: 280px;
}

.l-style04 {
	display: flex;
	flex-direction: row-reverse;
}
.l-style04 .l-img {
	width: 73.73%;
}
.l-style04 .l-desc {
	position: relative;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	padding: 50px;
	margin: 30.34% -236px 0 0;
	flex: 1;
}
.l-style04 .l-ttl {
	font-size: 24px;
	margin-bottom: 20px;
}

.l-style05 .l-img {
	position: relative;
	margin-bottom: 30px;
}
.l-style05 .l-ttl {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 32px;
	color: #fff;
}
.l-style05 .l-ttl span {
	background: rgba(14, 77, 3, 0.85);
	padding: 30px 50px;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.l-bg {
	position: relative;
	background: linear-gradient(to top, rgba(60, 152, 67, 0.35) 0%, rgba(14, 77, 3, 0.35) 100%);
	padding-bottom: 80px;
}
.l-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
	height: 100px;
}

.l-style06 .l-img {
	position: relative;
	margin-bottom: 30px;
}
.l-style06 .l-ttl {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 32px;
	color: #fff;
}
.l-style06 .l-ttl span {
	background: rgba(14, 77, 3, 0.85);
	padding: 30px 50px;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.l-style07 .l-img {
	position: relative;
}
.l-style07 .l-ttl {
	position: absolute;
	left: 30px;
	bottom: 30px;
	font-size: 32px;
	color: #fff;
}
.l-style07 .l-ttl span {
	background: rgba(14, 77, 3, 0.85);
	padding: 30px 50px;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.l-style08 {
	background: #F8F8F8;
	display: flex;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	flex-direction: row-reverse;
}
.l-style08 .l-img {
	width: 34.57%;
}
.l-style08 .l-img img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
}
.l-style08 .l-desc {
	flex: 1;
	padding: 50px;
}
.l-style08 .l-ttl {
	font-size: 24px;
	margin-bottom: 25px;
}

.l-style09 {
	padding-bottom: 88px;
	position: relative;
}
.l-style09 .l-desc {
	position: absolute;
	left: 20px;
	bottom: 0;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	padding: 20px;
	max-width: 406px;
}
.l-style09 .l-ttl {
	font-size: 24px;
	margin-bottom: 10px;
}
.l-style09 .l-time {
	font-size: 18px;
}

.l-style10 {
	position: relative;
	transition: 0.3s;
	display: block;
	width: 100%;
	height: 100%;
}
.l-style10 .l-desc {
	position: absolute;
	right: 17px;
	top: 70px;
	color: #fff;
}
.l-style10 .l-ttl {
	font-size: 32px;
	margin-bottom: 50px;
}
.l-style10 .l-txt {
	margin-right: 45px;
}
.l-style10 .u-btn {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 10;
}
.l-style10:hover {
	opacity: 0.5;
}

@media (max-width: 800px) {
	.l-style01 {
		display: block;
	}
	.l-style01 .l-img {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.l-style01 .l-desc {
		width: 100%;
	}
	.l-style02 {
		display: block;
	}
	.l-style02 .l-img {
		width: 100%;
		margin-bottom: 20px;
		margin-left: 0;
	}
	.l-style02 .l-img.box {
		max-width: 70%;
		margin: 0 auto 20px;
	}
	.l-style03 {
		display: block;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	}
	.l-style03 .l-img {
		width: 100%;
		margin: 0 auto;
	}
	.l-style03 .l-desc {
		padding: 20px 20px 30px;
		margin: auto;
		z-index: 10;
		box-shadow: none;
	}
	.l-style03 .l-en {
		position: static;
		font-size: 30px;
		margin-bottom: 5px;
		display: block;
	}
	.l-style03 .l-ttl {
		font-size: 20px;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.l-style03.reverse .l-img {
		width: 100%;
		margin: 0 auto;
	}
	.l-style03.reverse .l-desc {
		padding: 20px 20px 30px;
		margin: auto;
		z-index: 10;
		box-shadow: none;
	}
	.l-style03.reverse.check .l-desc {
		padding: 20px 20px 30px;
	}
	.l-style03.reverse.check .l-desc .check-desc {
		padding-right: 0;
	}
	.l-style04 {
		display: block;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	}
	.l-style04 .l-img {
		width: 100%;
		margin: 0 auto;
	}
	.l-style04 .l-desc {
		padding: 30px 20px;
		margin: auto;
		box-shadow: none;
	}
	.l-style04 .l-ttl {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.l-style05 .l-img {
		margin-bottom: 20px;
	}
	.l-style05 .l-ttl {
		font-size: 20px;
	}
	.l-style05 .l-ttl span {
		padding: 15px;
	}
	.l-bg {
		padding-bottom: 50px;
	}
	.l-style06 .l-img {
		margin-bottom: 30px;
	}
	.l-style06 .l-ttl {
		font-size: 20px;
	}
	.l-style06 .l-ttl span {
		padding: 15px;
	}
	.l-style07 .l-ttl {
		font-size: 20px;
		left: 10px;
		bottom: 10px;
	}
	.l-style07 .l-ttl span {
		padding: 15px;
	}
	.l-style08 {
		display: block;
	}
	.l-style08 .l-img {
		width: 100%;
	}
	.l-style08 .l-desc {
		padding: 30px 20px;
	}
	.l-style08 .l-ttl {
		text-align: center;
		margin-bottom: 20px;
		font-size: 22px;
	}
	.l-style09 {
		padding-bottom: 0;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
	}
	.l-style09 .l-desc {
		max-width: 100%;
		position: static;
		box-shadow: none;
		padding: 30px 20px;
	}
	.l-style09 .l-ttl {
		font-size: 20px;
	}
	.l-style09 .l-time {
		font-size: 16px;
	}
	.l-style10 {
		transition: 0.3s;
	}
	.l-style10:hover {
		opacity: 0.7;
	}
	.l-style10 .l-desc {
		top: 50px;
	}
	.l-style10 .l-ttl {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.l-style10 .l-txt {
		margin-right: 0;
		font-size: 12px;
	}
	.l-style10 .u-btn {
		right: 20px;
		bottom: 20px;
	}
}
.check-card a {
	display: block;
	width: 100%;
	height: 100%;
	background: #F8F8F8;
	position: relative;
	max-width: 673px;
	padding: 40px 50px;
	transition: 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
}
.check-card a::after {
	position: absolute;
	content: "";
	background: url(../images/under/check_deco.svg) center/contain no-repeat;
	width: 178px;
	height: 78px;
	top: 0;
	right: 0;
}
.check-card a:hover {
	opacity: 0.5;
}
.check-card .card-ttl {
	font-size: 24px;
	margin-bottom: 20px;
}
.check-card .u-btn {
	margin-top: 30px;
}

.list-card-col2 {
	display: flex;
	flex-wrap: wrap;
}
.list-card-col2 .list-item {
	background-color: #F8F8F8;
	padding: 30px 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	width: 48%;
	border: 1px solid #0E4D03;
}
.list-card-col2 .list-item:nth-child(odd) {
	margin-right: 4%;
}
.list-card-col2 .list-item + .list-item + .list-item {
	margin-top: 40px;
}
.list-card-col2 .list-img {
	margin-bottom: 20px;
}
.list-card-col2 .list-ttl {
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}
.list-card-col2 .cat-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.list-card-col2 .card-cat {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	padding: 10px;
	min-width: 90px;
	background: #0E4D03;
	text-align: center;
	color: #fff;
}
.list-card-col2 .card-cat + .card-cat {
	margin-left: 10px;
}

.list-card02 {
	display: grid;
}
.list-card02 > li {
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	padding: 30px 25px;
}
.list-card02 .list-img {
	text-align: center;
	margin-bottom: 25px;
}
.list-card02 .num {
	background: #0E4D03;
	border-radius: 50px;
	display: table;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
}
.list-card02 .list-ttl {
	display: block;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}
.list-card02 .list-btn {
	text-align: center;
	margin-top: auto;
	padding-top: 15px;
}
.list-card02 .btn-more {
	min-width: 0;
	width: 100%;
}
.list-card02.col1 {
	grid-template-columns: repeat(1, 1fr);
}
.list-card02.col2 {
	grid-template-columns: repeat(2, 1fr);
}
.list-card02.col3 {
	grid-template-columns: repeat(3, 1fr);
}
.list-card02.col4 {
	grid-template-columns: repeat(4, 1fr);
}

.list-card03 {
	display: grid;
}
.list-card03 > li {
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	padding: 30px 25px;
	border-top: 10px solid #0E4D03;
}
.list-card03 .list-img {
	text-align: center;
	margin-bottom: 25px;
}
.list-card03 .num {
	background: #0E4D03;
	border-radius: 50px;
	display: table;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
}
.list-card03 .list-ttl {
	display: block;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}
.list-card03 .list-btn {
	text-align: center;
	margin-top: auto;
	padding-top: 15px;
}
.list-card03 .btn-more {
	min-width: 0;
	width: 100%;
}
.list-card03.col1 {
	grid-template-columns: repeat(1, 1fr);
}
.list-card03.col2 {
	grid-template-columns: repeat(2, 1fr);
}
.list-card03.col3 {
	grid-template-columns: repeat(3, 1fr);
}
.list-card03.col4 {
	grid-template-columns: repeat(4, 1fr);
}

.list-card02.col2,
.list-card03.col2 {
	grid-gap: 40px;
}

.list-card02.col3,
.list-card03.col3 {
	grid-gap: 30px;
}

.list-card02.col4,
.list-card03.col4 {
	grid-gap: 20px;
}

.list-disc li {
	position: relative;
	padding-left: 10px;
}
.list-disc li:before {
	content: "";
	background: #3C9843;
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 15px;
	width: 5px;
	height: 5px;
}

@media (max-width: 800px) {
	.check-card a {
		padding: 60px 20px 30px;
	}
	.check-card a .card-ttl {
		font-size: 20px;
	}
	.list-card-col2 {
		display: block;
	}
	.list-card-col2 .list-item {
		width: 100%;
	}
	.list-card-col2 .list-item:nth-child(odd) {
		margin-right: 0;
	}
	.list-card-col2 .list-item + .list-item + .list-item {
		margin-top: 30px;
	}
	.list-card-col2 .list-item + .list-item {
		margin-top: 30px;
	}
	.list-card-col2 .list-ttl {
		font-size: 20px;
	}
	.list-card-col2 .card-cat {
		font-size: 12px;
		min-width: 70px;
	}
	.list-card02.col2,
	.list-card03.col2,
	.list-card02.col3,
	.list-card03.col3,
	.list-card02.col4,
	.list-card03.col4 {
		grid-gap: 15px;
	}
	.list-card02 li {
		padding: 25px 20px;
	}
	.list-card02.col1, .list-card02.col2, .list-card02.col3, .list-card02.col4 {
		grid-template-columns: repeat(1, 1fr);
	}
	.list-card03.col3 {
		grid-template-columns: 1fr;
	}
	.list-disc li::before {
		top: 12px;
	}
}
.flow-style01 {
	border: 1px solid #0E4D03;
	padding: 50px 30px;
}
.flow-style01 .l-item {
	position: relative;
}
.flow-style01 .l-item:not(:last-child) {
	border-bottom: 1px solid #0E4D03;
	padding-bottom: 50px;
	margin-bottom: 50px;
}
.flow-style01 .l-item:not(:last-child)::before, .flow-style01 .l-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
}
.flow-style01 .l-item:not(:last-child)::before {
	width: 20px;
	height: 20px;
	border-bottom: 2px solid #0E4D03;
	border-right: 2px solid #0E4D03;
	bottom: -5px;
	transform: translateX(-50%) rotate(45deg);
	z-index: 2;
}
.flow-style01 .l-item:not(:last-child)::after {
	background: #fff;
	width: 70px;
	height: 20px;
	bottom: -18px;
	transform: translateX(-50%);
	z-index: 1;
}
.flow-style01 .u-bnr .txt-box p {
	font-size: 13px;
}

@media (max-width: 800px) {
	.flow-style01 {
		padding: 30px 20px;
	}
	.flow-style01 .l-item:not(:last-child) {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
}

.flow-style02 .l-item {
	position: relative;
	width: 50%;
	padding: 10px 0 40px 40px;
	margin: 0 0 0 auto;
}

.flow-style02 .l-item:before{
	content: "";
	display: block;
	background: #3C9843;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	left: -10px;
	top: 0;
}
.flow-style02 .l-item:after{
	content: "";
	display: block;
	background: #3C9843;
	width: 1px;
	height: 100%;
	position: absolute;
	left: -1px;
	top: 0;
}
.flow-style02 .l-item:nth-child(even){
	padding: 10px 40px 40px 0;
	margin: 0 auto 0 0;
}
.flow-style02 .l-item:nth-child(even):before{
	left: auto;
	right: -10px;
}
.flow-style02 .l-item:nth-child(even):after{
	left: auto;
	right: 0;
}
.flow-style02 .l-item:last-of-type:after{
	content: none;
}
.flow-style02 .l-desc {
	background:#F8F8F8;
	padding: 32px 25px;
	position: relative;
}
.flow-style02 .l-ttl {
	font-size: 24px;
	position: absolute;
	left: 25px;
	top: -20px;
}
.flow-style02 .l-img {
	text-align: center;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.flow-style02 .l-item {
		width: 100%;
		padding: 10px 0 40px 35px;
	}

	.flow-style02 .l-item:before{
		width: 15px;
		height: 15px;
		left:0;
	}
	.flow-style02 .l-item:after{
		left:7px;
	}
	.flow-style02 .l-item:nth-child(even){
		width: 100%;
		padding: 10px 0 40px 35px;
	}
	.flow-style02 .l-item:nth-child(even):before{
		left:0;
	}
	.flow-style02 .l-item:nth-child(even):after{
		left:7px;
	}
	.flow-style02 .l-item:last-of-type:after{
		content: none;
	}
	.flow-style02 .l-desc {
		padding: 25px 20px;
	}
	.flow-style02 .l-ttl {
		font-size: 20px;
		left: 20px;
		top: -15px;
	}
}

.faq-style02 dt {
	display: flex;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.faq-style02 dt .ttl {
	font-size: 22px;
	line-height: 1.7;
	flex: 1;
}
.faq-style02 dt .icon {
	background-color: #0E4D03;
	color: #fff;
}
.faq-style02 dd .wrapper {
	display: flex;
}
.faq-style02 dd .icon {
	background: #3C9843;
	color: #fff;
}
.faq-style02 .icon {
	font-size: 20px;
	font-family: "Cormorant Garamond", serif;
	text-align: center;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.faq-style02 .txt {
	flex: 1;
}
.faq-style02 dd:not(:last-child) {
	margin-bottom: 60px;
}

@media (max-width: 800px) {
	.faq-style02 dt .ttl {
		font-size: 16px;
	}
	.faq-style02 dd {
		margin-bottom: 30px;
	}
	.faq-style02 .icon {
		font-size: 15px;
		width: 30px;
		height: 30px;
		line-height: 26px;
		margin: 0 10px 0 0;
	}
}
.table-style01 {
	border: 1px solid #8B8B8B;
}
.table-style01 tr:not(:last-child) {
	border-bottom: 1px solid #8B8B8B;
}
.table-style01 th {
	background-color: #0E4D03;
	font-weight: bold;
	color: #fff;
	padding: 15px;
	width: 30%;
}
.table-style01 td {
	padding: 10px 30px;
}

@media (max-width: 800px) {
	.table-style01 th {
		width: 100%;
		display: block;
		padding: 10px 15px;
		text-align: left;
	}
	.table-style01 td {
		width: 100%;
		display: block;
		padding: 10px 15px;
	}
}
.tab-area {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.tab-item {
	border: 1px solid #000;
	font-size: 16px;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	padding: 5px 19px;
	transition: 0.3s;
	cursor: pointer;
}
.tab-item:hover {
	background: #000;
	color: #fff;
}
.tab-item:not(:last-child) {
	margin-right: 10px;
}
.tab-item.is-active {
	background: #000;
	color: #fff;
	transition: 0.3s;
}

.panel-item {
	display: none;
}
.panel-item.is-active {
	display: block;
}

@media (max-width: 800px) {
	.tab-item {
		font-size: 14px;
		padding: 5px 10px;
	}
	.tab-area {
		justify-content: flex-start;
	}
	.panel-item {
		display: block;
	}
	.panel-item.is-active {
		display: block;
	}
	.panel-item + .panel-item {
		margin-top: 40px;
	}
	.panel-item .l-ttl {
		font-size: 20px;
		margin-bottom: 20px;
	}
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
	border-bottom: 1px solid #000;
	font-size: 18px;
	padding: 0 0 5px;
	margin: 0 0 15px;
}

.dl-privacy dd + dt {
	margin-top: 30px;
}

/*------------
Footer
--------------*/
.footer {
	background-color: #000;
	color: #fff;
}
.footer-inr {
	max-width: 915px;
	margin: 0 auto;
	padding: 80px 0 30px;
}
.footer-top {
	display: flex;
	margin-bottom: 80px;
}
.footer .f-left {
	flex: 1;
	margin-right: 50px;
}
.footer .f-logo {
	display: block;
	max-width: 114px;
	margin-bottom: 10px;
}
.footer .f-cta {
	display: flex;
	align-items: center;
}
.footer .f-cta a:nth-child(1) {
	margin-right: 20px;
}
.footer .f-right {
	flex: 1;
}
.footer .f-navi {
	display: grid;
	grid-template-columns: 148px 205px;
	gap: 60px;
}
.footer .f-navi-list {
	font-size: 14px;
}
.footer .f-navi-list li {
	position: relative;
	padding-left: 15px;
}
.footer .f-navi-list li:before {
	content: "";
	position: absolute;
	left: 0;
	width: 6px;
	height: 1px;
	top: 14px;
	background: #fff;
}
.footer .f-navi-list li:not(:last-child) {
	margin-bottom: 5px;
}
.footer .f-navi-list a:hover {
	text-decoration: underline;
}
.footer .copyright {
	font-size: 13px;
	color: #fff;
	text-align: right;
}

.pagetop {
	background-color: #3C9843;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 99;
	transition: 0.3s;
}
.pagetop:after {
	content: "";
	background: url(../images/share/pagetop.svg) center/contain no-repeat;
	width: 5px;
	height: 26px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pagetop:hover {
	opacity: 0.5;
}

@media (max-width: 800px) {
	.footer {
		padding-bottom: 50px;
	}
	.footer-top {
		display: block;
		margin-bottom: 30px;
	}
	.footer-inr {
		width: 90%;
		margin: 0 auto;
		padding: 40px 0 30px;
	}
	.footer .f-logo {
		margin: 0 auto 20px;
		width: 90px;
	}
	.footer .f-left {
		text-align: center;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.footer .f-navi {
		grid-template-columns: 1fr;
		gap: 5px;
	}
	.footer .copyright {
		text-align: center;
	}
	.pagetop {
		display: none;
	}
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
	margin-bottom: 80px;
}

/*ギャラリー*/
.list-under-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
	grid-gap: 30px 15px;
	margin-bottom: 50px;
}
.list-under-gallery .list-img {
	margin-bottom: 5px;
	overflow: hidden;
}
.list-under-gallery .list-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 200px;
	transition: transform 0.5s;
}
.list-under-gallery .list-ttl {
	display: inline-block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-bottom: 5px;
}
.list-under-gallery a {
	display: block;
	height: 100%;
}
.list-under-gallery a:hover .list-img img {
	transform: scale(1.1);
}
.list-under-gallery .post-category01 span:not(:last-child) {
	max-width: 150px;
}

.gallery-single-layout {
	border-bottom: 1px solid #e8ecf0;
	padding-bottom: 50px;
	margin-bottom: 50px;
}
.gallery-single-layout .l-img {
	margin-bottom: 50px;
}
.gallery-single-layout .l-ttl {
	border-bottom: 1px solid #e8ecf0;
	font-size: 22px;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.gallery-single-layout .splide__slide {
	display: flex;
	align-content: center;
	text-align: center;
	justify-content: center;
}
.gallery-single-layout .splide__arrow {
	cursor: pointer;
	width: 60px;
	height: 60px;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.gallery-single-layout .splide__arrow svg {
	display: none;
}
.gallery-single-layout .splide__arrow--prev {
	right: auto;
	left: 0;
	background: url(../images/share/icon_arrow_left.png) center/contain no-repeat;
}
.gallery-single-layout .splide__arrow--next {
	right: 0;
	background: url(../images/share/icon_arrow_right.png) center/contain no-repeat;
}
.gallery-single-layout .splide__slide img {
	max-height: 500px;
	-o-object-fit: contain;
	object-fit: contain;
}
.gallery-single-layout .thumb-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 8px;
	margin-top: 30px;
}
.gallery-single-layout .thumb-item {
	cursor: pointer;
	transition: 0.3s;
}
.gallery-single-layout .thumb-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
}
.gallery-single-layout .thumb-item.is-active {
	transform: scale(0.9);
}
.gallery-single-layout .l-desc {
	margin-bottom: 40px;
}

.post-layout {
	display: flex;
}
.post-layout .post-img {
	flex: 1;
	margin-right: 50px;
}
.post-layout .post-img img {
	width: 100%;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
}
.post-layout .post-desc {
	flex: 2;
}

/*詳細ページ*/
.post-single-img {
	text-align: center;
	margin-bottom: 40px;
}

.table-style01 + .postdata {
	margin-top: 20px;
}

.postdata h4 {
	font-size: 20px;
	color: #3C9843;
}
.postdata h5 {
	font-size: 18px;
	color: #0E4D03;
	padding-left: 10px;
	position: relative;
}
.postdata h5:after {
	content: "-";
	color: #3C9843;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}
.postdata h6 {
	font-size: 18px;
	color: #3C9843;
}
.postdata p, .postdata ul, .postdata ol {
	margin-bottom: 15px;
}
.postdata a {
	text-decoration: underline;
}
.postdata a:hover {
	text-decoration: none;
}
.postdata strong {
	font-weight: bold;
}
.postdata em {
	font-style: italic;
}
.postdata ul li {
	list-style: inside disc;
}
.postdata ul li > ul {
	margin: 0 0 0 15px;
}
.postdata ol li {
	list-style: inside decimal;
}
.postdata ol li > ol {
	margin: 0 0 0 15px;
}

.post-data {
	line-height: 1;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.post-data time {
	font-size: 14px;
	color: #0E4D03;
	line-height: 1;
}
.post-data .post-category01 {
	margin-left: 20px;
}

.post-category01 {
	background: #0E4D03;
	color: #fff;
	line-height: 1.2;
	padding: 5px 10px 7px;
	display: inline-block;
}
.post-category01 span {
	font-size: 12px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: --webkit-inline-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.post-category01 span:not(:last-child) {
	position: relative;
	padding-right: 20px;
}
.post-category01 span:not(:last-child):before {
	content: "/";
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
}

/*セレクト式カテゴリー*/
.select-area {
	margin-bottom: 50px;
}
.select-area .select-box {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto;
}
.select-area .select-box:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 0;
	height: 0;
	border-top: 8px solid #0E4D03;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	transform: translateY(-50%);
}
.select-area .select-category {
	-webkit-appearance: none;
	outline: none;
	text-indent: 0.01px;
	text-overflow: "";
	border-radius: 0;
	background: #F6F6F6;
	font-size: 16px;
	color: #0E4D03;
	vertical-align: middle;
	height: 50px;
	padding: 5px 15px;
	border: none;
	width: 100%;
	cursor: pointer;
}
.select-area .select-category::-ms-expand {
	display: none;
}

/*一覧用ページャー*/
.post-number {
	margin-top: 100px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	border-bottom: 1px solid #d3d3d3;
}
.post-number a {
	color: #a5a5a5;
	display: inline-block;
	padding: 0 10px 15px;
}
.post-number a:hover {
	color: #000;
}
.post-number .current {
	color: #000;
	display: inline-block;
	padding: 0 10px 15px;
	position: relative;
}
.post-number .current::after {
	content: "";
	border-bottom: 2px solid #000;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #d3d3d3;
	font-family: "Cormorant Garamond", serif;
}
.post-number-single a {
	display: inline-block;
	color: #000;
}
.post-number-single a.next {
	margin-top: 0;
}
.post-number-single a.next::before {
	content: "";
	background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
	display: inline-block;
	margin-right: 15px;
	width: 30px;
	height: 30px;
}
.post-number-single a.prev {
	margin-top: 0;
}
.post-number-single a.prev::after {
	content: "";
	background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
	display: inline-block;
	margin-left: 15px;
	width: 30px;
	height: 30px;
}
.post-number-single a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
	/*普通投稿*/
	.list-post-type01 .list-item:not(:last-child) {
		margin-bottom: 60px;
	}
	/*ギャラリー*/
	.list-under-gallery {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px 15px;
	}
	.list-under-gallery .list-img {
		margin-bottom: 10px;
	}
	.list-under-gallery .list-img img {
		height: 120px;
	}
	.list-under-gallery .list-ttl {
		margin-bottom: 10px;
	}
	.list-under-gallery .post-category01 span:not(:last-child) {
		max-width: 70px;
	}
	.gallery-single-layout {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.gallery-single-layout .splide__arrow {
		width: 40px;
		height: 40px;
	}
	.gallery-single-layout .splide__arrow--prev {
		right: auto;
		left: -10px;
	}
	.gallery-single-layout .splide__arrow--next {
		right: -10px;
	}
	.gallery-single-layout .l-img {
		margin-bottom: 30px;
	}
	.gallery-single-layout .l-ttl {
		font-size: 18px;
	}
	.gallery-single-layout .splide__slide img {
		max-height: 300px;
	}
	.gallery-single-layout .thumb-wrapper {
		grid-template-columns: repeat(5, 1fr);
	}
	.gallery-single-layout .thumb-item {
		cursor: pointer;
		filter: grayscale(100%);
		transition: 0.3s;
	}
	.gallery-single-layout .thumb-item img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1/1;
		-o-object-fit: cover;
		object-fit: cover;
		border-radius: 4px;
	}
	.gallery-single-layout .thumb-item.is-active {
		filter: grayscale(0%);
		transform: scale(0.9);
	}
	.gallery-single-layout .l-desc {
		margin-bottom: 20px;
	}
	.post-layout {
		display: block;
	}
	.post-layout .post-img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.post-layout .post-desc {
		width: 100%;
	}
	/*詳細ページ*/
	/*セレクト式カテゴリー*/
	/*一覧用ページャー*/
	.post-number {
		margin-top: 60px;
	}
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.clearfix:after {
	clear: both;
	content: "";
	display: block;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

hr {
	max-width: 1024px;
	margin: 50px auto;
}

.fade {
	transition: opacity 0.5s;
}
.fade:hover {
	opacity: 0.5;
}

.fs11 {
	font-size: 11px;
}

.bold,
strong {
	font-family: "FOT-筑紫明朝 Pr6N D";
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.marker span {
	background: linear-gradient(transparent 60%, rgba(93, 162, 48, 0.5) 60%);
	padding-bottom: 3px;
}
.marker .large {
	font-size: 30px;
}
.marker .small {
	font-size: 20px;
}

.link {
	text-decoration: underline;
	color: #9A76AD;
}
.link:hover {
	text-decoration: none;
}

.no-link {
	pointer-events: none;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

.notice {
	font-size: 0.8rem;
	text-indent: -1.6em;
	padding-left: 1.6em;
}

.tac {
	text-align: center;
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mbXS {
	margin-bottom: 5px !important;
}

.mbS {
	margin-bottom: 15px !important;
}

.mbM {
	margin-bottom: 30px !important;
}

.mbL {
	margin-bottom: 60px !important;
}

.mbXL {
	margin-bottom: 90px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.m0a {
	margin: 0 auto;
}

.pb0 {
	padding-bottom: 0 !important;
}

@media (max-width: 800px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
	.sp-tac {
		text-align: center !important;
	}
	.sp-tar {
		text-align: right !important;
	}
	.sp-tal {
		text-align: left !important;
	}
	.mbL {
		margin-bottom: 30px !important;
	}
	.mbXL {
		margin-bottom: 50px !important;
	}
}
/*ボタン*/
.btn-more {
	display: block;
	width: 260px;
	padding: 13px 55px 13px 30px;
	font-size: 16px;
	color: #fff;
	background-color: #3C9843;
	border: 1px solid #3C9843;
	transition: 0.3s;
	position: relative;
	letter-spacing: 0;
}
.btn-more:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: url(../images/share/btn-more_arrow.svg) center/contain no-repeat;
	width: 26px;
	height: 5px;
	transition: 0.3s;
}
.btn-more:hover {
	opacity: 0.5;
}
.btn-more.long {
	width: 325px;
}

.btn-cta {
	padding: 10px;
	font-size: 16px;
	width: 180px;
	color: #fff;
	padding: 10px 20px;
	background-color: #000;
	border: 1px solid #000;
}
.btn-cta span {
	position: relative;
	padding-left: 32px;
}
.btn-cta span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-image: url(../images/share/icon_mail_w.svg);
	background-size: contain;
	width: 21px;
	height: 16px;
}

.u-btn {
	position: relative;
	padding-right: 45px;
	display: inline-block;
}
.u-btn::before {
	position: absolute;
	content: "";
	background: url(../images/share/u-btn_arrow.svg) center/contain no-repeat;
	width: 26px;
	height: 5px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.u-btn.white {
	color: #fff;
}
.u-btn.white::before {
	background: url(../images/share/btn-more_arrow.svg) center/contain no-repeat;
	width: 26px;
	height: 5px;
}

@media (max-width: 800px) {
	.btn-more {
		width: 100%;
		font-size: 15px;
	}
	.btn-more.long {
		width: 100%;
	}
}
.map {
	position: relative;
	width: 100%;
	height: 500px;
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tel {
	font-size: 31px;
	color: #0E4D03;
	line-height: 1;
	letter-spacing: 0;
}
.tel > span {
	font-size: 22px;
}

@media (max-width: 800px) {
	.map {
		height: 300px;
	}
	.tel {
		font-size: 24px;
		padding-left: 25px;
	}
	.tel:before {
		width: 20px;
		height: 25px;
	}
}
/*------------
splide
-------------*/
.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0 2px;
	pointer-events: auto;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list {
	display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	cursor: pointer;
	width: 60px;
	height: 60px;
	padding: 0;
	position: absolute;
	top: 0;
	z-index: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.splide__arrow svg {
	display: none;
}

.splide__arrow--prev {
	right: 70px;
	background: url(../images/share/icon_arrow_left.png) center/contain no-repeat;
	z-index: 10;
}

.splide__arrow--next {
	right: 0;
	background: url(../images/share/icon_arrow_right.png) center/contain no-repeat;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev svg {
	transform: scaleX(-1);
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 1em;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #B2B2B2;
	border: 0;
	display: inline-block;
	height: 2px;
	margin: 3px;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 40px;
}

.splide__pagination__page.is-active {
	background-color: #3C9843;
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}
@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}
.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

.splide .pagination {
	position: absolute;
	top: 13px;
	right: 168px;
}

@media (max-width: 800px) {
	.splide__arrow {
		width: 40px;
		height: 40px;
	}
}
/*------------
アニメーション
--------------*/
.js-fadein {
	transition: opacity 1.2s, transform 1s;
	opacity: 0;
	transform: translateY(120px);
}
.js-fadein.is-show {
	opacity: 1;
	transform: translateY(0);
}/*# sourceMappingURL=style.css.map */
