:root{
  --text:#111;
  --muted:#666;
  --line:#eaeaea;
  --bg:#fff;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}

.mag-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.mag-header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.mag-logo{
  text-decoration:none;
  color:var(--text);
  font-weight:650;
  letter-spacing:0.2px;
}
.mag-nav a{
  text-decoration:none;
  color:var(--muted);
  margin-left:16px;
  font-size:0.95rem;
}
.mag-tools-link{
  color:var(--text) !important;
  border:1px solid var(--text);
  padding:6px 10px;
}

.mag-main{
  max-width:1100px;
  margin:0 auto;
  padding:28px 16px 60px;
}

.mag-hero h1{
  margin:0;
  font-size:2.2rem;
  letter-spacing:-0.5px;
}
.mag-subtitle{
  margin:8px 0 0;
  color:var(--muted);
}

.mag-controls{ margin-top:18px; }
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag-chip{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--line);
  padding:6px 10px;
  font-size:0.85rem;
}
.tag-chip.active{
  border-color:var(--text);
}

.ad-slot{
  border:1px dashed var(--line);
  padding:18px;
  margin:22px 0;
  color:var(--muted);
  font-size:0.85rem;
}

.mag-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}
.mag-card{
  border:1px solid var(--line);
  background:#fff;
}
.mag-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.mag-thumb{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-bottom:1px solid var(--line);
}
.mag-card-body{ padding:14px; }
.mag-meta{ color:var(--muted); font-size:0.85rem; }
.mag-title{ margin:6px 0 0; font-size:1.1rem; line-height:1.35; }
.mag-excerpt{ margin:8px 0 0; color:var(--muted); font-size:0.95rem; }
.mag-tags{ margin-top:10px; display:flex; flex-wrap:wrap; gap:6px; }
.mag-tag{
  border:1px solid var(--text);
  padding:2px 7px;
  font-size:0.75rem;
}

.mag-pagination{
  margin-top:26px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  color:var(--muted);
}
.mag-page{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--line);
  padding:6px 10px;
}

.mag-article{
  max-width:820px;
  margin:0 auto;
}
.mag-article-header{
  margin-bottom:16px;
}
.mag-article-meta{
  color:var(--muted);
  font-size:0.9rem;
  display:flex;
  align-items:center;
  gap:10px;
}
.mag-dot{ opacity:0.6; }
.mag-article-title{
  margin:10px 0 0;
  font-size:2.0rem;
  letter-spacing:-0.6px;
  line-height:1.2;
}
.mag-article-lead{
  margin:12px 0 0;
  color:var(--muted);
  font-size:1.05rem;
}

.mag-tag-link{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--text);
  padding:2px 7px;
  font-size:0.78rem;
}

.mag-figure{ margin:18px 0; }

/* ===== Hero Image Fix ===== */

.mag-hero-img {
    margin: 30px 0;
    overflow: hidden;
}

.mag-hero-img img {
    width: 100%;
    height: 420px;          /* PC高さ */
    object-fit: cover;      /* 中央トリミング */
    object-position: center;
    display: block;
}

.mag-hero-img figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

/* スマホ */
@media (max-width: 768px) {
    .mag-hero-img img {
        height: 260px;
    }
}

figcaption{
  margin-top:8px;
  color:var(--muted);
  font-size:0.9rem;
}

.mag-article-body p{ margin: 14px 0; }
.mag-article-body h2{
  margin:26px 0 8px;
  font-size:1.35rem;
}
.mag-article-body code{
  border:1px solid var(--line);
  padding:2px 6px;
  font-size:0.95rem;
}
.mag-article-footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.mag-footer{
  border-top:1px solid var(--line);
  padding:26px 0;
}
.mag-footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:0.9rem;
}
.mag-footer-links a{
  margin-left:14px;
  text-decoration:none;
  color:var(--muted);
}
.mag-inline-img {
    width: 100%;
    max-width: 760px;
    margin: 28px auto;
    display: block;
    border: 1px solid #eaeaea;
}



/* ===== Cookie Banner ===== */

#cookie-banner{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  padding: 24px;
}

.cookie-card{
  width: min(640px, 100%);
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.cookie-card p{
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-size: 16px;
}

.cookie-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-actions button{
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary{
  background: #fff;
  color: #111;
}






/* MAGAZINE */
.mag-hero{
  padding: 8px 0 6px;
}

.mag-hero-copy{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mag-copy-en{
  margin:0;
  font-family:"Times New Roman","Georgia",serif;
  font-size:1.22rem;
  line-height:1.75;
  font-weight:600;
  letter-spacing:0.04em;
  color:#000000;
}

.mag-copy-ja{
  margin:10px 0 0;
  font-family:"Yu Mincho","Hiragino Mincho ProN","Noto Serif JP",serif;
  font-size:0.98rem;
  line-height:1.85;
  letter-spacing:0.03em;
  color:#666;
}

.mag-home-intro{
  max-width: 820px;
  margin-top: 22px;
}

.mag-home-intro p{
  margin: 0 0 1.15em;
  font-size: 1rem;
  line-height: 1.9;
}

@media (max-width: 768px){
  .mag-copy-en{
    font-size: 1.04rem;
    line-height: 1.75;
  }

  .mag-copy-ja{
    font-size: 0.9rem;
  }

  .mag-home-intro p{
    font-size: 0.98rem;
    line-height: 1.85;
  }
}


