  :root {
    --ink: #1a1208;
    --ink-light: #3d3020;
    --cream: #f8f4ec;
    --cream-dark: #ede7d8;
    --red: #c0392b;
    --red-dark: #922b21;
    --gold: #b5860d;
    --gray: #7a7060;
    --gray-light: #c8bfaf;
    --border: #d4c9b4;
    --white: #ffffff;
    --light-blue:#249ca8;
    --heavy-blue:#197783;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.8;
  }

  a { color: inherit; text-decoration: none; }
  a:hover { color: var(--light-blue); }
  img { max-width: 100%; display: block; }

  /* ========== UTILITY ========== */
  .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    background: var(--red);
    color: #fff;
    border-radius: 2px;
  }
  .tag.green { background: #1a6b3a; }
  .tag.blue  { background: #1b4b8a; }
  .tag.gold  { background: var(--gold); }

  .label {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.05em;
  }

  /* ========== HEADER ========== */
  .site-header {
    background: var(--cream-dark);
    color: var(--cream);
    border-bottom: 3px solid var(--red);
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: var(--gray-light);
  }

  .header-main {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 1.2rem 2rem;
  }

  .site-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .logo-ja {
    font-family: 'BIZ UDPMincho', 'Noto Serif JP', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  .logo-ja span {
    color: var(--red);
  }

  .logo-en {
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .logo-tagline {
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 2px;
    font-weight: 300;
  }

  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .social-links {
    display: flex;
    gap: 0.6rem;
  }



  .social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    font-size: 12px;
    color: var(--cream);
    font-weight: 500;
    transition: background 0.2s;
  }

  .social-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  .social-link .icon {
    width: 16px;
    height: 16px;
  }

  /* ========== NAV ========== */
  .site-nav {
    background: #249ca8;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-item {
    padding: 0.7rem 1.1rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
  }

  .nav-item:hover, .nav-item.active {
    color: #fff;
    border-bottom-color: var(--red);
  }

  /* ========== BREAKING TICKER ========== */
  .ticker-wrap {
    background: #249ca8;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 34px;
  }

  .ticker-label {
    flex-shrink: 0;
    background: var(--heavy-blue);
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    gap: 6px;
  }

  .ticker-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .ticker-track {
    flex: 1;
    overflow: hidden;
    padding: 0 1rem;
  }

  .ticker-items {
    display: flex;
    gap: 4rem;
    animation: scroll-left 28s linear infinite;
    white-space: nowrap;
    font-size: 13px;
  }

  @keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ========== LAYOUT ========== */
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 2rem 0;
  }

  /* ========== SECTION HEADER ========== */
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--ink);
  }

  .section-title {
    font-family: 'BIZ UDPMincho', 'Noto Serif JP', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .section-more {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.05em;
  }

  .section-more:hover { text-decoration: underline; }

  /* ========== HERO / TOP STORY ========== */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

/* 左上カード */
.pickup-info-card{

  background:
    linear-gradient(
      135deg,
      var(--heavy-blue),
      #123c66
    );

  color: white;

  padding: 38px 34px;

  min-height: 320px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  position: relative;

  overflow: hidden;

}

/* 背景の装飾 */
.pickup-info-card::before{

  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.05);

  top: -80px;
  right: -80px;

}

/* 日付 */
.pickup-info-date{

  font-size: 25px;

  letter-spacing: .08em;

  opacity: .7;

}

/* タイトル */
.pickup-info-title{

  font-size: 46px;

  font-weight: 900;

  line-height: 1.15;

  letter-spacing: -.03em;

}

/* 小さい英語 */
.pickup-info-sub{

  font-size: 12px;

  letter-spacing: .18em;

  opacity: .6;

  text-transform: uppercase;

}

/* 右側記事 */
.hero-sub {

  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  padding: 0;
  height:100%;

}

.hero-sub .thumb {

  width: 100%;

  aspect-ratio: 16/9;

  object-fit: cover;

  display: block;

}

.hero-sub-content{

  padding: 2px 10px 10px;

  display: flex;

  flex-direction: column;

  gap: .35rem;

  flex: 1;

}

.hero-sub .title {

  font-family: 'BIZ UDPMincho', 'Noto Serif JP', serif;

  font-size: 0.95rem;

  font-weight: 700;

  line-height: 1.5;

  color: var(--ink);

}

.hero-sub:hover .title {

  color: var(--light-blue);

}

.hero-sub .meta {

  font-size: 11px;

  color: var(--gray);

  margin-top: auto;

}

