@charset "UTF-8";

/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========================
   Base / SWELL override
   ========================= */
#lp-content .post_content,
#main_content .post_content {
  margin-top: 10px;
}

div#content {
  background: #fff;
}

.l-content {
  padding-top: 20px !important;
}

/* =========================
   Insurance Accordion (ins-acc)
   ========================= */
.ins-acc {
  margin: 0 0 12px;
}

.ins-acc__h3 {
  margin: 0;
}

.ins-acc__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: var(--hm-bg);
  color: var(--color_link);
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
}

.ins-acc__btn::after {
  content: "＋";
  font-weight: 900;
  opacity: .8;
}

.ins-acc__btn[aria-expanded="true"]::after {
  content: "－";
}

/* Panel: アニメあり（JSが .is-open を付与） */
.ins-acc__panel {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  background: #fff;

  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}

/* panel内の注記（右寄せ小さめ） */
.ins-acc__panel p {
  font-size: 10px;
  text-align: right;
  color: #666;
  margin-top: 10px;
}

.ins-acc__panel.is-open {
  opacity: 1;
  max-height: 1200px;
  /* 足りなければ増やす */
}

@media (prefers-reduced-motion: reduce) {
  .ins-acc__panel {
    transition: none;
  }
}

.ins-acc__empty {
  margin: 0;
  opacity: .7;
  font-weight: 700;
}

/* 会社リスト（中点リスト統一） */
.ins-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  line-height: 1.7;
}

.ins-list li {
  position: relative;
  padding-left: 1.1em;
}

.ins-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.ins-list li+li {
  margin-top: 4px;
}

/* PCだけ2列 */
@media (min-width: 769px) {
  .ins-list--cols {
    column-count: 2;
    column-gap: 18px;
  }

  .ins-list--cols li {
    break-inside: avoid;
  }
}

/* =========================
   Hero / Shop name blocks
   ========================= */
/* PC hero */
.shopname__wrap {
  width: 100%;
  height: 300px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  /* 縦中央 */
  justify-content: center;
  /* 横中央 */
  box-sizing: border-box;

  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* 白いオーバーレイ */
.shopname__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.shopname__wrap .shopname {
  position: relative;
  z-index: 2;

  margin: 0;
  padding: 12px 16px;
  background-color: #EB7600;
  color: #fff;
  border-radius: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}

.shopname__wrap .shopname span {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: bold;
}

/* SPではPCヒーローを消す */
@media (max-width: 768px) {
  .shopname__wrap {
    display: none;
  }
}

/* shopimage01上に重ねる準備 */
.shop-photo-main {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* SP用オーバーレイ（上に出す想定：absoluteにしない版） */
.shopname--overlay {
  margin: 0 auto 6px;
  padding: 7px 8px;
  background: #EB7600;
  color: #fff;
  border-radius: 4px;
  text-align: left;
  font-size: 11px;
  font-weight: normal;
  /* none → normal */
  line-height: 1.35;
  width: 100%;
}

.shopname--overlay span {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

/* =========================
   Shop layout / definition list
   ========================= */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 28px;
}

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

.shop-grid__left,
.shop-grid__right {
  min-width: 0;
}

.shop-section-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.shop-dl {
  margin: 0 0 10px;
}

.shop-dl__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--hm-main);
  font-size: 13px;
  font-weight: 300;
}

.shop-dl__row._access1 {
  border: none !important;
}

.shop-dl__row._access2 {
  border: dotted 1px #333;
  padding: 10px 20px;
}

.shop-dl__row dt {
  font-weight: 700;
  color: var(--hm-sub);
}

.shop-dl__row dd {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .shop-dl__row {
    display: block;
  }

  .shop-dl__row dt {
    display: block !important;
    width: 100% !important;
    padding: 4px;
    background: var(--hm-bg);
  }
}

/* 駐車場など */
.parkinginfo {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: bold;
  border: dotted 1px var(--hm-sub);
  border-radius: 4px;
}

