@charset "UTF-8";

/*----------------------------------------
	- base
	- category_area
	- sec_works
	- sec_before
	- sec_flow
-----------------------------------------*/

/*=======================================
	base
=======================================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	/* font-family: 'Jost', "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif; */
	letter-spacing: 0.1em;
}


img,
figure,
picture {
	max-width: 100%;
	height: auto;
	/*vertical-align: top;*/
}
ul,
li {
	list-style: none;
}
a {
	text-decoration: none;
	opacity: 1;
	transition: all 0.3s ease;
}
@media (hover: hover) {
	a:hover {
		opacity: 0.8;
	}
}

/* wide */
.w980 {
	max-width: 980px;
	width: 90%;
}

/*============================
category_area
============================*/
.category_area .flex_area .icon {
	width: inherit;
}
.category_area .flex_area .icon a {
	padding-left: 20px;
	padding-right: 20px;
}

@media only screen and (max-width: 767px){
	.category_area .flex_area .icon a {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*============================
sec_works
============================*/
.sec_works ul li .label {
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	width: 56px;
	height: 21px;
	background: var(--main_color);
	display: flex;
	/* flex-direction: column; */
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	transform: translateY(2px);
	border-left: 1px solid var(--main_color);
}
.sec_works ul li .name {
	margin-bottom: 10px;
	line-height: 1.3;
}
.sec_works ul li .location,
.sec_works ul li .scale {
	display: flex;
	align-items: start;
	column-gap: 7px;
}
.sec_works ul li .location p,
.sec_works ul li .scale p {
	font-weight: 700;
	font-size: 16px;
	flex: 1;
}
.sec_works ul li .location {
	margin-bottom: 6px;
}
@media only screen and (max-width: 767px){
	.sec_works ul li .label {
		font-size: 11px;
		width: 50px;
		transform: translateY(0);
	}
	.sec_works ul li .location p,
	.sec_works ul li .scale p {
		font-size: 12px;
	}
}
@media only screen and (max-width: 640px){
	.sec_works ul li .label {
		margin-bottom: 5px;
	}
	.sec_works ul li .location,
	.sec_works ul li .scale {
		flex-flow: wrap;
	}
	.sec_works ul li .location p,
	.sec_works ul li .scale p {
		flex: none;
		width: 100%;
	}
}

/*============================
sec_request_bnr
============================*/
.sec_request_bnr {
    margin:0 auto 200px;
    max-width: 1120px;
}
@media only screen and (max-width: 767px){
	.sec_request_bnr {
		width: 100%;
		margin-bottom: 100px;
	}
}


/* 詳細ページ
--------------------------------------------------------- */
/*============================
sec_after
============================*/
.wp-content .sec_after .hd_txt {
	padding-bottom: 36px;
	border-bottom: 1px solid #BB2929;
}
@media only screen and (max-width: 767px){
.wp-content .sec_after .hd_txt {
	padding-bottom: 10px;
}
}

/*============================
sec_before
============================*/
.sec_before .txt_area .flex_area {
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 25px;
	margin-bottom: 50px;
}
.sec_before .txt_area .flex_area .name {
	font-weight: 700;
	font-size: 25px;
	letter-spacing: 0.1em;
	max-width: 420px;
}
.sec_before .icon {
	font-size: 14px;
	border: 2px solid #C9C9C9;
	border-radius: 9px;
	padding: 10px 20px;
	display: inline-block;
	font-weight: 500;
}
.wp-content .sec_before .txt_area dl {
	align-items: flex-start;
}
.wp-content .sec_before .txt_area dl dd {
	line-height: 1.8;
}
@media only screen and (max-width: 767px){
	.sec_before .txt_area .flex_area {
		display: flex;
		margin-bottom: 25px;
	}
	.sec_before .txt_area .flex_area .name {
		font-size: 19px;
		max-width: 100%;
	}
	.sec_before .icon {
		font-size: 12px;
		padding: 5px 10px;
	}
}

/*============================
sec_flow
============================*/
.sec_flow {
	margin-bottom: 80px;
}
.sec_flow ul {
	padding: 60px 80px 66px;
	border-radius: 20px;
	border: 3px solid var(--main_color);
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	counter-reset: number 0;
}
.sec_flow ul li {
	display: flex;
	column-gap: 82px;
}
.sec_flow ul li:not(:last-child) {
	border-bottom: 1px dotted #bc6a6a;
	padding-bottom: 40px;
}
.sec_flow ul li .txt_area {
	width: calc(100% - 220px - 82px);
}
.sec_flow ul li .txt_area .flow_ttl {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	padding-left: 45px;
	position: relative;
}
.sec_flow ul li .flow_ttl::before {
	counter-increment: number 1;
	content: counter(number);
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--main_color);
	position: absolute;
	width: 31px;
	height: 31px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	padding-left: 2px;
}
.sec_flow ul li .txt_area .flow_txt {
	line-height: 2;
}
.sec_flow ul li .img_area {
	width: 220px;
}
@media only screen and (max-width: 767px){
	.sec_flow {
		margin-bottom: 40px;
	}
	.sec_flow ul {
		padding: 30px 5%;
		border-radius: 20px;
		row-gap: 20px;
	}
	.sec_flow ul li {
		row-gap: 20px;
		flex-direction: column;
	}
	.sec_flow ul li:not(:last-child) {
		padding-bottom: 20px;
	}
	.sec_flow ul li .txt_area {
		width: 100%;
	}
	.sec_flow ul li .txt_area .flow_ttl {
		font-size: 18px;
		margin-bottom: 10px;
		padding-left: 35px;
	}
	.sec_flow ul li .flow_ttl::before {
		font-size: 18px;
		width: 25px;
		height: 25px;
		top: 0.1em;
	}
	.sec_flow ul li .img_area {
		width: 100%;
	}
}

/*===============================
お問い合わせボタン（プロモ調整）
===============================*/
.sec_request_bnr.apartment_bnr {
	text-align: center;
	max-width: 1120px;
	margin: 50px auto 100px;
	width: 90%;
	background: #780907;
	background: -webkit-linear-gradient(#bc2825 0%, #780907 100%);
	background: -o-linear-gradient(#bc2825 0%, #780907 100%);
	background: linear-gradient(#bc2825 0%, #780907 100%);
	border-radius: 12px;
}

.sec_request_bnr.apartment_bnr a {
    color: #fff;
    font-size: 38px;
    width: 100%;
    display: block;
    padding: 25px 0;
	letter-spacing: 3px;
	position: relative;
	font-weight: 600;
}

.sec_request_bnr.apartment_bnr a::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    margin-top: -5px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg);
    top: 50%;
    right: 5%;
}

.sec_request_bnr.apartment_bnr a span.fontS {
    font-size: 26px;
}

@media only screen and (max-width: 767px){
	.sec_request_bnr.apartment_bnr {
		margin: 0 auto 85px;
	}
	
	.sec_request_bnr.apartment_bnr a {
		font-size: 22px;
		padding: 15px 0;
		letter-spacing: 2px;
		line-height: 1.6;
	}	
	
	.sec_request_bnr.apartment_bnr a span.fontS {
		font-size: 18px;
	}	
	
	.sec_request_bnr.apartment_bnr a::after {
		width: 12px;
		height: 12px;
	}	
	
}

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

	.sec_request_bnr.apartment_bnr a {
		font-size: 28px;
	}	
	

}

/*===============================
詳細ボタン変更
===============================*/
.works_btn_area .btn a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
	font-size: 15px;
	border-radius: 200px;
	align-items: center;
	width: 100%;
	position: relative;
	padding-left: 5px;
	gap: 0;
}
.works_btn_area .btn a::after {
	content: "";
	position: relative;
	background: url("../../../../images/menu/arrow01.png") no-repeat;
	background-size: contain;
	top: 0;
	-webkit-transform: translateY(-50%);
	transform: none;
	left: 0.7em;
	width: 35px;
	height: 35px;
}

@media only screen and (max-width: 767px){
.works_btn_area .btn a {
	font-size: 14px;
}
.works_btn_area .btn a::after {
	width: 28px;
	height: 28px;
}
}