@charset "utf-8";

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

@media only screen and (-webkit-min-device-pixel-ratio: 2) {}

/*==================================================
$common
==================================================*/
body {
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
	line-height: 1.7;
	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;
	min-width: 1000px;
}

body.hidden {
	overflow: hidden;
}

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

a[href^="tel:"] {
	pointer-events: none;
}

.nopc {
	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 {
	max-width: 1080px;
	width: 100%;
	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: -30%;
	margin: auto;
}

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

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

.btn02 {
	max-width: 175px;
	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); */
	background: #fff;
	/* height: 90px; */
	height: 75px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	min-width: 1000px;
	transition: all 0.3s linear;
}

.logo {
	max-width: 320px;
	/* width: 30%; */
	width: 22%;
	margin-left: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

header .right {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	/* width: 70%; */
	width: 100%;
	height: 100%;
}

.burger_wrap {
	display: none;
}

.header_nav nav>ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
}

.header_nav nav>ul>li {
	font-size: 13px;
	margin-right: 20px;
}

.header_nav nav>ul>li>a {
	display: block;
	padding: 10px 5px;
	border-bottom: 3px solid #fff;
}

.header_nav nav>ul>li>span {
	display: block;
	padding: 10px 5px;
	border-bottom: 3px solid #fff;
}

.header_nav nav>ul>li.main_menu,
.header_nav nav>ul>li.main_menu>span {
	position: relative;
	cursor: pointer;
	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: #D5801D;
	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: max-content;
	max-height: 0;
	overflow: hidden;
	position: absolute;
	top: 102%;
	left: 50%;
	transform: translateX(-50%);
	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;
}

.header_nav nav>ul>li .sub_menu li {
	padding: 0 8px;
	background: #fff;
	text-align: center;
}

.header_nav nav>ul>li .sub_menu li a {
	display: block;
	font-size: 12px;
	padding: 7px 0;
	transition: 0.3s ease-in-out;
}

.header_nav nav>ul>li .sub_menu li:not(:last-child) a {
	border-bottom: 1px solid #63636D;
}

.header_nav nav>ul>li .sub_menu li a:hover {
	color: #D5801D;
}

header .right .tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/* width: 50%; */
	max-width: 360px;
	height: 100%;
}

header .right .tel a {
	background: #72727A;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	padding: 0 10px;
}

header .right .tel a div>span {
	font-size: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	line-height: 1.4;
}

header .right .tel a div>span::before {
	content: '';
	width: 34px;
	min-width: 34px;
	height: 34px;
	background: #fff url(../img/ico_tel_orange.svg) no-repeat center/60% auto;
	border-radius: 10px;
	margin-right: 10px;
}

header .right .tel a div small {
	display: block;
	text-align: center;
	font-size: 12px;
}

header .right .tel a div small span {
	display: block;
	font-size: 12px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
}

header .right .tel a div small object {
	display: inline-block;
}

header .right .tel a div small object a {
	pointer-events: auto;
	text-decoration: underline;
}

header .right .tel a>small {
	display: none;
}

@media screen and (max-width:1300px) {
	.burger_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		max-width: 125px;
		width: 30%;
		height: 100%;
		background: #72727A;
		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; */
		width: 30px;
		height: 42px;
		z-index: 1000;
		margin: auto;
		z-index: 100;
		position: relative;
		top: -10px;
	}

	.burger_wrap .burger span {
		position: absolute;
		left: 0;
		width: 100%;
		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(20px) rotate(-45deg);
	}

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

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

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

	header .right .tel {
		order: 1;
	}

	.header_nav {
		position: fixed;
		top: 120px;
		right: -25%;
		width: 25%;
		height: calc(100vh - 135px);
		background: rgba(0, 0, 0, .7);
		z-index: 1000;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		transition: .3s;
	}

	.header_nav.open {
		right: 0;
	}

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

	.header_nav nav ul li {
		margin-right: 0;
		width: auto;
	}

	.header_nav nav ul li a {
		display: block;
		padding: 30px 10px;
		border-bottom: none;
		color: #fff;
	}
}

/*==================================================
$footer
==================================================*/
.footer_upper {
	background: #8E8E8E;
	padding: 80px 10px;
	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: 80px;
}

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

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

.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: 50%;
	margin-right: 130px;
	position: relative;
}

.footer_sns strong::after {
	content: '';
	width: 50%;
	height: 1px;
	background: #63636D;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -65%;
	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: nowrap;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 50px;
	border-bottom: 1px solid #87878F;
}

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

.footer_property {
	padding: 30px 0;
}

.footer_property_block {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 50px;
}

.footer_property_block:last-child {
	margin-bottom: 0;
}

.footer_property_block strong {
	font-size: 16px;
	max-width: 235px;
	min-width: 160px;
	width: 25%;
	color: #fff;
}

.footer_property_block div {
	width: 100%;
}

.footer_property_block div dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}

.footer_property_block div dl:last-child {
	margin-bottom: 0;
}

.footer_property_block div dl dt {
	width: 90px;
	min-width: 5.5em;
	text-align: center;
	font-size: 16px;
	background: #87878F;
	border-radius: 5px;
	margin-right: 40px;
	color: #D0D0D3;
}