.parkinginfo p span {
  color: var(--hm-main);
  font-weight: bold;
  font-size: 15px;
}

/* =========================
   Photos
   ========================= */
.shop-photo-main img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

/* メイン画像フェード */
.shop-photo-main img.js-shop-main-img {
  transition: opacity .25s ease;
  opacity: 1;
}

.shop-photo-main img.js-shop-main-img.is-fading {
  opacity: 0;
}

/* サムネ */
.shop-photo-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.shop-photo-thumb {
  cursor: pointer;
}

.shop-photo-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .shop-photo-thumb img {
    height: 72px;
  }
}

.shop-photo-thumb.is-active img {
  outline: 2px solid rgba(35, 127, 226, .9);
  outline-offset: 2px;
}

/* =========================
   Map
   ========================= */
.shop-map iframe {
  display: block;
  border-radius: 8px;
}

.shop-map {
  margin-top: 10px;
}

/* 地図開閉（details） */
.shop-map-accordion {
  margin-top: 16px;
}

.shop-map-accordion__summary {
  cursor: pointer;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.shop-map-accordion__summary::-webkit-details-marker {
  display: none;
}

.shop-map-accordion__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.shop-map-accordion[open] .shop-map-accordion__icon {
  transform: rotate(-135deg);
}

/* アクセスセクションだけ1列 */
.shop-grid.shop-grid--bottom {
  grid-template-columns: 1fr;
  gap: 16px;
}

.shop-grid.shop-grid--bottom .shop-grid__left,
.shop-grid.shop-grid--bottom .shop-grid__right {
  width: auto;
  max-width: none;
}

/* =========================
   Titles / small images
   ========================= */
.shop__access_img {
  width: 60px;
  max-width: 100%;
  height: auto;
}

.shop__kids_img {
  width: 80px;
  max-width: 100%;
  height: auto;
}

.shop__access_ttl {
  margin: 0 0 12px !important;
  background: none !important;
  color: var(--hm-main);
  border-top: none !important;
  border-bottom: none !important;
  font-size: 24px !important;
  padding: 0 !important;
}

.shop__access_ttl::before {
  border: none !important;
}

.shopttl__wrap {
  text-align: center;
  margin: 40px auto 20px;
}

/* =========================
   CV Button
   ========================= */
.shop-cv-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 24px;
  background: linear-gradient(90deg, #EB7600 0%, #FFBA00 100%);
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform .15s ease, box-shadow .15s ease;
}

.shop-cv-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.shop-cv-btn__text {
  font-size: 18px;
  line-height: 1.2;
}

.shop-cv-btn__arrow {
  position: absolute;
  right: 20px;
  width: 24px;
  height: auto;
}

/* shine */
.shop-cv-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  animation: shop-cv-shine 3.5s ease-in-out infinite;
}

@keyframes shop-cv-shine {
  0% {
    left: -120%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

@media (max-width: 768px) {
  .shop-cv-btn {
    padding: 18px 20px;
  }

  .shop-cv-btn__text {
    font-size: 17px;
  }
}

/* =========================
   Kids section
   ========================= */
.kids-section {
  margin: 32px 0;
}

.kids-section__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

/* cards: PC 3列 */
.kids-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 22px;
}

.kids-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.kids-card__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.kids-card__text {
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

/* SP: 横スクロール */
.kids-cards-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .kids-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    padding-right: 44px;
    /* 右端が隠れないように */
  }

  .kids-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .kids-card__img img {
    height: 170px;
  }

  /* 横スクロールヒント */
  .kids-cards-wrap::after {
    content: '↔';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    pointer-events: none;
  }
}

/* feature box */
.kids-feature {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: solid 2px #EB7600;
  border-radius: 20px;
}

.kids-feature__left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.kids-feature__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.kids-feature__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.kids-feature__list li+li {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .kids-feature {
    grid-template-columns: 1fr;
  }

  .kids-feature__left {
    display: none;
  }
}

/* =========================
   Shop insurance tabs
   ========================= */
