	.bodymommo980{
		max-width: 1080px;
		margin:50px auto;
	}
	.body-iroiro{
		background: #f5f5ef;
		padding:70px 0;
	}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;               /* カード同士の余白（お好みで） */
  align-items: flex-start;  /* 各カードの高さはバラバラでOK */
}

/* 1行に3枚（PC） */
.cards .card {
  box-sizing: border-box;
  width: calc(33.333% - 16px); /* gap とバランス見て微調整してOK */
}
.card__thumb {
  aspect-ratio: 16 / 13;   /* ★ここで比率固定 */
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f3f3f3;
  display: block;
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card__thumb img:hover {
opacity: 0.7;
}


	.card{
		background: #fff;
		padding:7.5px;
	}
	
	.card__title{
		font-size:16px;
		text-align: center;
		margin:20px 0 15px 0;
	}
	.card__title span{
		font-size:14px;
	}
  
  .card__badges9{
    font-weight: 700;
  }
  .kukaku{
	background: #dcdcc7;
	text-align: center;
	padding:5px;
	}
	.info-list{
	font-size:13px;
	}
.info-list li{
  position: relative;
  padding-left: 12px;
}
 
.info-list li:before {
  content: "";
  position: absolute;
  top: .8em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #666666;
  border-radius: 50%;
}
	
	
/* フォーム全体 */
.search-form{
  display: grid;
  gap: 16px 20px;
  align-items: start;
  margin: 24px 0;
background: #fff;
padding:40px 15px;
border: solid 1px #ccc;
border-radius: 20px;
}

/* セレクト2つを横並びに */
.search-form .select-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
	
	.serekuton-tonton{
		display: grid;
		grid-template-columns: 1fr 2.5fr;
		gap: 12px;
	}

/* 共通セレクト */
.search-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 44px;
  padding: 0 40px 0 12px;
  border-radius: 6px;
  background: #fff;
  color: var(--txt);
  transition: border-color .15s, box-shadow .15s;
	border: 1px solid #ccc;
}
.search-form select:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(124,102,181,.15);
}
.search-form select:disabled{
  color: var(--muted);
  background-color: #f6f6f8;
}

/* 現在地ボタン */
#nearby-btn{
  height: 44px;
  padding: 0 16px 0 40px;
  border: none;
  border-radius: 5px;
  background: #727171;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s, transform .02s;
}
#nearby-btn:hover{ background:#ccc; }
#nearby-btn:active{ transform: translateY(1px); }
#nearby-btn[disabled]{ opacity:.55; cursor: not-allowed; }

/* 価格チェック群：複数列グリッド */
.price-grid {
  display: flex;
justify-content: center;
  flex-wrap: wrap;
  gap: 45px;
}

