@charset "utf-8";

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

.pc {
	display: block;
}

.sp {
	display: none !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;
}



/*-------------------------------------------
イントロセクション
-------------------------------------------*/
.ttl img {
	display: inline;
}

#plastering p {
	font-size: 1.6rem;
}

.intro .flex.flex--between {
	margin-bottom: 80px;
}

.intro-text {
	width: calc(50% - 55px);
}



.intro-heading {
	font-size: 4.2rem;
	font-weight: bold;
	margin-bottom: 17px;
	line-height: 1.3;
	font-feature-settings: "palt";
}

.intro-subttl-block {
	margin-bottom: 21px;
}


.intro .blue-bg {
	background-color: var(--color-main);
	color: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	padding: 8px 12px 8px 14px;
	margin-bottom: 5px;
	line-height: 2.4;
}

.intro-text p {
	font-size: 1.6rem;
	line-height: 1.7;
}

@media screen and (max-width: 1000px) {
	.intro .flex.flex--between {
		gap: 10px;
	}

	.intro-text {
		width: 60%;
	}

	h2.intro-heading {
		font-size: 3.0rem;
	}
}

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


	.intro-text,
	.intro-image {
		width: 100%;
	}

	.intro-text {
		margin-bottom: 30px;
	}

	.intro .flex.flex--between {
		margin-bottom: 0px;
	}

	section.intro.pad-x {
		margin-bottom: 50px;
	}

	.intro-heading {
		font-size: 3.2rem;
		margin-bottom: 10px;
	}

	.intro-heading br {
		display: none;
	}

	.intro .blue-bg {
		padding: 5px;
		margin-bottom: 5px;
		line-height: 2.3;
	}

	.intro-text p br {
		display: none;
	}

	.intro-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		aspect-ratio: 12 / 7;
	}

	.intro .blue-bg {
		font-size: 1.8rem;
		font-feature-settings: "palt";
	}
}

@media screen and (max-width: 640px) {
	.intro .flex.flex--between {
		flex-direction: column;
	}
}

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

	.intro .blue-bg {
		font-size: 1.5rem;
		font-weight: bold;
		font-feature-settings: normal;
	}

	#pumping p {
		font-size: 1.3rem;
	}

	.intro-heading br {
		display: block;
	}

	h2.intro-heading {
		margin-bottom: 10px;
		font-size: 2.2rem;
	}

	.intro-text {
		margin-bottom: 0px;
	}

	.intro-subttl-block {
		margin-bottom: 10px;
	}

	.intro .flex.flex--between {
		gap: 16px;
	}
}

/*-------------------------------------------
圧送職人のキャリアパス
-------------------------------------------*/

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

.career .wrapper {
	background-color: #fff;
	margin-top: 0;
	padding-top: 60px;
}


.career-intro-text {
	font-size: 1.6rem;
	line-height: 1.85;
	margin-bottom: 84px;
	text-align: left;
	max-width: 70%;
	margin-inline: auto;
}


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




.flow-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 70px;
	padding-bottom: 67px;
	position: relative;
}

.flow-item:after {
	content: "";
	display: block;
	border-bottom: 1px solid #cccccc;
	width: 90%;
	position: absolute;
	bottom: 0px;
	margin-left: auto;
	right: 0;
	left: 0;
}



.flow-step {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-right: 20px;
}


.flow-step::after {
	content: "";
	position: absolute;
	top: 68px;
	bottom: -424%;
	left: 0%;
	transform: translateX(-50%);
	border-left: 2px solid #36a3e2;
}

.step02 .flow-step::after {
	border-left: 2px solid #208ce0;
	top: -2px;
	bottom: -430%;
}

.step03 .flow-step::after {
	border-left: 2px solid #1a4db6;
	top: 44px;
	bottom: -410%;
}

.step04 .flow-step::after {
	border-left: 2px solid #113682;
	top: 60px;
	bottom: -470%;
}

.step05 .flow-step::after {
	/*border-left: none;*/
	border-left: 2px solid #ffffff;
	bottom: -150%;
}

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

.flow-step img {
	position: relative;
	z-index: 1;
	transform: translateX(-11px);
}

