@charset "UTF-8";

/* =========================================
	RESET
========================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #222;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

p,
h1,
h2,
h3 {
	margin-top: 0;
}

.container {
	width: min(1180px, calc(100% - 60px));
	margin: 0 auto;
}

.section {
	padding: 90px 0;
}

.spOnly {
	display: none;
}


/* =========================================
	COMMON HEADING
========================================= */

.sectionHeading {
	margin-bottom: 45px;
	text-align: center;
}

.sectionLabel {
	margin: 0 0 10px;
	color: #34672e;
	font-family: serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .22em;
}

.sectionTitle {
	margin: 0;
	color: #1c211c;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(25px, 2.4vw, 34px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .08em;
}

.sectionTitle span {
	font-size: .65em;
}


/* =========================================
	HEADER
========================================= */

.header {
	position: relative;
	z-index: 100;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #eee;
}

.header__inner {
	display: flex;
	align-items: center;
	width: min(1440px, calc(100% - 50px));
	min-height: 88px;
	margin: 0 auto;
	gap: 35px;
	justify-content: space-between;
}

.header__logo {
	width: 245px;
	flex-shrink: 0;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: clamp(15px, 1.5vw, 28px);
	margin-left: auto;
}

.header__nav a {
	position: relative;
	padding: 31px 0 28px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.header__nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 22px;
	width: 0;
	height: 2px;
	margin: auto;
	background: #34672e;
	transition: width .3s;
}

.header__nav a:hover::after,
.header__nav a.is-current::after {
	width: 100%;
}

.header__nav a.is-current {
	color: #34672e;
}

.header__contact {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__tel {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header__tel i {
	color: #34672e;
}

.header__tel span {
	display: flex;
	flex-direction: column;
}

.header__tel strong {
	font-size: 17px;
	line-height: 1.2;
}

.header__tel small {
	font-size: 9px;
}

.header__button {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px;
	color: #fff;
	background: #34672e;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	transition: opacity .3s;
}

.header__button:hover {
	opacity: .8;
}

.menuButton {
	display: none;
}


/* =========================================
	HERO
========================================= */

.hero {
	position: relative;
	min-height: 610px;
	overflow: hidden;
	background: #f7f7f3;
}

.hero__visual {
	position: absolute;
	top: 0;
	right: 0;
	width: 58%;
	height: 100%;
}

.hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			#f7f7f3 0%,
			rgba(247, 247, 243, .6) 15%,
			rgba(247, 247, 243, 0) 38%
		);
}

.hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 60px));
	margin: 0 auto;
	padding: 100px 0;
}

.hero__content {
	width: 58%;
}

.hero__catch {
	position: relative;
	margin-bottom: 24px;
	padding-left: 18px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .06em;
}

.hero__catch::before {
	content: "";
	position: absolute;
	left: 0;
	top: .3em;
	width: 3px;
	height: 1.5em;
	background: #34672e;
}

.hero__title {
	margin-bottom: 26px;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(38px, 3.3vw, 52px);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: .06em;
	white-space: nowrap;
}

.hero__title span {
	display: block;
	font-size: .58em;
	white-space: normal;
}

.hero__text {
	margin-bottom: 32px;
	font-size: 14px;
	line-height: 2;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-width: 310px;
	padding: 17px 22px;
	border-radius: 6px;
	font-weight: 600;
}

.button--primary {
	color: #fff;
	background: #34672e;
	box-shadow: 0 8px 25px rgba(52, 103, 46, .2);
	transition:
		transform .3s,
		box-shadow .3s;
}

.button--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(52, 103, 46, .28);
}


/* =========================================
	RECOMMEND
========================================= */

.recommend {
	position: relative;
	z-index: 5;
	margin-top: -70px;
	margin-bottom: 20px;
}

.recommend__box {
	padding: 20px 30px 25px;
	background: rgba(255, 255, 255, .97);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
}

.recommend__title {
	margin-bottom: 15px;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 12px;
}

.recommend__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: stretch;
}

.recommend__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 20px;
	text-align: center;
}

.recommend__item img {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto 14px;
	object-fit: contain;
}

.recommend__item + .recommend__item {
	border-left: 1px solid #ddd;
}

.recommend__item i {
	margin-bottom: 13px;
	color: #34672e;
	font-size: 34px;
}

.recommend__item p {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}


/* =========================================
	ABOUT
========================================= */

