@charset "utf-8";

/*-------------------------------------------
utility
-------------------------------------------*/
img {
	display: block;
	max-width: 100%;
	height: auto;
}

.pc {
	display: block;
}

.sp {
	display: none !important;
}

.pc-tab {
	display: block;
}

.tab-pc {
	display: none !important;
}

@media screen and (max-width: 768px) {
	.pc-tab {
		display: none !important;
	}

	.tab-pc {
		display: block !important;
	}
}

@media screen and (max-width: 640px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

/*------------------------------------------
  Display / Layout
------------------------------------------*/
.flex {
	display: flex;
}

.flex--center {
	justify-content: center;
	align-items: center;
}

.flex--between {
	justify-content: space-between;
}

.width-100 {
	width: 100%;
}

#vehicle a:visited {
	background-color: var(--color-accent);
}

/*------------------------------------------
  Container
------------------------------------------*/
.max-width {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1000px) {
	.pad-x {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/*-------------------------------------------
btn
-------------------------------------------*/
/* ------------------------------
   ボタン本体
------------------------------ */

.btn {
	/* 変更用変数 */
	--btn-padding-y: 0.75em;
	--btn-padding-x: 1em;
	--btn-font-size: 1.0rem;
	--btn-gap: 0.5em;


	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--btn-gap);

	padding: var(--btn-padding-y) var(--btn-padding-x);
	font-size: var(--btn-font-size);
	line-height: 1;

	border-radius: 4px;
	background: var(--color-accent);
	color: #fff;

	text-decoration: none;
	cursor: pointer;
}

/* ------------------------------
   アイコン
------------------------------ */

.btn-icon {
	display: inline-flex;
	align-items: center;
}

/* SVG / img 共通 */
.btn-icon svg,
.btn-icon img {
	width: 1em;
	height: 1em;
}

/* 矢印アイコンをつける */
.btn-icon-arrow {
	width: 0.5em;
	height: 0.5em;

	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;

	transform: rotate(45deg);
}

/* ------------------------------
   テキスト
------------------------------ */

.btn-label {
	white-space: nowrap;
}


/*-------------------------------------------
base
-------------------------------------------*/
.contents {
	width: auto !important;
	max-width: 1000px;
	padding-top: 153px;
}

.max-width {
	max-width: 1000px;
}

.about-content.odd.flex.flex--between {
	gap: 20px;
}

/*-------------------------------------------
圧送工事とは
-------------------------------------------*/
section.about.pad-x {
	margin-bottom: 158px;
}

.wrapper {
	padding-top: 155px;
}

.subTit_block .ttl {
	display: flex;
	justify-content: center;
}


.about .flex {
	justify-content: space-between;
}

.about .image_block {
	width: 45%;
}

.about .text_wrap {
	width: 50%;
	margin-left: 70px;
}

.about-heading-jp {
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 40px;
}

.about-sub-heading {
	font-size: 2.5rem;
	font-weight: bold;
	font-feature-settings: "palt";
	margin-bottom: 25px;
}

p.about-main-text {
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: 16px;
	font-feature-settings: "palt";
}

.image_wrap {
	width: 46vw;
	margin-left: calc(100% - 47vw);
}

.image_wrap img {
	width: 100vw;
}

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

	.about-sub-heading br {
		display: none;
	}

	.about .text_wrap {
		width: 50%;
		margin-left: 0px;
	}

	.about-heading-jp {
		font-size: 3.0rem;
	}

	.about-sub-heading {
		font-size: 2.0rem;
	}

	p.about-main-text {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.flow-step span {
		background-color: var(--color-main);
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		padding: 5px 8px;
		min-width: 101px;
		text-align: center;
	}
}

@media screen and (max-width: 640px) {
	.wrapper {
		padding-top: 80px;
	}

	.about .flex {
		flex-direction: column-reverse;
	}

	.about .text_wrap {
		width: 100%;
		margin-left: 0px;
	}

	.about-sub-heading br {
		display: block;
	}

	.about .image_block {
		width: 100%;
	}

	.image_wrap {
		width: 100%;
		margin-left: auto;
	}

	.about-sub-heading {
		font-size: 1.8rem;
	}

	p.about-main-text {
		font-size: 1.3rem;
		margin-bottom: 1.3rem;
	}

	.about-heading-jp {
		margin-bottom: 20px;
	}

	.image_wrap {
		margin-top: 10px;
	}

}

@media screen and (max-width: 480px) {
	.wrapper {
		padding-top: 50px;
	}
}

/*-------------------------------------------
なぜ圧送工事が必要なのか
-------------------------------------------*/
section.reason.pad-x {
	background-image: url(/img/bk_gray.jpg);
	margin-bottom: 0px;
	background-repeat: repeat;
	padding-top: 144px;
	padding-bottom: 100px;
}

.reason-heading {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 65px;
}

.reason-heading-intro-text {
	font-size: 1.5rem;
	line-height: 1.7;
	max-width: 80%;
	margin-inline: auto;
	margin-bottom: 70px;
}




section#reason {
	position: relative;
	margin: 67px 0 160px 0;
	padding: 100px 0px 100px 0px;
}

