/*
Theme Name: ウカルメ大学受験ホテル予約
Theme URI: https://travel.ukaru.me
Author: ウカルメ株式会社
Description: ウカルメ大学受験ホテル予約専用テーマ
Version: 1.0.0
License: Private
Text Domain: ukaru-travel
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --white: #fff;
  --coral: #ff6b47;
  --coral-dark: #e55a36;
  --coral-light: #fff3f0;
  --teal: #00b4b4;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-700: #616161;
  --gray-900: #212121;
  --border: #ebebeb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; background: var(--white); color: var(--gray-900); font-size: 14px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: var(--gray-900); }
img { max-width: 100%; }
.container { max-width: 900px; margin: 0 auto; padding: 0 16px; }

/* ── HEADER ── */
#header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.header-top { display: flex; align-items: center; justify-content: center; padding: 10px 16px; position: relative; height: 52px; }
.logo { font-size: 15px; font-weight: 700; color: var(--coral); }
.header-menu-btn { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 6px; cursor: pointer; color: var(--gray-700); background: var(--white); transition: all 0.15s; }
.header-menu-btn:hover { border-color: var(--coral); color: var(--coral); }

/* HAMBURGER */
.hmenu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(2px); }
.hmenu-overlay.open { opacity: 1; pointer-events: auto; }
.hmenu { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 400; overflow-y: auto; transition: right 0.3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.12); display: flex; flex-direction: column; }
.hmenu.open { right: 0; }
.hmenu-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--white); position: sticky; top: 0; z-index: 1; flex-shrink: 0; }
.hmenu-logo { font-size: 13px; font-weight: 700; color: var(--coral); }
.hmenu-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 6px; cursor: pointer; color: var(--gray-700); transition: all 0.15s; }
.hmenu-close:hover { border-color: var(--coral); color: var(--coral); }
.hmenu-section { padding: 14px 16px 10px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.hmenu-section-title { font-size: 10px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.hmenu-type-toggle { display: flex; background: var(--gray-100); border-radius: 8px; padding: 3px; gap: 3px; }
.hmenu-type-btn { flex: 1; padding: 8px; border-radius: 6px; font-size: 12px; font-weight: 500; text-align: center; cursor: pointer; color: var(--gray-500); transition: all 0.15s; user-select: none; }
.hmenu-type-btn.active { background: var(--white); color: var(--gray-900); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.hmenu-item { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 8px; font-size: 13px; color: var(--gray-900); transition: background 0.1s; text-decoration: none; margin-bottom: 2px; }
.hmenu-item:hover { background: var(--coral-light); color: var(--coral-dark); }
.hmenu-item svg { color: var(--gray-400); flex-shrink: 0; }
.hmenu-item:hover svg { color: var(--coral); }
.hmenu-cta { padding: 16px; margin-top: auto; flex-shrink: 0; }
.hmenu-cta a { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--coral); color: var(--white) !important; padding: 12px; border-radius: 100px; font-size: 13px; font-weight: 700; transition: background 0.15s; text-decoration: none; }
.hmenu-cta a:hover { background: var(--coral-dark); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--coral); }
.breadcrumb-sep { color: var(--gray-300); }

/* ── FOOTER ── */
#footer { background: var(--gray-900); color: rgba(255,255,255,0.5); padding: 40px 0 24px; }
.footer-logo { font-size: 16px; font-weight: 700; color: var(--coral); margin-bottom: 16px; text-align: center; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 24px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-links-list { display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.1s; }
.footer-links-list a:hover { color: var(--white); }
.footer-bottom { text-align: center; font-size: 11px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ── HERO ── */
.hero { position: relative; height: 260px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.slide-1 { background: linear-gradient(135deg, #f8e8e0 0%, #fde8d8 50%, #f5d5c5 100%); }
.slide-2 { background: linear-gradient(135deg, #e0e8f8 0%, #d8e4fd 50%, #c5d5f5 100%); }
.slide-3 { background: linear-gradient(135deg, #e0f5e8 0%, #d8fde4 50%, #c5f5d5 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding: 0 40px; }
.hero-sub { font-size: 11px; font-weight: 500; color: var(--coral); margin-bottom: 6px; }
.hero h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; line-height: 1.4; letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 16px; }
.hero h2 em { font-style: normal; color: var(--coral); }
.hero-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--coral); color: var(--white); padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; transition: all 0.15s; }
.hero-btn:hover { background: var(--coral-dark); color: var(--white); }
.slide-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.2s; }
.dot.active { background: var(--coral); width: 18px; border-radius: 3px; }

/* ── SEARCH SECTION ── */
.search-section { background: var(--white); padding: 32px 0 28px; border-bottom: 1px solid var(--border); }
.search-heading { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.quick-unis { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.quick-uni-card { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; transition: all 0.15s; font-size: 13px; font-weight: 500; color: var(--gray-700); }
.quick-uni-card:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }
.quick-uni-card.selected { border-color: var(--coral); color: var(--coral-dark); background: var(--coral-light); }
.quick-uni-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.search-or { text-align: center; font-size: 12px; color: var(--gray-400); margin: 12px 0; display: flex; align-items: center; gap: 10px; }
.search-or::before, .search-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.search-box-wrap { position: relative; margin-bottom: 12px; }
.search-box { width: 100%; padding: 12px 18px 12px 44px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 14px; font-family: inherit; outline: none; transition: all 0.2s; background: var(--white); }
.search-box:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,71,0.1); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.search-dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 100; display: none; overflow: hidden; max-height: 280px; overflow-y: auto; }
.dropdown-item { padding: 11px 18px; cursor: pointer; border-bottom: 1px solid var(--gray-100); transition: background 0.1s; display: flex; align-items: center; gap: 10px; }
.dropdown-item:hover { background: var(--coral-light); }
.dropdown-item:last-child { border-bottom: none; }
.di-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.di-uni { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.di-campus { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.selected-area { display: flex; flex-wrap: wrap; gap: 8px; min-height: 42px; padding: 8px 14px; background: var(--gray-50); border: 1.5px dashed var(--gray-300); border-radius: var(--radius); margin-bottom: 14px; align-items: center; }
.sel-placeholder { font-size: 12px; color: var(--gray-400); font-weight: 300; }
.sel-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--coral-light); border: 1px solid rgba(255,107,71,0.25); color: var(--coral-dark); padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 500; }
.sel-remove { cursor: pointer; opacity: 0.6; font-size: 13px; }
.sel-remove:hover { opacity: 1; }
.search-submit { width: 100%; background: var(--coral); color: var(--white); border: none; padding: 14px; border-radius: 100px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.search-submit:hover { background: var(--coral-dark); }
.search-submit:disabled { background: var(--gray-300); color: var(--gray-500); cursor: not-allowed; }

/* ── HOTEL RANKING ── */
.hotel-ranking-section { padding: 40px 0; background: var(--gray-50); }
.university-block { margin-bottom: 48px; }
.uni-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.uni-color-bar { width: 4px; height: 24px; border-radius: 2px; flex-shrink: 0; }
.uni-name { font-size: 18px; font-weight: 700; }
.campus-block { margin-bottom: 28px; }
.campus-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.campus-name { font-size: 14px; font-weight: 700; color: var(--gray-700); display: flex; align-items: center; gap: 6px; }
.campus-name::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gray-400); }
.campus-more { font-size: 12px; color: var(--coral); }
.hotel-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.hotel-scroll::-webkit-scrollbar { display: none; }
.hotel-card { flex-shrink: 0; width: 200px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s; cursor: pointer; }
.hotel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hotel-card-img { height: 110px; position: relative; background-size: cover; background-position: center; }
.hotel-rank-badge { position: absolute; top: 8px; left: 8px; width: 22px; height: 22px; border-radius: 50%; background: var(--coral); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hotel-rank-badge.gold { background: #f0a500; }
.hotel-rank-badge.silver { background: #9e9e9e; }
.hotel-rank-badge.bronze { background: #a0522d; }
.hotel-card-body { padding: 10px 12px; }
.hotel-card-name { font-size: 12px; font-weight: 700; margin-bottom: 4px; line-height: 1.4; color: var(--gray-900); }
.hotel-card-address { font-size: 10px; color: var(--gray-500); margin-bottom: 6px; }
.hotel-card-price { font-size: 15px; font-weight: 700; color: var(--coral); }
.hotel-card-price span { font-size: 10px; font-weight: 400; color: var(--gray-500); }
.hotel-card-btn { display: block; width: 100%; text-align: center; background: var(--coral); color: var(--white); padding: 7px; border-radius: 6px; font-size: 11px; font-weight: 700; margin-top: 8px; transition: background 0.15s; }
.hotel-card-btn:hover { background: var(--coral-dark); color: var(--white); }

/* ── MULTI SEARCH ── */
.multi-search-section { padding: 40px 0; background: var(--white); border-top: 1px solid var(--border); }
.multi-search-inner { max-width: 680px; margin: 0 auto; padding: 0 16px; }
.multi-heading { font-size: 18px; font-weight: 700; margin-bottom: 6px; text-align: center; }
.multi-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; text-align: center; line-height: 1.8; }

/* ── ARTICLES ── */
.articles-section { padding: 40px 0; background: var(--gray-50); border-top: 1px solid var(--border); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 16px; font-weight: 700; }
.section-more { font-size: 12px; color: var(--teal); }
.article-list { display: flex; flex-direction: column; }
.article-list-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); transition: background 0.1s; }
.article-list-item:hover { background: var(--gray-50); margin: 0 -8px; padding: 14px 8px; }
.article-list-item:last-child { border-bottom: none; }
.article-list-cat { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.article-list-title { font-size: 13px; font-weight: 500; color: var(--gray-900); flex: 1; line-height: 1.5; }
.article-list-date { font-size: 11px; color: var(--gray-400); white-space: nowrap; flex-shrink: 0; }

/* ── SEARCH RESULT PAGE ── */
.result-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.result-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.result-sub { font-size: 13px; color: var(--gray-500); }
.campus-summary { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.campus-summary-label { font-size: 12px; font-weight: 700; color: var(--gray-500); margin-bottom: 10px; letter-spacing: 0.06em; }
.campus-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.campus-tag { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); font-size: 13px; }
.campus-tag-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.campus-tag-uni { font-weight: 700; color: var(--gray-900); }
.campus-tag-campus { font-size: 11px; color: var(--gray-500); }
.campus-tag-dist { font-size: 11px; color: var(--coral); font-weight: 500; margin-top: 1px; }
.center-point { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 14px; background: var(--gray-50); border-radius: var(--radius); border: 1px dashed var(--gray-300); font-size: 12px; color: var(--gray-700); }
.center-point-icon { width: 24px; height: 24px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.change-btn { margin-left: auto; font-size: 12px; color: var(--coral); font-weight: 500; cursor: pointer; white-space: nowrap; }
.sort-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.sort-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.result-count { font-size: 13px; color: var(--gray-700); }
.result-count strong { color: var(--gray-900); font-weight: 700; }
.sort-options { display: flex; gap: 4px; }
.sort-btn { padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; cursor: pointer; background: var(--white); color: var(--gray-700); transition: all 0.15s; font-family: inherit; }
.sort-btn.active { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }
.result-main { padding: 20px 0 48px; }
.hotel-list { display: flex; flex-direction: column; gap: 12px; }
.hotel-card-full { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; transition: all 0.2s; position: relative; }
.hotel-card-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hotel-rank { position: absolute; top: 12px; left: 12px; z-index: 2; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--white); }
.rank-1 { background: #f0a500; }
.rank-2 { background: #9e9e9e; }
.rank-3 { background: #a0522d; }
.rank-other { background: rgba(0,0,0,0.45); }
.hotel-img { width: 200px; min-width: 200px; height: 160px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.hotel-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hotel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.hotel-name { font-size: 15px; font-weight: 700; color: var(--gray-900); line-height: 1.4; }
.hotel-nearest { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.hotel-rating { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.rating-score { font-size: 14px; font-weight: 700; color: #f0a500; }
.rating-stars { display: flex; gap: 1px; }
.star { font-size: 11px; color: #f0a500; }
.rating-count { font-size: 11px; color: var(--gray-400); }
.hotel-distances { display: flex; flex-wrap: wrap; gap: 6px; }
.dist-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; background: var(--gray-50); border: 1px solid var(--border); border-radius: 4px; font-size: 11px; color: var(--gray-700); }
.dist-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hotel-access { font-size: 12px; color: var(--gray-500); display: flex; align-items: flex-start; gap: 4px; }
.hotel-disclaimer { font-size: 10px; color: var(--gray-400); padding: 6px 10px; background: var(--gray-50); border-radius: 4px; border-left: 2px solid var(--gray-300); line-height: 1.6; }
.hotel-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border); }
.hotel-price-wrap { }
.hotel-price-label { font-size: 10px; color: var(--gray-400); }
.hotel-price { font-size: 20px; font-weight: 700; color: var(--coral); }
.hotel-price span { font-size: 11px; font-weight: 400; color: var(--gray-500); }
.hotel-book-btn { display: flex; align-items: center; gap: 6px; background: var(--coral); color: var(--white); padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; transition: all 0.15s; white-space: nowrap; }
.hotel-book-btn:hover { background: var(--coral-dark); color: var(--white); }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; cursor: pointer; background: var(--white); transition: all 0.15s; }
.page-btn.active { background: var(--coral); color: var(--white); border-color: var(--coral); font-weight: 700; }
.research-section { background: var(--white); border-top: 1px solid var(--border); padding: 28px 0; }
.research-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.research-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.research-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.research-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--white); color: var(--coral); border: 1.5px solid var(--coral); padding: 10px 24px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.research-btn:hover { background: var(--coral-light); color: var(--coral); }

/* ── ARCHIVE PAGE ── */
.page-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 0; }
.page-title { font-size: 22px; font-weight: 700; }
.page-sub { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.category-tabs { background: var(--white); border-bottom: 1px solid var(--border); overflow-x: auto; }
.tabs-inner { display: flex; min-width: max-content; }
.tab { padding: 12px 20px; font-size: 13px; font-weight: 500; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.15s; }
.tab.active { color: var(--coral); border-bottom-color: var(--coral); }
.archive-main { padding: 28px 0 56px; }
.archive-layout { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; }
.article-list-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.article-list-header { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.article-list-header-title { font-size: 13px; font-weight: 700; color: var(--gray-700); }
.article-count { font-size: 12px; color: var(--gray-400); }
.article-item { display: flex; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--border); transition: background 0.1s; }
.article-item:last-child { border-bottom: none; }
.article-item:hover { background: var(--gray-50); }
.article-thumb { width: 120px; min-width: 120px; height: 80px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; position: relative; }
.article-content { flex: 1; min-width: 0; }
.article-cat-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-bottom: 6px; }
.article-title { font-size: 14px; font-weight: 700; line-height: 1.55; color: var(--gray-900); margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-excerpt { font-size: 12px; color: var(--gray-500); line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-meta-row { display: flex; align-items: center; gap: 12px; }
.article-date { font-size: 11px; color: var(--gray-400); }
.article-readmore { font-size: 11px; color: var(--coral); font-weight: 500; margin-left: auto; }
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.sidebar-card-title { font-size: 13px; font-weight: 700; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--gray-50); }
.cat-list { padding: 8px 0; }
.cat-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 16px; cursor: pointer; transition: background 0.1s; font-size: 13px; }
.cat-item:hover { background: var(--gray-50); }
.cat-item-left { display: flex; align-items: center; gap: 8px; }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; }
.cat-count { font-size: 11px; color: var(--gray-400); background: var(--gray-100); padding: 1px 7px; border-radius: 100px; }
.popular-list { padding: 4px 0; }
.popular-item { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background 0.1s; }
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { background: var(--gray-50); }
.popular-num { font-size: 16px; font-weight: 700; color: var(--gray-300); flex-shrink: 0; width: 20px; }
.popular-num.top3 { color: var(--coral); }
.popular-title { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--gray-900); }
.search-cta { padding: 16px; text-align: center; }
.search-cta-text { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.search-cta-sub { font-size: 11px; color: var(--gray-500); margin-bottom: 12px; line-height: 1.6; }
.search-cta-btn { display: block; background: var(--coral); color: var(--white); padding: 10px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.search-cta-btn:hover { background: var(--coral-dark); color: var(--white); }

/* ── ARTICLE SINGLE ── */
.article-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.article-header { padding: 28px 28px 0; }
.article-main-title { font-size: clamp(18px, 3vw, 24px); font-weight: 700; line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 14px; }
.article-meta { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-date-text { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.article-eyecatch { width: 100%; height: 280px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.eyecatch-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3) 100%); }
.article-body { padding: 28px; font-size: 15px; line-height: 1.8; }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-size: 18px; font-weight: 700; margin: 36px 0 16px; padding: 12px 16px; background: var(--gray-50); border-left: 4px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; }
.article-body h3 { font-size: 16px; font-weight: 700; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 8px; }
.article-body h3::before { content: ''; display: block; width: 4px; height: 16px; background: var(--coral); border-radius: 2px; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { margin-bottom: 6px; }
.toc { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 32px; }
.toc-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--gray-700); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-list li { font-size: 13px; }
.toc-list li a { color: var(--coral); display: flex; align-items: center; gap: 6px; }
.toc-list li a::before { content: '›'; font-weight: 700; }
.toc-list .toc-sub { padding-left: 16px; }
.toc-list .toc-sub a { color: var(--gray-700); font-size: 12px; }
.hotel-ranking-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.hotel-ranking-header { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--gray-50); }
.rank-badge { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.rank-badge.gold { background: #f0a500; }
.rank-badge.silver { background: #9e9e9e; }
.rank-badge.bronze { background: #a0522d; }
.rank-badge.other { background: var(--gray-400); }
.rank-hotel-name { font-size: 15px; font-weight: 700; }
.rank-nearest { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.hotel-ranking-body { display: flex; }
.hotel-ranking-img { width: 180px; min-width: 180px; height: 130px; flex-shrink: 0; background-size: cover; background-position: center; }
.hotel-ranking-info { padding: 14px 16px; flex: 1; }
.hotel-ranking-address { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
.hotel-ranking-dist { font-size: 12px; color: var(--coral); font-weight: 500; margin-bottom: 8px; }
.hotel-ranking-access { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; }
.hotel-ranking-footer { display: flex; align-items: center; justify-content: space-between; }
.hotel-ranking-price { font-size: 18px; font-weight: 700; color: var(--coral); }
.hotel-ranking-price span { font-size: 11px; font-weight: 400; color: var(--gray-500); }
.summary-box { background: var(--coral-light); border: 1px solid rgba(255,107,71,0.2); border-radius: var(--radius-lg); padding: 20px 24px; margin: 32px 0; }
.summary-box-title { font-size: 14px; font-weight: 700; color: var(--coral-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.summary-box ul { padding-left: 20px; }
.summary-box ul li { font-size: 13px; margin-bottom: 6px; }
.article-cta { margin: 36px 0 0; padding: 24px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; }
.article-cta-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.article-cta-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.article-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--coral); color: var(--white); padding: 14px 32px; border-radius: 100px; font-size: 15px; font-weight: 700; }
.article-cta-btn:hover { background: var(--coral-dark); color: var(--white); }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; }
.sticky-sidebar { position: sticky; top: 76px; }
.related-list { padding: 4px 0; }
.related-item { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-item:hover { background: var(--gray-50); }
.related-thumb { width: 60px; height: 44px; border-radius: 6px; flex-shrink: 0; background-size: cover; background-position: center; }
.related-title { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--gray-900); }

/* ── STATIC PAGES ── */
.doc-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; margin: 28px 0 56px; }
.doc-wrap h2 { font-size: 16px; font-weight: 700; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.doc-wrap h2:first-child { margin-top: 0; }
.doc-wrap p { margin-bottom: 14px; font-size: 14px; }
.doc-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.doc-wrap ul li { margin-bottom: 6px; font-size: 14px; }
.doc-notice { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; padding: 12px 16px; background: var(--gray-50); border-radius: var(--radius); border-left: 3px solid var(--coral); }

/* ── CONTACT PAGE ── */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; }
.form-intro { font-size: 14px; color: var(--gray-700); margin-bottom: 28px; padding: 16px; background: var(--gray-50); border-radius: var(--radius); border-left: 3px solid var(--coral); line-height: 1.8; }
.form-group { margin-bottom: 24px; }
.form-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.form-required { font-size: 10px; font-weight: 700; color: var(--white); background: var(--coral); padding: 2px 7px; border-radius: 3px; }
.form-optional { font-size: 10px; color: var(--gray-400); background: var(--gray-100); padding: 2px 7px; border-radius: 3px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--gray-900); background: var(--white); outline: none; transition: all 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,71,0.1); }
.form-textarea { resize: vertical; min-height: 160px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after { content: '▼'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 10px; color: var(--gray-400); pointer-events: none; }
.form-note { font-size: 11px; color: var(--gray-500); margin-top: 6px; }
.radio-group, .check-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item, .check-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.radio-item input, .check-item input { accent-color: var(--coral); }
.privacy-agree { display: flex; align-items: flex-start; gap: 10px; padding: 16px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--border); }
.privacy-agree input { accent-color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.privacy-agree label { font-size: 13px; color: var(--gray-700); line-height: 1.7; }
.submit-area { text-align: center; margin-top: 32px; }
.submit-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--coral); color: var(--white); border: none; padding: 16px 48px; border-radius: 100px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all 0.2s; }
.submit-btn:hover { background: var(--coral-dark); }
.submit-note { font-size: 12px; color: var(--gray-400); margin-top: 12px; }
.success-msg { display: none; text-align: center; padding: 48px 24px; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.success-text { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.8; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--white); color: var(--coral); border: 1.5px solid var(--coral); padding: 10px 24px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.faq-section { margin-top: 40px; }
.faq-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 18px; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--white); transition: background 0.15s; }
.faq-q:hover { background: var(--gray-50); }
.faq-q::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--coral); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 14px 18px 16px; font-size: 13px; color: var(--gray-700); line-height: 1.8; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .archive-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { display: none; }
  .hotel-card-full { flex-direction: column; }
  .hotel-img { width: 100%; min-width: unset; height: 180px; }
  .hotel-ranking-body { flex-direction: column; }
  .hotel-ranking-img { width: 100%; min-width: unset; }
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .sort-options { display: none; }
  .doc-wrap, .form-wrap { padding: 20px 16px; }
  .article-header { padding: 20px 16px 0; }
  .article-body { padding: 20px 16px; }
}
