@charset "utf-8";

.page-intro-catch-sub {
	color: rgba(24, 141, 96, 1);
}

.build-option {
	width: 100%;
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.build-option-num {
	font-size: 1.4rem;
	line-height: 1.6;
}

.build-option-select {
	display: flex;
	align-items: center;
}

.build-option-select dt {
	margin-right: 20px;
	font-size: 1.4rem;
	line-height: 1.6;
}

.build-option-select dd {
	position: relative;
}

.build-option-select dd:before {
	content: "";
	width: 1px;
	height: 30px;
	display: block;
	background-color: rgba(0, 0, 0, 0.15);
	position: absolute;
	top: 5px;
	right: 40px;
	z-index: 1;
}

.build-option-select dd:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-right: 1px solid rgba(0, 0, 0, 1);
	border-bottom: 1px solid rgba(0, 0, 0, 1);
	box-sizing: border-box;
	position: absolute;
	top: calc(50% - 3px);
	right: 18px;
	z-index: 2;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

.build-option-select select {
	width: 200px;
	height: 40px;
	padding: 0 60px 0 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	font-size: 1.5rem;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.build-option-select select:hover {
	border-color: rgba(0, 0, 0, 0.3);
}

.build-list {
	margin-top: 60px;
}

.build-list__item {
	margin-top: 20px;
}

.build-list__item a {
	padding: 60px;
	display: flex;
	border-radius: 40px;
	background-color: rgba(24, 141, 96, 0.1);
	text-decoration: none;
	justify-content: space-between;
	align-items: flex-start;
}

.build-list__item a.sold {
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.1);
}

.build-list__item a:hover {
	background-color: rgba(24, 141, 96, 0.2);
}

.build-list__image {
	max-width: 400px;
	flex-basis: 400px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.sold .build-list__image:before,
.sold .build-list__image:after {
	position: absolute;
	left: 0;
}

.sold .build-list__image:before {
	content: "完売御礼";
	width: 100%;
	top: 50%;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 2;
	text-align: center;
	color: rgba(255, 255, 255, 1);
	transform: translateY(-50%);
	z-index: 2;
}

.sold .build-list__image:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 0.8);
	top: 0;
	z-index: 1;
}

.build-list__image img {
	position: relative;
	z-index: 0;
}

.build-list__wrap {
	max-width: calc(100% - 400px - 60px);
	flex-basis: calc(100% - 400px - 60px);
}

