/* =============================================
   page-sitemap.css  サイトマップ
   ============================================= */

/* ---- グループ ---- */
.smap-group {
  margin-bottom: 40px;
  border: 1px solid #f0d6e4;
  border-radius: 16px;
  overflow: hidden;
}

.smap-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, #2d3270 100%);
  padding: 16px 26px;
}

.smap-group__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(240,62,122,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.smap-group__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
}

/* ---- リスト ---- */
.smap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smap-item {
  border-bottom: 1px solid #fce8f2;
}

.smap-item:last-child {
  border-bottom: none;
}

.smap-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  text-decoration: none;
  transition: background .15s;
  gap: 12px;
}

.smap-item a:hover {
  background: #fff5f8;
}

.smap-item a::after {
  content: '\f105';
  font-family: FontAwesome;
  color: var(--pink-main);
  font-size: 14px;
  flex-shrink: 0;
}

.smap-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}

.smap-item__url {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.02em;
  text-align: right;
  word-break: break-all;
}

/* ---- SP ---- */
@media (max-width: 640px) {
  .smap-group__head { padding: 14px 18px; }
  .smap-item a { padding: 12px 18px; flex-wrap: wrap; }
  .smap-item__url { display: none; }
}
