@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer:http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{border:0;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline;}
:focus{outline:0;}

ol, ul{list-style:none;}
table{border-collapse:separate;border-spacing:0;}
caption, th, td{font-weight:normal;text-align:left;}
blockquote:before, blockquote:after,q:before, q:after{content:"";}
blockquote, q{quotes:"" "";}
a img{border:0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
/* -------------------------------------------------------------- */

body{
color:#555;
font:12px verdana,"ヒラギノ丸ゴ ProN W4","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
line-height:1.5;
background:#fff;
-webkit-text-size-adjust:100%;
}

/* リンク設定
------------------------------------------------------------*/
a{color:#358de0;text-decoration:none;}
a:hover{color:#429bef;}
a:active, a:focus{outline:0;}


/* 全体
------------------------------------------------------------*/
#wrapper{
margin:0 auto 0;
padding:0 1%;
width:98%;
position:relative;
}

.inner{
margin:0 auto;
width:100%;
}


/*************
/* ヘッダー
*************/
#header{
z-index:100;
margin:0;
background: url('images/BG_header.jpg') no-repeat center center;
background-size: cover;
min-height: 68px; /* ボタンの高さの最小値 */
display: flex;
align-items: center;
}
/* 1180px以下 */
@media (max-width: 1180px) {
  #header {
    height: 90px; /* ボタン高さに合わせて調整 */
    min-height: unset;
  }
}

/* 940px以下 */
@media (max-width: 940px) {
  #header {
    height: 68px; /* ボタン高さに合わせて調整 */
    min-height: unset;
  }
}
#header:after{
content:"";
display: block;   
clear:both; 
visibility:hidden;
}

/*************
/* ロゴとメニューボタン全体
*************/
.header-inner {
  max-width: 1366px;
  margin: 0 auto;   /* ←中央寄せにする */
  padding: 0 8px;
}
.header-flex {
  display: flex;
  gap: 0; /* 間隔をなくす */
  align-items: center; /* 縦方向の中央寄せ */
  justify-content: center; /* 横方向の中央寄せ */
}

.header-logo-col {
  width: auto; /* 画面幅に合わせる */
  max-width: 500px;
  margin-right: 16px; /* 必要に応じて調整 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;      /* 右側をカット */
}
.header-logo-link {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0;
  position: relative; /* 追加 */
}
.header-logo-img {
  width: 100%; /* 画面幅に合わせる */
  height: 125px;
  display: block;
  object-fit: cover;     /* 念のため（IE非対応） */
  object-position: left; /* 左寄せ */
  /* 左右のみ枠線風のぼかしを追加 */
  box-shadow:
    -6px 0 12px 0 rgba(0,0,0,0.25), /* 左側 */
     6px 0 12px 0 rgba(0,0,0,0.25); /* 右側 */
}
h1.header-logo-text {
  position: absolute;      /* 追加 */
  top: 16px;               /* 上からの距離（調整可） */
  left: 80px;             /* 左からの距離（調整可） */
  margin-top: 0;           /* 既存のmargin-topは不要 */
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  text-align: center;
  background: rgba(255,255,255,0.7); /* 背景を薄くする場合（任意） */
  padding: 2px 8px;                  /* 任意 */
  border-radius: 4px;                /* 任意 */
  pointer-events: none;
}
.header-button-col {
  flex: 0 0 auto; /* フレックスアイテムの伸縮を許可 */
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

/* レスポンシブ対応 */
/* 画面幅1180px以下でロゴを小さく */
@media only screen and (max-width: 1180px) {
  .header-logo-img {
    height: 90px; 
    box-shadow:
    -4px 0 10px 0 rgba(0,0,0,0.25), /* 左側 */
     4px 0 10px 0 rgba(0,0,0,0.25); /* 右側 */
  }
  h1.header-logo-text {
    font-size: 1em;
    top: 10px;
    left: 70px; 
    padding: 1px 2px;
  }
  #header h1{text-align:center;}

  #header .logo,#footer .logo{
    float:none;
    text-align:center;
    padding:10px 5px;
  }
}