.footer_property_block div dl dd a {
	color: #D0D0D3;
	padding: 0 20px;
	border-right: 1px solid #D0D0D3;
	display: inline-block;
	white-space: nowrap;
	margin-bottom: 5px;
}

.footer_property_block div dl dd a:last-child {
	border: none;
}

.copyright {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: .1em;
	border-top: 1px solid #87878F;
	padding-top: 50px;
}

.copyright img {
	height: 100%;
}

/*==================================================
$toppage
==================================================*/
.contents.toppage {
	position: relative;
	transition: all 0.3s linear;
}

/* .contents.toppage::before {
	content: '';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: url(../img/bg_fix.jpg) no-repeat center/cover;
	z-index: -1;
	pointer-events: none;
} */
.bg_movie {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg_movie iframe {
	width: 100%;
	max-width: none;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.mv {
	background: #fff;
	position: relative;
}

.mv .mv_slider {
	width: 100%;
	margin: auto;
	height: calc(100vh - 250px - 250px);
	/* height: 0; */
	padding: 18.5% 0;
	position: relative;
	overflow: hidden;
}

@media screen and (min-width:1950px) {
	.mv .mv_slider {
		height: calc(100vh - 115px - 120px);
		padding: 0;
	}
}

.mv .mv_slider .slick-list {
	width: 100%;
	max-width: none;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

.mv .mv_slider .arrows {
	width: 55px;
	height: 55px;
	background: #D4C3B9;
	border-radius: 100px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 2;
	cursor: pointer;
	display: none !important;
}

.mv .mv_slider .arrows.prev {
	left: 70px;
	transform: scale(-1, 1);
}

.mv .mv_slider .arrows.next {
	right: 70px;
}

.mv .mv_slider .arrows::before {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -5px;
	right: 0;
	margin: auto;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: rotate(45deg);
}

@media screen and (max-width:1200px) {
	.mv .mv_slider .arrows {
		opacity: .7;
	}

	.mv .mv_slider .arrows.prev {
		left: 5%;
	}

	.mv .mv_slider .arrows.next {
		right: 5%;
	}
}

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

.mv .mv_slider .dots li {
	width: 10px;
	height: 10px;
	line-height: 0;
	text-decoration: -300%;
	background: #fff;
	border: 1px solid #63636D;
	border-radius: 100px;
	overflow: hidden;
	margin: 0 15px;
}

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

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

.mv .mv_slider .slick-track {
	display: flex;
}

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

.mv .mv_slider .mv_slider_item>* {
	width: 100%;
	max-width: none;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mv .mv_slider .mv_slider_item img {
	display: block;
	height: 100%;
	width: 100%;
	max-width: none;
	object-fit: cover;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
}

.mv .mv_slider .mv_slider_item 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 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: 100px 0 50px; */
	padding: 30px 0 50px;
	width: 100%;
	overflow-x: hidden;
	margin-bottom: 200px;
}

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

.pickup_section .inner>strong,
.pickup_section .inner .txt_title {
	font-size: 29px;
	font-weight: bold;
}

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

.pickup_section .inner .heading {
	font-size: 40px;
	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;
}

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

.pickup_section .inner .heading::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -50vw;
	width: 51vw;
	height: 1px;
	background: #707070;
}

.floor_detail .pickup_section .inner .heading::before {
	display: none;
}

.pickup_section .pickupbtn {
	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: 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: 60px;
}

.pickup_slider .slick-slide>div {
	margin-right: 30px;
}

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

.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;
	padding: 30px 0 0 30px;
}

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

.pickup_slider_item .inbox .badge,
.main_slider_wrap .badge {
	width: 65px;
	height: 65px;
	border-radius: 100px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: 2;
	line-height: 1.2;
	font-weight: bold;
	animation: scale 1s ease-in-out alternate infinite;
	font-size: 12px;
	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: 12px;
	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: 20px;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 10px;
	display: block;
}

.pickup_slider_item .inbox .text>div {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	padding: 10px;
}

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

.pickup_slider_item .inbox .text>div .rent {
	font-size: 20px;
	display: block;
}

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

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

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

.pickup_slider_item .inbox .text .tag li span {
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/*221220s*/
.pickup_slider .arrows,
.floor_list_btn .arrows {
	position: absolute;
	bottom: 10px;
	left: 10px;
	margin: auto;
	background-color: #6E6E6E;
	width: 54px;
	height: 54px;
	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: 10px;
	height: 10px;
	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: 50vw;
	max-width: 800px;
	height: 50vw;
	max-height: 500px;
	position: absolute;
	top: -80px;
	left: 450px;
	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 {
	position: relative;
	z-index: 2;
}

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

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

.area_section .inner .heading::before {
	content: '';
	width: 100%;
	height: 1px;
	background: #F5F0ED;
	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: 94%;
	max-width: 1100px;
	padding: 5px 20px 20px;
	margin: 50px auto 0;
	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;
}

.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;
	font-size: 15px;
	color: #fff;
}

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

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

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

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

.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: 10px 15px 10px 10px;
	position: relative;
}

.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: 10px;
	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: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}