section#reason::after {
	background-color: #f5f6f9;
	position: absolute;
	z-index: -1;
	width: 100vw;
	content: "";
	height: 85%;
	top: 229px;
	display: block;
}

.reason_title_block {
	margin-bottom: 130px;
	position: relative;
}

.title_text {
	position: absolute;
	bottom: 8;
	left: 0;
}

.reason_heading_jp {
	font-size: 5.0rem;
	font-feature-settings: "palt";
}

.reason_heading_eng {
	display: block;
	padding-left: 10px;
}

.reason_container.flex {
	justify-content: space-between;
	align-items: flex-start;
	/*段を付ける*/
}

.reason_contents {
	width: calc(33% - 10px);
	background-color: #fff;
	position: relative;
}

.reason_contents_wrap {
	padding: 45px 14px 76px;
}

.reason02 {
	margin-top: 55px;
}

.reason03 {
	margin-top: 157px;
}

.num1,
.num2,
.num3 {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}



.reason_image_block {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;

}

.reason_heading h3 {
	font-size: 1.8rem;
	font-feature-settings: "palt";
	text-align: center;
	font-weight: bold;
	margin-bottom: 12px;
}

.reason03 .reason_heading h3 {
	font-size: 1.75rem;
}

.reason_text_block p {
	font-size: 1.5rem;
}

.reason_heading::before {
	content: "";
	display: flex;
	background-color: var(--color-main);
	height: 4px;
	width: 54px;
	margin: 20px 0 23px 0;
	justify-content: center;
	margin-inline: auto;
}

.reason_contents::after {
	content: "";
	position: absolute;
	right: 4px;
	bottom: 4px;
	width: 0;
	height: 0;
	border-right: 18px solid var(--color-accent);
	border-top: 18px solid transparent;
}

@media screen and (max-width: 1000px) {
	.wid_1000 {
		display: none;
	}

	.reason_heading_jp {
		font-size: 4.0rem;
	}
}

@media screen and (max-width: 768px) {
	section#reason {
		position: relative;
		margin: 70px 0px;
		padding: 70px 0px;
	}

	.reason_container.flex {
		flex-direction: column;
	}

	.reason_contents {
		width: 100%;
	}

	.title_text {
		bottom: 0;
	}

	.reason_heading_jp {
		font-size: 3.5rem;
	}

	.reason02,
	.reason03 {
		margin-top: initial;

	}

	.reason01,
	.reason02,
	.reason03 {
		margin-bottom: 60px;
	}

	.reason-heading-intro-text {
		max-width: 100%;

	}

	.reason_image_block img {
		width: 100%;
	}

	.reason_contents_wrap {
		padding: 45px 20px 76px;
	}

	.reason01,
	.reason02,
	.reason03 {
		margin-bottom: 80px;
	}

	section.about.pad-x {
		margin-bottom: 70px;
	}

	section.reason.pad-x {
		padding-top: 80px;
		padding-bottom: 50px;
	}

	.reason-heading {
		margin-bottom: 40px;
		font-size: 3.0rem;

	}
}

@media screen and (max-width: 640px) {
	.title_text {
		bottom: initial;
	}
}

@media screen and (max-width: 480px) {
	.reason_heading h3 {
		font-size: 1.7rem;
	}

	.reason_text_block p {
		font-size: 1.3rem;
	}

	.reason_contents_wrap {
		padding: 30px 20px 40px;
	}

	section#reason::after {
		height: 95%;
		top: 100px;
	}



	section#reason {
		padding: 70px 0px 0px 0px;
	}

	.about-heading-jp {
		font-size: 3.0rem;
	}

	.contents {
		padding-top: 50px;
	}

	span.about-heading-eng img {
		width: 50%;
	}

	section.reason.pad-x {
		padding-top: 60px;
		padding-bottom: 10px;
	}

	.reason-heading {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.num1 img,
	.num2 img,
	.num3 img {
		max-width: 17%;
	}

	.wid_1000 {
		display: block;
	}
}



