@charset "UTF-8";
/*==============================================================================
# Foundation
==============================================================================*/
/*==============================================================================
# 設定
==============================================================================*/
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-size: clamp(0.938rem, 0.919rem + 0.09vw, 1rem);
	font-weight: 500;
	color: #0a0a0a;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.7;
	overflow-x: clip;
}

p {
	line-height: 2;
	font-size: clamp(0.938rem, 0.919rem + 0.09vw, 1rem);
}

@media (min-width: 768px) {
	.is-sp {
		display: none !important;
	}
}

@media (max-width: 767.9px) {
	.is-pc {
		display: none !important;
	}
}

.inner {
	max-width: 1080px;
	margin-inline: auto;
	width: calc(100% - 40px);
}
@media (min-width: 768px) {
	.inner {
		width: calc(100% - 80px);
	}
}

.fade-in-up {
	opacity: 0;
	-webkit-transform: translateY(24px);
	transform: translateY(24px);
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.font-weight-bold {
	font-weight: 700;
}

/*==============================================================================
# signage
==============================================================================*/
.signage {
	width: 100%;
	height: 10rem;
	line-height: 10rem;
	background-color: #6f6f6f;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 768px) {
	.signage {
		height: 17.5rem;
		line-height: 17.5rem;
	}
}

.signage__title {
	font-size: 24px;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	color: #fff;
	text-align: center;
}
@media (min-width: 768px) {
	.signage__title {
		font-size: 40px;
	}
}

#contact-thanks .signage {
	background: url(../../assets/img/feature01.jpg) no-repeat center center/cover;
}

/*==============================================================================
# breadcrumb
==============================================================================*/
.breadcrumb-wrapper {
	margin-top: 70px;
	font-size: 14px;
}

/*==============================================================================
# pagination
==============================================================================*/
.pagination-wrapper {
	margin-top: 40px;
	text-align: center;
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-item {
	width: 40px;
	height: 40px;
	background-color: #009d8a;
}
.page-item .is-active {
	color: #0a0a0a;
	background: #fff;
	border: 1px solid #009d8a;
}

.page-link {
	color: #fff;
	font-weight: 500;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*==============================================================================
# マーカー
==============================================================================*/
.marker {
	font-weight: 700;
	display: inline;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe742));
	background: linear-gradient(transparent 60%, #ffe742 60%);
}

/*==============================================================================
# 色
==============================================================================*/
.yellow {
	color: #ffe742;
}

.red {
	color: #bb0000;
}

/*==============================================================================
# トップページ内共通css
==============================================================================*/
.top-section {
	padding-top: 80px;
}

/*==============================================================================
# 下層ページ共通css
==============================================================================*/
.lower-page {
	padding-top: 80px;
	padding-bottom: 100px;
}
@media (min-width: 768px) {
	.lower-page {
		padding-top: 100px;
		padding-bottom: 120px;
	}
}

.lower-page__title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
}
@media (min-width: 768px) {
	.lower-page__title {
		font-size: 28px;
		margin-bottom: 80px;
	}
}

/*==============================================================================
# section 余白
==============================================================================*/
.cta-padding {
	padding-block: 60px;
}

.section {
	padding-block: 70px;
}
@media (min-width: 768px) {
	.section {
		padding-block: 90px;
	}
}

/*==============================================================================
# Layout
==============================================================================*/
/*==============================================================================
# header
==============================================================================*/
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: auto;
	background: rgba(255, 255, 255, 0.9);
}

.header__inner {
	max-width: 1280px;
	margin-inline: auto;
}

.header__logo {
	color: #016c5f;
	line-height: normal;
	font-size: clamp(1.25rem, 1.157rem + 0.46vw, 1.563rem);
}

.header__logo-link {
	font-weight: 700;
}

.header-pc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	height: 64px;
}
@media screen and (max-width: 1200px) {
	.header-pc {
		display: none;
	}
}

.header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2.85714vw;
}
.header__nav a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (any-hover: hover) {
	.header__nav a:hover {
		color: #016c5f;
	}
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*==============================================================================
# header-sp(drawer)
==============================================================================*/
.is-fixed {
	overflow: hidden;
	height: 100vh; /* 高さを固定してスクロールを無効にする */
	position: fixed; /* ページ全体を固定 */
	width: 100%; /* 幅を100%にする */
}

.header-sp {
	height: 60px;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 1201px) {
	.header-sp {
		display: none;
	}
}

.header-sp__logo {
	position: relative;
	left: 20px;
	z-index: 101;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: #016c5f;
	font-size: clamp(14px, 2vw, 28px);
	line-height: 1;
}
.header-sp__logo a {
	font-weight: 700;
}
.header-sp__logo img {
	width: clamp(160px, 56.41026vw, 220px);
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	max-width: none;
}

@media screen and (min-width: 1201px) {
	.header-sp__right {
		display: none;
	}
}

/*==============================================================================
# drawer
==============================================================================*/
.drawer-icon {
	width: 21px;
	height: 20px;
	right: 20px;
	position: fixed;
	top: 23px;
	z-index: 999;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 10px;
}

@media screen and (min-width: 1201px) {
	.header-open {
		display: none;
	}
}

.drawer-icon__bar {
	position: absolute;
	top: 0;
	right: 0;
	width: 21px;
	height: 3px;
	border-radius: 6px;
	background-color: #016c5f;
	-webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
	transition: top 0.3s linear, -webkit-transform 0.3s linear;
	transition: transform 0.3s linear, top 0.3s linear;
	transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
	z-index: 200;
}
.drawer-icon__bar:nth-of-type(2) {
	top: 7px;
}
.drawer-icon__bar:nth-of-type(3) {
	top: 14px;
}

.drawer-content {
	width: min(320px, 65%);
	background: #fff;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 104;
	padding: 70px 20px;
	-webkit-transform: translateX(105%);
	transform: translateX(105%);
	-webkit-transition: -webkit-transform 0.3s linear;
	transition: -webkit-transform 0.3s linear;
	transition: transform 0.3s linear;
	transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.drawer-content__menu {
	text-align: end;
}

.drawer-content__link {
	display: block;
	padding-top: 17px;
	padding-bottom: 10px;
	text-align: right;
	letter-spacing: 0.48px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	border-bottom: 1px solid #000;
}
.drawer-content__link::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, #fff 2px, transparent 2px);
	background-size: 6px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
	position: absolute;
	top: 0;
	left: 0;
}
.drawer-content__link img {
	width: 27px;
	height: 27px;
	-o-object-fit: contain;
	object-fit: contain;
	left: 20px;
	position: absolute;
}
@media (min-width: 768px) {
	.drawer-content__link:hover {
		color: #5c9c94;
	}
}

.drawer-content__button {
	margin-top: 14px;
	text-align: right;
}

.drawer-content__button {
	margin-top: 20px;
}

/*          mask
---------------------------*/
#mask {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}
#mask.is-checked {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	z-index: 103;
	opacity: 0.6;
}

/*==============================================================================
# Foundation
==============================================================================*/
/*==============================================================================
# Object
==============================================================================*/
.section__title {
	font-weight: 700;
	font-size: clamp(1.5rem, 1.296rem + 1.02vw, 2.188rem);
	position: relative;
	margin-bottom: 30px;
	text-align: center;
	margin-inline: auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.section__title span {
	font-weight: 700;
}
@media (min-width: 768px) {
	.section__title {
		margin-bottom: 50px;
	}
}
.section__title::before {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: clamp(25px, 7.85714vw, 110px);
	color: #e6e6e6;
	z-index: -1;
	text-transform: uppercase;
	top: 100%;
}
@media (min-width: 768px) {
	.section__title::before {
		top: 50%;
	}
}

#benefit .section__title::before {
	content: "benefit";
}

#whats .section__title::before {
	content: "Map Engine Optimization";
	white-space: nowrap;
	text-transform: none;
}

#service .section__title::before {
	content: "service";
}

#reason .section__title::before {
	content: "reason";
}