.feature_section .inner .heading span {
	font-size: 50px;
	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: nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 50px;
}

.feature_section .inner ul li {
	width: 18%;
	max-width: 145px;
	height: 145px;
}

.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: 20px;
	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: nowrap;
	justify-content: space-between;
	align-items: stretch;
	background: rgba(99, 99, 108, .8);
	backdrop-filter: blur(20px);
	width: 100%;
	overflow: hidden;
	padding-bottom: 100px;
}

.know_section .heading {
	min-width: 385px;
	color: #F5F0ED;
	font-size: 94px;
	line-height: 1.2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 120px 0;
}

.know_section .heading strong {
	position: relative;
}

.know_section .heading strong::after {
	content: '';
	width: 100vw;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -20px;
	right: .5em;
}

.know_section .heading span {
	font-size: 30px;
	display: block;
	line-height: 1.7;
}

.know_inbox {
	width: 100%;
	background: url(../img/know_bg.jpg) no-repeat center/cover;
	position: relative;
}

.know_inbox ol {
	background: rgba(0, 0, 0, .5);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 100px 30px;
	counter-reset: knownum 0;
}

.know_inbox ol li {
	background: #fff;
	width: 31%;
	max-width: 280px;
	margin-right: 2%;
	counter-increment: knownum 1;
	position: relative;
}

.know_inbox ol li:nth-child(2) {
	margin-top: 50px;
}

.know_inbox ol li:nth-child(3) {
	margin-right: 0;
	margin-top: 100px;
}

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

.know_inbox ol li::after {
	content: '';
	width: 100px;
	height: 1px;
	background: #F5F0ED;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 5%;
	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 {
	max-width: 175px;
	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: 100px 0;
	margin-bottom: -1px;

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

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

	.column_slider {
		padding: 0 60px;
		margin-bottom: 100px;

		.slick-track {
			display: flex;
		}

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

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

			&::before {
				content: '';
				width: 10px;
				height: 10px;
				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: 0;

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

			&.next {
				right: 0;
			}
		}
	}
}

.columnbtn {
	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: 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;
	padding: 100px 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

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

.news_section>div .heading {
	font-size: 16px;
	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: 50px;
	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: 40px;
	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: 56px;
	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 .news_box .news_list ul li a span.date {
	width: 6em;
	min-width: 6em;
}

.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: 80px 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

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

.movie_block .inner .inbox {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.movie_block .inner .inbox div {
	max-width: 650px;
	width: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.movie_block .inner .inbox div:not(:first-child) {
	margin-left: 2%;
}

.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: 100px;
	padding: 35px 5% 0;
	z-index: 999;
	/* background: rgba(255,255,255,.5); */
}

.fixed_banner::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 35px);
	background: #72727A;
	z-index: -1;
}

.fixed_banner .inner {
	height: 100%;
}

.fixed_banner .inner ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

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

.fixed_banner .inner ul li.balloon {
	position: absolute;
	top: -2em;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.fixed_banner .inner ul li.balloon>span span {
	color: #FD5C5C;
	margin: 0 5px;
}

.fixed_banner .inner ul li.balloon small {
	display: none;
}

.fixed_banner .inner ul li.tel a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding-left: 30px;
	line-height: 1.2;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 5px;
}

.fixed_banner .inner ul li.tel a>span {
	position: relative;
}

.fixed_banner .inner ul li.tel a>span>span {
	font-size: 28px;
	font-weight: bold;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.fixed_banner .inner ul li.tel a>span>span::before {
	content: '';
	width: 33px;
	height: 33px;
	border-radius: 10px;
	margin-right: 10px;
	background: #fff url(../img/ico_tel_red.svg) no-repeat center/50% auto;
}

.fixed_banner .inner ul li.tel a>span>small {
	font-size: 10px;
	display: block;
	margin-top: 5px;
	line-height: 1.3;
}

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

.fixed_banner .inner ul li.contact a {
	height: 100%;
	text-align: center;
	background: #D95E59;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	line-height: 1.4;
	color: #fff;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

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

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

.fixed_banner .inner ul li.line::after {
	/* content: ""; */
	width: 210px;
	height: 10px;
	background: url(../img/footer_img.png) no-repeat center/contain;
	position: absolute;
	bottom: 0;
	right: -16%;
	pointer-events: none;
}

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

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

.fixed_banner .inner ul li.line a>span {
	line-height: 1.3;
}

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

.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: 160px;
	text-align: center;
	padding: 0 10px;
	margin-right: 10px;
	border-radius: 100px;
	font-size: 20px;
	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: 50px;
	font-weight: bold;
}

.property_title_block .title span {
	font-size: 20px;
	color: #a7adb6;
	font-weight: bold;
	display: inline-block;
	margin-left: 20px;
}

.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;
}

/*221221e*/
.title_block .inner .title {
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.title_block .inner .title .label {
	font-size: 20px;
	min-width: 100px;
	padding: 10px 20px;
	background: #fff;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.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 {
	font-size: 16px;
	padding: 5px 15px;
	background: #fff;
	border-radius: 5px;
	min-width: 130px;
	margin-right: 15px;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	margin-bottom: 15px;
}

.title_block .inner .banner {
	padding-top: 180px;
}

.title_block .inner .banner a {
	position: absolute;
	bottom: 0;
	left: 90px;
	right: 50px;
	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: 80vw;
	height: 80vh;
	position: relative;
}

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

.lightbox div .close {
	position: absolute;
	top: -40px;
	right: -40px;
	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;
}

/*20260904追加*/
.property_box{
	margin-top: 50px;
}

.property_list .heading {
	font-size: 24px;
	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-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	padding: 5px 20px;
	border-left: 3px solid #63636d;
	background: #f5f0ed;
}

/*20250904追加*/
.property_list>ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

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


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

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

.property_list>ul>li .name {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

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

.property_list>ul>li .tag li {
	font-size: 12px;
	padding: 5px 15px;
	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: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;*/
}

.property_list>ul>li .inbox .left {
	/*width: 50%;*/
	position: relative;
}

.property_list>ul>li .inbox .left::after {
	content: '';
	width: 1px;
	height: 100%;
	/*background: #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: -20px;
	left: -20px;
	z-index: 2;
	line-height: 1.2;
	font-weight: bold;
	animation: scale 1s ease-in-out alternate infinite;
	font-size: 10px;
	text-align: center;
}

@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 {
	align-items: stretch;
	margin-bottom: 20px;
	width: 100%;
	height: 270px;
	background: fff;
	position: relative;
	overflow: hidden;
}

.property_list>ul>li .inbox .left .image div {
	width: 100%;
	position: relative;
	/*border: 1px solid #DCDCDC;*/
	padding: 0;
	;
}

.property_list>ul>li .inbox .left .image div img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.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 10px;
	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: 20px;
    background: #fff;
    margin-top: -110px;
    position: relative;
    z-index: 2;
    left: -30px;
    border: 1px solid #dcdcdc;
}

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



.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: 13px;
}

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

.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;
}

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

.pickup_slider_item div.cost {
	padding: 4px;
	margin-top: 8px;
}

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

.property_list>ul>li .inbox .right a.btn {
	margin-right: 13;
}

.property-btn {
	display: flex;
    justify-content: space-around;
	gap: 10px;
}

.property-btn a {
	/*max-width: 200px;*/
	height: 50px;
}

.property-btn 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: 200px;*/
	width: 90%;
	height: 50px;
	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;
	max-width: 900px;
	width: 100%;
	margin: 0 auto 60px;
}

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