/*-------------------------------------------
圧送工事の流れ
-------------------------------------------*/
.flow {
	padding: 105px 0 0px;
}

.flow-heading {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 85px;
}

.flow-list {
	display: flex;
	flex-direction: column;
}

.flow-item {
	display: flex;
	align-items: flex-start;
	/* column-gap: 1px; */
	margin-bottom: 43px;
	padding-bottom: 58px;
	/*border-bottom: 1px solid #000;*/
	position: relative;
}

.flow-item:after {
	content: "";
	display: block;
	border-bottom: 1px solid #e8eaed;
	width: 92%;
	position: absolute;
	bottom: 0px;
	/* top: 0; */
	/* display: flex; */
	margin-left: auto;
	right: 0;
	left: 0;
}

.flow-item::before {
	content: "";
	position: absolute;
	left: 54%;
	bottom: -7px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #e8eaed;
}

.flow-item:last-child::before {
	content: "";
	display: none;
}



.flow-step {
	position: relative;
	/* flex: 0 0 110px; */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-right: 10px;
}

.flow-step::after {
	content: "";
	position: absolute;
	top: 0px;
	bottom: -206px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 2px dotted var(--color-main);
}

.flow-item:last-child .flow-step::after {
	display: none;
}

.flow-step img {
	position: relative;
	z-index: 1;
	margin-top: -13px;
}

.flow-body {
	flex: 1 1 0;
	min-width: 0;
	/* margin-right: 10px; */
}

.flow-item-heading {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 5px;
	color: var(--color-main);
	font-feature-settings: "palt";
}

.flow-item-text {
	font-size: 1.6rem;
	line-height: 1.59;
	width: 95%;
}

.flow-image {
	flex: 0 0 260px;
}

.flow-image img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 1000px) {
	.flow-item {
		column-gap: 24px;
	}

	.flow-image {
		flex-basis: 240px;
	}

	.flow-item-heading {
		font-size: 2rem;
	}
}

@media screen and (max-width: 768px) {
	.flow {
		padding: 90px 0 100px;
	}

	.flow-heading {
		margin-bottom: 52px;
	}

	.flow-list {
		gap: 28px;
	}

	.flow-item {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 0px;
		padding-left: 0px;
	}

	.flow-step {
		align-self: flex-start;
		flex-basis: auto;
		margin-bottom: 5px;
	}

	.flow-step::after {
		top: 110px;
		bottom: -28px;
	}

	.flow-item-heading {
		font-size: 2.4rem;
		margin-bottom: 5px;
	}

	.flow-body,
	.flow-image {
		width: 100%;
	}

	.flow-image {
		flex-basis: auto;
	}

	.flow-item-text {
		font-size: 1.5rem;
		line-height: 1.7;
		width: 100%;
		margin-bottom: 15px;
	}

	.flow-step::after {
		content: "";
		display: none;
	}

	.flow-item:after {
		width: 100%;
	}

	.flow-heading {
		font-size: 3.0rem;
	}
}

@media screen and (max-width: 480px) {
	.flow {
		padding: 70px 0 0px;
	}

	.flow-heading {
		font-size: 2.6rem;
		margin-bottom: 40px;
	}


	.flow-step::after {
		top: 88px;
	}

	.flow-item-heading {
		font-size: 1.8rem;
	}

	.flow-item-text {
		font-size: 1.3rem;
		line-height: 1.8;
		margin-bottom: 15px;
	}

	.flow-step span {
		background-color: var(--color-main);
		color: #fff;
		font-size: 1.1rem;
		font-weight: bold;
		padding: 4px 4px;
		min-width: 60px;
		text-align: center;
	}

	.flow-item {
		margin-bottom: 35px;
		padding-bottom: 35px;
	}

	.flow-list {
		gap: 0px;
	}

	.reason-heading {
		font-size: 2.6rem;
	}


	.reason-heading-intro-text {
		font-size: 1.3rem;
	}

	.flow-heading {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.flow-item::before {
		left: 50%;
	}
}