.build-list-icon {
	margin: 10px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.sold .build-list-icon {
	display: none;
}

.build-list-icon li {
	height: 26px;
	margin: 5px 0;
	margin-right: 10px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 5px;
	font-size: 1.2rem;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.page-intro .build-list-icon li {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.build-list-icon li:nth-child(2) {
	background-color: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

.build-list__title {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.6;
}

.build-list__title span {
	border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.sold .build-list__title span {
	border-bottom: 0;
}

.build-list__text {
	margin: 20px 0;
	font-size: 1.4rem;
	line-height: 1.8;
}

.build-detai-category {
	margin: 60px 0;
	display: flex;
	align-items: flex-start;
}

.build-detai-category__title {
	max-width: 200px;
	flex-basis: 200px;
	display: flex;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(24, 141, 96, 1);
	align-items: center;
}

.build-detai-category__title:before {
	content: "";
	width: 32px;
	height: 32px;
	margin-right: 10px;
	display: block;
	background-image: url(../images/common/icon_category.png);
	background-size: 100% auto;
}

.build-detai-category__title:after {
	content: "";
	width: 1px;
	height: 40px;
	margin-left: auto;
	margin-right: 20px;
	display: block;
	background-color: rgba(0, 0, 0, 0.1);
}

.build-detai-category__list {
	max-width: calc(100% - 200px);
	flex-basis: calc(100% - 200px);
	display: flex;
	flex-wrap: wrap;
}

.build-detai-category__list li {
	margin: 5px 0;
	margin-right: 10px;
}

.build-detai-category__list a {
	height: 30px;
	padding: 0 10px;
	display: flex;
	background-color: rgba(24, 141, 96, 0.2);
	border-radius: 15px;
	font-size: 1.4rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	align-items: center;
}

.build-detai-category__list a:hover {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.build-list-info {
	margin: 20px 0;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 10px;
}

.sold .build-list-info {
	display: none;
}

.build-detail-info__feature {
	margin-right: 40px;
	padding: 20px;
	display: flex;
	border: 2px solid rgba(24, 141, 96, 1);
	border-radius: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(24, 141, 96, 1);
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
}

.build-list-info dl {
	max-width: calc(100% / 3);
	flex-basis: calc(100% / 3);
	padding: 10px 20px;
	position: relative;
	box-sizing: border-box;
}

.build-list-info dl:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: #e7f3ef;
	position: absolute;
	bottom: 0;
	right: 0;
}

.build-list-info dl:last-child:after {
	display: none;
}

.build-list-info dt {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.6;
}

.build-list-info dd {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(24, 141, 96, 1);
}

.build-list-info dd .en {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0;
}

.build-list-info dd .sup {
	font-size: 1.2rem;
}

.build-list-info dd p {
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(0, 0, 0, 0.8);
}

.build-list-category {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.build-list-category li {
	height: 24px;
	margin: 5px 0;
	margin-right: 10px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 12px;
	font-size: 1.3rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 1);
	align-items: center;
}

.build-list-category li:last-child {
	margin-right: 0;
}

@media screen and (max-width: 1024px) {
	.build-list__item a {
		padding: 40px;
	}

	.build-list__image {
		max-width: 250px;
		flex-basis: 250px;
		border-radius: 20px;
		overflow: hidden;
	}

	.build-list__wrap {
		max-width: calc(100% - 250px - 40px);
		flex-basis: calc(100% - 250px - 40px);
	}

	.build-detai-category {
		margin: 40px 0;
		display: block;
	}

	.build-detai-category__title {
		margin-bottom: 10px;
	}

	.build-detai-category__title:after {
		display: none;
	}

	.build-detai-category__list {
		max-width: none;
	}

	.build-detai-category__list li {
		margin-top: 0;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 800px) {
	.build-list__item a {
		padding: 40px;
		display: block;
	}

	.build-list__image,
	.build-list__wrap {
		max-width: none;
	}

	.build-list__image {
		margin-bottom: 40px;
	}

	.build-detai-category {
		margin: 30px 0;
		display: block;
	}
}

@media screen and (max-width: 640px) {
	.build-option-num {
		margin-bottom: 10px;
	}

	.build-list__item a {
		padding: 6vw;
		padding-bottom: 40px;
		border-radius: 20px;
	}

	.build-list__image {
		margin-bottom: 20px;
		border-radius: 10px;
	}

	.build-list__title {
		font-size: 2rem;
	}

	.build-list-info {
		display: block;
	}

	.build-list-info dl {
		max-width: none;
	}

	.build-list-info dl:after {
		width: 100%;
		height: 1px;
	}
}

@media screen and (max-width: 480px) {
	.build-option {
		display: block;
	}
}

@media screen and (max-width: 400px) {
	.build-list__item a {
		padding: 10px;
		padding-bottom: 20px;
		border-radius: 10px;
	}
}

/*------------------------------------*/

.build-detail__title {
	margin-bottom: 20px;
	font-size: 3.5rem;
}

.build-detail-info {
	margin-bottom: 60px;
	display: flex;
}

.build-detail-info dl {
	margin-right: 30px;
	padding-right: 30px;
	position: relative;
}

.build-detail-info dl:last-child {
	margin-right: 0;
	padding-right: 0;
}

.build-detail-info dl:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0;
	right: 0;
}

.build-detail-info dl:last-child:after {
	display: none;
}

.build-detail-info dt {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.build-detail-info dd {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	color: rgba(24, 141, 96, 1);
}

.build-detail-info dd .en {
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: 0em;
}

.build-detail-info dd p {
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(0, 0, 0, 0.8);
}

.build-section {
	margin: 120px 0;
	display: flex;
	position: relative;
	justify-content: space-between;
}

.build-section:last-child {
	margin-bottom: 0;
}

.build-section.floormap {
	margin-top: 60px;
	padding: 100px 0;
	padding-right: 60px;
	display: block;
}

.build-section.floormap:before {
	content: "";
	width: calc(100% + 60px);
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 0 40px 40px 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.build-section__title {
	max-width: 50px;
	flex-basis: 50px;
	position: sticky;
	top: 120px;
	z-index: 1;
}

.build-section__title span {
	padding-right: 10px;
	display: block;
	border-right: 1px solid rgba(0, 0, 0, 1);
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
	writing-mode: vertical-lr;
	font-feature-settings: normal;
}

.floormap .build-section__title span {
	border-right-color: rgba(255, 255, 255, 1);
	color: rgba(255, 255, 255, 1);
}

.build-section__wrap {
	max-width: calc(100% - 50px - 60px);
	flex-basis: calc(100% - 50px - 60px);
	position: relative;
	z-index: 2;
}

.floormap .build-section__wrap {
	width: 100%;
	max-width: none;
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.build-section__text {
	max-width: calc(100% - 50px - 60px);
	flex-basis: calc(100% - 50px - 60px);
	font-size: 1.6rem;
	line-height: 2;
	color: rgba(255, 255, 255, 1);
}

.build-section__image {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.build-map__image {
	display: flex;
	position: relative;
	z-index: 1;
	justify-content: space-between;
}

.build-map__image li {
	max-width: calc(50% - 20px);
	flex-basis: calc(50% - 20px);
	border-radius: 20px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 1);
}

.build-map__image.build-map__image-single li {
	max-width: 100%;
	flex-basis: 100%;
	text-align: center;
}

.build-map__image.build-map__image-single img {
	max-width: 500px;
}

.build-section-map {
	border-radius: 20px;
	overflow: hidden;
}

.build-payment {
	display: flex;
	/* justify-content: space-between; */
}

.build-payment-example {
	max-width: calc(50% + 40px);
	flex-basis: calc(50% + 40px);
	padding-right: 40px;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.build-payment-example:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	border-right: 2px dotted rgba(24, 141, 96, 1);
	position: absolute;
	top: 0;
	right: 0;
}

.build-payment-example__item {
	margin-right: 40px;
}

.build-payment-example dt {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	color: black;
}

.build-payment-example dd {
	font-size: 2.4rem;
	font-weight: 600;
	color: rgba(24, 141, 96, 1);
}

.build-payment-example dd span {
	font-size: 6rem;
}

.build-payment-example .notice {
	max-width: 100%;
	flex-basis: 100%;
}

.build-payment-price {
	/* max-width: calc(50% - 80px);
  flex-basis: calc(50% - 80px); */
	margin-left: 40px;
}

.build-payment-price__item {
	display: flex;
	align-items: center;
}

.build-payment-price__item:first-child {
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.build-payment-price__item:first-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.build-payment-price__item dt {
	margin-right: 10px;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6;
	color: black;
}

.build-payment-price__item dd {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(24, 141, 96, 1);
}

.build-payment-price__item dd .en {
	font-size: 3.5rem;
}

.build-payment-price__item dd .sub {
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(0, 0, 0, 0.8);
}

.build-gallery-list {
	display: flex;
	flex-wrap: wrap;
}

.build-gallery-list li {
	max-width: calc((100% - (30px * 2)) / 3);
	flex-basis: calc((100% - (30px * 2)) / 3);
	height: calc(40px + 15vw);
	max-height: 200px;
	display: flex;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	margin-right: 30px;
}

.build-gallery-list li:nth-child(3n) {
	margin-right: 0;
}

.build-gallery-list a {
	display: block;
	width: 100%;
	height: 100%;
}

.build-gallery-list a:hover {
	opacity: 0.8;
}

.build-gallery-list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.build-gallery-video a {
	height: 80px;
	display: flex;
	padding: 0 40px;
	background-color: rgba(251, 0, 0, 1);
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.build-gallery-video a:hover {
	opacity: 0.8;
}

.build-gallery-video figure {
	max-width: 120px;
	flex-basis: 120px;
	margin-right: 20px;
}

.build-gallery-video span {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
}

.build-around {
	margin-top: 60px;
}

.build-around__title {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
}

.build-around-list {
	display: flex;
	flex-wrap: wrap;
}

.build-around-list__item {
	max-width: calc((100% - (30px * 3)) / 4);
	flex-basis: calc((100% - (30px * 3)) / 4);
	margin-bottom: 30px;
	margin-right: 30px;
}

.build-around-list__item:nth-child(4n) {
	margin-right: 0;
}

.build-around-list__image {
	margin-bottom: 10px;
	padding-top: 70%;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.build-around-list__image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.build-around-list__title {
	font-size: 1.3rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.build-around-list__title span {
	font-weight: 600;
}

#gmap {
	width: 100%;
	height: calc(200px + 20vw);
	max-height: 500px;
	border-radius: 20px;
}

.build-map-data {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	line-height: 1.8;
}

.build-map-data dt {
	max-width: 80px;
	flex-basis: 80px;
	font-weight: bold;
	color: rgba(0, 0, 0, 1);
}

.build-map-data dd {
	max-width: calc(100% - 80px);
	flex-basis: calc(100% - 80px);
}

.cleargmap .gmap-lat,
.cleargmap .gmap-lng {
	display: none;
}

.build-foot {
	max-width: 800px;
	margin: 100px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* .build-foot__item {
	max-width: calc((100% - 40px) / 2);
	flex-basis: calc((100% - 40px) / 2);
} */

.build-foot__item {
	width: 100%;
}

.build-foot__item a {
	width: 100%;
	height: 80px;
	padding: 0 40px;
	display: flex;
	background-color: rgba(24, 141, 96, 1);
	position: relative;
	border-radius: 10px;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	align-items: center;
}

.build-foot__item a:before,
.build-foot__item a:after {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.build-foot__item a:before {
	width: 20px;
	height: 20px;
	border: 1px solid white;
	border-radius: 50%;
	right: 30px;
	top: calc(50% - 10px);
}

.build-foot__item a:after {
	width: 5px;
	height: 5px;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	transform: rotate3d(0, 0, -1, 45deg);
	right: 38px;
	top: calc(50% - 3px);
}

.build-foot__item a:hover {
	opacity: 0.8;
}

.build-foot__item.youtube a {
	background-color: rgba(251, 0, 0, 1);
}

.build-foot__item.youtube figure {
	max-width: 120px;
	flex-basis: 120px;
	margin-right: 20px;
}

.build-foot__item span {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
}

.build-other {
	margin-top: 100px;
}

.build-other__title {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.build-other-list {
	display: flex;
}

.build-other-list__item {
	max-width: calc((100% - (20px * 2)) / 3);
	flex-basis: calc((100% - (20px * 2)) / 3);
	margin-right: 20px;
}

.build-other-list__item:last-child {
	margin-right: 0;
}

.build-other-list__item a {
	text-decoration: none;
}

.build-other-list__item figure {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.build-other-list__item h4 {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.build-other-list__item dl {
	display: flex;
	align-items: center;
}

.build-other-list__item dt {
	margin-right: 10px;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6;
}

.build-other-list__item dd {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	color: rgba(24, 141, 96, 1);
}

.build-other-list__item dd span {
	font-size: 3.5rem;
	letter-spacing: 0;
}

@media screen and (min-width: 1621px) {
	.build-section.floormap:before {
		width: calc(100% + ((100vw - 1500px) / 2));
	}
}

@media screen and (max-width: 1024px) {
	.build-detail__title {
		font-size: calc(1.6rem + 2vw);
	}

	.build-detail-info {
		flex-wrap: wrap;
	}

	.build-detail-info__feature {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
		padding: 10px;
	}

	.build-detail-info dd {
		font-size: calc(1.2rem + 1vw);
	}

	.build-detail-info dd .en {
		font-size: calc(1.6rem + 2vw);
	}

	.build-section {
		margin: 12vw 0;
	}

	.build-section.floormap {
		padding: calc(20px + 5vw) 0;
		padding-right: 6vw;
	}

	.build-section__title span {
		padding-right: calc(5px + 0.5vw);
		font-size: calc(1.5rem + 1vw);
	}

	.build-section__wrap {
		max-width: calc(100% - 50px - 6vw);
		flex-basis: calc(100% - 50px - 6vw);
	}

	.build-around__item {
		max-width: calc((100% - 30px) / 2);
		flex-basis: calc((100% - 30px) / 2);
		margin-right: 30px;
		margin-top: 30px;
	}

	.build-around__item:nth-child(3) {
		margin-top: 30px;
	}

	.build-around__item:nth-child(3n) {
		margin-right: 30px;
	}

	.build-around__item:nth-child(2n) {
		margin-right: 0;
	}

	.build-payment {
		display: block;
	}

	.build-payment-example,
	.build-payment-price {
		max-width: none;
	}

	.build-payment-example {
		padding-right: 0;
		display: block;
	}

	.build-payment-example:after {
		content: "";
		width: 100%;
		height: 1px;
		margin: 40px 0;
		display: block;
		border-right: 0;
		border-bottom: 2px dotted rgba(24, 141, 96, 1);
		position: static;
	}

	.build-payment-price {
		margin-left: 0;
	}

	.build-payment-price__item {
		display: block;
	}

	.build-around-list__item {
		max-width: calc((100% - 30px) / 2);
		flex-basis: calc((100% - 30px) / 2);
	}

	.build-around-list__item:nth-child(2n) {
		margin-right: 0;
	}

	.build-foot {
		margin: 60px 0;
		display: block;
	}

	.build-foot__item {
		max-width: none;
		margin-bottom: 20px;
	}

	.build-map__image {
		display: block;
	}

	.build-map__image li {
		max-width: none;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 640px) {
	.build-section {
		margin: 10vw 0;
	}

	.build-section.floormap:before {
		border-radius: 0 20px 20px 0;
	}

	.build-section__title {
		max-width: 40px;
		flex-basis: 40px;
	}

	.build-section__wrap {
		max-width: calc(100% - 40px - 6vw);
		flex-basis: calc(100% - 40px - 6vw);
	}

	.build-section__image {
		border-radius: 10px;
	}

	.build-section__text {
		max-width: calc(100% - 50px - 30px);
		flex-basis: calc(100% - 50px - 30px);
	}

	.build-gallery-list li {
		max-width: calc((100% - (20px * 2)) / 3);
		flex-basis: calc((100% - (20px * 2)) / 3);
		margin-bottom: 20px;
		margin-right: 20px;
	}

	.build-other-list__item dl {
		display: block;
	}

	.build-detail-info__feature {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}

	.build-gallery-video a {
		height: 60px;
		padding: 0 20px;
	}

	.build-gallery-video figure {
		max-width: 90px;
		flex-basis: 90px;
		margin-right: 10px;
	}

	.build-gallery-video span {
		font-size: 1.4rem;
	}

	.build-foot__item a {
		height: 60px;
		padding: 0 20px;
	}

	.build-foot__item.youtube figure {
		max-width: 90px;
		flex-basis: 90px;
		margin-right: 10px;
	}

	.build-foot__item span {
		font-size: 1.4rem;
	}

	.build-other-list__item h4 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}

	.build-other-list__item dd {
		font-size: 1.4rem;
	}

	.build-other-list__item dd span {
		font-size: 3rem;
	}
}

@media screen and (max-width: 480px) {
	.build-detail-info {
		margin-bottom: 40px;
		display: block;
	}

	.build-detail-info dl {
		margin-right: 0;
		padding-left: 0;
		padding: 10px 0;
	}

	.build-detail-info dl:after {
		width: 100%;
		height: 1px;
	}

	.build-around {
		display: block;
	}

	.build-around__item {
		max-width: none;
		margin-right: 0 !important;
	}

	.build-around__item:nth-child(2) {
		margin-top: 30px;
	}

	.build-payment-example dt {
		font-size: 1.4rem;
	}

	.build-payment-example dd {
		font-size: 2rem;
	}

	.build-payment-example dd span {
		font-size: 5rem;
	}

	.build-around {
		margin-top: 40px;
	}

	.build-around-list__item {
		max-width: calc((100% - 20px) / 2);
		flex-basis: calc((100% - 20px) / 2);
		margin-right: 20px;
		margin-bottom: 20px;
	}

	.build-other {
		margin-top: 60px;
	}

	.build-other-list {
		display: block;
	}

	.build-other-list__item {
		max-width: none;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.floormap .build-section__wrap {
		display: block;
		margin-top: 20px;
	}

	.build-section__text {
		max-width: none;
	}

	.build-gallery-list li {
		max-width: calc((100% - 20px) / 2);
		flex-basis: calc((100% - 20px) / 2);
		margin-bottom: 20px;
		margin-right: 20px;
	}

	.build-gallery-list li:nth-child(3n) {
		margin-right: 20px;
	}

	.build-gallery-list li:nth-child(2n) {
		margin-right: 0;
	}

	.build-foot {
		margin: 40px 0;
	}
}

/*------------------------------------*/

.area__image {
	margin-bottom: 120px;
}

.swiper-container {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 40px;
}

.swiper-slide {
	background-color: rgba(0, 0, 0, 0.85);
	background-size: cover;
	background-position: center;
	border-radius: 0;
}

.swiper-slide img {
	height: 100%;
	object-fit: contain;
}

.gallery-top {
	height: 80%;
	width: 100%;
}

.gallery-top.swiper-container,
.gallery-thumbs.swiper-container {
	overflow: hidden !important;
}

.gallery-thumbs.swiper-container {
	height: 20%;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 0;
}

.gallery-thumbs .swiper-slide {
	height: calc(40px + 5vw);
	max-height: 120px;
	/* 	margin-right: 0 !important; */
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	cursor: pointer;
}

.gallery-thumbs .swiper-slide:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	border: 4px solid rgba(24, 141, 96, 1);
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	box-sizing: border-box;
}

.gallery-thumbs .swiper-slide img {
	height: 100%;
	object-fit: cover;
}

.gallery-thumbs .swiper-slide-thumb-active:before {
	opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	background-size: 100% auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: -20px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: -20px;
}

.noswipe .swiper-button-next,
.noswipe .swiper-button-prev {
	display: none;
}

.swiper-button-next,
.swiper-button-prev {
	top: auto;
	bottom: 30px;
}

.swiper-pagination {
	display: none;
	margin-top: 20px;
	position: static;
	justify-content: center;
}

.swiper-pagination-bullet {
	margin-right: 5px;
}

.swiper-pagination-bullet:last-child {
	margin-right: 0;
}

.build-gmlink {
	margin-top: 20px;
}

.build-gmlink a {
	height: 40px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 20px;
	font-size: 1.4rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	transition: opacity 250ms ease;
}

.build-gmlink a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 1024px) {
	.area__image {
		margin-bottom: 10vw;
	}
}

@media screen and (max-width: 800px) {
	.estate-area:before {
		border-radius: 0 20px 20px 0;
	}

	.gallery-thumbs.swiper-container,
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

	.swiper-container {
		border-radius: 20px;
	}

	.gallery-thumbs {
		margin-top: 0;
	}

	.swiper-pagination {
		display: block;
	}
}

@media screen and (max-width: 640px) {
	.area__image {
		margin-bottom: 12vw;
	}
}

@media screen and (max-width: 480px) {
	.build-section {
		display: block;
	}

	.build-section__title,
	.build-section__wrap {
		max-width: none;
	}

	.build-section__title {
		margin-bottom: 20px;
		position: static;
	}

	.build-section__title span {
		display: table;
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 1);
		writing-mode: initial;
		font-feature-settings: "palt";
	}

	.floormap .build-section__title span {
		border-bottom-color: rgba(255, 255, 255, 1);
	}
}

@media screen and (max-width: 400px) {
	.area__image,
	#gmap {
		width: calc(100% + 12vw);
		position: relative;
		left: -6vw;
		border-radius: 0;
	}

	.swiper-container {
		border-radius: 0;
	}

	.build-section.floormap {
		padding-right: 0;
	}

	.build-section.floormap:before {
		width: calc(100% + 12vw);
		border-radius: 0;
		right: -6vw;
	}
}

.infobox:before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../images/common/img_map_arrow.png);
	background-size: 100% auto;
	position: absolute;
	left: calc(50% - 10px);
	bottom: -17px;
	z-index: 1;
}

.infobox a {
	width: 100%;
	min-height: 40px;
	display: flex;
	padding: 5px 10px;
	padding-right: 40px;
	background-color: rgba(255, 255, 255, 1);
	border: 3px solid rgba(24, 141, 96, 1);
	border-radius: 10px;
	position: relative;
	z-index: 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	box-sizing: border-box;
	align-items: center;
	cursor: pointer;
}

.infobox a:before,
.infobox a:after {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.infobox a:before {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(24, 141, 96, 0.3);
	border-radius: 50%;
	top: calc(50% - 10px);
	right: 10px;
}

.infobox a:after {
	width: 4px;
	height: 4px;
	border-top: 1px solid rgba(24, 141, 96, 1);
	border-right: 1px solid rgba(24, 141, 96, 1);
	top: calc(50% - 2px);
	right: 18px;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

.infobox a:hover:before {
	border-color: rgba(24, 141, 96, 1);
}

.infobox a:hover:after {
	transform: translateX(3px) rotate3d(0, 0, 1, 45deg);
}

.infobox img {
	display: none;
}

#build_maps {
	width: 100%;
	height: calc(400px + 20vw);
	max-height: 800px;
	border-radius: 20px;
}
