/*
Theme Name: JOB CHANNEL 看護師
Theme URI: https://kango.jobchannel.jp
Description: 看護師向け施設口コミサイト JOB CHANNEL のカスタムテーマ
Version: 1.0
Author: Nexly Inc.
Author URI: https://nexly.co.jp
*/

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CSS VARIABLES ===== */
:root {
  --pink: #d4567a;
  --pink-light: #e8839e;
  --pink-bg: #fdf0f3;
  --pink-bg2: #f5d5df;
  --gray-bg: #f8f8f8;
  --border: #e8e8e8;
  --text-dark: #222;
  --text-mid: #555;
  --text-light: #888;
  --text-muted: #aaa;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 64px; display: flex; align-items: center;
}
.header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.header__logo {
  font-size: 20px; font-weight: 900; color: #d4567a;
  display: flex; align-items: center; gap: 8px;
}
.header__logo-sub { color: #333; font-weight: 500; font-size: 12px; }
.header__logo-badge {
  background: #d4567a; color: #fff; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; margin-left: 4px;
}
.header__nav { display: flex; gap: 24px; align-items: center; flex-wrap: nowrap; }
.header__nav a { font-size: 14px; font-weight: 500; color: #555; white-space: nowrap; }
.header__nav a:hover { color: #d4567a; }
.header__auth { display: flex; align-items: center; gap: 8px; }
.header__login {
  font-size: 13px; font-weight: 700; color: #d4567a;
  padding: 8px 16px; border: 2px solid #d4567a; border-radius: 50px;
  transition: all 0.2s;
}
.header__login:hover { background: #fdf0f3; }
.header__signup {
  font-size: 13px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  padding: 8px 16px; border-radius: 50px;
  transition: all 0.2s;
}
.header__signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(212,86,122,0.3);
}
.header__back {
  font-size: 14px; color: #888;
  display: flex; align-items: center; gap: 6px;
}
.header__back:hover { color: #d4567a; }

/* ===== FV (FRONT PAGE) ===== */
.fv {
  margin-top: 64px;
  background: linear-gradient(135deg, #fdf0f3 0%, #fff0e0 50%, #f5d5df 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,86,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.fv__badge {
  display: inline-block;
  background: #d4567a; color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 20px; border-radius: 50px;
  margin-bottom: 24px;
}
.fv__title {
  font-size: 38px; font-weight: 900; line-height: 1.5;
  margin-bottom: 16px; color: #222;
}
.fv__title em {
  font-style: normal;
  background: linear-gradient(transparent 60%, #ffe0b2 60%);
}
.fv__subtitle {
  font-size: 18px; color: #666; margin-bottom: 40px; line-height: 1.8;
}
.fv__numbers {
  display: flex; justify-content: center;
  gap: 80px; margin: 40px 0 0;
  flex-wrap: wrap;
}
.fv__num-item {
  display: flex; align-items: baseline; gap: 20px;
}
.fv__num-label {
  font-size: 16px; color: #666; font-weight: 700;
  letter-spacing: 0.05em;
}
.fv__num-value {
  font-size: 64px; font-weight: 900; color: #d4567a;
  line-height: 1;
}
.fv__num-value span { font-size: 24px; font-weight: 700; margin-left: 4px; }
.fv__cta {
  display: inline-block;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 18px; font-weight: 700;
  padding: 18px 48px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(212,86,122,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: bounce 2.5s infinite;
}
.fv__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,86,122,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.fv__note { font-size: 12px; color: #aaa; margin-top: 16px; }
.fv__search {
  max-width: 560px; margin: 24px auto;
  position: relative; display: flex; align-items: center;
  background: #fff; border: 2px solid #e8e8e8;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.fv__search-input {
  flex: 1; padding: 16px 20px; border-radius: 50px;
  border: none; background: transparent; color: #333;
  font-size: 16px; font-family: 'Noto Sans JP', sans-serif;
  outline: none;
}
.fv__search-input::placeholder { color: #aaa; }
.fv__search-btn {
  flex-shrink: 0; right: 4px;
  background: linear-gradient(135deg, #d4567a, #e8839e); color: #fff; font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  border: none; cursor: pointer; font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: transform 0.2s;
  margin: 4px;
}
.fv__search-btn:hover { transform: scale(1.05); }

/* ===== CONDITION SEARCH ===== */
.condition-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.condition-tag {
  display: inline-block;
  background: #fff; border: 2px solid #e8e8e8;
  border-radius: 50px; padding: 10px 20px;
  font-size: 14px; font-weight: 500; color: #555;
  cursor: pointer; transition: all 0.2s;
}
.condition-tag:hover { border-color: #d4567a; color: #d4567a; }

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 24px;
  max-width: 1280px; margin: 0 auto;
}
.section--gray { background: #f8f8f8; }
.section--gray .section { padding: 80px 20px; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__label {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: #d4567a;
  background: #fdf0f3; padding: 4px 16px; border-radius: 50px;
  margin-bottom: 12px;
}
.section__title { font-size: 28px; font-weight: 900; color: #222; }
.section__subtitle { font-size: 15px; color: #888; margin-top: 8px; }

/* ===== AREA SEARCH ===== */
.area-region { margin-bottom: 24px; }
.area-region__title {
  font-size: 14px; font-weight: 700; color: #d4567a;
  margin-bottom: 10px; padding-left: 10px;
  border-left: 3px solid #d4567a;
}
.area-region__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.area-btn {
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 8px; padding: 8px 12px;
  text-align: center; font-size: 12px; font-weight: 500;
  color: #555; cursor: pointer; min-width: 80px;
  transition: all 0.2s;
}
.area-btn:hover, .area-btn.active {
  background: #fdf0f3; border-color: #d4567a; color: #d4567a;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.area-region__grid .area-btn { min-width: 80px; padding: 8px 12px; }

/* ===== FACILITY TYPE CARDS ===== */
.facility-types {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.facility-card {
  background: #fff; border-radius: 16px;
  padding: 32px 24px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: 2px solid transparent;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #d4567a;
}
.facility-card__icon {
  width: 72px; height: 72px;
  background: #fdf0f3; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 32px;
}
.facility-card__name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.facility-card__desc { font-size: 13px; color: #999; line-height: 1.6; margin-bottom: 12px; }
.facility-card__count { font-size: 13px; color: #d4567a; font-weight: 700; }

/* ===== NEW REVIEWS SLIDER ===== */
.new-reviews-slider {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 8px;
}
.new-reviews-slider::-webkit-scrollbar { display: none; }
.new-reviews-slider__track { display: flex; gap: 16px; padding: 4px; }
.new-review-card {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-width: 280px; max-width: 280px; flex-shrink: 0;
  border-left: 4px solid #d4567a;
}
.new-review-card__topic { font-size: 14px; font-weight: 700; color: #d4567a; margin-bottom: 4px; }
.new-review-card__facility { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 6px; }
.new-review-card__meta { font-size: 12px; color: #aaa; margin-bottom: 8px; }
.new-review-card__score { font-size: 14px; color: #d4567a; margin-bottom: 8px; }
.new-review-card__score span { font-weight: 700; }
.new-review-card__text {
  font-size: 13px; color: #666; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 8px;
}
.new-review-card__date { font-size: 11px; color: #ccc; }

/* ===== RANKING CARDS (TOP) ===== */
.ranking-slider {
  padding-left: 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 12px 0 8px 0;
}
.ranking-slider::-webkit-scrollbar { display: none; }
.ranking-slider__track { display: flex; gap: 20px; padding: 4px 4px 4px 0; }
.ranking-card {
  background: #fff; border-radius: 16px; padding: 48px 24px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  min-width: 360px; max-width: 360px; flex-shrink: 0;
  position: relative;
  margin-top: 8px;
}
.ranking-card__rank {
  top: 12px;
  left: 12px;
  position: absolute;
  width: 36px; height: 36px; border-radius: 50%;
  background: #e8e8e8; color: #888;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ranking-card__rank--1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #fff; }
.ranking-card__rank--2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #fff; }
.ranking-card__rank--3 { background: linear-gradient(135deg, #CD7F32, #B87333); color: #fff; }
/* ===== RANKING SLIDER NAV ===== */
.ranking-slider-wrap { position: relative; padding: 0 48px; }
.ranking-slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #e8e8e8;
  font-size: 20px; font-weight: 700; color: #666;
  cursor: pointer; z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ranking-slider-nav:hover { border-color: #d4567a; color: #d4567a; }
.ranking-slider-nav--prev { left: 0; }
.ranking-slider-nav--next { right: 0; }
.ranking-card__name { font-size: 16px; font-weight: 900; color: #222; margin-bottom: 4px; margin-top: 4px; }
.ranking-card__meta { font-size: 12px; color: #aaa; margin-bottom: 12px; }
.ranking-card__overall {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid #f0f0f0;
}
.ranking-card__stars { color: #d4567a; font-size: 16px; }
.ranking-card__score { font-size: 20px; font-weight: 900; color: #d4567a; }
.ranking-card__count { font-size: 12px; color: #aaa; margin-left: auto; }
.ranking-card__radar { display: flex; justify-content: center; margin-bottom: 12px; }
.ranking-card__radar svg { display: block; }
.ranking-card__kango {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 12px; border-top: 1px solid #f0f0f0; margin-bottom: 12px;
}
.ranking-card__kango-item {
  flex: 1; display: flex; justify-content: space-between;
  font-size: 11px; color: #666;
  background: #f8f8f8; padding: 6px 10px; border-radius: 6px;
}
.ranking-card__kango-val { font-weight: 700; color: #d4567a; }
.ranking-card__link {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  color: #d4567a; padding: 8px; border: 2px solid #d4567a;
  border-radius: 8px; transition: all 0.2s;
}
.ranking-card__link:hover { background: #d4567a; color: #fff; }

/* ===== POINTS (HOW TO USE) ===== */
.points { display: flex; flex-direction: column; gap: 24px; }
.point {
  background: #fff; border-radius: 16px;
  padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; align-items: flex-start; gap: 24px;
}
.point__num {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 13px; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0;
}
.point__num-label { font-size: 10px; opacity: 0.8; }
.point__num-val { font-size: 22px; line-height: 1; }
.point__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #222; }
.point__text { font-size: 15px; color: #666; line-height: 1.8; }

/* ===== REVIEW CARDS (TOP) ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__avatar {
  width: 40px; height: 40px; background: #ffe0b2;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.review-card__job { font-size: 13px; font-weight: 700; color: #d4567a; }
.review-card__date { font-size: 11px; color: #bbb; }
.review-card__facility { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.review-card__stars { color: #d4567a; font-size: 14px; margin-bottom: 12px; }
.review-card__text {
  font-size: 14px; color: #666; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__axes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.review-axis { font-size: 11px; background: #f8f8f8; border-radius: 4px; padding: 3px 8px; color: #777; }
.review-axis span { color: #d4567a; font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden;
}
.faq-header {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer; font-weight: 700; font-size: 15px;
}
.faq-header:hover { background: #fafafa; }
.faq-q {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: #d4567a; color: #fff; font-weight: 900; font-size: 14px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.faq-content {
  padding: 0 24px 20px 72px;
  font-size: 14px; color: #666; line-height: 1.8;
  display: none;
}
.faq-item.active .faq-content { display: block; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: linear-gradient(135deg, #fdf0f3, #f5d5df);
  padding: 80px 20px; text-align: center;
}
.footer-cta__title { font-size: 32px; font-weight: 900; margin-bottom: 16px; color: #222; }
.footer-cta__text { font-size: 16px; color: #666; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { background: #d4567a; color: #fff; padding: 48px 20px 24px; }
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px;
}
.footer__col-title { font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.footer__col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 8px;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: 1280px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.7);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 13px; color: #999;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: #d4567a; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: #ccc; }
.breadcrumb--bar {
  background: #fff; padding: 12px 20px;
  border-bottom: 1px solid #eee; margin-top: 64px; margin-bottom: 0;
}
.breadcrumb--bar .breadcrumb__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: #999;
}
.breadcrumb--bar .breadcrumb__inner a { color: #d4567a; }
.breadcrumb--bar .breadcrumb__inner span { color: #ccc; }

/* ===== LIST HEADER (ARCHIVE PAGES) ===== */
.list-header {
  margin-top: 64px;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  padding: 32px 20px;
}
.list-header__inner { max-width: 1280px; margin: 0 auto; }
.list-header__title { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.list-header__stats { font-size: 14px; color: rgba(255,255,255,0.85); }
.list-header__stats strong { color: #fff; font-weight: 700; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #fdf0f3 0%, #f5d5df 100%);
  padding: 48px 20px; text-align: center;
}
.page-header--pink {
  background: linear-gradient(135deg, #d4567a, #e8839e);
  padding: 32px 20px; text-align: center;
}
.page-header__label {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: #d4567a;
  background: rgba(212,86,122,0.1); padding: 4px 16px; border-radius: 50px;
  margin-bottom: 12px;
}
.page-header__title { font-size: 32px; font-weight: 900; color: #222; margin-bottom: 12px; }
.page-header__title--white { font-size: 24px; font-weight: 900; color: #fff; }
.page-header__desc { font-size: 15px; color: #666; }
.page-header__updated { font-size: 12px; color: #bbb; margin-top: 16px; }

/* ===== 2-COL LAYOUT (LIST PAGES) ===== */
.main { padding: 0 0 80px; }
.list-content { padding: 0; }
.list-content__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 20px 80px;
}
.list-content__sidebar {
  width: 260px; flex-shrink: 0;
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 16px;
}
.list-content__main { flex: 1; min-width: 0; }

/* ===== SIDEBAR FILTER ===== */
.sidebar-filter {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sidebar-filter__section { margin-bottom: 16px; }
.sidebar-filter__section:last-child { margin-bottom: 0; }
.sidebar-filter__label {
  display: block; font-size: 12px; font-weight: 700; color: #888; margin-bottom: 6px;
}
.sidebar-filter__search { position: relative; }
.sidebar-filter__input {
  width: 100%; padding: 10px 32px 10px 12px;
  border: 2px solid #e8e8e8; border-radius: 8px;
  font-size: 13px; font-family: 'Noto Sans JP', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.sidebar-filter__input:focus { border-color: #d4567a; }
.sidebar-filter__icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: #ccc; pointer-events: none;
}
.sidebar-filter__select {
  width: 100%; padding: 10px 32px 10px 12px; border: 2px solid #e8e8e8; border-radius: 8px;
  font-size: 13px; font-family: 'Noto Sans JP', sans-serif; background: #fff; cursor: pointer;
  outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color 0.2s;
}
.sidebar-filter__select:focus { border-color: #d4567a; }
.sidebar-filter__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.type-chip {
  display: flex; align-items: center; gap: 3px;
  padding: 6px 10px; border: 1.5px solid #e8e8e8; border-radius: 50px;
  font-size: 12px; font-weight: 600; background: #fff; cursor: pointer;
  transition: all 0.2s; color: #666; font-family: 'Noto Sans JP', sans-serif;
}
.type-chip:hover, .type-chip.active {
  border-color: #d4567a; color: #d4567a; background: #fdf0f3;
}
.type-chip__icon { font-size: 12px; }

/* ===== SIDEBAR CARDS ===== */
.sidebar-card {
  margin-bottom: 20px;
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center;
}

.sidebar-card__title--ranking {
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid #d4567a;
}

/* ===== RESULT BAR ===== */
.result-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.result-bar__count { font-size: 14px; color: #666; }
.result-bar__count strong { color: #d4567a; font-size: 18px; }
.result-bar__sort { display: flex; align-items: center; gap: 8px; }
.result-bar__sort-label { font-size: 13px; color: #888; }
.result-bar__sort-select {
  padding: 8px 28px 8px 12px; border: 2px solid #e8e8e8; border-radius: 8px;
  font-size: 13px; font-family: 'Noto Sans JP', sans-serif; background: #fff; cursor: pointer;
  outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.result-bar__sort-select:focus { border-color: #d4567a; }
.result-bar__stats { font-size: 11px; color: #aaa; margin-bottom: 12px; }
.result-bar__stats strong { color: #888; font-size: 11px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid #f0f0f0;
}
.pagination__item {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1.5px solid #e8e8e8; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #666; background: #fff;
  transition: all 0.2s; cursor: pointer;
}
.pagination__item:hover { border-color: #d4567a; color: #d4567a; }
.pagination__item--active {
  background: #d4567a; color: #fff; border-color: #d4567a; cursor: default;
}
.pagination__item--active:hover { color: #fff; }
.pagination__item--disabled { color: #ccc; border-color: #f0f0f0; cursor: default; }
.pagination__item--disabled:hover { color: #ccc; border-color: #f0f0f0; }
.pagination__dots { font-size: 13px; color: #aaa; padding: 0 4px; }
.pagination__item.active {
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; border-color: transparent;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block; padding: 3px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
}
.badge--type { background: #f0f0f0; color: #666; }
.badge--good { background: #fdf0f3; color: #d4567a; border: 1px solid #d4567a; }
.badge--data { background: #ebf5ff; color: #0066cc; border: 1px solid #0066cc; }
.badge--knowhow { background: #fdf0f3; color: #d4567a; }
.badge--salary { background: #e8f5e9; color: #388e3c; }
.badge--environment { background: #e3f2fd; color: #1976d2; }
.badge--career { background: #f3e5f5; color: #7b1fa2; }

/* ===== FACILITY LIST CARDS ===== */
.facility-list { display: flex; flex-direction: column; gap: 12px; }
.facility-list-card {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 12px; padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s; border: 1px solid transparent;
}
.facility-list-card:hover {
  border-color: #d4567a; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.facility-list-card__main { flex: 1; }
.facility-list-card__name { font-size: 17px; font-weight: 700; color: #222; margin-bottom: 4px; }
.facility-list-card__meta { font-size: 13px; color: #aaa; margin-bottom: 8px; }
.facility-list-card__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.facility-list-card__right { text-align: right; flex-shrink: 0; margin-left: 20px; }
.facility-list-card__score {
  display: flex; align-items: center; gap: 6px; justify-content: flex-end; margin-bottom: 4px;
}
.facility-list-card__stars { color: #d4567a; font-size: 16px; }
.facility-list-card__score-num { font-size: 24px; font-weight: 900; color: #d4567a; }
.facility-list-card__count { font-size: 12px; color: #aaa; }

/* ===== FACILITY DETAIL ===== */
.page-wrap {
  max-width: 800px; margin: 64px auto 0;
  padding: 24px 20px 80px;
}
.facility-detail-box {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden; margin-bottom: 0;
}
.facility-detail-box__header {
  padding: 32px 32px 24px; border-bottom: 1px solid #f0f0f0;
}
.facility-type-badge {
  display: inline-block; font-size: 12px; font-weight: 700; color: #d4567a;
  background: #fdf0f3; padding: 4px 10px; border-radius: 50px; margin-bottom: 8px;
}
.facility-detail-box__name { font-size: 24px; font-weight: 900; color: #222; margin-bottom: 12px; }
.facility-detail-box__score-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px;
}
.facility-detail-box__stars { color: #d4567a; font-size: 20px; }
.facility-detail-box__score { font-size: 32px; font-weight: 900; color: #d4567a; }
.facility-detail-box__count { font-size: 14px; color: #aaa; }
.facility-detail-box__evaluation { padding: 24px 32px; border-bottom: 1px solid #f0f0f0; }
.facility-detail-box__data { padding: 24px 32px; }
.facility-detail-box__section-title {
  font-size: 16px; font-weight: 700; color: #222; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid #f0f0f0;
}
.facility-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.detail-radar { display: flex; justify-content: center; margin: 8px 0 16px; }
.detail-radar svg text { font-family: 'Noto Sans JP', sans-serif; }
.evaluation-layout { display: flex; gap: 32px; align-items: flex-start; }
.evaluation-layout__left { flex: 1; }
.evaluation-layout__right { width: 320px; flex-shrink: 0; }

/* ===== KANGO SCORES ===== */
.kango-scores { margin-top: 0; padding: 20px 32px 24px; border-top: 1px solid #f0f0f0; }
.kango-scores__title { font-size: 14px; font-weight: 700; color: #d4567a; margin-bottom: 16px; }
.kango-score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.kango-score-row__label { width: 160px; font-size: 13px; font-weight: 600; color: #444; flex-shrink: 0; }
.kango-score-row__bar { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.kango-score-row__fill { height: 100%; background: #d4567a; border-radius: 4px; }
.kango-score-row__value { font-size: 14px; font-weight: 700; color: #d4567a; width: 32px; text-align: right; }

/* ===== QUANT SUMMARY ===== */
.quant-summary__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quant-summary__item { background: #f8f8f8; border-radius: 8px; padding: 16px; }
.quant-summary__label { font-size: 12px; color: #888; margin-bottom: 6px; }
.quant-summary__value { font-size: 16px; font-weight: 700; color: #222; }

/* ===== TABS ===== */
.detail-tabs {
  display: flex; background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 0 32px; margin-top: 24px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.detail-tab {
  padding: 16px 24px; font-size: 14px; font-weight: 700;
  color: #888; background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; font-family: inherit;
}
.detail-tab:hover { color: #d4567a; }
.detail-tab.active { color: #d4567a; border-bottom-color: #d4567a; }
.tab-content {
  margin-top: 0; background: #fff; padding: 24px 32px 32px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== FACILITY REVIEW CARDS (DETAIL) ===== */
.review-list { display: flex; flex-direction: column; gap: 0; }
.review-card--detail { background: none; border: none; border-bottom: 1px solid #f0f0f0; border-radius: 0; padding: 24px 0; margin-bottom: 0; }
.review-card--detail:last-child { border-bottom: none; }
.review-card__topic { font-size: 16px; font-weight: 700; color: #222; }
.review-card__meta { font-size: 12px; color: #888; margin-bottom: 8px; line-height: 1.6; }
.review-card__score { margin-bottom: 12px; }
.review-card__score-value { font-size: 14px; font-weight: 700; color: #d4567a; margin-left: 8px; }
.review-card__preview { font-size: 14px; color: #333; line-height: 1.7; margin-bottom: 8px; }
.review-card__more { color: #d4567a; font-weight: 700; font-size: 13px; }
/* ===== REVIEW BODY BLUR (施設詳細カード) ===== */
.review-card__body { font-size: 14px; color: #333; line-height: 1.7; margin-bottom: 8px; }
.review-card__body--blur { position: relative; max-height: 200px; overflow: hidden; }
.review-card__body--blur .review-card__body-text {
  max-height: 120px;
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 30%, transparent 100%);
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.review-card__body--blur .review-card__blur-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, transparent, #fff 60%);
  padding: 40px 20px 20px;
  text-align: center;
}

/* ===== SINGLE REVIEW BODY BLUR (口コミ個別ページ) ===== */
.rd-review__body { font-size: 15px; color: #333; line-height: 1.9; }
.rd-review__body--blur { position: relative; max-height: 400px; overflow: hidden; }
.rd-review__body--blur .rd-review__body-content {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
  mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
}
.rd-review__blur-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, transparent, #fdf0f3 50%);
  padding: 60px 24px 32px;
  text-align: center;
}
.rd-review__blur-overlay p { font-size: 14px; color: #333; margin-bottom: 16px; font-weight: 700; }
.rd-review__blur-overlay a { color: #d4567a; font-weight: 700; }
.review-card__cta { text-align: center; }
.review-card__cta-text { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 12px; }
.review-card__cta-btns { display: flex; gap: 8px; justify-content: center; margin-bottom: 8px; }
.review-card__cta-btn { background: #fff; border: 2px solid #e8e8e8; border-radius: 8px; padding: 10px 24px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.review-card__cta-btn--line { background: #fff; color: #06C755; border: 2px solid #06C755; font-weight: 700; border-radius: 8px; padding: 10px 24px; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.review-card__cta-login { font-size: 13px; color: #d4567a; font-weight: 700; }
.review-more { text-align: center; padding-top: 24px; }
.review-more__btn {
  display: inline-block; padding: 14px 40px;
  border: 2px solid #d4567a; border-radius: 8px;
  font-size: 14px; font-weight: 700; color: #d4567a;
  background: #fff; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.review-more__btn:hover { background: #d4567a; color: #fff; }
.review-more a {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: #d4567a; border: 2px solid #d4567a;
  padding: 12px 32px; border-radius: 50px;
  transition: all 0.2s;
}
.review-more a:hover { background: #d4567a; color: #fff; }

/* ===== INFO TABLE ===== */
.info-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th {
  text-align: left; font-size: 13px; font-weight: 700; color: #888;
  padding: 12px 16px 12px 0; border-bottom: 1px solid #f0f0f0;
  width: 120px; vertical-align: top;
}
.info-table td { font-size: 14px; color: #333; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.info-table a { color: #d4567a; }

/* ===== JOB SECTION ===== */
.job-section { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.job-section__title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.job-cards { display: flex; flex-direction: column; gap: 12px; }
.job-card {
  border: 1px solid #f0f0f0; border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color 0.2s;
}
.job-card:hover { border-color: #d4567a; }
.job-card__title { font-size: 15px; font-weight: 700; }
.job-card__meta { font-size: 13px; color: #999; margin-top: 4px; }
.job-card__salary { font-size: 14px; font-weight: 700; color: #d4567a; }
.job-card__btn {
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 50px; flex-shrink: 0;
}
.job-section__more { text-align: center; margin-top: 20px; }
.job-section__more a { font-size: 14px; color: #d4567a; font-weight: 700; }

/* ===== NEARBY SECTION ===== */
.nearby-section { margin-top: 40px; }
.nearby-section__title { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 16px; }
.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.nearby-card {
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s;
  display: block; border: 1px solid transparent;
}
.nearby-card:hover { transform: translateY(-2px); border-color: #d4567a; }
.nearby-card__name { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.nearby-card__meta { font-size: 12px; color: #aaa; margin-bottom: 6px; }
.nearby-card__score { font-size: 13px; color: #d4567a; font-weight: 700; }
.nearby-card__score span { font-weight: 900; }

/* ===== REVIEW LIST (ARCHIVE) ===== */
.review-list-wrap {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden;
}
.review-list-card { padding: 24px 28px; border-bottom: 1px solid #f0f0f0; transition: background 0.15s; }
.review-list-card:last-child { border-bottom: none; }
.review-list-card:hover { background: #fdf8f9; }
.review-list-card__header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px;
}
.review-list-card__facility { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 2px; }
.review-list-card__facility a { color: #d4567a; }
.review-list-card__facility a:hover { text-decoration: underline; }
.review-list-card__facility-meta { font-size: 12px; color: #aaa; }
.review-list-card__date { font-size: 12px; color: #aaa; flex-shrink: 0; margin-left: 16px; margin-top: 2px; }
.review-list-card__topic {
  display: inline-block; font-size: 12px; font-weight: 700; color: #d4567a;
  background: #fdf0f3; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
}
.review-list-card__meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.review-list-card__score { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.review-list-card__stars { color: #d4567a; font-size: 15px; }
.review-list-card__score span { font-size: 14px; font-weight: 700; color: #d4567a; }
.review-list-card__text { font-size: 14px; color: #444; line-height: 1.7; }
.review-list-card__more { color: #d4567a; font-weight: 700; font-size: 13px; }
.review-list-card__more:hover { text-decoration: underline; }
.review-list-card__no-score { font-size: 12px; color: #aaa; font-style: italic; margin-bottom: 10px; }

/* ===== REVIEW DETAIL ===== */
.rd-facility {
  background: #fff; border-radius: 12px; padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 20px;
  border-left: 4px solid #d4567a;
}
.rd-facility__type { font-size: 12px; font-weight: 700; color: #d4567a; margin-bottom: 6px; }
.rd-facility__name { font-size: 20px; font-weight: 900; color: #222; margin-bottom: 6px; }
.rd-facility__name a { color: #222; }
.rd-facility__name a:hover { color: #d4567a; }
.rd-facility__meta { font-size: 13px; color: #aaa; margin-bottom: 12px; }
.rd-facility__score { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.rd-facility__stars { color: #d4567a; font-size: 18px; }
.rd-facility__score-num { font-size: 24px; font-weight: 900; color: #d4567a; }
.rd-facility__count { font-size: 13px; color: #aaa; }
.rd-facility__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.rd-facility__link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 700; color: #d4567a;
  border: 1.5px solid #d4567a; border-radius: 50px;
  padding: 6px 16px; transition: all 0.2s;
}
.rd-facility__link:hover { background: #fdf0f3; }
.rd-review {
  background: #fff; border-radius: 12px; padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 20px;
}
.rd-review__topic {
  font-size: 22px; font-weight: 900; color: #222; margin-bottom: 12px;
  padding-bottom: 16px; border-bottom: 2px solid #f0f0f0;
}
.rd-review__topic-badge {
  display: inline-block; font-size: 12px; font-weight: 700; color: #d4567a;
  background: #fdf0f3; padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.rd-review__meta { font-size: 13px; color: #888; margin-bottom: 12px; line-height: 1.6; }
.rd-review__score { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.rd-review__stars { color: #d4567a; font-size: 20px; }
.rd-review__score span { font-size: 18px; font-weight: 900; color: #d4567a; }
.rd-review__body {
  font-size: 15px; color: #333; line-height: 1.9; margin-bottom: 24px;
  padding: 20px; background: #f9f9f9; border-radius: 8px;
}
.rd-review__body p { margin-bottom: 12px; }
.rd-review__body p:last-child { margin-bottom: 0; }
.rd-review__date { font-size: 12px; color: #aaa; margin-bottom: 20px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.rd-review__actions { display: flex; align-items: center; gap: 12px; }
.rd-review__action {
  background: #fff; border: 1.5px solid #e8e8e8; border-radius: 50px;
  padding: 8px 20px; font-size: 13px; font-weight: 700; color: #666;
  cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
.rd-review__action:hover { border-color: #d4567a; color: #d4567a; }
.rd-related {
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 20px;
}
.rd-related__title {
  font-size: 18px; font-weight: 700; color: #222;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0;
}
.rd-related__list { display: flex; flex-direction: column; gap: 0; }
.rd-related__item {
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
  display: block; transition: opacity 0.15s;
}
.rd-related__item:last-child { border-bottom: none; padding-bottom: 0; }
.rd-related__item:hover { opacity: 0.75; }
.rd-related__item-topic { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }

/* ===== REVIEW POST FORM ===== */
.page-wrap--form { max-width: 720px; margin: 0 auto; padding: 88px 20px 80px; }
.page-title { font-size: 26px; font-weight: 900; color: #222; margin-bottom: 8px; }
.page-subtitle { font-size: 15px; color: #888; margin-bottom: 20px; line-height: 1.7; }
.progress-bar { height: 6px; background: #f0f0f0; border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, #d4567a, #e8839e); border-radius: 3px; transition: width 0.3s ease; }
.progress-bar__label { font-size: 12px; color: #d4567a; font-weight: 700; text-align: right; margin-bottom: 24px; }
.time-banner {
  background: #fdf0f3; border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  border: 1px solid #f5d5df;
}
.time-banner__icon { font-size: 28px; flex-shrink: 0; }
.time-banner__title { font-size: 15px; font-weight: 700; color: #333; }
.time-banner__desc { font-size: 13px; color: #888; margin-top: 2px; }
.form-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 20px;
}
.section-header { margin-bottom: 20px; }
.section-header__number { font-size: 12px; font-weight: 700; color: #d4567a; margin-bottom: 4px; }
.section-header__title { font-size: 22px; font-weight: 900; color: #222; margin-bottom: 4px; }
.section-header__time { font-size: 13px; color: #aaa; }
.form-section-subtitle {
  font-size: 14px; font-weight: 700; color: #d4567a; margin-top: 4px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid #f0f0f0;
}
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #444; }
.form-label .required {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #fff; background: #d4567a; padding: 2px 6px; border-radius: 4px;
  margin-left: 8px; vertical-align: middle;
}
.form-label .optional {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #aaa; background: #f0f0f0; padding: 2px 6px; border-radius: 4px;
  margin-left: 8px; vertical-align: middle;
}
.form-hint { font-size: 12px; color: #aaa; margin-bottom: 8px; line-height: 1.6; }
.form-row-2col { display: flex; gap: 16px; }
.form-row-2col .form-group { flex: 1; }
.facility-search { position: relative; }
.facility-search__input {
  width: 100%; padding: 14px 48px 14px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit;
  transition: border-color 0.2s; outline: none;
}
.facility-search__input:focus { border-color: #d4567a; }
.facility-search__icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; color: #ccc; }
.facility-search__results {
  border: 1px solid #e8e8e8; border-radius: 10px; margin-top: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); background: #fff; overflow: hidden;
}
.facility-search__item { padding: 12px 16px; cursor: pointer; font-size: 14px; border-bottom: 1px solid #f0f0f0; transition: background 0.15s; }
.facility-search__item:last-child { border-bottom: none; }
.facility-search__item:hover { background: #fdf0f3; }
.facility-search__item-name { font-weight: 700; }
.facility-search__item-meta { font-size: 12px; color: #aaa; margin-top: 2px; }
.form-select {
  width: 100%; padding: 12px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit;
  background: #fff; cursor: pointer;
  transition: border-color 0.2s; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select:focus { border-color: #d4567a; }
.job-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.job-type-item { position: relative; }
.job-type-item input[type="radio"] { display: none; }
.job-type-label {
  display: flex; align-items: center; justify-content: center;
  padding: 12px; border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.job-type-item input:checked + .job-type-label { border-color: #d4567a; background: #fdf0f3; color: #d4567a; }
.job-type-label:hover { border-color: #d4567a; }
.star-ratings { display: flex; flex-direction: column; gap: 4px; }
.star-rating-row { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.star-rating-row__label { width: 130px; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.star-row { display: flex; gap: 4px; flex: 1; }
.star-btn {
  font-size: 28px; cursor: pointer; color: #e0e0e0;
  transition: color 0.15s, transform 0.1s;
  border: none; background: none; padding: 0;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn.active { color: #d4567a; }
.star-rating-row__value { font-size: 14px; font-weight: 700; color: #d4567a; width: 32px; text-align: right; }
.star-section-divider { border: none; border-top: 1px dashed #f0f0f0; margin: 8px 0; }
.form-textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit;
  resize: vertical; min-height: 160px;
  transition: border-color 0.2s; outline: none; line-height: 1.7;
}
.form-textarea:focus { border-color: #d4567a; }
.char-counter { display: flex; justify-content: space-between; font-size: 12px; margin-top: 6px; }
.char-counter__hint { color: #aaa; }
.char-counter__count { color: #aaa; }
.topic-list { display: flex; flex-direction: column; gap: 12px; }
.topic-section-label { font-size: 13px; font-weight: 700; color: #d4567a; margin-top: 16px; margin-bottom: 4px; }
.topic-item { border: 2px solid #f0f0f0; border-radius: 10px; padding: 14px 16px; transition: border-color 0.2s; }
.topic-item.selected { border-color: #d4567a; background: #fdf8fa; }
.topic-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.topic-checkbox input { display: none; }
.topic-checkbox__box {
  width: 22px; height: 22px; border: 2px solid #ddd; border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.topic-checkbox input:checked + .topic-checkbox__box { background: #d4567a; border-color: #d4567a; }
.topic-checkbox input:checked + .topic-checkbox__box::after { content: '✓'; color: #fff; font-size: 14px; font-weight: 700; }
.topic-checkbox__label { font-size: 14px; font-weight: 600; color: #333; }
.topic-textarea-wrap { margin-top: 12px; }
.summary-section__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f8f8f8; font-size: 14px; }
.summary-row__label { color: #888; }
.summary-row__value { font-weight: 700; color: #333; }
.submit-congrats { text-align: center; padding: 24px 0 20px; }
.submit-congrats__icon { font-size: 48px; margin-bottom: 8px; }
.submit-congrats__title { font-size: 22px; font-weight: 900; color: #222; margin-bottom: 8px; }
.submit-congrats__text { font-size: 14px; color: #888; }
.submit-benefit { background: #fdf0f3; border-radius: 8px; padding: 16px 20px; margin-bottom: 24px; text-align: center; }
.submit-benefit__title { font-size: 15px; font-weight: 700; color: #d4567a; margin-bottom: 4px; }
.submit-benefit__text { font-size: 13px; color: #888; }
.submit-login { text-align: center; padding: 20px 0; }
.submit-login__title { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 8px; }
.submit-login__text { font-size: 13px; color: #888; line-height: 1.7; margin-bottom: 20px; }
.submit-login__btns { display: flex; flex-direction: column; gap: 12px; max-width: 360px; margin: 0 auto 16px; }
.login-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 24px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; width: 100%; font-family: inherit; text-decoration: none; }
.login-btn--google { background: #fff; color: #3c4043; border: 1px solid #dadce0; box-shadow: 0 1px 2px rgba(60,64,67,0.3); }
.login-btn--google:hover { background: #f8f9fa; box-shadow: 0 2px 6px rgba(60,64,67,0.3); color: #3c4043; }
.login-btn--line { background: #06C755; color: #fff; box-shadow: 0 2px 4px rgba(6,199,85,0.3); }
.login-btn--line:hover { background: #05b34d; box-shadow: 0 4px 8px rgba(6,199,85,0.4); color: #fff; }
.submit-login__existing { font-size: 13px; color: #888; }
.submit-login__existing a { color: #d4567a; font-weight: 700; }
.submit-note { font-size: 12px; color: #aaa; margin-top: 16px; line-height: 1.8; text-align: center; }
.step-bar { background: #fff; padding: 16px 20px; margin-bottom: 20px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.step-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.step { display: flex; align-items: center; gap: 8px; }
.step__circle {
  width: 32px; height: 32px; background: #e8e8e8; color: #aaa;
  border-radius: 50%; font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step.active .step__circle { background: linear-gradient(135deg, #d4567a, #e8839e); color: #fff; }
.step.done .step__circle { background: #d4567a; color: #fff; }
.step__label { font-size: 12px; font-weight: 700; color: #aaa; white-space: nowrap; }
.step.active .step__label, .step.done .step__label { color: #d4567a; }
.step__line { flex: 1; height: 2px; background: #e8e8e8; min-width: 24px; max-width: 48px; margin: 0 4px; }
.step__line.done { background: #d4567a; }
.step-header { margin-bottom: 20px; }
.step-header__number { font-size: 12px; font-weight: 700; color: #d4567a; margin-bottom: 4px; }
.step-header__title { font-size: 22px; font-weight: 900; color: #222; margin-bottom: 4px; }
.step-header__time { font-size: 13px; color: #aaa; }
.step-footer { margin-top: 24px; }
.step-footer__feedback { font-size: 14px; font-weight: 700; color: #d4567a; margin-bottom: 8px; text-align: right; }
.step-footer__remind { font-size: 12px; color: #aaa; text-align: right; margin-bottom: 12px; }
.step-footer__btns { display: flex; gap: 12px; justify-content: flex-end; }
.step-back-btn {
  padding: 14px 24px; background: #fff; border: 2px solid #e8e8e8;
  border-radius: 50px; font-size: 14px; font-weight: 700; color: #888;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.step-back-btn:hover { border-color: #ccc; }
.step-next-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 16px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: inherit; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(212,86,122,0.3);
}
.step-next-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,86,122,0.4); }

/* ===== RANKING PAGE ===== */
.main-layout {
  max-width: 1280px; margin: 32px auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 280px; gap: 24px;
}
.main-layout--article { grid-template-columns: 1fr 280px; gap: 32px; }
.category-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.cat-tab {
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: 2px solid #e0e0e0; background: #fff; color: #999;
  transition: all 0.2s;
}
.cat-tab.active { background: linear-gradient(135deg, #d4567a, #e8839e); color: #fff; border-color: transparent; }
.cat-tab:hover:not(.active) { border-color: #d4567a; color: #d4567a; }
.ranking-list { display: flex; flex-direction: column; gap: 12px; }
.ranking-item {
  background: #fff; border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.ranking-item:hover { transform: translateX(4px); }
.ranking-item--top3 { border-left: 4px solid transparent; }
.ranking-item--1 { border-left-color: #ffd700; }
.ranking-item--2 { border-left-color: #c0c0c0; }
.ranking-item--3 { border-left-color: #cd7f32; }
.rank-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; flex-shrink: 0;
}
.rank-badge--1 { background: #ffd700; color: #fff; }
.rank-badge--2 { background: #c0c0c0; color: #fff; }
.rank-badge--3 { background: #cd7f32; color: #fff; }
.rank-badge--other { background: #f0f0f0; color: #999; font-size: 16px; }
.ranking-item__info { flex: 1; }
.ranking-item__name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ranking-item__meta { display: flex; gap: 12px; font-size: 13px; color: #999; flex-wrap: wrap; }
.ranking-item__meta-tag { background: #f5f5f5; padding: 2px 10px; border-radius: 50px; }
.ranking-item__meta-tag--type { background: #fdf0f3; color: #d4567a; }
.ranking-item__right { text-align: right; flex-shrink: 0; }
.ranking-item__score { font-size: 24px; font-weight: 900; color: #d4567a; }
.ranking-item__stars { color: #d4567a; font-size: 12px; }
.ranking-item__count { font-size: 12px; color: #bbb; margin-top: 2px; }
.area-links { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-top: 24px; }
.area-links__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #222; padding-bottom: 12px; border-bottom: 2px solid #d4567a; }
.area-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.area-link {
  display: block; text-align: center;
  background: #f8f8f8; border-radius: 8px; padding: 10px;
  font-size: 13px; font-weight: 500; color: #555; transition: all 0.2s;
}
.area-link:hover { background: #fdf0f3; color: #d4567a; }

.type-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; color: #555; }
.type-link:last-child { border-bottom: none; }
.type-link:hover { color: #d4567a; }
.type-link__count { font-size: 12px; color: #bbb; }

/* ===== COLUMN LIST ===== */
.article-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px;
}
.article-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.article-card__thumb {
  width: 100%; aspect-ratio: 16/9;
  background: #f0f0f0; display: flex; align-items: center;
  justify-content: center; color: #ccc; font-size: 13px;
  position: relative; overflow: hidden;
}
.article-card__thumb-inner {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.article-card__thumb-icon { font-size: 36px; margin-bottom: 8px; }
.article-card__thumb-text { font-size: 12px; color: #ccc; }
.article-card__body { padding: 16px; }
.article-card__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.article-card__title {
  font-size: 15px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; color: #222;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card__date { font-size: 12px; color: #bbb; margin-bottom: 8px; }
.article-card__excerpt {
  font-size: 13px; color: #888; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.popular-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.popular-item:last-child { margin-bottom: 0; }
.popular-item__rank {
  width: 24px; height: 24px; background: #d4567a; color: #fff;
  border-radius: 50%; font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.popular-item__title { font-size: 13px; font-weight: 700; color: #333; line-height: 1.5; }
.popular-item__title a { color: #333; }
.popular-item__title a:hover { color: #d4567a; }

/* ===== COLUMN DETAIL ===== */
.article {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden;
}
.article__hero {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #ccc; font-size: 13px;
}
.article__hero-icon { font-size: 64px; margin-bottom: 8px; }
.article__body { padding: 40px; }
.article__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.article__badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  background: #fdf0f3; color: #d4567a; padding: 4px 14px; border-radius: 50px;
}
.article__date, .article__updated { font-size: 13px; color: #bbb; }
.article__title { font-size: 28px; font-weight: 900; line-height: 1.5; color: #222; margin-bottom: 32px; }
.article__content { font-size: 16px; line-height: 1.9; color: #444; }
.article__content h2 {
  font-size: 22px; font-weight: 900; color: #222;
  margin: 40px 0 16px; padding: 16px 20px;
  background: linear-gradient(135deg, #fdf0f3, #f5d5df);
  border-left: 4px solid #d4567a; border-radius: 0 8px 8px 0;
}
.article__content h3 {
  font-size: 18px; font-weight: 700; color: #222;
  margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 2px solid #d4567a;
}
.article__content p { margin-bottom: 20px; }
.article__content ul { margin: 16px 0 20px 24px; }
.article__content li { margin-bottom: 8px; }
.article__content strong { color: #d4567a; }
.article__content .note {
  background: #fdf0f3; border-radius: 8px;
  padding: 16px 20px; margin: 20px 0;
  border-left: 3px solid #d4567a; font-size: 14px;
}
.article__content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article__content th { background: linear-gradient(135deg, #d4567a, #e8839e); color: #fff; padding: 12px 16px; text-align: left; }
.article__content td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
.article__content tr:nth-child(even) td { background: #fafafa; }
.in-article-cta {
  background: linear-gradient(135deg, #d4567a, #e8839e);
  border-radius: 12px; padding: 32px; text-align: center; color: #fff; margin: 40px 0;
}
.in-article-cta__title { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.in-article-cta__text { font-size: 14px; opacity: 0.9; margin-bottom: 20px; line-height: 1.6; }
.in-article-cta__btn {
  display: inline-block; background: #fff; color: #d4567a; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 50px; transition: transform 0.2s;
}
.in-article-cta__btn:hover { transform: scale(1.05); }
.related { padding: 40px; border-top: 1px solid #f0f0f0; }
.related__title { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #d4567a; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { border-radius: 10px; overflow: hidden; border: 1px solid #f0f0f0; background: #fafafa; transition: transform 0.2s; }
.related-card:hover { transform: translateY(-2px); }
.related-card__thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.related-card__body { padding: 12px; }
.related-card__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: #fdf0f3; color: #d4567a; padding: 2px 10px; border-radius: 50px; margin-bottom: 8px;
}
.related-card__title {
  font-size: 13px; font-weight: 700; line-height: 1.5; color: #333;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related-card__date { font-size: 11px; color: #bbb; margin-top: 6px; }
.sidebar { position: sticky; top: 80px; align-self: flex-start; }
.toc {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.toc__title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 12px; }
.toc__list { list-style: none; }
.toc__item { font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f5f5f5; }
.toc__item:last-child { border-bottom: none; }
.toc__item a { color: #555; }
.toc__item a:hover { color: #d4567a; }

/* ===== MYPAGE ===== */
.mypage-content { max-width: 800px; margin: 0 auto; padding: 24px 20px 80px; }
.mypage-section-title { font-size: 18px; font-weight: 900; color: #222; margin-bottom: 16px; }
.profile-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center; margin-bottom: 24px;
}
.profile-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fdf0f3; display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 12px;
}
.profile-card__name { font-size: 18px; font-weight: 900; color: #222; margin-bottom: 4px; }
.profile-card__role { font-size: 13px; font-weight: 700; color: #d4567a; margin-bottom: 16px; }
.profile-card__divider { height: 1px; background: #f0f0f0; margin-bottom: 16px; }
.profile-card__info { margin-bottom: 16px; }
.profile-card__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: #666; }
.profile-card__row-value { font-weight: 700; color: #333; }
.profile-card__expiry { background: linear-gradient(135deg, #d4567a, #e8839e); border-radius: 10px; padding: 16px; color: #fff; }
.profile-card__expiry-title { font-size: 12px; opacity: 0.85; margin-bottom: 4px; }
.profile-card__expiry-date { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.profile-card__expiry-note { font-size: 12px; opacity: 0.8; }
.expiry-banner {
  background: #fdf0f3; border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  border: 1px solid #f5d5df;
}
.expiry-banner__icon { font-size: 24px; flex-shrink: 0; }
.expiry-banner__title { font-size: 14px; font-weight: 700; color: #d4567a; margin-bottom: 2px; }
.expiry-banner__desc { font-size: 12px; color: #888; }
.mypage-facility {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 16px;
}
.mypage-facility__header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0;
}
.mypage-facility__name { font-size: 17px; font-weight: 700; color: #222; margin-bottom: 4px; }
.mypage-facility__name a { color: #222; }
.mypage-facility__name a:hover { color: #d4567a; }
.mypage-facility__meta { font-size: 13px; color: #aaa; }
.mypage-facility__count { font-size: 13px; font-weight: 700; color: #d4567a; white-space: nowrap; }
.mypage-reviews { display: flex; flex-direction: column; gap: 0; }
.mypage-review {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid #f8f8f8;
}
.mypage-review:last-child { border-bottom: none; }
.mypage-review__topic { font-size: 14px; font-weight: 600; color: #333; flex: 1; }
.mypage-review__score { font-size: 13px; color: #d4567a; font-weight: 700; width: 100px; }
.mypage-review__date { font-size: 12px; color: #ccc; width: 100px; text-align: right; }
.mypage-facility__add { margin-top: 12px; }
.mypage-add-btn {
  display: block; text-align: center; padding: 12px;
  border: 2px dashed #d4567a; border-radius: 8px;
  font-size: 14px; font-weight: 700; color: #d4567a; transition: all 0.2s;
}
.mypage-add-btn:hover { background: #fdf0f3; }
.mypage-favorites { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mypage-fav-card {
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s;
  border: 1px solid transparent;
}
.mypage-fav-card:hover { transform: translateY(-2px); border-color: #d4567a; }
.mypage-fav-card__name { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.mypage-fav-card__meta { font-size: 12px; color: #aaa; margin-bottom: 6px; }
.mypage-fav-card__score { font-size: 13px; color: #d4567a; }
.mypage-fav-card__score span { font-weight: 900; }

/* ===== AGENT PAGE ===== */
.agent-cards { display: flex; flex-direction: column; gap: 20px; }
.agent-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden; border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agent-card:hover { border-color: #d4567a; box-shadow: 0 4px 20px rgba(212,86,122,0.15); }
.agent-card--1 { border-color: #ffd700; }
.agent-card--2 { border-color: #c0c0c0; }
.agent-card--3 { border-color: #cd7f32; }
.agent-card__header { padding: 24px 28px; display: flex; align-items: center; gap: 20px; }
.agent-card__rank { font-size: 13px; font-weight: 700; color: #fff; background: #d4567a; padding: 4px 12px; border-radius: 50px; flex-shrink: 0; }
.agent-card__rank--1 { background: #ffd700; }
.agent-card__rank--2 { background: #c0c0c0; }
.agent-card__rank--3 { background: #cd7f32; }
.agent-card__logo {
  width: 100px; height: 56px; background: #f5f5f5; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #bbb; flex-shrink: 0; border: 1px solid #eee;
}
.agent-card__info { flex: 1; }
.agent-card__name { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.agent-card__stars { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.agent-card__star-icons { color: #d4567a; font-size: 16px; }
.agent-card__score { font-size: 20px; font-weight: 900; color: #d4567a; }
.agent-card__reviews { font-size: 12px; color: #bbb; }
.agent-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.agent-card__tag { font-size: 12px; color: #d4567a; background: #fdf0f3; padding: 3px 10px; border-radius: 50px; font-weight: 500; }
.agent-card__cta { flex-shrink: 0; text-align: center; }
.agent-card__btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(212,86,122,0.3);
  transition: transform 0.2s; white-space: nowrap;
}
.agent-card__btn:hover { transform: scale(1.05); }
.agent-card__btn-note { font-size: 11px; color: #bbb; margin-top: 6px; text-align: center; }
.agent-card__specs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 28px 20px; gap: 16px;
}
.spec-item { text-align: center; }
.spec-item__label { font-size: 11px; color: #bbb; margin-bottom: 4px; }
.spec-item__value { font-size: 14px; font-weight: 700; color: #333; }
.spec-item__value--orange { color: #d4567a; }
.agent-card__accordion { border-top: 1px solid #f5f5f5; }
.accordion-toggle {
  width: 100%; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #666; text-align: left;
}
.accordion-toggle:hover { color: #d4567a; background: #fafafa; }
.accordion-toggle__icon { font-size: 18px; transition: transform 0.2s; }
.accordion-toggle.open .accordion-toggle__icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 28px 28px; }
.accordion-body.open { display: block; }
.accordion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.accordion-col__title { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: #333; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.accordion-col ul { list-style: none; }
.accordion-col li { font-size: 13px; color: #555; padding: 4px 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comparison-table th { background: #f8f8f8; padding: 12px 16px; text-align: left; font-weight: 700; color: #555; border-bottom: 1px solid #f0f0f0; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid #f5f5f5; color: #444; }
.comparison-table td:first-child { font-weight: 700; color: #333; }
.comparison-table tr:hover td { background: #fdf8f9; }

/* ===== GENERIC UTILITY ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 16px; font-weight: 700;
  padding: 16px 40px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(212,86,122,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,86,122,0.4); }
.btn-outline {
  display: inline-block;
  color: #d4567a; font-size: 14px; font-weight: 700;
  padding: 12px 32px; border: 2px solid #d4567a; border-radius: 50px;
  transition: all 0.2s;
}
.btn-outline:hover { background: #d4567a; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .fv__title { font-size: 26px; }
  .fv__numbers { gap: 20px; }
  .fv__num-value { font-size: 28px; }
  .facility-types { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .facility-card { padding: 20px 16px; }
  .point { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .header__nav { display: none; }
  .section__title { font-size: 22px; }
  .footer__inner { flex-direction: column; }
  .area-region__grid .area-btn { min-width: 72px; }
  .list-header__title { font-size: 20px; }
  .list-content__inner { flex-direction: column; }
  .list-content__sidebar { width: 100%; position: static; order: -1; }
  .facility-list-card { flex-direction: column; align-items: flex-start; }
  .facility-list-card__right { margin-left: 0; margin-top: 12px; text-align: left; }
  .facility-list-card__score { justify-content: flex-start; }
  .evaluation-layout { flex-direction: column; }
  .evaluation-layout__right { width: 100%; }
  .facility-detail-box__name { font-size: 20px; }
  .facility-detail-box__header { padding: 24px 20px 20px; }
  .facility-detail-box__evaluation { padding: 20px; }
  .facility-detail-box__data { padding: 20px; }
  .detail-tabs { padding: 0 20px; }
  .detail-tab { padding: 12px 16px; font-size: 13px; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .kango-score-row__label { width: 120px; }
  .review-list-card__header { flex-direction: column; gap: 4px; }
  .review-list-card__date { margin-left: 0; }
  .main-layout { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .article__body { padding: 24px 20px; }
  .related { padding: 24px 20px; }
  .mypage-favorites { grid-template-columns: 1fr; }
  .mypage-facility__header { flex-direction: column; gap: 8px; }
  .mypage-review { flex-wrap: wrap; }
  .agent-card__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .agent-card__specs { grid-template-columns: repeat(2, 1fr); }
  .job-type-grid { grid-template-columns: 1fr 1fr; }
  .star-rating-row { gap: 10px; }
  .star-rating-row__label { width: 90px; font-size: 12px; }
  .star-btn { font-size: 24px; }
  .form-row-2col { flex-direction: column; gap: 0; }
  .step-bar__inner { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .step__label { display: none; }
}

@media (max-width: 480px) {
  .article-grid { grid-template-columns: 1fr; }
  .accordion-grid { grid-template-columns: 1fr; }
}

/* ===== FIXED PAGE ===== */
.page-wrap--fixed {
  max-width: 960px; margin: 0 auto;
  padding: 40px 24px 80px;
}
.page-content {
  background: #fff; border-radius: 16px; padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 15px; line-height: 1.8; color: #444;
}
.page-content h2 {
  font-size: 20px; font-weight: 900; color: #222;
  margin: 32px 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 16px; font-weight: 700; color: #333;
  margin: 24px 0 12px;
}
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol {
  margin: 12px 0 16px 24px;
}
.page-content li { margin-bottom: 8px; line-height: 1.7; }
.page-content a { color: #d4567a; text-decoration: underline; }
.page-content table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
}
.page-content th, .page-content td {
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
  font-size: 14px; text-align: left;
}
.page-content th { font-weight: 700; color: #666; width: 160px; }
.page-content dt { font-weight: 700; color: #333; margin-top: 16px; }
.page-content dd { margin: 4px 0 16px 0; }

/* ===== PAGE (FIXED) - UPDATED STYLES ===== */
.page-header--pink {
  margin-top: 64px;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  padding: 40px 24px;
  text-align: center;
}
.page-header--pink .page-header__title {
  font-size: 26px; font-weight: 900; color: #fff;
  max-width: 1280px; margin: 0 auto;
}
.page-wrap--narrow {
  max-width: 860px; margin: 0 auto;
  padding: 32px 24px 80px;
}
.page-content-card {
  background: #fff; border-radius: 16px; padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 15px; line-height: 2; color: #444;
}
.page-content-card h2 {
  font-size: 20px; font-weight: 900; color: #222;
  margin: 40px 0 16px; padding: 12px 0 12px 16px;
  border-left: 4px solid #d4567a;
  background: #fdf0f3;
}
.page-content-card h2:first-child { margin-top: 0; }
.page-content-card h3 {
  font-size: 16px; font-weight: 700; color: #333;
  margin: 28px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.page-content-card p { margin-bottom: 16px; }
.page-content-card ul, .page-content-card ol {
  margin: 12px 0 20px 24px;
}
.page-content-card li { margin-bottom: 10px; line-height: 1.8; }
.page-content-card a { color: #d4567a; font-weight: 600; }
.page-content-card a:hover { text-decoration: underline; }
.page-content-card table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
}
.page-content-card th, .page-content-card td {
  padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
  font-size: 14px; text-align: left; line-height: 1.7;
}
.page-content-card th {
  font-weight: 700; color: #555; background: #fafafa;
  width: 180px; vertical-align: top;
}
.page-content-card dt {
  font-weight: 700; color: #333; margin-top: 20px;
  padding: 8px 0; border-bottom: 1px solid #f0f0f0;
}
.page-content-card dd { margin: 8px 0 20px 0; }
.page-content-card strong { color: #333; }

@media (max-width: 768px) {
  .page-content-card { padding: 24px 20px; }
  .page-content-card h2 { font-size: 18px; }
}

/* ===== LOGIN PAGE ===== */
.login-wrap {
  margin-top: 64px;
  min-height: calc(100vh - 300px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #fdf0f3, #f5d5df);
}
.login-card {
  background: #fff; border-radius: 16px; padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 440px; width: 100%; text-align: center;
}
.login-title {
  font-size: 24px; font-weight: 900; color: #222; margin-bottom: 12px;
}
.login-desc {
  font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 32px;
}
.login-buttons {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px;
}
.login-btn--google { background: #fff; color: #3c4043; border: 1px solid #dadce0; box-shadow: 0 1px 2px rgba(60,64,67,0.3); }
.login-btn--google:hover { background: #f8f9fa; box-shadow: 0 2px 6px rgba(60,64,67,0.3); color: #3c4043; }
.login-btn--line { background: #06C755; color: #fff; box-shadow: 0 2px 4px rgba(6,199,85,0.3); }
.login-btn--line:hover { background: #05b34d; box-shadow: 0 4px 8px rgba(6,199,85,0.4); color: #fff; }
.login-btn__icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.login-btn__icon svg { width: 100%; height: 100%; }
.login-terms {
  font-size: 12px; color: #aaa; line-height: 1.7;
  padding-top: 20px; border-top: 1px solid #f0f0f0;
}
.login-terms a { color: #d4567a; }
/* ===== SIDEBAR CTA (統一) ===== */
.cta-agent {
  background: linear-gradient(135deg, #d4567a, #e8839e);
  border-radius: 12px; padding: 24px; text-align: center;
  color: #fff; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(212,86,122,0.15);
}
.cta-agent__title {
  font-size: 15px; font-weight: 900; margin-bottom: 8px;
}
.cta-agent__text {
  font-size: 13px; opacity: 0.9; margin-bottom: 16px;
  line-height: 1.6;
}
.cta-agent__btn {
  display: block; background: #fff; color: #d4567a;
  font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none; transition: transform 0.2s;
}
.cta-agent__btn:hover { transform: scale(1.03); color: #d4567a; }

.cta-review {
  background: #fff; border-radius: 12px; padding: 24px;
  text-align: center; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cta-review__title {
  font-size: 15px; font-weight: 900; color: #222; margin-bottom: 8px;
}
.cta-review__text {
  font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px;
}
.cta-review__btn {
  display: block;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-review__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,86,122,0.3);
  color: #fff;
}

/* ===== CONTACT FORM ===== */
.contact-form { margin: 24px 0 32px; }
.contact-form__row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.contact-form__row--block {
  display: block;
}
.contact-form__label {
  flex: 0 0 140px;
  font-size: 14px; font-weight: 700; color: #333;
}
.contact-form__row--block .contact-form__label {
  display: block; margin-bottom: 8px;
}
.contact-form__required {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: #fff; background: #d4567a; padding: 2px 6px;
  border-radius: 3px; margin-left: 4px; vertical-align: middle;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  background: #fff;
}
.contact-form__row--block .contact-form__textarea {
  width: 100%;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: #d4567a;
}
.contact-form__textarea {
  resize: vertical; min-height: 160px; line-height: 1.7;
}
.contact-form__select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form__privacy {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 24px 0; font-size: 14px; color: #555;
  cursor: pointer;
}
.contact-form__privacy input {
  width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; margin: 0;
}
.contact-form__privacy a { color: #d4567a; font-weight: 700; }
.contact-form__submit { text-align: center; }
.contact-form__btn {
  display: inline-block; padding: 14px 48px;
  background: linear-gradient(135deg, #d4567a, #e8839e);
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,86,122,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.contact-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,86,122,0.4);
}
@media (max-width: 768px) {
  .contact-form__row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact-form__label { flex: none; }
  .contact-form__input, .contact-form__select, .contact-form__textarea { width: 100%; }
}
