/*===============================
MARK: root 
=================================*/
:root {
	--main-color: #3a7b42;
	--c-dark: #0b550a;
	--c-light: #356c41;
	--fz10: 0.625rem;
	--fz12: 0.75rem;
	--fz13: 0.8125rem;
	--fz14: 0.875rem;
	--fz16: 1rem;
	--fz17: 1.0625rem;
	--fz18: 1.125rem;
	--fz20: 1.25rem;
	--fz22: 1.375rem;
	--fz24: 1.5rem;
	--fz26: 1.625rem;
	--fz28: 1.75rem;
	--fz30: 1.875rem;
	--fz32: 2rem;
	--fz34: 2.125rem;
	--fz36: 2.25rem;
	--fz38: 2.375rem;
	--fz40: 2.5rem;
	--transform-center: translate(-50%, -50%);
}

/*===============================
MARK: common
=================================*/
body {
	overflow-x: hidden;
	font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
		'Hiragino Sans', Meiryo, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
}

a {
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;
}

.d-flex {
	display: flex;
	align-items: start;
	justify-content: start;
}

.d-flex.order-reverse {
	flex-direction: row-reverse;
}

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.container {
	width: 100%;
	max-width: 1230px;
	margin-inline: auto;
	padding-inline: 15px;
}

.indent1em {
	text-indent: -1em;
	margin-left: 1em;
}

.indent2em {
	text-indent: -2em;
	margin-left: 2em;
}

.bold {
	font-weight: 700;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.bg-white {
	background-color: #fff;
}
.bg-gray {
	background-color: #f4f4f4;
}
.bg-blue {
	background-color: #e4eff0;
}

.c-white,
.c-white * {
	color: #fff;
}

.f-en {
	font-family: 'Raleway', sans-serif;
}

/*===============================
MARK: ボタン
=================================*/

.btn {
	position: relative;
	display: inline-block;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0.1em;
}

.btn svg {
	vertical-align: middle;
	margin-right: 3px;
}

.btn-contact {
	border-radius: 50em;
	border: 2px solid var(--c-dark);
	background: var(--c-dark);
	color: #fff;
	font-size: var(--fz13);
	font-weight: 400;
	padding: 1.45em 3.5em;
	letter-spacing: normal;
	white-space: nowrap;
}

.btn-contact:hover {
	opacity: 1;
	color: var(--c-dark);
	background-color: #fff;
}

.btn-contact svg path {
	transition: all 0.3s;
}

.btn-contact:hover svg path {
	fill: var(--c-dark);
}

.btn-viewmore {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	max-width: 225px;
	padding: 1rem 25px 1rem 10px;
	text-decoration: none;
	font-size: var(--fz16);
	font-weight: 500;
	color: #000;
	transition: 0.2s ease-in-out;
}
.btn-viewmore:hover {
	opacity: 1;
}
.btn-viewmore::before,
.btn-viewmore::after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
}
.btn-viewmore::before {
	width: var(--fz14);
	height: 0.5rem;
	right: 1.5rem;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: translateY(-50%) rotate(-90deg);
}
.btn-viewmore::after {
	right: 0;
	background: var(--c-dark);
	z-index: 1;
	width: 4rem;
	height: 4rem;
	border-radius: 50em;
	transform: translateY(-50%);
	transition: all 0.4s;
}
.btn-viewmore span {
	position: relative;
	transition: all 0.3s;
	z-index: 3;
}

.btn-viewmore:hover span {
	color: #fff;
}
.btn-viewmore:hover::after {
	right: 0;
	width: 100%;
}

/*===============================
MARK: テキストアニメーション
=================================*/
.animate-title-wrap {
	line-height: 1;
}

.animate-title-wrap .title-content {
	margin: 0;
	display: inline-block;
	overflow: hidden;
	position: relative;
}
.animate-title-wrap .title-content::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #fff;
	/*アニメーションの設定*/
	animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1);
	animation-fill-mode: both;
	animation-delay: 0.5s;
}
.animate-title-wrap .title-content > * {
	position: relative;
	padding: 6% 8%;
	display: block;
	line-height: 1;
	color: var(--c-dark);
	/*アニメーションの設定*/
	animation: fadeIn 0.4s 0.5s;
	animation-fill-mode: both;
	animation-delay: 1s;
	z-index: 1;
}