.about {
	padding-top: 120px;
	background: #f8f7f2;
}

.about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 55px;
}

.about__image {
	position: relative;
	width: 100%;
}

.about__image img {
	width: 100%;
	height: 330px;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	clip-path: polygon(
		0 0,
		85% 0,
		100% 100%,
		0 100%
	);
}

.about__copy {
	position: absolute;
	top: -25px;
	left: -15px;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 130px;
	height: 130px;
	margin: 0;

	color: #fff;
	background: #416c3c;
	border-radius: 50%;

	font-family: "Noto Serif JP", serif;
	font-size: 15px;
	line-height: 1.3;
	letter-spacing: .08em;
    font-weight: 600;
    text-align: center;
}

.about__content {
	padding-right: 30px;
}

.about__content .sectionTitle {
	position: relative;
	margin-bottom: 30px;
	padding-left: 20px;
	font-size: clamp(24px, 2vw, 30px);
	letter-spacing: .06em;
	white-space: nowrap;
}

.about__content .sectionTitle::before {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	width: 3px;
	height: 1.5em;
	background: #34672e;
}

.about__text {
	margin-bottom: 18px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.15;
	letter-spacing: .04em;
}


/* =========================================
	INSPECTION
========================================= */

.inspection {
	background: #fff;
	padding: 70px 0 60px;
}

.inspection .container {
	width: min(1280px, calc(100% - 80px));
}

.inspection .sectionHeading {
	margin-bottom: 28px;
}

.inspection__list {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
}

.inspection__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 120px;
	padding: 8px 14px;
	text-align: center;
}

.inspection__item + .inspection__item {
	border-left: 1px solid #ddd;
}

.inspection__item + .inspection__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #ddd;
}

.inspection__item img {
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto 12px;
	object-fit: contain;
}

.inspection__item i {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 76px;
	height: 76px;
	margin: 0 auto 14px;

	color: #34672e;
	background: #f5f6ef;
	border-radius: 50%;

	font-size: 30px;
}

.inspection__item p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	text-align: center;
}

.inspection__note {
	margin: 10px 0 0;
	color: #999;
	text-align: right;
	font-size: 10px;
}


/* =========================================
	REASON
========================================= */

.reason {
	background: #f8f7f2;
}

.reason__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.reasonCard {
	position: relative;
	padding: 30px 25px 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .04);
}

.reasonCard__number {
	margin: 0 0 10px;
	color: #34672e;
	font-family: Georgia, serif;
	font-size: 27px;
	font-style: italic;
}

.reasonCard h3 {
	margin-bottom: 15px;
	font-family: "Noto Serif JP", serif;
	font-size: 21px;
	line-height: 1.6;
}

.reasonCard > p:not(.reasonCard__number) {
	min-height: 95px;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.5;
}

.reasonCard img {
	width: 100%;
	height: 145px;
	object-fit: cover;
	border-radius: 5px;
}


/* ==============================
   INSPECTOR
============================== */

.inspector {
	padding: 80px 0;
	background: #fff;
}

.inspector .container {
	width: min(1180px, calc(100% - 60px));
}

.inspector__box {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr) 250px;
	align-items: center;
	gap: 55px;

	padding: 0;
	background: #fff;
}


/* 写真 */
.inspector__image {
	width: 340px;
	height: 260px;
	overflow: hidden;
}

.inspector__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* 紹介文 */
.inspector__content {
	padding: 0;
}

.inspector__content .sectionLabel {
	margin: 0 0 12px;
	text-align: left;
}

.inspector__content .sectionTitle {
	margin: 0 0 22px;
	text-align: left;
	font-size: 23px;
}

.inspector__name {
	margin: 0 0 7px;
	font-family: "Zen Old Mincho", serif;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: .05em;
}

.inspector__name small {
	margin-left: 8px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	font-weight: 400;
}

.inspector__role {
	margin: 0 0 16px;
	font-size: 11px;
}

.inspector__text {
	margin: 0;
	font-size: 11px;
	line-height: 2;
	letter-spacing: .03em;
}


