@charset "utf-8";

body {
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
	line-height: 1.7;
	background: #fff;
	position: relative;
	color: #63636D;
	font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	text-align: left;
}

a {
	color: inherit;
	text-decoration: none;
}

.nosp {
	display: none !important;
}

img {
	max-width: 100%;
}

.mincho {
	font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}

.ivypresto-display {
	font-family: ivypresto-display, serif;
	font-weight: 400;
	font-style: normal;
}

.jost {
	font-family: 'Jost', sans-serif;
}

.inner {
	width: 90%;
	margin: auto;
	position: relative;
}

.btn {
	max-width: 250px;
	width: 90%;
	height: 65px;
	margin: auto;
	background: #C0A799;
	/* background: -moz-linear-gradient(-45deg,  rgba(253,92,92,1) 15%, rgba(253,92,92,1) 15%, rgba(65,181,145,1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(253,92,92,1) 15%,rgba(253,92,92,1) 15%,rgba(65,181,145,1) 100%);
	background: linear-gradient(135deg,  rgba(253,92,92,1) 15%,rgba(253,92,92,1) 15%,rgba(65,181,145,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd5c5c', endColorstr='#41b591',GradientType=1 ); */
	border-radius: 100px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.btn span {
	/* width: calc(100% - 4px);
	height: calc(100% - 4px);
	border-radius: 100px;
	background: #fff; */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: auto;
	font-size: 17px;
	color: #fff;
	position: relative;
}

.btn span::after {
	content: '';
	width: 13px;
	height: 6px;
	background: url(../img/arrow01_white.svg) no-repeat center/contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -25%;
	margin: auto;
}

.btn.small {
	max-width: 175px;
	height: 45px;
}

.btn.small span {
	font-size: 14px;
}

.btn02 {
	width: 90%;
	height: 50px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background: #f7f7f7;
	border: 1px solid #8e8e8e;
	border-radius: 100px;
	margin: 20px auto 0;
}

.btn02::after {
	content: "";
	width: 12px;
	height: 5px;
	background: url(../img/arrow01_gray.svg) no-repeat center/contain;
	margin-left: 10px;
}

/*==================================================
$header
==================================================*/
header {
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	background: rgba(255, 255, 255, .95);
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	min-height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s linear;
}

.logo {
	width: 75%;
	padding: 5px 10px;
}

header .right {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	width: 18.5%;
}

.burger_wrap {
	display: none;
}

.burger_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #63636D;
	color: #fff;
	position: relative;
	cursor: pointer;
	order: 2;
}

.burger_wrap .burger,
.burger_wrap .burger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.burger_wrap .burger {
	width: 75px;
	height: 23px;
	z-index: 1000;
	margin: auto;
	z-index: 100;
	position: relative;
	top: -10px;
}

.burger_wrap .burger span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 50%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}

.burger_wrap .burger span:nth-of-type(1) {
	top: 0;
}

.burger_wrap .burger span:nth-of-type(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}

.burger_wrap .burger span:nth-of-type(3) {
	bottom: 0;
}

.burger_wrap.active .burger span:nth-of-type(1) {
	transform: translateY(10.5px) rotate(-45deg);
}

.burger_wrap.active .burger span:nth-of-type(2) {
	opacity: 0;
}

.burger_wrap.active .burger span:nth-of-type(3) {
	transform: translateY(-10.5px) rotate(45deg);
}

.burger_wrap .burger small {
	display: block;
	text-align: center;
	position: absolute;
	bottom: -2em;
	left: 5px;
	right: 0;
	margin: auto;
	font-size: 12px;
	letter-spacing: .2em;
}

header .right .tel {
	order: 1;
}

.header_nav {
	position: fixed;
	top: 18.5vw;
	right: -100%;
	width: 100%;
	height: calc(100vh - 18.5vw);
	background: rgba(0, 0, 0, .7);
	overflow-y: auto;
	z-index: 1000;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 30px 15px;
	transition: .3s;
}

.header_nav.open {
	right: 0;
}

.header_nav nav>ul {
	display: block;
	width: auto;
	width: 100%;
	height: 100%;
	text-align: center;
}

.header_nav nav>ul>li {
	margin-right: 0;
	width: auto;
	font-size: 16px;
}

.header_nav nav>ul>li>a {
	display: block;
	padding: 14px 10px;
	color: #fff;
}

.header_nav nav>ul>li>span {
	display: block;
	padding: 30px 10px;
	color: #fff;
}

.header_nav nav>ul>li.main_menu,
.header_nav nav>ul>li.main_menu>span {
	position: relative;
	width: fit-content;
	margin: 0 auto;
	transition: all 0.4s linear;
}

.header_nav nav>ul>li.main_menu>span {
	padding-right: 15px;
}

.header_nav nav>ul>li.main_menu>span::before,
.header_nav nav>ul>li.main_menu>span::after {
	content: "";
	display: block;
	background-color: #fff;
	position: absolute;
}

.header_nav nav>ul>li.main_menu>span::before {
	width: 2px;
	height: 8px;
	top: calc(50% - 4px);
	right: 3px;
	transition: all 0.5s;
}

.header_nav nav>ul>li.main_menu>span::after {
	width: 8px;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
}

.header_nav nav>ul>li.main_menu.is-show>span::before {
	transform: rotate(90deg);
	opacity: 0;
}

.header_nav nav>ul>li .sub_menu {
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s linear;
}

.header_nav nav>ul>li.main_menu.is-show .sub_menu {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
	max-height: 200px;
	margin-bottom: 15px;
}

.header_nav nav>ul>li .sub_menu li {
	width: 100%;
	padding: 0 8px;
	text-align: center;
}

.header_nav nav>ul>li .sub_menu li a {
	color: #fff;
	display: inline-block;
	font-size: 14px;
	padding: 15px 0;
	transition: 0.3s ease-in-out;
}

header .right .tel {
	display: none;
}

/*==================================================
$footer
==================================================*/
.footer_upper {
	background: #8E8E8E;
	padding: 50px 5%;
	position: relative;
}

.footer_upper::before {
	content: "";
	background: url(../img/know_bg.jpg) no-repeat center/cover;
	opacity: 0.15;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
	z-index: 1;
}

.footer_upper .inner {
	z-index: 2;
}

.footer_banner {
	margin-bottom: 50px;
}

.footer_banner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.footer_banner ul li {
	/* max-width: 245px; */
	width: 100%;
	margin: 0 0 2%;
}

.footer_banner ul li a {
	display: block;
	width: 100%;
}

.footer_sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.footer_sns strong {
	max-width: 160px;
	width: 100%;
	margin: 0 auto 20%;
	position: relative;
}

.footer_sns strong::after {
	content: '';
	width: 1px;
	height: 10vw;
	background: #63636D;
	position: absolute;
	bottom: -14vw;
	left: 0;
	right: 0;
	margin: auto;
}

.footer_sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.footer_sns ul li {
	width: 60px;
	margin-right: 30px;
}

.footer_sns ul li:last-child {
	margin-right: 0;
}

.footer_under {
	background: #63636D;
	padding: 50px 10px;
}

.footer_pages ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.footer_pages ul li {
	margin: 0 5% 5%;
}

.footer_pages ul li a {
	color: #fff;
}

.footer_property {
	display: none;
}

.copyright {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 10px;
	letter-spacing: .1em;
	opacity: 0.5;
	padding-top: 50px;
}

.copyright img {
	height: 100%;
}

/*==================================================
$toppage
==================================================*/
.contents.toppage {
	position: relative;
	transition: all 0.3s linear;
	clip-path: inset(0px);
	overflow-x: clip;
}

.contents.toppage::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: url(../img/bg_fix.jpg) no-repeat center / cover;
	z-index: -1;
}

.bg_movie {
	display: none;
}

.mv {
	background: #fff;
	padding-bottom: 50px;
	position: relative;
}

.mv .mv_slider .slick-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.mv .mv_slider {
	max-width: 1080px;
	width: 100%;
	margin: auto;
	height: calc(100vh - 60px - 70px - 20vw - 75px);
}

.mv .mv_slider div {
	height: 100%;
}

.mv .mv_slider .dots {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: auto;
}

.mv .mv_slider .dots li {
	width: 10px;
	height: 10px;
	line-height: 0;
	text-decoration: -300%;
	background: #E6E6E6;
	border-radius: 100px;
	overflow: hidden;
	margin: 0 10px;
	white-space: nowrap;
}

.mv .mv_slider .dots li.slick-active {
	background: #000;
}

.mv .mv_slider .dots li button {
	background: none;
	border: none;
	opacity: 0;
}

.mv .mv_slider .mv_slider_item {
	position: relative;
}

.mv .mv_slider .mv_slider_item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.mv .mv_slider .mv_slider_item.property a {
	display: block;
	width: 100%;
	height: 100%;
}

.mv .mv_slider .mv_slider_item.property.kyobashieast a {
	background: url(../img/mv03.jpg) no-repeat center/cover;
}

.mv .mv_slider .mv_slider_item.property.jusohonmachi a {
	background: url(../img/mv04.jpg) no-repeat center/cover;
}

.mv .mv_slider .mv_slider_item.property img {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.mv .mv_slider .mv_slider_item.property.kyobashieast img {
	bottom: 20%;
}

.mv .mv_slider .mv_slider_item.property span {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px 30px;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	font-size: 17px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.mv .mv_slider .mv_slider_item.property span::after {
	content: '';
	width: 1.5em;
	height: 1.5em;
	background: url(../img/arrow04.svg) no-repeat center/contain;
	margin-left: 10px;
	display: inline-block;
}

.pickup_section {
	background: #fff;
	padding: 10px 0;
	width: 100%;
	overflow-x: hidden;
	margin-bottom: 200px;
}

.pickup_section .inner {
	width: 100%;
}

.floor_detail .pickup_section {
	padding-top: 10px;
	background: #efefef;
	margin-bottom: 0;
}

.pickup_section .inner>strong,
.pickup_section .inner .txt_title {
	font-size: 16.5px;
	font-weight: bold;
	width: 90%;
	margin: auto;
	padding-left: 5%;
}

.pickup_section .inner .txt_title {
	padding-left: 0 !important;
}

.pickup_section .inner .s_txt {
	display: block;
	width: 90%;
	margin: auto;
	font-size: 11px;
}

.pickup_section .inner>strong::after {
	content: "";
	display: inline-block;
	vertical-align: text-bottom;
	width: 30px;
	height: 40px;
	background: url(../img/deco_0.png) no-repeat center/contain;
	margin-left: 8px;
	margin-right: 6px;
}

.pickup_section .inner .heading {
	font-size: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	border-top: 1px solid #707070;
	padding-top: 10px;
	margin-top: 10px;
	position: relative;
	font-weight: bold;
	width: 90%;
	margin: 10px auto 0;
}

.floor_detail .pickup_section .inner .heading {
	font-size: 20px;
	justify-content: center;
	border: none;
}

.pickup_section .pickupbtn {
	width: 90%;
	max-width: 400px;
	height: 45px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #8e8e8e;
	color: #fff;
	border-radius: 100px;
	margin: 50px auto 0;
}

.pickup_section .pickupbtn span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.pickup_section .pickupbtn span::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	margin-left: 10px;
}

.pickup_slider {
	padding-bottom: 50px;
}

.pickup_slider .dots {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
}

.pickup_slider .dots li {
	width: 100%;
	height: 1px;
	overflow: hidden;
	text-indent: -300%;
	background: #000;
	position: relative;
}

.pickup_slider .dots li.slick-active~li {
	background: #C0A799;
}

.pickup_slider .dots button {
	background: none;
	border: none;
}

.pickup_slider_item {
	margin-bottom: 30px;
}

.pickup_slider_item .inbox {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	padding: 5% 3% 0 5%;
}

.pickup_slider_item .inbox .badge,
.main_slider_wrap .badge {
	width: 55px;
	height: 55px;
	border-radius: 100px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 3%;
	left: 0;
	z-index: 2;
	line-height: 1.2;
	font-weight: bold;
	animation: scale 1s ease-in-out alternate infinite;
	font-size: 11px;
	text-align: center;
}

@keyframes scale {
	0% {
		transform: scale(1, 1);
	}

	100% {
		transform: scale(1.2, 1.2);
	}
}

.pickup_slider_item .inbox .badge.freerent,
.main_slider_wrap .badge.freerent {
	background: #D95E59;
}

.pickup_slider_item .inbox .badge.recommend,
.main_slider_wrap .badge.recommend {
	background: #D5801D;
}

.pickup_slider_item .inbox .badge.attention,
.main_slider_wrap .badge.attention {
	background: #e61d1d;
}

.pickup_slider_item .inbox .image {
	position: relative;
	overflow: hidden;
	padding: 20% 0;
	width: 42%;
}

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

.pickup_slider_item .inbox .image .label {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 11px;
	background: rgba(255, 255, 255, .9);
	padding: 5px 10px;
	z-index: 2;
}

.pickup_slider_item .inbox .text {
	width: 53%;
}

.pickup_slider_item .inbox .text .name {
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 10px;
	display: block;
}

.pickup_slider_item .inbox .text>div {
	/*display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;*/
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding: 10px;
}

.pickup_slider_item .inbox .text>div .layout {
	/*width: 30%;*/
	display: block;
	color: #c0a799;
	font-size: 14px;
}

.pickup_slider_item .inbox .text>div .rent {
	/*width: 67%;*/
	font-size: 16px;
}

.pickup_slider_item .inbox .text .tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.pickup_slider_item .inbox .text .tag li {
	width: 49.5%;
	background: #efefef;
	border-radius: 100px;
	font-size: 10px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 5px .5em;
	margin-bottom: 2%;
	line-height: 1.2;
}

.floor_detail .pickup_slider_item .inbox .text .tag li {
	background: #fff;
}

.pickup_slider_item .inbox .text .tag li::before {
	content: "";
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
}

.pickup_slider_item .inbox .text .tag li.new::before {
	background: url(../img/ico_building.svg) no-repeat center/contain;
}

.pickup_slider_item .inbox .text .tag li.high_grade::before {
	background: url(../img/ico_highgrade.svg) no-repeat center/contain;
}

.pickup_slider_item .inbox .text .tag li.contactless_key::before {
	background: url(../img/ico_key.svg) no-repeat center/contain;
}

.pickup_slider_item .inbox .text .tag li.pet::before {
	background: url(../img/ico_pet.svg) no-repeat center/contain;
}

/*221220s*/
.pickup_slider .arrows,
.floor_list_btn .arrows {
	position: absolute;
	bottom: 10px;
	left: 10px;
	margin: auto;
	background-color: #6E6E6E;
	width: 35px;
	height: 35px;
	border-radius: 100px;
	opacity: 1;
	cursor: pointer;
}

.pickup_slider .arrows.next,
.floor_list_btn .arrows.next {
	left: auto;
	right: 10px;
}

.pickup_slider .arrows::before,
.floor_list_btn .arrows::before {
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 3px;
	left: 0;
	margin: auto;
}

.pickup_slider .arrows.prev::before,
.floor_list_btn .arrows.prev::before {
	transform: rotate(-135deg);
	right: -3px;
}

/*221220e*/
.area_section {
	background: rgba(99, 99, 108, .8);
	backdrop-filter: blur(20px);
	width: 100%;
	overflow: hidden;
	padding: 80px 0;
	position: relative;
}

.area_section::before {
	content: "";
	width: 100vw;
	height: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../img/map_bg.png) no-repeat center/contain;
	opacity: 0.5;
	z-index: 1;
	pointer-events: none;
}