/*keyframesの設定*/
/*文字が消えている状態から現れるアニメーション*/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*はじめにブロックを伸ばすアニメーション*/
@keyframes secondaryImageOverlayIn {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
/*ブロックを横に追いやるアニメーション*/
@keyframes secondaryImageOverlayOut {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(102%);
	}
}

.js-text span {
	display: inline-block;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s;
}

.is-show .js-text span {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.is-show .js-text span:nth-child(1) {
	transition-delay: 0s;
}
.is-show .js-text span:nth-child(2) {
	transition-delay: 0.1s;
}
.is-show .js-text span:nth-child(3) {
	transition-delay: 0.2s;
}
.is-show .js-text span:nth-child(4) {
	transition-delay: 0.3s;
}
.is-show .js-text span:nth-child(5) {
	transition-delay: 0.4s;
}
.is-show .js-text span:nth-child(6) {
	transition-delay: 0.5s;
}
.is-show .js-text span:nth-child(7) {
	transition-delay: 0.6s;
}
.is-show .js-text span:nth-child(8) {
	transition-delay: 0.7s;
}
.is-show .js-text span:nth-child(9) {
	transition-delay: 0.8s;
}
.is-show .js-text span:nth-child(10) {
	transition-delay: 0.9s;
}
.is-show .js-text span:nth-child(11) {
	transition-delay: 1s;
}
.is-show .js-text span:nth-child(12) {
	transition-delay: 1.1s;
}
.is-show .js-text span:nth-child(13) {
	transition-delay: 1.2s;
}
.is-show .js-text span:nth-child(14) {
	transition-delay: 1.3s;
}
.is-show .js-text span:nth-child(15) {
	transition-delay: 1.4s;
}

.js-fadein {
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s;
}

.is-show .js-fadein {
	visibility: visible;
	opacity: 1;
}

/*===============================
MARK: header
=================================*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	text-align: center;
	z-index: 20;
	transition: all 0.3s;
}

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
	padding-inline: min(3.33vw, 40px);
	padding-top: 30px;
	height: 100%;
}

.site-logo {
	flex: 1;
	min-width: 120px;
	text-align: left;
}

.site-logo h1 {
	display: inline-block;
	margin: 0;
}

.site-logo a {
	display: flex;
	align-items: center;
}

.header-logo {
	display: block;
	height: auto;
	max-width: 260px;
}

#menu {
	margin: 0;
}

#menu-inner {
	width: 100%;
	margin: 0 auto;
}

#header-nav {
	display: flex;
	align-items: center;
	gap: 48px;
}

.menu-content {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: min(3.33vw, 48px);
}

.menu-content > li {
	position: relative;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	list-style: none;
}

.header-link-list {
	display: block;
	padding-block: 13px;
	position: relative;
	color: #383838;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	line-height: 1;
	font-size: var(--fz14);
}

.header-link-list::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: -10%;
	transform: translateX(-50%);
	width: calc(100% + 20px);
	height: 100%;
	background: var(--c-dark);
	z-index: -1;
	transition: all 0.3s;
	visibility: hidden;
	opacity: 0;
}

.header-link-list:hover {
	color: #fff;
	opacity: 1;
}
.header-link-list:hover::after {
	bottom: 0;
	visibility: visible;
	opacity: 1;
}

.toggle_btn {
	display: none;
}

/*===============================
MARK: MV
=================================*/
#mv {
	position: relative;
	width: 100%;
	height: 100%;
	margin-top: 7.5rem;
	margin-bottom: 6em;
}

#mv::before {
	content: '';
	position: absolute;
	top: 6em;
	left: 0;
	display: block;
	width: 90vw;
	height: 100%;
	background-color: var(--main-color);
	z-index: -1;
}

.mv-image {
	display: flex;
	justify-content: end;
	padding-left: 55px;
}

.mv-image .inner {
	position: relative;
	width: max(74%, 800px);
}

.mv-image img {
	display: block;
	width: 100%;
}

.mv-message {
	position: absolute;
	top: 36%;
	left: 0;
	width: 100%;
	padding-inline: min(3.33vw, 40px);
}

.mv-message .animate-title-wrap:first-of-type {
	margin-bottom: 1%;
}

.mv-message .animate-title-wrap .title-content {
	width: 30%;
}

.mv-message .animate-title-wrap:nth-of-type(1) .title-content {
	width: 32%;
}

.mv-message .animate-title-wrap .title-content span {
	padding-right: 28px;
}

.mv-message .animate-title-wrap:last-of-type .title-content span {
	padding-right: 38px;
}

