/**
 * Site Starter — Magazine Layout (Uravation Media)
 * Self-contained layout that mirrors uravation.com /media/.
 * Overrides parent uravation-base default `p-hero` etc.
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

/* ============================================================
   Override parent wrappers (l-main, l-container)
   so .p-sub-hero can be full-bleed and content lives in .l-inner
   ============================================================ */
.l-main {
  padding: var(--header-height, 80px) 0 0 !important;
}
.l-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.l-contents { padding: 0 0 80px; }
.l-section { padding: 60px 0; }
.l-section--surface { background: var(--color-surface); }
.l-section--alt { background: var(--color-bg-alt); }
.l-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Sub-page Hero (dark teal banner) — top of front page
   ============================================================ */
.p-sub-hero {
  background: var(--gradient-subhero);
  padding: 140px 0 60px;
  text-align: center;
  min-height: 280px;
}
.p-sub-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-sub-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.p-sub-hero__title {
  font-family: var(--font-en);
  font-size: clamp(3.6rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.p-sub-hero__sub {
  display: block;
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 14px;
  letter-spacing: 0.1em;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.p-breadcrumb {
  background: var(--color-bg-alt);
  padding: 12px 0;
  min-height: 44px;
}
.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
}
.p-breadcrumb__item { display: flex; align-items: center; gap: 8px; }
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: '>';
  color: var(--color-text-light);
}
.p-breadcrumb__link { color: var(--color-text-light); text-decoration: none; }
.p-breadcrumb__link:hover { color: var(--accent); }
.p-breadcrumb__link--current { color: var(--color-text); font-weight: 600; }

/* ============================================================
   Section Heading (English big + Japanese small, magazine style)
   ============================================================ */
.p-section-heading {
  text-align: center;
  margin-bottom: 36px;
}
.p-section-heading__en {
  font-family: var(--font-en);
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}
.p-section-heading__ja {
  display: block;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* ============================================================
   Featured Article (big banner card)
   ============================================================ */
.p-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  border: var(--hairline);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.p-featured:hover { box-shadow: var(--shadow-card-hover); }
.p-featured__img {
  position: relative;
  background: var(--color-bg-alt);
  min-height: 280px;
}
.p-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.p-featured__noimg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}
.p-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FF6B35;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 2;
}
.p-featured__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.p-featured__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color-text-light);
}
.p-featured__category {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--accent-bg);
  color: var(--accent-dark);
}
.p-featured__title {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0;
}
.p-featured__desc {
  font-size: 1.4rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
@media (max-width: 768px) {
  .p-featured { grid-template-columns: 1fr; }
  .p-featured__img { min-height: 220px; }
  .p-featured__body { padding: 24px; }
}

/* ============================================================
   Article Grid (Latest list)
   ============================================================ */
.p-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .p-articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .p-articles-grid { grid-template-columns: 1fr; } }

.p-article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border: var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.p-article-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.p-article-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.p-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-article-card:hover .p-article-card__thumb img { transform: scale(1.04); }
.p-article-card__noimg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-soft) 100%);
}
.p-article-card__category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.p-article-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.p-article-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--color-text-light);
}
.p-article-card__date { font-family: var(--font-en); letter-spacing: 0.05em; }
.p-article-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-article-card:hover .p-article-card__title { color: var(--accent); }

/* ============================================================
   Buttons (link bar to archive)
   ============================================================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.c-btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 122, 138, 0.25);
}
.c-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.c-btn--outline:hover {
  background: var(--accent-bg);
}

/* ============================================================
   CTA Banner (Uravation誘導)
   ============================================================ */