.area_section .inner .heading {
	font-size: 16px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}

.area_section .inner .heading span {
	font-size: 50px;
	margin-right: 20px;
}

.area_section .inner .heading::before {
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -101%;
	margin: auto;
}

.area_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.area_list div {
	width: 100%;
	padding: 5px 20px 20px;
	margin-bottom: 4%;
	position: relative;
}

.area_list div.chubu {
	background: #C2B4AE;
}

.area_list div.kanto {
	/* background: #A7ADB6; */
	background: #98A7A3;
	margin-top: 0;
	padding-top: 0;
}

.area_list div.kansai {
	background: #98A7A3;
	margin-bottom: 0;
}

.area_list .top_search ul li.all_property_btn a {
	background: #D95E59;
    display: block;
    text-align: center;
	color: #fff;
}

 .area_list .top_search ul li a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
}

.top_search {
	background: #98A7A3;
}

.top_search .search_box .search_inbox dl dd strong {
	display: block;
    border-bottom: 1px solid #fff;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
}
.top_search .search_box.allopen .search_inbox dl.station dd strong::before,
.top_search .search_box.allopen .search_inbox dl.station dd strong::after{
	content: "";
    width: 15px;
    height: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    background: #fff;
}

.top_search .search_box .search_inbox dl dd label input[type="checkbox"]+span{
	position: relative;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    line-height: 1.2;
    height: 100%;
    padding: 0 10px;
    color: #fff;
}

.top_search .search_box .search_inbox dl.station dd .feas_clevel_01 {
	width: 100%;
    margin-top: 20px;
	background: none;
}

.area_list div strong {
	display: block;
	color: #fff;
	margin-bottom: 10px;
}

.area_list div strong span {
	font-size: 25px;
	margin-right: 10px;
}

.area_list div ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.area_list div ul li {
	width: 49%;
	margin-bottom: 10px;
}

.area_list div ul li:last-child {
	margin-right: 0;
	/* width: 100%; */
}
.area_list div ul li:last-child.all_property_btn {
	margin-right: 0;
	width: 100%;
}

.area_list div ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	border-radius: 7px;
	padding: 5px 15px 5px 5px;
	position: relative;
	font-size: 12px;
}

.area_list div ul li a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 2px solid #63636D;
	border-right: 2px solid #63636D;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 7px;
	margin: auto;
}

.area_list div ul li.all_property_btn a {
	background: #e2c447;
	display: block;
	text-align: center;
}

.area_list div ul li.all_property_btn a::after {
	position: static;
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
}

.feature_section {
	padding: 50px 0;
	background: #F5F0ED;
}

.feature_section .inner .heading {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}

.feature_section .inner .heading span {
	font-size: 35px;
	margin-right: 20px;
}

.feature_section .inner .heading::before {
	content: '';
	width: 100%;
	height: 1px;
	background: #63636D;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -101%;
	margin: auto;
}

.feature_section .inner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 50px;
}

.feature_section .inner ul li {
	width: 32%;
	max-width: 145px;
	height: 28.8vw;
	max-height: 145px;
	margin-bottom: 10%;
}

.feature_section .inner ul li a {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 35px;
	border: 1px solid #63636D;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	box-shadow: 0 10px 0 #63636D;
}

.feature_section .inner ul li a::before {
	content: '';
	width: 40%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	margin: auto;
}

.feature_section .inner ul li a::after {
	content: '';
	width: 100%;
	height: 35px;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	margin: auto;
}

.feature_section .inner ul li.shinchiku a::after {
	background: url(../img/ico_shinchiku.png) no-repeat center/contain;
}

.feature_section .inner ul li.single a::after {
	background: url(../img/ico_single.png) no-repeat center/contain;
}

.feature_section .inner ul li.pet a::after {
	background: url(../img/ico_pet.png) no-repeat center/contain;
}

.feature_section .inner ul li a strong {
	font-size: 4.27vw;
	width: 100%;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 10px;
}

.feature_section .inner ul li a span {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 12px;
	text-align: center;
}

.feature_section .inner ul li a span::before {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../img/arrow02.svg) no-repeat center/contain;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.feature_section .inner ul li a span::after {
	content: '';
	width: 5em;
	height: 1px;
	background: #63636D;
	position: absolute;
	bottom: -2px;
	left: 1.8em;
	right: 0;
	margin: auto;
}

.know_section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	background: rgba(99, 99, 108, .8);
	backdrop-filter: blur(20px);
	width: 100%;
	overflow: hidden;
}

.know_section .heading {
	width: 100%;
	color: #F5F0ED;
	font-size: 62px;
	line-height: 1.2;
	padding: 50px 0;
}

.know_section .heading strong {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
}

.know_section .heading span {
	font-size: 18px;
	display: block;
	line-height: 1.2;
	text-align: left;
	position: relative;
	margin-bottom: 10px;
	padding: 0 5% 10px;
}

.know_section .heading strong span::after {
	content: '';
	width: calc(10vw + 14em);
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: -10vw;
}

.know_section .heading span br {
	display: none;
}

.know_inbox {
	width: 100%;
	position: relative;
}

.know_inbox ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 90%;
	counter-reset: knownum 0;
	margin: 0 auto 80px;
}

.know_inbox ol li {
	background: #fff;
	width: 100%;
	counter-increment: knownum 1;
	position: relative;
	margin-top: 80px;
}

.know_inbox ol li::before {
	content: counter(knownum, decimal-leading-zero);
	font-family: ivypresto-display, serif;
	font-style: italic;
	font-size: 55px;
	color: #F5F0ED;
	position: absolute;
	top: -1.1em;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	line-height: 1;
	width: 100%;
	text-align: center;
}

.know_inbox ol li::after {
	content: '';
	width: 100px;
	height: 1px;
	background: #F5F0ED;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 55px;
	right: 0;
	margin: auto;
}

.know_inbox ol li .text {
	padding: 5px 30px 30px;
	position: relative;
}

.know_inbox ol li .text::before {
	content: '';
	width: 90%;
	height: 25px;
	background: #fff;
	position: absolute;
	top: -24px;
	left: 0;
	right: 0;
	margin: auto;
}

.know_inbox ol li .text .inheading {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	text-align: center;
}

.know_inbox ol li .text .know_btn {
	width: 90%;
	height: 50px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background: #f7f7f7;
	border: 1px solid #8e8e8e;
	border-radius: 100px;
	margin: 20px auto 0;
}

.know_inbox ol li .text .know_btn::after {
	content: "";
	width: 12px;
	height: 5px;
	background: url(../img/arrow01_gray.svg) no-repeat center/contain;
	margin-left: 10px;
}

/*20240119 追加 inokuchi ここから*/
.column_section {
	background-color: #fff;
	padding: 30px 0;

	.heading {
		font-size: 12px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		border-bottom: 1px solid #63636D;
		margin-bottom: 30px;

		& span {
			font-size: 35px;
			margin-right: 20px;
		}
	}

	.column_slider {
		margin: 0 45px 75px;

		.slick-track {
			display: flex;
		}

		.slick-slide {
			height: auto !important;
			margin: 0 10px;
		}

		.arrows {
			position: absolute;
			bottom: calc(50% - 17.5px);
			margin: auto;
			background-color: #6E6E6E;
			width: 35px;
			height: 35px;
			border-radius: 50%;
			opacity: 1;
			cursor: pointer;

			&::before {
				content: '';
				width: 8px;
				height: 8px;
				border-top: 2px solid #fff;
				border-right: 2px solid #fff;
				transform: rotate(45deg);
				position: absolute;
				top: 0;
				bottom: 0;
				right: 3px;
				left: 0;
				margin: auto;
			}

			&.prev {
				left: -45px;

				&::before {
					transform: rotate(-135deg);
					right: -3px;
				}
			}

			&.next {
				right: -45px;
			}
		}
	}
}

.columnbtn {
	width: 90%;
	max-width: 400px;
	height: 45px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #8e8e8e;
	color: #fff;
	border-radius: 100px;
	margin: 50px auto 0;

	& span {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		text-align: center;

		&::after {
			content: "";
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 3px 0 3px 6px;
			border-color: transparent transparent transparent #fff;
			margin-left: 10px;
		}
	}
}

/*20240119 追加 inokuchi ここまで*/


.news_section {
	background: #fff;
	backdrop-filter: blur(20px);
	padding: 30px 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.news_section>div {
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.news_section>div .heading {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #63636D;
	margin-bottom: 30px;
}

.news_section>div .heading span {
	font-size: 35px;
	margin-right: 20px;
}

.news_section>div>div ul li {
	border-bottom: 1px solid #DCDCDC;
}

.news_section>div>div ul li a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 0;
}

.news_section>div>div ul li a span:first-child {
	margin-right: 5%;
	min-width: 5em;
	color: #c0a799;
}

.news_section>div>div ul li a span:last-child {
	width: 100%;
}

.news_section>div .newsbtn {
	width: 90%;
	max-width: 400px;
	height: 45px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #8e8e8e;
	color: #fff;
	border-radius: 100px;
	margin: 50px auto 0;
}

.news_section>div .newsbtn span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.news_section>div .newsbtn span::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	margin-left: 10px;
}

.news_section>div>div.news_list ul li a {
	flex-wrap: wrap;
}

.news_section .news_box .news_list ul li a span.date {
	width: 100%;
	margin-bottom: 5px;
}

.news_section .column_box .column_list ul li a span.thumbnail {
	width: 137px;
	min-width: 137px;
	height: 80px;
	position: relative;
	overflow: hidden;
}

.news_section .column_box .column_list ul li a span.thumbnail::before {
	content: '';
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #F5F0ED;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}

.news_section .column_box .column_list ul li a span img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.movie_block {
	background: rgba(99, 99, 108, .8);
	backdrop-filter: blur(20px);
	padding: 30px 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.movie_block .inner .heading {
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
	color: #fff;
}

.movie_block .inner .inbox div {
	width: 90%;
	margin: 0 auto 5%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.movie_block .inner .inbox div iframe,
.movie_block .inner .inbox div object,
.movie_block .inner .inbox div embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fixed_banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 999;
}

.fixed_banner .inner {
	height: 100%;
	width: 100%;
}

.fixed_banner .inner ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	background: #fff;
}

.fixed_banner .inner ul li {
	width: 100%;
	height: 100%;
}

.fixed_banner .inner ul li.balloon {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	font-size: 10px;
	font-weight: bold;
	height: auto;
	pointer-events: none;
	background: rgba(255, 255, 255, .5);
	backdrop-filter: blur(20px);
	padding: 5px 22vw 5px 5px;
	line-height: 1.2;
}

.fixed_banner .inner ul li.balloon::after {
	content: "";
	width: 25vw;
	height: 25vw;
	background: url(../img/footer_img.png) no-repeat bottom center/contain;
	position: absolute;
	bottom: 0;
	right: 0;
}

.fixed_banner .inner ul li.balloon>span span {
	color: #FD5C5C;
}

.fixed_banner .inner ul li.balloon>span span:first-of-type {
	margin-left: 0;
}

.fixed_banner .inner ul li.balloon small {
	font-size: 9px;
	display: block;
}

.fixed_banner .inner ul li.tel {
	width: 40%;
	order: 3;
}

.fixed_banner .inner ul li.tel a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	line-height: 1;
	background: #5F5F5F url(../img/ico_tel_white.svg) no-repeat center/auto 50%;
}