.mv-message .animate-title-wrap .title-content span img {
	width: 100%;
}

.mv-lead {
	margin-top: 1.7em;
}

.mv-lead p {
	font-size: var(--fz12);
	margin: 0;
	width: 26%;
}

/* スクロールダウンの位置 */
.scroll_down {
	display: flex;
	align-items: end;
	justify-content: center;
	position: absolute;
	left: 8px;
	top: 73%;
	width: fit-content;
	text-align: center;
}

.scroll_down span {
	display: inline-block;
	margin-bottom: 1em;
	margin-right: 7px;
}

.scroll_down_item {
	position: relative;
	display: block;
	width: 1px;
	height: 100px;
	background: #fff;
}

.scroll_down_item:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: circlemove 2.4s ease-in-out infinite, cirlemovehide 2.4s ease-out infinite;
}

@keyframes circlemove {
	0% {
		bottom: 100px;
	}
	100% {
		bottom: 0px;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}

/*===============================
MARK: TOP-CONTENT
=================================*/
/* ABOUT US */
#about {
	padding-top: 80px;
}
.section-heading.js-heading {
	margin-bottom: var(--fz38);
}

.section-heading.js-heading h3 {
	font-size: clamp(2.25rem, calc(1.625rem + 2.5vw), 3.5rem);
	font-weight: 700;
	color: var(--c-dark);
	line-height: 1.2;
}

.section-heading.js-heading p {
	font-size: clamp(0.875rem, calc(0.8125rem + 0.25vw), 1rem);
	font-weight: 500;
	margin-block: 0.7em 0;
}

#about .about-txt {
	max-width: 600px;
}

/* 自動無限スライダー */
/* スライドアニメーションの設定 */
@keyframes horizontal-animation {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/* スライダーを表示する親コンテナ */
.slider-container {
	padding-top: 80px;
	display: flex;
	overflow: hidden;
}

/* スライダー本体 */
.slider-wrapper {
	display: flex;
	animation: horizontal-animation 40s linear infinite;
}

/* スライドコンテンツ */
.slide {
	width: calc((100vw / 4) - 40px);
	aspect-ratio: 1;
	margin-right: 40px;
}

.slide img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#about .btn-wrap {
	display: flex;
	justify-content: end;
	padding-top: 40px;
}

/* OUR SERVICES */
#service {
	position: relative;
	background: var(--main-color);
	padding-block: 180px 160px;
	margin-top: 80px;
}

#service .img-wrap {
	padding-right: min(9.5%, 100px);
	padding-top: 0.75rem;
	margin-left: calc(50% - 50vw);
}

#service .img-wrap img {
	display: block;
	width: 100%;
}

#service .content {
	width: 50%;
	flex-shrink: 0;
}

.service-menu {
	padding-top: 1.75rem;
}

.service-menu a {
	position: relative;
	text-decoration: none;
}

.service-menu-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: clamp(1.25rem, calc(1.125rem + 0.5vw), 1.5rem);
	font-weight: 700;
	width: 100%;
	background: #0e501d;
	border-bottom: 1px solid #fff;
	padding: 1.5rem;
}

.service-menu-item::before,
.service-menu-item::after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
}

.service-menu-item::before {
	width: 8.89px;
	height: 5px;
	right: 2.5rem;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: translateY(-50%) rotate(-90deg);
}

.service-menu-item:nth-child(2)::before {
	transform: translateY(-50%);
}

.service-menu-item::after {
	right: 1.5rem;
	background: rgba(255, 255, 255, 0.16);
	z-index: 1;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50em;
	transform: translateY(-50%);
	transition: all 0.4s;
}

.service-menu-item:last-child {
	border-bottom: none;
}

.service-menu-item .sub {
	font-size: var(--fz12);
	font-weight: 400;
}

.service-menu ul {
	list-style: none;
	margin: 0;
	flex-wrap: wrap;
	font-size: var(--fz12);
}
.service-menu ul li {
	width: 50%;
	border-bottom: 1px solid #fff;
}
.service-menu ul li:nth-child(even) {
	border-left: 1px solid #fff;
}
.service-menu ul li a {
	display: block;
	padding: 1.5rem;
	background: #356c41;
}
.service-menu ul li a::after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	width: 8.89px;
	height: 5px;
	right: 0.75rem;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: translateY(-50%) rotate(-90deg);
}

.service-menu ul li a:hover {
	background: #0e501d;
}

/* OUR SERVICES */
#top-menu {
	padding-top: 80px;
}