.p-cta-strip {
  background: var(--gradient-subhero);
  padding: 56px 32px;
  border-radius: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.p-cta-strip__copy { flex: 1; min-width: 240px; }
.p-cta-strip__eyebrow {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.p-cta-strip__title {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 6px;
}
.p-cta-strip__desc {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.p-cta-strip .c-btn--primary {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}
.p-cta-strip .c-btn--primary:hover {
  background: rgba(255,255,255,0.92);
  color: var(--accent-deep);
}

/* ============================================================
   Article Single
   ============================================================ */
.p-article-header { padding: 32px 0 24px; max-width: 860px; margin: 0 auto; }
.p-article-header__category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-bg);
  color: var(--accent-dark);
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.p-article-header__title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 14px;
}
.p-article-header__meta {
  display: flex;
  gap: 16px;
  font-size: 1.3rem;
  color: var(--color-text-light);
}
.p-article-thumbnail {
  max-width: 1000px;
  margin: 0 auto 32px;
  border-radius: 14px;
  overflow: hidden;
}
.p-article-thumbnail img { width: 100%; height: auto; display: block; }
.p-article-body {
  max-width: 760px;
  margin: 0 auto;
  /* Senior readability: 19px body, generous line-height */
  font-size: 1.9rem;
  line-height: 1.95;
  letter-spacing: 0.02em;
}
.p-article-body h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}
.p-article-body h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 36px 0 16px;
  color: var(--accent-dark);
}
.p-article-body p { margin: 0 0 20px; }
.p-article-body ul, .p-article-body ol { margin: 0 0 20px 28px; }
.p-article-body li { margin: 0 0 8px; }
.p-article-body a { color: var(--accent); text-decoration: underline; }
.p-article-body strong { font-weight: 700; }
.p-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 1.4rem;
}
.p-article-body th, .p-article-body td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.p-article-body th { background: var(--color-bg-alt); font-weight: 700; }

.p-article-footer {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 24px 0;
  border-top: var(--hairline);
}
.p-article-footer__share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.p-article-footer__share-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-light);
}
.c-share-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s;
}
.c-share-btn:hover { background: var(--color-bg-alt); }

/* ============================================================
   Pagination
   ============================================================ */
.p-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.p-pagination a, .p-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-text);
  border: var(--hairline);
}
.p-pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }
.p-pagination a:hover { background: var(--color-bg-alt); }

/* ============================================================
   Page Title (archive header)
   ============================================================ */
