﻿@charset "UTF-8";

/* =========================
  SHIKOKU pages only
  Target:
    /denki/shikoku/index.html
    /denki/shikoku/outline.html
    /denki/shikoku/events.html
========================= */

/* =========================================================
  SHIKOKU TOP
========================================================= */

.neaSk-section{ padding:22px 0 44px; }

.neaSk-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

/* TOPカードは「カード＋hover＋2カラム」を持つので固有に残す */
.neaSk-card{
  padding:18px;                 /* .nea-cardPad と統一してもOK */
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:14px;
  align-items:start;
  transition: transform .06s ease, border-color .15s ease, box-shadow .15s ease;
}

.neaSk-card:hover{
  border-color: rgba(39,89,180,.35);
  box-shadow: 0 12px 28px rgba(39,89,180,.12);
  transform: translateY(-1px);
}

.neaSk-card__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(39,89,180,.08);
  border:1px solid rgba(39,89,180,.20);
}

.neaSk-card__icon i{
  font-size:18px;
  color: var(--nea-primary);
}

.neaSk-card__body{ min-width:0; }

.neaSk-card__desc{
  margin:0;
  font-size:14px;
  font-weight:600;
  color:var(--nea-muted);
  line-height:1.85;
}

.neaSk-card__more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:900;
  color:var(--nea-primary-700);
}

.neaSk-card__more i{
  width:16px;
  text-align:center;
  color:var(--nea-primary);
}

@media (max-width: 820px){
  .neaSk-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
  OUTLINE
========================================================= */


/* outlineは「dl・stats・図」など固有UIだけ残す */
.neaOl-dl{ margin:0; }

.neaOl-dl__row{
  display:grid;
  grid-template-columns: 141px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed rgba(15,23,42,.10);
}
.neaOl-dl__row:last-child{ border-bottom:none; }

.neaOl-dl dt{
  font-size:13px;
  font-weight:900;
  color:var(--nea-muted);
}
.neaOl-dl dd{
  margin:0;
  font-size:14px;
  font-weight:700;
  color:var(--nea-text);
  line-height:1.8;
}

/* 会員数 */
.neaOl-stats{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.neaOl-stat{
  border:1px solid var(--nea-border);
  border-radius:14px;
  background:#fff;
  padding:12px 12px;
}
.neaOl-stat__label{
  font-size:12px;
  font-weight:900;
  color:var(--nea-muted);
  margin-bottom:6px;
}
.neaOl-stat__value{
  font-size:16px;
  font-weight:900;
  color:var(--nea-text);
}

@media (max-width: 720px){
  .neaOl-dl__row{ grid-template-columns: 1fr; }
  .neaOl-stats{ grid-template-columns: 1fr; }
}

.map {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;   /* PC用の保険 */
}

@media (max-width: 768px) {
  .map {
    min-height: 150px; /* スマホ */
  }
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