.shop-insurance {
  margin: 28px 0;
}

.shop-tabs__nav {
  display: flex;
  gap: 10px;
  margin: 10px 0 14px;
}

.shop-tabs__tab {
  flex: 1;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  color: var(--hm-main);
}

.shop-tabs__tab.is-active {
  background: #4E8FB8;
  color: #fff;
  border-color: transparent;
}

.shop-tabs__panel {
  display: none;
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  background: #fff;
}

.shop-tabs__panel.is-active {
  display: block;
}

.shop-insurance__h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}

.shop-insurance__block {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.7;
}

.shop-insurance__content {
  font-weight: 700;
  line-height: 1.7;
}

.shop-insurance__empty {
  margin: 0;
  opacity: .7;
  font-weight: 700;
}

/* 取扱保険会社：PCのみ2列 */
.shop-insurance__cols {
  display: block;
}

@media (min-width: 769px) {
  .shop-insurance__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.shop-insurance__col {
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  background: #fff;
}

/* =========================
   Present / misc
   ========================= */
.prebanner_wrap {
  text-align: center;
}

.border_wrap {
  margin: 60px auto;
  width: 33%;
  text-align: center;
  min-width: 200px;
}

/* =========================
   Spot cards
   ========================= */
.spot-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* card */
.spot-card {
  width: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 0;
  background: #fff;
  margin-bottom: 10px;
  flex: 0 0 100%;
}

@media (min-width: 769px) {
  .spot-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

@media (min-width: 1100px) {
  .spot-card {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

.spot-card__inner {
  padding: 8px 14px 14px;
}

.spot-badge {
  position: absolute;
  background: #d40000;
  color: #fff;
  padding: 2px 0px 0;
  border-radius: 6px 6px 0 0;
  font-size: 12px;
  font-weight: bold;
  width: 104px;
  text-align: center;
  top: -20px;
  left: -1px;
}

.spot-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .spot-card__head {
    flex-direction: column;
    gap: 6px;
  }
}

.spot-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  flex: 1;
}

.spot-card__address {
  margin: 0 0 8px;
  font-size: 10px;
  opacity: .85;
  font-weight: bold;
}

/* 本文：縦並び */
.spot-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.spot-card__content.no-image {
  display: flex;
}

.spot-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.spot-card__info {
  flex: 1;
  font-weight: bold;
  line-height: 1.4;
  font-size: 12px;
}

/* =========================
   Spot section titles
   ========================= */
.shop__spot_ttl,
.shop__spoth2_ttl {
  margin: 0 0 12px !important;
  background: none !important;
  color: #585858 !important;
  border-top: none !important;
  border-bottom: none !important;
  font-size: 24px !important;
  padding: 0 !important;
}

.shop__spot_ttl {
  position: relative;
  margin: 20px 0 34px !important;
  padding-bottom: 8px;
}

.shop__spot_ttl::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #237FE2;
  margin: 8px auto 0;
}

.shop__spot_img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.shop__spot_ttlsub {
  color: var(--hm-main);
  font-weight: bold;
  font-size: 16px;
}

p.spot-section__detail {
  padding: 20px;
  border: dotted 2px var(--hm-main);
  font-size: 15px;
  border-radius: 10px;
  background: var(--hm-bg);
}

/* =========================
   Feature badges
   ========================= */
.feature-badges {
  margin: 0;
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  background: #EAF3FF;
  border-radius: 999px;
  color: #1F4FA3;
  font-size: 11px;
  line-height: 1.1;
}

.feature-icon {
  color: #1B4DB3;
  font-size: 11px;
  line-height: 1;
}

/* =========================
   Nearby (hmap-nearby) cards + buttons
   ========================= */
.hmap-nearby {
  margin: 24px 0;
}

.hmap-nearby__head {
  margin-bottom: 12px;
}

.hmap-nearby__h {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.hmap-nearby__note {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.hmap-nearby__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .hmap-nearby__grid {
    grid-template-columns: 1fr;
  }
}

.hmap-nearby__cat {
  position: relative;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.hmap-nearby__cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 12px 0 0 12px;
  background: rgba(0, 0, 0, .15);
}

.hmap-nearby__catTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, .08);
}