.img-menu-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}

.img-menu-item {
	background-repeat: no-repeat;
	background-size: cover;
}

.img-menu-item:nth-child(1) {
	background-image: url(../images/top_menu01.webp);
}
.img-menu-item:nth-child(2) {
	background-image: url(../images/top_menu02.webp);
}
.img-menu-item:nth-child(3) {
	background-image: url(../images/top_menu03.webp);
}
.img-menu-item:nth-child(4) {
	background-image: url(../images/top_menu04.webp);
}

.img-menu-item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	text-decoration: none;
	color: #fff;
	width: 100%;
	padding: 5.75rem 3.5rem;
}

.img-menu-item a:hover {
	background-color: rgba(11, 85, 10, 0.2);
	opacity: 1;
}

.img-menu-item a p {
	font-size: clamp(1.75rem, calc(1.25rem + 2vw), 2.75rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}
.img-menu-item a span {
	font-weight: 500;
}

.img-menu-item a::before,
.img-menu-item a::after {
	content: '';
	position: absolute;
	display: block;
}
.img-menu-item a::before {
	width: var(--fz14);
	height: 0.5rem;
	right: 3rem;
	bottom: 3.25rem;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: rotate(-90deg);
}
.img-menu-item a::after {
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1;
	width: 4rem;
	height: 4rem;
	border-radius: 50em;
	border: 1px solid #fff;
	transition: all 0.4s;
}

.bnr-wrap {
	margin-top: 40px;
}

.bnr-wrap a {
	display: block;
	margin-inline: auto;
	max-width: 800px;
}

.bnr-wrap img {
	display: block;
}

/* フローティングバナー */
.bnr-wrapper {
	position: relative;
}

#floating-bnr {
	position: fixed;
	right: 20px;
	bottom: 40px;
	transition: all 0.3s;
	z-index: 10;
}

#close-button {
	position: absolute;
	top: -0.5em;
	right: -0.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #313131;
	color: #fff;
	border-radius: 50em;
	padding: 5px;
	z-index: 1;
	font-size: var(--fz12);
	transform: rotate(0);
	transition: all 0.3s;
}

.floating-container {
	position: relative;
	background: var(--main-color);
	font-size: var(--fz12);
	padding-bottom: 4px;
	transition: all 0.3s;
}

.bnr-label {
	position: absolute;
	top: 0;
	left: 10px;
	background: #fdd753;
	padding: 4% 3.5%;
	transition: all 0.3s;
}

.bnr-label img {
	display: block;
}

.floating-container .heading {
	color: #fff;
	padding: 0.5em 1.5em 0.5em 6em;
	transition: all 0.3s;
}

.floating-container .heading p {
	margin-bottom: 0;
}

.floating-container .inner {
	background: #fff;
	margin-inline: 4px;
	padding: 0.5em 0.5em 0.5em 0;
}

.floating-container .inner p {
	margin-bottom: 0;
	color: var(--main-color);
	padding-left: calc(6em - 4px);
}

.floating-container .phone-num {
	display: flex;
	align-items: center;
	font-size: var(--fz12);
	line-height: 1;
	font-weight: 500;
	margin-left: 1.5em;
	color: #3a7b42;
	margin-bottom: 5px;
}

.floating-container .phone-num dt {
	font-weight: 400;
	width: 10.5em;
}

.floating-container .phone-num dd {
	display: flex;
	align-items: center;
	font-weight: 800;
	margin: 0;
}

.floating-container .phone-num .icon {
	display: block;
	margin-right: 5px;
}

.floating-container .phone-num .icon img {
	display: block;
	width: 1.1em;
}

#floating-bnr.hidden {
	bottom: 0;
}

#floating-bnr.hidden #close-button {
	transform: rotate(45deg);
}

#floating-bnr.hidden .bnr-label {
	position: absolute;
	top: unset;
	bottom: 0;
}

#floating-bnr.hidden .close-none {
	display: none;
}

#floating-bnr.absolute {
	position: absolute;
	z-index: 1;
}

/*===============================
MARK: footer
=================================*/
.footer-contact {
	margin-top: 120px;
	padding-block: 120px;
	background: url(../images/footer_bg_pc.webp) no-repeat;
	background-size: cover;
}

.footer-contact > .container > .d-flex {
	align-items: center;
	justify-content: space-between;
}

.footer-contact .section-heading.js-heading {
	margin-bottom: 0;
}

