@charset "UTF-8";


/* ==================================================
   PAGE：トップページ
================================================== */

/* ===== PARTS：メインビジュアル下部案内 ===== */

.hero-info {
	background: #18191b;
	color: var(--base-color);
}

.hero-info__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.hero-info__item {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-template-rows: auto auto;
	gap: 3px 18px;
	align-content: center;
	min-height: 110px;
	padding: 20px clamp(20px, 3vw, 36px);
	box-sizing: border-box;
}

.hero-info__item + .hero-info__item {
	border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-info__icon {
	grid-row: 1 / 3;
	align-self: center;
	width: 42px;
	height: 42px;
	fill: rgba(255, 255, 255, .72);
}

.hero-info__item strong {
	align-self: end;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 700;
	letter-spacing: .06em;
}

.hero-info__item small {
	align-self: start;
	color: rgba(255, 255, 255, .55);
	font-size: 11px;
	letter-spacing: .03em;
}


/* TAB */
@media screen and (min-width: 768px) and (max-width: 1067px) {

	.hero-info__item {
		grid-template-columns: 38px 1fr;
		gap: 2px 12px;
		min-height: 90px;
		padding: 16px 14px;
	}

	.hero-info__icon {
		width: 32px;
		height: 32px;
	}

	.hero-info__item strong {
		font-size: 14px;
	}

	.hero-info__item small {
		font-size: 10px;
	}
}


/* SP */
@media screen and (max-width: 767px) {

	.hero-info__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 92px;
		padding: 14px 5px;
		text-align: center;
	}

	.hero-info__icon {
		display: block;
		flex-shrink: 0;
		width: 28px;
		height: 28px;
		margin: 0 auto;
	}

	.hero-info__item strong {
		display: block;
		width: 100%;
		font-size: 11px;
		line-height: 1.4;
		text-align: center;
	}

	.hero-info__item small {
		display: none;
	}
}


/* --------------------------------------------------
   SECTION：共通
-------------------------------------------------- */

.section-heading {
	margin-bottom: clamp(48px, 5vw, 72px);
	text-align: center;
}