/* 画面幅940px以下でさらに小さく */
@media only screen and (max-width: 940px) {
  .header-logo-col {
    margin-right: 10px; /* 右側の余白を縮小 */
  }
  .header-logo-img {
    height: 68px;
    box-shadow:
    -2px 0 10px 0 rgba(0,0,0,0.25), /* 左側 */
     2px 0 10px 0 rgba(0,0,0,0.25); /* 右側 */
  }
  h1.header-logo-text {
    font-size: 0.80em;
    top: 8px;
    left: 45px; 
    padding: 1px 2px;
  }
}
/* 画面幅660px以下：ロゴ左寄せ＋メニューボタン右側いっぱい */
@media (max-width: 660px) {
  #header {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    align-items: stretch !important;
  }
  .header-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .header-flex {
    align-items: stretch !important;
    gap: 0 !important;
    height: auto !important;
  }
  .header-logo-col {
    margin-left: 4px; /* 左側の余白を追加 */
    margin-right: 4px; /* 右側の余白を縮小 */
  }
  .header-button-col {
    min-width: 45%;
    height: 90px; /* ボタンの高さを調整 */
    flex: 1 1 0% !important;
    box-sizing: border-box;
    border-radius: 0 !important;  /* 角を丸めない */
    margin: 0 ;    /* 外側余白なし */
    padding: 0;    /* 上下・左の余白なし、右だけ10px */
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(180deg, #ffe07a 0%, #ffb13b 60%, #a05a00 100%);
    /* 明るめ茶色＋黄色味グラデーション */
    box-shadow: inset 0 0 0 1.5px #e0a85c;
    color: #6b3f1d;
    transition: background 0.2s;
    height: auto !important;
    overflow: visible !important;
    flex-direction: column;
    align-items: stretch;
  }
  .header-button-col:active,
  .header-button-col:focus-within {
    background: linear-gradient(180deg, #ffe6b0 0%, #b97b2e 100%);
  }
}
/**************************
/* 看板ボタンナビゲーション
**************************/
/* 共通スタイル */
#topnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px; /* 横のマージン */
  padding: 0;
  margin: 0;
  list-style: none;
  transition: none;
}
#topnav li {
  margin: 0;
  padding: 0;
}
#topnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 125px;
  background: url('images/menubutton_normal.png') no-repeat center center;
  background-size: 135px 125px;
  background-position: center center; /* 追加 */
  color: #450000;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s;
  position: relative;
  box-sizing: border-box;
}
#topnav a span {
  display: block;
  font-size: 18px;
  margin-top: 20px; /* 必要に応じて調整 */
  color: #450000;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#topnav a span.en {
  display: block;
  font-size: 11px;
  color: #450000;
  margin-top: 2px;
  font-weight: normal;
  letter-spacing: 0.05em;
}
#topnav a span.jp_active {
  color: white;
}
#topnav a span.en_active {
  display: block;
  font-size: 11px;
  color: white;
  margin-top: 2px;
  font-weight: normal;
  letter-spacing: 0.05em;
}
#topnav li.is-active a {
  background: url('images/menubutton_active.png') no-repeat center center;
  color: #fff;
}
#topnav li.is-active a span {
  color: #fff;
}
#topnav a:hover {
  transform: rotate(6deg);
  background: url('images/menubutton_hover.png') no-repeat center center;
  color: #000;
}
#topnav a:hover span {
  color: #000;
}

/* サイズ縮小：1180px以下 */
@media (max-width: 1180px) {
  #topnav {
  gap: 17px; /* 横のマージン */
  }
  #topnav a {
    width: 98px;
    height: 125px;
    background-size: 98px 90px;
    background-position: center center; /* 追加 */
    font-size: 15px;
  }
  #topnav li.is-active a {
    background-size: 98px 90px;
  }
  #topnav a:hover {
    background-size: 98px 90px;
  }
  #topnav a span {
    font-size: 16px;
    margin-top: 10px;
  }
  #topnav a span.en {
    font-size: 9px;
  }
}

/* サイズ縮小：940px以下 */
@media (max-width: 940px) {
  #topnav {
  gap: 4px; /* 横のマージン */
  }
  #topnav a {
    width: 74px;
    height: 110px;
    background-size: 74px 68px;
    background-position: center center; /* 追加 */
    font-size: 12px;
  }
  #topnav li.is-active a {
    background-size: 74px 68px;
  }
  #topnav a:hover {
    background-size: 74px 68px;
  }
  #topnav a span {
    font-size: 12px;
    margin-top: 8px;
  }
  #topnav a span.en {
    font-size: 8px;
    margin-top: 1px;  
  }
}

