/*
Theme Name: HOUSEREP
Theme URI: https://rhinostudio-japan.com/
Author: RHINOSTUDIO
Description: HOUSEREP
Version: 2025.10
*/

/*********************
RESET
*********************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header, footer, main, section, article, aside, nav, figure {
  display: block;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
    transition: 1.0s;
    opacity: 0.6;
}
/*********************

*********************/
.main{
	padding:10px 0 50px;
}
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  transition: right 0.4s ease;
  z-index: 1002;
	overflow-y: auto;
}
.main-nav.open {
	right: 0;
	padding: 30px 0;
	background-image: url(svg/header-background.svg);
	background-repeat: repeat-x;
    background-position: bottom;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* メニューボタン */
.menu-toggle.active {
  position: relative;
  z-index: 1003; /* メニューより上に表示 */
}


/*********************

*********************/
html,body{
	margin:0;
	padding:0;
}
body{
	font-family:
    -apple-system, /* iPhone・Mac標準フォント */
    BlinkMacSystemFont, /* Safari/Chrome用 */
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic", 
    "Meiryo",
    sans-serif;
}
  body {
    opacity: 0;
    transition: opacity 1.0s ease;
  }

  body.loaded {
    opacity: 1;
  }
h1.site-logo {
    width: 250px;
    max-width: 90%;
}
.img-logo{
	display: block;
	width:150px;
}
header{
	padding: 15px 3%;
	background-image: url("svg/header-background.svg");
	background-repeat: repeat-x;
	background-position: bottom;
}
p.leadtext {
    padding: 0.3em 0.5em;
    font-size: 0.6em;
    color: #fff;
    background: #3c5f95;
}
.leadtext span{
	color:#debd00;
	font-weight: 600;
}
nav p{
	width:60%;
	max-width: 250px;
	margin:auto;
}

/* =============================
   Header base
============================= */
.site-header {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
	z-index: 9999;
}

/* ロゴ */
.site-logo img {

}

/* 検索 */
#main-menu .header-search {
  flex: 1;
  text-align: center;
	margin:30px 0 0;
}


.header-search {
  flex: 1;
  text-align: center;
}

.header-search form {
	    width: fit-content;
	border: 2px solid #3c5f95;
  border-radius: 3px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  /*overflow: hidden;*/
  padding: 0 10px;
}
.header-search .searchform div {
    display: flex;
}
.header-search form input#s{
	font-size:0.9em;
	padding: 0.5em 0;
	border:none !important;
	border-radius: 3px;
}
.header-search form input:focus{
	outline: none;
  box-shadow: none;
}
.header-search input[type="search"] {
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  width: 200px;
}

.header-search input[type="submit"] {
  font-size: 0.9em !important;
    font-weight: 500;
    padding: 0.5em 0;
    background: none;
    border: none;
    color: #3c5f95;
    cursor: pointer;
}