.hmap-nearby__catIcon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.hmap-nearby__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hmap-nearby__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.hmap-nearby__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hmap-nearby__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hmap-nearby__addr {
  margin-top: 4px;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.hmap-nearby__action {
  flex: 0 0 auto;
}

.hmap-nearby__btn {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .12);
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
}

.hmap-nearby__btn:hover {
  opacity: .85;
}

.hmap-nearby__btn--map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}


.hmap-nearby__btn--map:hover::after {
  transform: translate(2px, -2px);
}

.hmap-nearby__catEmpty,
.hmap-nearby__empty,
.hmap-nearby__error {
  color: #666;
  margin: 0;
}

/* ===== Category colors/icons ===== */
.hmap-cat--parks .hmap-nearby__catTitle {
  color: #1b5e20;
  border-bottom-color: rgba(27, 94, 32, .25);
}

.hmap-cat--parks .hmap-nearby__catIcon {
  background: rgba(46, 125, 50, .14);
}

.hmap-cat--parks .hmap-nearby__catIcon::before {
  content: "🌳";
}

.hmap-cat--parks.hmap-nearby__cat::before {
  background: #2e7d32;
}

.hmap-cat--parks .hmap-nearby__btn {
  border-color: rgba(46, 125, 50, .35);
}

.hmap-cat--public .hmap-nearby__catTitle {
  color: #0d47a1;
  border-bottom-color: rgba(13, 71, 161, .25);
}

.hmap-cat--public .hmap-nearby__catIcon {
  background: rgba(25, 118, 210, .14);
}

.hmap-cat--public .hmap-nearby__catIcon::before {
  content: "🏛️";
}

.hmap-cat--public.hmap-nearby__cat::before {
  background: #1976d2;
}

.hmap-cat--public .hmap-nearby__btn {
  border-color: rgba(25, 118, 210, .35);
}

.hmap-cat--culture .hmap-nearby__catTitle {
  color: #4a148c;
  border-bottom-color: rgba(74, 20, 140, .25);
}

.hmap-cat--culture .hmap-nearby__catIcon {
  background: rgba(123, 31, 162, .14);
}

.hmap-cat--culture .hmap-nearby__catIcon::before {
  content: "🖼️";
}

.hmap-cat--culture.hmap-nearby__cat::before {
  background: #7b1fa2;
}

.hmap-cat--culture .hmap-nearby__btn {
  border-color: rgba(123, 31, 162, .35);
}

.hmap-cat--shopping .hmap-nearby__catTitle {
  color: #e65100;
  border-bottom-color: rgba(230, 81, 0, .25);
}

.hmap-cat--shopping .hmap-nearby__catIcon {
  background: rgba(245, 124, 0, .16);
}

.hmap-cat--shopping .hmap-nearby__catIcon::before {
  content: "🛍️";
}

.hmap-cat--shopping.hmap-nearby__cat::before {
  background: #f57c00;
}

.hmap-cat--shopping .hmap-nearby__btn {
  border-color: rgba(245, 124, 0, .35);
}

.hmap-cat--medical .hmap-nearby__catTitle {
  color: #b71c1c;
  border-bottom-color: rgba(183, 28, 28, .25);
}

.hmap-cat--medical .hmap-nearby__catIcon {
  background: rgba(229, 57, 53, .14);
}

.hmap-cat--medical .hmap-nearby__catIcon::before {
  content: "🏥";
}

.hmap-cat--medical.hmap-nearby__cat::before {
  background: #e53935;
}

.hmap-cat--medical .hmap-nearby__btn {
  border-color: rgba(229, 57, 53, .35);
}


/* other */
.hmap-cat--other .hmap-nearby__catIcon::before {
  content: "📍";
}