.flow-body {
	flex: 1 1 0;
	min-width: 0;
}

.flow-item-heading {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 22px;
	color: #000;
	padding-bottom: 12px;
	position: relative;
}

.flow-item-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right,
			#000 0%,
			#000 16%,
			#bbbbbb 16%,
			#bbbbbb 100%);
}

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

.flow-image {
	flex: 0 0 221px;
	margin-right: 36px;
}

.flow-image img {
	margin-top: -23px;
}

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

.step03 .flow-image {
	flex: 0 0 238px;
	margin-right: 19px;
}

.step05 .flow-step {
	margin-top: 37px;
}

.step03 .flow-step {
	margin-top: 20px;
}

.step02 .flow-step {
	margin-top: 0px;
}

.step03 .flow-image img {
	margin-left: -12px;
}

.flow-item:last-child:after {
	border-bottom: none;
}


.license-block.flex {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.license-block.flex {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 14px 21px;
	gap: 0px;
	border-radius: 5px;
}

.license-block.flex::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(/img/bk_gray.jpg);
	background-repeat: repeat;
	opacity: 0.8;
	pointer-events: none;
	z-index: -1;
}

.license-heading span {
	font-size: 1.3rem;
	font-weight: bold;
}

.license-list span {
	font-size: 1.3rem;
}

.license-list.flex {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #c6c6c6;
}


.flow-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding-bottom: 67px;
}

.flow-main {
	display: flex;
	align-items: flex-end;
	flex: 1;
}

.step05 .flow-item-text {
	margin-bottom: 0;
}

.license-heading span img {
	margin-top: 3px;
}

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

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

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

	.flow-image {
		flex-basis: 180px;
		align-self: center;
	}

	.step01 .flow-step,
	.step02 .flow-step,
	.step03 .flow-step,
	.step04 .flow-step,
	.step05 .flow-step {
		margin-top: 0px;
	}

	.flow-step::after {
		top: 68px;
		bottom: -570%;
	}

	.step02 .flow-step::after {
		top: 60px;
		bottom: -540%;
	}

	.step03 .flow-step::after {
		top: 44px;
		bottom: -510%;
	}

	.step04 .flow-step::after {
		top: 60px;
		bottom: -490%;
	}

	.step05 .flow-step::after {
		top: 60px;
		bottom: -200%;
	}


}

@media screen and (max-width: 770px) {
	.step03 .flow-step::after {
		bottom: -540%;
	}
}


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

	.sp {
		display: block !important;
	}

	.flow-triangle {
		display: block;
		width: 0;
		height: 0;
		margin: 40px auto 50px;
		border-left: 80px solid transparent;
		border-right: 80px solid transparent;
		border-top: 50px solid #ccc;
	}

	.triangle-01 {
		border-top-color: #36A3E2;
	}

	.triangle-02 {
		border-top-color: #208CE0;
	}

	.triangle-03 {
		border-top-color: #1A4DB6;
	}

	.triangle-04 {
		border-top-color: #113682;
	}

	.career-heading {
		font-size: 3.0rem;
		font-weight: bold;
		margin-bottom: 19px;
		text-align: center;
	}

	.career-intro-text {
		max-width: 100%;
		margin-bottom: 40px;
		line-height: 1.7;
	}

	.flow-list-item img {
		max-width: 70%;
	}

	.flow-list-item {
		display: flex;
		justify-content: center;
	}
}

@media screen and (max-width: 480px) {
	.career-intro-text {
		max-width: 100%;
		font-size: 1.3rem;
	}

	.career .wrapper {
		padding-top: 0px;
	}

	.flow-list-item img {
		max-width: 100%;
	}

	.flow-triangle {
		margin: 20px auto 30px;
		border-left: 40px solid transparent;
		border-right: 40px solid transparent;
		border-top: 30px solid #ccc;
	}

	.flow-list.sp {
		margin-bottom: 0px;
	}

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

	.triangle-01 {
		border-top-color: #36A3E2;
	}

	.triangle-02 {
		border-top-color: #208CE0;
	}

	.triangle-03 {
		border-top-color: #1A4DB6;
	}

	.triangle-04 {
		border-top-color: #113682;
	}
}