/* MOBILE */
@media(max-width:768px){

  .hero-grid{

    grid-template-columns:1fr;

  }

  .pickup-info-card{

    min-height:220px;

    padding:28px;

  }

  .pickup-info-title{

    font-size:28px;

  }

}

  /* ========== ARTICLE LIST ========== */
  .article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .article-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.8rem;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }

  .article-item .thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .article-item .title {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--ink);
    margin: 0.12rem 0 0.2rem;
  }

  .article-item:hover .title { color: var(--light-blue); }

  .article-item .excerpt {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-item .meta {
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 0.15rem;
  }

  /* ========== ARTICLE PAGE ========== */

  .article-container {
    max-width: 760px;

    margin: 2rem auto;

    padding: 0 1rem;
  }

  .article-category {
    display: inline-block;

    background: var(--accent);

    color: white;

    font-size: 12px;

    padding: 0.3rem 0.7rem;

    border-radius: 4px;

    margin-bottom: 1rem;
  }

  .article-title {
    font-size: 2.2rem;

    line-height: 1.5;

    margin-bottom: 1rem;

    color: var(--ink);

    font-family: 'BIZ UDPMincho', serif;
  }

  .article-thumb{
    width:90px;
    aspect-ratio:4/3;
    object-fit:cover;
    flex-shrink:0;
  }

  .article-meta {
    display: flex;

    gap: 1rem;

    font-size: 13px;

    color: var(--gray);

    margin-bottom: 1.5rem;
  }

  .article-image {
    width: 100%;

    border-radius: 10px;

    margin-bottom: 2rem;

    object-fit: cover;
  }

  .article-content {
    font-size: 16px;

    line-height: 2.1;

    color: var(--ink);
  }

  .article-content p {
    margin-bottom: 1.8rem;
  }

  .article-content h2 {
    font-size: 1.5rem;

    margin:
      3rem 0
      1rem;

    font-family: 'BIZ UDPMincho', serif;
  }

  .article-content blockquote {
    margin: 2rem 0;

    padding: 1rem 1.2rem;

    background: var(--cream);

    border-left:
      4px solid
      var(--accent);

    color: var(--gray);

    font-style: italic;
  }

  .share-buttons {
    display: flex;

    gap: 1rem;

    margin-top: 3rem;
  }

  .share-buttons button {
    border: none;

    background: var(--ink);

    color: white;

    padding: 0.8rem 1rem;

    border-radius: 6px;

    cursor: pointer;

    transition: 0.2s;
  }

  .share-buttons button:hover {
    opacity: 0.8;
  }

  .back-link {
    margin-top: 3rem;
  }

  .back-link a {
    color: var(--gray);

    text-decoration: none;

    font-size: 14px;
  }

  /* ========== TOPICS (full width cards) ========== */
  .topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .topic-card {
    display:flex;
    flex-direction:column;
    background:#fff;
    /* border-radius:16px; */
    overflow:hidden;
    text-decoration:none;
    color:#111;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
    transition:.2s;
  }

  .topic-card:hover {
    transform:translateY(-3px);
   }

  .topic-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .topic-card .body {
    padding: 2px 10px 10px;
  }

  .topic-card .title {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    margin:.2rem 0;
  }

  .topic-card .excerpt{
    font-size:9rem;
    color:#666;
    line-height:1.7;
  }

  .topic-card:hover .title { color: var(--light-blue); }

  .topic-card .meta {
    font-size: .8rem;
    margin-top:.8rem;
    color: var(--gray);
  }

  @media screen and (max-width: 900px) {
    .topic-card .title {
      font-size: 0.75rem;
      line-height: 1.3;
    }
    
  }

  /* ========== SIDEBAR ========== */
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .sidebar-block {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1rem 1.1rem;
  }

  .sidebar-block-title {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--ink);
    letter-spacing: 0.05em;
  }

  .rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rank-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 13px;
    line-height: 1.5;
    transition:.2s ease;
    position: relative;
  }

  .rank-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-top: 1px;
  }

  .rank-num.top3 { background: var(--red); }

  .rank-title {
    font-family: 'BIZ UDPMincho', serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
  }

  .rank-item::before{

    content:"";

    position:absolute;

    left:-1rem;
    top:0;

    width:3px;
    height:100%;

    background:var(--red);

    opacity:0;

    transition:.2s;

  }

  .rank-item:hover::before{

    opacity:1;

  }

  .rank-item:hover .rank-title { color: var(--light-blue); }

  /* ========== WEATHER WIDGET ========== */

  .weather-widget {
    text-align: center;
  }

  /* 地域名 */
  .weather-city {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }

  /* 天気アイコン */
  .weather-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin: 0.6rem 0;
  }

  /* 気温 */
  .weather-temp {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    font-family: 'BIZ UDPMincho', serif;
  }

  /* 天気説明 */
  .weather-desc {
    font-size: 14px;
    color: var(--gray);
    margin-top: 0.3rem;
  }

  /* 湿度・降水 */
  .weather-detail {
    margin-top: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    font-size: 13px;
    color: var(--gray);

    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  /* 日の出・日の入り */
  .sun-times {
    margin-top: 0.9rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0.45rem;

    font-size: 12px;
    color: var(--gray);

    line-height: 1.6;
  }

  /* 更新時刻 */
  .weather-update {
    margin-top: 0.9rem;

    font-size: 11px;
    color: var(--gray-light);

    letter-spacing: 0.03em;
  }

  /* 明日・明後日 */
  .forecast {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 0.8rem;

    margin-top: 1.2rem;
    padding-top: 1rem;

    border-top: 1px solid var(--cream-dark);
  }

  /* 予報カード */
  .forecast-item {
    background: var(--cream);

    padding: 0.8rem;

    border-radius: 8px;

    text-align: center;

    transition: 0.2s ease;
  }

  /* ホバー */
  .forecast-item:hover {
    transform: translateY(-2px);
  }

  /* 明日・明後日テキスト */
  .forecast-day {
    font-size: 12px;
    color: var(--gray);

    margin-bottom: 0.45rem;
  }

  /* 天気アイコン */
  .forecast-item div:nth-child(2) {
    font-size: 1.7rem;
    line-height: 1;
  }

  /* 気温 */
  .forecast-item div:nth-child(3) {
    margin-top: 0.35rem;

    font-size: 14px;
    font-weight: 700;

    color: var(--ink);
  }  
  /* ========== FULL MAP HERO ========== */

  .full-map-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
  }

  /* iframe */

  /* iframe閉じるボタン */
  .gm-ui-hover-effect {
    display: block !important;
    opacity: 1 !important;
    top: 0 !important;
    right: 0 !important;
  }

  .gm-style-iw button {
    display: block !important;
  }

  .hero-map-frame {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: none;
    z-index: 1;
  }

  /* 暗くする */

  .map-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,0.24) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.04) 100%
      );

    z-index: 2;
  }

  /* テキスト */

  .map-hero-content {
    position: absolute;
    top: 50%;
    left: 1rem;

    transform: translateY(-50%);

    z-index: 3;

    max-width: 620px;

    padding: 32px 42px;

    border-radius: 24px;

    background: rgba(0,0,0,0.55);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
      0 12px 40px rgba(0,0,0,0.28);
    
    pointer-events: none;
}

  .map-hero-label {
    display: inline-block;

    padding-bottom: 6px;

    border-bottom: 2px solid var(--red);

    font-size: 1.25rem;

    font-weight: 700;

    letter-spacing: 0.25em;

    color: var(--red);

    margin-bottom: 1.2rem;

    text-transform: uppercase;
  }

  .map-hero-content h2 {
    font-size: 3rem;
    line-height: 1.4;

    font-family: 'BIZ UDPMincho', serif;

    color: #fff;

    letter-spacing: 0.03em;

    margin-bottom: 1rem;
  }

  .map-hero-content p {
    color: rgba(255,255,255,0.88);

    line-height: 1.9;

    font-size: 1.05rem;

    font-weight: 600;

    margin-bottom: 0rem;

  }

  /* ボタン */

  .map-hero-buttons {
    position: absolute;

    left: 24px;
    bottom: 24px;

    z-index: 20;

    display: flex;
    gap: 0.8rem;
  }

  .map-main-btn,
  .map-sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    color: white;

    backdrop-filter: blur(10px);

    transition: 0.2s;
  }

  .map-main-btn {
    background: rgba(192, 57, 43, 0.82);
  }

  .map-main-btn:hover {
    transform: translateY(-2px);
    background: rgba(192, 57, 43, 0.95);
  }

  a.map-main-btn:hover {
    color: var(--red-dark);
  } 

  .map-sub-btn {
    background: rgba(36, 156, 168, 0.82);

    color: white;

    border: 1px solid rgba(255,255,255,0.18);
  }

  .map-sub-btn:hover {
    transform: translateY(-2px);
    background: rgba(36, 156, 168,0.95);
  } 

  a.map-sub-btn:hover {
    color: var(--heavy-blue);
  } 
  /* iframe上のボタン */

  .overlay-buttons {
    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 20;

    display: flex;
    gap: 0.8rem;
  }

  /* ========== MAP EMBED ========== */

  .map-embed {
    position: relative;

    width: 100%;
    height: 500px;

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    border: 1px solid var(--cream-dark);

    background: #ddd;
  }

  .map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;

    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);

    padding: 20px 28px;
    border-radius: 20px;

    width: fit-content;
  }

  .map-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    color: white;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
  }

  .map-open-btn:hover {
    background: rgba(0,0,0,0.85);
  }

  /* ===== SP MAP HERO ===== */