/* 660px以下：縦並び・背景画像非表示・メニュー格納 */
@media (max-width: 660px) {
  #topnav {
    display: none;
    width: 100%;
    background: #f5f5f5;
    border-radius: 0; /* 角を丸めない */
    box-shadow: 2px 2px 2px 8px rgba(0, 0, 0, 0.301);
    padding: 0;
    position: absolute; /* 画面上部に固定 */
    top: 56px; /* メニューボタンの下に表示。必要に応じて調整 */
    z-index: 1000; /* 画像や他要素より前面に */
    box-sizing: border-box;
  }
  #topnav.is-active {
    display: block　!important; /* メニューが開いているときは表示 */
  }
  #topnav li {
    width: 100%;
  }
  #topnav a {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: auto;
    background: none;
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 12px;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
    transition: none;
  }
  #topnav a span {
    font-size: 16px;
    color: #888;
    margin-top: 0;
    margin-left: 8px;
    letter-spacing: 0.16em;
    background: linear-gradient(180deg, #838282 0%, #2b2b2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  #topnav a span.en {
    font-size: 11px;
    margin-top: 1px; 
    color: #450000;
    background: none !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: initial !important;
    background-clip: border-box !important;
  }
  #topnav li.is-active a {
    background: #669900;
    color: #fff;
  }
  #topnav li.is-active a span {
    color: #fff;
    letter-spacing: 0.16em;
    background: linear-gradient(180deg, #ffffff 0%, #fffece 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  #topnav li.is-active a span.en {
    color: #fff;
    background: none !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: initial !important;
    background-clip: border-box !important;
  }
  #topnav a:hover {
    background: #ff9900;
    color: #fff;
    transform: none;
  }
  #topnav a:hover span {
    color: #fff;
    background: linear-gradient(180deg, #ffffff 0%, #fffece 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* メニューボタン表示 */
  #mainNav {
    position: relative; /* #topnavの絶対位置の基準に */
  }
  #menu {
  display: block !important;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 16px 0 !important; 
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.12em;
  /* MENU文字を白系グラデーションで画像風に装飾 */
  background: linear-gradient(180deg, #fff 0%, #fffbe6 40%, #ffe6b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow:
    -1px -1px 0 #a05a00,
     1px -1px 0 #a05a00,
  border-radius: 6px;
  }

  #menu .menu-icon {
  font-size: 34px;
  font-weight: bold;
  /* ≡の配色とフチをMENUと反転（茶色グラデ＋白フチ） */
  background: linear-gradient(180deg, #a05a00 0%, #b97b2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
     0  0   8px #fffbe6;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
  }
}

/* メニューボタン初期は非表示（PC） */
#menu {
  display: none;
}


/**************************
/* 各自治体のバナー
**************************/
#mainBanner{
margin:6px auto;
padding:0;
width:100%;
line-height:0;
}

#mainBanner .inner{position:relative;}

#mainBanner img{
max-width:100%;
height:auto;
border-radius: 8px;
}

/**************************
/* グリッド
**************************/
.gridWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 24px 16px; /* 行・列の間隔はお好みで */
  margin-bottom: 32px;
}
.grid {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.514);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%; /* 高さを揃えたい場合 */
  background: linear-gradient(180deg, #ffffff 0%,rgb(240, 238, 233)60%);
}

.grid .desc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px; /* 画像とテキストの間隔 */
  padding: 12px;
}
.grid .desc-text {
  flex: 1;
  min-width: 0;
  margin-top: 8px;
  font-size:13px;
}

.grid p{padding:5px 0;}

.grid span.bold{
	font-weight:bold;
	font-size:13px;
}

.grid p.img{
  float: none;
  margin: 0;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
}

.grid p.img img {
  display: block;
  width: 220px;
  height: auto;
  border: 2px solid #9c825a;  /* 画像の枠線 */
  border-radius: 8px;
}

.img a:hover{
	opacity:0.5;
	transition:0.3s;
}


.readmore {
  margin-top: auto;
  align-self: flex-start; /* 左寄せ。中央や右寄せにしたい場合はcenter/rightに変更 */
}