.main_slider_wrap .main_slider div {
	height: 100%;
}

.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: contain;
}

.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;
	font-size: 18px;
	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: 100%;
	max-width: 650px;
	margin: auto;
}

.main_slider_wrap .main_slider_thumbnail .main_slider_item {
	width: 120px;
	height: 80px;
	background: #ededed;
	margin-right: 10px;
	cursor: pointer;
}

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

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

.property_detail_upper .property_detail_data {
	width: 55%;
}

.property_detail_upper .property_detail_data dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	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: 32px;
	font-weight: bold;
	color: #d5801d;
	width: 100px;
	min-width: 120px;
	margin-right: 20px;
}

.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: 32px;
	font-weight: bold;
}

.property_detail_upper .property_detail_data dl dd a {
	width: 210px;
	min-width: 210px;
	height: 42px;
	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: 18px;
	color: #fff;
}

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

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

.property_detail_upper .pickup_tag {
	width: 35%;
}

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

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

.property_detail_upper .pickup_tag ul li span {
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

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

.property_detail_upper .movie_block .inner {
	display: block;
}

.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 .contact_box .inner {
	display: block;
}

.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: 55%;
}

.floor_detail_item .inner .images_slider_wrap .images_slider {
	margin-bottom: 20px;
	border: 1px solid #C0A799;
}

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

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

.floor_detail_item .inner .images_slider_wrap .images_slider .arrows::before {
	content: '';
	width: 10px;
	height: 10px;
	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: 420px;
	padding-bottom: 40px;
}

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

.floor_detail_item .inner .images_slider_wrap .images_slider .images_slider_item span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	padding: 5px 10px;
}

.floor_detail_item .inner .images_slider_wrap .images_slider_thumbnail {
	padding-left: 15px;
}

.floor_detail_item .inner .images_slider_wrap .images_slider_thumbnail .images_slider_item {
	width: 12%;
	margin-right: 15px;
	height: 40px;
	background: #ededed;
	cursor: pointer;
}

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

.floor_detail_item .inner .floor_layout {
	width: 40%;
	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: 40%;
}

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