.map-hero-sp {
  display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {

  /* PC用ヒーローを完全に潰す */
  .full-map-hero {
    display: none;
  }

  /* SP用ヒーローを表示 */
  .map-hero-sp {
    display: flex;
    align-items: stretch;
    background: var(--cream);
    min-height: 200px;
    overflow: hidden;
  }

  /* 左：テキスト */
  .map-hero-sp-text {
    flex: 1;
    padding: 1.2rem 1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    color: var(--ink);
    background: var(--cream);
  }

  .map-hero-sp-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--red);
    border-bottom: 1.5px solid var(--red);
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 0.2rem;
  }

  .map-hero-sp-title {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
  }

  .map-hero-sp-desc {
    font-size: 0.5rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
  }

  .map-hero-sp-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.4rem;
  }

  /* ボタンサイズをSP用に縮小 */
  .map-hero-sp-buttons .map-main-btn,
  .map-hero-sp-buttons .map-sub-btn {
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 999px;
    text-align: center;
  }

  /* 右：iframeラッパー */
  .map-hero-sp-iframe-wrap {
    width: 60%;          /* 右半分 */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
    min-height: 170px;
  }

  .map-hero-sp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 250%;
    height: 250%;
    border: none;
    transform:scale(0.4); /* 80%にズームアウト */
    transform-origin: top left;
  }

}