.readmore a{
font-size:13px;
padding:3px 5px;
border-radius:3px;
color:#fff;
background:#999;
}

.readmore a:hover{background:#ccc;}


/*物件番号と価格と詳細確認ボタンのレイアウト定義*/
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  margin-bottom: 5px;
  box-shadow: 0 6px 12px -4px rgba(71, 61, 46, 0.452);
  font-weight: bold;
  font-size: 18px;
}

.property-header .header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.property-header .number-new {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap; /* 改行させない */
  color: #ff6600;
}

.property-header .number {
  font-weight: bold;
  font-size: 15px;
  color: #8b8b8b;
  display: inline-block;
}

.property-header .new {
  font-size: 13px;
  font-weight: bold;
  background: linear-gradient(180deg, #ffb347 0%, #ff4800 100%);
  -webkit-background-clip: text;s
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


.property-header .price {
  color: #f80015;
  font-size: 22px;
  font-weight: bold;
  margin-left: 8px;
}

.property-header .readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 6%;
}

.property-header .readmore a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 20px;
  background: #999;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  transition: background 0.2s;
}
.property-header .readmore a:hover {
  background: #b87f2f;
}

.price {
	white-space: nowrap; /* 幅が足らない場合は価格要素全て改行 */
}

/* フッター内のグリッド(3カラム) */
#footer .grid{
border:0;
background:transparent;
}

#footer .grid p{padding:0;}


/*************
メイン コンテンツ
*************/
section.content{
padding:10px 0;
margin-bottom:20px;
border-radius:6px;
overflow:hidden;
font-size:14px;
}

section.content p{margin-bottom:5px;}


/* アーカイブページ */
section.content .archive{
padding:20px 0 0;
border-bottom:1px dotted #ccc;
}

section.content p{margin-bottom:5px;}

h3.heading {
  font-size: 21px;
  font-weight: bold;
  letter-spacing:0.6em;
  text-align: center;
  padding: 16px 0;
}

h3.heading .house {
  color: #d47230;
}

h3.heading .land {
  color: #46c02e;
}

h3.heading .rent {
  color: #d838a8;
}rgb(209, 46, 160)

h3.heading .company {
  color: #e3ff67;
}


section.content img{
max-width:90%;
height:auto;
}

.alignleft{
float:left;
clear:left;
margin:3px 10px 10px 0;
}

.alignright{
float:right;
clear:right;
margin:3px 0 10px 10px;
}

.border,ul.list img{border:4px solid #ebebeb;}



/*************
/* フッター
*************/
#footer{
clear:both;
padding:20px 0;
overflow:hidden;
}

.tel span{
font-size:14px;
}

.tel strong{
font-size:20px;
font-weight:bold;
}

#footer .copyright{font-size:11px;}


/*************
サブ（フッター前）コンテンツ
*************/
#sub ul{padding:10px;}

#sub li{
margin-bottom:10px;
padding-bottom:10px;
border-bottom:1px dashed #ebebeb;
}

#sub li:last-child{
border:0;
margin-bottom:0;
}

#sub li a{
color:#555;
display:block;
}

#sub li a:hover{
color:#a5a5a5;
}

#sub ul.list{padding-bottom:7px;}

#sub ul.list li{
clear:both;
margin-bottom:5px;
padding:5px 0;
overflow:hidden;
}

#sub ul.list li img{
float:left;
margin-right:10px;
}

#sub ul.list li{
font-size:12px;
line-height:1.35;
}

#sub .grid h3{border-radius:0;}



/* タイポグラフィ
*****************************************************/
img.aligncenter{
display:block;
margin:5px auto;
}

img.alignright, img.alignleft{
padding:4px;
margin:0 0 2px 7px;
display:inline;
}

img.alignleft{margin:0 7px 2px 0;}

.alignright{float:right;}
.alignleft{float:left;}


/*------------------------------------------------------------
 PC用　画面サイズ960以上
------------------------------------------------------------*/
@media only screen and (min-width:960px){
#wrapper,.inner{
width:940px;
padding:0;
}

#wrapper{padding-bottom:20px;}

/* グリッド全体 */
/* 960px以上でもGridレイアウトを使う */
.gridWrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 16px !important;
    width: 100% !important;
    margin-left: 0 !important;
    border-collapse: unset !important;
    border-spacing: unset !important;
  }
  .grid {
    display: block !important;
    width: auto !important;
  }

