/* ============================
	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;
	}
}


/* ============================
	Model House
============================ */

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

#highlights .sec-ttl,
#access .sec-ttl{
	text-align: center;
}
#highlights .sec-ttl .en ,
#standard .sec-ttl .en ,
#access .sec-ttl .en ,
#comfort .sec-ttl .en {
	color: var(--color-green);
}

.modelhouse-intro {
	text-align: center;
}

.modelhouse-intro .sec-ttl {
	font-size: 3.5rem;
	margin-bottom: 30px;
}

.modelhouse-intro .sec-txt {
	margin: 0;
}

.modelhouse-intro .f-con-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--color-green2);
	color: #fff;
	padding: 12px 24px;
	margin-top: 30px;
	font-size: 1.4rem;
	font-weight: var(--weight-bold);
	line-height: 1;
}


.modelhouse-intro .content-box {
	margin-top: 50px;
}

.modelhouse-intro .image-text-item .img-box {
	width: 47%;
	margin: 0;
}

.modelhouse-intro .img-box img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	#page-intro.modelhouse-intro {
		text-align: center;
	}

	.modelhouse-intro .sec-ttl {
		font-size: 2.3rem;
		margin-bottom: 20px;
	}

	.modelhouse-intro .content-box {
		margin-top: 40px;
	}
	.modelhouse-intro .image-text-item .img-box {
		width: 100%;
	}
	.modelhouse-intro .img-box img {
		aspect-ratio: 3/2;
	}
	
}


#living{
	margin-top: 100px;
}
#living .image-text-item {
	align-items: flex-start;
}

#living > .content-width > .content-box:first-child {
	margin-top: 0;
}

#living .sec-ttl {
	margin-bottom: 80px;
}

#living .sec-ttl .en {
	color: var(--color-green);
	margin-bottom: 15px;
}

#living .highlight-box {
	margin-bottom: 30px;
	background: #fff;
	padding: 30px;
}

#living .highlight-box .large-txt {
	margin: 0;
	line-height: 2;
}

#living .highlight-box .large-txt + .large-txt {
	margin-top: 5px;
}

#living .highlight-box .large-num {
	font-size: 4rem;
	color: var(--color-green2);
	line-height: 1;
	font-weight: var(--weight-bold);
}
#living .highlight-box .large-num2 {
	color: var(--color-green);
}
#living .image-text-item.gap-100:nth-child(odd) .img-box{
	margin-right: 0;
	width: 42%;
}
#living .img-box img{
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: contain;
}

#living .txt-box p + p {
	margin-top: 20px;
}

#living .living-box {
	margin-top: 50px;
}

#living .list-box {
	background:none;
	padding: 0;
}
#living .list-box .img-box {
	background:var(--color-bg-gray);
	margin-bottom: 10px;
}

#living .list-box .ttl {
	margin: 0;
	text-align: left;
	font-size: 16px;

}

@media screen and (max-width: 767px) {
	#living {
		margin-top: 0;
	}
	#living .sec-ttl {
		margin-bottom: 30px;
	}
	#living .highlight-box {
		padding: 8px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}	
	#living .highlight-box p.large-txt{
		font-size: 1.8rem;
	}
	#living .highlight-box .large-num {
		font-size: 3.6rem;
	}

	#living .txt-box p + p {
		margin-top: 15px;
	}
}


#comfort {
	margin-top: 100px;
}
#comfort .image-text-item {
	align-items: flex-start;
}
#comfort > .content-width > .image-text-item.gap-100 {
	gap: 30px 40px;
}
#comfort > .content-width > .image-text-item.gap-100 .txt-box {
	width: 45%;
	flex-grow: unset;
}
#comfort > .content-width > .image-text-item.gap-100 .txt-box:first-child {
	width: 55%;
}
#comfort .image-text-item .sec-txt{
	margin-top: 30px;
}
#comfort .confort-items {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
#comfort .confort-item.list-box {
	background: #fff;
	padding: 20px 20px;
}
#comfort .confort-item .ttl {
	margin: 0 0 10px;
	font-size: 1.8rem;
	color: var(--color-green2);
	font-weight: var(--weight-bold);
	text-align: left;
}
#comfort .confort-item p {
	margin: 0;
	font-size: 1.4rem;
}
#comfort .content-box {
	margin-top: 60px;
}
#comfort .content-box .image-text-item{
	justify-content: center;
}
#comfort .content-box .image-text-item img {
	width: 100%;
	height: auto;
}
#comfort .img-box img {
	aspect-ratio: 2/3;
	object-fit: cover;
	width: 100%;
}