.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 {
	min-width: 6em;
	width: 6em;
	padding-right: 1em;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.floor_detail_item .inner .floor_info dl dd {
	width: calc(100% - 6em);
	padding: 20px;
	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: 26px;
	font-weight: bold;
	color: #FD5C5C;
}

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

.floor_detail_data .floor_detail_data_facility .heading {
	display: block;
	width: 100%;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	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 {
	min-width: 163px;
	width: 15%;
	height: 55px;
	margin: 0 .5% 1%;
	background: #fff;
	border-radius: 10px;
	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;
	position: relative;
}

.floor_detail_data .inner {
	width: 100%;
	max-width: 1230px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.floor_detail_data>.inner>div {
	width: 100%;
	margin-bottom: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 10px;
}

.floor_detail_data>.inner>div .heading {
	font-size: 24px;
	padding-bottom: 20px;
	margin-bottom: 50px;
	border-bottom: 1px solid #C0A799;
	position: relative;
	width: 100%;
}

.floor_detail_data>.inner>div .heading::after {
	content: '';
	width: 115px;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -1px;
	left: 0;
}

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

.floor_detail_data>.inner>div dl dt {
	min-width: 180px;
	width: 180px;
	padding: 20px 0;
	border-bottom: 1px solid #333;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

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

.floor_detail_data>.inner>div dl dd .emphasize {
	font-size: 26px;
	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 10px 10px 0;
	text-align: center;
	padding: 5px 20px;
}

.floor_detail_data>.inner>div#access dl {
	width: 30%;
}

.floor_detail_data>.inner>div#access dl dt {
	width: 6em;
	min-width: 6em;
}

.floor_detail_data>.inner>div#access dl dd {
	width: calc(100% - 6em);
}

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

.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;
	max-width: 950px;
	width: 100%;
	margin: 0 auto 50px;
	position: relative;
}

.floor_detail_data>.inner>div .banner span {
	position: absolute;
	left: 24px;
	bottom: 24px;
	font-size: 12px;
	color: #FD5C5C;
}

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

.property_detail_under_link.after {
	background: none;
}

.property_detail_under_link .inner {
	max-width: 1230px;
}

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

.property_detail_under_link ul li {
	width: 24%;
	max-width: 275px;
	height: 62px;
}

.property_detail_under_link a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	font-size: 18px;
	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: center;
	align-items: center;
}

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

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

.property_detail_under_link .floor_list_btn .floor_list_btn_item {
	width: 50%;
	max-width: 350px;
	height: 62px;
	margin: 0 10px 10px;
}

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

.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 100px;
}

.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 {
	padding: 20px 0;
	border-bottom: 1px solid #DCDCDC;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.form_box dl:first-child {
	border-top: 1px solid #DCDCDC;
}

.form_box dl dt {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 30%;
	font-size: 18px;
	font-weight: bold;
}

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

.form_box dl dd {
	width: 70%;
	padding-right: 10%;
	font-size: 16px;
}

.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 span.checkbox {
	display: inline-block;
	margin-right: 20px;
}

.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 15px;
}

.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;
	margin: 0 15px 5px;
}

.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: 70px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border: 1px solid #FD5C5C;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
}

.form_box .form_button button[value="back"] {
	margin-bottom: 20px;
	background: #DCDCDC;
	border: 1px solid #DCDCDC;
}

.form_box.thanks strong {
	display: block;
	text-align: center;
	font-size: 23px;
	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 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
}

.contact_telbox .inner dl dt {
	width: 25%;
	margin-right: 3%;
	padding: 30px 0;
}

.contact_telbox .inner dl dt span {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	background: rgba(255, 255, 255, .3);
	display: block;
	border-radius: 5px;
	text-align: center;
	padding: 0 10px;
	margin-bottom: 5px;
}

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

.contact_telbox .inner dl dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 72%;
	position: relative;
	padding: 30px 0;
}

.contact_telbox .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);
}

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

.contact_telbox .inner dl dd div span {
	font-size: 24px;
	color: #FFFF2B;
	text-align: center;
}

.contact_telbox .inner dl dd div a.tel {
	font-size: 72px;
}

.contact_telbox .inner dl dd div a.tel::before {
	content: '';
	display: inline-block;
	width: 75px;
	height: 75px;
	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: 16px;
	margin-left: 95px;
	line-height: 1.5em;
}

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

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

.contact_telbox_property {
	background: #41B591;
}

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

.contact_telbox_property .inner dl {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
}

.contact_telbox_property .inner dl dt {
	width: 25%;
	margin-right: 3%;
	padding: 30px 0;
}

.contact_telbox_property .inner dl dt span {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	background: rgba(255, 255, 255, .3);
	display: block;
	border-radius: 5px;
	text-align: center;
	padding: 0 10px;
	margin-bottom: 5px;
}

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

.contact_telbox_property .inner dl dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 72%;
	position: relative;
	padding: 30px 0;
}

.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);
}

.contact_telbox_property .inner dl dd div>* {
	font-weight: bold;
	display: block;
	color: #fff;
	line-height: 1.2;
	font-size: 71px;
}

.contact_telbox_property .inner dl dd div span {
	font-size: 24px;
	color: #FFFF2B;
	text-align: center;
}

.contact_telbox_property .inner dl dd div a {
	font-size: 72px;
}

.contact_telbox_property .inner dl dd div a::before {
	content: '';
	display: inline-block;
	width: 75px;
	height: 75px;
	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: 16px;
	margin-left: 95px;
	line-height: 1.5em;
}

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

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

/*221220s*/
.contact_privacy {
	padding: 50px 50px 0;
}