#sub.gridWrapper{width:980px;}

/* サブコンテンツ + フッター グリッド(3カラム) */
#sub .grid, #footer .grid{width:300px;}


}/*画面サイズ960閉め*/

/*------------------------------------------------------------
 画面サイズ959以下
------------------------------------------------------------*/
@media only screen and (max-width:959px){
*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

  .gridWrapper {
    display: grid !important;
    grid-template-columns: 1fr !important; /* 1列にする */
    gap: 24px 16px !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  .grid {
    display: block !important;
    width: auto !important;
    float: none !important;
    margin: 10px 0 !important;
  }

.grid img{
float:left;
margin-right:5px;
}

#sub .grid{
width:32%;
margin:10px 1%;
}

#sub .grid:first-child{
margin-left:0;
}

#sub .grid:last-child{
margin-right:0;
}

#footer .grid, #footer .grid p{
float:none;
width:100%;
text-align:center;
border:0;
}

#footer .grid:last-child{padding-top:20px;}
}/*画面サイズ959閉め*/

/*------------------------------
 画面サイズ640以下
------------------------------*/
@media only screen and (max-width:640px){
#footer .grid p{text-align:center;}

.grid img{float:none;margin:20px auto 10px;max-width:100%;height:auto;}

  .grid p.img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

.grid p,#sub .grid li{text-align:left;}
.alignleft,.alignright{float:none;display:block;margin:0 auto 10px;}

}

/*------------------------------
 画面サイズ480以下
------------------------------*/
@media only screen and (max-width:480px){
#mainBanner h2,#mainBanner h3{font-size:90%;}

.grid .desc {
  gap: 5px; /* 画像とテキストの間隔 */
  padding: 6px;
}

.grid .desc-text {
  margin-top: 4px;
}

  .grid p.img img {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    height: auto;
  }

#sub .grid{
float:none;
width:98%;
}

#sub .grid h3{padding:10px 5px;}
}
.red {
	color: #F00;
}
.orange {
	color: #ff6633;
}

/* 新フッター　2カラムレイアウト
------------------------------------------------------------*/
.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-flex {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.footer-info-col {
  flex: 0 1 22%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0;
}
.footer-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-bottom: 8px;
  position: relative; /* 追加 */
}
.footer-logo-img {
  width: 231px;
  height: auto;
  display: block;
}
.footer-logo-text {
  position: absolute;      /* 追加 */
  top: 6px;               /* 上からの距離（調整可） */
  right: 8px;             /* 右からの距離（調整可） */
  margin-top: 0;           /* 既存のmargin-topは不要 */
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  text-align: right;
  background: rgba(255,255,255,0.7); /* 背景を薄くする場合（任意） */
  padding: 2px 8px;                  /* 任意 */
  border-radius: 4px;                /* 任意 */
  pointer-events: none;
}
.footer-sns-label {
  margin: 6px 0 4px 0;
  font-size: 0.95em;
  color: #333;
  font-weight: bold;
}
.footer-sns-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-sns-icons img {
  width: 28px;
  height: 28px;
}
.footer-info-list {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  color: #333;
  font-size: 1em;
}
.footer-info-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.footer-map-col {
  flex: 0 1 78%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.footer-map-col iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    gap: 12px;
    align-items: center; /* 中央寄せ */
  }
  .footer-info-col {
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
  }
  .footer-map-col {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .footer-map-col iframe {
    width: 100vw !important;   /* ビューポート幅いっぱい */
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 300px;
    margin: 0 -16px; /* 左右の余白を消す場合 */
    border-radius: 0;
    display: block;
  }
}

/* 最下部の文面
------------------------------------------------------------*/
.footer-note {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin: 6px 0 8px 0;
  letter-spacing: 0.05em;
}

/*-------------------------------------------------------
  賃貸・専用グリッド
---------------------------------------------------------*/
.rentGridWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  margin-bottom: 32px;
  padding: 0;
}
/* 賃貸グリッド（画像下に文字） */
.rentGridWrapper .grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(27, 11, 25, 0.589);
  padding: 0;
  height: 100%;
}

.rentGridWrapper .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0 0 12px 0;
}