.fixed_banner .inner ul li.tel a>span {
	display: none;
}

.fixed_banner .inner ul li.contact {
	order: 2;
}

.fixed_banner .inner ul li.contact a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 11px;
	background: #D95E59;
	color: #fff;
}

.fixed_banner .inner ul li.contact a::before {
	content: "";
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
	background: url(../img/ico_mail.svg) no-repeat center/contain;
}

.fixed_banner .inner ul li.line {
	height: 100%;
	position: relative;
	order: 1;
}

.fixed_banner .inner ul li.line a {
	background: #4CC764;
	height: 100%;
	position: relative;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	padding-left: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.fixed_banner .inner ul li.line a::before {
	content: '';
	width: 100%;
	max-width: 35px;
	height: 100%;
	margin-right: 10px;
	background: url(../img/ico_line.png) no-repeat center/contain;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	margin: auto;
	z-index: 1;
}

.fixed_banner .inner ul li.line a>span {
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.fixed_banner .inner ul li.line a>span span {
	color: #4CC764;
	background: #f5ff00;
	padding: 0 5px;
	border-radius: 100px;
}

.bottom_fix+footer .footer_under {
	padding-bottom: 150px;
}

/*==================================================
$page
==================================================*/
.property_title_block {
	background: #fff;
	position: relative;
	padding: 20px 0;
}

.property_title_block .label {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.property_title_block .label span {
	min-width: 80px;
	text-align: center;
	padding: 0 10px;
	margin-right: 10px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: bold;
}

.property_title_block .label span.area {
	color: #fff;
	background: #6e6e6e;
	border: 1px solid #6e6e6e;
}

.property_title_block .label span.station {
	color: #6e6e6e;
	border: 1px solid #6e6e6e;
	background: #fff;
}

.property_title_block .title strong {
	font-size: 25px;
	font-weight: bold;
	display: block;
}

.property_title_block .title span {
	font-size: 10px;
	color: #a7adb6;
	font-weight: bold;
	display: block;
}

.title_block {
	background: #F5F0ED;
	position: relative;
	overflow: hidden;
	margin-bottom: 80px;
}

.title_block::before {
	content: '';
	background: url(../img/bg_fix.jpg) no-repeat center/cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 1;
	mix-blend-mode: hard-light;
	opacity: .03;
	pointer-events: none;
}

.title_block .inner {
	padding: 50px 0 80px;
	z-index: 2;
}

.title_block .inner::before {
	content: '';
	width: 320px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -200px;
	background: url(../img/deco_title.svg) no-repeat top center/contain;
	pointer-events: none;
	z-index: -1;
}

.title_block .inner .title {
	display: block;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
}

.title_block .inner .title .label {
	font-size: 14px;
	width: 130px;
	padding: 5px 10px;
	background: #fff;
	border-radius: 5px;
	display: block;
	text-align: center;
}

.title_block .inner .title+p {
	margin-bottom: 30px;
}

.title_block .inner .title+p br {
	display: none;
}

.title_block .inner .tag ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.title_block .inner .tag ul li {
	padding: 5px 15px;
	background: #fff;
	border-radius: 5px;
	margin-right: 5px;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	margin-bottom: 5px;
	font-size: 12px;
}

.title_block .inner .banner {
	padding-top: 5%;
}

.title_block .inner .banner a {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow: hidden;
}

.lightbox div {
	width: 95vw;
	height: 90vh;
}

.lightbox div img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lightbox div .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.lightbox div .close::before,
.lightbox div .close::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.lightbox div .close::after {
	transform: rotate(-45deg);
}

/*==================================================
$property
==================================================*/
.property_link a {
	width: 90%;
	max-width: 400px;
	height: 56px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #8e8e8e;
	color: #fff;
	border-radius: 100px;
	margin: 0 auto 50px;
}

.property_link a span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.property_link a span::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	margin-left: 10px;
}

.property_list .heading {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 50px;
	border-bottom: 3px solid #F5F0ED;
	width: 100%;
	display: block;
	position: relative;
}

.property_list .heading::after {
	content: '';
	width: 80px;
	height: 3px;
	background: #63636D;
	position: absolute;
	bottom: -3px;
	left: 0;
}

.property_list .heading span {
	color: #41B591;
}

.property_list .heading+small {
	text-align: right;
	margin-bottom: 20px;
	display: block;
	font-size: 14px;
}

.property_list .subheading {
	font-weight: bold;
	margin-bottom: 20px;
	padding: 5px 20px;
	border-left: 3px solid #63636d;
	background: #f5f0ed;
}

/*20250905追加*/
.property_list>ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1366px;
    margin: auto;
}	

.property_list>ul>li {
	/*padding: 5%;
	border: 1px solid #C0A799;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 50px;*/
	width: 100%;
    position: relative;
    margin: auto;
    padding-left: 5%;
    margin-bottom: -45px;
}

.property_list>ul>li .campaign {
	display: block;
	font-size: 16px;
	color: #fff;
	background: #C0A799;
	margin-bottom: 20px;
	padding: 10px 15px;
	width: 100%;
	order: 1;
	line-height: 1.5;
}

.property_list>ul>li .campaign>span {
	display: block;
}

.property_list>ul>li .name {
	font-size: 18px;
	font-weight: bold;
	order: 3;
	margin-bottom: 15px;
	margin-top: 15px;
}

.property_list>ul>li .tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	order: 2;
	width: 100%;
}

.property_list>ul>li .tag li {
	font-size: 12px;
	padding: 5px 10px;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.property_list>ul>li .inbox {
	width: 100%;
	margin-top: 0px;
	align-items: stretch;
	/*display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	order: 4;*/
}

.property_list>ul>li .inbox .left {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.property_list>ul>li .inbox .left::after {
	content: '';
	width: 1px;
	height: 100%;
	/*ackground: #DCDCDC;*/
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10%;
	margin: auto;
}

.property_list>ul>li .inbox .left .badge {
	width: 50px;
	height: 50px;
	border-radius: 100px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -2%;
	left: -5%;
	z-index: 2;
	line-height: 1.2;
	font-weight: bold;
	animation: scale 1s ease-in-out alternate infinite;
	font-size: 9px;
}

@keyframes scale {
	0% {
		transform: scale(1, 1);
	}

	100% {
		transform: scale(1.2, 1.2);
	}
}

.property_list>ul>li .inbox .left .badge.freerent {
	background: #D95E59;
}

.property_list>ul>li .inbox .left .badge.recommend {
	background: #D5801D;
}

.property_list>ul>li .inbox .left .badge.attention {
	background: #e61d1d;
}

.property_list>ul>li .inbox .left .image {
	margin-bottom: 20px;
	width: 100%;
	overflow: hidden;
}

.property_list>ul>li .inbox .left .image div {
	width: 100%;
	overflow: hidden;
	position: relative;
	border: 1px solid #fff;
	padding: 100px 0;
	margin-bottom: 10px;
}

.property_list>ul>li .inbox .left .image div img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.property_list>ul>li .inbox .left .image div.floor img {
	width: 90%;
	height: 90%;
	object-fit: contain;
}

.property_list>ul>li .inbox .left .image div span {
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	padding: 5px 20px;
	z-index: 2;
	border: 1px solid #dcdcdc;
}

.property_list>ul>li .inbox .left .text p {
	font-size: 16px;
}

.property_list>ul>li .inbox .right {
	width: 100%;
    padding: 25px 25px 0 25px;
    background: #fff;
    top: -60px;
    position: relative;
    z-index: 2;
	border: 1px solid #dcdcdc;
	left: -20px;
}

.property_list>ul>li .inbox .right .data {
	margin-bottom: 30px;
}

.property_list>ul>li .inbox .right .txt dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DCDCDC;
}

.property_list>ul>li .inbox .right .txt dl dt {
	width: 5em;
    min-width: 5em;
    color: #C0A799;
    margin-right: 1em;
}

.property_list>ul>li .inbox .right .data dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}

.property_list>ul>li .inbox .right .data dl dt {
	width: 5em;
	min-width: 5em;
	color: #C0A799;
	margin-right: 1em;
	font-size: 12px;
	font-weight: bold;
	border-right: 1px solid #dcdcdc;
}

.property_list>ul>li .inbox .right .data dl dd {
	font-size: 10px;
}

.property_list>ul>li .inbox .right .data dl dd {
	font-size: 10px;
}

.property_list>ul>li .inbox .right .data dl.rent dd,
.property_list>ul>li .inbox .right .data dl.cost dd {
	font-size: 16px;
	font-weight: bold;
}

.property_list>ul>li .inbox .right .data div.cost,
.pickup_slider_item div.cost {
	text-align: center;
	color: #C0A799;
	background-color: #ece3e3;
	border: #C0A799 1px solid;
	border-radius: 10px;
	font-weight: bold;
}

.property_list>ul>li .inbox .right .data div.cost {
	padding: 4px;
	margin-bottom: 7px;
}

.pickup_slider_item div.cost {
	padding: 4px;
	width: 90%;
    margin: 8px auto 0;
}

.pickup_slider_item div.cost p {
	font-size: 0.85rem!important;
}

.property_list>ul>li .inbox .right .data dl dd .label {
	font-size: 11px;
	font-weight: bold;
	color: #fff;
	background: #FD5C5C;
	border-radius: 100px;
	padding: 5px 20px;
	margin-left: 20px;
	display: inline-block;
}

.property-btn {
	display: flex;
	position: relative;
	left: 0%;
	gap: 10px;
}

.property-btn a {
	max-width: 230px;
	margin-bottom: 0px;
	height: 40px;
}

.property-btn a span{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 12px;
    color: #fff;
    position: relative;
}


.property-btn .contact-btn {
	max-width: 230px;
	width: 90%;
	height: 40px;
	margin: auto;
	background: #D95E59;
	border-radius: 100px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.pager {
	padding: 50px 0;
	margin: 0 auto;
	text-align: center;
}

.wp-pagenavi {
	width: 95%;
	margin: auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin: 5px;
	transition: .3s;
	text-decoration: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
}

.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: none;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	position: relative;
	overflow: hidden;
	text-indent: -300%;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: 2px solid #63636D;
	border-left: 2px solid #63636D;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.wp-pagenavi .nextpostslink::before {
	border: none;
	border-top: 2px solid #63636D;
	border-right: 2px solid #63636D;
}

.wp-pagenavi .current {
	background-color: #616161;
	color: #fff;
}

.pager ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.pager ul li a {
	margin: 5px;
	padding: 5px 10px;
	background-color: #fff;
	display: inline-block;
	transition: .3s;
	text-decoration: none;
}

/*==================================================
$property detail
==================================================*/
.main_slider_wrap {
	margin-bottom: 60px;
}

.main_slider_wrap .main_slider {
	margin-bottom: 30px;
	width: 100%;
	height: 400px;
}

.main_slider_wrap .main_slider div {
	height: 100%;
	background: #ededed;
}

.main_slider_wrap .main_slider .main_slider_item {
	position: relative;
}

.main_slider_wrap .main_slider .main_slider_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_slider_wrap .main_slider .main_slider_item span {
	padding: 10px 20px;
	background: rgba(0, 0, 0, .8);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	color: #fff;
	height: auto;
}

.main_slider_wrap .main_slider .main_slider_item i {
	background: url(../img/ico_zoom.svg) no-repeat center/contain;
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 15px;
	right: 15px;
	margin: auto;
	z-index: 2;
	cursor: pointer;
}

.main_slider_wrap .main_slider_thumbnail {
	width: 80%;
	margin: auto;
}

.main_slider_wrap .main_slider_thumbnail .main_slider_item {
	width: calc(80vw / 3);
	height: 70px;
	background: #ededed;
	margin-right: 10px;
}

.main_slider_wrap .main_slider_thumbnail .main_slider_item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.property_detail_upper .property_detail_data {
	width: 100%;
}

.property_detail_upper .property_detail_data dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #dcdcdc;
	line-height: 1.2;
}

.property_detail_upper .property_detail_data dl:first-child {
	border-top: 1px solid #dcdcdc;
}

.property_detail_upper .property_detail_data dl dt {
	font-size: 18px;
	font-weight: bold;
	color: #d5801d;
	width: 50px;
	min-width: 70px;
	margin-right: 10px;
}

.property_detail_upper .property_detail_data dl dd {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.property_detail_upper .property_detail_data dl dd>span {
	font-size: 18px;
	font-weight: bold;
}

.property_detail_upper .property_detail_data dl dd a {
	width: 100px;
	min-width: 100px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #6e6e6e;
	border: 1px solid #6e6e6e;
	border-radius: 100px;
	font-size: 10px;
	color: #fff;
}

.property_detail_upper .property_detail_data dl dd a span::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}

.property_detail_upper .property_detail_data>div {
	margin-bottom: 20px;
}

.property_detail_upper .pickup_tag {
	width: 100%;
	margin-top: 30px;
}

.property_detail_upper .pickup_tag ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.property_detail_upper .pickup_tag ul li {
	width: 32%;
	/* background: #efefef; */
	border-radius: 100px;
	font-size: 10px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 10px;
	margin-right: 1%;
	margin-bottom: 2%;
	border: 1px solid #efefef;
}

.property_detail_upper .pickup_tag ul li:nth-child(3n) {
	margin-right: 0;
}

.property_detail_upper .pickup_tag ul li::before {
	content: "";
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
}

.property_detail_upper .pickup_tag ul li.new::before {
	background: url(../img/ico_building.svg) no-repeat center/contain;
}