.contact_privacy_ttl {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 25px;
}

.contact_privacy_txt {
	margin-bottom: 35px;
}

.contact_doui {
	background-color: #F9F9F9;
	padding: 40px 50px;
	display: flex;
	align-items: center;
	gap: 60px;
}

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

.contact_doui_txt {
	font-size: 16px;
}

/*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: 25px;
	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: 25px;
	font-weight: bold;
	margin-bottom: 50px;
}

.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: 63px;
	min-width: 63px;
	height: 63px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	font-size: 35px;
	color: #41B591;
	font-family: ivypresto-display, serif;
	margin-right: 30px;
	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: 10px;
}

.guide_box .inner .guide_list ol li div .guide_list_heading {
	font-size: 25px;
	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: center;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	margin-bottom: 30px;
}

.faq_list dl dt::before {
	content: 'Q';
	width: 63px;
	min-width: 63px;
	height: 63px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	font-size: 35px;
	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: wrap;
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
	padding-left: 93px;
	padding-top: 5px;
}

.faq_list dl dd::before {
	content: 'A';
	font-size: 35px;
	font-weight: bold;
	line-height: 1;
	color: #C0A799;
	font-family: ivypresto-display, serif;
	position: absolute;
	top: 0;
	left: 40px;
}

/*==================================================
$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: nowrap;
	justify-content: space-between;
	align-items: stretch;
	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;
	margin-right: 1em;
	font-size: 14px;
}

.news_block .inner .news_box .news_list ul li a .text {
	width: 100%;
}

.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; */
	background: url(../img/bg_fix_03.jpg) no-repeat center/cover;
}

.know_headline .inner {
	z-index: 2;
	max-width: none;
}

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

.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: 69px;
	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: 50px;
	margin-bottom: 100px;
	line-height: 2;
	font-size: 16px;
}

.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: 36px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	padding: 30px 0;
	border-bottom: 1px solid #707070;
	margin-bottom: 50px;
	min-height: 4.5em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

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

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

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

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

.know_list>ol>li .inner .col2 .text {
	width: 45%;
}

.know_list>ol>li .inner .col2 .image {
	width: 50%;
}

.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;
	text-align: center;
}

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

.know_list>ol>li .inner .inarrowimage strong {
	display: block;
	text-align: center;
	font-size: 28px;
	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: 40%;
	margin-bottom: 50px;
	padding-top: 10px;
	position: relative;
}

.know_list>ol>li .inner .inarrowimage div span {
	display: block;
	text-align: center;
	font-size: 28px;
	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;
	top: 0;
	bottom: 0;
	right: -35%;
	margin: auto;
}

.know_list>ol>li .inner .inballoonblock {
	margin-bottom: 50px;

}

.know_list>ol>li .inner .inballoonblock>div {
	display: block;
	text-align: center;
	font-size: 25px;
	background: #fff;
	max-width: 740px;
	width: 100%;
	margin: 0 auto 50px;
	padding: 30px;
	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: 66px;
	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: 49%;
	max-width: 500px;
}

/*
.know_list>ol>li .inimages {
}*/
.know_list>ol>li .inimages .inimages_slider {
	width: 100%;
	position: relative;
}

.know_list>ol>li .inimages .inimages_slider .inimages_slider_item img {
	width: 100%;
}

.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: 24px;
	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: 16px;
}

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

/*
.VideoWrapper {}
*/
.VideoWrapper {
	max-width: 650px;
	width: 58%;
	margin: auto;
	position: relative;
	overflow: hidden;
	padding: 16.3% 0;
}

.VideoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 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: 17px;
	margin-bottom: 10px;
}

p.price {
	font-size: 20px;
	margin-top: 17px;
	font-weight: bold;
}

p.address span,
p.station span,
p.price span {
	color: #7e6759;
}

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

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

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

.point_list ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 35px;
}

.point_list ul li {
	display: inline-block;
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	margin-bottom: 0;
	padding: 10px 15px;
	text-align: center;
	border: 1px solid #d1d1d9;
	font-size: 16px;
	margin-right: 20px;
}

.point_list ul li::before {
	content: "";
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 9px;
	margin-bottom: -5px;
}

.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 ul {
	justify-content: center;
}

.fixed_banner.page_linkbox .inner ul li.tel {
	width: 30%;
	height: 60px;
}

.fixed_banner.page_linkbox .inner ul li.tel a {
	height: 100%;
	padding-top: 5px;
	background: #41B591;
	border-radius: 10px;
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.fixed_banner.page_linkbox .inner ul li.tel a span {
	font-size: 24px;
}

.fixed_banner.page_linkbox .inner ul li.tel a span span {
	margin-top: 4px;
	font-size: 10px;
}

.fixed_banner.page_linkbox .inner ul li.tel a::before {
	left: 7px;
}

.fixed_banner.page_linkbox .page_contact_title {
	display: block;
	text-align: center;
	margin: 120px auto 60px;
	font-size: 24px;
	font-weight: bold;
}

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

.property_detail_under_link.archive_link ul li {
	width: 30%;
	margin-bottom: 19px;
}

.property_detail_under_link.archive_link ul li a {
	background: #F5F0ED;
}

/* 230310 */
.point_list .main_txt_imgbox {
	position: absolute;
	top: 177px;
	right: 0;
}

.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: 40px;
	font-weight: bold;
	margin-bottom: 30px;
}

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