.contact-howto {
	align-items: stretch;
	justify-content: end;
	gap: 20px;
	flex: 1;
}

.contact-howto > div {
	width: 100%;
	max-width: 410px;
	padding: var(--fz30) 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact-howto > div > p {
	margin-bottom: 0;
}

.to-tell .phone-num {
	color: var(--c-dark);
	font-weight: 700;
	font-size: var(--fz32);
	line-height: 1;
	margin-block: 0.5rem 0.5rem;
}

.to-tell .phone-num dt {
	margin-bottom: 5px;
}

.to-tell .phone-num span {
	font-size: var(--fz20);
	padding-right: 5px;
	vertical-align: middle;
}

.to-tell .phone-num dd {
	margin: 0;
}

.to-web .btn {
	margin-top: 1rem;
	padding: 1.25em 3em;
}

.site-footer {
	padding-top: 36px;
}

.footer-inner {
	justify-content: space-between;
	padding-bottom: 40px;
}

.footer-logo img {
	display: block;
}

.footer-inner .address {
	line-height: 1.4;
	margin-top: 1.5rem;
}

.footer-inner .address h5 {
	font-size: var(--fz14);
	margin-bottom: 0.75em;
}

.footer-inner .address a {
	color: #000;
	font-size: var(--fz12);
}

.sns-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sns-nav li {
	width: var(--fz36);
}

.footer-inner .right {
	display: flex;
	column-gap: 60px;
	padding-top: 20px;
}

.footer-inner .right ul {
	list-style: none;
}

.footer-nav {
	margin: 0;
	padding: 0;
}

.footer-nav ul {
	margin: 0;
	font-size: var(--fz13);
}

.footer-nav > li {
	padding-left: 1.5em;
	margin-bottom: 1.5em;
}

.footer-nav a {
	position: relative;
	text-decoration: none;
	color: inherit;
}

.footer-nav > li > a::before {
	position: absolute;
	top: 50%;
	left: -1.5em;
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: solid 1px #0e501d;
	border-right: solid 1px #0e501d;
	transform: translateY(-50%) rotate(45deg);
}

.footer-nav ul li {
	margin-top: 0.5em;
}

.footer-nav ul li a {
	color: #a5a5a5;
}

.footer-nav ul li a:hover {
	color: #000;
}

.footer-bottom {
	padding-block: 1.4em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #dedede;
}

.copyright {
	margin-bottom: 0;
	font-size: var(--fz13);
}

.footer-bottom a {
	color: #000;
	font-size: var(--fz13);
	text-decoration: none;
}

/*==============================================================
MARK: Lower page
================================================================*/
.page-heading {
	position: relative;
	width: min(100%, 2000px);
	height: 100%;
	margin-top: 7.5rem;
	margin-inline: auto;
}

.cover-image {
	position: relative;
	display: flex;
	justify-content: end;
	padding-left: 30px;
	padding-bottom: 3.5rem;
}

.cover-image::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 65%;
	height: 77%;
	background-color: var(--main-color);
	z-index: -1;
}

.cover-image .inner {
	position: relative;
	width: 66.5%;
}

.cover-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heading-item {
	position: absolute;
	left: 0;
	bottom: 1.5rem;
	width: 100%;
}

.page-heading .page-ttl h2 {
	font-size: clamp(2.25rem, calc(1.625rem + 2.5vw), 3.5rem);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
}

.page-heading .page-ttl .ttl-jp {
	display: inline-block;
	color: var(--main-color);
	background: #fff;
	font-size: 1rem;
	font-weight: 500;
	padding: 0 0.5em;
	margin-top: 6px;
}

.breadcrumb-wrap {
	margin-top: 2rem;
	display: flex;
	justify-content: end;
}

.breadcrumbs {
	display: flex;
	align-items: start;
	justify-content: start;
	column-gap: 0.5em;
	font-size: var(--fz12);
}

.breadcrumbs a {
	color: #000;
	text-decoration: none;
}

.page-content.lower-page {
	padding-top: 120px;
	padding-bottom: 60px;
}

.section-heading {
	display: flex;
	flex-direction: column;
	color: var(--c-dark);
	font-size: clamp(2rem, calc(1.423076923076923rem + 2.307692307692308vw), 3.5rem);
	font-weight: 700;
}