#achievement .section__title::before {
	content: "achievement";
}

#company .section__title::before {
	content: "company";
	color: #fff;
}

#contact .section__title::before {
	content: "contact";
}

#contact-thanks .section__title::before {
	content: "complete";
}

/*==============================================================================
# common-button
==============================================================================*/
.common-button {
	background: #016c5f;
	border-radius: 100vmax;
	max-width: 400px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	color: #fff;
	font-size: clamp(1rem, 0.833rem + 0.83vw, 1.563rem);
	padding: 16px 24px;
	font-weight: 700;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	bottom: 0;
	right: 0;
	-webkit-box-shadow: 4px 4px 0 #005047;
	box-shadow: 4px 4px 0 #005047;
	width: 100%;
	line-height: 1;
}
@media (any-hover: hover) {
	.common-button:hover {
		-webkit-box-shadow: none;
		box-shadow: none;
		bottom: -4px;
		right: -4px;
		color: #fff;
	}
}

/*==============================================================================
# fixed-side-buttons
==============================================================================*/
.fixed-side-buttons {
	position: fixed;
	z-index: 10;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px; /* ボタン間のスペース */
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* 右から左に縦書き */
	text-orientation: upright; /* 文字を回転せず、縦方向に */
}

.fixed-side-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 10px; /* リンクボタン間のスペース */
	line-height: 1;
}
.fixed-side-button a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row; /* アイコンとテキストを縦に配置 */
	color: white;
	text-decoration: none;
	width: 72px; /* 幅を固定 */
	height: 205px; /* 高さを固定 */
	font-size: 20px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; /* パディングを含めたサイズ調整 */
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.fixed-side-button a:hover {
	opacity: 0.7;
}
.fixed-side-button a img {
	width: 22px;
	height: 22px;
	margin-bottom: 10px;
	-o-object-fit: contain;
	object-fit: contain;
}

/*==============================================================================
# to-contact__button
==============================================================================*/
.header__button {
	background: #ff8625;
	color: #fff;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 100vmax;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	line-height: normal;
	display: inline-block;
	border: 1px solid #ff8625;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	z-index: 200;
	-webkit-box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.3);
}
.header__button span {
	margin-left: 10px;
}

.header__button-inversion {
	background: #fff;
	color: #ff8625;
	font-size: 12px;
	margin-top: 0;
	padding: 8px 12px;
	position: relative;
	position: fixed;
	right: 60px;
	top: 13px;
	max-width: 140px;
}
@media (min-width: 768px) {
	.header__button-inversion {
		max-width: none;
		font-size: 15px;
		top: 10px;
	}
}

/*==============================================================================
# drawer-contact-button
==============================================================================*/
.drawer-contact-button {
	background: #ff8625;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 28px 48px;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.drawer-contact-button img {
	width: 20px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	margin-right: 8px;
}

