/* ============================
	common
============================ */

#page-intro {
	text-align: center;
	font-size: 2.0rem;
}

#page-intro p {
	margin: 0;
}

@media screen and (max-width: 767px) {
	#page-intro {
		text-align: left;
		font-size: 1.8rem;
	}
}


/* ============================
	Our Commitment
============================ */

#our-commitment #page-mv {
	background-image: url('../images/page/our-commitment/commitment_mv.jpg');
}

/* philosophy */

#philosophy .image-text-item {
	align-items: flex-start;
}

/* F-CON */

.merit-wrap {
	text-align: center;
}

.merit-wrap .img-box {
	max-width: 200px;
	aspect-ratio: 1/1;
	border-radius: 100%;
	background: var(--color-bg-gray);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
}

.merit-wrap p {
	margin: 0;
}

@media screen and (min-width: 768px) {
	#philosophy .image-text-item .txt-box {
		margin-top: 100px;
	}

	#philosophy .image-text-item .img-box {
		width: 40%;
		margin-right: unset;
	}
}

@media screen and (max-width: 767px) {
	.merit-wrap .img-box {
		margin-bottom: 20px;
	}
}

/* ============================
	Service
============================ */

#service #page-mv {
	background-image: url('../images/page/service/service_mv.jpg');
}

.detail-box {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 20px;
	background: var(--color-bg-gray);
	border-radius: 5px;
	padding: 40px;
}

.detail-box li {
	padding-left: 25px;
	position: relative;
}

.detail-box li::before {
	content: '';
	display: block;
	width: 12px;
	height: 8px;
	border-width: 2px;
	border-style: solid;
	border-color: transparent transparent var(--color-gray) var(--color-gray);
	transform: rotate(-45deg);
	position: absolute;
	top: 8px;
	left: 0;
}

#renovation .list-box {
	background: var(--color-bg-gray);
}

#renovation .list-box .ttl {
	font-size: 2.0rem;
	text-align: left;
}

.works-item + .works-item {
	margin-top: 100px;
}

.works-item .img-wrap {
	margin-bottom: 50px;
	flex-wrap: nowrap;
	gap: 1%;
}

.works-item .txt-box .ttl-wrap {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.works-item .txt-box .ttl-wrap .ttl {
	margin: 0;
}

.works-item .txt-box .ttl-wrap .cat {
	padding: 3px 10px;
	background: var(--color-green);
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	border-radius: 2px;
}

@media screen and (max-width: 767px) {
	.detail-box {
		grid-template-columns: auto;
		grid-template-rows: auto;
		grid-row-gap: 5px;
		padding: 30px 20px;
	}

	.works-item + .works-item {
		margin-top: 60px;
	}

	.works-item .img-wrap {
		margin-bottom: 30px;
	}

	.works-item .txt-box .ttl-wrap {
		margin-bottom: 15px;
	}
}


/* ============================
	Architectural Drafting
============================ */

#architectural-drafting #page-mv {
	background-image: url('../images/page/architectural-drafting/architectural_mv.jpg');
}

.worries-box {
	background: var(--color-bg-gray);
	border-radius: 5px;
	padding: 50px 40px;
	margin-bottom: 120px;
	text-align: center;
	position: relative;
}

.worries-box::before {
	content: url('../images/page/architectural-drafting/arrow_down.png');
	display: block;
	position: absolute;
	bottom: -95px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0;
}

.worries-box .inner {
	display: inline-block;
	text-align: left;
}

.worries-box li {
	padding-left: 45px;
	font-size: 2.0rem;
	position: relative;
}

.worries-box li::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: var(--color-gray);
	position: absolute;
	top: 4px;
	left: 0;
}

.worries-box li::after {
	content: '';
	display: block;
	width: 12px;
	height: 8px;
	border-width: 2px;
	border-style: solid;
	border-color: transparent transparent var(--color-brown) var(--color-brown);
	transform: rotate(-45deg);
	position: absolute;
	top: 13px;
	left: 8px;
}

.worries-box li + li {
	margin-top: 30px;
}

#worries .large-txt {
	text-align: center;
}

#strengths .list-box p {
	text-align: center;
}

#other .image-text-item {
	align-items: flex-start;
}

#other .cta-box p {
	font-size: 2.0rem;
}

@media screen and (min-width: 768px) {
	#strengths .column-2 {
		gap: 10px 1%;
	}

	#strengths .column-2 .item {
		width: 49.5%;
	}

	#other .image-text-item .img-box {
		width: 38%;
	}
}

@media screen and (max-width: 767px) {
	.worries-box {
		padding: 30px 20px;
		margin-bottom: 80px;
	}

	.worries-box::before {
		bottom: -70px;
	}

	.worries-box li {
		font-size: 1.8rem;
		padding-left: 35px;
	}

	.worries-box li + li {
		margin-top: 15px;
	}

	.worries-box li::before {
		width: 25px;
		height: 25px;
	}

	.worries-box li::after {
		top: 11px;
		left: 6px;
	}

	#other .cta-box p {
		font-size: 1.8rem;
		text-align: left;
	}
}


/* ============================
	Contact
============================ */

#contact-tel .tel-box {
	padding: 40px;
	background: var(--color-bg-gray);
	border-radius: 5px;
	text-align: center;
}

#contact-tel .tel-box .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 30px;
	align-items: center;
	margin-top: 20px;
}

#contact-tel .tel-box .num .tel {
	font-size: 3rem;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	#contact-tel .tel-box {
		padding: 30px 20px;
	}
}
