@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;
}

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

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

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

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

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



.intro-heading {
	font-size: 4.1rem;
	font-weight: bold;
	margin-bottom: 15px;
	line-height: 1.2;
	font-feature-settings: "palt";
}

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


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

.intro-text p {
	font-size: 1.6rem;
	line-height: 1.7;
	font-feature-settings: "palt";
	width: 97%;
}

@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 .blue-bg {
		padding: 5px;
		margin-bottom: 5px;
		line-height: 2.3;
	}

	.contents {
		padding-top: 155px;
	}

	.intro .blue-bg {
		padding: 5px;
		margin-bottom: 5px;
		line-height: 2.3;
		font-feature-settings: "palt";
		font-size: 1.6rem;
	}

}

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

@media screen and (max-width: 480px) {
	.intro .blue-bg {
		font-size: 1.5rem;
		font-weight: bold;
	}

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

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

/*-------------------------------------------
大徳の圧送工事について
-------------------------------------------*/
section.about {
	padding: 110px 0;
	margin-bottom: 72px;
}

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

.about .wrapper {
	background-color: transparent;
}

.about-intro-text {
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 68px;
	text-align: center;
}

.about-content-wrap {
	background-color: #fff;
	border-radius: 20px;
}

.about-text {
	width: calc(50% - 30px);
}

.about-main-text {
	margin-bottom: 45px;
}

.about-subtit {
	font-size: 2.3rem;
	font-weight: bold;
	color: #000e35;
}

.about .btn {
	font-size: 1.5rem;
	border-radius: 50px;
	font-weight: bold;
	padding: 11px 20px;
	gap: 10px;
	/*transition: var(--transition-normal);*/
}

.about a:hover.btn {
	opacity: 0.7;

}



.btn-icon-arrow {
	transition: var(--transition-normal);
}

.about-contents-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 35px 35px;
	margin-bottom: 35px;
}

.about-contents-inner .flex {
	gap: 30px;
}

.about-contents-text {
	max-width: 52%;
	width: 100%;
}

.about-contents-ttl {
	font-size: 2.7rem;
	font-weight: bold;
	margin-bottom: 6px;
	margin-top: 3px;
}

.about-contents-main-text {
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 35px;
}

.is-right {
	justify-content: flex-end;
	display: flex;
}

.about-contents-card:nth-child(2) .about-contents-main-text {

	margin-bottom: 60px;
}

.about-contents-card:nth-child(4) .about-contents-main-text {

	margin-bottom: 60px;
}


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

	.about-contents-card {
		padding: 20px 20px;
	}

	.about-contents-main-text {
		font-size: 1.3rem;
		margin-bottom: 5px;
	}

	.about-contents-ttl {
		font-size: 2.0rem;
	}

	span.about-contents-subttl img {
		height: 24px;
	}

	.about .btn {
		font-size: 1.3rem;
		padding: 15px 32px;
	}

	section.about {
		padding: 70px 0 50px;
		margin-bottom: 70px;
	}

}

@media screen and (max-width: 640px) {
	.about-contents-inner .flex {
		flex-direction: column-reverse;
	}

	.about-contents-text {
		max-width: 100%;
		width: 100%;
	}

	.is-right {
		justify-content: flex-start;
		display: flex;
	}

	.about-contents-inner .flex {
		gap: 10px;
	}

	.about .btn {
		font-size: 1.3rem;
		padding: 15px 0px;
		width: 100%;
		margin-top: 15px;
	}

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

	p.about-intro-text {
		text-align: left;
	}

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

	.about-heading {
		font-size: 2.4rem;
	}

	.about-contents-card:nth-child(2) .about-contents-main-text,
	.about-contents-card:nth-child(4) .about-contents-main-text {
		margin-bottom: 0px;
	}

	section.about {
		padding: 30px 0;
	}

	.wrapper {
		padding-bottom: 0px;
	}

	.contents {
		padding-top: 53px;
	}

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

	.about-contents-card {
		padding: 30px 20px 30px;
	}

	.about .btn {
		margin-top: 20px;
	}
}

@media screen and (max-width: 480px) {
	.about-heading {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.about-intro-text {
		font-size: 1.3rem;
		line-height: 1.7;
		margin-bottom: 30px;
		text-align: center;
	}

	section.about {
		margin-bottom: 20px;
	}

	.contents {
		padding-top: 50px;
	}
}