.p-page-title {
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  font-weight: 800;
  margin: 36px 0 12px;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-page-desc {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* (Removed .p-hero override — child themes that use .p-hero with inline styles
    e.g. claudecode-cases-site Coming Soon front-page, need that to render.) */

/* ============================================================
   Util
   ============================================================ */
.u-mb-32 { margin-bottom: 32px; }
.u-mb-48 { margin-bottom: 48px; }
.u-mb-64 { margin-bottom: 64px; }
.u-mb-80 { margin-bottom: 80px; }

@media (max-width: 768px) {
  .p-sub-hero { padding: 100px 0 40px; min-height: 200px; }
  .l-section { padding: 36px 0; }
  .p-section-heading { margin-bottom: 24px; }
  .p-cta-strip { padding: 36px 24px; flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   ====== iwateai BRAND OVERRIDES (warm editorial) ======
   ============================================================ */

/* Hero — left-aligned, bright cream, serif Japanese */
.p-sub-hero {
  text-align: left;
  padding: 118px 0 64px;
  border-bottom: 1px solid rgba(138, 90, 68, 0.14);
  position: relative;
}
.p-sub-hero::after {
  /* paper texture stripes */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(138,90,68,0.20) 0 4px, transparent 4px 12px);
}
.p-sub-hero__inner { max-width: 1040px; }
.p-sub-hero__eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: rgba(255,255,255,0.7);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(138, 90, 68, 0.20);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.p-sub-hero__title {
  font-family: var(--font-serif-ja);
  color: var(--color-text);
  font-size: clamp(3.2rem, 4.8vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.35;
}
.p-sub-hero__sub {
  font-family: var(--font-ja);
  color: var(--color-text-2);
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* Section heading — sentence-case, warm */
.p-section-heading__en {
  text-transform: lowercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
}
.p-section-heading__en::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 12px auto 0;
}
.p-section-heading__ja {
  font-family: var(--font-serif-ja);
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

/* Card — soft, rounded, warm thumbnails */
.p-featured,
.p-article-card {
  border-radius: 18px;
  border: 1px solid rgba(138, 90, 68, 0.13);
  background: var(--color-surface);
}
.p-article-card__thumb img,
.p-featured__img img {
  filter: saturate(0.92) brightness(1.04);
}
.p-featured__badge {
  background: #8A5A44;
  color: #FFFDF8;
  font-family: var(--font-en);
  border-radius: 4px;
}
.p-featured__category,
.p-article-card__category {
  background: #F4DED1;
  color: #8A4D36;
  border-radius: 999px;
  border: 1px solid rgba(138, 90, 68, 0.18);
}

/* Article body — slightly larger for readability */
.p-article-header__title {
  font-family: var(--font-serif-ja);
  letter-spacing: 0.01em;
}
.p-article-body {
  font-size: 1.75rem;
  line-height: 2.05;
}
.p-article-body h2 {
  font-family: var(--font-serif-ja);
  border-bottom: none;
  padding-bottom: 0;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

/* Buttons */
.c-btn--primary {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.c-btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.c-btn--outline { color: var(--accent-dark); border-color: var(--accent-dark); }

/* CTA strip — warm brown */
.p-cta-strip {
  background: linear-gradient(135deg, #8A5A44 0%, #5F3D2E 100%);
  border-radius: 24px;
}
.p-cta-strip .c-btn--primary {
  background: #FFFDF8;
  color: #5F3D2E;
  border-color: #FFFDF8;
}

/* Pagination */
.p-pagination .current { background: var(--accent-dark); border-color: var(--accent-dark); }
@media (max-width: 600px) {
  .l-header__logo a { width: 192px; height: 40px; }
}

.l-header__logo a { gap: 0; }
.l-header__logo a span { display: none; }
.l-header__logo a {
  display: inline-block;
  width: 240px;
  height: 56px;
  background: url('../images/logo.svg?v=20260519') no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .l-header__logo a { width: 187px; height: 43px; }
}

/* === Header logo (PNG, scaled up for stronger presence) === */
.l-header__logo a {
  display: inline-block;
  width: 320px;
  height: 73px;
  background: url('../images/logo.svg?v=20260519') no-repeat left center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  gap: 0;
}
.l-header__logo a span { display: none; }
@media (max-width: 768px) {
  .l-header__logo a { width: 240px; height: 54px; }
}
@media (max-width: 480px) {
  .l-header__logo a { width: 192px; height: 43px; }
}

/* ============================================================
   iwate AI editorial refresh
   ============================================================ */
.l-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}
.l-header__inner {
  max-width: 1180px;
}
.l-header__logo a {
  width: 250px;
  height: 56px;
  background-image: url('../images/logo.svg?v=20260519b');
}
.l-header__nav {
  gap: 22px;
}
.l-header__nav ul,
.l-header__nav .menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__nav a {
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-transform: none;
}
.c-btn {
  border-radius: 8px;
  box-shadow: none;
}
.c-btn--outline {
  background: transparent;
}
.p-iwate-home {
  padding-bottom: 0;
}
.p-iwate-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 72px;
  background:
    linear-gradient(120deg, rgba(8, 47, 73, .94), rgba(15, 118, 110, .80)),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .28), transparent 28%),
    url('../images/hero-iwate.jpg'),
    linear-gradient(135deg, #082f49, #0f766e);
  background-size: auto, auto, cover, auto;
  background-position: center, center, center 42%, center;
  color: #fff;
}
.p-iwate-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.14) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, rgba(255,255,255,.10) 48% 52%, transparent 52%);
  background-size: 92px 52px;
  opacity: .45;
}
.p-iwate-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 56px;
  align-items: end;
}
.p-iwate-hero__eyebrow,
.p-label {
  margin: 0 0 14px;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent-warm);
}
.p-iwate-hero__eyebrow {
  color: #fcd34d;
}
.p-iwate-hero__title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 7rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
}
.p-iwate-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.55rem, 1.9vw, 1.9rem);
  line-height: 1.9;
}
.p-iwate-hero__actions,
.p-iwate-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.p-iwate-hero__actions .c-btn {
  background: #fff;
  color: #0f4f4a;
  border-color: #fff;
}
.p-iwate-hero__actions .c-btn--outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.p-iwate-hero__panel {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: 26px;
  backdrop-filter: blur(18px);
}
.p-iwate-hero__panel-label {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #bae6fd;
}
.p-iwate-focus-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-iwate-focus-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1.5rem;
  line-height: 1.55;
}
.p-iwate-focus-list span {
  color: #fcd34d;
  font-family: var(--font-en);
  font-weight: 800;
}
.p-iwate-intro__grid,
.p-iwate-about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.p-iwate-intro h2,
.p-iwate-about h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.45;
  letter-spacing: 0;
}
.p-iwate-intro p,
.p-iwate-about p {
  font-size: 1.55rem;
  line-height: 2;
  color: var(--color-text-light);
}
.p-section-heading--left {
  text-align: left;
}
.p-section-heading--between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}
.p-section-heading--left .p-section-heading__ja,
.p-section-heading--between .p-section-heading__ja {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
}
.p-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.p-topic-card {
  display: block;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, .11);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.p-topic-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}