.contact_box .inner ul li {
	width: 32%;
}

.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: 0 20px;
	border: 2px solid #fff;
	height: 80px;
	color: #fff;
}

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

.contact_box .inner ul li a::before {
	content: "";
	width: 2em;
	height: 2em;
	margin-right: 20px;
}

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

.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: 50px;
	height: 50px;
	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;
}

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

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

.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: 20px;
}

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

/* 230518追加 空室一覧 */

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

#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.2rem;
}

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

#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);
}

.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: 100%;
}

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

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

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

.search_box>strong {
	font-size: 20px;
	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 40px;
}

.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: 10px 20px;
	background: #F5F0ED;
	position: relative;
	cursor: pointer;
	font-size: 18px;
	margin-bottom: 20px;
}

.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: flex-start;
	align-items: stretch;
	padding: 0 0 20px;
}

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

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

.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;
	height: 100%;
	padding: 0 10px;
}

.search_box .search_inbox dl dd label 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;
	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: flex-start;
	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: center;
	align-items: center;
}

.search_box .search_inbox .search_btn input[type="reset"],
.search_box .search_inbox .search_btn input[type="submit"] {
	width: 250px;
	width: 48%;
	max-width: 250px;
	height: 56px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 100px;
	margin: 0 10px;
	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 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 2%;

	.column-card_item {
		width: 32%;
		min-height: 350px;
		background-color: #fff;
		position: relative;
		z-index: auto;

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

			&:hover {
				border-color: #C0A799;

				.card_image img {
					transform: scale(1.1);
				}
			}

		}

		.column_date {
			position: absolute;
			top: 0;
			left: 0;
			font-size: 14px;
			color: #fff;
			padding: 3px 10px;
			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: 16px;
			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;
				color: #63636D;
				padding: 3px 6px;
				background: #F5F0ED;
			}
		}
	}
}

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