/* ハンバーガーボタン */
.menu-toggle {
  position: relative;
  width: 30px;
  height: 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

/*.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #3c5f95;
  border-radius: 2px;
}*/
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #3c5f95;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* 線の間隔調整 */
.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle span:nth-child(1) {
  transform-origin: top left;
}

.menu-toggle span:nth-child(3) {
  transform-origin: bottom left;
}

/* メニューが開いた時 */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -2px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.menu-menu-1-container {
    padding: 0;
}
.menu-menu-1-container ul li {
    padding: 1.5em;
}

/* メニューリスト */
.main-nav .menu {
  list-style: none;
  padding: 30px 0;
  margin: auto;
	    max-width: 300px;
}

.main-nav .menu li {
	letter-spacing: 0.1em;
    color: #666;
	border-bottom: 1px solid #ccc;
}
h2{
	font-size: 1.5em;
	display: flex;
    align-items: center;
	margin: 0 0 5px;
}
h2 span{
	float: left;
    border-radius: 2px;
    display: block;
    width: 15px;
    height: 15px;
    background: #3c5f95;
	margin-right:10px;
}
h3{
	font-size: 1em;
	display: flex;
    align-items: center;
	margin: 0 0 5px;
}
h3 span{
	float: left;
    border-radius: 2px;
    display: block;
    width: 10px;
    height: 10px;
    background: #3c5f95;
	margin-right:8px;
}

/* =============================
   Top page
============================= */
section.regionalmap {
	    display: flex;
    justify-content: center;
	padding:3%;
	color:#3c5f95;
    background: #cbe3f0;
}
section.regionalmap div:first-child div ul{
	display: grid;
}
.regionalmap ul.category-list{
	width:100%;
	display: flex;
	flex-wrap: wrap;
    line-height: 2;
	justify-content: flex-start;
    gap: 1em;
	padding: 1em 0 0;
}
.regionalmap-inner {
	min-width: 70%;
    background: #fff;
    border-radius: 5px;
    margin: 20px 0 0 20px;
    padding: 20px;
}
ul.category-list{
	max-width:500px;
}
ul.category-list li a{
	display: block;
    width: 8em;
	text-wrap-mode: nowrap;
	font-weight: 600;
    letter-spacing: 0.1em;
    height: auto;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    padding: 0.2em 1em;
    border: 2px solid #3c5f95;
}
ul.search-city {
    display: flex;
	align-items: center;
    justify-content: start;
    gap: 20px;
}
ul.search-city li:first-child{
	border:none;
	display: flex;
    align-items: center;
}
ul.search-city li:first-child span {
    display: inline-flex;
    width: 40px;
    height: auto;
	margin-right:10px;
}
ul.search-city li:first-child p{
		font-size: 1.2em;
	    text-align: center;
}
ul.search-city li{
	font-weight:600;
	text-align: center;
	padding: 0.3em;
}
ul.search-city li a {
	font-size: 1.5em;
    color: #fff;
    height: fit-content;
    background: #3c5f95;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #3c5f95;
    text-align: center;
    padding: 0.3em 1em;
}
.regionalmap-under {
    display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px; 
  flex-wrap: nowrap;
  width: 100% !important; 
max-width: 100% !important;
  overflow: hidden; 
}
.regionalmap-under img{
	max-width: 50%;
  height: auto; 
  display: block;
}
.regionalmap-under li a{
	display: block;
	font-weight:600;
	padding:20px 10px;
	border: none;
    border-bottom: 2px solid #3c5f95;
}
.regionalmap-under li a:hover{
	opacity: 1;
    transition: 1.0s;
    background: #cbe3f0;
}
.regionalmap-under li:last-child{
	border:none;
}
.uru{
	background:#efefef;
	padding:3%;
	color: #489c31;
}

.uru h2 span{
	background:#489c31;
}
.uru h3{
	color: #3c5f95;
}
.uru h4{
	    display: flex;
    align-items: center;
	font-size:1.2em;
	color: #3c5f95;
}
.uru-inner h4.gold{
	    padding: 30px 0 0;
	color: #489c31;
}
.uru-inner h4.gold span{
	background:#489c31;
}
.uru h4 span{
	float: left;
    border-radius: 2px;
    display: block;
    width: 12px;
    height: 12px;
    background: #3c5f95;
	margin-right:8px;
}
.uru div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.uru div:first-child {
    max-width: 860px;
    margin: 20px auto 30px;
}

.button-satei{
	font-weight: 600;
}
.button-satei a{
	color:#489c31;
	border:2px solid #489c31;
	border-radius: 5px;
	background:#fff;
	padding: 0.5em 1em;
}
.uru ul{
	display: flex;
	justify-content: center;
	max-width:700px;
	margin:auto;
	gap:30px;
	padding:20px 0 30px;
}
.uru ul li{
	max-width:45%;
	font-size: 1.5em;
	font-weight:600;
	color:#fff;
	padding:0.3em 1em;
	border-radius:5px;
	background:#bd9e00;
}
.uru ul li:first-child{
	background:#3c5f95;
}
.tetsuduki{
	width: fit-content;
    display: grid !important;
    margin: auto;
}
.uru-inner{
	max-width: 700px;
	width: 100%;
	display: grid !important;
	overflow: hidden;
	border-radius: 5px;
	padding:30px;
	background:#fff;
}

.uru-flow {
    padding: 0 0 30px;
	width: 100%;
    display: flex;
}
.uru-flow:first-child{
	border-bottom:2px solid #3c5f95;
}
.uru-scroll {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 1rem;
}

/* グラデーションはスクロール部分だけに */
.uru-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #fff 40%, transparent);
  pointer-events: none;
}
.uru-flow ul{
	display:inline-flex;
	list-style: none;
	padding: 0;
	margin:0;
}
.uru-flow ul li{
	color:#3c5f95;
	background:#fff;
	  font-size: 1.2em;
	font-weight: normal;
	writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  display: flex;
	align-items:flex-start;
  padding: 0.8em 0.3em;
	border:2px solid #3c5f95;
  border-radius: 5px; 
	flex: 0 0 auto;  
}