.p-topic-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.55;
}
.p-topic-card p {
  margin: 12px 0 0;
  color: var(--color-text-light);
  font-size: 1.35rem;
  line-height: 1.75;
}
.p-text-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.p-latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
}
.p-latest-layout .p-article-card:first-child {
  grid-row: span 4;
}
.p-article-card {
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, .1);
  box-shadow: none;
}
.p-article-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}
.p-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-article-card__noimg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15,118,110,.92), rgba(37,99,235,.70)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 1px, transparent 1px 14px);
}
.p-article-card__noimg span {
  color: rgba(255,255,255,.78);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.p-article-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  background: rgba(255,255,255,.92);
  border: 0;
  border-radius: 4px;
  color: var(--accent-dark);
}
.p-article-card__body {
  padding: 18px;
}
.p-article-card__meta {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
}
.p-article-card__title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.55;
  letter-spacing: 0;
}
.p-article-card--featured .p-article-card__thumb {
  aspect-ratio: 16 / 10;
}
.p-article-card--featured .p-article-card__body {
  padding: 24px;
}
.p-article-card--featured .p-article-card__title {
  font-size: clamp(2.2rem, 3vw, 3rem);
}
.p-article-card__excerpt {
  margin: 14px 0 0;
  color: var(--color-text-light);
}
.p-iwate-about {
  background: #0f172a;
  color: #fff;
}
.p-iwate-about .p-label {
  color: #fcd34d;
}
.p-iwate-about p {
  color: rgba(255,255,255,.78);
}
.p-iwate-about .c-btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.p-sub-hero--archive {
  padding: 122px 0 64px;
  text-align: left;
}
.p-sub-hero--archive .p-sub-hero__inner {
  max-width: 1180px;
  padding: 0 24px;
}
.p-sub-hero--archive .p-sub-hero__title {
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.p-sub-hero--archive .p-sub-hero__sub {
  letter-spacing: 0;
  color: rgba(255,255,255,.86);
}
.p-empty {
  padding: 32px;
  border: 1px dashed rgba(15,23,42,.18);
  border-radius: 8px;
  color: var(--color-text-light);
}
@media (max-width: 960px) {
  .p-iwate-hero__inner,
  .p-iwate-intro__grid,
  .p-iwate-about__grid,
  .p-latest-layout {
    grid-template-columns: 1fr;
  }
  .p-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-latest-layout .p-article-card:first-child {
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .l-header__logo a {
    width: 205px;
    height: 46px;
  }
  .p-iwate-hero {
    padding: 104px 0 52px;
  }
  .p-iwate-hero__inner {
    padding: 0 20px;
    gap: 32px;
  }
  .p-iwate-hero__title {
    font-size: 3.4rem;
  }
  .p-topic-grid {
    grid-template-columns: 1fr;
  }
  .p-section-heading--between {
    align-items: start;
    flex-direction: column;
  }
}