.section-heading__en {
	margin-bottom: 10px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.section-heading h2 {
	color: var(--txt-color);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	letter-spacing: .07em;
	line-height: 1.35;
}

.section-heading::after {
	display: block;
	content: "";
	width: 44px;
	height: 1px;
	margin: 22px auto 0;
	background: var(--main-color);
}

.section-heading--compact {
	margin-bottom: 26px;
}

/* ===== 本文内見出し ===== */

.content-heading {
	margin-bottom: 26px;
}

.content-heading__en {
	margin-bottom: 10px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.content-heading h3 {
	color: var(--txt-color);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 700;
	letter-spacing: .055em;
	line-height: 1.5;
}



/* --------------------------------------------------
   SECTION：ご挨拶
-------------------------------------------------- */

.greeting {
	padding: var(--v-space) 0;
	background: var(--base-color);
}

.greeting-lead {
	margin-bottom: clamp(50px, 6vw, 75px);
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 2;
	text-align: center;
}


/* --------------------------------------------------
   SECTION：ご利用例
-------------------------------------------------- */

.usecase-sec {
	padding: var(--v-space) 0;
	background: var(--accent-color1);
}
/* ===== PARTS：ご利用例 ===== */

.usecase-box {
	position: relative;
	/* max-width: 1000px; */
	margin-right: auto;
	margin-left: auto;
	padding: 0 clamp(45px, 5vw, 65px);
}

.usecase-box__icon {
	position: absolute;
	top: -85px;
	right: clamp(30px, 4.5vw, 65px);
	width: clamp(165px, 18vw, 250px);
	transform: translateY(-35%);
}

.usecase-box__icon img {
	display: block;
	width: 100%;
	height: auto;
}

.usecase-box__head {
	margin-bottom: clamp(32px, 4vw, 45px);
	text-align: center;
}

.usecase-box__en {
	margin-bottom: 8px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.usecase-box__head h3 {
	margin-bottom: 14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.5;
}

.usecase-box__head > p:last-child {
	color: #6f746f;
	font-size: 14px;
	line-height: 1.8;
}

.usecase-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.usecase-list li {
	position: relative;
	padding: 24px 26px;
	background: var(--base-color);
}

.usecase-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 46px;
	height: 4px;
	background: var(--main-color);
	content: "";
}

.usecase-list__title {
	margin-bottom: 7px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(16px, 1.5vw, 19px);
	font-weight: 700;
	line-height: 1.5;
}

.usecase-list li > p:not(.usecase-list__title) {
	color: #6f746f;
	font-size: 13px;
	line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 1067px) {
	.usecase-box {
		padding: 0 35px;
	}

}

/* SP */

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

	.greeting-lead {
		margin-bottom: 40px;
	}
}

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

	.usecase-box {
		padding: 0 20px;
	}

	.usecase-box__icon {
		right: 5px;
		width: 160px;
		top: -95px;
		transform: translateY(-30%);
	}

	.usecase-box__head {
		margin-bottom: 28px;
	}

	.usecase-list {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.usecase-list li {
		padding: 20px;
	}

	.usecase-list li::before {
		width: 38px;
	}
}

/* --------------------------------------------------
   SECTION：お問い合わせ
-------------------------------------------------- */

.bnr_sec1 {
	padding: var(--v-space) 0;
	background: var(--accent-color1);
    background-image: url(../img/bg_01.png);
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
}


@media screen and (max-width: 767px) {
	.bnr_sec1 {
		background-image: url(../img/bg_01sp.png);
		background-position: top;
	}
}

.bnr_sec1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.bnr_sec1__lead {
	margin-bottom: clamp(30px, 4vw, 45px);
	text-align: center;
}

.bnr_sec1__time {
	margin-bottom: 7px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.bnr_sec1__catch {
	margin-bottom: 5px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(18px, 2vw, 23px);
	font-weight: 700;
	line-height: 1.6;
}

.bnr_sec1__lead > p:last-child {
	color: #6f746f;
	font-size: 13px;
	line-height: 1.8;
}

.tel_bnr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(12px, 2vw, 20px);
}

.tel_bnr .img {
	margin: 0;
}

.tel_bnr .img a,
.tel_bnr .img img {
	display: block;
	width: 100%;
}

.tel_bnr .img img {
	height: auto;
}


/* SP */

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

	.greeting-lead {
		margin-bottom: 40px;
	}

	.bnr_sec1__lead {
		margin-bottom: 28px;
	}

	.bnr_sec1__catch {
		font-size: 18px;
	}

	.tel_bnr {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}


/* --------------------------------------------------
   SECTION：私たちについて
-------------------------------------------------- */

.about-sec {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background: #fff;
}


/* --------------------------------------------------
   SECTION：業務案内
-------------------------------------------------- */

.service-sec {
	padding: var(--v-space) 0;
	background: var(--base-color);
	background: var(--accent-color1);
}

/* ===== PARTS：導入 ===== */

.service-intro {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(36px, 6vw, 80px);
	margin-bottom: clamp(60px, 8vw, 100px);
	padding-bottom: clamp(40px, 6vw, 70px);
	border-bottom: 1px solid #dcdcdc;
}

.service-intro__title {
	padding-left: clamp(20px, 4vw, 56px);
	border-left: 3px solid var(--main-color);
}

.service-intro__en {
	margin-bottom: 8px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.service-intro__title h3 {
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.4;
}

.service-intro__text {
	align-self: center;
}

.service-intro__lead {
	margin-bottom: 16px;
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.8;
}

.service-intro__text > p:last-child {
	color: #666;
	font-size: 15px;
	line-height: 2;
}

/* ===== PARTS：画像＋テキスト ===== */

.imgtext-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	margin-bottom: clamp(50px, 7vw, 90px);
	background: var(--base-color);
}

.imgtext-box--reverse .img {
	order: 2;
}

.imgtext-box--reverse .imgtext-box__text {
	order: 1;
}

.imgtext-box .img {
	margin: 0;
	overflow: hidden;
}

.imgtext-box .img img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.imgtext-box__text {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(42px, 6vw, 78px);
}

.imgtext-box__num {
	position: absolute;
	top: 24px;
	right: 28px;
	color: rgba(0, 0, 0, .08);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(56px, 7vw, 90px);
	font-weight: 700;
	line-height: 1;
}

.imgtext-box__en {
	margin-bottom: 10px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.imgtext-box__en--blue {
	color: var(--accent-color2);
}

.imgtext-box__text h3 {
	margin-bottom: 24px;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.5;
}

.imgtext-box__text > p:not(.imgtext-box__num):not(.imgtext-box__en) {
	color: #555;
	font-size: 15px;
	line-height: 2;
}

.imgtext-box__text > p + p {
	margin-top: 14px;
}

.imgtext-box:last-child {
	margin-bottom: 0;
}


@media screen and (max-width: 768px) {
	.service-intro {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 50px;
		padding-bottom: 36px;
	}

	.service-intro__title {
		padding-left: 18px;
	}

	.imgtext-box {
		grid-template-columns: 1fr;
	}

	.imgtext-box--reverse .img,
	.imgtext-box--reverse .imgtext-box__text {
		order: initial;
	}

	.imgtext-box .img img {
		min-height: 260px;
		aspect-ratio: 4 / 3;
	}

	.imgtext-box__text {
		padding: 36px 24px 40px;
	}

	.imgtext-box__num {
		top: 18px;
		right: 20px;
	}

	.imgtext-box__text h3 {
		margin-bottom: 18px;
	}
}

/* ===== PARTS：タグ ===== */

.imgtext-box__point {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.imgtext-box__point li {
	padding: 7px 12px;
	background: var(--base-color);
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}


/* ===== PARTS：左右分割セクション ===== */

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
	min-height: 720px;
	background: var(--accent-color2);
	color: var(--base-color);
}

.split-section__visual {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100%;
    background-image: url(../img/bg_02.png);	
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

@media screen and (max-width: 968px) {
	.split-section__visual {
		background-image: url(../img/bg_02sp.png);	
        background-position: top;
	}
}

.split-section__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .38);
}

.split-section__heading {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: clamp(50px, 6vw, 90px);
	text-align: left;
}

.split-section__en {
	margin-bottom: 12px;
    color: rgba(255, 255, 255, .68);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.split-section__heading h2 {
	margin: 0;
	color: var(--base-color);
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
}

.split-section__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 8vw, 110px) clamp(45px, 6vw, 90px);
}