/* 既存スタイルに追記 */
@media (max-width: 768px) {
  .map-hero-content { display: none !important; }
  .map-hero-buttons { display: none !important; }
  .map-hero-overlay { display: none !important; }
}

  /* ========== SNS SECTION ========== */
  .sns-section {
    background: var(--ink);
    color: var(--cream);
    padding: 2.5rem 0;
    margin-top: 2rem;
  }

  .sns-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .sns-text h2 {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .sns-text p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.8;
  }

  .sns-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .sns-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
  }

  .sns-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

  .sns-btn.youtube { border-color: #ff0000; }
  .sns-btn.instagram { border-color: #e1306c; }
  .sns-btn.line { border-color: #00c300; }

  .sns-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

  .sns-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--gray-light);
  }
  /* ========== AREA MAP SECTION ========== */

  .area-section {
    padding: 2rem 0;
  }

  .area-map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* ===== エリアグリッド ===== */
  .area-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.2rem;
    margin-top:1rem;
  }

  /* ===== カード本体 ===== */
  .area-card{
    position:relative;

    border-radius:14px;
    overflow:hidden;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-decoration:none;
    display:block;

    font-family:"Noto Sans JP", sans-serif;

    aspect-ratio:12 / 9;

    transition:
      transform .25s ease,
      box-shadow .25s ease;
  }

  /* hover */
  .area-card:hover{
    transform:translateY(-4px);

    box-shadow:
      0 10px 24px rgba(0,0,0,0.18);
  }
  

  /* ===== オーバーレイ ===== */
  .area-overlay{
    position:absolute;
    inset:0;

    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.58),
        rgba(0,0,0,0.18)
      );

    transition:background .25s ease;
  }

  /* hover時に赤を被せる */
  .area-card:hover .area-overlay{
    background:
      linear-gradient(
        to top,
        rgba(36,156,168,0.68),
        rgba(25,119,131,0.28)
      );
  }

  /* ===== テキスト ===== */
  .area-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;

    z-index:2;

    text-align:center;

    padding:0 16px;

    box-sizing:border-box;

    transition:transform .25s ease;
  }

  /* hover時少し浮く */
  .area-card:hover .area-content{
    transform:translateY(-2px);
  }

  /* ===== 英語タイトル ===== */
  .area-en{
    font-size:clamp(1.3rem,3vw,2.2rem);

    font-weight:900;

    letter-spacing:-0.08em;

    max-width:100%;

    text-shadow:
      0 2px 12px rgba(0,0,0,0.35);

  }

  /* ===== 日本語 ===== */
  .area-ja{
    font-size:0.95rem;

    margin-top:0.5rem;

    opacity:0.92;

    font-weight:500;

    text-shadow:
      0 2px 8px rgba(0,0,0,0.3);
  }

  /* ===== AREAタグ ===== */
  .area-badge{
    position:absolute;

    top:14px;
    left:14px;

    z-index:3;

    background:rgba(255,255,255,0.14);

    backdrop-filter:blur(6px);

    color:#fff;

    font-size:11px;
    font-weight:700;

    letter-spacing:0.12em;

    padding:6px 10px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,0.15);
  }


  /* @media (max-width: 1100px){

    .area-grid{
      grid-template-columns:repeat(2,1fr);
      gap:20px;
    }

    .area-card{
      height:220px;
      aspect-ratio:22 / 9;
    }

    .area-en{
      font-size:1.8rem;
    }

  } */

  /* ===== スマホ ===== */
  @media (max-width: 768px){

    .area-grid{
      grid-template-columns:1fr;
    }

    .area-card{
      aspect-ratio:22 / 9;
      width: 100%;
    }

    .area-en{
      font-size:1.8rem;
    }
  

  }

  /* ================= CREW SECTION ================= */

.crew-section{
  background:var(--heavy-blue);
  padding:25px 0;
  overflow:hidden;
  position:relative;
  cursor: grab;
}

.crew-section.dragging{
  cursor: grabbing;
}

/* ===== MARQUEE ===== */

.crew-marquee{
  width:100%;
  overflow:hidden;
  overflow-x:auto;
  overflow-y:hidden;
  position:relative;

  scrollbar-width:none;
  -ms-overflow-style:none;

  cursor:grab;
}

.crew-track{
  display:flex;
  align-items:center;
  gap:22px;
  width:max-content;
  padding:8px 0;
  animation:crewLoop 20s linear infinite;
}

.crew-marquee::-webkit-scrollbar{
  display:none;
}

.crew-marquee.dragging{
  cursor:grabbing;
}

/* hoverで停止 */

.crew-track:hover{
  animation-play-state:paused;
}

/* ===== CARD ===== */

.crew-card{
  position:relative;
  flex-shrink:0;
  width:220px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  overflow:hidden;
  transition:.3s ease;
}

/* サイズ変化 */

.crew-card.large{
  width:260px;
}

.crew-card.small{
  width:180px;
}

/* ランダム回転 */

.rotate-left{
  transform:rotate(-2deg);
}

.rotate-right{
  transform:rotate(2deg);
}

/* hover */

.crew-card:hover{
  transform:translateY(-6px) rotate(0deg);
}

/* ===== IMAGE ===== */

.crew-card img{
  width:100%;
  height:260px; /* ←高さ圧縮 */
  object-fit:cover;
  display:block;
}

/* ===== INFO ===== */

.crew-info{
  padding:12px 14px;
  color:#fff;
}

.crew-role{
  font-size:10px;
  letter-spacing:0.16em;
  opacity:0.55;
  margin-bottom:5px;
  text-transform:uppercase;
}

.crew-name{
  font-size:1rem;
  font-weight:900;
  letter-spacing:-0.04em;
}

/* ===== LOOP ===== */

@keyframes crewLoop{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-33.333%);
  }

}

/* ===== MOBILE ===== */

