    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      margin: 0;
      background: #f7f7f9;
      color: #333;
      line-height: 1.8;
    }
    header {
      background: #2c2255;
      color: #fff;
      padding: 1.5rem;
    }
    header h1 {
      margin: 0;
      font-size: 1.6rem;
    }



/* ===== レイアウト ===== */
.layout{
    display:flex;
    min-height:100vh;
}

/* ===== メイン ===== */
.content{
    flex:1;
    display:flex;
    flex-direction:column;
}

/* ===== サイドバー ===== */
.sidebar{
    width:260px;
    background: rgba(0,0,0,.06);
    border-right:1px solid var(--primary);
    padding:24px 16px;
}

.sidebar-title{
    font-size:1.2rem;
    margin-bottom:16px;
    color:var(--sub);
}

.sidebar-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu a{
    display:block;
    padding:12px 14px;
    border-radius:10px;
    text-decoration:none;
    color:var(--text);
    background:rgba(255,255,255,0.03);
    transition:all .25s;
}

.sidebar-menu a:hover{
    background:var(--card);
    transform:translateX(4px);
}
.menu-name{
    display:block;
    font-weight:600;
}

.menu-desc{
    display:block;
    font-size:.75rem;
    color:var(--muted);
}


    main {
      max-width: 960px;
      margin: auto;
      padding: 1.5rem;
      background: #fff;
    }
    section {
      margin-bottom: 3rem;
    }
    h2 {
      border-left: 6px solid #6b5cff;
      padding-left: 0.6rem;
    }
    ul {
      padding-left: 1.2rem;
    }
    code {
      background: #eee;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
    }


/* =========================
   Section-Box common
========================= */

.section-box {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-box > h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.section-box > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff5fa2, #5fd1ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =========================
   Site Map / Related Facilities
========================= */

.site-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.site-map .card {
  display: block;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.site-map .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,95,162,0.12),
    rgba(95,209,255,0.12)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-map .card:hover::before {
  opacity: 1;
}

.site-map .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.site-map .card h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #111827;
  position: relative;
  z-index: 1;
}

.site-map .card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  position: relative;
  z-index: 1;
}


    footer {
      text-align: center;
      padding: 1rem;
      background: #eee;
      font-size: 0.9rem;
    }


/* ===== レスポンシブ ===== */
@media (max-width:900px){
    .layout{
        flex-direction:column;
    }
    .sidebar{
        width:100%;
        border-right:none;
        border-bottom:1px solid #222;
    }
}