h3.heading {
	display: flex;
	flex-direction: column;
	color: var(--c-dark);
	font-size: clamp(1.5rem, calc(1.3076923076923077rem + 0.7692307692307693vw), 2rem);
	font-weight: 700;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.section-heading .sub-heading,
.heading .sub-heading {
	color: #000;
	font-size: 1rem;
	font-weight: 500;
}

/* 
MARK:ABOUT US
*/
#philosophy .section-heading {
	margin-bottom: 1.25rem;
}

#philosophy p {
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 2em;
}

#philosophy .img-container {
	margin-top: 80px;
}

.img-container img {
	display: block;
}

#motto {
	padding-top: 60px;
}

#motto .motto-content {
	align-items: center;
	margin-top: 100px;
}

#motto .motto-content > div {
	flex: 1;
}

.motto-img {
	padding-left: 40px;
}

.order-reverse .motto-img {
	padding-left: 0;
	padding-right: 40px;
}

.motto-img img {
	display: block;
}

.motto-txt p {
	margin-bottom: 0;
}

/* 
MARK:SERVICE
*/
.anchor-link {
	list-style: none;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 20px 15px;
	margin-bottom: 80px;
}

.anchor-link li {
	width: min(100%, 280px);
}

.anchor-link a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: start;
	text-decoration: none;
	color: #0e501d;
	width: 100%;
	background: #fff;
	border: 2px solid #0e501d;
	padding: 1em 1.5em;
	height: 100%;
}
.anchor-link a::before,
.anchor-link a::after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
}
.anchor-link a::before {
	width: 5.39px;
	height: 3.5px;
	right: 29px;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: translateY(-50%);
}
.anchor-link a::after {
	right: 20px;
	background: #0e501d;
	z-index: 1;
	width: 24px;
	height: 24px;
	border-radius: 50em;
	transform: translateY(-50%);
	transition: all 0.4s;
}

.anchor-link a:hover {
	background-color: #0e501d;
	color: #fff;
}

.anchor-link a:hover::after {
	background: rgba(255, 255, 255, 0.16);
	width: 32px;
	height: 32px;
	right: 16px;
}

.lower-page h4 {
	font-size: clamp(1rem, calc(0.9038461538461539rem + 0.38461538461538464vw), 1.25rem);
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 1rem;
}

.service .img-container {
	margin-block: 40px 1em;
}

.g-map {
	margin-top: 40px;
}

.price-wrap {
	flex-wrap: wrap;
	gap: 40px;
}

.price-table {
	flex: 1;
	width: 100%;
}

.table {
	border-collapse: collapse;
	margin-bottom: 0;
}

.table th {
	text-align: left;
	background: #ededed;
	border-bottom: 1px solid #ededed;
	font-size: 1rem;
	padding: 1.2em 0 1.2em 32px;
}

.table td {
	border-bottom: 1px solid #ededed;
}

.table01 .table-heading {
	text-align: center;
	color: #fff;
	background: #3c3c3c;
	border: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.8em 15px;
}

.table01 th {
	border-bottom: 1px solid #fff;
	font-weight: 400;
	font-size: var(--fz14);
}

.table01 td {
	line-height: 1.3;
}

.price-table .notice {
	margin-block: 10px 0;
	font-size: var(--fz13);
}

#kataribe {
	margin-top: 100px;
}

.kataribe-course {
	margin-block: 40px 90px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 385px);
	justify-content: space-between;
	grid-row-gap: 25px;
}

.kataribe-item .img-wrap img {
	display: block;
}

.kataribe-item p {
	margin-block: 15px 0;
}

#course {
	margin-top: 70px;
}

#course .bnr {
	background-image: url(../images/service_course_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 32px;
}

#course .bnr a {
	display: flex;
	align-items: end;
	position: relative;
	text-decoration: none;
	gap: 70px;
	color: #fff;
	width: 100%;
	padding: 5.5rem 14% 5.5rem 9%;
}
#course .bnr a::before,
#course .bnr a::after {
	content: '';
	position: absolute;
	display: block;
}
#course .bnr a::before {
	width: var(--fz14);
	height: 0.5rem;
	right: 3rem;
	bottom: 3.25rem;
	background: url(../images/arrow_wh.svg) no-repeat;
	background-size: contain;
	z-index: 2;
	transform: rotate(-90deg);
}
#course .bnr a::after {
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1;
	width: 4rem;
	height: 4rem;
	border-radius: 50em;
	border: 1px solid #fff;
	transition: all 0.4s;
}

#course .bnr a:hover {
	background-color: rgba(11, 85, 10, 0.2);
	opacity: 1;
}

