/**
 * motobucho main.css — ver03
 * All shared styles consolidated from HTML prototypes
 */

/* ===== Variables + Reset ===== */
:root {
  --deep:  #023E8A;
  --ocean: #0077B6;
  --sky:   #90E0EF;
  --coral: #FF6B6B;
  --gold:  #FFB703;
  --green: #52B788;
  --bg:    #F4F7FB;
  --text:  #1a1a2e;
  --muted: #6b7a8d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; }

/* ===== Body ===== */
body {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  max-width: 430px;
  margin: 0 auto;
}
body.home { background: #e8edf4; }

/* ===== Archive/detail page header ===== */
.hdr {
  background: var(--deep);
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}
/* CSS border arrow */
.hdr-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.hdr-back::before {
  content: '';
  display: block;
  width: 9px; height: 9px;
  border-left: 2.5px solid rgba(255,255,255,.9);
  border-bottom: 2.5px solid rgba(255,255,255,.9);
  transform: rotate(45deg) translateX(2px);
}
.hdr-title {
  color: #fff; font-size: 15px; font-weight: 700;
  flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-decoration: none;
}
/* contact/about/etc page body base */
.page-body { padding: 20px 16px; }

/* ===== TOP page header ===== */
.hdr.top-hdr {
  justify-content: space-between;
}
.logo {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
}
.logo-text { line-height: 1.2; }
.logo-text span { display: block; font-size: 9px; font-weight: 400; opacity: .6; letter-spacing: 2px; }
.hdr-right { display: flex; align-items: center; gap: 10px; }
/* サブページのロゴはモバイルでは非表示（hdr-back + hdr-titleを使う） */
.sub-hdr .logo { display: none; }
.hdr-search {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
}
.hdr-chat {
  background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 14px;
  cursor: pointer; border: none; font-family: inherit;
}

/* ===== Tab bar (TOP page) ===== */
.tab-bar {
  background: #fff;
  border-bottom: 0.5px solid #e0e8f0;
  position: sticky;
  top: 52px;
  z-index: 99;
}
.tabs { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  padding: 12px 14px;
  font-size: 12px; font-weight: 700;
  color: #888;
  border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  transition: all .15s;
  text-decoration: none;  /* a.tab 対応 */
}
.tab.on { color: var(--deep); border-bottom-color: var(--deep); }
.tab-icon { font-size: 14px; }

/* ===== Sub bar (TOP page tabs) ===== */
.sub-bar {
  background: #F8FAFF;
  border-bottom: 0.5px solid #e0e8f0;
  padding: 8px 16px;
  display: none;
  overflow-x: auto;
}
.sub-bar.show { display: flex; gap: 6px; }
.sub-bar::-webkit-scrollbar { display: none; }
.sub-chip {
  flex-shrink: 0; font-size: 11px;
  color: #185FA5; background: #E6F1FB;
  border: 0.5px solid #B5D4F4;
  padding: 5px 13px; border-radius: 20px; cursor: pointer;
}
.sub-chip.on { background: var(--deep); color: #fff; border-color: var(--deep); }

/* ===== Archive sub bar ===== */
.archive-subbar {
  background: #fff;
  border-bottom: 0.5px solid #e0e8f0;
  padding: 10px 16px;
  overflow-x: auto;
  display: flex;
  gap: 6px;
  position: sticky;
  top: 52px;
  z-index: 99;
}
.archive-subbar::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; font-size: 11px;
  color: #185FA5; background: #E6F1FB;
  border: 0.5px solid #B5D4F4;
  padding: 5px 14px; border-radius: 20px;
  cursor: pointer; transition: all .15s;
}
.chip.on { background: var(--deep); color: #fff; border-color: var(--deep); }

/* ===== TOP page feeds ===== */
.feed { padding: 14px 16px; display: none; background: var(--bg); min-height: 60vh; }
.feed.show { display: block; }

/* ===== Hero banner (TOP page) ===== */
.hero-banner {
  background:
    linear-gradient(135deg, rgba(2,62,138,.72), rgba(0,119,182,.58)),
    url('../img/fv-bg.jpg') center / cover no-repeat;
  border-radius: 0;
  padding: 28px 20px 24px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-banner::after {
  content: '本部町';
  position: absolute; right: -8px; top: 4px;
  font-size: 56px; font-weight: 900;
  color: rgba(255,255,255,.05);
  white-space: nowrap; pointer-events: none;
}
.hero-tag  { font-size: 9px; color: var(--sky); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.hero-ttl  { font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 12px; }
.hero-ttl em { font-style: normal; color: var(--gold); }
.hero-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.hero-chip {
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 11px; padding: 5px 12px; border-radius: 12px;
  cursor: pointer; border: 1px solid rgba(255,255,255,.25);
  transition: background .15s; text-decoration: none; display: inline-block;
}
.hero-chip:active { background: rgba(255,255,255,.28); }

/* ===== Section header ===== */
.sec-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sec-ttl  { font-size: 13px; font-weight: 700; color: var(--deep); display: flex; align-items: center; gap: 6px; }
.sec-ttl::before { content: ''; width: 3px; height: 15px; border-radius: 2px; background: var(--deep); display: block; }
.sec-more {
  font-size: 11px; font-weight: 700;
  color: var(--ocean); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 3px;
  padding: 5px 12px;
  border: 1.5px solid rgba(0,119,182,.35);
  border-radius: 20px;
  transition: background .18s, color .18s, border-color .18s;
}
.sec-mb   { margin-bottom: 22px; }

/* ===== Card grid (2-column) ===== */
.card-row,
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-grid { padding: 0 16px; margin-bottom: 14px; }

/* ===== Stay grid (2-column SP / 3-column PC) ===== */
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 12px; }

/* ===== Card ===== */
.card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 0.5px solid #e0e8f0; cursor: pointer;
  transition: transform .15s; text-decoration: none; display: block;
}
.card:active { transform: scale(.98); }
.card.pr { border: 1.5px solid #C8A800; background: #FFFEF5; }
.card-img {
  display: flex; align-items: flex-end; padding: 7px 8px;
  font-size: 10px; color: rgba(255,255,255,.9); position: relative;
  aspect-ratio: 4/3; width: 100%;
}
.pr-tag {
  position: absolute; top: 7px; left: 7px;
  background: rgba(200,168,0,.92); color: #4A3800;
  font-size: 9px; font-weight: 700; padding: 2px 9px; border-radius: 7px;
  white-space: nowrap;
}
.card-body  { padding: 9px 10px 10px; }
.card-cat   { font-size: 10px; color: var(--ocean); margin-bottom: 2px; }
.card-name  { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.4; }
.card-sub   { font-size: 10px; color: var(--muted); margin-top: 3px; }
.card-foot  { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.card-tag   { font-size: 9px; background: #E8F5E9; color: #2e7d32; padding: 2px 7px; border-radius: 7px; }
.card-time  { font-size: 9px; color: var(--muted); }

/* Archive card image sizes — aspect-ratio: 4/3 を継承 */

/* ===== Wide card (horizontal) ===== */
.card-wide {
  background: #fff; border-radius: 12px;
  border: 0.5px solid #e0e8f0; padding: 12px;
  display: flex; gap: 10px; align-items: center;
  cursor: pointer; transition: transform .15s; text-decoration: none;
}
.card-wide:active { transform: scale(.98); }
.card-wide.pr { border: 1.5px solid #C8A800; background: #FFFEF5; }
.cw-img  { width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cw-body { flex: 1; }
.cw-cat  { font-size: 10px; color: var(--ocean); margin-bottom: 2px; display: flex; align-items: center; gap: 4px; }
.cw-name { font-size: 13px; font-weight: 700; color: var(--text); }
.cw-sub  { font-size: 10px; color: var(--muted); margin-top: 2px; }
.pr-pill { font-size: 9px; background: #FFF0B0; color: #7A5800; padding: 1px 6px; border-radius: 6px; border: 0.5px solid #C8A800; }

/* ===== Event list (TOP preview) ===== */
.ev-list { display: flex; flex-direction: column; gap: 8px; }
.ev-card {
  background: #fff; border-radius: 10px;
  border: 0.5px solid #e0e8f0; padding: 12px;
  display: flex; gap: 10px; align-items: center; cursor: pointer;
  transition: transform .15s;
}
.ev-card:active { transform: scale(.98); }
.ev-date {
  background: var(--deep); color: #fff;
  border-radius: 8px; padding: 5px 8px;
  text-align: center; min-width: 40px; flex-shrink: 0;
}
.ev-date .m { font-size: 9px; opacity: .75; }
.ev-date .d { font-size: 19px; font-weight: 700; line-height: 1.1; }
.ev-body {}
.ev-ttl { font-size: 12px; font-weight: 700; color: var(--text); }
.ev-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }
.ev-tag { font-size: 9px; background: #E6F1FB; color: #185FA5; padding: 2px 7px; border-radius: 6px; margin-left: 5px; }

/* ===== Job card (TOP preview + archive) ===== */
.job-card {
  background: #fff; border-radius: 14px;
  border: 0.5px solid #e0e8f0; padding: 13px; cursor: pointer;
  transition: transform .15s;
}
.job-card:active { transform: scale(.98); }
.job-card.pr { border: 1.5px solid #C8A800; background: #FFFEF5; }
.job-top  { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 5px; }
.job-ttl  { font-size: 13px; font-weight: 700; color: var(--text); flex: 1; }
.job-type { font-size: 10px; background: #EDF4FF; color: #185FA5; padding: 3px 9px; border-radius: 8px; white-space: nowrap; flex-shrink: 0; }
.job-co   { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.job-pay  { font-size: 14px; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.job-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.job-tag  { font-size: 10px; padding: 3px 9px; border-radius: 8px; background: #E8F5E9; color: #2e7d32; }

/* ===== Stay card (archive) ===== */
.stay-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 0.5px solid #e0e8f0; cursor: pointer; transition: transform .15s;
}
.stay-card:active { transform: scale(.98); }
.stay-card.pr { border: 1.5px solid #C8A800; background: #FFFEF5; }
.stay-img  { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; background-size: cover; background-position: center; }
.stay-body { padding: 12px; }
.stay-name  { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; font-family: 'Shippori Mincho', serif; }
.stay-price { font-size: 13px; font-weight: 700; color: var(--deep); }
.stay-sub   { font-size: 10px; color: var(--muted); margin-top: 2px; }
.stay-type-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.45); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 8px;
}
.pr-badge-stay {
  position: absolute; top: 8px; right: 8px;
  background: rgba(200,168,0,.92); color: #4A3800;
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 7px;
}

/* ===== Life card (archive list) ===== */
.life-card {
  background: #fff; border-radius: 12px;
  border: 0.5px solid #e0e8f0; padding: 12px;
  display: flex; gap: 10px; align-items: center;
  cursor: pointer; transition: transform .15s;
  margin-bottom: 8px;
}
.life-card:active { transform: scale(.98); }
.life-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.life-body { flex: 1; }
.life-cat  { font-size: 10px; color: var(--ocean); margin-bottom: 2px; }
.life-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.life-sub  { font-size: 10px; color: var(--muted); }
.life-open { font-size: 10px; font-weight: 700; color: #2e7d32; background: #E8F5E9; padding: 2px 8px; border-radius: 7px; display: inline-block; margin-top: 3px; }
.life-arr  { font-size: 18px; color: var(--muted); flex-shrink: 0; }

/* Category section (life archive) */
.cat-section { margin-bottom: 20px; }
.cat-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cat-ttl { font-size: 13px; font-weight: 700; color: var(--deep); display: flex; align-items: center; gap: 7px; }
.cat-ttl::before { content: ''; width: 3px; height: 14px; border-radius: 2px; background: var(--deep); display: block; }
.cat-more { font-size: 11px; color: var(--ocean); cursor: pointer; }

/* ===== Sponsor banner ===== */
.sp-banner {
  border-radius: 14px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.sp-banner.navy  { background: var(--deep); margin: 0 16px; }
.sp-banner.teal  { background: #1B7A4A; }
.sp-bi   { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.sp-body { flex: 1; }
.sp-label { font-size: 9px; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .5px; margin-bottom: 3px; }
.sp-bd  { flex: 1; }
.sp-lbl { font-size: 9px; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .5px; margin-bottom: 3px; }
.sp-ttl { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.35; }
.sp-sub { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 2px; }
.sp-btn { background: rgba(255,255,255,.18); color: #fff; font-size: 10px; font-weight: 700; padding: 6px 11px; border-radius: 10px; white-space: nowrap; flex-shrink: 0; }

/* ===== Weather / info cards ===== */
.info-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.info-card  { background: #fff; border-radius: 12px; border: 0.5px solid #e0e8f0; padding: 13px; }
.info-ttl   { font-size: 11px; font-weight: 700; color: var(--deep); margin-bottom: 8px; }
.weather-big  { font-size: 30px; font-weight: 700; color: var(--deep); margin: 2px 0; }
.weather-desc { font-size: 11px; color: var(--muted); }
.weather-sub  { font-size: 10px; color: var(--muted); margin-top: 6px; padding-top: 6px; border-top: 0.5px solid #eef2f7; }
.tip-text { font-size: 11px; color: #444; line-height: 1.7; }

/* ===== Notice ===== */
.notice-card { background: #fff; border-radius: 12px; border: 0.5px solid #e0e8f0; overflow: hidden; }
.notice-item { display: flex; gap: 10px; padding: 10px 13px; border-bottom: 0.5px solid #f0f4f8; font-size: 11px; color: var(--text); }
.notice-item:last-child { border: none; }
.notice-date { color: var(--muted); font-size: 10px; white-space: nowrap; padding-top: 1px; flex-shrink: 0; }

/* ===== CTA (TOP page) ===== */
.cta-wrap  {
  background: var(--coral);
  padding: 26px 16px;
  text-align: center;
  margin: 10vh 0 0;
}
.cta-ttl   { font-family: 'Shippori Mincho', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-sub   { font-size: 12px; color: rgba(255,255,255,.85); margin-bottom: 18px; line-height: 1.8; }
.cta-btn   { display: inline-block; background: #fff; color: var(--coral); font-size: 13px; font-weight: 700; padding: 12px 30px; border-radius: 24px; cursor: pointer; text-decoration: none; }

/* ===== Sponsor section (TOP page) ===== */
.sponsor-wrap  { background: var(--deep); padding: 26px 16px; margin: 0 -16px; }
.sp-sec-tag    { text-align: center; font-size: 9px; color: var(--sky); font-weight: 700; letter-spacing: 1px; margin-bottom: 5px; }
.sp-sec-ttl    { font-family: 'Shippori Mincho', serif; text-align: center; font-size: 16px; color: #fff; margin-bottom: 18px; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 12px; }
.sp-card { background: rgba(255,255,255,.07); border: 1px solid rgba(144,224,239,.2); border-radius: 11px; padding: 13px 10px; text-align: center; cursor: pointer; }
.sp-card.gold { border-color: rgba(200,168,0,.5); background: rgba(255,240,100,.05); }
.sp-icon { font-size: 24px; margin-bottom: 6px; }
.sp-name { font-size: 11px; font-weight: 700; color: #fff; }
.sp-cat  { font-size: 10px; color: var(--sky); margin-top: 2px; }
.sp-gold { font-size: 9px; color: #C8A800; font-weight: 700; margin-top: 3px; }
.sp-slot { background: rgba(255,255,255,.05); border: 1px dashed rgba(144,224,239,.25); border-radius: 10px; padding: 14px; text-align: center; }
.sp-slot strong { display: block; font-size: 12px; color: #fff; margin-bottom: 3px; }
.sp-slot p { font-size: 10px; color: var(--sky); }

/* ===== List info bar ===== */
.list-info  { padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; }
.list-count { font-size: 11px; color: var(--muted); }
.list-sort  { font-size: 11px; color: var(--ocean); cursor: pointer; }
.list-body  { padding: 0 16px 16px; }

/* ===== Timeline (events archive) ===== */
.tl-group    { margin-bottom: 6px; }
.tl-date-hdr { display: flex; align-items: center; gap: 10px; padding: 14px 16px 8px; }
.tl-date-box {
  background: var(--deep); border-radius: 10px;
  padding: 5px 10px; text-align: center; min-width: 46px; flex-shrink: 0;
}
.tl-date-box .m,  .tl-date-box .tl-month { font-size: 9px;  color: rgba(255,255,255,.7); display: block; }
.tl-date-box .d,  .tl-date-box .tl-day   { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.1; display: block; }
.tl-date-box .wd, .tl-date-box .tl-wd    { font-size: 10px; color: rgba(255,255,255,.8); display: block; }
.tl-line { flex: 1; height: 0.5px; background: #e0e8f0; }
.tl-card {
  background: #fff; border-radius: 12px;
  border: 0.5px solid #e0e8f0;
  margin: 0 16px 8px;
  display: flex; gap: 10px; align-items: center;
  padding: 10px; cursor: pointer;
  transition: transform .15s;
}
.tl-card:active { transform: scale(.98); }
.tl-card.pr       { border: 1.5px solid #C8A800; background: #FFFEF5; }
.tl-card.featured { border: 1.5px solid var(--coral); background: #FFF8F8; }
.tl-thumb {
  width: 68px; height: 68px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  background-size: cover; background-position: center;
}
.tl-info { flex: 1; min-width: 0; }
.tl-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 4px; }
.tl-tag  { font-size: 9px; background: #E6F1FB; color: #185FA5; padding: 2px 7px; border-radius: 6px; }
.tl-ttl  { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 3px; }
.tl-sub  { font-size: 10px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== Detail hero ===== */
.hero {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative;
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.5)); }
.hero-label   { position: absolute; bottom: 12px; left: 14px; background: rgba(0,0,0,.5); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; }
.photo-count  { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.5); color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 8px; }

/* ===== Thumb strip ===== */
.thumb-strip { display: flex; gap: 4px; padding: 5px 12px; background: #fff; overflow-x: auto; }
.thumb-strip::-webkit-scrollbar { display: none; }
.thumb { width: 56px; height: 56px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; border: 2px solid transparent; background-size: cover; background-position: center; }
.thumb.on { border-color: var(--ocean); }

/* ===== Detail body ===== */
.dbody { padding: 16px; background: transparent; }
.body  { padding: 20px 16px 40px; }
.sh-body { padding: 0 16px 32px; }  /* 詳細ページ共通コンテナ（SP: 左右 16px） */

/* ===== Detail info sections ===== */
.sec {
  background: #fff; border-radius: 14px;
  border: 0.5px solid #e0e8f0; padding: 14px; margin-bottom: 12px;
}
.sec .sec-ttl {
  font-size: 12px; font-weight: 700; color: var(--deep);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.sec .sec-ttl::before { content: ''; width: 3px; height: 13px; border-radius: 2px; background: var(--deep); display: block; }

/* ===== Info list ===== */
.info-list { display: flex; flex-direction: column; }
.info-item { display: flex; gap: 10px; padding: 9px 0; border-bottom: 0.5px solid #f0f4f8; align-items: flex-start; }
.info-item:last-child { border: none; padding-bottom: 0; }
.ii-icon { font-size: 14px; width: 20px; text-align: center; flex-shrink: 0; margin-top: 1px; }
.ii-lbl  { font-size: 11px; color: var(--muted); width: 58px; flex-shrink: 0; margin-top: 1px; }
.ii-val  { font-size: 12px; color: var(--text); flex: 1; line-height: 1.6; }
.ii-val a { color: var(--ocean); }
.open-now { display: inline-block; background: #E8F5E9; color: #2e7d32; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 8px; margin-left: 5px; }

/* Info row (about page) */
.info-row-a { display: flex; gap: 10px; padding: 8px 0; border-bottom: 0.5px solid #f0f4f8; align-items: flex-start; }
.info-row-a:last-child { border: none; padding-bottom: 0; }
.ir-lbl { font-size: 11px; color: var(--muted); width: 72px; flex-shrink: 0; margin-top: 1px; }
.ir-val { font-size: 12px; color: var(--text); flex: 1; line-height: 1.7; }

/* ===== Action grid ===== */
.action-grid   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.action-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.act-btn { background: #fff; border: 0.5px solid #e0e8f0; border-radius: 12px; padding: 12px 6px; text-align: center; cursor: pointer; }
.act-btn.primary       { background: var(--ocean); border-color: var(--ocean); }
.act-btn.primary-coral { background: var(--coral); border-color: var(--coral); }
.act-icon { font-size: 20px; margin-bottom: 4px; }
.act-lbl  { font-size: 10px; font-weight: 700; color: var(--deep); }
.act-btn.primary .act-lbl,
.act-btn.primary-coral .act-lbl { color: #fff; }
.act-btn-full {
  display: block; background: var(--ocean); color: #fff;
  text-align: center; border-radius: 12px; padding: 14px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; margin-bottom: 12px;
}

/* ===== Map box ===== */
.map-box { background: linear-gradient(135deg, #deeeff, #c8e0ff); border-radius: 10px; height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; margin-top: 4px; }
.map-box p    { font-size: 12px; color: var(--ocean); font-weight: 700; }
.map-box span { font-size: 10px; color: var(--muted); }

/* ===== Comment box ===== */
.comment-box { background: #F8FAFF; border-radius: 10px; padding: 12px; display: flex; gap: 10px; }
.c-av   { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #FFD166, #EF8C4B); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.c-who  { font-size: 10px; font-weight: 700; color: var(--deep); margin-bottom: 4px; }
.c-text { font-size: 12px; color: #333; line-height: 1.7; }

/* ===== Tag cloud ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud span { font-size: 11px; background: #F4F7FB; color: var(--ocean); border: 0.5px solid #c0d4e8; padding: 5px 12px; border-radius: 16px; cursor: pointer; }

/* ===== Nearby list ===== */
.nearby-list { display: flex; flex-direction: column; gap: 10px; }
.nearby-row  { display: flex; gap: 10px; align-items: center; cursor: pointer; }
.nearby-img  { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.nearby-cat  { font-size: 10px; color: var(--ocean); }
.nearby-name { font-size: 12px; font-weight: 700; color: var(--text); }
.nearby-dist { font-size: 10px; color: var(--muted); margin-top: 1px; }
.nearby-arr  { font-size: 18px; color: var(--muted); margin-left: auto; }

/* ===== Google review button ===== */
.google-review-btn { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #4285F4; border-radius: 12px; padding: 12px 16px; cursor: pointer; width: 100%; margin-bottom: 12px; transition: background .15s; }
.google-review-btn:hover { background: #F0F4FF; }
.google-review-btn .g-icon { width: 28px; height: 28px; flex-shrink: 0; }
.google-review-btn .g-body { flex: 1; }
.google-review-btn .g-ttl  { font-size: 13px; font-weight: 700; color: var(--text); }
.google-review-btn .g-sub  { font-size: 10px; color: var(--muted); margin-top: 1px; }
.google-review-btn .g-arr  { font-size: 16px; color: #4285F4; }

/* ===== Shop detail ===== */
.shop-meta  { margin-bottom: 14px; }
.shop-tags  { display: flex; gap: 6px; margin-bottom: 7px; flex-wrap: wrap; }
.shop-tag   { font-size: 10px; color: var(--ocean); background: #E6F1FB; border: 0.5px solid #B5D4F4; padding: 2px 8px; border-radius: 8px; }
.shop-name  { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 4px; font-family: 'Shippori Mincho', serif; }
.shop-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.stars      { color: #FFB703; font-size: 14px; }
.rating-num { font-size: 15px; font-weight: 700; color: var(--deep); }
.shop-catch { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ===== Spot detail ===== */
.spot-meta  { margin-bottom: 14px; }
.spot-tags  { display: flex; gap: 6px; margin-bottom: 7px; flex-wrap: wrap; }
.spot-tag   { font-size: 10px; color: var(--ocean); background: #E6F1FB; border: 0.5px solid #B5D4F4; padding: 2px 8px; border-radius: 8px; }
.spot-name  { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; font-family: 'Shippori Mincho', serif; }
.spot-catch { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ===== Stay detail ===== */
.d-name      { font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.d-price-big { font-size: 22px; font-weight: 700; color: var(--deep); }
.d-price-sub { font-size: 11px; color: var(--muted); }
.d-catch     { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ===== Event detail ===== */
.ev-hero  { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; background-size: cover; background-position: center; }
.ev-meta  { margin-bottom: 14px; }
.ev-ttl-d { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.ev-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.ev-chip  { font-size: 10px; color: var(--ocean); background: #E6F1FB; border: 0.5px solid #B5D4F4; padding: 2px 8px; border-radius: 8px; }

/* ===== Job detail ===== */
.job-meta { background: var(--deep); padding: 16px; margin-bottom: 12px; }
.jd-ttl   { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.jd-pay   { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.jd-type  { font-size: 11px; background: rgba(255,255,255,.15); color: #fff; padding: 3px 10px; border-radius: 8px; display: inline-block; }

/* ===== Life detail ===== */
.life-d-hero  { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.life-d-meta  { margin-bottom: 14px; }
.life-d-tags  { display: flex; gap: 6px; margin-bottom: 7px; flex-wrap: wrap; }
.life-d-tag   { font-size: 10px; color: var(--ocean); background: #E6F1FB; border: 0.5px solid #B5D4F4; padding: 2px 8px; border-radius: 8px; }
.life-d-name  { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.life-d-catch { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ===== About page ===== */
.about-hero { background: linear-gradient(135deg, var(--deep), var(--ocean)); padding: 32px 20px; text-align: center; }
.about-hero-logo { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--ocean)); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 14px; }
.about-hero-name { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.about-hero-sub  { font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: 1px; }
.profile-card { background: var(--bg); border-radius: 10px; padding: 14px; display: flex; gap: 12px; align-items: flex-start; }
.profile-av   { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #FFD166, #EF8C4B); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.p-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.p-role { font-size: 11px; color: var(--ocean); margin-bottom: 6px; }
.p-desc { font-size: 12px; color: #444; line-height: 1.8; }
.mission-box { background: linear-gradient(135deg, var(--deep), var(--ocean)); border-radius: 12px; padding: 16px; text-align: center; }
.mission-box p     { font-family: 'Shippori Mincho', serif; font-size: 15px; color: #fff; line-height: 1.9; }
.mission-box .m-sub { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 8px; }
.sns-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sns-btn { display: flex; align-items: center; gap: 6px; background: var(--bg); border: 0.5px solid #e0e8f0; border-radius: 10px; padding: 8px 14px; font-size: 12px; color: #444; cursor: pointer; font-weight: 700; }
.contact-btn-a { display: block; background: var(--coral); color: #fff; text-align: center; border-radius: 14px; padding: 14px; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; margin-top: 4px; }

/* ===== Privacy page ===== */
.page-ttl  { font-size: 18px; font-weight: 700; color: var(--deep); margin-bottom: 4px; }
.page-date { font-size: 11px; color: var(--muted); margin-bottom: 24px; }
.policy-sec    { margin-bottom: 24px; }
.policy-sec h2 { font-size: 14px; font-weight: 700; color: var(--deep); margin-bottom: 8px; padding-left: 10px; border-left: 3px solid var(--ocean); }
.policy-sec p  { font-size: 12px; color: #333; line-height: 1.9; margin-bottom: 8px; }
.policy-sec ul { font-size: 12px; color: #333; line-height: 1.9; padding-left: 20px; }
.policy-sec ul li { margin-bottom: 4px; }
.contact-link  { color: var(--ocean); }

/* ===== Contact page ===== */
.contact-types { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.ct-btn    { background: #fff; border: 0.5px solid #e0e8f0; border-radius: 12px; padding: 14px 10px; text-align: center; cursor: pointer; transition: all .15s; }
.ct-btn.on { border: 2px solid var(--ocean); background: #E6F1FB; }
.ct-icon { font-size: 22px; margin-bottom: 6px; }
.ct-lbl  { font-size: 12px; font-weight: 700; color: var(--text); }
.ct-sub  { font-size: 10px; color: var(--muted); margin-top: 2px; }
.form-sec { background: #fff; border-radius: 14px; border: 0.5px solid #e0e8f0; padding: 16px; margin-bottom: 12px; }
.form-sec h2 { font-size: 13px; font-weight: 700; color: var(--deep); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.form-sec h2::before { content: ''; width: 3px; height: 13px; border-radius: 2px; background: var(--deep); display: block; }
.form-group   { margin-bottom: 14px; }
.form-label   { font-size: 12px; font-weight: 700; color: #333; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.required     { font-size: 10px; background: #FFEBEE; color: #c62828; padding: 1px 6px; border-radius: 5px; }
.optional     { font-size: 10px; background: #F4F7FB; color: var(--muted); padding: 1px 6px; border-radius: 5px; }
.form-input   { width: 100%; border: 1.5px solid #dde3ee; border-radius: 10px; padding: 11px 14px; font-size: 13px; font-family: inherit; outline: none; transition: border-color .15s; }
.form-input:focus  { border-color: var(--ocean); }
.form-input.error  { border-color: #c62828; }
.form-textarea     { width: 100%; border: 1.5px solid #dde3ee; border-radius: 10px; padding: 11px 14px; font-size: 13px; font-family: inherit; outline: none; resize: vertical; min-height: 120px; transition: border-color .15s; }
.form-textarea:focus { border-color: var(--ocean); }
.error-msg    { font-size: 11px; color: #c62828; margin-top: 4px; display: none; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; background: var(--bg); border-radius: 10px; padding: 12px; margin-bottom: 16px; }
.privacy-check input  { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.privacy-check label  { font-size: 12px; color: #444; line-height: 1.7; cursor: pointer; }
.privacy-check a      { color: var(--ocean); }
.submit-btn { width: 100%; background: var(--coral); color: #fff; border: none; border-radius: 14px; padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity .15s; }
.submit-btn:hover    { opacity: .9; }
.submit-btn:disabled { opacity: .5; cursor: not-allowed; }
.note-box { background: var(--bg); border-radius: 10px; padding: 12px; margin-bottom: 12px; }
.note-box p { font-size: 11px; color: var(--muted); line-height: 1.8; }
.note-box p::before { content: '※ '; }
.success-box { display: none; background: #E8F5E9; border: 1px solid #4CAF50; border-radius: 14px; padding: 20px; text-align: center; margin-bottom: 16px; }
.success-box .s-icon { font-size: 36px; margin-bottom: 10px; }
.success-box h3 { font-size: 15px; font-weight: 700; color: #2e7d32; margin-bottom: 6px; }
.success-box p  { font-size: 12px; color: #444; line-height: 1.7; }
.line-cta  { background: linear-gradient(135deg, #06C755, #00a041); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; margin-bottom: 20px; }
.line-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.line-body { flex: 1; }
.line-ttl  { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.line-sub  { font-size: 11px; color: rgba(255,255,255,.8); }
.line-arr  { font-size: 18px; color: rgba(255,255,255,.7); }

/* ===== Load more ===== */
.load-more {
  display: block; background: #fff;
  border: 1.5px solid var(--ocean); color: var(--ocean);
  text-align: center; border-radius: 12px;
  padding: 12px; font-size: 13px; font-weight: 700;
  cursor: pointer; margin: 0 16px 24px;
}

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 16px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  border: 0.5px solid #e0e8f0; color: var(--ocean); background: #fff;
}
.pagination .page-numbers.current { background: var(--deep); color: #fff; border-color: var(--deep); }
.pagination .page-numbers.dots    { border: none; background: none; color: var(--muted); }

/* ===== TOP footer (.footer) ===== */
.footer {
  background: #011F4B;
  padding: 26px 16px 20px;
}
/* Archive/detail footer (.site-footer) */
.site-footer {
  background: #011F4B;
  padding: 24px 16px 20px;
  margin-top: 8px;
}
.ft-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer .ft-logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
}
.footer .ft-logo-name { color: #fff; font-size: 15px; font-weight: 700; }
.site-footer .ft-logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
}
.site-footer .ft-logo-name { color: #fff; font-size: 14px; font-weight: 700; }
.ft-logo-sub { font-size: 9px; color: rgba(255,255,255,.4); display: block; margin-top: 1px; letter-spacing: 1px; }
.ft-desc     { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.8; }
.footer .ft-desc { margin-bottom: 22px; }
.site-footer .ft-desc { margin-bottom: 18px; }
.ft-grid     { display: grid; grid-template-columns: 1fr 1fr; }
.footer .ft-grid      { gap: 18px; margin-bottom: 22px; }
.site-footer .ft-grid { gap: 14px; margin-bottom: 18px; }
.ft-col h4   { font-size: 10px; font-weight: 700; color: var(--sky); letter-spacing: .5px; }
.footer .ft-col h4      { margin-bottom: 10px; }
.site-footer .ft-col h4 { margin-bottom: 9px; }
.ft-col a    { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-decoration: none; cursor: pointer; transition: color .15s; }
.footer .ft-col a      { margin-bottom: 8px; }
.site-footer .ft-col a { margin-bottom: 7px; }
.ft-col a:hover { color: rgba(255,255,255,.8); }
.ft-sns     { display: flex; gap: 8px; margin-bottom: 22px; }
.ft-sns-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: background .15s; }
.ft-sns-btn:hover { background: rgba(255,255,255,.2); }
.ft-divider { height: 0.5px; background: rgba(255,255,255,.1); margin-bottom: 12px; }
.ft-copy    { font-size: 10px; color: rgba(255,255,255,.28); }
.ft-made    { font-size: 10px; color: rgba(255,255,255,.2); margin-top: 3px; }

/* =====================================================
   PC header nav (default: hidden on mobile)
   ===================================================== */
.hdr-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.hdr-nav { display: none; }

/* =====================================================
   PC overrides  @media (min-width: 1200px)
   ===================================================== */
@media (min-width: 1200px) {

  /* header: full-width / inner centered */
  .hdr { padding: 0; max-width: none; }
  .hdr-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    height: 52px;
    justify-content: flex-start;
  }

  /* nav links */
  .hdr-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 1;
    margin-left: 16px;
  }
  .hdr-nav a {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    position: relative;
    white-space: nowrap;
    transition: color .2s;
  }
  /* スライドアンダーライン */
  .hdr-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px; right: 12px;
    height: 2px;
    background: #90E0EF;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
  }
  .hdr-nav a.current         { color: #fff; }
  .hdr-nav a.current::after  { transform: scaleX(1); }

  /* hdr-right は PC では不要（チャットはサイドバー・ナビでカバー） */
  .hdr-right { display: none; }

  /* Card grid: 3 columns at PC */
  .card-grid,
  .stay-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── ヒーロー: PC全幅メインビジュアル（pc-wrapの外→自然に全幅） ── */
  .hero-banner {
    border-radius: 0;
    margin-bottom: 0;
    min-height: 380px;
    padding-top:    80px;
    padding-bottom: 72px;
    padding-left:  max(28px, calc((100vw - 1280px) / 2 + 28px));
    padding-right: max(28px, calc((100vw - 1280px) / 2 + 28px));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-banner::after { font-size: 200px; top: 20px; }

  /* サブページヘッダー: PC ではタイトル・戻るボタンを非表示、ロゴを表示 */
  .sub-hdr .hdr-title { display: none; }
  .sub-hdr .hdr-back  { display: none; }
  .sub-hdr .logo      { display: flex; }
}

/* =====================================================
   フォントサイズ底上げ（全デバイス共通）
   最小 12px ／ 通常テキスト(p等) 15px
   ===================================================== */

/* ─ 通常テキスト */
p                       { font-size: 15px; line-height: 1.9; }
li                      { font-size: 15px; line-height: 1.9; }

/* ─ カード系 */
.card-name              { font-size: 13px; }
.cw-name                { font-size: 14px; }
.card-cat, .cw-cat,
.card-sub, .cw-sub      { font-size: 12px; }

/* ─ イベント・タイムライン */
.ev-ttl, .tl-ttl        { font-size: 14px; }
.ev-sub, .tl-sub        { font-size: 12px; }

/* ─ 求人・宿泊・暮らし */
.job-ttl                { font-size: 14px; }
.job-co                 { font-size: 12px; }
.stay-name, .stay-price { font-size: 14px; }
.stay-sub               { font-size: 12px; }
.life-name              { font-size: 14px; }
.life-cat, .life-sub    { font-size: 12px; }

/* ─ 詳細ページ */
.ii-lbl                 { font-size: 12px; }
.ii-val                 { font-size: 13px; }
.c-text                 { font-size: 13px; }
.nearby-name            { font-size: 13px; }
.nearby-cat             { font-size: 12px; }
.tag-cloud span         { font-size: 12px; }

/* ─ セクションヘッダー */
.sec-ttl                { font-size: 14px; }
.sec .sec-ttl           { font-size: 13px; }

/* ─ 固定ページ */
.page-ttl               { font-size: 20px; }
.page-body p,
.page-body li           { font-size: 15px; line-height: 1.9; }
.page-body h2           { font-size: 16px; }

/* ─ チップ */
.chip, .sub-chip        { font-size: 12px; }

/* ─────────────────────────────────────────────────
   最小 12px — 元 9px・10px・11px のラベル・バッジ類
   ───────────────────────────────────────────────── */

/* タグ・バッジ */
.pr-tag                           { font-size: 12px; }
.card-tag, .card-time             { font-size: 12px; }
.ev-tag, .ev-chip                 { font-size: 12px; }
.pr-pill                          { font-size: 12px; }
.job-type, .job-tag               { font-size: 12px; }
.tl-tag                           { font-size: 12px; }
.tl-date-box .m,  .tl-date-box .tl-month,
.tl-date-box .wd, .tl-date-box .tl-wd    { font-size: 12px; }
.stay-type-badge, .pr-badge-stay  { font-size: 12px; }
.open-now, .closed-now, .life-open { font-size: 12px; }
.shop-tag, .spot-tag, .life-d-tag { font-size: 12px; }
.shop-tags-row .shop-tag          { font-size: 12px; }

/* ヒーロー・ラベル */
.hero-tag                         { font-size: 12px; }
.hero-chip                        { font-size: 12px; }
.hero-label                       { font-size: 12px; }

/* スポンサー */
.sp-label, .sp-lbl                { font-size: 12px; }
.sp-cat, .sp-gold                 { font-size: 12px; }
.sp-name                          { font-size: 12px; }
.sp-sec-tag                       { font-size: 12px; }
.sp-slot p                        { font-size: 12px; }

/* 情報 */
.info-ttl                         { font-size: 12px; }
.notice-date                      { font-size: 12px; }
.list-count, .list-sort           { font-size: 12px; }
.about-hero-sub                   { font-size: 12px; }
.sec-more                         { font-size: 12px; }

/* フォーム */
.form-label                       { font-size: 13px; }

/* フッター（著作権行のみ例外で 11px） */
.ft-col h4                        { font-size: 12px; }
.ft-col a                         { font-size: 12px; }
.ft-copy, .ft-made                { font-size: 11px; }
/* ロゴサブテキスト（デザイン上 11px を維持） */
.logo-text span                   { font-size: 11px; }

/* =====================================================
   Transition 整備（hover で動かすプロパティを追加）
   ===================================================== */
.card, .card-wide {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ev-card, .life-card {
  transition: background .18s, border-color .18s, transform .18s ease;
}
.job-card, .tl-card {
  transition: border-color .18s, box-shadow .18s, transform .18s ease;
}
.notice-item   { transition: background .15s; }
.chip, .sub-chip { transition: background .15s, color .15s, border-color .15s; }
.ft-sns-btn    { transition: background .15s, transform .15s; }
.tag-cloud span { transition: background .15s, border-color .15s, color .15s; }

/* =====================================================
   Hover effects — ポインターデバイス専用（タッチ端末はホバーなし）
   ===================================================== */
@media (hover: hover) and (pointer: fine) {

  /* ─ グリッドカード */
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,119,182,.14);
    border-color: #b5d4f4;
  }
  .card-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.09);
    border-color: #b5d4f4;
  }

  /* ─ リスト型カード */
  .ev-card:hover,
  .life-card:hover {
    background: #F0F7FF;
    border-color: #b5d4f4;
    transform: translateX(5px);
  }
  .job-card:hover {
    border-color: var(--ocean);
    box-shadow: 0 4px 16px rgba(0,119,182,.12);
    transform: translateX(3px);
  }
  .tl-card:hover {
    border-color: #b5d4f4;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    transform: translateX(3px);
  }
  .stay-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,.1);
  }
  .nearby-row:hover { opacity: .85; }
  .nearby-row:hover .nearby-name { color: var(--ocean); }

  /* ─ ナビ hdr-nav（アンダーライン拡張） */
  .hdr-nav a:hover              { color: #fff; }
  .hdr-nav a:hover::after       { transform: scaleX(1); }

  /* ─ テキストリンク（本文・詳細内） */
  .page-body a:hover,
  .sec a:hover                  { text-decoration: underline; opacity: .8; }
  .about-table a:hover          { opacity: .75; }

  /* ─ チップ・タグ */
  .hero-chip:hover              { background: rgba(255,255,255,.28); }
  .sec-more:hover               { background: var(--ocean); color: #fff; border-color: var(--ocean); }
  .chip:hover, .sub-chip:hover  { background: var(--deep); color: #fff; border-color: var(--deep); }
  .tag-cloud span:hover         { background: #E6F1FB; border-color: var(--ocean); color: var(--deep); }

  /* ─ お知らせ */
  .notice-item:hover            { background: #F8FAFF; }

  /* ─ フッター */
  .ft-sns-btn:hover             { background: rgba(255,255,255,.22); transform: scale(1.1); }

  /* ─ アクションボタン */
  .act-btn:hover:not([style*="opacity"]) {
    background: #E6F1FB;
    border-color: #b5d4f4;
  }
}
