@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  汎用
**************************************************
--------------------------------------------------*/
.heading_box {
	text-align: center;
}

.heading_box .sub {
	font-family: "Roboto", sans-serif;
	font-size: 16.0rem;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: var(--green-1);
}

.heading_box .main {
	font-size: 5.6rem;
	font-weight: 800;
	line-height: 1.78;
}

/* SP */
@media screen and (max-width: 767px) {
	.heading_box .sub {
		font-size: 5.0rem;
	}

	.heading_box .main {
		font-size: 2.4rem;
	}
}

.box_1 {
	position: relative;
	padding-block: 104px 80px;
	background: var(--gray-2);
}

.box_1 .heading_box {
	position: absolute;
	top: -215px;
	left: 50%;
	transform: translateX(-50%);
}

.box_1 .text_1 {
	text-align: center;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.box_1 .text_2 {
	margin-top: 40px;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 2;
}

/* SP */
@media screen and (max-width: 767px) {
	.box_1 {
		padding-block: 64px;
	}

	.box_1 .heading_box {
		top: -72px;
	}

	.box_1 .text_1 {
		font-size: 2.0rem;
		font-weight: 700;
		line-height: 1.6;
	}

	.box_1 .text_2 {
		margin-top: 24px;
		text-align: left;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.875;
	}
}


/*--------------------------------------------------
**************************************************
  .introduction_box
**************************************************
--------------------------------------------------*/
.introduction_box {
	padding-block: 120px;
	background-color: var(--green-1);
	text-align: center;
	color: var(--white-1);
}

.introduction_box .text_1 {
	font-size: 7.0rem;
	font-weight: 800;
	line-height: 1.7;
}

.introduction_box .text_2 {
	width: min(100%, 880px);
	margin: 64px auto 0;
	text-align: left;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.9;
}

.introduction_box .image {
	margin-top: 64px;
}

/* SP */
@media screen and (max-width: 767px) {
	.introduction_box {
		padding-block: 64px 20px;
	}

	.introduction_box .text_1 {
		font-size: 2.8rem;
	}

	.introduction_box .text_2 {
		margin-top: 32px;
		font-size: 1.6rem;
		line-height: 2;
	}

	.introduction_box .image {
		margin-top: 0;
	}
}/* End SP */


/*--------------------------------------------------
**************************************************
  .reason_box（３つの選ばれる理由）
**************************************************
--------------------------------------------------*/
.reason_box {
	width: min(var(--content-pc-width-2), var(--content-sp-width-1));
	margin-inline: auto;
	padding-top: 80px;
}

.reason_box .text_1 {
	margin-top: 64px;
	text-align: center;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.reason_box .text_2 {
	margin-top: 40px;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 2;
}

.reason_box > ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 45px;
	width: 100%;
	margin-top: 64px;
}

.reason_box > ol li {
	position: relative;
	width: min(100%, 540px);
}

.reason_box > ol .count {
	display: inline-block;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: rgba(29, 29, 29, 0.4);
}

.reason_box > ol .count .num {
	font-size: 9.6rem;
}

.reason_box > ol .catch {
	position: absolute;
	top: 20px;
	right: 32px;
	z-index: 1;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 8px;
}

.reason_box > ol .catch .tategaki {
	background: var(--white-1);
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.3;
}

.reason_box > ol .catch .tategaki:nth-child(1),
.reason_box > ol > li:nth-child(2) .catch .tategaki:nth-child(2) {
	padding-inline: 5px;
}

.reason_box > ol > li:nth-child(1) .catch .tategaki:nth-child(2) {
	padding-bottom: 5px;
}

.reason_box > ol .catch .tategaki .accent {
	display: inline-block;
	margin-top: 5px;
	padding-inline: 5px;
	background: var(--black-1);
	color: var(--green-2);
}

.reason_box > ol > li:nth-child(1) .catch .tategaki:nth-child(2) .accent {
	margin-inline: 0 5px;
}

.reason_box > ol > li:nth-child(2) .catch .tategaki:nth-child(1) .accent {
	margin-bottom: 5px;
}

.reason_box > ol > li:nth-child(3) .catch .tategaki:nth-child(2) .accent {
	margin-top: 0;
}

.reason_box > ol .image {
	aspect-ratio: 540 / 600;
}

.reason_box > ol .list {
	list-style-type: disc;
	list-style-position: outside;
	margin-top: 24px;
	padding-left: 1em;
}

.reason_box > ol .list li {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.55;
}

.reason_box > ol .list li + li {
	margin-top: 8px;
}

/* SP */
@media screen and (max-width: 767px) {
	.reason_box {
		padding-block: 64px 120px;
	}

	.reason_box .text_1 {
		margin-top: 32px;
		font-size: 2.0rem;
		font-weight: 700;
		line-height: 1.6;
	}

	.reason_box .text_2 {
		margin-top: 24px;
		text-align: left;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.875;
	}

	.reason_box > ol {
		gap: 40px;
	}

	.reason_box > ol .count {
		font-size: 1.4rem;
	}

	.reason_box > ol .count .num {
		font-size: 6.0rem;
	}

	.reason_box > ol .catch {
		position: absolute;
		top: 20px;
		right: 16px;
	}

	.reason_box > ol .catch .tategaki {
		font-size: 2.8rem;
		line-height: 1.3;
	}

	.reason_box > ol .list {
		margin-top: 16px;
	}

	.reason_box > ol .list li {
		font-size: 1.6rem;
		line-height: 1.75;
	}
}


/*--------------------------------------------------
**************************************************
  .comparison_box（他社比較）
**************************************************
--------------------------------------------------*/
.comparison_box {
	margin-top: 360px;
}

.comparison_box table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 80px;
	text-align: center;
}