#course .bnr .heading {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: clamp(1.75rem, calc(1.25rem + 2vw), 2.75rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}

#course .bnr .heading span:nth-child(2) {
	font-weight: 500;
	font-size: var(--fz14);
}

#course .bnr p {
	margin-bottom: 0;
}

#mama {
	margin-top: 120px;
}

#mama p:last-child {
	margin-top: 1.7em;
}

/* 
MARK:CAR LINEUP 
*/
.lineup-wrap {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.lineup-wrap .img-wrap {
	width: min(100%, 440px);
	flex-shrink: 0;
}

.lineup-wrap .img-wrap img {
	display: block;
}

.lineup-wrap dl dt {
	display: flex;
	flex-direction: column;
	color: var(--c-dark);
	font-size: clamp(1.125rem, calc(0.9807692307692307rem + 0.576923076923077vw), 1.5rem);
}

.lineup-wrap dl dt span {
	font-size: 1rem;
	font-weight: 500;
	color: #000;
}

.lineup-wrap dl dd {
	margin: 0.75rem 0 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid #dedede;
}

/* 
MARK:COMPANY
*/
.outline-wrap {
	margin-bottom: 50px;
}
.outline-wrap h3 {
	color: var(--c-dark);
	font-size: clamp(1.5rem, calc(1.3076923076923077rem + 0.7692307692307693vw), 2rem);
	font-weight: 700;
	margin-bottom: 0.5em;
}

.table02 {
	table-layout: fixed;
	width: 100%;
}

.table02 th,
.table02 td {
	border-color: #dedede;
}

.table02 tr:first-child {
	border-top: 1px solid #dedede;
}

.table02 th {
	color: var(--c-dark);
	background: #f5f5f5;
	font-weight: 500;
	vertical-align: top;
	width: 270px;
}

.table02 td {
	font-weight: 500;
	font-size: 1rem;
	padding: 1.2em 0 1.2em 32px;
}
.table02 a {
	color: #000;
}

.table02 .map {
	margin-top: 20px;
}

.table02 .map iframe {
	display: block;
}

.vehicle h3 {
	margin-bottom: -1.5rem;
}

.vehicle p a {
	color: var(--c-dark);
	font-weight: 500;
}
.vehicle .table th {
	border: 1px solid #dedede;
}
.vehicle .table td {
	text-align: center;
	border: 1px solid #dedede;
	padding-inline: 0;
}

.group {
	margin-top: 80px;
}

.group .table {
	margin-bottom: 40px;
}

.group .to-map {
	font-size: var(--fz12);
	font-weight: 400;
}

#company-history {
	background: #3a7b42;
	color: #fff;
	margin-block: 120px -180px;
	padding-block: 120px;
}

#company-history h3.heading {
	color: #fff;
}

#company-history .heading .sub-heading {
	color: #fff;
}

/* 
MARK:プライバシーポリシー
*/
.privacy .page-heading {
	margin-block: 180px 90px;
}
.heading-item.privacy {
	position: relative;
	bottom: 0;
}

.privacy .page-ttl h2 {
	color: var(--c-dark);
}

.page-heading .privacy .page-ttl .ttl-jp {
	display: inline-block;
	color: #000;
	background: none;
	padding: 0;
	margin-top: 6px;
}

.privacy .page-content {
	font-size: 1rem;
}

.privacy .page-content ul,
.privacy .page-content ol {
	margin-left: 1em;
}

/* 
MARK:コース一覧 
*/

.course-list {
	list-style: none;
	margin: 120px 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	grid-column-gap: 60px;
	grid-row-gap: 30px;
}

.course-list-item a {
	display: block;
	text-decoration: none;
	color: #000;
}

.course-list .course-thumb {
	border: 1px solid #c3c3c3;
	width: 100%;
	aspect-ratio: 360 / 207;
}

.course-list .course-thumb img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.course-list .course-summary {
	margin-top: 15px;
}

/* ページネーション */
.pagination .nav-links {
	margin-top: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 25px;
}

.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	width: 3em;
	color: var(--c-dark);
	background: #fff;
	border: 2px solid var(--c-dark);
	text-decoration: none;
	border-radius: 50%;
	line-height: 1;
	font-weight: 500;
}

.page-numbers:hover,
.page-numbers.current {
	background: var(--c-dark);
	color: #fff;
	opacity: 1;
}

