/* ==========================================
 * 検索結果ページ
 * ========================================== */
.is-results .container {
  padding-top: 20px;
}

.results-header {
  text-align: center;
  margin-bottom: 40px;
}

.results-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.results-header .subtitle {
  font-size: 17px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.summary-details {
  color: var(--color-text-light);
  font-weight: 500;
  margin-left: 15px;
  font-size: 15px;
}

.back-link-top {
  display: block;
  text-align: left;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 15px;
  transition: all 0.2s;
}

.back-link-top:hover {
  color: #93c5fd;
  text-decoration: underline;
  transform: translateX(-4px);
}

/* ==========================================
 * 法的注意書き
 * ========================================== */
.legal-notice {
  background: rgba(254, 243, 199, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-large);
  padding: 24px;
  margin: 30px 0;
}

.legal-notice h3 {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
}

.legal-notice ul {
  list-style: none;
  padding: 0;
}

.legal-notice li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  line-height: 1.6;
}

/* ==========================================
 * その他（広告、結果なし）
 * ========================================== */
.no-results {
  text-align: center;
  padding: 60px 30px;
  background: rgba(15, 23, 42, 0.8);
  border: 2px dashed rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-large);
  color: var(--color-text-subtle);
}

.no-results h3 {
  font-size: 20px;
  color: #f1f5f9;
  margin-bottom: 16px;
  font-weight: 700;
}

.no-results p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.no-results ul {
  text-align: left;
  max-width: 400px;
  margin: 20px auto;
  padding-left: 24px;
}

.no-results li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.back-link-bottom {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.back-link-bottom:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.advertisement-space {
  text-align: center;
  padding: 24px;
  margin-bottom: 40px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px dashed var(--color-border-subtle);
  border-radius: var(--radius-medium);
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-ad {
  margin-top: 50px;
}

/* ==========================================
 * コンテンツページ（コラム等）
 * ========================================== */
.content-page {
  max-width: 900px;
}

.content-section {
  background: var(--color-bg-blur);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-large);
  padding: 40px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.content-section h2 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
}
.content-section h3 {
  font-size: 20px;
  color: var(--color-text-light);
  margin: 24px 0 16px;
  font-weight: 700;
}
.content-section p {
  margin-bottom: 16px;
  color: var(--color-text-subtle);
}
.content-section ul {
  margin: 20px 0;
  padding-left: 24px;
}
.content-section li {
  margin-bottom: 12px;
  color: var(--color-text-subtle);
}
.content-section strong {
  color: var(--color-text-light);
  font-weight: 700;
}
/* シンプルリスト用スタイル */
.simple-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.simple-area-section {
    margin-bottom: 40px;
}

.simple-area-title {
    font-size: 20px;
    font-weight: 700;
    color: #60a5fa; /* プライマリーカラー */
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.simple-studio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* 画面幅に合わせて1列〜2列に自動調整 */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px 20px;
}

.simple-studio-list li a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.simple-studio-list li a:hover {
    color: #60a5fa;
    text-decoration: underline;
}