#comfort .comfort-caption {
	margin-top: 24px;
	align-items: center;
}

#comfort .comfort-caption p {
	margin: 0;
	font-size: 1.6rem;
}

#comfort .comfort-caption a {
	font-size: 1.6rem;
	white-space: nowrap;
	color: var(--color-green2);
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	#comfort {
		margin-top: 0;
	}
	#comfort > .content-width > .image-text-item.gap-100 {
		grid-template-columns: 1fr;
	}
	#comfort > .content-width > .image-text-item.gap-100 .txt-box{
		width: 100%;
	}
	#comfort > .content-width > .image-text-item.gap-100 .txt-box:first-child {
		width: 100%;
	}

	#comfort .confort-item.list-box {
		padding: 20px;
	}

	#comfort .content-box {
		margin-top: 40px;
	}
	#comfort .content-box .image-text-item{
		flex-direction: row;
	}
	#comfort .confort-item .ttl {
		margin: 0 0 10px;
		font-size: 1.6rem;
	}
	#comfort .content-box .image-text-item img{
		aspect-ratio: 3/2;
	}
	#comfort .comfort-caption p {
		margin: 0;
		font-size: 1.4rem;
	}
	
	#comfort .comfort-caption a {
		font-size: 1.4rem;
		margin-left: auto;
	}	
}


.highlights-items{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.highlights-item .img-box img{
	width: 100%;
}
.highlights-item .ttl-wrap{
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.highlights-item .cat{
	padding: 3px 10px;
	background: var(--color-green);
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	border-radius: 2px;
	white-space: nowrap;
}
.highlights-item .ttl{
	margin: 0;
	font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
	.highlights-items{
		grid-template-columns: 1fr;
	}
}


#access .sec-txt {
	text-align: center;
	margin: 30px 0 0;
}
#access .content-box {
	margin-top: 60px;
}
#access .image-text-item {
	align-items: stretch;
}
#access .img-box img {
	aspect-ratio: 480/420;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#access .info-box {
	background: #fff;
	padding: 30px;
}
#access .info-list .info-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 10px;
	padding: 20px 0;
	border-bottom: 1px solid var(--color-light-gray);
}
#access .info-list .info-item:first-child {
	padding-top: 0;
}
#access .info-list .info-item .ttl {
	margin: 0;
	font-size: 1.6rem;
	color: var(--color-green2);
	font-weight: var(--weight-bold);
}

#access .info-list .info-item p {
	margin: 0;
}

#access .info-list .info-item .small-txt {
	font-size: 1.4rem;
	color: var(--color-gray);
}
#access .info-list .info-item .large-txt {
	font-size: 3.0rem;
	line-height: 1.2;
}
#access .info-list .info-item .small-txt  {
	font-size: 1.6rem;
	color: var(--color-brown);
}

#access .info-list .info-item .notice {
	font-size: 1.4rem;
	color: var(--color-gray);
}

#access .experience-box {
	padding-top: 30px;
}

#access .experience-box .sec-ttl {
	text-align: left;
	margin-bottom: 20px;
}

#access .experience-box .sec-ttl .en {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

#access .experience-box .sec-ttl .jp {
	font-size: 2.0rem;
}

#access .experience-box p {
	margin: 0;
}

#access .cta-box .btn-cta {
	max-width: 360px;
	padding: 25px 20px;
	margin-top: 50px;
}

#access .cta-box .btn-cta::before {
	display: none;
}

@media screen and (max-width: 767px) {
	#access .info-list .info-item {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 15px 0;
	}
	#access .img-box img {
		aspect-ratio: 345/230;
	}

	#access .info-box {
		padding: 30px 20px;
	}

	#access .info-list .info-item .large-txt {
		font-size: 2.5rem;
		margin-bottom: 0;
	}

	#access .cta-box .btn-cta {
		margin-top: 30px;
	}
}



#standard.sec{
	background: rgb(47, 81, 33);
	color: #fff;
}
#standard .image-text-item{
	align-items: flex-start;
}
#standard .sec-ttl{
	flex-shrink: 0;
}

.standard-items{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 30px;
	width: 100%;
}

.standard-item {
	font-size: 1.5rem;
	border-bottom: 1px solid var(--color-gray);
	padding: 1.4rem 0 1.4rem 1.4rem;
	position: relative;
}

.standard-item::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-green);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
	#standard .sec-ttl{
		text-align: center;
		margin-inline: auto;
	}
	.standard-items{
		grid-template-columns: 1fr;
	}
}