/* 
MARK: お問い合わせ
*/
.page-contact h3 {
	color: var(--c-dark);
	font-size: clamp(1.125rem, calc(1.0288461538461537rem + 0.38461538461538464vw), 1.375rem);
	margin-bottom: 0.75rem;
}

.contact-menu {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-menu > div {
	flex: 1;
}

.contact-menu .to-phone .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 2px solid #d5d5d5;
	background: #fff;
	text-align: center;
	aspect-ratio: 580 / 150;
}

.contact-menu .to-phone .heading {
	margin-bottom: 0;
}

.contact-menu .to-phone .phone-num {
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 10px;
	color: #00550b;
	font-size: var(--fz30);
	line-height: 1;
	font-weight: 500;
	margin-bottom: 10px;
}

.contact-menu .to-phone .phone-num img {
	width: var(--fz30);
}

.for-foreigner img {
	display: block;
}

.form-wrap {
	margin-top: 40px;
}

.attention {
	margin-top: -16px;
	margin-bottom: 10px;
	line-height: 1;
}
.attention span {
	color: #c60000;
}

.required {
	color: #c60000;
	font-size: 70%;
	vertical-align: super;
}

.table-contact td .inner {
	display: flex;
	align-items: start;
	justify-content: start;
	flex-wrap: wrap;
	gap: 1rem;
	font-weight: 400;
	font-size: var(--fz14);
}

.table-contact td .inner.flex-column {
	flex-direction: column;
	gap: 10px;
}

.table-contact .wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
}

.table-contact .onamae .wpcf7-form-control-wrap {
	width: 35%;
}

.table-contact td .inner input,
.table-contact td .inner textarea,
.table-contact td .inner select {
	padding: 10px 10px 10px 14px;
	border-color: #d9d9d9;
	border-radius: 4px;
}

.table-contact td .wpcf7-form-control-wrap[data-name='your-subject'] {
	width: 40%;
}

.table-contact td .wpcf7-form-control-wrap[data-name='your-subject']::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background: #acacac;
	height: calc(12px / 2);
	width: 12px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.table-contact td .wpcf7-form-control-wrap[data-name='your-company'],
.table-contact td .wpcf7-form-control-wrap[data-name='your-email'] {
	width: 75%;
}

.table-contact td .wpcf7-form-control-wrap[data-name='your-message'] {
	width: 95%;
}

.table-contact td .notice {
	color: #505050;
}

.contact-privacy {
	margin-top: 40px;
	margin-inline: 2.5%;
	padding: 25px 30px;
	border: 1px solid #707070;
}

.contact-privacy .inner {
	max-height: 160px;
	overflow: auto;
}

.accept {
	margin-block: 40px 30px;
}

.accept .wpcf7-list-item {
	margin-left: 0;
}

.accept .wpcf7-list-item input[type='checkbox'] {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #c3c3c3;
	border-radius: 2px;
	vertical-align: -5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.accept .wpcf7-list-item input[type='checkbox']:checked:before {
	position: absolute;
	top: 2px;
	left: 5px;
	transform: rotate(50deg);
	width: 7px;
	height: 11px;
	border-right: 2px solid #0e501d;
	border-bottom: 2px solid #0e501d;
	content: '';
}

.accept .wpcf7-list-item .wpcf7-list-item-label {
	padding-left: 5px;
}

.accept a {
	color: #000;
}

.page-contact .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	border: 2px solid #0e501d;
	background-color: #0e501d;
	border-radius: 50em;
	width: min(100%, 280px);
	height: 67px;
	color: #fff;
	font-size: 1rem;
	padding: 0;
}

.page-contact .btn.btn-top {
	background-color: #fff;
	color: #0e501d;
	font-size: var(--fz14);
}

.page-contact .btn.btn-top:hover {
	color: #fff;
	background-color: #0e501d;
}

.page-contact .form-complete h3 {
	font-size: clamp(1.5rem, calc(1.3076923076923077rem + 0.7692307692307693vw), 2rem);
	font-weight: 700;
}

.page-contact .form-complete .btn-wrap {
	margin-top: 30px;
}

.page-contact .btn-wrap {
	text-align: center;
}

.page-contact .btn.btn-send {
	transition: all 0.3s;
	background-image: url(../images/icon_send.svg);
	background-repeat: no-repeat;
	background-position: 29% center;
}

.page-contact .btn.btn-send:hover {
	border-color: #0e501d;
	background-color: #fff;
	color: #0e501d;
	background-image: url(../images/icon_send_gr.svg);
}

.wpcf7-spinner {
	display: none;
}