.split-section__list {
	width: 100%;
	max-width: 600px;
	border-top: 1px solid rgba(255, 255, 255, .17);
}

.split-section__item {
	padding: 23px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.split-section__item h3 {
	margin-bottom: 7px;
	font-size: 18px;
	font-weight: 700;
}

.split-section__item p {
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
	line-height: 1.85;
}

@media screen and (max-width: 968px) {
	.split-section {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.split-section__visual {
		min-height: 360px;
		background-attachment: scroll;
	}

	.split-section__heading {
		padding: 60px 5%;
	}

	.split-section__heading h2 {
		font-size: clamp(28px, 7vw, 38px);
	}

	.split-section__body {
		padding: 60px 5%;
	}

	.split-section__list {
		max-width: none;
	}
}

/* 印刷設定 */

@media print {

	.split-section {
		display: grid !important;
		grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr) !important;
		min-height: 720px !important;
		background: var(--accent-color2) !important;
		color: var(--base-color) !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.split-section__visual {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		min-height: 100% !important;
		background-image: url(../img/bg_02.png) !important;
		background-position: center !important;
		background-size: cover !important;
		background-attachment: scroll !important;
	}

	.split-section__visual::before {
		display: block !important;
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, .38);
		content: "";
	}

	.split-section__heading {
		position: relative;
		z-index: 1;
		width: 100%;
		padding: 50px !important;
		text-align: left !important;
	}

	.split-section__heading h2 {
		font-size: 30px !important;
		text-align: left !important;
	}

	.split-section__body {
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		padding: 50px !important;
	}

	.split-section__list {
		width: 100% !important;
		max-width: 600px !important;
	}
}



/* --------------------------------------------------
   SECTION：お問い合わせ2
-------------------------------------------------- */

.contact-sec {
	padding: clamp(70px, 8vw, 100px) 0;
	background: #c91d2e;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100%;
    background-image: url(../img/bg_03.png);	
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

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

	.contact-sec {
		background-image: url(../img/bg_03sp.png);	
	}
}

.contact-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .38);
}

@media screen and (max-width: 968px) {
	.contact-sec {
		min-height: 360px;
		background-attachment: scroll;
	}
}

.contact-sec__inner {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(40px, 7vw, 90px);
	align-items: center;
}

.contact-sec__en {
	margin-bottom: 16px;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
}

.contact-sec h2 {
	margin-bottom: 20px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 700;
	line-height: 1.5;
}

.contact-sec__head > p:last-child {
	color: rgba(255, 255, 255, .76);
	font-size: 14px;
	line-height: 1.9;
}