.property_detail_upper .pickup_tag ul li.high_grade::before {
	background: url(../img/ico_highgrade.svg) no-repeat center/contain;
}

.property_detail_upper .pickup_tag ul li.contactless_key::before {
	background: url(../img/ico_key.svg) no-repeat center/contain;
}

.property_detail_upper .pickup_tag ul li.pet::before {
	background: url(../img/ico_pet.svg) no-repeat center/contain;
}

.property_detail_upper .property_banner {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto 0;
}

.floor_list {
	width: 100%;
	padding: 30px 0 0;
	position: relative;
}

.floor_list>.heading {
	display: block;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.floor_detail_item.on {
	display: block !important;
}

.floor_detail_item .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.floor_detail_item .inner .name {
	font-size: 25px;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 50px;
	display: block;
	border-bottom: 1px solid #C0A799;
	position: relative;
	width: 100%;
}

.floor_detail_item .inner .name::after {
	content: '';
	width: 160px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.floor_detail_item .inner .images_slider_wrap {
	width: 100%;
	margin-bottom: 30px;
}

.floor_detail_item .inner .images_slider_wrap .images_slider {
	margin-bottom: 15px;
}

.floor_detail_item .inner .images_slider_wrap .images_slider .arrows {
	width: 35px;
	height: 35px;
	background: #6E6E6E;
	border-radius: 100px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -5%;
	margin: auto;
	z-index: 2;
}

.floor_detail_item .inner .images_slider_wrap .images_slider .arrows.next {
	left: auto;
	right: -5%;
	transform: scale(-1, 1);
}

.floor_detail_item .inner .images_slider_wrap .images_slider .arrows::before {
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 3px;
	right: 0;
	margin: auto;
}

.floor_detail_item .inner .images_slider_wrap .images_slider .images_slider_item {
	position: relative;
	height: 300px;
}

.floor_detail_item .inner .images_slider_wrap .images_slider .images_slider_item img {
	width: 100%;
	height: calc(100% - 40px);
	object-fit: contain;
}

.floor_detail_item .inner .images_slider_wrap .images_slider .images_slider_item span {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 5px 10px;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	text-align: center;
}

.floor_detail_item .inner .images_slider_wrap .images_slider_thumbnail .images_slider_item {
	width: 23%;
	margin-right: 15px;
	height: 50px;
	background: #ededed;
}

.floor_detail_item .inner .images_slider_wrap .images_slider_thumbnail .images_slider_item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.floor_detail_item .inner .images_slider_wrap .images_slider_thumbnail .images_slider_item span {
	display: none;
}

.floor_detail_item .inner .floor_layout {
	width: 100%;
	border: 1px solid #63636D;
	padding: 20px;
}

.floor_detail_item .inner .floor_layout div img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.floor_detail_item .inner .floor_info {
	width: 100%;
}

.floor_detail_item .inner .floor_info .heading {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.floor_detail_item .inner .floor_info dl {
	font-size: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	border-top: 1px solid #DCDCDC;
}

.floor_detail_item .inner .floor_info dl dt {
	color: #C0A799;
	min-width: 30%;
	width: 30%;
	padding-right: 1em;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #DCDCDC;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.floor_detail_item .inner .floor_info dl dd {
	width: calc(100% - 30%);
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #DCDCDC;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.floor_detail_item .inner .floor_info dl dd .emphasize {
	font-size: 20px;
	font-weight: bold;
	color: #FD5C5C;
}

.floor_detail_data .floor_detail_data_facility {
	background: #efefef;
	padding: 30px 0;
	margin-bottom: 100px;
}

.floor_detail_data .floor_detail_data_facility .heading {
	display: block;
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.floor_detail_data .floor_detail_data_facility ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.floor_detail_data .floor_detail_data_facility ul li {
	width: 31%;
	height: 44px;
	margin: 0 1% 2%;
	background: #fff;
	border-radius: 5px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
	font-weight: bold;
	font-size: 10px;
	line-height: 1;
	position: relative;
	padding: 20px 0px 0px;
}

.floor_detail_data>.inner {
	width: 90%;
	margin: 50px auto 0;
	padding-top: 50px;
	border-top: 1px solid #DCDCDC;
}

.floor_detail_data>.inner>div {
	width: 100%;
	margin-bottom: 50px;
}

.floor_detail_data>.inner>div .heading {
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #C0A799;
	position: relative;
	font-weight: bold;
	text-align: center;
}

.floor_detail_data>.inner>div dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
	margin-bottom: 30px;
	font-size: 12px;
}

.floor_detail_data>.inner>div dl dt {
	min-width: 30%;
	width: 30%;
	padding-right: 1em;
	padding: 10px 0;
	border-bottom: 1px solid #333;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.floor_detail_data>.inner>div dl dd {
	width: calc(100% - 30%);
	padding: 10px;
	border-bottom: 1px solid #DCDCDC;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.floor_detail_data>.inner>div dl dd .emphasize {
	font-size: 20px;
	font-weight: bold;
	color: #FD5C5C;
}

.floor_detail_data>.inner>div ul:not(.dots) {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.floor_detail_data>.inner>div ul:not(.dots) li {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background: #F5F0ED;
	border-radius: 5px;
	margin: 0 5px 5px 0;
	text-align: center;
	padding: 5px 15px;
}

.floor_detail_data>.inner>div .map {
	position: relative;
	padding: 35% 0;
	height: 0;
	overflow: hidden;
}

.floor_detail_data>.inner>div .map iframe,
.floor_detail_data>.inner>div .map object,
.floor_detail_data>.inner>div .map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.floor_detail_data>.inner>div .banner {
	display: block;
	width: 100%;
	margin: 0 auto 20px;
	position: relative;
}

.floor_detail_data>.inner>div .banner span {
	font-size: 10px;
	color: #FD5C5C;
	line-height: 1.3;
	padding-left: 2em;
	text-indent: -1em;
	display: block;
	margin-top: 10px;
}

.property_detail_under_link {
	padding: 30px 0;
	background: #6E6E6E;
	/* position: sticky;
	top: 120px; */
	z-index: 10;
	margin-top: 30px;
	margin-bottom: 30px;
}

.property_detail_under_link.after {
	background: none;
	padding-top: 0;
}

.property_detail_under_link ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.property_detail_under_link ul li {
	width: 23.5%;
	height: 50px;
}

.property_detail_under_link a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 5px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	position: relative;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.property_detail_under_link a::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
	width: 10px;
	height: 5px;
	background: url(../img/arrow05.svg) no-repeat center/contain;
}

.property_detail_under_link.after a::after {
	transform: scale(1, -1);
	top: 10px;
	bottom: auto;
}

.property_detail_under_link a.active {
	background: #41b591;
	color: #fff;
}

.property_detail_under_link a.active::after {
	background: url(../img/arrow05_white.svg) no-repeat center/contain;
}

.property_detail_under_link .floor_list_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.property_detail_under_link .floor_list_btn>span {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	margin: 20px 0 10px;
}

.property_detail_under_link.after .floor_list_btn>span {
	color: inherit;
}

.property_detail_under_link .floor_list_btn .floor_list_btn_item {
	width: 32%;
	max-width: 350px;
	height: 50px;
	margin-bottom: 1%;
}

/*==================================================
$contact
==================================================*/
.contact_block .inner .heading {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact_block .inner .flow {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	counter-reset: flow 0;
	position: relative;
	max-width: 700px;
	margin: 0 auto 50px;
}

.contact_block .inner .flow::before {
	content: '';
	width: 96%;
	height: 1px;
	background: #DCDCDC;
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}

.contact_block .inner .flow li {
	color: #DCDCDC;
	text-align: center;
	counter-increment: flow 1;
	position: relative;
	z-index: 2;
}

.contact_block .inner .flow li::before {
	content: '';
	width: 56px;
	min-width: 56px;
	height: 56px;
	background: #DCDCDC;
	border-radius: 100px;
	display: block;
	margin-bottom: 10px;
}

.contact_block .inner .flow li::after {
	content: counter(flow, decimal-leading-zero);
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 100px;
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-family: ivypresto-display, serif;
	font-style: italic;
	letter-spacing: .1em;
}

.contact_block .inner .flow li.current {
	color: #FD5C5C;
	font-weight: bold;
}

.contact_block .inner .flow li.current::before {
	background: rgb(253, 92, 92);
	background: -moz-linear-gradient(-45deg, rgba(253, 92, 92, 1) 15%, rgba(253, 92, 92, 1) 15%, rgba(65, 181, 145, 1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(253, 92, 92, 1) 15%, rgba(253, 92, 92, 1) 15%, rgba(65, 181, 145, 1) 100%);
	background: linear-gradient(135deg, rgba(253, 92, 92, 1) 15%, rgba(253, 92, 92, 1) 15%, rgba(65, 181, 145, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd5c5c', endColorstr='#41b591', GradientType=1);
}

.contact_block .inner .flow li.current::after {
	background: #fff;
	color: #63636D;
	font-weight: normal;
}

.form_box dl {
	border-bottom: 1px solid #DCDCDC;
}

.form_box dl dt {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	background: #f1f1f1;
	padding: 10px;
}

.form_box dl dt .required {
	font-size: 12px;
	font-weight: bold;
	background: #FD5C5C;
	color: #fff;
	padding: 5px 20px;
	margin-right: 10px;
}

.form_box dl dd {
	width: 100%;
	font-size: 16px;
	padding: 20px 0;
}

.form_box dl dd br {
	display: none;
}

.form_box dl dd small,
.form_box dl dd span {
	margin-bottom: 10px;
	display: block;
}

.form_box dl dd input[type="text"],
.form_box dl dd input[type="email"],
.form_box dl dd select,
.form_box dl dd textarea {
	padding: 10px 20px;
	border: 1px solid #DCDCDC;
	border-radius: 5px;
	width: 100%;
}

.form_box dl dd textarea {
	height: 180px;
}

.form_box dl dd .nowrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.form_box dl dd .nowrap>* {
	width: 100%;
	margin: 0 5px;
}

.form_box dl dd .nowrap>*:first-child {
	margin-left: 0;
}

.form_box dl dd .nowrap>*:last-child {
	margin-right: 0;
}

.form_box dl dd .radio input[type="radio"],
.form_box dl dd .checkbox input[type="checkbox"] {
	display: none;
}

.form_box dl dd .radio input[type="radio"]+span,
.form_box dl dd .checkbox input[type="checkbox"]+span {
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.form_box dl dd .radio input[type="radio"]+span::before,
.form_box dl dd .checkbox input[type="checkbox"]+span::before {
	content: '';
	width: 25px;
	min-width: 25px;
	height: 25px;
	border: 1px solid #C4C4C4;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}

.form_box dl dd .radio input[type="radio"]+span::before {
	border-radius: 100px;
}

.form_box dl dd .radio input[type="radio"]:checked+span::after {
	content: '';
	width: 15px;
	height: 15px;
	background: #FD5C5C;
	border-radius: 100px;
	position: absolute;
	top: 2px;
	bottom: 0;
	left: 6px;
	margin: auto;
}

.form_box dl dd .checkbox input[type="checkbox"]:checked+span::after {
	content: '';
	width: 8px;
	height: 18px;
	border-bottom: 5px solid #FD5C5C;
	border-right: 5px solid #FD5C5C;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 5px;
	left: 7px;
	margin: auto;
}

.form_box dl dd .notes {
	font-size: 14px;
}

.form_box dl.floorplan dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.form_box dl.floorplan dd>.checkbox {
	width: 49%;
	margin-bottom: 2%;
}

.form_box .form_button {
	padding: 80px 0;
}

.form_box .form_button button,
.form_box .form_button input[type="submit"] {
	background: #FD5C5C;
	color: #fff;
	max-width: 420px;
	width: 90%;
	margin: auto;
	height: 55px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border: 1px solid #FD5C5C;
	font-size: 16px;
	font-weight: bold;
}

.form_box.thanks strong {
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.form_box.thanks p {
	text-align: center;
}

.mw_wp_form .form_box .horizontal-item+.horizontal-item {
	margin-left: 0;
}

.contact_telbox {
	background: #41B591;
}

.contact_telbox .inner {
	padding: 50px 0;
}

.contact_telbox .inner dl {
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
}

.contact_telbox .inner dl dt {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 30px;
}

.contact_telbox .inner dl dt span {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: rgba(255, 255, 255, .3);
	border-radius: 5px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 33%;
	padding: 5px;
}

.contact_telbox .inner dl dt span:last-child {
	margin-bottom: 0;
}

.contact_telbox .inner dl dd {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.contact_telbox .inner dl dd div>* {
	font-weight: bold;
	text-align: center;
	display: block;
	color: #fff;
	line-height: 1.2;
}

.contact_telbox .inner dl dd div span {
	font-size: 16px;
	color: #FFFF2B;
	margin-bottom: 10px;
}

.contact_telbox .inner dl dd div a.tel {
	font-size: 35px;
	margin-bottom: 5px;
}

.contact_telbox .inner dl dd div a.tel::before {
	content: '';
	display: inline-block;
	width: 45px;
	height: 45px;
	background: #fff url(../img/ico_tel_red.svg) no-repeat center/60% auto;
	vertical-align: middle;
	border-radius: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}

.contact_telbox .inner dl dd div small {
	font-size: 14px;
	line-height: 1.5em;
}

.contact_telbox .inner dl dd div small a {
	text-decoration: underline;
}

.contact_telbox .inner>span {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	display: block;
	color: #fff;
}

/*221220s*/
.contact_privacy {
	padding: 25px 5% 0;
}

.contact_privacy_ttl {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
}

.contact_privacy_txt {
	margin-bottom: 35px;
}

.contact_doui {
	background-color: #F9F9F9;
	padding: 20px;
}

.contact_doui_ttl {
	font-size: 16px;
	font-weight: bold;
}

/*.contact_doui_txt {}*/
/*221220e*/

/*==================================================
$privacy
==================================================*/
.privacy_box {
	padding-bottom: 100px;
	line-height: 2;
}

.privacy_box a {
	color: #41B591;
}

.privacy_list {
	counter-reset: prinum 0;
}

.privacy_list>ol {
	margin-bottom: 50px;
}

.privacy_list>ol>li {
	counter-increment: prinum 1;
	margin-bottom: 50px;
}

.privacy_list>ol>li .heading {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
}

.privacy_list>ol>li .heading::before {
	content: counter(prinum)". ";
}

.privacy_list>ol>li>*:not(:last-child) {
	margin-bottom: 20px;
}

.privacy_list>ol>li .innumulist {
	counter-reset: priinnum 0;
}

.privacy_list>ol>li .innumulist li {
	counter-increment: priinnum 1;
	margin-bottom: 5px;
	padding-left: 1em;
	text-indent: -1em;
}

.privacy_list>ol>li .innumulist li::before {
	content: counter(priinnum)".";
	margin-right: .15em;
}

/*==================================================
$guide
==================================================*/
.guide_box {
	padding-bottom: 100px;
}

.guide_box .inner .heading {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}

.guide_box .inner .guide_list ol {
	counter-reset: guidenum 0;
	border-top: 1px solid #DCDCDC;
}

.guide_box .inner .guide_list ol li {
	counter-increment: guidenum 1;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	border-bottom: 1px solid #DCDCDC;
	padding: 50px 0;
}

.guide_box .inner .guide_list ol li::before {
	content: counter(guidenum, decimal-leading-zero);
	width: 50px;
	min-width: 50px;
	height: 50px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	font-size: 30px;
	color: #41B591;
	font-family: ivypresto-display, serif;
	margin-right: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.guide_box .inner .guide_list ol li div {
	width: 100%;
	padding-top: 8px;
}

.guide_box .inner .guide_list ol li div .guide_list_heading {
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: bold;
}

/*==================================================
$faq
==================================================*/
.faq_box {
	padding-bottom: 100px;
}

.faq_list {
	border-top: 1px solid #DCDCDC;
}

.faq_list dl {
	padding: 30px 0;
	border-bottom: 1px solid #DCDCDC;
}

.faq_list dl dt {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	margin-bottom: 30px;
}

.faq_list dl dt::before {
	content: 'Q';
	width: 50px;
	min-width: 50px;
	height: 50px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	font-size: 30px;
	color: #41B591;
	font-family: ivypresto-display, serif;
	margin-right: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.faq_list dl dd {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
}

.faq_list dl dd::before {
	content: 'A';
	width: 50px;
	min-width: 50px;
	height: 50px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
	color: #C0A799;
	font-family: ivypresto-display, serif;
	margin-right: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/*==================================================
$news
==================================================*/
.news_block {
	padding-bottom: 100px;
}

.news_block .inner .news_box .news_list ul li {
	border-bottom: 1px solid #DCDCDC;
}

.news_block .inner .news_box .news_list ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	font-size: 16px;
}

.news_block .inner .news_box .news_list ul li a .date {
	min-width: 6em;
	width: 6em;
	margin-right: 1em;
}

.news_block .inner .news_box .news_list ul li a .label {
	background: #C0A799;
	color: #fff;
	min-width: 130px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.news_block .inner .news_box .news_list ul li a .text {
	width: 100%;
	margin-top: 10px;
}

.news_block .news_title+.date {
	display: block;
}

/*--
2024/01/19 column追加変更　inokuchi
お知らせ、コラム共通投稿コンテンツ 
--*/
.column_block .column_title,
.news_block .news_title {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.3;
}

.column_block .incontents,
.news_block .incontents {
	padding: 50px 0;
}

.column_block .incontents h1,
.news_block .incontents h1 {
	font-weight: bold;
	font-size: 200%;
	margin-bottom: 20px;
}

.column_block .incontents h2,
.news_block .incontents h2 {
	font-weight: bold;
	font-size: 175%;
	margin-bottom: 20px;
}

.column_block .incontents h2.column-item_title,
.news_block .incontents h2.column-item_title,
.column_first_txt h2.column-item_title {
	font-weight: bold;
	font-size: 150%;
	margin-bottom: 20px;
}

.column_block .incontents h3,
.news_block .incontents h3 {
	font-weight: bold;
	font-size: 125%;
	margin-bottom: 20px;
}

.column_block .incontents h4,
.news_block .incontents h4 {
	font-weight: bold;
	font-size: 125%;
	margin-bottom: 20px;
}

.column_block .incontents h5,
.news_block .incontents h5 {
	font-weight: bold;
	font-size: 100%;
	margin-bottom: 20px;
}

.column_block .incontents h6,
.news_block .incontents h6 {
	font-weight: bold;
	font-size: 100%;
	margin-bottom: 20px;
}

.column_block .incontents pre,
.news_block .incontents pre {
	margin-bottom: 20px;
}

.column_block .incontents p,
.news_block .incontents p {
	margin-bottom: 20px;
}

.column_block .incontents p strong,
.news_block .incontents p strong {
	font-weight: bold;
}

.column_block .incontents p em,
.news_block .incontents p em {
	font-style: italic;
}

.column_block .incontents p a,
.news_block .incontents p a {
	text-decoration: underline;
	color: #41B591;
}

.column_block .incontents ul,
.news_block .incontents ul {
	margin-bottom: 20px;
}

.column_block .incontents ul li,
.news_block .incontents ul li {
	margin-bottom: 10px;
	padding-left: 2em;
	position: relative;
}

.column_block .incontents ul li::before,
.news_block .incontents ul li::before {
	content: '';
	width: .5em;
	height: .5em;
	background: #000;
	border-radius: 100px;
	position: absolute;
	top: .7em;
	left: .5em;
	margin: auto;
}

.column_block .incontents ol,
.news_block .incontents ol {
	counter-reset: newscount;
	margin-bottom: 20px;
}

.column_block .incontents ol li,
.news_block .incontents ol li {
	counter-increment: newscount;
	margin-bottom: 10px;
	padding-left: 2em;
	text-indent: -.8em;
}

.column_block .incontents ol li::before,
.news_block .incontents ol li::before {
	content: counter(newscount)'.';
	margin-right: 10px;
	display: inline-block;
}

.column_block .incontents blockquote:not([class]),
.news_block .incontents blockquote {
	display: block;
	padding: 30px;
	background: #f1f1f1;
	position: relative;
	margin-bottom: 20px;
}

.column_block .incontents blockquote:not([class])::before,
.news_block .incontents blockquote::before {
	content: '\201C';
	position: absolute;
	top: -.2em;
	left: .2em;
	margin: auto;
	font-size: 500%;
	font-weight: bold;
	line-height: 1;
	pointer-events: none;
}

.column_block .incontents blockquote:not([class]) p:last-child,
.news_block .incontents blockquote p:last-child {
	margin-bottom: 0;
}

.column_block .incontents img,
.news_block .incontents img {
	height: auto;
}

/*==================================================
$know
==================================================*/
.know_block {
	padding: 100px 0;
}

.know_headline {
	position: relative;
	margin-bottom: 100px;
	padding-bottom: 200px;
}

.know_headline::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	max-height: 500px;
	width: calc(100% - 15vw);
	background: url(../img/bg_fix.jpg) no-repeat center/cover;
}

.know_headline .inner {
	z-index: 2;
}

.know_headline .inner .heading {
	font-size: 20px;
	color: #fff;
	position: relative;
	padding: 50px 0 150px;
}

.know_headline .inner .heading strong span {
	background: #C0A799;
	padding: 0 10px;
	display: inline-block;
	margin-bottom: 10px;
}

.know_headline .inner .heading strong span:first-child {
	color: #63636D;
}

.know_headline .inner .heading strong span:last-child {
	font-size: 50px;
	line-height: 1.2;
}

.know_list>ol {
	counter-reset: knowlinum 0;
}

.know_list>ol>li {
	counter-increment: knowlinum 1;
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 60px;
	margin-bottom: 100px;
	line-height: 2;
}

.know_list>ol>li::before {
	content: '';
	width: 100vw;
	height: 1px;
	background: #707070;
	position: absolute;
	top: 0;
	right: 70%;
}

.know_list>ol>li .heading {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	padding: 42px 0 20px;
	border-bottom: 1px solid #707070;
	margin-bottom: 50px;
	min-height: 4.5em;
}

.know_list>ol>li .heading::after {
	content: counter(knowlinum, decimal-leading-zero);
	font-size: 100px;
	color: #C0A799;
	opacity: .5;
	line-height: .78;
	position: absolute;
	top: -.5em;
	left: .5em;
	font-family: ivypresto-display, serif;
	font-weight: normal;
}

.know_list>ol>li .heading small {
	font-size: 12px;
	font-family: ivypresto-display, serif;
	transform: rotate(90deg);
	position: absolute;
	top: -20px;
	left: -20px;
	font-weight: normal;
	text-align: left;
	letter-spacing: .2em;
}

.know_list>ol>li .heading span {
	font-size: 30px;
	color: #C0A799;
}

/*.know_list>ol>li .inner .col2 {}*/
.know_list>ol>li .inner .col2>div {
	width: 100%;
}

.know_list>ol>li .inner p {
	margin-bottom: 30px;
	counter-reset: knowliinnum 0;
}

.know_list>ol>li .inner p .num {
	counter-increment: knowliinnum 1;
	position: relative;
	display: inline-block;
	padding: 0 1em;
}

.know_list>ol>li .inner p .num::before {
	content: counter(knowliinnum);
	display: inline-block;
	color: #41B591;
}

.know_list>ol>li .inner p .num::after {
	content: '';
	width: 1.2em;
	height: 1.2em;
	border-radius: 100px;
	border: 1px solid #41B591;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.know_list>ol>li .inner .image {
	margin-bottom: 30px;
}

.know_list>ol>li .inner .image * {
	width: 100%;
}

.know_list>ol>li .inner .inarrowimage strong {
	display: block;
	text-align: center;
	font-size: 20px;
	color: #41B591;
	margin-bottom: 10px;
	position: relative;
	width: 100%;
	font-weight: bold;
}

.know_list>ol>li .inner .inarrowimage strong::after {
	content: '';
	width: 15em;
	height: 1px;
	background: #707070;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.know_list>ol>li .inner .inarrowimage div {
	width: 100%;
	margin-bottom: 100px;
	padding-top: 10px;
	position: relative;
}

.know_list>ol>li .inner .inarrowimage div span {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.know_list>ol>li .inner .inarrowimage .left::after {
	content: '';
	width: 80px;
	height: 60px;
	background: url(../img/arrow03.svg) no-repeat center/contain;
	position: absolute;
	bottom: -90px;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(90deg);
}

.know_list>ol>li .inner .inballoonblock>div {
	display: block;
	text-align: center;
	font-size: 16px;
	background: #fff;
	width: 100%;
	margin: 0 auto 30px;
	padding: 5%;
	position: relative;
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.1));
}

.know_list>ol>li .inner .inballoonblock>div::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: auto;
}

.know_list>ol>li .inner .inballoonblock>div span {
	color: #41B591;
}

.know_list>ol>li .inner .inballoonblock>div strong {
	font-size: 35px;
	color: #FF8A03;
	line-height: 1;
}

.know_list>ol>li .inner .inballoonblock>span {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.know_list>ol>li .inner .inballoonblock>span img {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

.know_list>ol>li .inimages .inimages_slider {
	width: 100%;
	position: relative;
	padding: 45% 0;
}

.know_list>ol>li .inimages .inimages_slider * {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.know_list>ol>li .inimages .inimages_slider>div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.know_list>ol>li .inimages .inimages_slider .inimages_slider_item img {
	height: 100%;
	width: auto;
	max-width: none;
	position: absolute;
	top: 0;
	left: -50%;
}

.know_list>ol>li .inimages .inimages_slider .arrows {
	width: 45px;
	height: 95px;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 2;
	cursor: pointer;
}

.know_list>ol>li .inimages .inimages_slider .arrows::before {
	content: '';
	width: 20px;
	height: 20px;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 8px;
	right: 0;
	margin: auto;
}

.know_list>ol>li .inimages .inimages_slider .arrows.next {
	transform: scale(-1, 1);
	left: auto;
	right: 0;
}

/*==================================================
$404
==================================================*/
.notfound {
	padding: 100px 0;
}

.notfound .main_heading {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 50px;
	border-bottom: 3px solid #F5F0ED;
	width: 100%;
	display: block;
	position: relative;
}

.notfound .main_heading::after {
	content: '';
	width: 80px;
	height: 3px;
	background: #63636D;
	position: absolute;
	bottom: -3px;
	left: 0;
}

.notfound .main_heading span {
	display: block;
}

.notfound .main_heading span:first-child {
	font-size: 12px;
}

.notfound .inbox p {
	margin-bottom: 50px;
}

.VideoWrapper {
	width: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
	padding: 28.1% 0;
}

.VideoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.movie_block .inner {
	width: 100%;
}

.page_linkbox.fixed_banner {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	background: none;
	width: auto;
	height: auto;
	padding: 0;
}

/* 230307 */
p.address,
p.station,
p.price {
	font-size: 3.6vw;
	margin-bottom: 7px;
	text-align: center;
}

p.address span,
p.station span {
	display: none;
}

p.price {
	font-size: 4.5vw;
	font-weight: bold;
	color: #873030;
	margin-top: 14px;
}

p.price span.kugiri:first-of-type {
	display: none;
}

.info_box {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 5%;
	border-radius: 10px;
	font-weight: bold;
}

/* p.station {
	position: relative;
	padding-left:84.16px;
}

p.station::before {
	content: "アクセス：";
	font-size: 17px;
	color: #7e6759;
	position: absolute;
	top: 0;
	left: 0;
} */

.point_list ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 11%;
}

.point_list ul li {
	width: 48%;
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	margin-bottom: 4%;
	padding: 4% 2%;
	text-align: center;
	border: 1px solid #d1d1d9;
	font-size: 4.0vw;
}

.point_list ul li::before {
	content: "";
	width: 7vw;
	height: 7vw;
	display: inline-block;
	margin-right: 5%;
	margin-bottom: -5%;
}

.point_list ul li.ekitika::before {
	background: url(../img/point_ekitika.png) no-repeat center/contain;
}

.point_list ul li.pet::before {
	background: url(../img/point_pet.png) no-repeat center/contain;
}

.point_list ul li.hutarikurashi::before {
	background: url(../img/point_hutarikurashi.png) no-repeat center/contain;
}

.fixed_banner.page_linkbox .inner {
	width: 95%;
}

.fixed_banner.page_linkbox .page_contact_title {
	display: block;
	text-align: center;
	margin: 27% auto 5%;
	font-size: 5.3vw;
	font-weight: bold;
}

.fixed_banner.page_linkbox .inner ul {
	flex-wrap: wrap;
}

.fixed_banner.page_linkbox .inner ul li {
	height: auto;
	text-align: center;
	margin-bottom: 4%;
}

.fixed_banner.page_linkbox .inner ul li.tel a,
.fixed_banner.page_linkbox .inner ul li.contact a,
.fixed_banner.page_linkbox .inner ul li.line a {
	padding-top: 40px;
	padding-left: 0;
	display: block;
	padding-bottom: 5%;
}

.fixed_banner.page_linkbox .inner ul li.tel {
	width: 48%;
}

.fixed_banner.page_linkbox .inner ul li.contact {
	width: 48%;
}

.fixed_banner.page_linkbox .inner ul li.line {
	width: 100%;
}

.fixed_banner.page_linkbox .inner ul li.tel a::before,
.fixed_banner.page_linkbox .inner ul li.contact a::before,
.fixed_banner.page_linkbox .inner ul li.line a::before {
	left: 50%;
	transform: translateX(-50%);
	top: 7%;
}

.fixed_banner.page_linkbox .inner ul li.tel a::before {
	top: -40%;
}

.fixed_banner.page_linkbox .inner ul li.contact a::before {
	top: -45%;
}

.fixed_banner.page_linkbox .inner ul li.line a {
	flex-wrap: wrap;
	padding-bottom: 3%;
	padding-top: 3%;
	padding-left: 15%;
}

.fixed_banner.page_linkbox .inner ul li.line a::before {
	position: absolute;
	width: 11vw;
	height: 11vw;
	top: 50%;
	transform: translate(0, -50%);
	left: 10%;
}

.fixed_banner.page_linkbox .inner ul li.tel a small.tel_txt span {
	font-size: 4.0vw;
}

.fixed_banner.page_linkbox .inner ul li.tel a small.tel_txt {
	font-size: 5.0vw;
	text-align: center;
}

.contact_txt {
	font-size: 5.0vw;
}

.contact_txt small {
	font-size: 3.6vw;
	font-weight: normal;
	display: block;
}

.fixed_banner.page_linkbox .inner ul li.line a>span {
	font-size: 5.0vw;
	color: #63636D;
}

.fixed_banner.page_linkbox .inner ul li.line a>span span {
	color: #4CC764;
}

.fixed_banner.page_linkbox .inner ul li.line .sp_txt {
	text-align: center;
	font-size: 4.0vw;
	color: #4CC764;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.fixed_banner.page_linkbox .inner ul li.line .sp_txt::before,
.fixed_banner.page_linkbox .inner ul li.line .sp_txt::after {
	content: '';
	width: 1em;
	height: 1em;
	margin: 0 5px;
	background: url(../img/deco_text01.svg) no-repeat center/contain;
}

.fixed_banner.page_linkbox .inner ul li.line .sp_txt::after {
	transform: scale(-1, 1);
}

.property_detail_under_link.archive_link {
	background: #fff;
	margin-bottom: 12%;
	position: relative;
	top: auto;
}

.property_detail_under_link.archive_link ul {
	width: 100%;
	flex-wrap: wrap;
}

.property_detail_under_link.archive_link ul li {
	width: 31%;
	margin-bottom: 4%;
}

.property_detail_under_link.archive_link ul li a {
	background: #F5F0ED;
	display: block;
	font-size: 3.4vw;
	padding: 10% 3% 25%;
}

/* 230310 */
.point_list .main_txt_imgbox {
	margin-top: 5%;
}

.point_list ul li.shintiku::before {
	background: url(../img/point_shintiku.png) no-repeat center/contain;
}

.point_list ul li.highgrade::before {
	background: url(../img/point_highgrade.png) no-repeat center/contain;
}

.point_list ul li.key::before {
	background: url(../img/point_key.png) no-repeat center/contain;
}

.point_list ul li.market::before {
	background: url(../img/point_market.png) no-repeat center/contain;
}

.point_list ul li.park::before {
	background: url(../img/point_park.png) no-repeat center/contain;
}

.contact_box {
	padding: 50px 0;
}

.contact_box .inner strong {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.contact_box .inner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.contact_box .inner ul li {
	width: 48%;
	margin-bottom: 3%;
}

.contact_box .inner ul li.line {
	width: 100%;
}

.contact_box .inner ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	text-align: center;
	background: #4cc764;
	padding: 5px 10px;
	border: 2px solid #fff;
	height: 75px;
	color: #fff;
}

.contact_box .inner ul li a>span {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
}

.contact_box .inner ul li a::before {
	content: "";
	width: 100%;
	height: 1.5em;
}

.contact_box .inner ul li a>span small {
	display: block;
	width: 100%;
	font-size: 10px;
}

.contact_box .inner ul li.tel a {
	background: #63b393;
	border: 2px solid #63b393;
	color: #fff;
}

.contact_box .inner ul li.tel a::before {
	background: url(../img/ico_tel_white.svg) no-repeat center/contain;
}

.contact_box .inner ul li.form a {
	background: rgb(234, 99, 93);
	background: -moz-linear-gradient(top, rgba(234, 99, 93, 1) 0%, rgba(167, 77, 74, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(234, 99, 93, 1) 0%, rgba(167, 77, 74, 1) 100%);
	background: linear-gradient(to bottom, rgba(234, 99, 93, 1) 0%, rgba(167, 77, 74, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ea635d', endColorstr='#a74d4a', GradientType=0);
	color: #fff;
}

.contact_box .inner ul li.form a::before {
	background: url(../img/ico_mail.svg) no-repeat center/contain;
}

.contact_box .inner ul li.line a::before {
	background: url(../img/ico_line.png) no-repeat center/contain;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border: 1px solid #fff;
	border-radius: 5px;
}

.contact_box .inner ul li.line a>span small {
	color: #f5ff00;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.contact_box .inner ul li.line a>span small::before,
.contact_box .inner ul li.line a>span small::after {
	content: "";
	width: 1em;
	height: 1em;
	margin-right: 5px;
	background: url(../img/deco_text01.svg) no-repeat center/contain;
}

.contact_box .inner ul li.line a>span small::after {
	margin-right: 0;
	margin-left: 5px;
	transform: scale(-1, 1);
}

.contact_box .inner ul li.line a>span span {
	color: #fff;
}

.pankuzu {
	padding: 20px 0;
	font-size: 10px;
}

.pankuzu .inner {
	overflow-x: auto;
	width: 100%;
	padding: 5px 10px;
}

.pankuzu ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.pankuzu ul li {
	white-space: nowrap;
	margin-right: 10px;
}

.pankuzu ul li a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.pankuzu ul li:not(:last-child) a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #63636d;
	border-right: 1px solid #63636d;
	transform: rotate(45deg);
	margin-left: 10px;
}

.pankuzu ul li:last-child a {
	pointer-events: none;
}

/* 230518追加　空室一覧 */

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

	#vacancy .list {
		border-collapse: collapse;
		margin: auto;
		overflow-x: scroll;
	}

	#vacancy .list td,
	th {
		vertical-align: middle;
	}

	#vacancy .list th {
		border: solid 1px #666666;
		color: #000000;
		background-color: #41b591;
	}

	#vacancy .list td {
		border: solid 1px #666666;
		color: #000000;
		background-color: #ffffff;
		width: 90px;
	}

	#vacancy .list tr:nth-child(2) {
		background-color: #41b591;
		padding: 0.05rem;
	}

	#vacancy .list tr:nth-child(odd) td {
		background-color: #ffe3b5;
		padding: 0.05rem;
	}

	#vacancy .list tr>* {
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
		text-align: center;
		padding: 0.35rem 0.6rem;
	}

	#vacancy .list .done {
		font-size: 0.9rem;
		font-weight: bold;
		background: #AAA;
	}

	#vacancy .list td .vacancy {
		background-color: rgb(240, 240, 255);
	}

	#vacancy .list .vacancy {
		font-size: 1.2rem;
		font-weight: bold;
		color: rgb(217 94 89);

	}

	#vacancy .list td .moveout {
		background-color: rgb(240, 240, 255);
	}

	#vacancy .list .moveout {
		font-size: 0.9rem;
		font-weight: bold;
		color: rgb(3 126 18);

	}

	#vacancy .list tr>td {
		white-space: nowrap;
	}

	#vacancy .list thead tr>th {
		left: 0;
		min-width: 5rem;
		z-index: 1;
		position: sticky;
	}

	#vacancy .list tbody tr>th,
	#vacancy .list tbody tr>th+td,
	#vacancy .list tbody tr>td:first-child {
		position: sticky;
		left: 5rem;
		min-width: 5rem;
		z-index: 1;
	}

	#vacancy .list tbody tr>th {
		left: 0;
	}

	#vacancy .list tbody tr>td:first-child {
		background-color: #fff;
	}

	.list table thead tr>th:after,
	.list table tbody tr>th:after,
	.list table tbody tr>th+td:after,
	.list table tbody tr>td:first-child:after {
		content: "";
		position: absolute;
		top: -1px;
		left: -1px;
		right: -1px;
		bottom: -1px;
		border: 1px solid #000;
	}

	.pr_area {
		background: #D95E59;
		font-weight: bold;
		color: #fff;
		border-radius: 10px;
		padding: 5px 15px;
		text-align: center;
		font-size: 19px;
		margin: 10px auto 30px;
		line-height: 1.7em;
		max-width: 900px;
		width: 90%;
	}

	.pr_area p span {
		font-size: 30px;
		display: inline-block;
		margin: 0 7px;
	}

	.pr_area p .noprice {
		border: 3px solid #fff;
		padding: 1% 1% 3%;
	}

}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 480px) {}