.comparison_box table th {
	position: relative;
	padding-bottom: 55px;
}

.comparison_box table th:nth-child(2) {
	padding-inline: 8px;
}

.comparison_box table th span {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: 24px;
	font-weight: 700;
}

.comparison_box table th:nth-child(2) span {
	left: 8px; right: 8px;
	background: var(--black-1);
	font-size: 2.2rem;
	color: var(--green-2);
}

.comparison_box table th:nth-child(3) span {
	background: var(--white-1);
	font-size: 1.8rem;
}

.comparison_box table td {
	border-bottom: var(--black-1) 1px solid;
	vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 500;
}

.comparison_box table td:nth-child(1) {
	font-weight: 700;
}

.comparison_box table td:nth-child(2) {
	padding: 8px;
}

.comparison_box table td:nth-child(2) span {
	display: block;
	padding: 12px 5px;
	background: var(--green-3);
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--green-1);
}

/* SP */
@media screen and (max-width: 767px) {
	.comparison_box {
		margin-top: 0;
	}

	.comparison_box table {
		margin-top: 64px;
	}

	.comparison_box table th:nth-child(2) {
		width: 53%;
		padding-inline: 4px;
	}

	.comparison_box table th:nth-child(2) span {
		padding-block: 18px;
		font-size: 1.6rem;
	}

	.comparison_box table th:nth-child(3) span {
		font-size: 1.3rem;
	}

	.comparison_box table td {
		font-size: 1.3rem;
	}

	.comparison_box table td:nth-child(1) {
		font-size: 1.4rem;
	}

	.comparison_box table td:nth-child(2) span {
		font-size: 1.5rem;
	}
}


/*--------------------------------------------------
**************************************************
  .voice_box（導入企業様の声）
**************************************************
--------------------------------------------------*/
.voice_box {
	margin-top: 360px;
	padding-bottom: 120px;
}

.voice_box .list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: min(var(--content-pc-width-2), var(--content-sp-width-1));
	margin: 80px auto 0;
}

.voice_box .list .item {
	width: 414px;
	padding: 56px 40px;
	background: var(--white-1);
}

.voice_box .list .item .status {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.voice_box .list .item .status span:nth-child(1) {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--green-1);
}

.voice_box .list .item .status span:nth-child(2) {
	padding: 8px;
	background: var(--green-3);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--green-1);
}

.voice_box .list .item .title {
	margin-top: 24px;
	text-align: center;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--green-1);
}

.voice_box .list .item .detail p {
	margin-top: 24px;
	font-weight: 500;
	line-height: 2;
}

/* SP */
@media screen and (max-width: 767px) {
	.voice_box {
		margin-top: 150px;
	}

	.voice_box .list {
		position: relative;
		overflow: visible;
		width: 100%;
		padding-inline: 10%;
	}

	.voice_box .list .swiper-wrapper {
		padding: 0;
	}

	.voice_box .list .item {
		width: 100%;
		padding: 40px 24px;
	}

	.voice_box .list .swiper-button-prev,
	.voice_box .list .swiper-button-next {
		position: absolute;
		top: 45%;
		/* transform: translateY(-50%); */
		width: 36px;
		height: 36px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		z-index: 10;
	}

	.voice_box .list .swiper-button-prev {
		left: 5%;
		background-image: url(../imgs/common/arrow_4.svg);
	}

	.voice_box .list .swiper-button-next {
		right: 5%;
		background-image: url(../imgs/common/arrow_3.svg);
	}

	/* Swiper のデフォルト矢印アイコンを消す */
	.voice_box .list .swiper-button-next::after,
	.voice_box .list .swiper-button-prev::after {
		display: none;
	}

	.voice_box .list .swiper-pagination {
		position: static;
		margin-top: 16px;
		text-align: center;
	}

	.voice_box .list .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		opacity: 1;
		background: #d9d9d9;
	}

	.voice_box .list .swiper-pagination-bullet-active {
		background: var(--green-1);
	}
}