.contact-sec__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-tel,
.contact-mail {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition: opacity .2s ease;
}

.contact-tel:hover,
.contact-mail:hover {
	filter: none;
	opacity: .84;
}

.contact-tel {
	flex-direction: column;
	min-height: 98px;
	background: #fff;
	color: #202225;
}

.contact-tel span {
	font-size: 11px;
	font-weight: 700;
}

.contact-tel strong {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(28px, 3vw, 36px);
	letter-spacing: .035em;
}

.contact-mail {
	min-height: 52px;
	border: 1px solid rgba(255, 255, 255, .55);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.contact-sec__inner {
		grid-template-columns: 1fr;
	}
}

/* 印刷設定 */

@media print {

	.contact-sec {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		min-height: 0 !important;
		padding: 60px 0 !important;
		background-color: #c91d2e !important;
		background-image: url(../img/bg_03.png) !important;
		background-position: center !important;
		background-size: cover !important;
		background-attachment: scroll !important;
		color: #fff !important;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.contact-sec::before {
		display: block !important;
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, .38) !important;
		content: "";
	}

	.contact-sec__inner {
		position: relative;
		z-index: 1;
		display: grid !important;
		grid-template-columns: 1.15fr .85fr !important;
		gap: 60px !important;
		align-items: center !important;
	}

	.contact-sec__en {
		margin-bottom: 16px !important;
		font-size: 12px !important;
	}

	.contact-sec h2 {
		margin-bottom: 20px !important;
		font-size: 32px !important;
	}

	.contact-sec__head > p:last-child {
		font-size: 14px !important;
	}

	.contact-sec__body {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
	}

	.contact-tel {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 98px !important;
		background: #fff !important;
		color: #202225 !important;
	}

	.contact-tel strong {
		font-size: 32px !important;
	}

	.contact-mail {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 52px !important;
		border: 1px solid rgba(255, 255, 255, .55) !important;
		color: #fff !important;
	}
}



/* --------------------------------------------------
   SECTION：AREA
-------------------------------------------------- */

.area-sec {
	padding: var(--v-space) 0;
	background: var(--base-color);	
    background-image: url(../img/bg_04.png);
    background-position: top;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .area-sec {
        background-image: url(../img/bg_04sp.png);
        background-position: center;
    }
}


/* ===== PARTS：対応エリア・車両 ===== */
.area-layout {
	display: grid;
	grid-template-columns: 1.25fr .85fr;
	gap: clamp(35px, 6vw, 60px);
	align-items: center;
}

.area-layout__main {
	padding-left: clamp(20px, 4vw, 56px);
}

.area-layout__lead {
	margin-bottom: 22px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(19px, 2.1vw, 26px);
	font-weight: 700;
	line-height: 1.8;
}

.area-layout__main > p:last-child {
	color: #6f7278;
	font-size: 15px;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.area-layout {
		grid-template-columns: 1fr;
	}
}

/* ===== PARTS：料金・荷台サイズ ===== */

.vehicle-box {
    padding: clamp(30px, 4vw, 48px) clamp(20px, 4vw, 48px) 15px clamp(20px, 4vw, 48px);
    background: var(--accent-color1);
    border-top: 4px solid var(--accent-color2);
}

.vehicle-box__label {
	margin-bottom: 8px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
}

.vehicle-box h3 {
	margin-bottom: 28px;
	font-size: clamp(20px, 2vw, 25px);
}

.vehicle-box__item {
	padding: 20px 0;
	border-top: 1px solid #d8d9da;
}

.vehicle-box__title {
	margin-bottom: 6px;
	color: #6e7177;
	font-size: 12px;
	font-weight: 700;
}

.vehicle-box__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-weight: 700;
}

.vehicle-box__price strong {
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(38px, 4vw, 52px);
	line-height: 1.2;
}

.vehicle-box__price span {
	font-size: 15px;
}

.vehicle-box__note {
	margin-top: 4px;
	color: #6e7177;
	font-size: 12px;
}

.vehicle-box__size {
	font-weight: 700;
	line-height: 1.8;
	font-size: clamp(12px, 1.4vw, 14px);
}

.vehicle-box__size strong {
	margin: 0 2px;
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
}

.vehicle-box__value {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-weight: 700;
}

.vehicle-box__value strong {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(38px, 4vw, 52px);
	line-height: 1.2;
}

.vehicle-box__value span {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}