@media (max-width:768px){

  .crew-section{
    padding:24px 0;
  }

  .crew-track{
    gap:16px;
    animation-duration:16s;
  }

  .crew-card{
    width:150px;
  }

  .crew-card.large{
    width:180px;
  }

  .crew-card.small{
    width:135px;
  }

  .crew-card img{
    height:190px;
  }

  .crew-info{
    padding:10px;
  }

  .crew-name{
    font-size:0.9rem;
  }

}


  /* ========== PHOTO STRIP ========== */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--ink);
    overflow: hidden;
  }

  .photo-strip-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s, transform 0.3s;
  }

  .photo-strip-item:hover img { filter: brightness(1); transform: scale(1.05); }

  .photo-strip-label {
    position: absolute;
    bottom: 8px; left: 8px;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  }


  /* ========== FOOTER ========== */
  .site-footer {
    background: var(--cream-dark);
    color: var(--ink);
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
    font-size: 13px;
    border-top: 3px solid #249ca8;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
  }

  /* フッターに表示する正式ロゴ画像 */
  .footer-logo-image {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 0.9rem;
  }

  .footer-about {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--gray);
  }

  .footer-col h3 {
    font-size: 12px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-links li {
    list-style: none;
  }

  .footer-links a {
    color: var(--gray);
    font-size: 12px;
    transition: color 0.15s;
  }

  .footer-links a:hover {
    color: #249ca8;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray);
  }

  /* ========== PLACEHOLDER IMAGES ========== */
  .ph {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .main-layout { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: repeat(2,1fr); }
    .hero-main { grid-row: auto; }
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .area-map-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-strip { grid-template-columns: repeat(3, 1fr); }
    .sns-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .header-main { display: flex; flex-direction: row; gap: 1rem; }
  }

  @media (max-width: 600px) {
    .container { padding: 0 1rem; }
    .topics-grid { grid-template-columns: 2,1fr; }
    .logo-ja { font-size: 2rem; }
    .site-nav { overflow-x: auto; }
    .social-links { flex-direction: column; }
  }

  /* ========== STATIC PAGE ========== */

  .page-main {
    padding: 5rem 1.5rem;
  }

  .page-container {
    max-width: 820px;
    margin: 0 auto;
  }

  .page-label {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--red);

    border-bottom: 2px solid var(--red);

    padding-bottom: 6px;

    margin-bottom: 1.5rem;
  }

  .page-container h1 {
    font-size: 2.6rem;

    line-height: 1.4;

    margin-bottom: 2rem;

    font-family: 'BIZ UDPMincho', serif;

    color: var(--ink);
  }

  .page-container p {
    font-size: 15px;

    line-height: 2.1;

    color: #444;

    margin-bottom: 1.5rem;
  }

  ul {
    padding-left: 1.2em;
    margin: 0;
  }

  li {
    color: var(--ink);
    line-height: 1.9;
  }

  li::marker {
    color: var(--red);
  }

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-links li {
    list-style: none;
  }
/* =========================================
LATEST HERO
========================================= */

.latest-hero{

  padding: 60px 0;

  background:
  linear-gradient(
    rgba(15,23,42,.72),
    rgba(15,23,42,.72)
  ),
  url("/images/category/news.jpg");

  background-size: cover;
  background-position: center;

  color: white;

}

.latest-hero-grid{

  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  gap: 30px;

  align-items: stretch;

}

.latest-label{

  display: inline-block;

  padding: 6px 14px;

  border-radius: 999px;

  background:
  rgba(255,255,255,.12);

  border:
  1px solid rgba(255,255,255,.2);

  font-size: 12px;

  margin-bottom: 20px;

}

/* .latest-hero-main h1{

  font-size: 52px;

  margin-bottom: 18px;

}

.latest-hero-main p{

  line-height: 1.9;

  opacity: .92;

  margin-bottom: 24px;

} */

.latest-count{

  font-weight: 700;

}

/* =========================================
HOT CARD
========================================= */

.hot-card{

  display: flex;
  flex-direction: column;

  background: white;

  border-radius: 24px;

  overflow: hidden;

  text-decoration: none;

  color: inherit;

}

.hot-card-image-wrap{

  height: 240px;

  overflow: hidden;

}

.hot-card-image-wrap img{

  width: 100%;
  height: 100%;

  object-fit: cover;

}

.hot-card-body{

  padding: 22px;

}

.hot-badge{

  display: inline-block;

  margin-bottom: 14px;

  padding: 5px 12px;

  border-radius: 999px;

  background: var(--heavy-blue);

  color: white;

  font-size: 11px;
  font-weight: 700;

}

.hot-card-body h2{

  font-size: 24px;

  line-height: 1.5;

  margin-bottom: 12px;

}

.hot-card-body p{

  color: #666;

  line-height: 1.8;

}

/* =========================================
LAYOUT
========================================= */

.category-layout{

  display: grid;

  grid-template-columns:
    minmax(0,1fr) 320px;

  gap: 40px;

  align-items: start;

}

.category-content{

  min-width: 0;

}

/* =========================================
SP
========================================= */

