


p {
    letter-spacing: 1px;
}


/* ===== サロン一覧ページ ===== */
#salon_list {
  background: #F7F9FB;
  padding: 4rem 1.5rem;
}

.salon-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.salon-title {
  font-size: 22px;
  font-weight: 500;
  color: #2F4A6D;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.salon-desc {
  font-size: 13px;
  margin-bottom: 2rem;
}

.area-filter {
  background: #EDF2F7;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.area-filter-label {
  font-size: 11px;
  color: #6F8FA6;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.area-btn {
  font-size: 13px;
  color: #2F4A6D;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.area-btn.active {
  background: #2F4A6D;
  color: #fff;
}

.region-block {
  margin-bottom: 2rem;
}

.region-header {
font-size: 24px;
    font-weight: 500;
    color: #6F8FA6;
    background: #EDF2F7;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

.type-section {
  margin-bottom: 1.5rem;
}

.type-label {
  font-size: 11px;
  font-weight: 500;
  color: #6F8FA6;
  letter-spacing: 0.12em;
  border-bottom: 0.5px solid #C7D6E2;
  padding-bottom: 5px;
  margin-bottom: 0.5rem;
}

.pref-block {
  margin-bottom: 1rem;
}

.pref-label {
  font-size: 20px;
  color: #2F4A6D;
  font-weight: 500;
  margin-bottom: 0.3rem;
  padding-bottom: 4px;
      margin-top: 40px;
}

.salon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid #EDF2F7;
}

.tags {
  min-width: 140px;
}

.tag {
  font-size: 10px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: inline-block;
}

.tag-instructor { background: #2F4A6D; color: #fcfcfc; }
.tag-advisor    { background: #93c2d6; color: #fcfcfc; }
.tag-both       { background: #ede0e0; color: #666; }
.tag-salon      { background: #f4f3ef; color: #666; }

.salon-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
      margin-left: 40px;
}

.salon-name {
  font-size: 14px;
}

.salon-link {
  font-size: 12px;
  color: #6F8FA6;
  text-decoration: none;
  border-bottom: 0.5px solid #C7D6E2;
}

.hidden {
  display: none;
}



/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  #salon_list {
    padding: 5rem 1rem;
  }

  .salon-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0;
  }

  .tags {
    min-width: unset;
  }
  
  .salon-name {
    margin: 0;
}

.region-header {
font-size: 18px;
}

.pref-label {
  font-size:16px;
}

  .salon-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    margin-left: 10px;
  }

  .salon-link {
    font-size: 11px;
    word-break: break-all;
  }

  .area-buttons {
    gap: 6px;
  }

  .area-btn {
    font-size: 12px;
    padding: 5px 8px;
  }
}


.tag-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #fff;
  border: 0.5px solid #C7D6E2;
  border-radius: 8px;
}

.tag-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(50% - 6px);
}

.tag-legend-desc {
  font-size: 10px;
  color: #6F8FA6;
  line-height: 1.5;
}

.highlight-text {
  background: linear-gradient(transparent 60%, #FFF5A0 60%);
}

@media (max-width: 768px) {
  .tag-legend-item {
    width: 100%;
  }
}