.p-column .l-container {
	display: flex;
	justify-content: space-between;
	gap: 50px 67px;

	.l-main {
		width: 100%;
		max-width: 780px;

		.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: inline-block;
				letter-spacing: 0.05em;
				margin-right: 15px;
			}

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

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

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

			& ol {
				margin: 0;
				padding: 0;

				& li {
					text-indent: 0;
					font-size: 15px;
					display: flex;
					align-items: flex-start;
					gap: 3px;
					padding: 15px 0 15px 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:hover::after {
						border-color: #D95E59;
					}

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

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

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

		.writer {
			display: flex;
			align-items: flex-start;
			gap: 30px;
			padding: 35px 30px;
			margin-top: 50px;
			border-top: 1px solid #DCDCDC;
			border-bottom: 1px solid #DCDCDC;

			.writer_img {
				width: 135px;
				aspect-ratio: 1 / 1;
				overflow: hidden;
				border-radius: 50%;

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

			.writer_box {
				flex: 1;
			}

			.writer_ttl {
				font-size: 18px;
				font-weight: bold;
				letter-spacing: 0.08em;
				line-height: 1.3;
				color: #C0A799;
				padding-bottom: 15px;
				margin-bottom: 15px;
				border-bottom: 1px solid #DCDCDC;

				&::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.1em;
					background-color: currentColor;
				}
			}

			.writer_text {
				display: flex;
				align-items: flex-start;
				gap: 15px;

				.writer_name {
					flex-shrink: 0;
					flex-basis: 140px;
					font-size: 18px;
					letter-spacing: 0.08em;
					color: #8E8E8E;
				}

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

		.column_single_nav {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 20px;
			padding-top: 20px;
			border-top: 1px solid #efefef;

			& a:hover {
				text-decoration: underline;

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

			.prev,
			.next,
			.empty {
				width: calc(50% - 120px);

				& 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 {
				flex-shrink: 0;
				width: 80px;
				text-align: center;
			}

		}
	}

	.l-side {
		max-width: 250px;
		width: 100%;

		.side_block {
			margin-bottom: 50px;
		}

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

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

		.side-column_cat li {
			padding: 10px;

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

				&:hover {
					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: 6px 0 6px 12px;

				/*& a::before{
					content:"－ ";
				}*/
				& a {
					color: #aaa;

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

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

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

				&:hover {
					color: #D95E59;

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

				& figure {
					flex-shrink: 0;
					width: 98px;
					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;

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

	.pickup_section {

		/*関連物件*/
		.heading {
			font-size: 26px;
			margin-bottom: 20px;
		}

		.pickup_list {
			display: flex;
			flex-wrap: wrap;
			gap: 30px 2%;

			.pickup_item {
				width: calc(96% / 3);
				border-bottom: 1px solid #dcdcdc;

				& a {
					display: block;
					transition: all 0.2s linear;

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

					&:hover .text .name {
						color: #D95E59;
					}
				}
			}

			.image {
				position: relative;
				aspect-ratio: 4 / 3;
				overflow: hidden;
				margin-bottom: 20px;

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

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

			.text .name {
				width: 100%;
				font-size: 20px;
				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: 14px;
					text-align: right;
				}

				.rent {
					display: block;
					font-size: 20px;
					text-align: right;
				}
			}
		}
	}

	.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: 20px;
	margin-top: 10px;
	position: relative;
	text-align: center;
	background: #f3f3f3;
	line-height: 260%;
	border-radius: 50px;
}

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

/* 240530　特徴と設備のアイコン追加 */
.property-icon-p li::before {
	content: '';
	width: 100%;
	height: 35px;
	position: absolute;
	top: 50%;
	left: -130px;
	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: 35px;
	position: absolute;
	top: 50%;
	left: -140px;
	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: 35px;
	position: absolute;
	top: 50%;
	left: -152px;
	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.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.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.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.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.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.dishwasher::before {
	background: url(../img/dishwasher.png) no-repeat center/contain;
}

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

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

/* 240606 */
header .right .tel.houzin_bn {
	max-width: 224px;
}

header .right .tel.houzin_bn a div>span {
	font-size: 16px;
}

header .right .tel.houzin_bn a div small span {
	font-size: 14px;
}

header .right .tel.houzin_bn a div>span::before {
	background: #fff url(../img/ico_houzin_orange.png) no-repeat center / 60% auto;
}

.houzin_link {
	display: none;
}

.houzin_link2 {
	display: none;
}

.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::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-top: 1px solid #c0a799;
	border-right: 1px solid #c0a799;
	position: absolute;
	top: 50%;
	right: 40px;
	margin: auto;
	transform: translateY(-80%) rotate(135deg);
	transition: .3s;
	z-index: 10;
	background: none;
}

.search_box.allopen .search_inbox dl dt.accordion.open::after {
	top: 20%;
	transform: rotate(315deg);
	opacity: 1.0;
}

/* 240918 */
header .right .tel.houzin_bn2 {
	max-width: 232px;
}

header .right .tel.houzin_bn2 a div>span {
	font-size: 15px;
}

header .right .tel.houzin_bn2 a div small span {
	font-size: 14px;
}

header .right .tel.houzin_bn2 a div>span::before {
	background: #fff url(../img/ico_houzin_touroku.png) no-repeat center / 60% auto;
}

header .right .houzin_bn a {
	background: linear-gradient(0deg, rgba(0, 123, 76, 1) 0%, rgba(0, 158, 98, 1) 100%);
}

header .right .houzin_bn2 a {
	background: linear-gradient(0deg, rgba(254, 126, 2, 1) 0%, rgba(245, 199, 33, 1) 100%);
}

/* 241127 */
.surrounding-items-slider {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	width: 100%;
}

.surrounding-item {
	width: calc(33.33% - 20px);
	/* 3カラム表示 */
	box-sizing: border-box;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
}

.surrounding-image img {
	width: 100%;
	height: auto;
	max-height: 250px;
	object-fit: cover;
}

.image-title {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
}

.wpvr-cardboard {
	margin: auto;
}

/* 241205 */
.column_first_txt {
	margin: 60px 0 20px;
}
.property_detail_upper .inner.madori {
	display: block;
}
/* 250115 */
.header_nav nav>ul>li.main_menu>span:hover,.header_nav nav>ul>li>a:hover {
	border-bottom: 3px solid #d5801d;
}

/* 250128　ポップアップ */
.top_lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0, 0, 0, .8);
	z-index: 1010;
	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: 60%;
        max-width: 560px;
        padding: 50px 30px;
        text-align: center;
        position: relative;
        box-sizing: border-box;
        border: 3px solid #caa670;
  }
  
  .top_lightbox div img {
	max-width: 70%;
        display: block;
        margin: 0 auto 40px;
  }
  
  .top_lightbox div p {
	margin-bottom: 30px;
	text-align: center;
	font-size: 14px;
  }
  
  .top_lightbox div p strong {
	font-size: 22px;
	font-weight: bold;
	display: block;
	text-align: center;
	padding-bottom: 12px;
	border-bottom: 2px solid #9f864c;
	margin: auto;
	width: 75%;
	color: #000;
  }
  
  .top_lightbox div p strong.popup_strong {
	font-size: 18px;
	padding: 20px 0;
	border: none;
	line-height: 1.5em;
	color: #63636d;
  }
  
  .top_lightbox div p strong span {
	font-size: 20px;
	color: red;
	position: relative;
	z-index: 1;
  }
  
  .top_lightbox div p 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: #404040;
	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: 20px 12px;
        display: block;
        margin: 0 auto 0;
        line-height: 130%;
        height: auto;
        width: 63%;
        background: linear-gradient(0deg, rgba(0, 123, 76, 1) 0%, rgba(0, 158, 98, 1) 100%);
        color: #fff;
        font-size: 21px;
        max-width: 310px;
        border-radius: 20px;
        font-weight: bold;
  }
  
  .top_lightbox div .btn::after {
	display: none;
  }

  /* 250911物件一覧CSS見た目調整 */

  .exterior span{
	font-size: 10px;
	font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  }