@media(max-width:900px){

  .latest-hero-grid{

    grid-template-columns: 1fr;

  }

  .category-layout{

    grid-template-columns: 1fr;

  }

}
  /* =========================
  CATEGORY HERO
  ========================= */

  .category-hero{
    position:relative;
    padding:30px 0 15px;
    background-size:cover;
    background-position:center;
    border-bottom:6px solid var(--category-color);
    color:#fff;
  }

  .category-hero .container{
    position:relative;
    z-index:2;
  }

  .category-hero-label{
    font-size:.8rem;
    letter-spacing:.3em;
    font-weight:900;
    margin-bottom:1rem;
    opacity:.8;
    display:inline-block;
    background:var(--category-color);
    color:#fff;
    padding:.45rem .8rem;
    border-radius:999px;
  }

  .category-hero h1{
    font-size:4rem;
    line-height:1;
    margin-bottom:1rem;
    font-weight:900;
    letter-spacing:-0.05em;
  }

  .category-hero p{
    font-size:1rem;
    opacity:.9;
    line-height:1.9;
  }

  .category-count{
    margin-top:1.5rem;
    font-size:.9rem;
    opacity:.7;
  }

  /* =========================
  MAIN
  ========================= */

  .category-main{
    padding:4rem 0;
  }

  /* パンくず */

  .breadcrumb{
    display:flex;
    gap:.6rem;
    margin-bottom:2rem;
    font-size:.9rem;
    color:#777;
  }

  .breadcrumb a{
    color:inherit;
    text-decoration:none;
  }

  /* 検索 */

  .search-box{
    margin-bottom:2.5rem;
  }

  .search-box input{
    width:100%;
    padding:1rem 1.2rem;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:1rem;
    outline:none;
  }

  .search-box input:focus{
    border-color:var(--category-color);
    box-shadow:0 0 0 4px rgba(0,0,0,.05);
  }

  /* =========================
  POST GRID
  ========================= */

  .category-post-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
  }

  .category-post-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
    border-top:5px solid var(--category-color);
  }

  .category-post-card:hover{
    transform:translateY(-5px);
  }

  .category-post-thumb{
    aspect-ratio:16/9;
    overflow:hidden;
  }

  .category-post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
    display: block;
  }

  .category-post-card:hover img{
    transform:scale(1.08);
  }

  .category-post-body{
    padding:1.2rem;
  }

  .category-post-date{
    font-size:.8rem;
    color:#888;
    margin-bottom:.6rem;
  }

  .category-post-body h3{
    font-size:1.1rem;
    line-height:1.6;
    margin-bottom:.8rem;
    font-weight:800;
  }

  .category-post-body p{
    font-size:.92rem;
    color:#666;
    line-height:1.8;
  }

  .history-mode .category-hero h1{
    font-family:'Noto Serif JP', serif;
  }

  /* =========================
  PAGINATION
  ========================= */

  .pagination{
    display:flex;
    justify-content:center;
    gap:.6rem;
    margin-top:4rem;
  }

  .page-btn{
    width:42px;
    height:42px;
    border:none;
    background:#f3f3f3;
    border-radius:10px;
    cursor:pointer;
    font-weight:700;
  }

  .page-btn.active{
    background:var(--category-color);
    color:#fff;
  }

  /* =========================
  RELATED
  ========================= */

  .related-section{
    padding:5rem 0;
    background:#fafafa;
  }

  .related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    margin-top:2rem;
  }

  .related-card{
    background:#111;
    color:#fff;
    padding:2rem;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    text-align:center;
    transition:.3s;
  }

  .related-card:hover{
    transform:translateY(-4px);
    background:var(--category-color);
  }

  .category-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:3rem;
  }

  .post-meta-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:.7rem;
  }

  .post-category{
    background:var(--category-color);
    color:#fff;
    font-size:.7rem;
    padding:.3rem .6rem;
    border-radius:999px;
    font-weight:700;
  }

  .post-tags{
    display:flex;
    flex-wrap:wrap;
    gap:.4rem;
    margin-top:1rem;
  }

  .post-tag{
    background:#f3f3f3;
    padding:.3rem .6rem;
    border-radius:999px;
    font-size:.75rem;
  }

  .post-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:1.2rem;
    padding-top:1rem;
    border-top:1px solid #eee;
    font-size:.8rem;
    color:#666;
  }

  /* SIDEBAR */

  .category-sidebar{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
  }

  .sidebar-box{
    background:#fff;
    border-radius:18px;
    padding:1.4rem;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
  }

  .sidebar-box h3{
    margin-bottom:1rem;
    font-size:1rem;
  }

  .popular-item{
    display:flex;
    gap:.8rem;
    text-decoration:none;
    color:#111;
    margin-bottom:1rem;
  }

  .popular-item img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
  }

  .popular-title{
    font-size:.9rem;
    line-height:1.5;
    font-weight:700;
    margin-bottom:.3rem;
  }

  .popular-views{
    font-size:.8rem;
    color:#777;
  }

  .category-links{
    display:flex;
    flex-direction:column;
    gap:.7rem;
  }

  .category-links a{
    text-decoration:none;
    color:#111;
    font-weight:700;
  }

  @media(max-width:768px){

    .category-layout{
      grid-template-columns:1fr;
    }

  }

  /* =========================
  SP
  ========================= */

  @media (max-width:768px){

    .category-hero{
      padding:90px 0 70px;
    }

    .category-hero h1{
      font-size:2.5rem;
    }

    .category-post-grid{
      grid-template-columns:1fr;
    }

    .related-grid{
      grid-template-columns:1fr;
    }

  }



  @media (max-width: 768px) {

    .latest-list-item {
      grid-template-columns: 1fr;
    }

    .latest-list-thumb img {
      height: 220px;
    }

  }



  /* ========== HEADER LOGO ADJUSTMENT ========== */

  /* ロゴが映える明るい背景色 */
  .site-header {
    background: var(--cream-dark);
    color: var(--ink);
    border-bottom: 3px solid #249ca8;
  }

  /* ヘッダー上部の小さい文字 */
  .header-top {
    color: var(--gray);
    border-bottom: 1px solid var(--cream-dark);
  }

  /* ロゴ周辺の余白を少し調整 */
  .header-main {
    padding: 0.9rem 2rem 1rem;
  }

  /* ロゴ画像を少し小さく表示 */
  .site-logo-image {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
  }

  /* ロゴ下の英語表記 */
  .logo-en {
    color: var(--gray);
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  /* ロゴ下のキャッチコピー */
  .logo-tagline {
    color: var(--gray);
    margin-top: 2px;
    font-size: 11px;
  }

  /* 明るい背景に合わせてSNSボタンを見やすくする */
  .social-link {
    color: var(--ink);
    border: 1px solid var(--border);
    background: transparent;
  }

  @media (max-width:768px){
    .social-link{
      padding:4px 10px;
      font-size:10px;
    }
  }

  @media (max-width:768px){
    .social-links{
      gap:3px;
    }
  }

  .social-link:hover {
    background: #edf7f7;
    border-color: #249ca8;
    color: #197783;
  }

  /* ナビゲーションバーは今の暗い色を維持 */
  .site-nav {
    background: #249ca8;
  }

  /* 現在選択されているメニューの下線をロゴ色に合わせる */
  .nav-item:hover {
    border-bottom: 2px solid var(--cream);
  }

  .nav-item.active {
    border-bottom: 3px solid var(--cream-dark);
  }

  /* スマホではロゴをさらに少し小さくする */
  @media (max-width: 600px) {
    .site-logo-image {
      width: 190px;
    }

    .header-main {
      padding: 0.8rem 1rem;
    }
    
  }

  /* ================= AREA.HTML HERO ================= */

.area-hero{
  position: relative;

  min-height: 200px;

  display:flex;
  align-items:center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color:#fff;
}

.area-hero-overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.45);
}