/* =========================
   Nearby accordion (details) : hmap-acc
   ========================= */
.hmap-acc {
  display: grid;
  gap: 12px;
}

.hmap-acc__item {
  position: relative;
}

/* detailsのデフォルト三角を消す */
.hmap-acc__sum {
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;
  /* 最終採用 */
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  background: #fff;

  position: relative;
  overflow: hidden;
}

.hmap-acc__sum::-webkit-details-marker {
  display: none;
}



.hmap-acc__icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  background: rgba(0, 0, 0, .06);
}

.hmap-acc__title {
  font-weight: 600;
  /* 最終採用 */
}

.hmap-acc__count {
  margin-left: auto;
  font-size: .9rem;
  color: #666;
}

.hmap-acc__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 0, 0, .5);
  border-bottom: 2px solid rgba(0, 0, 0, .5);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-left: 6px;
}

.hmap-acc__item[open] .hmap-acc__chev {
  transform: rotate(-135deg);
}

.hmap-acc__panel {
  padding: 10px 6px 0;
}

/* hmap-acc の中の list 表示を少し詰める（既存と統合） */
.hmap-acc .hmap-nearby__item {
  padding: 10px 6px;
  border-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.hmap-acc .hmap-nearby__item:last-child {
  border-bottom: 0;
}

.hmap-acc .hmap-nearby__addr {
  font-size: .92rem;
}

/* accordion内のボタン */
.hmap-acc .hmap-nearby__btn--map {
  border-radius: 10px;
  font-size: .9rem;
}

/* category colors for hmap-acc */
.hmap-cat--parks>.hmap-acc__sum::before {
  background: #2e7d32;
}

.hmap-cat--public>.hmap-acc__sum::before {
  background: #1976d2;
}

.hmap-cat--culture>.hmap-acc__sum::before {
  background: #7b1fa2;
}

.hmap-cat--shopping>.hmap-acc__sum::before {
  background: #f57c00;
}

.hmap-cat--medical>.hmap-acc__sum::before {
  background: #e53935;
}

.hmap-cat--parks .hmap-acc__icon {
  background: rgba(46, 125, 50, .14);
}

.hmap-cat--public .hmap-acc__icon {
  background: rgba(25, 118, 210, .14);
}

.hmap-cat--culture .hmap-acc__icon {
  background: rgba(123, 31, 162, .14);
}

.hmap-cat--shopping .hmap-acc__icon {
  background: rgba(245, 124, 0, .16);
}

.hmap-cat--medical .hmap-acc__icon {
  background: rgba(229, 57, 53, .14);
}

.hmap-cat--parks .hmap-acc__icon::before {
  content: "🌳";
}

.hmap-cat--public .hmap-acc__icon::before {
  content: "🏛️";
}

.hmap-cat--culture .hmap-acc__icon::before {
  content: "🖼️";
}

.hmap-cat--shopping .hmap-acc__icon::before {
  content: "🛍️";
}

.hmap-cat--medical .hmap-acc__icon::before {
  content: "🏥";
}

/* =========================
   Misc
   ========================= */
.fa-ribbon {
  color: #e91e63 !important;
}

.hmap-acc__sum {
  font-weight: 600;
  font-size: 15px;
}

.hmap-acc__count {
  font-size: 13px;
  color: #666;
}

.hmap-acc__item {
  position: relative;
  padding-left: 16px;
}

.hmap-acc__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 6px;
  border-radius: 6px;
  background: currentColor;
}

.hmap-nearby__btn--map {
  border: 1px solid #EB7600;
  color: #EB7600;
  background: #fff;
  font-weight: 500;
}

.hmap-nearby__btn--map:hover {
  background: rgba(235, 118, 0, 0.08);
  color: #EB7600;
}
.hmap-cat--kids_play { color: #4CAF50; }
.hmap-cat--shopping { color: #EB7600; }
.hmap-cat--relief   { color: #2196F3; }
.hmap-cat--break    { color: #9C27B0; }