@charset "UTF-8";
/* =========================================================================
   共通（全デバイス共通）
========================================================================= */
.section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* 白丸アイコン */
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 1em;
}
/* 矢印 */
.arrow {
  color: #a889bc; /* ボタン色に合わせる */
  font-size: 1.2em;
  line-height: 1;
}
/* タイトル */
.section-header {
  width: 90%;
  max-width: 1200px;
  border: 6px solid #c8a97e; /* 枠の色 */
  border-radius: 1.5em; /* 角丸 */
  padding: 4em 1em; /* 上下左右に余白 */
  margin: 0.5em auto 1em;
  text-align: center;
  position: relative;
  overflow: hidden;
	background-color: hsla(0,0%,100%,0.20);
}
/* 見出しテキスト */
.section-header h2 {
  font-size: 2rem;
  color: #4e342e;
  margin: 0;
  position: relative;
  z-index: 1;
  /*text-shadow: 1px 1px 2px rgba(0,0,0,0.4);*/
  display: inline-block;
}
/* 下線（中央） */
.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 8px;
  margin: 0.2em auto 0;
  background-color: #4e342e;
  border-radius: 4px;
}
.ditail-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 3em 2em 10em;
  z-index: 0;
  text-align: center;
}
.ditall-intro {
  margin-bottom: 2em;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}