/*==============================================================================
# catalog__button
==============================================================================*/
.catalog__button {
	margin-top: 68px;
	text-align: center;
	position: relative;
}
.catalog__button a {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	background: #e3787a;
	border-radius: 100px;
	padding: 16px 80px 16px 60px;
	display: inline-block;
	width: 100%;
	max-width: 320px;
	min-width: 240px;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media screen and (max-width: 380px) {
	.catalog__button a {
		padding: 16px 50px 16px 30px;
		min-width: 200px;
	}
}
@media (min-width: 768px) {
	.catalog__button a:hover {
		background: #D2E3BF;
	}
}
.catalog__button a:hover .catalog-button__arrow {
	right: 30px;
}
@media screen and (max-width: 380px) {
	.catalog__button a:hover .catalog-button__arrow {
		right: 15px;
	}
}
.catalog__button .catalog-button__arrow {
	position: absolute;
	content: "";
	top: 50%;
	right: 50px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media screen and (max-width: 380px) {
	.catalog__button .catalog-button__arrow {
		right: 30px;
	}
}

/*==============================================================================
# submit・return home
==============================================================================*/
.common-button {
	text-align: center;
}

.common-button__link {
	max-width: 260px;
	background: #ff8625;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	height: 50px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.common-button__link:hover {
	background: #D2E3BF;
}

/*==============================================================================
# top buttons
==============================================================================*/
.buttons {
	margin-top: 40px;
}

.buttons__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}
@media (min-width: 768px) {
	.buttons__list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.buttons__item {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
}
@media (min-width: 768px) {
	.buttons__item {
		max-width: 350px;
		width: 100%;
	}
}
.buttons__item::after {
	position: absolute;
	content: "";
	background: url(../../../../assets/img/arrow.png) no-repeat center center/contain;
	width: 5px;
	height: 12px;
	-o-object-fit: contain;
	object-fit: contain;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.buttons__item:hover {
	opacity: 0.7;
}

.buttons__link {
	width: 100%;
	max-width: 340px;
	height: 56px;
	line-height: 56px;
	background-color: #ddd;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
	color: #fff;
	padding-inline: 20px;
}
@media (min-width: 768px) {
	.buttons__link {
		max-width: 350px;
	}
}
.buttons__link img {
	width: 26px;
	height: 26px;
	-o-object-fit: contain;
	object-fit: contain;
	margin-right: 8px;
}

.--contact {
	background-color: #2B7D25;
}

.--to-patient,
.--inspection {
	background-color: #45A143;
}

/*==============================================================================
# c-button
==============================================================================*/
.c-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.c-button {
		display: block;
	}
}

.c-button__link {
	background-color: #2B7D25;
	max-width: 300px;
	width: 100%;
	height: 56px;
	line-height: 56px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	padding: 14px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: clamp(12px, 1.041667vw, 18px);
}
.c-button__link:hover {
	opacity: 0.7;
}

@media (min-width: 768px) {
	.director__img {
		width: 47%;
	}
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
	border-radius: 5px;
	width: 100%;
	border: none;
	padding: 10px 20px;
	background: #f2f2f2;
	font-size: 14px;
	line-height: normal;
}
@media (min-width: 768px) {
	input[type=text],
	input[type=email],
	input[type=tel],
	select,
	textarea {
		font-size: 16px;
	}
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #adadad;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
	color: #adadad;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #adadad;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #adadad;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
	color: #adadad;
}

textarea {
	height: 243px;
	resize: vertical;
}

.contact {
	padding-block: 94px 130px;
}

.contact__inner {
	width: min(1120px, 100%);
	padding-inline: 20px;
	margin-inline: auto;
}

.contact__title {
	font-size: 28px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 60px;
	text-transform: uppercase;
	text-align: center;
}
.contact__title span {
	display: block;
	font-size: 14px;
	margin-top: 16px;
}

.contact__desc {
	margin-bottom: 40px;
	margin-top: 30px;
	text-align: center;
}
@media (min-width: 768px) {
	.contact__desc {
		margin-bottom: 90px;
		margin-top: 90px;
	}
}

.contact__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 520px;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-inline: auto;
}

.contact__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	row-gap: 12px;
	-webkit-box-align: normal;
	-ms-flex-align: normal;
	align-items: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.contact__row:not(:first-child) {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.contact__row:not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 768px) {
	.contact__row {
		padding: 20px 60px;
	}
}
.contact__row.--aifs {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.contact__head {
	font-size: 14px;
	line-height: normal;
	margin-top: 0;
}
@media (min-width: 768px) {
	.contact__head {
		font-size: 16px;
	}
}

.contact__confirmation {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 40px;
}

.contact__data {
	width: 100%;
}
@media (min-width: 768px) {
	.contact__data {
		width: auto;
	}
}

.contact__data-radio label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}

input[type=checkbox] {
	width: 1px;
	height: 1px;
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.contact__agree span {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	padding-left: 30px !important;
	position: relative;
}
.contact__agree span::before {
	content: "";
	position: absolute;
	top: 2.5px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #0a0a0a;
}
.contact__agree span::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 7px;
	width: 6px;
	height: 12px;
	rotate: 45deg;
	border-right: 2px solid #016c5f;
	border-bottom: 2px solid #016c5f;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

input[type=submit],
input[type=button] {
	border-radius: 0px;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

.row.jc-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact__agree {
	text-align: center;
	margin-top: 45px;
}
@media (min-width: 768px) {
	.contact__agree {
		margin-top: 65px;
	}
}

.contact__submit {
	text-align: center;
}
.contact__submit input[type=submit] {
	display: inline-block;
	background: #ff8625;
	color: #fff;
	font-size: 18px;
	line-height: normal;
	padding: 13px;
	border-radius: 2px;
	font-weight: 500;
	margin-top: 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	max-width: 260px;
	width: 100%;
}

.submit-button input[type=submit]{
	background: #016c5f;
	border-radius: 100vmax;
	max-width: 400px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	color: #fff;
	font-size: clamp(1rem, 0.833rem + 0.83vw, 1.563rem);
	padding: 16px 24px;
	font-weight: 700;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	bottom: 0;
	right: 0;
	-webkit-box-shadow: 4px 4px 0 #005047;
	box-shadow: 4px 4px 0 #005047;
	width: 100%;
	line-height: 1;
}
@media (any-hover: hover) {
	.submit-button input[type=submit]:hover {
		-webkit-box-shadow: none;
		box-shadow: none;
		bottom: -4px;
		right: -4px;
		color: #fff;
	}
}

.submit-button {
	margin-inline: auto;
	width: 100%;
	max-width: 312px;
	margin-top: 40px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.contact__select-wrap {
	position: relative;
}
.contact__select-wrap svg {
	position: absolute;
	top: 23px;
	translate: 0 -50%;
	right: 10.69px;
	width: 17.313px;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

/*==============================================================================
# プライバシーポリシー
==============================================================================*/
.to-privacy-policy {
	border-bottom: 1px solid #0a0a0a;
}

.contact-thanks {
	padding-block: 80px 100px;
}
@media (min-width: 768px) {
	.contact-thanks {
		padding-block: 100px 160px;
	}
}

.contact-thanks__inner {
	width: 75%;
	margin-inline: auto;
}

.contact-thanks__texts {
	text-align: center;
}

.contact-thanks__main-text {
	text-align: center;
	margin-bottom: 20px;
}

.to-home-button {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-top: 60px;
}
@media (min-width: 768px) {
	.to-home-button {
		margin-top: 80px;
	}
}

/*==============================================================================
# flex-box
==============================================================================*/
.flex-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	max-width: 1080px;
	margin-inline: auto;
}

.flex-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*==============================================================================
# color
==============================================================================*/
.font-color-main {
	color: #016c5f;
	font-weight: 700;
}

/*==============================================================================
# アニメーション
==============================================================================*/
.animated__fadeIn {
	opacity: 0;
	translate: 0 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.animated__fadeIn.js-show {
	opacity: 1;
	translate: 0 0;
}

/*==============================================================================
# mq
==============================================================================*/
.is-360 {
	display: none;
}
@media screen and (max-width: 360px) {
	.is-360 {
		display: block;
	}
}

/*==============================================================================
# gap
==============================================================================*/
.gap-8 {
	gap: 8vw;
}

.gap-4 {
	gap: 4vw;
}

/*==============================================================================
# margin
==============================================================================*/
.m0 {
	margin: 0 !important;
}

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

.mr0 {
	margin-right: 0 !important;
}

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

.ml0 {
	margin-left: 0 !important;
}

.m5 {
	margin: 5px !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mr5 {
	margin-right: 5px !important;
}

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

.ml5 {
	margin-left: 5px !important;
}

.m10 {
	margin: 10px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.m15 {
	margin: 15px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mr15 {
	margin-right: 15px !important;
}

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

.ml15 {
	margin-left: 15px !important;
}

.m20 {
	margin: 20px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mr20 {
	margin-right: 20px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.m25 {
	margin: 25px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mr25 {
	margin-right: 25px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.ml25 {
	margin-left: 25px !important;
}

.m30 {
	margin: 30px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mr30 {
	margin-right: 30px !important;
}

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

.ml30 {
	margin-left: 30px !important;
}

.m35 {
	margin: 35px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mr35 {
	margin-right: 35px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.ml35 {
	margin-left: 35px !important;
}

.m40 {
	margin: 40px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mr40 {
	margin-right: 40px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.ml40 {
	margin-left: 40px !important;
}

.m45 {
	margin: 45px !important;
}

.mt45 {
	margin-top: 45px !important;
}

.mr45 {
	margin-right: 45px !important;
}

.mb45 {
	margin-bottom: 45px !important;
}

.ml45 {
	margin-left: 45px !important;
}

.m50 {
	margin: 50px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mr50 {
	margin-right: 50px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.ml50 {
	margin-left: 50px !important;
}

.m55 {
	margin: 55px !important;
}

.mt55 {
	margin-top: 55px !important;
}

.mr55 {
	margin-right: 55px !important;
}

.mb55 {
	margin-bottom: 55px !important;
}

.ml55 {
	margin-left: 55px !important;
}

.m60 {
	margin: 60px !important;
}

.mt60 {
	margin-top: 60px !important;
}

.mr60 {
	margin-right: 60px !important;
}

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

.ml60 {
	margin-left: 60px !important;
}

.m65 {
	margin: 65px !important;
}

.mt65 {
	margin-top: 65px !important;
}

.mr65 {
	margin-right: 65px !important;
}

.mb65 {
	margin-bottom: 65px !important;
}

.ml65 {
	margin-left: 65px !important;
}

.m70 {
	margin: 70px !important;
}

.mr70 {
	margin-right: 70px !important;
}

.mb70 {
	margin-bottom: 70px !important;
}

.ml70 {
	margin-left: 70px !important;
}

.m75 {
	margin: 75px !important;
}

.mt75 {
	margin-top: 75px !important;
}

.mr75 {
	margin-right: 75px !important;
}

.mb75 {
	margin-bottom: 75px !important;
}

.ml75 {
	margin-left: 75px !important;
}

.m80 {
	margin: 80px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.mr80 {
	margin-right: 80px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.ml80 {
	margin-left: 80px !important;
}

.m100 {
	margin: 100px !important;
}

.mt100 {
	margin-top: 100px !important;
}

.mr100 {
	margin-right: 100px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.ml100 {
	margin-left: 100px !important;
}

/*==============================================================================
# diagonal
==============================================================================*/
.diagonal-bg {
	width: 100%;
	height: 100%;
	background: #016c5f;
	position: relative;
	z-index: 0;
}
.diagonal-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #005047;
	-webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: -2;
}

/*==============================================================================
# mv
==============================================================================*/
.mv {
	position: relative;
	margin-top: 70px;
}
@media screen and (max-width: 1200px) {
	.mv {
		margin-top: 70px;
	}
}

.mv__inner {
	max-width: 1150px;
}

@media (min-width: 768px) {
	.mv__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 5.085%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.mv__left {
		width: 70%;
	}
}

.mv__label {
	color: #fff;
	font-size: 700;
	background: #016c5f;
	border-radius: 100vmax;
	display: inline-block;
	padding: 7px 18px;
	font-size: clamp(19px, 5.9375vw, 28px);
	line-height: 1;
}

.mv__catch {
	font-size: clamp(2.5rem, 0.71rem + 8.95vw, 5rem);
	font-weight: 700;
	color: #016c5f;
	line-height: normal;
}
.mv__catch span {
	display: block;
	font-size: clamp(2.188rem, 0.398rem + 8.95vw, 4.688rem);
	font-weight: 700;
}
@media (min-width: 768px) {
	.mv__catch span {
		font-size: clamp(2.375rem, 1.671rem + 3.52vw, 4.75rem);
	}
}
@media (min-width: 768px) {
	.mv__catch {
		font-size: clamp(2.625rem, 1.829rem + 3.98vw, 5.313rem);
	}
}

.benefits {
	padding-top: 30px;
	position: absolute;
	bottom: 0;
	margin-inline: auto;
	z-index: 5;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media (min-width: 768px) {
	.benefits {
		position: static;
		left: 0;
		-webkit-transform: none;
		transform: none;
	}
}

.benefits__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 768px) {
	.benefits__list {
		gap: 24px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.benefits__item {
	color: #016c5f;
	background: #ffe742;
	border-radius: 50%;
	width: clamp(90px, 26.85789vw, 206px);
	height: clamp(90px, 26.85789vw, 206px);
	position: relative;
}
@media (min-width: 768px) {
	.benefits__item {
		width: clamp(90px, 14.71429vw, 206px);
		height: clamp(90px, 14.71429vw, 206px);
	}
}

.benefits__icon {
	position: absolute;
	top: clamp(-24px, -7.5vw, -40px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.benefits__icon img {
	width: 60px;
	height: auto;
	width: clamp(36px, 4.286vw, 60px);
}

.benefits__text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	line-height: 1.1;
	font-size: clamp(0.75rem, 0.034rem + 3.58vw, 1.75rem);
}
@media (min-width: 768px) {
	.benefits__text {
		font-size: clamp(12px, 2vw, 28px);
	}
}
.benefits__text span {
	display: block;
	font-weight: 700;
}

.mv__right {
	position: relative;
	text-align: center;
	-ms-flex-item-align: end;
	align-self: flex-end;
}
@media (min-width: 768px) {
	.mv__right {
		width: 35.59322%;
		text-align: left;
	}
}
.mv__right::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #016c5f;
	border-radius: 50%;
	width: clamp(15rem, 7.841rem + 35.79vw, 25rem);
	height: clamp(15rem, 7.841rem + 35.79vw, 25rem);
	z-index: -1;
}
@media (min-width: 768px) {
	.mv__right::before {
		width: clamp(240px, 32.57143vw, 400px);
		height: clamp(240px, 32.57143vw, 400px);
	}
}
.mv__right img {
	width: 70%;
}
@media (min-width: 768px) {
	.mv__right img {
		width: 100%;
	}
}

.benefits-main {
	font-size: clamp(29px, 8.60495vw, 66px);
}
@media (min-width: 768px) {
	.benefits-main {
		font-size: clamp(29px, 4.71429vw, 66px);
	}
}

.benefits-main-up {
	font-size: clamp(38px, 11.08214vw, 85px);
}
@media (min-width: 768px) {
	.benefits-main-up {
		font-size: clamp(38px, 6.07143vw, 85px);
	}
}

/*==============================================================================
# intro
==============================================================================*/
.intro {
	padding-block: 26px;
	padding-block: 46px 30px;
}
.intro__text {
	text-align: center;
}

.intro__badge {
	margin-top: 30px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (min-width: 768px) {
	.intro__badge {
		margin-top: 50px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.intro__badge img {
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
	text-align: center;
	height: clamp(3.375rem, 2.212rem + 5.82vw, 5rem);
}
@media (min-width: 768px) {
	.intro__badge img {
		height: clamp(54px, 5.71428vw, 80px);
	}
}

/*==============================================================================
# industry
==============================================================================*/
.industry {
	padding-block: 40px;
	background: #016c5f; /* 上部の背景 */
	position: relative;
	z-index: 0;
}
@media (min-width: 768px) {
	.industry {
		padding-block: 80px 64px;
	}
}
.industry:before {
	content: "";
	position: absolute;
	background: url(../../assets/img/industry-bg.png) no-repeat center center/cover;
	z-index: -1;
	width: 100%; /* 幅を100%に設定 */
	height: 10vw; /* 高さを100%に設定 */
	bottom: 0;
	left: 0;
	opacity: 0.3;
}

.industry__text {
	font-size: clamp(20px, 6.25vw, 30px);
	font-weight: 700;
	text-align: center;
	color: #fff;
	line-height: clamp(2rem, 1.284rem + 3.58vw, 3rem);
}
@media (min-width: 768px) {
	.industry__text {
		line-height: normal;
	}
}
.industry__text span {
	font-weight: 700;
}
.industry__text span span {
	font-size: clamp(30px, 9.375vw, 50px);
}

.industry__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-inline: auto;
	gap: 13px 17px;
	grid-template-columns: repeat(2, 1fr);
	max-width: 400px;
	width: 100%;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.industry__list {
		grid-template-columns: repeat(4, 1fr);
		margin-inline: auto;
		max-width: 660px;
		margin-top: 48px;
	}
}

.industry__item {
	background: #fff;
	padding: 4px;
	text-align: center;
	font-weight: 700;
}

/*==============================================================================
# worry
==============================================================================*/
.worry {
	background: #f5f5f5;
	padding-block: 80px;
}

.worry__catch {
	text-align: center;
}
.worry__catch img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	max-width: 400px;
}

.worry__list {
	max-width: 870px;
	width: 100%;
	margin-inline: auto;
	margin-top: 50px;
}
@media (min-width: 768px) {
	.worry__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 3.48837%;
	}
}

.worry__item {
	background: #fff;
	border-radius: 10px;
	position: relative;
	padding: 60px 60px 40px;
	max-width: 340px;
	width: 100%;
	margin-top: 100px;
	margin-inline: auto;
}
@media (min-width: 768px) {
	.worry__item {
		max-width: 270px;
	}
}
.worry__item img {
	position: absolute;
	width: 100px;
	height: 120px;
	-o-object-fit: contain;
	object-fit: contain;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -80px;
}

.worry__item-head {
	color: #016c5f;
	font-weight: 700;
	text-align: center;
	font-size: clamp(1.25rem, 1.157rem + 0.46vw, 1.563rem);
}

.worry__item-text {
	margin-top: 10px;
	text-align: center;
}

/*==============================================================================
# solution
==============================================================================*/
.solution__inner {
	position: relative;
}

.solution__imgs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	max-width: 300px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-inline: auto;
	margin-top: 24px;
	gap: 20px;
}
@media (min-width: 768px) {
	.solution__imgs {
		margin-top: -100px;
		max-width: none;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-inline: 0;
		gap: 0px;
	}
}
.solution__imgs img {
	-o-object-fit: contain;
	object-fit: contain;
}

.solution__img {
	height: auto;
}

.solution__img-01 {
	width: clamp(8.125rem, 5.217rem + 14.54vw, 12.188rem);
}
@media (min-width: 768px) {
	.solution__img-01 {
		width: clamp(8.125rem, -2.508rem + 22.15vw, 16.875rem);
	}
}

.solution__img-02 {
	width: clamp(7.5rem, 4.815rem + 13.42vw, 11.25rem);
}
@media (min-width: 768px) {
	.solution__img-02 {
		width: clamp(7.5rem, 1.424rem + 12.66vw, 12.5rem);
	}
}

.solution__text {
	text-align: center;
}

.solution__text1 {
	padding-block: 25px 74px;
	position: relative;
	font-size: clamp(0.938rem, 0.845rem + 0.46vw, 1.25rem);
}
.solution__text1 span {
	color: #016c5f;
}
.solution__text1::before {
	/* beforeでもafterでも*/
	content: "";
	position: absolute;
	height: 80px;
	width: 230px;
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	clip-path: polygon(0 0, 50% 100%, 100% 0); /* ココ */
	background: #f5f5f5;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 0; /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
	z-index: -1;
}
@media (min-width: 768px) {
	.solution__text1::before {
		height: 120px;
		width: 300px;
	}
}

.solution__text2 {
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
}
.solution__text2 span {
	font-size: clamp(1.563rem, 1.377rem + 0.93vw, 2.188rem);
}
@media (min-width: 768px) {
	.solution__text2 span {
		margin-right: 12px;
	}
}

/*==============================================================================
# cta
==============================================================================*/
.cta__content {
	text-align: center;
}
@media (min-width: 768px) {
	.cta__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 40px;
	}
}

.cta__button {
	border-radius: 10px;
	background: #fff;
	-webkit-box-shadow: -7px 7px 20px 5px rgba(0, 51, 24, 0.3);
	box-shadow: -7px 7px 20px 5px rgba(0, 51, 24, 0.3);
	padding: 32px;
	display: inline-block;
	font-weight: 700;
	font-size: clamp(0.938rem, 0.752rem + 0.93vw, 1.563rem);
	text-align: center;
}
.cta__button span {
	font-weight: 700;
}

.cta__button--counseling {
	position: relative;
	max-width: 576px;
	width: 100%;
}
@media (min-width: 768px) {
	.cta__button--counseling {
		max-width: 465px;
	}
}
.cta__button--counseling::before {
	position: absolute;
	content: "無料";
	background: url(../../assets/img/cta-01.png) no-repeat center center/contain;
	top: -36px;
	left: -16px;
	width: clamp(3.875rem, 2.931rem + 4.72vw, 7.063rem);
	height: clamp(3.875rem, 2.931rem + 4.72vw, 7.063rem);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 768px) {
	.cta__button--counseling::before {
		left: -36px;
	}
}

.cta__text-highlight {
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
}
.cta__text-highlight.yahoo {
	border-bottom: 1px solid #0a0a0a;
}

.cta__button--ads {
	margin-top: 26px;
	max-width: 576px;
	width: 100%;
}
@media (min-width: 768px) {
	.cta__button--ads {
		margin-top: 0;
	}
}
.cta__button--ads img {
	height: 30px;
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (min-width: 768px) {
	.cta__button--ads img {
		height: 36px;
	}
}

/*==============================================================================
# whats
==============================================================================*/
.whats {
	padding-bottom: 60px;
}
@media (min-width: 768px) {
	.whats {
		padding-bottom: 0;
	}
}

.whats__title {
	width: clamp(9.375rem, 4.006rem + 26.85vw, 16.875rem);
}
@media (min-width: 768px) {
	.whats__title {
		width: 270px;
	}
}

.whats__content {
	position: relative;
}
@media (min-width: 768px) {
	.whats__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding-top: 100px;
		gap: 4.28571vw;
	}
}

@media (min-width: 768px) {
	.whats__left {
		width: 50%;
	}
}

.whats__left-flex {
	position: relative;
}
@media (min-width: 768px) {
	.whats__left-flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 10%;
		margin-top: clamp(5.625rem, 4.884rem + 3.7vw, 8.125rem);
	}
}
.whats__left-flex p {
	background: #d3d3d3;
	border-radius: 10px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	position: relative;
	width: 70%;
}
@media (min-width: 768px) {
	.whats__left-flex p {
		width: auto;
	}
}
.whats__left-flex p span {
	font-weight: 700;
	font-size: clamp(16px, 1.42857vw, 20px);
}

.whats__left-flex-img img {
	-o-object-fit: contain;
	object-fit: contain;
	position: absolute;
	bottom: 0;
	right: 0;
	width: clamp(6.25rem, 1.776rem + 22.37vw, 12.5rem);
}
@media (min-width: 768px) {
	.whats__left-flex-img img {
		width: 40%;
		right: -30px;
	}
}

.whats__left-flex-text {
	width: 100%;
	background: #d3d3d3;
	border-radius: 10px;
	padding: 20px 12px;
	margin-top: clamp(2.125rem, -3.96rem + 30.43vw, 10.625rem);
}
@media (min-width: 768px) {
	.whats__left-flex-text {
		width: 60%;
		padding: 30px 24px;
		position: relative;
		margin-top: 0;
		top: -70px;
	}
	.whats__left-flex-text::after {
		content: "";
		position: absolute;
		bottom: 14px;
		right: 0;
		border-style: solid;
		border-width: 7px 0 7px 20px;
		border-color: transparent transparent transparent rgb(211, 211, 211);
		translate: 100% -50%;
	}
}

.whats__right {
	position: relative;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.whats__right {
		width: 50%;
		margin-top: 0;
	}
}
.whats__right::before {
	position: absolute;
	content: "";
	background: url(../../assets/img/whats-dot.png) no-repeat right top/contain;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.2;
	top: -7.14286vw;
	right: -7.14286vw;
}

.whats__right-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: clamp(16px, 2.14286vw, 30px);
}
.whats__right-flex img {
	width: 48%;
}

.whats__right-desc {
	position: relative;
	padding-left: 16px;
	margin-top: 20px;
}
.whats__right-desc::before {
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 7px;
	height: 100%;
	background: #016c5f;
	content: "";
	position: absolute;
}
@media (min-width: 768px) {
	.whats__right-desc::before {
		width: 11px;
	}
}

/*==============================================================================
# merit
==============================================================================*/
.merit {
	width: 100%;
	height: 100%;
	background: #016c5f;
	position: relative;
	z-index: 0;
}
.merit::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #005047;
	-webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: -1;
}

.merit__title {
	padding-inline: 17px;
	color: #fff;
}

.merit-title__deco {
	height: auto;
	position: absolute;
	width: clamp(1.125rem, 0.792rem + 1.67vw, 2.25rem);
}

.merit-title__deco--left {
	left: -20px;
}
@media (min-width: 768px) {
	.merit-title__deco--left {
		left: -36px;
	}
}

.merit-title__deco--right {
	right: -20px;
}
@media (min-width: 768px) {
	.merit-title__deco--right {
		right: -36px;
	}
}

.merit__list {
	max-width: 1130px;
	width: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}
@media screen and (min-width: 700px) {
	.merit__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 1000px) {
	.merit__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.merit__item {
	background: #fff;
	border-radius: 10px;
	padding: 30px 20px;
	overflow: hidden;
	position: relative;
}
.merit__item::before {
	position: absolute;
	content: "";
	background: #009d8a;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	top: -12px;
	left: -9px;
	z-index: 2;
}
@media (min-width: 768px) {
	.merit__item::before {
		width: 86px;
		height: 86px;
		top: -32px;
		left: -22px;
	}
}
.merit__item .merit-num {
	position: absolute;
	z-index: 2;
	color: #fff;
	font-size: clamp(1.25rem, 1.009rem + 1.2vw, 2.063rem);
	font-style: italic;
	left: 8px;
	top: 8px;
	font-weight: 700;
	line-height: 1;
}
@media (min-width: 768px) {
	.merit__item .merit-num {
		left: 10px;
	}
}
.merit__item img {
	height: 80px;
	-o-object-fit: contain;
	object-fit: contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-inline: auto;
}
.merit__item p {
	margin-top: 16px;
}

/*==============================================================================
# benefit
==============================================================================*/
.benefit__highlight {
	border: 1px solid #0a0a0a;
	background: #fff;
	padding: 10px 30px;
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
	font-weight: 700;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	margin-inline: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (min-width: 768px) {
	.benefit__highlight {
		margin-top: 60px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 10px 16px;
	}
}
.benefit__highlight img {
	width: 28px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	margin-inline: 10px;
}
.benefit__highlight::before {
	position: absolute;
	content: "";
	top: 10px;
	left: 8px;
	z-index: -1;
	background: #ffe742;
	width: 100%;
	height: 100%;
}

.benefit__desc {
	text-align: center;
	margin-top: 20px;
}
@media (min-width: 768px) {
	.benefit__desc {
		margin-top: 40px;
	}
}

.benefit__content {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.benefit__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px;
		margin-top: 40px;
	}
}

.benefit__case {
	position: relative;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px) {
	.benefit__case {
		width: 75%;
	}
}
@media screen and (min-width: 1024px) {
	.benefit__case {
		width: 34.54545%;
	}
}

.benefit__case-link {
	position: absolute;
	background: #fff;
	border-radius: 100vmax;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.157rem + 0.46vw, 1.563rem);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 20px;
	max-width: 320px;
	width: 86%;
	text-align: center;
	padding: 16px;
	line-height: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (any-hover: hover) {
	.benefit__case-link {
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.benefit__case-link:hover {
		background: #0a0a0a;
		color: #fff;
	}
}

.benefit__details {
	margin-top: 24px;
}
@media (min-width: 768px) {
	.benefit__details {
		margin-top: 0;
	}
}

.benefit__list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
	max-width: 1100px;
	width: 100%;
	height: 100%;
}
@media (min-width: 768px) {
	.benefit__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.benefit__item {
	border-radius: 10px;
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	width: 100%;
	padding: 16px;
}
@media (min-width: 768px) {
	.benefit__item {
		max-width: 340px;
		padding: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
	}
}
.benefit__item h4 {
	font-size: 20px;
	text-align: center;
	border-bottom: 1px solid #016c5f;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	font-weight: 700;
	width: 100%;
	max-width: 200px;
}
.benefit__item p {
	margin-top: 10px;
}

/*==============================================================================
# structure
==============================================================================*/
.structure {
	position: relative;
	padding-top: 60px;
}
.structure::before {
	position: absolute;
	content: "";
	background: url(../../assets/img/structure-bg.png) no-repeat center center/cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}
.structure::after {
	position: absolute;
	content: "";
	background: #016c5f;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.4;
}
@media (min-width: 768px) {
	.structure {
		padding-top: 60px;
	}
}

.structure__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
	text-shadow: 0 0 10px #016c5f;
	font-weight: bold;
}

.structure__list {
	position: relative;
}
.structure__list::before {
	position: absolute;
	content: "";
	background: url(../../assets/img/structure-search.png) no-repeat top center/contain;
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0.2;
}

.structure__search-bar {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.structure__search-bar {
		margin-top: 50px;
	}
}

.structure__speech {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 700px;
	width: 100%;
	margin-inline: auto;
	padding-top: 40px;
	position: relative;
	gap: 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 768px) {
	.structure__speech {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.structure__speech-text {
	border-radius: 10px;
	background-color: rgb(211, 211, 211);
	position: relative;
	padding: 30px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: inline-block;
	-webkit-box-shadow: 4px 4px 0px 0px #fff;
	box-shadow: 4px 4px 0px 0px #fff;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
@media (min-width: 768px) {
	.structure__speech-text {
		margin-right: 20px;
	}
}
.structure__speech-text span {
	font-weight: 700;
}
.structure__speech-text::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 20px 0 0 20px;
	border-color: #fff transparent transparent;
	translate: calc(-50% + 5.4px) 100%;
}
@media (min-width: 768px) {
	.structure__speech-text::before {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		border-style: solid;
		border-width: 7px 0 7px 20px;
		border-color: transparent transparent transparent #fff;
		translate: 100% -50%;
		bottom: 10px;
		right: 0;
	}
}
.structure__speech-text::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 20px 0 0 20px;
	border-color: rgb(211, 211, 211) transparent transparent;
	translate: calc(-50% + 0.4px) 100%;
}
@media (min-width: 768px) {
	.structure__speech-text::after {
		content: "";
		position: absolute;
		bottom: 14px;
		right: 1px;
		border-style: solid;
		border-width: 7px 0 7px 20px;
		border-color: transparent transparent transparent rgb(211, 211, 211);
		translate: 100% -50%;
	}
}

.structure__speech-img {
	position: relative;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	right: -50px;
}
@media (min-width: 768px) {
	.structure__speech-img {
		right: 0;
	}
}
.structure__speech-img img {
	-o-object-fit: contain;
	object-fit: contain;
	margin-top: -40px;
	height: 200px;
}
@media (min-width: 768px) {
	.structure__speech-img img {
		width: auto;
		margin-top: -60px;
		height: 220px;
	}
}

.structure__search-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	position: relative;
}
.structure__search-list::after {
	position: absolute;
	background: url(../../assets/img/structure-search-glass.png) no-repeat right top/contain;
	top: -20px;
	right: -20px;
	width: 80px;
	height: 80px;
	content: "";
	opacity: 0.5;
}

.structure__search-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 20px;
	font-weight: 700;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	max-width: 160px;
	width: 100%;
}
.structure__search-item img {
	width: 36px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	padding-right: 10px;
}

.structure__search-kakeru {
	font-size: 40px;
	font-weight: 700;
	line-height: normal;
}

/*==============================================================================
# service
==============================================================================*/
.service__sub-title {
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
	font-weight: 700;
	text-align: center;
	margin-top: 40px;
	line-height: 3.4;
}
@media (min-width: 768px) {
	.service__sub-title {
		margin-top: 60px;
	}
}

.service__sub-title-bubble {
	border: 1px solid #0a0a0a;
	background: #fff;
	padding: 10px;
	font-size: clamp(1.25rem, 1.065rem + 0.93vw, 1.875rem);
	font-weight: 700;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	margin-inline: auto;
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
}
@media (min-width: 768px) {
	.service__sub-title-bubble {
		margin-right: 40px;
	}
}
.service__sub-title-bubble::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 20px 0 0 20px;
	border-color: #0a0a0a transparent transparent;
	translate: -50% 100%;
	-webkit-transform: skew(-25deg);
	transform: skew(-25deg);
	-webkit-transform-origin: top;
	transform-origin: top;
}
@media (min-width: 768px) {
	.service__sub-title-bubble::before {
		content: "";
		position: absolute;
		bottom: auto;
		top: 50%;
		right: 1px;
		border-style: solid;
		border-width: 16px 0 0 20px;
		border-color: transparent transparent transparent #0a0a0a;
		translate: 100% -50%;
		-webkit-transform: skew(0, -25deg);
		transform: skew(0, -25deg);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}
.service__sub-title-bubble::after {
	content: "";
	position: absolute;
	bottom: 1px;
	left: 50%;
	border-style: solid;
	border-width: 19px 0 0 19px;
	border-color: #ffffff transparent transparent;
	translate: -50% 100%;
	-webkit-transform: skew(-25deg);
	transform: skew(-25deg);
	-webkit-transform-origin: top;
	transform-origin: top;
}
@media (min-width: 768px) {
	.service__sub-title-bubble::after {
		bottom: auto;
		top: 50%;
		right: 2px;
		left: auto;
		border-width: 16px 0 0 20px;
		border-color: transparent transparent transparent #ffffff;
		translate: 100% -50%;
		-webkit-transform: skew(0, -25deg);
		transform: skew(0, -25deg);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}
.service__sub-title-bubble .yellow-shadow {
	position: absolute;
	top: 10px;
	left: 8px;
	z-index: -1;
	background: #ffe742;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.service__sub-title-bubble .yellow-shadow::before {
	content: "";
	position: absolute;
	bottom: 1px;
	left: 50%;
	border-style: solid;
	border-width: 19px 0 0 19px;
	border-color: #ffe742 transparent transparent;
	translate: -50% 100%;
	-webkit-transform: skew(-25deg);
	transform: skew(-25deg);
	-webkit-transform-origin: top;
	transform-origin: top;
}
@media (min-width: 768px) {
	.service__sub-title-bubble .yellow-shadow::before {
		content: "";
		position: absolute;
		bottom: auto;
		top: 50%;
		right: 1px;
		border-style: solid;
		border-width: 16px 0 0 20px;
		border-color: transparent transparent transparent #ffe742;
		translate: 100% -50%;
		-webkit-transform: skew(0, -25deg);
		transform: skew(0, -25deg);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}

.service__list {
	max-width: 1030px;
	width: 100%;
	margin-inline: auto;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.service__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 3%;
		margin-top: 60px;
	}
}

.service__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.service__item:not(:first-child) {
	margin-top: 16px;
}
@media (min-width: 768px) {
	.service__item:not(:first-child) {
		margin-top: 0;
	}
}

.service__item-title {
	text-align: center;
	color: #fff;
	background: #016c5f;
	border-radius: 10px 10px 0 0;
	padding: 16px 20px;
	width: 160px;
	margin-inline: auto;
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
}

.service__item-card {
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	padding: 40px 30px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.service__item-card img {
	-o-object-fit: contain;
	object-fit: contain;
	margin-top: 10px;
	height: 110px;
}

/*==============================================================================
# cta2
==============================================================================*/
.cta2 {
	position: relative;
	z-index: 0;
}

.cta2__inner {
	position: relative;
	height: 100%;
}

.cta2__container {
	background: #fff;
	border-radius: 10px;
	padding: 30px 20px 100px 20px;
	z-index: 1;
	position: relative;
	margin-inline: auto;
	text-align: center;
	max-width: 780px;
	width: 100%;
}
@media (min-width: 768px) {
	.cta2__container {
		padding: 30px 20px;
	}
}

.cta2__texts {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.cta2__texts span {
	font-size: 20px;
}
.cta2__texts img {
	height: 36px;
	width: auto;
}

.kana-margin {
	margin-inline: 6px;
}

.cta2__button {
	margin-top: 30px;
}

.cta2__imgs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	bottom: 0;
	content: "";
	left: 0;
	width: 100%;
	height: 100%;
	gap: 20px;
	margin-top: -74px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.cta2__imgs {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
		position: absolute;
	}
}
.cta2__imgs img {
	-o-object-fit: contain;
	object-fit: contain;
}

.cta2__img {
	height: auto;
	z-index: 3;
}
@media (min-width: 768px) {
	.cta2__img {
		position: absolute;
	}
}

.cta2__img-01 {
	width: clamp(7.813rem, 2.116rem + 11.87vw, 12.5rem);
	bottom: 5px;
	position: relative;
}
@media (min-width: 768px) {
	.cta2__img-01 {
		left: 0;
		bottom: clamp(-3.563rem, -4.778rem + 2.53vw, -2.563rem);
	}
}

.cta2__img-02 {
	width: clamp(9.188rem, -0.154rem + 19.46vw, 16.875rem);
}
@media (min-width: 768px) {
	.cta2__img-02 {
		right: clamp(-1.25rem, -2.769rem + 3.16vw, 0rem);
		bottom: 0;
	}
}

/*==============================================================================
# reason
==============================================================================*/
.reason {
	padding-bottom: 0;
}

.reason__desc {
	text-align: center;
}

.reason__box1 {
	margin-top: 40px;
	position: relative;
	margin-inline: auto;
	max-width: 840px;
}
@media (min-width: 768px) {
	.reason__box1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.reason__list {
	max-width: 380px;
	width: 100%;
	margin-inline: auto;
}
@media (min-width: 768px) {
	.reason__list {
		margin-inline: 0;
	}
}

.reason__item {
	text-align: center;
	background-color: #5c9c94;
	border-radius: 50%;
	height: 156px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 156px;
	color: #fff;
}
.reason__item img {
	height: 64px;
	width: 64px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	margin-bottom: 6px;
}

.reason__box-img {
	text-align: center;
}
@media (min-width: 768px) {
	.reason__box-img {
		text-align: left;
		margin-right: 10px;
	}
}

.reason__list-texts {
	padding: 30px;
	border: 1px solid #0a0a0a;
	border-radius: 5px;
	margin-top: 20px;
	text-align: center;
}
@media (min-width: 768px) {
	.reason__list-texts {
		margin-top: 0;
	}
}

.reason__list-texts-title {
	font-weight: 700;
	font-size: 20px;
}

.reason__list2 {
	border: 1px solid #0a0a0a;
	border-radius: 4px;
	padding-block: 30px;
	margin-top: 60px;
	-webkit-box-shadow: 6px 6px 0px 0px #5c9c94;
	box-shadow: 6px 6px 0px 0px #5c9c94;
}
@media (min-width: 768px) {
	.reason__list2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.reason__list2-item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-inline: 16px;
	padding-bottom: 24px;
}
.reason__list2-item:not(:first-child) {
	border-top: 1px dotted #0a0a0a;
	width: calc(100% - 40px);
	margin-inline: auto;
	padding-top: 24px;
}
@media (min-width: 768px) {
	.reason__list2-item {
		border-bottom: 0;
	}
	.reason__list2-item:not(:first-child) {
		border-left: 1px dotted #0a0a0a;
		padding-top: 0;
		border-top: none;
	}
}
.reason__list2-item p {
	text-align: center;
	margin-top: 10px;
}

.reason__list2-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #016c5f;
	font-weight: 700;
	font-size: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.reason__list2-title {
		font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
	}
}
.reason__list2-title img {
	width: 50px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (min-width: 768px) {
	.reason__list2-title img {
		width: clamp(2.5rem, 1.741rem + 1.58vw, 3.125rem);
	}
}

/*==============================================================================
# achievement
==============================================================================*/
.achievement__title-small {
	font-size: clamp(0.938rem, 0.845rem + 0.46vw, 1.25rem);
	font-weight: 700;
	display: block;
}

.achievement__list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}
@media (min-width: 768px) {
	.achievement__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.achievement__item {
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	padding: 20px 30px;
	border-radius: 10px;
	text-align: center;
}
@media (min-width: 768px) {
	.achievement__item {
		text-align: left;
	}
}
.achievement__item p {
	margin-top: 20px;
}
.achievement__item p span.achievement__item-orange {
	color: #ff8625;
	font-weight: 600;
}

.achievement__item-gray {
	background: #dcdcdc;
	border-radius: 100vmax;
	padding-inline: 12px;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.achievement__item-title {
	color: #fff;
	background: #016c5f;
	font-size: 20px;
	font-weight: 700;
	border-radius: 10px;
	width: 100%;
	text-align: center;
	padding: 10px;
}

.achievement__button {
	text-align: center;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.achievement__button {
		margin-top: 60px;
	}
}

.achievement__item-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 10px;
	margin-top: 10px;
}
@media (min-width: 768px) {
	.achievement__item-list {
		margin-top: 20px;
	}
}
.achievement__item-list p {
	text-align: center;
	margin-top: 0;
}

/*==============================================================================
# voice
==============================================================================*/
.voice {
	z-index: 1;
}

.voice__title {
	color: #fff;
}

.voice__list {
	margin-top: 60px;
}
@media (min-width: 768px) {
	.voice__list {
		margin-top: 80px;
		display: grid !important;
		grid-template-columns: repeat(3, 1fr);
	}
}

.voice__item {
	border-top: 6px solid #ffe742;
	background: #fff;
	padding: 40px 16px;
}
@media (min-width: 768px) {
	.voice__item {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}
.voice__item img {
	width: 180px;
	height: 180px;
	-o-object-fit: contain;
	object-fit: contain;
}

.voice__item-img {
	text-align: center;
}

.voice__item-customer {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-top: 16px;
}

.voice__item-effect {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	background: #016c5f;
	border-radius: 100vmax;
	width: 100%;
	margin-top: 16px;
	color: #fff;
	padding: 10px;
}
.voice__item-effect span {
	font-weight: 700;
}

.voice__item-text {
	margin-top: 16px;
}

/* swiper */
/* PC時は横並び（Swiper無効） */
@media (min-width: 768px) {
	.swiper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		gap: 20px;
	}
	/* ナビゲーションボタンはPCでは非表示 */
	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}
}
/* スマホ時はSwiperを適用 */
@media (max-width: 767px) {
	.swiper {
		overflow: hidden;
		position: relative;
	}
	.swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.swiper-slide {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		width: 100%;
	}
	/* ナビゲーションボタンのスタイル */
	.swiper-button-prev::after,
	.swiper-button-next::after {
		bottom: 0;
		content: "";
		height: 0;
		margin: auto;
		position: absolute;
		top: 0;
		width: 0;
	}
	.swiper-button-prev,
	.swiper-button-next {
		color: #fff;
		background-color: rgba(220, 220, 220, 0.5);
		padding: 10px;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		border: 1px solid #bdbdbd;
	}
	.swiper-button-prev {
		left: 10px;
	}
	.swiper-button-prev::after {
		border-bottom: 8px solid transparent;
		border-right: 8px solid #757575;
		border-top: 8px solid transparent;
		left: 13px;
	}
	.swiper-button-next {
		right: 10px;
	}
	.swiper-button-next::after {
		border-bottom: 8px solid transparent;
		border-left: 8px solid #757575;
		border-top: 8px solid transparent;
		left: 16px;
	}
}
/*==============================================================================
# faq
==============================================================================*/
.faq__title {
	font-size: clamp(1.25rem, 0.972rem + 1.39vw, 2.188rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}

.title-fukidashi {
	display: block;
	text-align: center;
	margin-inline: auto;
	margin-top: 0px;
	width: 100%;
}
.title-fukidashi img {
	width: clamp(10rem, 5.078rem + 24.61vw, 16.875rem);
}
@media (min-width: 768px) {
	.title-fukidashi img {
		width: 310px;
	}
}

.faq__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-top: 38px;
	max-width: 1000px;
	margin-inline: auto;
}
@media (min-width: 768px) {
	.faq__list {
		gap: 30px;
		margin-top: 54px;
	}
}

.question {
	background: #016c5f;
	color: #fff;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
	border-radius: 10px 10px 0px 0px;
}
.question span {
	margin-right: 10px;
}
.question span img {
	width: 27px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.answer {
	padding: 20px 16px 28px;
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	border-radius: 0px 0px 10px 10px;
	background: #fff;
}

/*==============================================================================
# company
==============================================================================*/
.company {
	background: #f5f5f5;
	position: relative;
	z-index: 1;
}

.company__box {
	margin-top: 80px;
}

.company__table {
	background: #fff;
	border-radius: 10px;
	max-width: 854px;
	width: 100%;
	margin-inline: auto;
	padding: 30px 24px;
	-webkit-box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	box-shadow: 0px 8px 17px 0px rgba(0, 37, 33, 0.5);
	position: relative;
	border-spacing: 0;
}
.company__table td,
.company__table th {
	border-bottom: solid 1px #0a0a0a;
}
.company__table tr:last-child td,
.company__table tr:last-child th {
	border-bottom: none;
}
@media (min-width: 768px) {
	.company__table {
		padding: 30px 60px;
	}
}
.company__table::before {
	position: absolute;
	background: #016c5f;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
	content: "";
	top: 0;
	left: 0;
}
@media (min-width: 768px) {
	.company__table::before {
		-webkit-transform: rotate(-4deg);
		transform: rotate(-4deg);
	}
}
@media (max-width: 767.9px) {
	.company__table th,
	.company__table td {
		display: block;
		width: 100%;
		text-align: center;
	}
	.company__table th {
		border: none;
	}
}

tr.company__table-row {
	position: relative;
}

.company__table-head {
	font-weight: 800;
	padding-block: 10px;
	width: 30%;
}
@media (min-width: 768px) {
	.company__table-head {
		padding-block: 20px;
	}
}

.company__table-data {
	padding-block: 0 10px;
	width: 70%;
}
@media (min-width: 768px) {
	.company__table-data {
		padding-block: 20px;
	}
}

/*==============================================================================
# cta3
==============================================================================*/
.cta3 {
	position: relative;
	overflow: hidden;
	padding-block: 100px 90px;
}

.cta3__container {
	max-width: 740px;
	margin-inline: auto;
	width: 100%;
}

.cta3__title {
	position: relative;
	text-align: center;
	max-width: 480px;
	margin-inline: auto;
	width: 100%;
}
@media (min-width: 768px) {
	.cta3__title {
		max-width: none;
	}
}

.cta3__flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin-top: 60px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cta3__box {
	background: #fff;
	border-radius: 10px;
	position: relative;
	padding: 50px;
	z-index: 0;
}

.cta3__box-title {
	font-size: clamp(1.25rem, 1.157rem + 0.46vw, 1.563rem);
	margin-top: 30px;
}
@media (min-width: 768px) {
	.cta3__box-title {
		margin-top: 0;
	}
}

.cta3__box-title-text {
	display: block;
}

.cta3-deco {
	position: absolute;
	top: -30px;
	right: -30px;
}
.cta3-deco img {
	width: 80px;
	height: 80px;
}
@media (min-width: 768px) {
	.cta3-deco img {
		width: 130px;
		height: 130px;
	}
}
.cta3-deco::after {
	position: absolute;
	content: "モニター\a募集中";
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	white-space: pre;
	text-align: center;
	font-weight: 700;
}
@media (min-width: 768px) {
	.cta3-deco::after {
		font-size: 20px;
	}
}

.cta3__box-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cta3__box-flex .cta3__list {
	width: 50%;
}
.cta3__box-flex img {
	width: 50%;
	-o-object-fit: contain;
	object-fit: contain;
}

.cta3__list {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cta3-phone {
	width: 30.3448%;
	height: 100%;
	min-height: 430px;
}
.cta3-phone img {
	-o-object-fit: contain;
	object-fit: contain;
	height: 100%;
	width: 100%;
	min-height: 430px;
}

.cta3__button {
	text-align: center;
	margin-top: 30px;
}

.cta3-google-logo {
	margin-right: 8px;
}

.cta3-google-maps-logo {
	margin-inline: 8px;
}

.cta3-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -4;
}
.cta3-bg img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.cta3-bg::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgb(1, 108, 95);
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.8;
}

.cta3-sp {
	margin-top: 10px;
	margin-inline: auto;
	position: relative;
	z-index: 0;
	max-width: 480px;
}

.cta3-sp__box {
	position: relative;
}

@media (max-width: 767.9px) {
	.cta3__button {
		position: absolute;
		bottom: 30px;
		left: calc(50% - 8px);
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 100%;
		padding-inline: 20px;
	}
}

.cta3-sp__flex-right-text {
	background: #ff8625;
	font-weight: 700;
	color: #fff;
	border-radius: 10px;
	padding: 16px;
	text-align: center;
	margin-top: -6px;
}
.cta3-sp__flex-right-text span {
	display: block;
	font-weight: 700;
}

/*==============================================================================
# footer
==============================================================================*/
.footer {
	padding-block: 30px 20px;
}
.footer__container {
	text-align: center;
}
@media (min-width: 768px) {
	.footer__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.footer__logo {
	color: #016c5f;
	font-weight: 700;
	line-height: normal;
	font-size: clamp(1.25rem, 1.157rem + 0.46vw, 1.563rem);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer__box {
	text-align: center;
	margin-top: 28px;
}
@media (min-width: 768px) {
	.footer__box {
		margin-top: 0;
	}
}

.footer__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: clamp(0.938rem, 0.919rem + 0.09vw, 1rem) !important;
}
@media (min-width: 768px) {
	.footer__links {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
	}
}
.footer__links a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (any-hover: hover) {
	.footer__links a:hover {
		color: #016c5f;
	}
}
.footer__links a:not(:first-child) {
	margin-left: 16px;
}

.footer__copy {
	margin-top: 10px;
}
.footer__copy p {
	font-size: clamp(0.625rem, 0.514rem + 0.56vw, 1rem) !important;
	white-space: nowrap;
}

/* contactform7設定 */
.contact__agree span.wpcf7-form-control-wrap::before {
	display: none !important;
}
.contact__agree span.wpcf7-form-control.wpcf7-acceptance::before {
	display: none !important;
}
.contact__agree span.wpcf7-list-item::before {
	display: none !important;
}
span.wpcf7-list-item-label::before {
	display: none !important;
}
.wpcf7-form-control-wrap::before,
.wpcf7-form-control-wrap::after,
.wpcf7-form-control::before,
.wpcf7-form-control::after,
.wpcf7-list-item::before,
.wpcf7-list-item::after {
	content: none !important;
	display: none !important;
}
.contact__agree span.wpcf7-list-item-label,
.contact__agree span.wpcf7-form-control.wpcf7-acceptance,
.contact__agree span.wpcf7-form-control-wrap,
.contact__agree span.wpcf7-list-item
{
	padding-left: 0 !important;
}

/* メッセージの上部を消去 */
div.screen-reader-response{
	display: none;
}
.wpcf7-response-output {
	text-align: center;
	margin-top: 30px;
}

/* ヘッダーボタン調整 */
@media (any-hover: hover) {
	a.header__button:hover {
		color: #fff !important;
		opacity: .7 !important;
	}
}

/* 追加　theme.jsonによるスタイルの打ち消し */
a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}