.uru-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  transform: translateY(-50%);
  right: -24px;
  width: 24px;
  height: 5px;
  background-color: #416093;
  writing-mode: initial;
  direction: ltr;   
}
.uru-flow ul li:first-child,.uru-flow ul li:last-child{
	height: fit-content;
	text-align: center;
	font-weight: 600;
    letter-spacing: 0.1em;
	color:#fff;
	background:#3c5f95;
	font-size:1.2em;
}
.uru-flow ul li:nth-child(7) {
    font-size: 0.8em;
}
.uru-flow.gold{
	border: none;
	justify-content: space-between;
	margin: 30px 0 0;
}
.uru-flow.gold ul{
	color:#489c31;
}
.uru-flow.gold ul li{
	    color: #489c31;
	border:2px solid #489c31 !important;
}
.uru-flow.gold ul li:not(:last-child)::after {
  background-color: #489c31;
}
.uru-flow.gold ul li:first-child,.uru-flow.gold ul li:last-child{
	color:#fff;
	background:#489c31;
}
.uru-flow div {
	display: grid;
    width: fit-content;
    max-width: 300px;
    box-sizing: border-box;
}
.uru-flow div p:first-child{
	line-height: 0;
	display: block;
	margin: auto;
	width: 100%;
    max-width: 250px;
	aspect-ratio: 210 / 295; 
	background:#eee;
}
.uru-flow div p:nth-child(2){
	width: fit-content;
    font-size: 0.9em;
    color: #fff;
    background: #489c31;
    padding: 0.5em 1em;
    border-radius: 3px;
    margin: 10px auto;
}
.uru-flow span{
	text-align: center;
    color: #333;
	padding: 1em 0 0;
	font-size:0.6em;
}
p.button-uru {
    border: 2px solid #489c31;
    padding: 0.5em 1em;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
footer{
	font-size:0.8em;
color:#3c5f95;
	background:#fff;
	width:100%;
	line-height: 1.5;
}
.footer_t{
	width:100%;
		padding:3% 20px;
	max-width: 900px;
    margin: auto;
}
.footer_l,.footer_u{
	display: grid;
}
.footer_l{
	padding-right:20px;
	box-sizing: border-box;
}
.footer_l li p {
    letter-spacing: -0.05em;
}
.footer_l p{
	letter-spacing: 0.05em;
}
.footer_l p:last-child{
	    color: #666;
	font-size: 1.1em;
	font-weight: 600;
}
.footer_l div ul:last-child li:last-child img{
	width:100%;
}
.footer_l div ul:last-child {
    max-width: 200px;
	box-sizing: border-box;
    padding-left: 20px;
}
.footer-r {
    width: 60%;
}
footer div{
	width:100%;
	display: flex;
}
footer div ul{
	width:50%;
}
footer div ul li p {
    font-size: 1.5em !important;
    color: #000 !important;
}
footer ul li {
    display: flex;
	padding: 15px 0 0;
    font-size: 1.2em;
    font-weight: 600;
}
footer ul li:first-child{
	margin: 0 0 10px;
	font-size:0.9em;
}
footer ul li:first-child img {
    width: 200px;
}
footer ul li:last-child img {
    width: 30px;
}
footer ul li p{
	color:#000;
}
footer ul:last-child li {
    padding: 10px 15px;
    border: 1px solid #999;
    margin: 0 0 10px;
}
.footer_u{
	text-align: center;
	width:100%;
	color:#fff;
	background:#3c5f95;
		padding:3% 20px;
}
.footer_u p{
	font-size:0.8em;
	padding:0 0 20px;
}
	p.u-menu {
    font-size: 0.9em;
    color: #666;
    padding: 1em;
}
	p.u-menu a{
		text-decoration: underline;
	}

/* リンクを relative にして子要素を絶対配置可能に */
a.download-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* 画像を表示 */
a.download-link img {
  display: block;
  transition: filter 0.3s ease; /* ホバーで暗くする */
}

/* hover時に画像を暗くする */
a.download-link:hover img {
  filter: brightness(70%); /* 画像を暗く */
}

/* アイコンを中央に表示 */
a.download-link::after {
  content: url('svg/i-dl.svg'); /* アイコンのパス */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 完全中央に配置 */
  opacity: 0;                        /* 初期は非表示 */
  transition: opacity 0.3s ease;
  pointer-events: none;              /* アイコン自体はクリックできない */
  width: 48px;                        /* 必要に応じてサイズ調整 */
  height: 48px;
}

/* hover時にアイコンを表示 */
a.download-link:hover::after {
  opacity: 1;
}


/****************
　　　物件情報
****************/
.property-single h2 {
    text-align: center;
    font-size: 1.2em;
    font-weight: 400;
    display: block;
    align-items: center;
    margin: 30px 0 0;
}
.property-gallery {
  margin: 2em 0;
}

.gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-thumbnails li {
  flex: 0 1 calc(25% - 12px); /* 4列 */
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumbnails img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-thumbnails li:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.to-contact {
    border: none;
    background: transparent;
	display: flex;
    justify-content: center;
	
}
.to-contact a{
	width: fit-content;
    display: block;
	border: 2px solid #489c31;
    border-radius: 1.5em;
    padding: 0.5em 1.5em;
    background: #fff;
    font-size: 1.2em;
    font-weight: 600;
    color: #489c31;
}
.to-contact a:hover{
	transition: 1.0s;
	color:#fff;
	background: #489c31;
}
@media (max-width: 768px) {
  .gallery-thumbnails li {
    flex: 0 1 calc(50% - 12px); /* スマホでは2列 */
  }
}

/****************
　　スクロール
****************/

.uru-flow {
  position: relative;
  margin-bottom: 2em;
	border-bottom:1px solid #3c5f95;
}

/* 横スクロールできるリスト */
.uru-flow ul {
	scroll-snap-type: x mandatory;
  justify-content: flex-start;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 10px 70px 20px 30px;
  list-style: none;
  margin: 0;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}

/* 各項目のデザイン */
.uru-flow li {
	scroll-snap-align: start;
  flex: 0 0 auto;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
  /*min-width: 160px;*/
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* スクロールヒント用グラデーション */
.uru-flow ul::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #fff 40%, transparent);
  pointer-events: none;
}


@keyframes fadeInOut {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

/* PCではヒント非表示にする */
@media (min-width: 768px) {
  .uru-flow::before {
    display: none;
  }
}

/****************
　　固定ページ
****************/
.page{
	color: #3c5f95;
}
.page .wrapper{
	background: #cbe3f0;
}
.page .content {
    margin: auto;
	background: #cbe3f0;
}
.page section{
	width: 90%;
	font-size: 0.9em;
    max-width: 600px;
    padding: 50px 0;
    margin: auto;
}
.company-table{
    background: #fff;

}
.company-table td:first-child {
	background:#eee;
    width: 40%;
}
.page #wrapper h1{
	display: none;
}
.page h2{
	font-size: 1.5em;
	display: flex;
    align-items: center;
	margin: 0 0 10px;
}
.page h2::before{
	float: left;
    border-radius: 2px;
    display: block;
    width: 15px;
    height: 15px;
    background: #3c5f95;
	margin-right:10px;
}
/****************
　　一覧ページ
****************/
.archive #wrapper{
	background:#cbe3f0;
	padding: 0 0 50px;
}
.property-archive h1 {
	color: #3c5f95;
	font-size: 1.7em;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 5% 1.5em;
    width: fit-content;
    margin: auto;
    text-align: center;
}
.property-item a {
	border: 1px solid #3c5f95;
	background: #fff;
    padding: 10px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;

}


/*追加*/
dl{
	display: flex;
	border: 1px solid;
	border-bottom: none;
}
dl:last-child{
	border-bottom: 1px solid;
}
dt {
	width:7em;

    padding: 0.3em 0.5em;
    background: #eee;
	    border-right: 1px solid;
}
dd {
display: flex;
    align-items: center;
width:100%;
    padding: 0.3em 0.5em;
    background: #fff;

}
.archive .property-info{
	padding: 5px;
	padding-left:20px;
}
.property-item a .property-info h2{
	    color: #3c5f95;
	font-weight: 500 !important;
    width: fit-content;
    border-bottom: 1px solid #3c5f95;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    margin: 0 0 5px;
}

.property-info {
	padding:10px 0 0;
    width: 100%;
}
	.single dl.property-info{
		    padding: 0;
	}
.archive .property-info div {
	padding: 0 0 10px;
	justify-content: flex-end;
	display: flex;
    flex-wrap: wrap; /* これで折り返し可能にする */
    gap: 10px; /* 横・縦の隙間 */
}
.archive .property-info h2 {
    flex: 1 1 200px; /* 最低幅200pxを確保して横幅を自動調整 */
}

.archive .property-info div {
    flex: 1 1 150px; /* 最低幅150pxを確保 */
}

.property-info div div{
	display: flex;
	    gap: 5px;
}
.property-info div p {
	width: fit-content;
	height: fit-content;
    box-sizing: border-box;
    padding-left: 0.5em;
}
.property-info div p:first-child{
	padding:0;
}
.property-info ul li{
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px dotted;
    padding: 0;
	width: 100%;
}
.property-info ul li:first-child{
		border-top: 1px dotted;
}
.tochi{
	display: flex;
}
.tochi strong{
	height: fit-content;
}
.tochi p {
    padding-left: 0.5em;
}
.tochi p:first-child {
	padding:0;
}
.property-info ul li p:first-child{
	background:#eee;
}
.property-info ul li p {
    width: auto;
    height: auto;
    font-size: 1em;
    border: none;
    box-sizing: initial;
    padding: 0.3em 1em;
    border-radius: 0;
}
.property-archive p {
    padding: 10% 0 12%;
    text-align: center;
    color: #3c5f95;
}
	.property-thumb{
    min-width: 35%;
}
.property-list{
    max-width: 800px;
    margin: auto;

}
.property-item {
    margin: 0 0 30px;
}

/****************
　　物件ページ
****************/
.single #wrapper{
	background: #cbe3f0;
	padding: 20px 0 0;
}
h1.property-title {
	    font-size: 1.5em;
    font-weight: 300;
    color: #3c5f95;
    letter-spacing: 0.1em;
    padding: 0.3em 1.2em;
    width: fit-content;
    margin: auto;
	border: 5px double #3c5f95;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}
.single article{
	color:#3c5f95;
}

ul.property-info {
	max-width: 750px;
    padding: 10px 5px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px auto 0;
    background: #fff;
    border: 1px solid #3c5f95;
}
.property-top {
	margin:auto;
	max-width: 860px;
    gap: 3%;
    padding: 30px 10px;
    display: flex;
}
.property-top div:last-child {
    width: 100%;
}
.archive .property-image{
	max-width: 40%;
}
.property-image {
	max-width:400px;
	border: 1px solid #3c5f95;
    background: #fff;
}
.archive .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-image.no-image {
    width: 300px;           /* 任意サイズ */
    height: 200px;          /* 任意サイズ */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
    border: 1px solid #ddd;
}
.property-categories,.property-areas{
    font-size: 0.9em;
    border: 1px solid;
    padding: 0.2em 0.8em !important;
    border-radius: 1.5em;
}
.property-top ul.property-info{
	display: grid;
}
.property-top ul.property-info li{
	display: flex !important;
	width:100%;
}

ul.property-info li{
	width:fit-content !important;
	font-size: 0.9em;
	padding: 0.5em 1em;
}
ul.property-info li strong {
	color: #fff;
    background: #3c5f95;
	margin-right: 10px;
    font-size: 0.9em;
    font-weight: 300;
    border-radius: 5px;
    padding: 0.3em 0.8em;
}
.w100 {
    width: 100% !important;
}
.property-content{
	margin: 0 auto 20px;
	max-width: 600px;
}
.property-content p{
	padding: 10px 0 0;
	max-width: 500px;
    margin: auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap:1.2%;
}
.property-content p a{
	display: contents;
}
.property-content p img{
	width:19%;
	margin-bottom:10px;
}
.gmap {
	padding: 20px 0;
    text-align: center;
}
.gmap p iframe{
	max-width: 100%;
	    padding: 10px 0 30px;
    overflow: hidden;
}
/*物件ページスライダー*/
.swiper-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.swiper-button-prev,
.swiper-button-next {
  color: #333;
}

/****************
　　プライバシーポリシー
****************/
.privacy-policy{
	font-size: 0.9em;
    text-align: justify;
    line-height: 1.5em;
}
.privacy-policy h3 {
    border: 1px solid;
    padding: 1em;
    margin: 1em 0;
    background: #fff;
}
.search-result h1 {
    color: #3c5f95;
    font-size: 1.7em;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 5% 1.5em;
    width: fit-content;
    margin: auto;
    text-align: center;
}
.search-result .no-result{
    padding: 10% 0;
    text-align: center;
    color: #3c5f95;
}

article.post-189 .fluentform {
    margin: auto;
    width: 90%;
    max-width: 500px;
}
.ff-default {
    font-family: inherit;
    padding: 30px 0 0;
}
.ff-name-address-wrapper.fluent-address {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 10px;
    margin: 0 0 20px;
    border: 1px dotted #aaa;
}
    .frm-fluent-form .ff-t-container {
        display: grid;
        gap: 0;
}
form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit {
    padding: 0.3em 2em;
    letter-spacing: 0.1em;
}
.ff-message-success {
    border: none;
    box-shadow: none;
    line-height: 2;
    min-height: 30vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding: 15px;
    position: relative;
}
.radio-b {
    display: flex;
    gap: 10px;
}

/****************
　　モバイル対応
****************/
@media (max-width: 720px) {
	.property-top {
    display: grid;
		gap:0;
		padding: 20px 10px;
}
	.uru div:first-child {
    padding: 1em 0 20px;
    display: flex;
		justify-content: space-between;
}
	
	.uru div:first-child h2{
		margin:0 0 10px;
	}
	.uru div:first-child p{
		float:right;
	}
	.uru-flow.gold{
	justify-content: space-around;
	}
	.uru-inner{
		box-sizing: border-box;
        margin: 10px 0 0;
	}
	.uru-flow{
	display: grid !important;
	}
	.uru-flow div p:first-child{
		background: #fff;
        padding: 20px 0 0;
	}
	.uru-flow div {
    display: table-column;
    width: 100%;
    margin: 10px auto 0 !important;
    box-sizing: border-box;
}
	.uru-flow span {
    display: block;
    text-align: center;
    font-size: 0.6em;
	}

	
	footer div {
    width: 100%;
    padding: 20px 0;
    display: flex;
}
	.property-single h2{
		width:90%;
		margin: 20px auto 0;
	}
		.single dl.property-info{
		    padding: 0;
	}
	ul.property-info {
		width:96%;
	}
	.property-top ul.property-info {
    display: flex;
}
	.property-top ul.property-info li {
    box-sizing: border-box;
    display: block;
    width: 50% !important;
}
	.property-image{
		width:100%;
		margin:0;
	}
.single .property-image{
		margin:auto;
	}
	.footer_t{
		display: grid !important;
	}
	.footer_l{
		width:100%;
		padding:10px 0;
	}
	.footer-r{
		width:100%;
	}
}
	@media (max-width: 640px) {
		section.regionalmap {
    display: grid;
		}
		section.regionalmap div:first-child div ul {
    display: flex;
    justify-content: flex-start;
}
	}
@media (max-width: 507px) {
	header {
    padding: 10px 3%;
	}
  .header-inner {
    flex-wrap: wrap;
	  gap:3%;
    justify-content: space-between;
  }
	h1.site-logo {
    width: 55%;
		max-width:90%;
	}
.img-logo{
	width:40%;
}
  .header-search {
    order: 3;
	  margin: 10px 0 0;
    width: 100%;
  }
ul.search-city li:nth-child(n+2) {
	font-size: 1em;
        padding: 0;
	}
	
  .menu-toggle {
    display: flex;
	  margin: 5px 0 0;
    order: 4;

  }
	.uru-flow.gold{
		margin:0;
	}

  .main-nav {
    display: none;
    width: 100%;
  }
nav#main-menu p {
    width: 60%;
    margin: 0 auto 20px;
}
  .main-nav.open {
    display: block;
    background-repeat: repeat-x;
    background-position: bottom;
  }
	
	.regionalmap-inner {
		margin: 20px 0 0 !important;
	}
	.regionalmap-under ul li{
    font-size: 0.9em;
    padding: 0;
	}
	ul.search-city li a{
		    font-size: 1.2em;
		padding: 0.3em;
	}
	.regionalmap-under li a {
    padding: 5px 0;
	}
.tetsuduki {
    width: 100%;
    display: block !important;
	}
	.uru-inner{
			justify-content: space-around !important;
	}
.uru-flow ul{
	display: flex;
        justify-content: flex-start;
    gap: 8px;
}
.uru-flow ul li{
	writing-mode: vertical-rl !important;
}
	.property-top{
		gap:0;
		padding: 20px 10px;
	}
	li.property-item a {
    display: table;
}
	.property-thumb{
    width: 100%;
}
	.property-thumb img{
    width: 100% !important;
}
		.archive .property-image {
    width: 100% !important;
        margin: auto;
        max-width: 100% !important;
}
	.archive .property-info{
		padding-left:5px;
	}
	.property-single .property-image {
    margin: auto;
}
	
	.uru div:first-child{
		display: grid;
		padding: 0 0 20px;
        margin: 10px 0 20px;
	}
	.uru div:first-child p {
        margin: 10px 0 0;
	}

	.footer_l div{
		display: grid;
	}
	.footer_l div ul{
		width:100%;
	}
	.footer_l div ul li{
		padding:0;
	}
	.footer_l div ul:last-child{
		display: flex;
		justify-content: space-between;
        max-width: 100%;
		gap: 10px;
		padding:10px 0 0;
	}
	footer ul:last-child li {
    width: 50% !important;
    padding: 10px 15px !important;
	}
}
/* PC対応toppage-map */

@media (min-width: 641px) {
	.regionalmap{
		display: flex;
		justify-content: center;
	}
	.regionalmap div:first-child{
		width:fit-content;
	}
	.regionalmap div:first-child div{
		width: fit-content;
        border-radius: 10px;
		background:#3c5f95;
		padding:15px;
		margin:20px 0 0;
	}
	.regionalmap div:first-child ul.category-list{
		display: grid;
		flex-wrap: wrap;
		line-height: 2;
		gap:15px;
		padding:0;
	}
	ul.category-list li {
    width: 100%;
	}
	ul.category-list li a{
		width: 100%;
		display:block;
	}
	.regionalmap div:last-child{
		width:100%;
		max-width: 800px;
	}
	.uru div{
		max-width: 900px;
    	margin: auto;
	}
	.uru div:first-child {
        display: flex;
        padding: 10px 0;
	}
	.uru-scroll ul {
    padding: 0 0 20px;
}

	
}
@media (min-width: 960px) {
.regionalmap-under li{
	font-size:1.3em;
}
}