/*-----------物件詳細ページ専用スタイル-----------*/
.ditail-inner h2 {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: #4e342e;
}
/* ▼ タイトル・ラベル・価格 */
.property-header .property-flex {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-start;
  margin-bottom: 2em;
}
.property-header .property-text {
  order: 1;
}
.property-header .property-image {
  order: 2;
}
.property-header .property-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0.5em;
  border: 1px solid #ccc;
}
.property-header .property-flex {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.property-header .property-text {
  order: 1;
  flex: 1;
  padding-right: 2em;
  text-align: left;
}
.property-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #4e342e;
  border-bottom: thin dotted #4e342e;
}
.price {
  font-size: 1.2rem;
  padding-left: 1.5em;
}
.price-value {
  color: #d44b3d; /* 落ち着いた赤（#ff0000より柔らかい） */
  font-weight: bold;
  margin-left: 0.5em;
}
.property-note {
  font-size: 0.95rem;
  color: #555;
  background-color: #F6F0E6;
  padding: 1.5em;
  margin-top: 1em;
  border-radius: 0.3em;
  font-weight: bold;
}
.property-header .property-image {
  order: 2;
  flex: 0 0 40%;
  max-width: 400px;
  text-align: right;
}
.property-label {
  display: inline-block;
  background-color: #f2b282;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.3em 1em;
  border-radius: 1em;
  margin-bottom: 1em;
}
/* ▼ おすすめポイント */
.property-point {
  background: #fdfcfa;
  padding: 2em;
  border-left: 6px solid #f2b282;
  margin-bottom: 2em;
  text-align: left;
}
.property-point .point-title {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.property-point .point-list {
  padding-left: 1.2em;
}
.property-point .point-list li {
  margin-bottom: 0.6em;
}
/* ▼ 物件概要テーブル */
.property-outline {
  margin-top: 2em;
}
.outline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}
.outline-table th, .outline-table td {
  border: 1px solid #ddd;
  padding: 0.8em 1em;
  text-align: left;
}
.outline-table th {
  background: #f9f9f9;
  width: 25%;
  color: #4e342e;
}
/* ▼ 外観・参考画像ギャラリー */
.property-gallery {
  margin-top: 3em;
}
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.gallery-list img {
  width: 30%;
  min-width: 200px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  object-fit: cover;
}
/* ▼ 地図エリア */
.property-map {
  margin-top: 3em;
  text-align: center;
}
.map-frame iframe {
  width: 100%;
  max-width: 960px;
  height: 400px;
  border: none;
  border-radius: 0.5em;
}
/* =========================================================================
   PC用（1025px以上）
========================================================================= */
@media only screen and (min-width: 1026px) {}
/* =========================================================================
   タブレット用（1024px以下）
========================================================================= */
@media only screen and (max-width: 1025px) {
  .section {
    padding-right: 1em;
    padding-left: 1em;
  }
  /*-----------物件詳細ページ専用スタイル-----------*/
  /* ▼ タイトル・ラベル・価格 */
}
/* =========================================================================
   スマホ用（768px以下）
========================================================================= */
@media only screen and (max-width: 768px) {
  .section {
    /*background-color: aquamarine;*/ /*確認用*/
    /*padding-top: 15px;*/
  }
  .ditail-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .section-header {
    width: 100%;
    margin: 0.5em auto 1em;
    padding: 1em 0.5em;
    background-position: center center;
    background-size: cover;
    border: 3px solid #c8a97e;
  }
  .section-header h2 {
    font-size: 1.2rem;
  }
  .section-header h2::after {
    width: 60px;
    height: 6px;
    margin-top: 0.4em;
  }
  /*-----------物件詳細ページ専用スタイル-----------*/
  .property-header {
    display: flex;
    justify-content: center;
  }
  .property-header .property-flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 0 1em;
    box-sizing: border-box;
    gap: 2em;
  }
  .property-header .property-text {
    order: 1;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-right: 0em;
  }
  .property-header .property-image {
    order: 2;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .property-header h1 {
    font-size: 1.2rem;
  }
  .price {
    padding-left: 0;
  }
  .property-point {
    padding: 1em;
  }
/*  .gallery-list {
    flex-direction: column;
    align-items: center;
  }
  .gallery-list img {
    width: 90%;
  }*/
	.outline-table, .outline-table thead, .outline-table tbody, .outline-table tr, .outline-table th, .outline-table td {
    display: block;
    width: 100%;
  }

  .outline-table tr {
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc;
  }

  .outline-table th {
    background: #f9f9f9;
    padding: 0.5em 0.8em;
    border: none;
    font-weight: bold;
    color: #4e342e;
  }

  .outline-table td {
    padding: 0.5em 0.8em;
    border: none;
  }

  .outline-table tr:nth-child(even) {
    background-color: #fafafa;
  }
	/* ▼ 物件概要テーブル：スマホ用スタイル */
  .outline-table, .outline-table thead, .outline-table tbody,
  .outline-table tr, .outline-table th, .outline-table td {
    display: block;
    width: 100%;
  }

  .outline-table tr {
    margin-bottom: 1em;
    border-bottom: none; /* ← 下線を非表示に修正 */
  }

  .outline-table th {
    background: #f9f9f9;
    padding: 0.5em 0.8em;
    border: none;
    font-weight: bold;
    color: #4e342e;
  }

  .outline-table td {
    background-color: #fff; /* ← 明示的に白背景に修正 */
    padding: 0.5em 0.8em;
    border: none;
    word-break: break-word; /* 長い語の折り返し対策 */
  }

  .outline-table tr:nth-child(even) {
    background-color: transparent; /* ← 偶数行背景の上書き防止 */
  }
	.property-outline p{
	font-size: 0.85rem;
	}
	 /* ▼ ギャラリー：スマホは横スクロール */
  .property-gallery {
   /* overflow: hidden;*/ /* はみ出しのチラつき防止（任意） */
  }
  .gallery-list {
    display: flex;                 /* 横並び */
    flex-wrap: nowrap;             /* 折り返さない */
    gap: 10px;                     /* 画像間の余白 */
    overflow-x: auto;              /* 横スクロールON */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
		justify-content: flex-start;			/* ★ここが重要：中央寄せを打ち消す */
    padding: 0 1em;                /* 端が見切れないように少し内側へ */
    scroll-snap-type: x mandatory; /* スナップ（任意） */
    scrollbar-width: none;         /* Firefox スクロールバー非表示 */
		 box-sizing: border-box; /* 余白計算のズレ防止 */
  }
  .gallery-list::-webkit-scrollbar {
    display: none;                 /* Chrome/Safari スクロールバー非表示 */
  }
  .gallery-list img {
    flex: 0 0 auto;                /* 縮ませない */
    width: 75vw;                   /* 画面幅の約3/4で見やすく */
    max-width: 480px;              /* 大きすぎ防止 */
    height: auto;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    object-fit: cover;
    scroll-snap-align: start;      /* スナップ位置（任意） */
    -webkit-user-drag: none;       /* 誤タップ軽減（任意） */
  }

}