@media print,
screen and (min-width: 768px) {


	.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
		opacity: 0;
	}

}

@media print,
screen and (min-width: 992px) {}

@media print,
screen and (min-width: 1200px) {}

/*==================================================
$検索フォーム
==================================================*/
.search_box {
	margin-bottom: 50px;
	border: 1px solid #C0A799;
}

.search_box>strong {
	font-size: 16px;
	font-weight: bold;
	background: #c0a799;
	padding: 5px 20px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.search_box.allopen>strong {
	cursor: initial;
}

.search_box>strong::before {
	content: "";
	width: 1.5em;
	height: 1.5em;
	background: url(../img/ico_search.svg) no-repeat center/contain;
	margin-right: 10px;
}

.search_box>strong::after {
	content: "";
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 4px;
	right: 15px;
	margin: auto;
	transition: .3s;
}

.search_box>strong.open::after {
	transform: rotate(225deg);
	bottom: -4px;
}

.search_box.allopen>strong::after {
	display: none;
}

.search_box .search_inbox {
	padding: 20px 5%;
}

.search_box .search_inbox dl.hidden_area {
	opacity: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

.search_box .search_inbox dl dt {
	font-weight: bold;
	padding: 5px 10px;
	background: #F5F0ED;
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
}

.search_box.allopen .search_inbox dl dt {
	cursor: initial;
}

.search_box .search_inbox dl dt::before,
.search_box .search_inbox dl dt::after {
	content: "";
	width: 15px;
	height: 2px;
	background: #c0a799;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	transition: .3s;
	opacity: 1;
}

.search_box .search_inbox dl dt::after {
	transform: rotate(90deg);
}

.search_box .search_inbox dl dt.open::after {
	opacity: 0;
}

.search_box.allopen .search_inbox dl dt::before,
.search_box.allopen .search_inbox dl dt::after {
	display: none;
}

.search_box .search_inbox dl dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 0 0 20px;
}

.search_box .search_inbox dl dd strong {
	display: block;
	border-bottom: 1px solid #c0a799;
	padding: 5px 10px;
	margin-bottom: 10px;
	width: 100%;
}

.search_box .search_inbox dl dd label {
	width: 49%;
	cursor: pointer;
	margin-bottom: 10px;
}

.search_box .search_inbox dl.floorplan.clm3 dd label {
	width: 33%;
}

.search_box .search_inbox dl dd label input[type="checkbox"] {
	display: none;
}

.search_box .search_inbox dl dd label input[type="checkbox"]+span {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	line-height: 1.2;
	padding: 0 10px;
	height: 100%;
	font-size: 13px;
}

.search_box .search_inbox dl dd label input[type="checkbox"]+span::before {
	content: '';
	width: 15px;
	min-width: 15px;
	height: 15px;
	border: 1px solid #C4C4C4;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	background: #fff;
}

.search_box .search_inbox dl dd label input[type="checkbox"]:checked+span::after {
	content: '';
	width: 8px;
	height: 18px;
	border-bottom: 5px solid #FD5C5C;
	border-right: 5px solid #FD5C5C;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 5px;
	left: 17px;
	margin: auto;
}

.search_box.allopen .search_inbox dl.station dd strong {
	position: relative;
	cursor: pointer;
}

.search_box.allopen .search_inbox dl.station dd strong::before,
.search_box.allopen .search_inbox dl.station dd strong::after {
	content: "";
	width: 15px;
	height: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	background: #c0a799;
}

.search_box.allopen .search_inbox dl.station dd strong::after {
	transform: rotate(90deg);
}

.search_box.allopen .search_inbox dl.station dd strong.active::after {
	opacity: 0;
}

.search_box .search_inbox dl.station dd div {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.search_box .search_inbox dl.station dd .feas_clevel_01 {
	width: 100%;
	background: #f1f1f1;
	margin-top: 20px;
}

.search_box .search_inbox dl.station dd div .feas_clevel_01:first-of-type,
.search_box .search_inbox dl.station dd strong+.feas_clevel_01 {
	margin-top: 0;
}

.search_box .search_inbox dl.station dd .feas_clevel_01 span {
	padding: 10px;
}

.search_box .search_inbox .search_btn {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.search_box .search_inbox .search_btn input[type="reset"],
.search_box .search_inbox .search_btn input[type="submit"] {
	width: 250px;
	width: 49%;
	max-width: 250px;
	height: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 100px;
	cursor: pointer;
}

.search_box .search_inbox .search_btn input[type="reset"] {
	border: 1px solid #8e8e8e;
	background: #8e8e8e;
}

.search_box .search_inbox .search_btn input[type="submit"] {
	border: 1px solid #D95E59;
	background: #D95E59;
}

.not_match_text {
	text-align: center;
	margin-bottom: 100px;
}

/*==================================================
$column arcive 2024/01/19追加 inokuchi
==================================================*/
.column_block {
	padding-bottom: 100px;

	.column_title {
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: 1px solid #dfdfdf;
	}
}

.column-card {
	.column-card_item {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
		background-color: #fff;
		position: relative;
		z-index: auto;

		&+.column-card_item {
			margin-top: 30px;
		}

		& a {
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			align-items: flex-start;
			min-height: 400px;
			height: 100%;
			padding: 0 0 15px;
			border: 1px solid #dfdfdf;
		}

		.column_date {
			position: absolute;
			top: 0;
			left: 0;
			font-size: 13px;
			color: #fff;
			padding: 3px 5px;
			background: #988980;
			z-index: 10;
		}

		.card_image {
			width: 100%;
			text-align: center;
			overflow: hidden;
			aspect-ratio: 4 / 3;

			& img {
				object-fit: cover;
				width: 100%;
				height: 100%;
				position: relative;
				z-index: 1;
				transition: all 0.2s linear;
			}
		}

		.card_title {
			font-size: 15px;
			text-align: left;
			letter-spacing: 0.05em;
			color: #63636D;
			margin: 15px 15px auto;
		}

		.card_text {
			margin-top: 20px;
			text-align: justify;
		}

		.card_label {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
			padding: 0 15px;
			margin-top: 20px;

			& span {
				display: inline-block;
				font-size: 12px;
				color: #63636D;
				padding: 3px 6px;
				background: #F5F0ED;
			}
		}
	}
}

/*==================================================
$column single 2024/01/19追加 inokuchi
==================================================*/

.p-column .l-container {
	.l-main {
		width: 100%;

		.column_date {
			.label {
				display: inline-block;
				font-weight: bold;
				letter-spacing: 0.05em;
				color: #fff;
				line-height: 1.1;
				padding: 3px 8px;
				margin-right: 5px;
				background-color: #D5801D;
				border-radius: 2px;
			}

			.post_date {
				display: block;
				letter-spacing: 0.05em;
				margin-right: 15px;
			}

			.last_date {
				display: block;
				letter-spacing: 0.08em;
			}
		}

		.toc {
			/*目次*/
			max-width: 600px;
			padding: 20px 25px 30px;
			margin: 0 auto 50px;
			background-color: #F5F0ED;
			border-radius: 5px;

			.toc_ttl {
				font-size: 16px;
				letter-spacing: 0.1em;
				text-align: center;
				font-weight: bold;
				margin-bottom: 5px;
			}

			& ol {
				margin: 0;
				padding: 0;

				& li {
					text-indent: 0;
					font-size: 14px;
					display: flex;
					align-items: flex-start;
					gap: 3px;
					padding: 13px 0 13px 15px;
					margin: 0;
					border-bottom: 1px dashed #aaa;

					&::before {
						flex-shrink: 0;
					}

					& a {
						flex: 1;
						position: relative;
						padding-right: 30px;
					}

					& a::after {
						content: "";
						width: 8px;
						aspect-ratio: 1 / 1;
						position: absolute;
						top: calc(50% - 6px);
						right: 10px;
						border-right: 1px solid #707070;
						border-bottom: 1px solid #707070;
						transform: rotate(45deg);
					}

					& a:active::after {
						border-color: #D95E59;
					}

					& a:active {
						color: #D95E59;
					}
				}
			}
		}

		.column-content {
			.column-item+.column-item {
				margin-top: 50px;
			}

			.column-item_block+.column-item_block {
				margin-top: 30px;
			}
		}

		.writer {
			padding: 35px 10px;
			margin-top: 50px;
			border-top: 1px solid #DCDCDC;
			border-bottom: 1px solid #DCDCDC;

			.writer_img {
				width: 120px;
				aspect-ratio: 1 / 1;
				overflow: hidden;
				border-radius: 50%;
				margin: 0 auto;

				& img {
					object-fit: cover;
					width: 100%;
					height: 100%;
				}
			}

			.writer_box {
				flex: 1;
			}

			.writer_ttl {
				width: 100%;
				text-align: center;
				font-size: 18px;
				font-weight: bold;
				letter-spacing: 0.08em;
				line-height: 1.3;
				color: #C0A799;

				&::before {
					content: "";
					display: inline-block;
					width: 18px;
					aspect-ratio: 1 / 1;
					-webkit-mask-image: url(../img/ico_pencil.svg);
					mask-image: url(../img/ico_pencil.svg);
					-webkit-mask-repeat: no-repeat;
					mask-repeat: no-repeat;
					-webkit-mask-position: center center;
					mask-position: center center;
					-webkit-mask-size: contain;
					mask-size: contain;
					margin-right: 0.15em;
					background-color: currentColor;
				}
			}

			.writer_text {
				padding-top: 20px;

				.writer_name {
					font-size: 18px;
					text-align: center;
					letter-spacing: 0.08em;
					color: #8E8E8E;
				}

				.writer_profile {
					color: #8E8E8E;
					letter-spacing: 0.08em;
					line-height: 2;
				}

			}
		}

		.column_single_nav {
			display: flex;
			flex-direction: column;
			gap: 30px;
			margin-top: auto;
			padding-top: 20px;
			border-top: 1px solid #efefef;

			.prev,
			.next {
				width: 100%;

				& a {
					display: flex;
					align-items: center;
					gap: 10px;
				}

				& figure {
					flex-shrink: 0;
					width: 80px;
					aspect-ratio: 1 / 1;
					overflow: hidden;

					& img {
						object-fit: cover;
						width: 100%;
						height: 100%;
						transition: all 0.2s ease;
					}
				}
			}

			.next a {
				flex-direction: row-reverse;
				text-align: right;
			}

			.arcive {
				order: 3;
				width: 100%;
				text-align: center;

				& a {
					display: inline-block;
					padding: 3px 12px;
					border: 1px solid currentColor;
				}
			}

			.empty {
				display: none;
			}
		}
	}

	.l-side {
		width: 100%;

		.side_block {
			margin-bottom: 50px;
		}

		.side_title {
			font-size: 16px;
			letter-spacing: 0.05em;
			color: #fff;
			padding: 5px 10px;
			margin-bottom: 8px;
			background-color: #C0A799;
		}

		.side-column_cat>ul>li {
			padding: 10px;
			border-bottom: dotted 2px #dfdfdf;

			& a {
				position: relative;
				display: block;
				padding-right: 20px;

				&:active {
					color: #D95E59;
				}

				&::after {
					position: absolute;
					top: calc(50% - 4px);
					right: 5px;
					content: "";
					display: block;
					width: 8px;
					aspect-ratio: 1 / 1;
					border-right: 2px solid #C0A799;
					border-bottom: 2px solid #C0A799;
					transform: rotate(-45deg);
				}
			}

			.child li {
				padding: 10px 0 10px 12px;

				& a {
					color: #aaa;

					&:active {
						color: #D95E59;
					}
				}
			}
		}

		.side-column_rank,
		.side-column_new {
			& ul li {
				margin-bottom: 10px;
			}

			& ul li a {
				display: flex;
				align-items: flex-start;
				gap: 5px;

				&:active {
					color: #D95E59;

					& img {
						transform: scale(1.1);
					}
				}

				& figure {
					flex-shrink: 0;
					width: 80px;
					aspect-ratio: 1 / 1;
					overflow: hidden;

					& img {
						object-fit: cover;
						width: 100%;
						height: 100%;
						transition: all 0.2s linear;
					}
				}

				& span {
					display: block;
					font-size: 12px;
					letter-spacing: 0.05em;
					margin-bottom: 5px;
				}

				& p {
					font-size: 14px;
					padding: 5px;
				}
			}
		}

		.side-column_rank {
			& ul li {
				position: relative;

				& figure::before {
					position: absolute;
					top: 0;
					left: 0;
					display: flex;
					align-items: center;
					justify-content: center;
					width: 20px;
					aspect-ratio: 1 / 1;
					color: #fff;
					line-height: 20px;
					z-index: 3;
				}

				&:first-child figure::before {
					content: "1";
					background-color: #D4CA3A;
				}

				&:nth-child(2n) figure::before {
					content: "2";
					background-color: #ACACAC;
				}

				&:nth-child(3n) figure::before {
					content: "3";
					background-color: #C0A799;
				}
			}
		}

		.side-column_new {
			.new_more {
				.btn {
					height: auto;
					color: #fff;
					letter-spacing: 0.02em;
					line-height: 1.3;
					padding: 10px 35px 8px 15px;
					background: #C0A799 url(../img/arrow01_white.svg) no-repeat center right 15px / 13px auto;
					transition: all 0.2s ease;

					&:active {
						background-color: #D0BDB2;
					}
				}
			}
		}
	}

	.pickup_section {
		/*関連物件*/
		margin-top: 30px;
		margin-bottom: 50px;

		.heading {
			width: 100%;
			font-size: 18px;
			margin: 15px 0;
		}

		.pickup_list {
			.pickup_item {
				margin-bottom: 30px;

				& a {
					display: flex;
					align-items: flex-start;
					gap: 5%;
					transition: all 0.2s linear;
				}
			}

			.image {
				flex-basis: 120px;
				flex-shrink: 0;
				position: relative;
				aspect-ratio: 1 / 1;
				overflow: hidden;

				.label {
					position: absolute;
					top: 0;
					right: 0;
					font-size: 11px;
					background: rgba(255, 255, 255, .9);
					padding: 3px 5px;
					z-index: 2;
				}

				& img {
					object-fit: cover;
					width: 100%;
					height: 100%;
					transition: all 0.2s linear;
				}
			}

			.text {
				flex: 1;
				border-bottom: 1px solid #dcdcdc;

				.name {
					font-size: 14px;
					font-weight: bold;
					line-height: 1.2;
					padding-bottom: 10px;
					display: block;
				}
			}

			.detail {
				height: 100%;
				border-top: 1px solid #dcdcdc;
				padding: 10px;

				.layout {
					display: block;
					color: #c0a799;
					font-size: 13px;
				}

				.rent {
					display: block;
					font-size: 15px;
				}
			}
		}
	}

	.bottom_fix {
		position: absolute;
	}
}

/* 240221 */
.property_title_block .label span.badge.recommend {
	color: #fff;
	border: 1px solid #D5801D;
	background: #D5801D;
}

.property_title_block .label span.badge.freerent {
	color: #fff;
	border: 1px solid #D95E59;
	background: #D95E59;
}

.property_title_block .label span.badge.attention {
	color: #fff;
	border: 1px solid #e61d1d;
	background: #e61d1d;
}

/* 240313 */
.pageview {
	font-size: 18px;
	margin-top: 10px;
	position: relative;
	text-align: center;
	background: #f3f3f3;
	line-height: 260%;
	border-radius: 50px;
}

.pageview strong {
	font-size: 28px;
	font-weight: bold;
	color: #FD5C5C;
}

/* 240530　特徴と設備のアイコン追加 */
.property-icon-p li::before {
	content: '';
	width: 100%;
	height: 25px;
	position: absolute;
	top: 34%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}

.property-icon-p li.system_kitchen::before,
.property-icon-p li.shoes_box::before {
	content: '';
	width: 100%;
	height: 25px;
	position: absolute;
	top: 34%;
	left: 0px;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}

.property-icon-p li.system_kitchen::before {
	background: url(../img/systemkitchen.png?240531) no-repeat center/contain;
}

.property-icon-p li.shoes_box::before {
	background: url(../img/shoes.png) no-repeat center/contain;
}

.property-icon-p li.internet::before {
	content: '';
	width: 100%;
	height: 25px;
	position: absolute;
	top: 32%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}

.property-icon-p li.internet::before {
	background: url(../img/internet.png) no-repeat center/contain;
}

.property-icon-p li.interphone::before {
	background: url(../img/bell.png) no-repeat center/contain;
}

.property-icon-p li.autolock::before {
	background: url(../img/auto-lock.png) no-repeat center/contain;
}

.property-icon-p li.wash_basin::before {
	background: url(../img/senmen.png) no-repeat center/contain;
}

.property-icon-p li.reheating::before {
	background: url(../img/yuwakashi.png) no-repeat center/contain;
}

.property-icon-p li.toilet_and_bath::before {
	background: url(../img/toilet-bath.png) no-repeat center/contain;
}

.property-icon-p li.security_camera::before {
	background: url(../img/bouhan-camera.png) no-repeat center/contain;
}

.property-icon-p li.air_conditioner::before {
	background: url(../img/aircon.png) no-repeat center/contain;
}

.property-icon-p li.elevator::before {
	background: url(../img/elevator.png) no-repeat center/contain;
}

.property-icon-p li.delivery_box::before {
	background: url(../img/takuhai-box.png) no-repeat center/contain;
}

.property-icon-p li.closet::before {
	background: url(../img/closet.png) no-repeat center/contain;
}

.property-icon-p li.parking_bicycle::before {
	background: url(../img/jitensya.png) no-repeat center/contain;
}

.property-icon-p li.parking_bike::before {
	background: url(../img/bike.png) no-repeat center/contain;
}

.property-icon-p li.wi-fi::before {
	background: url(../img/wifi.png) no-repeat center/contain;
}

.property-icon-p li.pet::before {
	background: url(../img/dog.png) no-repeat center/contain;
}

.property-icon-p li.near_the_station_5::before {
	background: url(../img/toho.png) no-repeat center/contain;
}

.property-icon-p li.near_the_station_5::before {
	background: url(../img/toho.png) no-repeat center/contain;
}

.property-icon-p li.parking_car::before {
	background: url(../img/car.png) no-repeat center/contain;
}

.property-icon-p li.washlet::before {
	background: url(../img/wash-let.png) no-repeat center/contain;
}

.property-icon-p li.high_grade::before {
	background: url(../img/ico_highgrade.png) no-repeat center/contain;
}

.property-icon-p li.new::before {
	background: url(../img/ico_building.png) no-repeat center/contain;
}

.property-icon-p li.contactless_key::before {
	background: url(../img/key.png) no-repeat center/contain;
}

.property-icon-p li.bathroom_heater_dryer::before {
	background: url(../img/bathroom_heater_dryer.png) no-repeat center/contain;
}

.property-icon-p li.iot::before {
	background: url(../img/iot.png) no-repeat center/contain;
}

.property-icon-p li.all-elect::before {
	background: url(../img/all-elect.png) no-repeat center/contain;
}

.property-icon-p li.gas::before {
	background: url(../img/gas.png) no-repeat center/contain;
}

.property-icon-p li.walk_in::before {
	background: url(../img/wic.png) no-repeat center/contain;
}

/* 条件・設備から探すアイコン */
.property-icon-p li.triple_0::before {
	background: url(../img/triple_0.png) no-repeat center/contain;
}

.property-icon-p li.auto_lock::before {
	background: url(../img/auto-lock.png) no-repeat center/contain;
}

.property-icon-p li.pet_ok::before {
	background: url(../img/dog.png) no-repeat center/contain;
}

.property-icon-p li.wifi_free::before {
	background: url(../img/wifi.png) no-repeat center/contain;
}

.property-icon-p li.parking::before {
	background: url(../img/car.png) no-repeat center/contain;
}

.property-icon-p li.bicycle_parking::before {
	background: url(../img/jitensya.png) no-repeat center/contain;
}

.property-icon-p li.bike_parking::before {
	background: url(../img/bike.png) no-repeat center/contain;
}

.property-icon-p li.toilet_bath::before {
	background: url(../img/toilet-bath.png) no-repeat center/contain;
}

.property-icon-p li.double_ok::before {
	background: url(../img/2nyukyo.png) no-repeat center/contain;
}

.property-icon-p li.child_ok::before {
	background: url(../img/child_ok.png) no-repeat center/contain;
}

.property-icon-p li.new_construction::before {
	background: url(../img/new-house.png) no-repeat center/contain;
}

.property-icon-p li.fr::before {
	background: url(../img/free-rent.png) no-repeat center/contain;
}

.property-icon-p li.bathroom_heating_dryer::before {
	background: url(../img/bathroom_heating_dryer.png) no-repeat center/contain;
}

/* 240606 */
/* .houzin_link {
	width: 80%;
	text-align: center;
	position: relative;
	bottom: 13%;
}

.houzin_link.is-show {
	bottom: auto;
}

.houzin_link a {
	position: relative;
	background-color: #fff;
	padding: 7% 0 7% 8%;
	text-align: center;
	width: 100%;
	display: block;
	border-radius: 10px;
	font-size: 4.2vw;
	font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}

.houzin_link a::before {
	content: "";
	background: url(../img/ico_houzin_orange.png) no-repeat center / contain;
	width: 5.0vw;
	height: 5.0vw;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 16%;
} */

/* 240613 */
.contact_telbox_property {
	background: #41B591;
}

.contact_telbox_property .inner {
	padding: 50px 0;
}

.contact_telbox_property .inner dl {
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
	display: block;
}

.contact_telbox_property .inner dl dt {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 30px;
}

.contact_telbox_property .inner dl dt span {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: rgba(255, 255, 255, .3);
	border-radius: 5px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 33%;
	padding: 5px;
}

.contact_telbox_property .inner dl dt span:last-child {
	margin-bottom: 0;
}

.contact_telbox_property .inner dl dd {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.contact_telbox_property .inner dl dd:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 28%;
	height: 300px;
	background: url(../img/footer_fix01.png) no-repeat bottom center/contain;
	transform: scale(-1, 1);
	display: none;
}

.contact_telbox_property .inner dl dd div>* {
	font-weight: bold;
	text-align: center;
	display: block;
	color: #fff;
	line-height: 1.2;
}

.contact_telbox_property .inner dl dd div span {
	font-size: 16px;
	color: #FFFF2B;
	margin-bottom: 10px;
}

.contact_telbox_property .inner dl dd div a {
	font-size: 37px;
}

.contact_telbox_property .inner dl dd div a::before {
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #fff url(../img/ico_tel_red.svg) no-repeat center/60% auto;
	vertical-align: middle;
	border-radius: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}

.contact_telbox_property .inner dl dd div small {
	font-size: 14px;
	line-height: 1.5em;
}

.contact_telbox_property .inner dl dd div small a {
	text-decoration: underline;
}

.contact_telbox_property .inner>span {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	display: block;
	color: #fff;
}

.column_blue {
	color: #00b7ff;
	font-weight: bold;
}

.column_red {
	color: #ff0015dc;
	font-weight: bold;
}

/* 240729 */
.search_box .search_inbox dl.station dd,
.search_box .search_inbox dl.floorplan dd,
.search_box .search_inbox dl.tag dd {
	display: none;
}

.search_box .search_inbox dl dd div.search_flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	padding: 0 0 20px;
}

.search_box.allopen .search_inbox dl dt.accordion {
	padding: 5px 13% 5px 10px;
}

.search_box.allopen .search_inbox dl dt.accordion::after {
	content: '';
	display: block;
	width: 3vw;
	height: 3vw;
	border-top: 1px solid #c0a799;
	border-right: 1px solid #c0a799;
	position: absolute;
	top: 50%;
	right: 5%;
	margin: auto;
	transform: translateY(-80%) rotate(135deg);
	transition: .3s;
	z-index: 10;
	background: none;
}

.search_box.allopen .search_inbox dl dt.accordion.open::after {
	bottom: 30%;
	transform: rotate(315deg);
	opacity: 1.0;
}

/* 240918 */
.houzin_link {
	width: 80%;
	text-align: center;
	position: relative;
	bottom: 2%;
}

.houzin_link.is-show {
	bottom: auto;
}

.houzin_link a {
	font-size: clamp(14px, 10.267px + 1.333vw, 16px);
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 5px 28px;
	background: rgb(254, 126, 2);
	background: linear-gradient(0deg, rgba(254, 126, 2, 1) 0%, rgba(245, 199, 33, 1) 100%);
	border: 2px solid #fff;
	border-radius: 100px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
	font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	color: white;
	width: 100%;
	display: block;
}

.houzin_link a ::after {
	content: "";
	width: 12px;
	height: 12px;
	right: 12px;
	transform: translateY(-50%);
	-webkit-mask-image: url(../img/arrow_next.svg);
	mask-image: url(../img/arrow_next.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
	background-color: currentColor;

}

.houzin_link2 {
	width: 80%;
	text-align: center;
	position: relative;
	bottom: 3%;
}

.houzin_link2.is-show {
	bottom: auto;
}

.houzin_link2 a {
	font-size: clamp(14px, 10.267px + 1.333vw, 16px);
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 16px 85px;
	background: rgb(254, 126, 2);
	background: linear-gradient(0deg, rgba(0, 123, 76, 1) 0%, rgba(0, 158, 98, 1) 100%);
	border: 2px solid #fff;
	border-radius: 100px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
	font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	color: white;
	width: 100%;
}

.houzin_link2 a ::after {
	content: "";
	width: 12px;
	height: 12px;
	right: 12px;
	transform: translateY(-50%);
	-webkit-mask-image: url(../img/arrow_next.svg);
	mask-image: url(../img/arrow_next.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
	background-color: currentColor;
}

/* 241127 */
.surrounding-items-slider {
    display: block;
}
.surrounding-item {
    width: 100%;
    margin-bottom: 10px;
	text-align: center;
}

/* 241205 */
.column_first_txt {
	margin: 50px 0 10px;
}

/* 250128　ポップアップ */
    .top_lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgba(0, 0, 0, .8);
        z-index: 2547483645;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: .3s;
    }

    .top_lightbox.active {
        opacity: 1;
        pointer-events: auto;
    }

    .top_lightbox div {
        background: #fff;
        width: 90%;
        /* max-width: 650px; */
        padding: 14% 5%;
        text-align: center;
        position: relative;
        box-sizing: border-box;
        border: 3px solid #caa670;
        /* height: 70vh; */
        overflow-y: auto;
        min-height: 250px;
        margin-top: -10%;
    }

    .top_lightbox div img {
        max-width: 80%;
        display: block;
        margin: 0 auto 20px;
    }

    .top_lightbox div p {
        margin-bottom: 30px;
        text-align: center;
        font-size: 14px;
    }

    .top_lightbox div p strong {
        font-size: 4.3vw;
        font-weight: bold;
        display: block;
        width: 95%;
		border-bottom: 2px solid #9f864c;
		padding-bottom: 13px;
		color: #000;
    }

    .top_lightbox div p strong.popup_strong {
        font-size: 3.8vw;
        padding: 5% 0;
        border: none;
		color: #63636D;
    }

    .top_lightbox div p strong.popup_strong span {
        font-size: 5.0vw;
        color: red;
        position: relative;
        z-index: 1;
    }

    .top_lightbox div p strong.popup_strong span::after {
        content: "";
        width: 100%;
        height: 7px;
        background-color: #fff141;
        position: absolute;
        bottom: 4px;
        left: 0;
        z-index: -2;
    }

    .top_lightbox div .close {
        position: absolute;
        top: 15px;
        right: 10px;
        width: 30px;
        height: 20px;
        cursor: pointer;
        opacity: 1.0;
    }

    .top_lightbox div .close::before,
    .top_lightbox div .close::after {
        content: '';
        width: 100%;
        height: 2px;
        background: #000;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .top_lightbox div .close::before {
        transform: rotate(45deg);
    }

    .top_lightbox div .close::after {
        transform: rotate(-45deg);
    }

    .top_lightbox div .btn {
        cursor: pointer;
        padding: 15px 10px;
        display: block;
        margin: 0 auto 0;
        line-height: 130%;
        height: auto;
        width: 83%;
        background: linear-gradient(0deg, rgba(0, 123, 76, 1) 0%, rgba(0, 158, 98, 1) 100%);
        color: #fff;
        font-size: 5.5vw;
        max-width: 310px;
        border-radius: 20px;
		font-weight: bold;
    }

    .top_lightbox div .btn::after {
        display: none;
    }

    .top_lightbox div {
        height: auto;
    }

    .top_lightbox div p {
        font-size: 3.2vw;
    }

    .top_lightbox div .btn {
        padding: 25px 0px 25px 5px;
    }

	 /* 250911物件一覧CSS見た目調整 */

	 .exterior span{
		font-size: 10px;
		font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	  }
	
	.property_map_section{
		margin-bottom: 30px;
	}