.btn-cat {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
width: 30%;
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: background .15s, border-color .15s, color .15s;
}
/* チェックボックス自体は隠す（アクセシビリティは保持） */
.btn-cat > input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* ホバー / フォーカス */
.btn-cat:hover { border-color: #aaa; }
.btn-cat:focus-within { outline: 2px solid #5b9dff; outline-offset: 2px; }

/* 選択時（最新ブラウザ：Chrome/Safari/EdgeでOK） */
.btn-cat:has(input:checked) {
  background: #6987ab;
  color: #fff;
  border-color: #6987ab;
  font-weight: 700;
}
	
	.card__more{
		text-align: right;
		font-size:12px;
	}

/* :has()未対応ブラウザ向けの保険（テキストだけ太字に） */
.btn-cat > input:checked + span { font-weight: 700; }


/* 検索ボタン（下の大きい丸ボタン想定） */
.search-submit{
  display:block;
  width: clamp(220px, 40vw, 360px);
  margin: 24px auto 0;
  height: 56px;
  border: none;
  border-radius: 28px;
  background: #926d93;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background-color .15s, transform .02s;
}
.search-submit:hover{ background: #ccafce; }
.search-submit:active{ transform: translateY(1px); }

/* レスポンシブ */
@media (max-width: 768px){
  .search-form{
    grid-template-columns: 1fr; /* 縦積み */
  }
  .search-form .select-row{
    grid-template-columns: 1fr; /* セレクトも縦に */
  }
  #nearby-btn{
    width: 100%;
  }
  .price-grid{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
.card__badges{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:8px;
}
.card__badges li{ list-style:none; }

.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:9999px;
  font-size:10px;
  font-weight:700;
  line-height:1;
  color:#fff;
  background:#8a8fb1;
  text-decoration:none;
}

.badge9{
  display:inline-block;
  padding:6px 12px;
  font-size:10px;
  font-weight:700;
  line-height:1;
  border-bottom: solid 1px #616161ff;
  text-decoration:none;
}

/* ここから “スラッグ別” の色指定 */
.badge--shinchiku      { background:#E76F51; }
.badge--custom-order    { background:#3A86FF; }
.badge--freeplan      { background:#2A9D8F; }
.badge--iot          { background:#6D597A; }
.badge--osusume     { background:#f47761; }
.badge--price-down     { background:#5026D9; }

.badge--kosodate     { background:#40BF4F; }
.badge--ekicika    { background:#E5561A; }
.badge--kanbai     { background:#808080; }
.badge--tuboookii     { background:#5026D9; }
.badge--hiraya     { background:#E40DF2; }

/* ホバー */
.badge:hover{ filter:brightness(.92); }

.result-heading{
  font-weight:700; margin:10px 0 14px; font-size:18px;
  display:flex; gap:.5em; align-items:baseline;
}
.result-heading .count{ font-size:12px; color:#666; }
.section-gap{ margin-top:42px; }


@media screen and (max-width: 768px) {	
    .cards {
        display: block;
        margin: 0 15px;
    }
.serekuton-tonton {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.price-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.search-form {
    display: grid;
    gap: 16px 20px;
    margin: 24px 15px;
    background: #fff;
    padding: 40px 10px;
}
.body-iroiro {
    background: #f5f5ef;
    padding: 20px 0;
}
.result-heading {
    font-weight: 700;
    margin: 10px 15px 14px;
}
	}



/* ================================
   区画ボタン（details/summary）
   ================================ */

/* details 全体 */
.kukaku-toggle-block {
  margin-top: 16px;
  border-radius: 20px;
}

/* summary をボタンっぽく */
.kukaku-toggle-btn {
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background-color: #dcdcc7;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom:10px;
}

/* デフォルトの三角マーカーを消す */
.kukaku-toggle-btn::-webkit-details-marker { display: none; }
.kukaku-toggle-btn::marker { content: ""; }

.kukaku-toggle-label {
  font-weight: 700;
}

.kukaku-toggle-push {
  font-size: 11px;
  padding: 2px 12px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #c8c3ad;
}

/* details を開いた時の下側ボックス */
.kukaku-card-wrap {
  margin-top: 10px;
  padding: 12px 10px 6px;
  background: #f7f5eb;
  border-radius: 18px;
}

/* アーカイブでは1列表示 */
.kukaku-card-wrap .kukaku-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ================================
   区画カード
   ================================ */

.kukaku-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* 区画No. 見出し */
.kukaku-card__head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0dccb;
  margin-bottom: 6px;
}

/* 本文エリア */
.kukaku-card__body {
  font-size: 12px;
}

/* 行ごとのレイアウト */
.kukaku-card__row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 2px;
  align-items: baseline;
  margin: 2px 0;
}

.kukaku-card__row dt {
  font-weight: 700;
}

.kukaku-card__row dd {
  margin: 0;
}

/* スマホで少し余白を詰めたい場合 */
@media (max-width: 767px) {
  .kukaku-toggle-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
  .kukaku-card-wrap {
    padding: 8px 8px 4px;
  }
  .kukaku-card {
    padding: 8px 10px;
  }
  .cards .card {
    box-sizing: border-box;
    width: calc(100% - 0px);
}
}
