/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved:  9月 17 2026 | 22:23:05 */
/* ── 物件情報アコーディオン（details版・1ページに何個でも置ける） ── */
.cd-acc {
  border: 1px solid #e2ded3;
  border-radius: 8px;
  background: #fff;
  margin: 0 0 18px;
  overflow: hidden;
}
.cd-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: #f4f1ea;
  color: #3E3925;
  font-weight: 700;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .15s ease;
}
.cd-acc > summary::-webkit-details-marker { display: none; }
.cd-acc > summary::marker { content: ""; }
.cd-acc > summary:hover { background: #ece8dd; }
.cd-acc > summary h2 {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.7rem !important;
  line-height: 1.5 !important;
  letter-spacing: .05rem !important;
  color: #3E3925 !important;
  font-weight: 700 !important;
}
.cd-acc > summary::after {
  content: "＋";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: #3E3925;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.cd-acc[open] > summary::after { content: "−"; }
.cd-acc .cd-acc-body { padding: 16px 16px 20px; }
.cd-acc .cd-acc-body > *:last-child { margin-bottom: 0; }
.cd-acc .event_property_page_table_wrapper { margin-bottom: 0; }
.cd-acc .event_property_page_table {
  min-width: 0;
  box-shadow: none;
  border: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .cd-acc { margin-bottom: 4vw; }
  .cd-acc > summary { padding: 4vw; gap: 3vw; }
  .cd-acc > summary h2 { font-size: clamp(15px, 4.3vw, 19px) !important; }
  .cd-acc > summary::after { width: 26px; height: 26px; line-height: 26px; font-size: 1.3rem; }
  .cd-acc .cd-acc-body { padding: 3vw 3vw 4vw; }
}