.rentGridWrapper .img {
  margin: 12px auto 0 auto;
  padding: 0;
  line-height: 0;
  text-align: center;
}

.rentGridWrapper .img img {
  display: block;
  margin: 0 auto;
  width: 240px;
  height: auto;
  border: 2px solid #9c825a;
  border-radius: 8px;
}

.rentGridWrapper .number{
  padding: 10px 10px;
  font-weight: bold;
  font-size: 14px;
  color: #6e6e6e;
  display: inline-block;
}

.rentGridWrapper .price-table {
  display: flex;
  flex-wrap: wrap;         /* 幅を超えたら自動で折り返し */
  justify-content: center; /* 中央揃え（お好みで） */
  gap: 6px 10px;           /* 行・列の間隔（お好みで調整） */
  margin: 8px 0;
}

.rentGridWrapper .price  {
  color: #f80015;
  font-size: 22px;
  font-weight: bold;
}

.rentGridWrapper .price-topic  {
  color: #ffffff;
  background: #750b0b;
  border-radius: 20px;
  padding: 6px 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.rentGridWrapper .address-border{
  width: 100%;
  border-top: 1px solid #bfa76a; /* 上線を追加 */
  border-bottom: 1px solid #bfa76a; /* 上線を追加 */
  line-height: 1.5;
  text-align: center;
}

.rentGridWrapper .address {
  padding: 6px 6px;
  font-weight: bold;
  font-size: 18px;
  color: #161616;
  display: inline-block;
  line-height: 1.5;
}
.rentGridWrapper .readmore {
  padding: 4px 16px 0 16px;
  text-align: left;
}

.rentGridWrapper .new {
  font-size: 13px;
  font-weight: bold;
  background: linear-gradient(180deg, #ffb347 0%, #ff4800 100%);
  -webkit-background-clip: text;s
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rentGridWrapper .readmore {
  margin-top: auto;
  padding-bottom: 8px;
}

.rentGridWrapper .readmore a {
  display: inline-block;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 3px;
  color: #fff;
  background: #999;
  text-decoration: none;
}

.rentGridWrapper .readmore a:hover {
  background: #ccc;
}

.rentGridWrapper .features-table {
  display: flex;
  flex-wrap: wrap;         /* 幅を超えたら自動で折り返し */
  justify-content: center; /* 中央揃え（お好みで） */
  align-items: center;
  gap: 6px 10px;           /* 行・列の間隔（お好みで調整） */
  margin: 12px 0;
}

.rentGridWrapper .features {
  display: flex;
  align-items: center;          /* ← 縦中央揃え */
  justify-content: center;      /* ← 横中央揃え */
  background: #f5f5e6;
  border: 1px solid #bfa76a;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  text-align: center;
  margin: 0;
  min-height: 50px;
}

@media (max-width: 1024px) {
  .rentGridWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 660px) {
  .rentGridWrapper {
    grid-template-columns: 1fr;
  }
}

/* 賃貸用グリッドの個別調整が必要なら */
.rentGrid {
  /* 必要に応じてスタイル追加 */
}

/*-------------------------------------------------------
  会社概要・専用グリッド
---------------------------------------------------------*/
.companyGridWrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 20px auto;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.companyGrid {
  flex: 1 1 0;
  min-width: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 2px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
}

.companyGrid .box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}

.companyGrid .imgPicture {
  flex: 0 0 auto;
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.companyGrid .imgPicture img {
  width: 100%;
  max-width:480px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.companyGrid .copy {
  flex: 1;
  margin: 0;
  color: #666;
  font-size: 14px;
  text-align: left;
  line-height: 2.0;
  padding: 0;
}
.companyGrid .access {
	color: #666;
	font-size:12px;
	text-align:left;
}

@media (max-width: 960px) {
  .companyGrid .box {
    flex-direction: column;
    gap: 16px;
  }
  .companyGrid .imgPicture {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  .companyGrid .imgPicture img {
    max-width: 100%;
  }
}

/*-------------------------------------------------------
  会社概要・マップ用
---------------------------------------------------------*/
.accessGridWrapper{
padding-bottom:20px;
clear:both;
overflow:hidden;
}

.accessGrid{
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
padding:2px;
}
#accessMap{
	position: relative;
	padding-left: 50%;
	padding-bottom: 50%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}

#accessMap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}