/* --------------------------------------------------
   SECTION：FAQ
-------------------------------------------------- */

.faq_sec1 {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background: #fafbfa;
}

.faq2 {
	border-top: 1px solid #e5e9e5;
}

.faqBlock {
	padding: 28px 0;
	border-bottom: 1px solid #e5e9e5;
}

.faqItem {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	align-items: flex-start;
}

.faqItem + .faqItem {
	margin-top: 18px;
}

.faqItem .label,
.faqItem .labelA {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.faqItem .label {
	background: var(--main-color);
	color: #fff;
}

.faqItem .labelA {
	border: 1px solid #d8ddd8;
	background: #fff;
	color: #7e837e;
}

.faq2 p {
	margin: 0;
	line-height: 1.9;
}

.faq2 p.b {
	padding-top: 3px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(17px, 1.6vw, 19px);
	font-weight: 700;
	line-height: 1.7;
}


/* --------------------------------------------------
   SECTION：会社案内
-------------------------------------------------- */

.info_sec1 {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background: #fff;
}

.bg_b {
	padding: clamp(26px, 4vw, 44px);
	border: 1px solid #e5e9e5;
	background: #fff;
}

.info-table {
	table-layout: fixed;
}

.info1,
.info2 {
	padding: 16px 10px;
	border-bottom: 1px solid #e5e9e5;
	line-height: 1.7;
	vertical-align: top;
}

.info1 {
	width: 9em;
	color: #666b66;
	font-size: 14px;
	font-weight: 700;
}

.info2 {
	font-size: 16px;
}

.info__item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.info-img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.info-img figcaption {
	margin-top: 9px;
	color: #7d827d;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.info__item {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px 18px;
	}

	.info1,
	.info2 {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.info1 {
		padding-bottom: 4px;
		border-bottom: 0;
	}

	.info2 {
		padding-top: 0;
	}
}

/* --------------------------------------------------
   SECTION：フルワイドレイアウト
-------------------------------------------------- */

/* ===== 片側フルブリード ===== */

.wide-imgtext {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
	align-items: center;
	gap: clamp(48px, 6vw, 96px);
}

.wide-imgtext__img {
	min-height: clamp(440px, 48vw, 660px);
}

.wide-imgtext__img img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.wide-imgtext__body {
	width: min(84%, 500px);
	padding-right: max(4vw, calc((100vw - 1228px) / 2));
}

.wide-imgtext__body > p {
	color: #6f746f;
	font-size: clamp(16px, 1.45vw, 18px);
	line-height: 2;
}

/* ===== カード ===== */

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.feature-card {
	padding: clamp(30px, 3.6vw, 44px);
	background: #fff;
	border: 1px solid #e5e9e5;
}

.feature-card__num {
	margin-bottom: 34px;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .12em;
}

.feature-card h3 {
	margin-bottom: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(20px, 1.8vw, 25px);
	font-weight: 700;
	letter-spacing: .05em;
}

.feature-card p:not(.feature-card__num) {
	color: #6f746f;
	font-size: 16px;
}

/* ===== 完全フルワイド ===== */

.fullwide-visual {
	position: relative;
	min-height: clamp(520px, 54vw, 720px);
	overflow: hidden;
	background: #1e261f;
}

.fullwide-visual > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .48;
}

.fullwide-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 26, 17, .74) 0%, rgba(15, 26, 17, .36) 55%, rgba(15, 26, 17, .12) 100%);
}

.fullwide-visual__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: inherit;
	color: #fff;
}

.fullwide-visual__body > * {
	max-width: 660px;
}

.fullwide-visual__label {
	margin-bottom: 16px;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .18em;
}

.fullwide-visual h3 {
	margin-bottom: 24px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .05em;
}

.fullwide-visual__body > p:last-child {
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 2;
}

@media screen and (max-width: 968px) {
	.wide-imgtext {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.wide-imgtext__img {
		width: 92%;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.wide-imgtext__img img {
		min-height: 0;
	}

	.wide-imgtext__body {
		width: min(92%, 780px);
		margin: auto;
		padding-right: 0;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 568px) {
	.wide-imgtext__img {
		width: 94%;
		aspect-ratio: 4 / 3;
	}

	.feature-card {
		padding: 28px 24px;
	}

	.fullwide-visual {
		min-height: 560px;
	}

	.fullwide-visual::after {
		background: rgba(15, 26, 17, .58);
	}
}