/* 保有資格 */
.inspector__qualification {
	width: 100%;
	padding: 28px 26px;

	background: #fff;
	border: 1px solid #dfe3da;
	border-radius: 5px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.inspector__qualification h3 {
	margin: 0 0 18px;
	font-family: "Zen Old Mincho", serif;
	font-size: 16px;
	font-weight: 600;
}

.inspector__qualification ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.inspector__qualification li {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 9px 0;
	font-size: 11px;
}

.inspector__qualification li i {
	color: #34672e;
}


/* ==============================
   FLOW
============================== */

.flow {
	padding: 45px 0 55px;
	background: #fff;
}

.flow .container {
	width: min(1280px, calc(100% - 80px));
}


/* 見出し */
.flow .sectionHeading {
	position: relative;
	margin-bottom: 30px;
	text-align: center;
}

.flow .sectionLabel {
	display: none;
}

.flow .sectionTitle {
	margin: 0;
	font-size: 23px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: .08em;
}


/* 5ステップ */
.flow__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: start;
	gap: 0;
}


/* 各ステップ */
.flowItem {
	position: relative;
	text-align: center;
	padding: 0 24px;
}


/* 01〜05 */
.flowItem__number {
	grid-column: 1;
	grid-row: 1;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	background: #34672e;
	border-radius: 50%;

	color: #fff;
	font-size: 11px;
	font-weight: 600;
}


/* タイトル */
.flowItem h3 {
	grid-column: 2;
	grid-row: 1;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;

	margin: 0;
	padding-left: 8px;

	font-size: 18px;
	line-height: 1.4;
	text-align: left;
	letter-spacing: 0.1rem;
}


/* アイコン */
.flowItem__icon {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto 14px;
	object-fit: contain;
}


/* 説明文 */
.flowItem p {
	max-width: 190px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.8;
	text-align: center;
}


/* 次への矢印 */
.flowItem:not(:last-child)::after {
	content: "›";

	position: absolute;
	top: 62px;
	right: -5px;

	color: #34672e;
	font-family: serif;
	font-size: 32px;
	line-height: 1;
}


.flowItem__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 14px;
}

.flowItem__head h3 {
	margin: 0;

	font-family: "Zen Old Mincho", serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;

	white-space: nowrap;
}

.flowItem__number {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	width: 34px;
	height: 34px;

	background: #34672e;
	border-radius: 50%;

	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

/* ========================================
   CONTACT CTA
======================================== */

.contactCta {
	background: #f5f6f1;
	overflow: hidden;
}

.contactCta__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr 1.15fr;
	align-items: center;
	min-height: 175px;
}


/* -------------------------
   左側
------------------------- */

.contactCta__lead {
	position: relative;
	align-self: stretch;

	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 28px 70px 28px 0;

	color: #fff;
	background: #2f6b32;
}

.contactCta__lead::before {
	content: "";
	position: absolute;
	top: 0;
	right: 100%;

	width: 50vw;
	height: 100%;

	background: #2f6b32;
}