.area-hero-inner{
  position:relative;
  z-index:2;

  padding:5rem 0;

  max-width:720px;
}

.area-hero-label{
  display:inline-block;

  padding:0.45rem 0.9rem;

  background:rgba(255,255,255,0.12);

  backdrop-filter: blur(10px);

  border:1px solid rgba(255,255,255,0.15);

  font-size:0.75rem;
  font-weight:700;

  letter-spacing:0.2em;

  margin-bottom:1.2rem;
}

.area-hero-jp{
  font-size:1rem;

  letter-spacing:0.35em;

  margin-bottom:1rem;

  opacity:0.9;
}

.area-hero-title{
  font-size: clamp(3rem, 8vw, 5.8rem);

  font-weight:900;

  line-height:0.95;

  letter-spacing:-0.1em;

  margin-bottom:1.5rem;

  word-break: break-word;
}

.area-hero-description{
  font-size:1rem;

  line-height:2;

  color:rgba(255,255,255,0.9);

  max-width:560px;

  margin-bottom:1.5rem;
}

.area-count{
  font-size:0.95rem;

  opacity:0.8;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .area-hero{
    min-height:360px;
  }

  .area-hero-inner{
    padding:4rem 0;
  }

  .area-hero-title{
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .area-hero-description{
    font-size:0.95rem;
    line-height:1.9;
  }

}

  /* ========== LINE SECTION ========== */
  
  .line-section{
    padding:80px 20px;
    text-align:center;
    background:#f5f5f5;
  }

  .line-btn{
    display:inline-block;
    margin-top:20px;
    padding:16px 34px;
    background:#06C755;
    color:#fff;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
  }

  /* ================= WRITERS ================= */

.writers-hero{
  padding:30px 0 20px;
  background:var(--heavy-blue);
  color:#fff;
}

.writers-label{
  font-size:12px;
  letter-spacing:0.24em;
  opacity:0.7;
  margin-bottom:12px;
}

.writers-hero h1{
  font-size:clamp(2.5rem,5vw,5rem);
  font-weight:900;
  letter-spacing:-0.06em;
  margin-bottom:16px;
}

.writers-hero p{
  opacity:0.75;
  line-height:1.8;
}

.writers-main{
  padding:70px 0;
}

/* ===== SEARCH ===== */

.writers-search{
  margin-bottom:40px;
}

.writers-search input{
  width:100%;
  padding:18px 22px;
  border:1px solid var(--border);
  border-radius:18px;
  font-size:15px;
  outline:none;
}

/* ===== GRID ===== */

.writers-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

/* ===== CARD ===== */

.writer-card{
  display:flex;
  gap:24px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:28px;
  text-decoration:none;
  color:inherit;
  transition:.3s ease;
  background:#fff;
}

.writer-card:hover{
  transform:translateY(-6px);
  border-color:var(--heavy-blue);
}

.writer-image{
  width:120px;
  height:120px;
  border-radius:24px;
  overflow:hidden;
  flex-shrink:0;
}

.writer-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.writer-meta{
  font-size:12px;
  color:var(--gray);
  margin-bottom:8px;
}

.writer-name{
  font-size:1.7rem;
  font-weight:900;
  margin-bottom:12px;
  letter-spacing:-0.05em;
}

.writer-description{
  line-height:1.8;
  color:#555;
  margin-bottom:18px;
}

.latest-label{
  font-size:11px;
  letter-spacing:0.14em;
  color:var(--gray);
  margin-bottom:6px;
}

.latest-title{
  font-weight:700;
  line-height:1.5;
}

/* ===== MOBILE ===== */

@media (max-width:768px){

  .writers-grid{
    grid-template-columns:1fr;
  }

  .writer-card{
    padding:18px;
    gap:16px;
  }

  .writer-image{
    width:90px;
    height:90px;
  }

  .writer-name{
    font-size:1.2rem;
  }

}

/* ================= WRITER PAGE ================= */

.writer-hero{
  background:var(--heavy-blue);
  color:#fff;
  padding:30px 0 15px;
}

.writer-hero-inner{
  display:flex;
  align-items:center;
  gap:50px;
}

.writer-hero-image{
  width:180px;
  height:180px;
  border-radius:32px;
  overflow:hidden;
  flex-shrink:0;
}

.writer-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.writer-label{
  font-size:11px;
  letter-spacing:0.2em;
  opacity:0.65;
  margin-bottom:12px;
}

.writer-hero h1{
  font-size:clamp(2.5rem,5vw,5rem);
  font-weight:900;
  letter-spacing:-0.05em;
  margin-bottom:18px;
}

.writer-hero p{
  line-height:1.9;
  opacity:0.82;
  max-width:700px;
}

.writer-count{
  margin-top:24px;
  font-weight:700;
}

/* ================= POSTS ================= */

.writer-main{
  padding:70px 0;
}

.writer-post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.writer-post-card{
  display:block;
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--border);
  transition:.3s ease;
  background:#fff;
}