.contactCta__lead::after {
	content: "";
	position: absolute;
	top: 0;
	right: -70px;

	width: 72px;
	height: 100%;

	background: #2f6b32;

	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contactCta__lead p {
	position: relative;
	z-index: 2;

	margin: 0 0 5px;

	font-size: 13px;
	font-weight: 600;
}

.contactCta__lead h2 {
	position: relative;
	z-index: 2;

	margin: 0 0 14px;

	font-family: "Zen Old Mincho", serif;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.5;
}

.contactCta__lead span {
	position: relative;
	z-index: 2;

	font-size: 11px;
	font-weight: 500;
	line-height: 1.9;
}


/* -------------------------
   電話番号
------------------------- */

.contactCta__tel {
	position: relative;
	z-index: 3;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;

	padding-left: 65px;

	color: #111;
	text-decoration: none;
}

.contactCta__tel > i {
	flex: 0 0 auto;

	color: #34672e;
	font-size: 34px;
}

.contactCta__tel > span {
	display: flex;
	flex-direction: column;
}

.contactCta__tel strong {
	display: block;

	font-family: Arial, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: .01em;

	white-space: nowrap;
}

.contactCta__tel small {
	display: block;

	margin-top: 6px;

	font-size: 10px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
}


/* -------------------------
   お問い合わせボタン
------------------------- */

.contactCta__button {
	position: relative;
	z-index: 3;

	display: flex;
	align-items: center;

	width: calc(100% - 30px);
	min-height: 82px;
	margin-left: auto;

	padding: 14px 22px;

	background: #fff;
	border-radius: 8px;
	box-shadow: 0 7px 24px rgba(0, 0, 0, .08);

	color: #245f2d;
	text-decoration: none;

	transition: opacity .3s ease;
}

.contactCta__button:hover {
	opacity: .75;
}

.contactCta__button > i:first-child {
	flex: 0 0 auto;

	margin-right: 18px;

	font-size: 29px;
}

.contactCta__button > span {
	flex: 1;

	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

.contactCta__button small {
	display: block;

	margin-top: 3px;

	font-size: 10px;
	font-weight: 400;
}

.contactCta__button > i:last-child {
	flex: 0 0 auto;

	margin-left: 15px;

	font-size: 14px;
}

/* =========================================
	FOOTER
========================================= */

.footer {
	padding: 30px 0;
	background: #222;
	color: #fff;
}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__logo {
	width: 200px;
	padding: 8px;
}

.footer p {
	margin: 0;
	color: #aaa;
	font-size: 10px;
}


/* =========================================
	TABLET
========================================= */

@media screen and (max-width: 1100px) {

	.header__nav {
		display: none;
	}

	.header__contact {
		margin-left: auto;
	}

	.menuButton {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 42px;
		height: 42px;
		padding: 9px;
		background: transparent;
		border: 0;
		cursor: pointer;
	}

	.menuButton span {
		width: 100%;
		height: 2px;
		background: #222;
	}

	.hero__visual {
		width: 55%;
	}

	.inspection__list {
		grid-template-columns: repeat(4, 1fr);
		gap: 25px 0;
	}

	.inspection__item:nth-child(5) {
		border-left: 0;
	}

	.reason__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.inspector__box {
		grid-template-columns: 250px 1fr;
	}

	.inspector__qualification {
		grid-column: 1 / -1;
	}

}


/* =========================================
	SP
========================================= */

@media screen and (max-width: 767px) {

	body {
		font-size: 14px;
	}

	.container {
		width: calc(100% - 36px);
	}

	.section {
		padding: 65px 0;
	}

	.spOnly {
		display: block;
	}

	.header__inner {
		width: calc(100% - 30px);
		min-height: 70px;
		gap: 10px;
	}

	.header__logo {
		width: 190px;
	}

	.header__contact {
		display: none;
	}


	/* HERO */

	.hero {
		min-height: auto;
		padding-bottom: 0;
	}

	.hero__visual {
		position: relative;
		width: 100%;
		height: 320px;
		order: 2;
	}

	.hero__visual::after {
		background:
			linear-gradient(
				180deg,
				#f7f7f3 0%,
				rgba(247, 247, 243, 0) 35%
			);
	}

	.hero__inner {
		width: calc(100% - 36px);
		padding: 60px 0 30px;
	}

	.hero__content {
		width: 100%;
	}

	.hero__catch {
		margin-bottom: 18px;
		font-size: 12px;
	}

	.hero__title {
		font-size: clamp(31px, 9vw, 42px);
	}

	.hero__text br {
		display: none;
	}

	.hero__text {
		font-size: 13px;
	}

	.button {
		width: 100%;
		min-width: 0;
	}

	.hero__title {
		margin: 0 0 20px;

		font-family: "Zen Old Mincho", serif;
		font-size: 28px;
		font-weight: 500;
		line-height: 1.45;
		letter-spacing: .04em;

		white-space: normal;
		word-break: keep-all;
	}

	.hero__title span {
		display: block;

		margin-top: 3px;

		font-size: 17px;
		line-height: 1.5;
		letter-spacing: .04em;
	}



	/* RECOMMEND */

	.recommend {
		margin-top: -20px;
	}

	.recommend__box {
		padding: 25px 15px;
	}

	.recommend__title {
		font-size: 17px;
	}

	.recommend__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.recommend__item {
		padding: 20px 10px;
	}

	.recommend__item + .recommend__item {
		border-left: 0;
	}

	.recommend__item:nth-child(even) {
		border-left: 1px solid #ddd;
	}

	.recommend__item:nth-child(n+3) {
		border-top: 1px solid #ddd;
	}

	.recommend__item:last-child {
		grid-column: 1 / -1;
		border-left: 0;
	}

	.recommend__item i {
		font-size: 29px;
	}

	.recommend__item p {
		font-size: 11px;
	}


	/* ABOUT */

	.about {
		padding-top: 80px;
	}

	.about__inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.about__image img {
		height: 280px;
		border-radius: 7px;
	}

	.about__copy {
		top: -30px;
		left: -5px;
		width: 115px;
		height: 115px;
		font-size: 13px;
	}

	.about__content {
		padding-right: 0;
	}


	.about {
		padding: 60px 0;
	}

	.about .container {
		width: calc(100% - 36px);
	}

	.about__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 38px;
	}

	/* 画像 */
	.about__image {
		width: 100%;
		min-width: 0;
	}

	.about__image img {
		display: block;
		width: 100%;
		height: 260px;
		object-fit: cover;

		/* PCと同じ斜めを少し弱める */
		clip-path: polygon(
			0 0,
			90% 0,
			100% 100%,
			0 100%
		);
	}

	/* 緑の丸 */
	.about__copy {
		top: -22px;
		left: -5px;

		width: 100px;
		height: 100px;

		font-size: 12px;
		line-height: 1.65;
	}

	/* 右側テキスト */
	.about__content {
		width: 100%;
		min-width: 0;
	}

	.about__content .sectionTitle {
		font-size: 22px;
		line-height: 1.6;
		letter-spacing: .04em;

		/* ★ここ重要 */
		white-space: normal;
		word-break: normal;
	}

	.about__text {
		font-size: 13px;
		line-height: 2;
		letter-spacing: .02em;
	}

	/* INSPECTION */

	.inspection__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.inspection__item {
		padding: 25px 10px;
		border-bottom: 1px solid #ddd;
	}

	.inspection__item:nth-child(odd) {
		border-left: 0;
	}

	.inspection__item:nth-child(even) {
		border-left: 1px solid #ddd;
	}

	.inspection__note {
		text-align: left;
	}


	/* REASON */

	.reason__grid {
		grid-template-columns: 1fr;
	}

	.reasonCard {
		padding: 25px 22px 22px;
	}

	.reasonCard > p:not(.reasonCard__number) {
		min-height: 0;
	}

	.reasonCard img {
		height: 190px;
	}


	/* INSPECTOR */

	.inspector__box {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 28px;
	}

	.inspector__image img {
		height: 300px;
	}

	.inspector__qualification {
		padding: 20px;
	}


	.inspector {
		padding: 55px 0;
	}

	.inspector .container {
		width: calc(100% - 36px);
	}

	.inspector__box {
		display: block;
		min-height: 0;
		background: #fff;
		overflow: visible;
	}


	/* 写真 */
	.inspector__image {
		width: 100%;
		height: 240px;
		margin-bottom: 26px;
	}

	.inspector__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 30%;
	}


	/* 本文 */
	.inspector__content {
		display: block;
		padding: 0;
	}

	.inspector__content .sectionLabel {
		margin-bottom: 10px;
		text-align: left;
	}

	.inspector__content .sectionTitle {
		margin: 0 0 22px;

		font-size: 22px;
		line-height: 1.6;
		letter-spacing: .05em;

		text-align: left;
		white-space: normal;
	}

	.inspector__name {
		margin-bottom: 6px;

		font-size: 21px;
		line-height: 1.5;
	}

	.inspector__name small {
		display: inline;
		margin-left: 5px;
		font-size: 10px;
	}

	.inspector__role {
		margin-bottom: 14px;
		font-size: 12px;
	}

	.inspector__text {
		font-size: 13px;
		line-height: 2;
	}

	/* 資格 */
	.inspector__qualification {
		width: 100%;
		margin: 28px 0 0;
		padding: 22px 20px;

		box-sizing: border-box;
	}

	.inspector__qualification h3 {
		font-size: 16px;
	}

	.inspector__qualification li {
		font-size: 12px;
	}





	/* FLOW */

	.flow__list {
		grid-template-columns: 1fr;
	}

	.flowItem {
		display: grid;
		grid-template-columns: 45px 45px 1fr;
		align-items: center;
		gap: 10px;
		padding: 22px 0;
		text-align: left;
		border-bottom: 1px solid #ddd;
	}

	.flowItem:not(:last-child)::after {
		display: none;
	}

	.flowItem__number {
		grid-row: 1 / 3;
		margin: 0;
	}

	.flowItem__icon {
		grid-row: 1 / 3;
		margin: 0;
		text-align: center;
	}

	.flowItem h3 {
		margin: 0;
	}

	.flowItem p {
		margin: 0;
	}


	/* CTA */

	.contactCta {
		padding: 40px 0;
		background: #2f622e;
	}

	.contactCta__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contactCta__lead {
		text-align: center;
		padding: 20px 0;
	}

	.contactCta__tel {
		padding: 20px;
		color: #222;
		background: #fff;
		border-radius: 7px;
	}

	.contactCta__button {
		justify-content: center;
		width: 100%;
	}


	/* FOOTER */

	.footer__inner {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.header__nav.is-open {
		position: absolute;
		top: 70px;
		left: -15px;
		right: -15px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 15px 25px 25px;
		background: #fff;
		box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
	}

	.header__nav.is-open a {
		padding: 13px 0;
		border-bottom: 1px solid #eee;
		font-size: 13px;
	}

	.header__nav.is-open a::after {
		display: none;
	}

	.menuButton.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menuButton.is-open span:nth-child(2) {
		opacity: 0;
	}

	.menuButton.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.menuButton span {
		transition:
			transform .3s,
			opacity .3s;
	}

	/* 調査内容 */
	.inspection__list {
		grid-template-columns: repeat(2, 1fr);
		border: none;
	}

	.inspectionItem {
		min-height: 155px;
		padding: 24px 10px 20px;
		border: none;
	}

	/* 縦線 */
	.inspectionItem:nth-child(odd) {
		border-right: 1px solid #eeeeea;
	}

	/* 横線 */
	.inspectionItem:nth-child(n+3) {
		border-top: 1px solid #eeeeea;
	}

	.inspectionItem__icon {
		margin-bottom: 14px;
	}

	.inspectionItem h3,
	.inspectionItem p {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 767px) {

	.inspection__list {
		grid-template-columns: repeat(2, 1fr);
		border: none;
	}

	/* いったん既存の線を全部消す */
	.inspection .inspection__item {
		min-height: 150px;
		padding: 22px 10px;
		border: none;
	}

	/* 右列だけ縦線 */
	.inspection .inspection__item:nth-child(even) {
		border-left: 1px solid #eee;
	}

	/* 3つ目以降に横線 */
	.inspection .inspection__item:nth-child(n+3) {
		border-top: 1px solid #eee;
	}
	.inspection__item p {
	    margin: 0;
	    font-size: 15px;
	    font-weight: 500;
	    line-height: 1.65;
	    text-align: center;
	}
	.inspection__list {
		grid-template-columns: repeat(2, 1fr);
		border: 0 !important;
	}


	.inspection__item,
	.inspection__item + .inspection__item,
	.inspection__item:nth-child(even),
	.inspection__item:nth-child(odd),
	.inspection__item:nth-child(n+3) {
		border: none !important;
	}

	.inspection__item::before,
	.inspection__item::after,
	.inspection__item + .inspection__item::before {
		display: none !important;
		content: none !important;
	}
	.inspection__note {
		text-align: center;
	}
}

@media screen and (max-width: 767px) {

	.flow {
		padding: 55px 0;
	}

	.flow .container {
		width: calc(100% - 36px);
	}

	.flow .sectionHeading {
		margin-bottom: 60px;
	}

	.flow__list {
		display: block;
	}

	.flowItem {
		position: relative;
		display: block;

		padding: 28px 0;
		text-align: center;

		border-bottom: 1px solid #eee;
	}

	.flowItem:first-child {
		padding-top: 0;
	}

	.flowItem:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}


	/* 番号＋タイトル */
	.flowItem__head {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		margin-bottom: 18px;
	}

	.flowItem__number {
		display: flex;
		align-items: center;
		justify-content: center;

		width: 34px;
		height: 34px;

		flex: 0 0 34px;

		background: #34672e;
		border-radius: 50%;

		color: #fff;
		font-size: 11px;
		font-weight: 600;
	}

	.flowItem__head h3 {
		margin: 0;

		font-family: "Zen Old Mincho", serif;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.4;

		white-space: nowrap;
	}


	/* アイコン */
	.flowItem__icon {
		display: block;

		width: 52px;
		height: 52px;

		margin: 0 auto 16px;

		object-fit: contain;
	}


	/* 説明 */
	.flowItem p {
		max-width: 260px;
		margin: 0 auto;

		font-size: 13px;
		line-height: 1.8;
		text-align: center;
	}


	/* PC用の矢印を消す */
	.flowItem::after,
	.flowItem:not(:last-child)::after {
		display: none !important;
		content: none !important;
	}

}