.writer-post-card:hover{
  transform:translateY(-6px);
}

.writer-post-thumb{
  aspect-ratio:16/10;
  overflow:hidden;
}

.writer-post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.writer-post-body{
  padding:20px;
}

.writer-post-date{
  font-size:12px;
  color:var(--gray);
  margin-bottom:10px;
}

.writer-post-body h2{
  font-size:1.1rem;
  line-height:1.6;
  font-weight:800;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .writer-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .writer-post-grid{
    grid-template-columns:1fr;
  }

}


/* =========================
POST CARD
========================= */

.post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.post-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  transition:.3s ease;
}

.post-card:hover{
  transform:translateY(-6px);
}

.post-thumb{
  aspect-ratio:16/10;
  overflow:hidden;
}

.post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.post-body{
  padding:22px;
}

.post-meta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
  font-size:12px;
}

.post-category{
  color:var(--category-color);
  font-weight:700;
}

.post-date{
  color:#888;
}

.post-title{
  font-size:1.15rem;
  line-height:1.6;
  font-weight:800;
  margin-bottom:14px;
}

.post-excerpt{
  font-size:.95rem;
  line-height:1.8;
  color:#555;
  margin-bottom:18px;
}

.post-author{
  font-size:13px;
  font-weight:700;
}

.card-excerpt{
  font-size: 14px;
  color: #666;
  line-height: 1.6;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* MOBILE */
@media(max-width:768px){

  .post-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

}

.site-card-description{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px){

  .site-card-description{
    -webkit-line-clamp: 1;
  }

}

.post-excerpt{

  overflow: hidden;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  line-height: 1.7;

  max-height: calc(1.7em * 2);

}

@media (max-width: 768px){

  .post-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 1.7em;
    overflow: hidden;
  }

}

.category-post-card{

  display: flex;

  flex-direction: column;

  height: 100%;

}

.category-post-body{

  display: flex;

  flex-direction: column;

  flex: 1;

}

.post-footer{

  margin-top: auto;

}

.article-body img{

  max-width: 100%;

  height: auto;

}

.article-body{

  line-height: 2;

  font-size: 16px;

}

.article-body h2{

  margin-top: 48px;

  font-size: 28px;

}

.article-body p{

  margin: 24px 0;

}


/* =========================
SP NAV
========================= */

@media (max-width:768px){

  .site-nav{

    display:flex;
    overflow-x:auto;

    white-space:nowrap;

    justify-content:flex-start;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
  }

  .site-nav::-webkit-scrollbar{
    display:none;
  }

  .nav-item{

    flex-shrink:0;

    padding:5px 11px;
    font-size:13px;
    font-weight: 500;
  }

}

@media (max-width:768px){

  .nav-item{

    flex-shrink:0;

    padding:5px 11px;
    font-size: 12px;
    font-weight: 400;
  }

}


@media (max-width:768px){

  .header-main{

    flex-direction:row;
    justify-content:space-between;
  }

  .header-right{

    width:100%;
  }

  .social-links{

    justify-content:center;

    width:100%;
  }

}

@media (max-width:768px){

  .site-logo-image{

    width:220px;
    height:auto;
  }

  .logo-en{

    /* font-size:6px; */
  }

  .logo-tagline{

    font-size:12px;
  }

}


@media (max-width:768px){

  .hero-title{

    font-size:3rem;
    line-height:1.15;
  }

}

@media (max-width:768px){

  .category-post-grid{

    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .category-layout{

    grid-template-columns:1fr;
  }

  .category-sidebar{

    margin-top:30px;
  }

}

.nav-scroll-hint{
  display:none;
}

@media (max-width:768px){

  .nav-scroll-hint{
    display:block;
    text-align:center;
    font-size:12px;
    padding:3px;
    background:#2aa8b5;
    color:white;
    font-weight:700;
  }

}

@media (max-width:768px){

  .nav-scroll-hint{
    display:block;
    text-align:center;
    font-size:9px;
    padding:3px;
    background:#2aa8b5;
    color:white;
    font-weight:700;
  }

}

@media (max-width:768px){

  .header-top{
    display:none;
  }

}



/* =========================
タグ検索
========================= */
#tagCloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tag-chip{
  display:inline-block;
  padding:6px 12px;
  background:#f5f5f5;
  border-radius:999px;
  font-size:13px;
  color:#333;
  text-decoration:none;
  transition:.2s;
}

.tag-chip:hover{
  background:#222;
  color:white;
}