html {
  font-size: 62.5%;
  min-height: 100%;
  position: relative;
}

a,
a:visited {
  text-decoration: none;
  color: #000;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  min-height: 100svh;
}

.grid_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 720px) {
  .grid_wrapper {
    min-height: 100svh;
  }
}

.header {
  grid-area: header;
  border-bottom: 1px solid #000;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  position: fixed;
}

@media (max-width: 720px) {
  .header {
    position: fixed;
  }
}

.header::after {
  content: "";
  display: block;
  border-bottom: 1px solid #458B45;
  position: relative;
  bottom: -3px;
}

.header .header_inner {
  background-color: #fff;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "logo . menu" "logo . menu";
}

@media (max-width: 720px) {
  .header .header_inner {
    grid-template-areas: "logo . menubtn" "menu menu menu";
    align-self: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 0;
  }
}

.header .header_inner .logo {
  grid-area: logo;
  margin-inline-start: 20px;
  margin-block: 5px;
}

.header .header_inner .menu {
  grid-area: menu;
  grid-auto-rows: minmax(50px, auto);
  display: block;
}

@media (max-width: 720px) {
  .header .header_inner .menu {
    opacity: 0;
  }
}

.header .header_inner .menu.open {
  background: #fff;
  display: grid;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 720px) {
  .header .header_inner .menu.open ul {
    display: grid;
    grid-auto-rows: minmax(50px, auto);
    height: auto;
    position: absolute;
    top: 52px;
    width: 100%;
    background-color: #fff;
  }
  .header .header_inner .menu.open ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #458B45;
  }
}

.header .header_inner .menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.header .header_inner .menu ul li {
  height: 100%;
  width: 106px;
}

.header .header_inner .menu ul li a {
  text-decoration: none;
  color: #000;
  height: 100%;
  width: 106px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 720px) {
  .header .header_inner .menu ul li a {
    width: 100%;
  }
}

.header .header_inner .menu ul li a:hover, .header .header_inner .menu ul li a.active {
  background-color: rgba(217, 217, 217, 0.5);
}

.header .header_inner .menubtn {
  grid-area: menubtn;
  display: none;
}

@media (max-width: 720px) {
  .header .header_inner .menubtn {
    display: grid;
    justify-content: end;
    padding-inline-end: 20px;
    z-index: 1;
  }
}

.header .header_inner .menubtn .hamburger {
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.header .header_inner .menubtn .hamburger span {
  display: block;
  position: absolute;
  width: 28px;
  height: 4px;
  left: 6px;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header .header_inner .menubtn .hamburger span:nth-child(1) {
  top: 10px;
}

.header .header_inner .menubtn .hamburger span:nth-child(2) {
  top: 20px;
}

.header .header_inner .menubtn .hamburger span:nth-child(3) {
  top: 30px;
}

.header .header_inner .menubtn .hamburger.open span:nth-child(1) {
  top: 20px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .header_inner .menubtn .hamburger.open span:nth-child(2), .header .header_inner .menubtn .hamburger.open span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .header_inner h1 img {
  max-width: 100%;
  max-height: 40px;
}

.main {
  grid-area: main;
}

.main .container {
  max-width: 980px;
  margin-inline: auto;
  padding-top: 55px;
}

@media (max-width: 720px) {
  .main .container {
    padding-top: 0;
  }
}

.footer {
  grid-area: footer;
  width: 100%;
  text-align: center;
  background-image: url(../images/footer_bg.png);
  background-color: #fff;
}

.footer .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  color: #000;
  padding: 6px 0;
}

.footer .shadow {
  content: " ";
  height: 10px;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
}

.text_a,
.singleBase p {
  line-height: 2em;
  text-align: justify;
}

.text_b {
  line-height: 1.75em;
  text-align: justify;
}

.text_center {
  text-align: center;
}

.dropcap::first-letter {
  font-size: 180%;
}

.heading-groupA {
  text-align: center;
  margin: 55px auto;
}

.heading-groupA h2 {
  color: #C84630;
  font-weight: 100;
  font-size: 28px;
  font-size: 2.8rem;
}

.heading-groupA h3 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .heading-groupA h3 {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

.ftcl_alert {
  color: #C84630;
}

.member_grid > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr 1fr;
  grid-template-rows: auto;
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-template-areas: "portrait nickname intro intro";
  margin-block-end: 35px;
  align-items: center;
}

@media (max-width: 800px) {
  .member_grid > .wp-block-group__inner-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "portrait nickname" "intro intro";
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .member_grid > .wp-block-group__inner-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr auto 1fr;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "portrait" "nickname" "intro";
    width: 100%;
  }
}

.portrait {
  grid-area: portrait;
}

.portrait img {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 480px) {
  .portrait img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.nickname {
  grid-area: nickname;
  display: grid;
  place-content: center;
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 480px) {
  .nickname {
    padding-block: 10px 20px;
  }
}

.nickname em {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FFF455 30%);
  font-style: normal;
}

.intro {
  padding: 10px;
  grid-area: intro;
  background-color: #ECECEC;
  height: 100%;
}

.page-nav {
  text-align: center;
  margin-block: 50px;
}

@media (max-width: 720px) {
  .page-nav .wp-pagenavi .pages {
    display: block;
    width: max-content;
    margin: 0 auto 30px;
  }
}

.page-nav .wp-pagenavi span,
.page-nav .wp-pagenavi a {
  padding: 10px 15px;
}

.page-nav .wp-pagenavi span.current {
  background: #000;
  color: #fff;
}

.articleArea {
  max-width: 600px;
  margin: 0 auto;
}

.articleArea a article:hover {
  box-shadow: 0px 0px 15px 3px #ccc;
  transition: .5s;
}

.articleArea .post_title {
  font-weight: 400;
  font-size: 20px;
}

.articleArea .sub_ttl {
  font-size: 16px;
  margin-block-start: 10px;
}

.articleArea .more {
  margin-block-start: 20px;
}

.articleArea .read {
  margin-block-start: 10px;
}

.articleArea .date {
  font-size: 16px;
  margin-block: 10px;
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.verAi_column {
  box-sizing: border-box;
  position: relative;
  padding: 0 17px;
  margin-block: 30px;
  border: solid 2px #B8A422;
}

.verAi_column::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 3px;
  width: 14px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.verAi_column .cateHeader {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  margin-block-end: 10px;
}

.verAi_column .cateHeader span {
  font-size: 14px;
}

.verAi_column::before {
  background: #B8A422;
}

.verAi_column .cateHeader {
  border-bottom: 2px solid #B8A422;
}

.verAi_interview {
  box-sizing: border-box;
  position: relative;
  padding: 0 17px;
  margin-block: 30px;
  border: solid 2px #C84630;
}

.verAi_interview::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 3px;
  width: 14px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.verAi_interview .cateHeader {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  margin-block-end: 10px;
}

.verAi_interview .cateHeader span {
  font-size: 14px;
}

.verAi_interview::before {
  background: #C84630;
}

.verAi_interview .cateHeader {
  border-bottom: 2px solid #C84630;
}

.verAi_reportage {
  box-sizing: border-box;
  position: relative;
  padding: 0 17px;
  margin-block: 30px;
  border: solid 2px #458B45;
}

.verAi_reportage::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 3px;
  width: 14px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.verAi_reportage .cateHeader {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  margin-block-end: 10px;
}

.verAi_reportage .cateHeader span {
  font-size: 14px;
}

.verAi_reportage::before {
  background: #458B45;
}

.verAi_reportage .cateHeader {
  border-bottom: 2px solid #458B45;
}

.moreArticle {
  text-align: center;
}

.moreArticle button {
  padding: 5px 30px;
  border-bottom: double 2px #000;
  font-weight: 400;
}

.btn-col {
  text-align: center;
}

.btn-col input {
  cursor: pointer;
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  width: 150px;
  background-color: #d3d3d3;
  border: none;
}

.btn-col input[name="cnfm-send"] {
  background-color: #000;
  color: #fff;
}

.mw_wp_form_input .opening {
  display: block;
}

.mw_wp_form_input .confirm {
  display: none;
}

.mw_wp_form_confirm .opening {
  display: none;
}

.mw_wp_form_confirm .confirm {
  display: block;
}

.mw_wp_form_confirm .btn-col {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.i_link_after {
  text-decoration: underline;
  gap: 10px;
}

.i_link_after::after {
  content: url(../images/i_w-open.svg);
  display: inline;
  vertical-align: middle;
  margin-left: 5px;
}

input,
textarea {
  width: 100%;
  border: none;
  font-size: 1.5rem;
  padding: 8px;
  border-bottom: 1px solid #333333;
  margin-block-start: 2px;
}

input {
  background-color: rgba(0, 0, 0, 0.05);
}

textarea {
  margin-top: 4px;
  border: 1px solid #000;
}

label {
  font-weight: 400;
}

.singleBase {
  padding: 0 20px;
  margin-block: 30px;
}

.KV_area img {
  max-height: 300px;
  margin: 20px auto 0;
  max-width: 920px;
  border: solid #fff 10px;
}

@media (max-width: 720px) {
  .KV_area img {
    max-width: 100%;
  }
}

.singleHeading .cateHeader {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  margin-block-end: 10px;
  font-weight: inherit;
}

.singleHeading .cateHeader span {
  font-size: 14px;
}

.singleHeading .cateHeader::after {
  content: "";
  position: absolute;
  width: 60%;
  bottom: 0;
}

@media (max-width: 720px) {
  .singleHeading .cateHeader::after {
    width: 100%;
  }
}

.singleHeading .post_title {
  font-weight: 600;
  font-size: 32px;
  margin-top: 20px;
}

@media (max-width: 720px) {
  .singleHeading .post_title {
    font-size: 24px;
  }
}

.singleHeading .sub_ttl {
  font-size: 22px;
  margin-block-start: 10px;
  font-weight: 400;
}

@media (max-width: 720px) {
  .singleHeading .sub_ttl {
    font-size: 18px;
  }
}

.singleHeading .releaseData {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
  font-size: 14px;
  padding: 10px;
  margin-block-end: 10px;
  font-weight: inherit;
}

.singleHeading .releaseData .author,
.singleHeading .releaseData .date {
  display: flex;
  gap: 10px;
  align-items: center;
}

.column {
  background: rgba(184, 164, 34, 0.1);
  padding: 20px 40px 40px;
}

@media (max-width: 720px) {
  .column {
    padding: 20px 20px;
  }
}

.column .cateHeader::after {
  border-bottom: solid #B8A422 2px;
}

.reportage {
  background: rgba(69, 139, 69, 0.1);
  padding: 20px 40px 40px;
}

@media (max-width: 720px) {
  .reportage {
    padding: 20px 20px;
  }
}

.reportage .cateHeader::after {
  border-bottom: solid #458B45 2px;
}

.interview {
  background: rgba(200, 70, 48, 0.07);
  padding: 20px 40px 40px;
}

@media (max-width: 720px) {
  .interview {
    padding: 20px 20px;
  }
}

.interview .cateHeader::after {
  border-bottom: solid #C84630 2px;
}

.p-block > .wp-block-group__inner-container > .wp-block-columns {
  border: double 2px #C84630;
  margin-block-start: 20px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 20px;
  grid-template-areas: "p-img-block p-text-block";
}

@media (max-width: 720px) {
  .p-block > .wp-block-group__inner-container > .wp-block-columns {
    grid-template-areas: "p-img-block" "p-text-block";
    grid-template-columns: 1fr;
  }
}

.p-block > .wp-block-group__inner-container > .wp-block-columns .p-img-block {
  grid-area: p-img-block;
  place-self: center;
}

.p-block > .wp-block-group__inner-container > .wp-block-columns .p-img-block img {
  height: auto;
}

.p-block > .wp-block-group__inner-container > .wp-block-columns .p-text-block {
  grid-area: p-text-block;
}

.p-block > .wp-block-group__inner-container > .wp-block-columns .p-text-block .p_name {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 17px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt0 {
  padding-top: 0;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

/* HBOL-like media archive */
.media-archive-page {
  background: #fff;
}

.media-container {
  max-width: 1080px;
}

.media-heading {
  margin: 58px auto 28px;
}

.media-heading h2 {
  color: #458B45;
  font-weight: 500;
  letter-spacing: 0;
}

.media-heading h3 {
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: 0;
}

.media-lead {
  max-width: 720px;
  margin: 0 auto 34px;
  border-top: 1px solid #d8ded8;
  border-bottom: 1px solid #d8ded8;
  padding: 16px 0;
}

.media-lead p {
  margin: 0;
  line-height: 1.9;
  text-align: center;
  color: #333;
}

.media-card-grid {
  display: grid;
  /* 列数の正準定義は後続の .media-card-grid（PC3列／960px以下2列／720px以下1列）に集約。
     ここで列数は指定しない（旧2列定義は廃止） */
  gap: 26px 28px;
  margin: 0 auto;
}

.media-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid #d9d9d9;
  padding-top: 18px;
  min-width: 0;
}

.media-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f1f3f1;
  overflow: hidden;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.media-card__image:hover img {
  transform: scale(1.03);
}

.media-card__body {
  min-width: 0;
}

.media-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.media-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid #111;
  padding: 2px 8px;
  font-weight: 600;
  color: #111;
  background: #fff;
}

.media-card__category:hover {
  background: #111;
  color: #fff;
}

.media-card__title {
  margin: 0;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0;
}

.media-card__title a {
  color: #111;
}

.media-card__title a:hover {
  color: #458B45;
}

.media-card__subtitle {
  margin: 7px 0 0;
  color: #555;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
}

.media-card__excerpt {
  margin: 10px 0 0;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  font-size: 13px;
  font-size: 1.3rem;
}

.media-card__author {
  color: #333;
  font-weight: 600;
}

.media-card__author::before {
  content: "by ";
  color: #777;
  font-weight: 400;
}

.media-card__author:hover {
  color: #458B45;
}

.media-card__readmore {
  flex: 0 0 auto;
  border-bottom: 1px solid #111;
  color: #111;
  font-weight: 600;
}

.media-empty {
  text-align: center;
  margin: 40px 0;
}

.media-page-nav {
  margin-block: 46px 56px;
}

@media (max-width: 960px) {
  .media-card-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .media-container {
    padding-inline: 18px;
  }

  .media-heading {
    margin: 28px auto 18px;
  }

  .media-heading h3 {
    font-size: 30px;
    font-size: 3.0rem;
  }

  .media-lead {
    margin-bottom: 26px;
  }

  .media-lead p {
    text-align: left;
  }

  .media-card {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    padding-top: 16px;
  }

  .media-card__title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.55;
  }

  .media-card__excerpt,
  .media-card__subtitle {
    display: none;
  }

  .media-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card__image {
    aspect-ratio: 16 / 9;
  }
}

/* HBOL MVP additions: pickup, archives, article detail, editorial footer */
.section-title {
  margin: 34px 0 18px;
  border-left: 5px solid #111;
  padding-left: 14px;
}

.section-title p,
.archive-eyebrow,
.article-author-box__label {
  margin: 0 0 3px;
  color: #458B45;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.35;
}

.section-title--archive {
  margin-top: 42px;
}

.pickup-section {
  margin: 0 0 42px;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pickup-card {
  border: 1px solid #d7ddd7;
  background: #fff;
}

.pickup-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f3f1;
}

.pickup-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pickup-card__body {
  padding: 16px 18px 18px;
}

.pickup-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 8px;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
}

.pickup-card__meta a {
  font-weight: 700;
  color: #458B45;
}

.pickup-card h2 {
  margin: 0;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.55;
}

.pickup-card p {
  margin: 10px 0 0;
  color: #333;
  line-height: 1.75;
}

.archive-heading,
.author-profile-block {
  margin: 58px 0 34px;
  border-bottom: 2px solid #111;
  padding-bottom: 22px;
}

.archive-heading h1,
.author-profile-block h1 {
  margin: 0;
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.35;
}

.archive-description {
  max-width: 720px;
  margin-top: 12px;
  color: #333;
  line-height: 1.8;
}

.author-profile-block {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.author-profile-block__avatar img,
.article-author-box__avatar img {
  border-radius: 50%;
}

.author-profile-block__body p:last-child {
  margin-bottom: 0;
  line-height: 1.8;
}

.article-detail-page {
  background: #fff;
}

.article-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 70px;
}

.article-detail__header {
  border-bottom: 1px solid #d7ddd7;
  padding-bottom: 24px;
}

.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
  color: #555;
  font-size: 13px;
  font-size: 1.3rem;
}

.article-detail__category {
  border: 1px solid #111;
  padding: 3px 9px;
  font-weight: 700;
}

.article-detail h1 {
  margin: 0;
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0;
}

.article-detail__subtitle {
  margin: 14px 0 0;
  color: #555;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
}

.article-detail__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.article-detail__author img {
  border-radius: 50%;
}

.article-detail__eyecatch {
  margin: 28px 0;
  background: #f1f3f1;
}

.article-detail__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.95;
  color: #111;
}

.article-body p {
  margin: 0 0 1.55em;
}

.article-body h2 {
  margin: 2.2em 0 1em;
  border-left: 5px solid #458B45;
  padding-left: 14px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.55;
}

.article-body h3 {
  margin: 2em 0 1em;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.55;
}

.article-body a {
  color: #1c6f3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 本文中のマーカー(mark)を、派手なベタ塗りから落ち着いた蛍光ペン風に統一。
   記事側のインライン背景色(例 #fcb900)を打ち消し、文字下だけ淡く敷く。 */
.article-body mark {
  background: linear-gradient(transparent 62%, rgba(252, 185, 0, .35) 62%) !important;
  color: inherit !important;
  padding: 0;
}

.article-body blockquote {
  margin: 2em 0;
  border-left: 4px solid #d7ddd7;
  padding: 4px 0 4px 18px;
  color: #333;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.6em 1.4em;
  line-height: 1.9;
}

.article-author-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  margin: 46px 0;
  border-top: 1px solid #d7ddd7;
  border-bottom: 1px solid #d7ddd7;
  padding: 20px 0;
}

.article-author-box h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-size: 2.0rem;
}

.article-author-box p:last-child {
  margin: 0;
  line-height: 1.8;
}

.related-section {
  margin-top: 44px;
}

.related-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.editorial-footer {
  text-align: left;
  border-top: 1px solid #111;
  background-image: none;
  background-color: #f7f8f7;
}

.editorial-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 28px;
}

.editorial-footer__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 800;
}

.editorial-footer__brand p:last-child {
  margin: 0;
  line-height: 1.8;
}

.editorial-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  align-content: start;
}

.editorial-footer__nav a {
  border-bottom: 1px solid #d7ddd7;
  padding-bottom: 7px;
  font-weight: 600;
}

.editorial-footer .copyright {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px 18px;
  color: #555;
  text-align: left;
}

@media (max-width: 720px) {
  .pickup-grid,
  .editorial-footer__inner {
    grid-template-columns: 1fr;
  }

  .archive-heading,
  .author-profile-block {
    margin-top: 30px;
  }

  .archive-heading h1,
  .author-profile-block h1,
  .article-detail h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }

  .author-profile-block {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .article-detail {
    padding: 28px 18px 52px;
  }

  .article-body {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .editorial-footer__nav {
    grid-template-columns: 1fr;
  }
}

/* Editorial MVP visual reset */
:root {
  --gr-ink: #151515;
  --gr-muted: #666;
  --gr-line: #d8d8d2;
  --gr-paper: #fbfaf7;
  --gr-card: #ffffff;
  --gr-green: #2f7b45;
  --gr-red: #b9402c;
}

html {
  background: var(--gr-paper);
}

body {
  background: var(--gr-paper);
  color: var(--gr-ink);
  font-family: "Noto Sans JP", "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

a,
a:visited {
  color: inherit;
}

.grid_wrapper.editorial-shell,
.grid_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--gr-paper);
}

.grid_wrapper > .main {
  flex: 1 0 auto;
}

.site-header {
  grid-area: header;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid var(--gr-ink);
  backdrop-filter: blur(8px);
}

.site-header__top,
.site-header__main {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 24px;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 12px;
}

.site-header__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.site-header__brand img {
  width: 178px;
  height: auto;
  display: block;
}

.site-header__brand span {
  font-size: 11px;
  font-size: 1.1rem;
  color: var(--gr-muted);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header__utility,
.site-header__primary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-header__utility {
  justify-content: flex-end;
  gap: 18px;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
}

.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--gr-line);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__primary {
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-header__primary a,
.site-header__cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid transparent;
  padding: 6px 11px;
  white-space: nowrap;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.site-header__primary a {
  background: #fff;
  border-color: var(--gr-line);
}

.site-header__primary a:hover,
.site-header__primary a.is-active {
  color: #fff;
  background: var(--gr-ink);
  border-color: var(--gr-ink);
}

.site-header__cta {
  flex: 0 0 auto;
  color: #fff;
  background: var(--gr-red);
  border-color: var(--gr-red);
}

.main .container,
.media-container {
  max-width: 1160px;
  padding-top: 0;
}

.media-archive-page {
  grid-area: main;
  background: var(--gr-paper);
}

.media-container {
  padding: 34px 24px 64px;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 24px;
  align-items: end;
  margin: 0 0 22px;
  border-bottom: 3px solid var(--gr-ink);
  padding-bottom: 18px;
  text-align: left;
}

.media-heading h2 {
  margin: 0;
  color: var(--gr-red);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.media-heading h3 {
  margin: 0;
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1.1;
  font-weight: 900;
}

.media-lead {
  max-width: none;
  margin: 0 0 34px;
  border: 0;
  padding: 0;
}

.media-lead p {
  max-width: 760px;
  margin: 0;
  color: #333;
  text-align: left;
  line-height: 1.9;
  font-weight: 500;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
  border-left: 0;
  border-bottom: 1px solid var(--gr-ink);
  padding: 0 0 9px;
}

.section-title p,
.archive-eyebrow,
.article-author-box__label {
  color: var(--gr-red);
  font-weight: 900;
  letter-spacing: .08em;
}

.section-title h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
}

.pickup-section {
  margin: 0 0 46px;
}

.pickup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 24px;
}

.pickup-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--gr-ink);
  background: var(--gr-card);
}

.pickup-card:first-child {
  grid-row: span 2;
}

.pickup-card__image {
  aspect-ratio: 16 / 9;
  background: #ecebe5;
}

.pickup-card:first-child .pickup-card__image {
  aspect-ratio: 16 / 10;
}

.pickup-card__image img,
.media-card__image img {
  filter: saturate(.95) contrast(1.02);
}

.pickup-card__body {
  padding: 18px 20px 20px;
}

.pickup-card h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
}

.pickup-card:first-child h2 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.45;
}

.pickup-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-title--archive {
  margin-top: 0;
}

.media-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.media-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  gap: 0;
  border: 1px solid var(--gr-line);
  border-top: 4px solid var(--gr-ink);
  padding: 0;
  background: var(--gr-card);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.media-card:hover {
  border-color: var(--gr-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
}

.media-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #ecebe5;
}

.media-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px 16px 16px;
}

.media-card__meta {
  margin-bottom: 10px;
  font-weight: 700;
}

.media-card__category {
  min-height: 24px;
  border-color: var(--gr-ink);
  padding: 3px 9px;
  background: var(--gr-paper);
}

.media-card__title {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.55;
  font-weight: 900;
}

.media-card__subtitle {
  color: #555;
  font-weight: 700;
}

.media-card__excerpt {
  -webkit-line-clamp: 4;
  color: #333;
}

.media-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gr-line);
}

.media-page-nav {
  margin-block: 42px 0;
}

.archive-heading,
.author-profile-block {
  max-width: 1160px;
  margin: 34px auto 30px;
  border-bottom: 3px solid var(--gr-ink);
  padding-bottom: 20px;
}

.archive-heading h1,
.author-profile-block h1 {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 900;
}

.article-detail-page {
  grid-area: main;
  background: var(--gr-paper);
}

.article-detail {
  max-width: 820px;
  padding: 44px 24px 72px;
}

.article-detail__header {
  border-bottom: 3px solid var(--gr-ink);
}

.article-detail h1 {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 900;
}

.article-detail__category {
  background: #fff;
  font-weight: 900;
}

.article-detail__eyecatch {
  border: 1px solid var(--gr-line);
  background: #ecebe5;
}

.article-body {
  background: #fff;
  border: 1px solid var(--gr-line);
  padding: 34px 38px;
  font-size: 17px;
  font-size: 1.7rem;
}

.article-author-box,
.related-section {
  background: #fff;
}

.related-card-grid .media-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.related-card-grid .media-card__image {
  height: 100%;
  aspect-ratio: auto;
}

.editorial-footer {
  grid-area: footer;
  background: #101010;
  color: #fff;
  border-top: 0;
}

.editorial-footer__inner {
  max-width: 1160px;
}

.editorial-footer__brand p:last-child,
.editorial-footer .copyright {
  color: #c9c9c9;
}

.editorial-footer__nav a {
  color: #fff;
  border-bottom-color: #333;
}

@media (max-width: 960px) {
  .site-header__main {
    align-items: flex-start;
    flex-direction: column;
  }

  .pickup-grid,
  .media-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pickup-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header__top,
  .site-header__main {
    padding-inline: 16px;
  }

  .site-header__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-header__utility {
    justify-content: flex-start;
  }

  .site-header__primary {
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 2px;
  }

  .media-container {
    padding: 24px 16px 48px;
  }

  .media-heading {
    display: block;
    margin-bottom: 18px;
  }

  .media-heading h3,
  .archive-heading h1,
  .author-profile-block h1,
  .article-detail h1 {
    font-size: 30px;
    font-size: 3.0rem;
  }

  .pickup-grid,
  .media-card-grid {
    grid-template-columns: 1fr;
  }

  .pickup-card:first-child h2,
  .pickup-card h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .media-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .media-card__image {
    height: 100%;
    aspect-ratio: auto;
  }

  .media-card__body {
    padding: 12px;
  }

  .media-card__title {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .media-card__excerpt,
  .media-card__subtitle {
    display: none;
  }

  .article-detail {
    padding: 24px 16px 52px;
  }

  .article-body {
    padding: 24px 18px;
  }

  .related-card-grid .media-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }
}

@media (max-width: 460px) {
  .media-card,
  .related-card-grid .media-card {
    grid-template-columns: 1fr;
  }

  .media-card__image,
  .related-card-grid .media-card__image {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* Writer/signature fixes */
.writer-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gr-ink);
  border-radius: 50%;
  background: var(--gr-paper);
  color: var(--gr-ink);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.writer-mark--large {
  width: 72px;
  height: 72px;
  font-size: 30px;
  font-size: 3.0rem;
}

.writer-filter-bar {
  margin: 0 0 24px;
}

.writer-filter-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--gr-ink);
  padding: 6px 12px;
  background: #fff;
  font-weight: 800;
}

.writer-filter-bar a::before {
  content: "←";
  margin-right: 8px;
}

/* Writer list page */
.writer-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.writer-list-card a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  height: 100%;
  border: 1px solid var(--gr-line);
  border-top: 4px solid var(--gr-ink);
  padding: 16px;
  background: #fff;
}

.writer-list-card strong,
.writer-list-card em {
  display: block;
}

.writer-list-card strong {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 900;
}

.writer-list-card em {
  margin-top: 4px;
  color: var(--gr-muted);
  font-size: 13px;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 700;
}

.account-archive-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--gr-ink);
  padding: 7px 12px;
  background: #fff;
  font-weight: 900;
}

.author-profile-block--account {
  display: block;
}

@media (max-width: 960px) {
  .writer-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .writer-list-grid {
    grid-template-columns: 1fr;
  }
}



.writer-list-card__link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  border: 1px solid var(--gr-ink);
  padding: 4px 9px;
  color: var(--gr-ink);
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

/* Publisher media PoC implementation */
.site-header__brand span {
  max-width: 360px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

.media-heading--poc {
  grid-template-columns: minmax(0, .9fr) minmax(320px, 620px);
  align-items: center;
}

.media-heading--poc .media-lead {
  margin: 0;
}

.genre-link-section,
.media-action-strip {
  margin-top: 46px;
}

.genre-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.genre-link-grid a,
.media-action-strip a,
.about-section-grid article {
  border: 1px solid var(--gr-line);
  border-top: 4px solid var(--gr-red);
  background: #fff;
}

.genre-link-grid a {
  display: block;
  min-height: 94px;
  padding: 16px 14px;
}

.genre-link-grid strong,
.genre-link-grid span,
.media-action-strip strong,
.media-action-strip span {
  display: block;
}

.genre-link-grid strong {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 900;
}

.genre-link-grid span,
.media-action-strip span {
  margin-top: 6px;
  color: var(--gr-muted);
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
}

.media-action-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.media-action-strip a {
  min-height: 96px;
  padding: 18px;
}

.media-action-strip strong {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
}

.article-contact-box {
  margin-top: 22px;
  border: 1px solid var(--gr-line);
  border-left: 5px solid var(--gr-red);
  padding: 22px 24px;
  background: #fff;
}

.article-contact-box h2 {
  margin: 4px 0 8px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 900;
}

.article-contact-box p {
  margin: 0 0 14px;
  line-height: 1.85;
}

.article-contact-box a,
.about-section-grid article a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--gr-ink);
  padding: 7px 12px;
  background: var(--gr-ink);
  color: #fff;
  font-weight: 900;
}

.about-poc-page .article-body {
  max-width: none;
  margin: 0 0 34px;
  padding: 28px 32px;
  background: var(--gr-paper);
  border: 1px solid var(--gr-line);
  border-radius: 12px;
}

.about-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-section-grid article {
  padding: 22px;
}

.about-section-grid article h2 {
  margin: 4px 0 10px;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 900;
}

.about-section-grid article p:not(.archive-eyebrow) {
  margin: 0 0 16px;
  line-height: 1.85;
}

.editorial-footer__inner--poc {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.editorial-footer__operator {
  margin-top: 14px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 800;
}

.editorial-footer__nav--columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.editorial-footer__nav--columns h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
}

.editorial-footer__nav--columns a {
  display: block;
  padding: 8px 0;
}

@media (max-width: 960px) {
  .media-heading--poc,
  .editorial-footer__inner--poc,
  .editorial-footer__nav--columns {
    grid-template-columns: 1fr;
  }

  .genre-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-section-grid,
  .media-action-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header__brand span {
    max-width: none;
  }

  .genre-link-grid,
  .about-section-grid,
  .media-action-strip {
    grid-template-columns: 1fr;
  }

  .genre-link-grid a,
  .media-action-strip a {
    min-height: auto;
  }
}


/* Editorial polish pass: text navigation and flatter article layout */
.site-header {
  position: sticky;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #111;
}

.site-header__top {
  padding-top: 16px;
  padding-bottom: 14px;
}

.site-header__brand {
  min-width: 0;
}

.site-header__brand img {
  width: 196px;
}

.site-header__brand span {
  margin-top: 2px;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.site-header__utility {
  gap: 20px;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-header__utility a,
.site-header__primary a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.site-header__utility a:hover,
.site-header__primary a:hover,
.site-header__primary a.is-active {
  color: #111;
  border-bottom-color: #111;
}

.site-header__main {
  justify-content: center;
  border-top: 1px solid #e7e2dc;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header__primary {
  justify-content: center;
  gap: 28px;
}

.site-header__primary a,
.site-header__cta {
  min-height: auto;
  border: 0;
  padding: 0 0 3px;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.site-header__primary a:hover,
.site-header__primary a.is-active {
  background: transparent;
  color: #111;
  border-color: #111;
}

.media-container {
  padding-top: 42px;
}

.media-heading {
  border-bottom: 1px solid #111;
  padding-bottom: 24px;
}

.media-heading h2,
.section-title p,
.archive-eyebrow,
.article-author-box__label {
  color: #8e1f16;
  letter-spacing: .05em;
}

.media-heading h3 {
  max-width: 680px;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.12;
  font-weight: 900;
}

.media-lead p {
  color: #303030;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.section-title {
  border-bottom: 1px solid #111;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 22px;
  font-size: 2.2rem;
}

.pickup-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 30px;
  border-bottom: 1px solid #ded8d0;
  padding-bottom: 40px;
}

.pickup-card,
.pickup-card:first-child,
.media-card {
  border: 0;
  border-top: 0;
  background: transparent;
  box-shadow: none;
}

.pickup-card {
  border-bottom: 1px solid #ded8d0;
  padding-bottom: 22px;
}

.pickup-card:first-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pickup-card__image,
.media-card__image {
  overflow: hidden;
  background: #e9e5de;
}

.pickup-card__body {
  padding: 16px 0 0;
}

.pickup-card:first-child .pickup-card__body {
  padding-top: 20px;
}

.pickup-card__meta,
.media-card__meta,
.article-detail__meta {
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.pickup-card__meta a,
.media-card__category,
.article-detail__category {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8e1f16;
  text-transform: none;
}

.pickup-card h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.45;
}

.pickup-card:first-child h2 {
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.28;
}

.pickup-card p {
  margin-top: 10px;
  color: #333;
  line-height: 1.85;
}

.pickup-card__author {
  display: inline-block;
  margin-top: 12px;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.media-card-grid {
  gap: 34px 26px;
}

.media-card:hover {
  transform: none;
  box-shadow: none;
}

.media-card__body {
  padding: 13px 0 0;
}

.media-card__title {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.45;
}

.media-card__excerpt {
  color: #3b3b3b;
  line-height: 1.75;
}

.media-card__footer {
  border-top: 0;
  padding-top: 12px;
}

.media-card__author {
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.media-card__readmore {
  display: none;
}

.genre-link-grid a,
.media-action-strip a,
.about-section-grid article,
.writer-list-card a {
  border: 1px solid #ded8d0;
  border-top: 1px solid #111;
  background: #fff;
}

.genre-link-grid strong,
.media-action-strip strong {
  font-size: 17px;
  font-size: 1.7rem;
}

.genre-link-grid span,
.media-action-strip span {
  color: #666;
}

/* 記事一覧下部の導線（執筆者一覧・寄稿・お問い合わせ）は、
   上の「記事カテゴリー」枠とデザインが被るため、濃色背景＋白文字で差別化する */
.media-action-strip a {
  background: var(--gr-ink);
  border-color: var(--gr-ink);
  color: #fff;
}
.media-action-strip strong {
  color: #fff;
}

/* スマートフォン（≤720px）のトップページ新着記事は5件までに絞る */
@media (max-width: 720px) {
  .media-card-grid--home > .media-card:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header__main {
    align-items: stretch;
  }

  .site-header__primary {
    justify-content: flex-start;
    gap: 22px;
  }

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

  .pickup-card:first-child {
    border-bottom: 1px solid #ded8d0;
    padding-bottom: 22px;
  }
}

@media (max-width: 720px) {
  .site-header__top {
    gap: 10px;
  }

  .site-header__utility {
    gap: 14px;
  }

  .site-header__primary {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }

  .media-heading h3,
  .pickup-card:first-child h2 {
    font-size: 30px;
    font-size: 3.0rem;
  }

  .media-card {
    border-bottom: 1px solid #ded8d0;
    padding-bottom: 18px;
  }

  .media-card__body {
    padding-top: 12px;
  }
}


/* Mobile header repair */
@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #111;
  }

  .site-header__top,
  .site-header__main {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-inline: 0;
  }

  .site-header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px 8px;
  }

  .site-header__brand {
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  .site-header__brand img {
    width: 154px;
  }

  .site-header__brand span,
  .site-header__utility {
    display: none;
  }

  .site-header__main {
    display: block;
    border-top: 1px solid #e7e2dc;
    padding: 0;
    overflow: hidden;
  }

  .site-header__primary {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 14px 11px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-header__primary a {
    flex: 0 0 auto;
    min-height: auto;
    border: 0;
    border-bottom: 1px solid transparent;
    padding: 0 0 3px;
    background: transparent;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .site-header__primary a.is-active,
  .site-header__primary a:hover {
    border-bottom-color: #111;
  }
}

@media (max-width: 380px) {
  .site-header__brand img {
    width: 142px;
  }

  .site-header__primary {
    gap: 17px;
    padding-inline: 12px;
  }

  .site-header__primary a {
    font-size: 11px;
    font-size: 1.1rem;
  }
}


/* Mobile header compact pass */
@media (max-width: 720px) {
  .site-header__top {
    padding: 6px 12px 5px;
  }

  .site-header__brand img {
    width: 136px;
  }

  .site-header__main {
    border-top-color: #ece7df;
  }

  .site-header__primary {
    gap: 18px;
    padding: 7px 12px 8px;
  }

  .site-header__primary a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.15;
    padding-bottom: 2px;
  }
}

@media (max-width: 380px) {
  .site-header__top {
    padding-top: 5px;
    padding-bottom: 4px;
  }

  .site-header__brand img {
    width: 128px;
  }

  .site-header__primary {
    gap: 16px;
    padding: 7px 10px 8px;
  }

  .site-header__primary a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}


/* Mobile drawer menu */
.site-header__menu-button,
.publisher-mobile-menu {
  display: none;
}

@media (max-width: 720px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header__top {
    justify-content: space-between;
  }

  .site-header__main {
    display: none;
  }

  .site-header__menu-button {
    display: inline-grid;
    grid-template-columns: 20px auto;
    column-gap: 8px;
    align-items: center;
    border: 0;
    padding: 6px 0 6px 8px;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-header__menu-button span {
    grid-column: 1;
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-header__menu-button span + span {
    margin-top: 4px;
  }

  .site-header__menu-button em {
    grid-column: 2;
    grid-row: 1 / span 3;
    font-style: normal;
  }

  .site-header__menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header__menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .publisher-mobile-menu {
    position: fixed;
    inset: 48px 0 0;
    z-index: 45;
    display: block;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: background .2s ease;
  }

  .publisher-mobile-menu.is-open {
    pointer-events: auto;
    background: rgba(0, 0, 0, .28);
  }

  .publisher-mobile-menu__panel {
    width: min(86vw, 360px);
    height: 100%;
    margin-left: auto;
    border-left: 1px solid #111;
    background: #fff;
    transform: translateX(100%);
    transition: transform .22s ease;
    overflow-y: auto;
    padding: 22px 22px 40px;
  }

  .publisher-mobile-menu.is-open .publisher-mobile-menu__panel {
    transform: translateX(0);
  }

  .publisher-mobile-menu__section + .publisher-mobile-menu__section {
    margin-top: 28px;
    border-top: 1px solid #ded8d0;
    padding-top: 20px;
  }

  .publisher-mobile-menu__section p {
    margin: 0 0 14px;
    color: #8e1f16;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .05em;
  }

  .publisher-mobile-menu__section a {
    display: block;
    border-bottom: 1px solid #ece7df;
    padding: 13px 0;
    color: #111;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .publisher-mobile-menu {
    inset-top: 43px;
  }

  .publisher-mobile-menu__panel {
    width: min(90vw, 340px);
    padding-inline: 20px;
  }

  .publisher-mobile-menu__section a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}


/* Mobile drawer button fix */
@media (max-width: 720px) {
  .site-header__menu-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 64px;
    justify-content: flex-end;
  }

  .site-header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 21px;
    height: 18px;
  }

  .site-header__menu-icon i {
    display: block;
    width: 21px;
    height: 2px;
    background: #111;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-header__menu-button span,
  .site-header__menu-button span + span {
    margin: 0;
  }

  .site-header__menu-button em {
    grid-column: auto;
    grid-row: auto;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


/* Mobile drawer conflict reset */
@media (max-width: 720px) {
  .site-header__menu-button .site-header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 21px;
    height: 18px;
    margin: 0;
    background: transparent;
    transform: none;
  }

  .site-header__menu-button.is-open .site-header__menu-icon {
    transform: none;
  }

  .site-header__menu-button .site-header__menu-icon i {
    flex: 0 0 auto;
    width: 21px;
    height: 2px;
    margin: 0;
    background: #111;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


/* Mobile header hard reset */
@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 50px;
    background: #fff;
    border-bottom: 1px solid #111;
  }

  .site-header__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 50px;
    width: 100%;
    padding: 0 14px;
  }

  .site-header__brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    width: auto;
    height: 50px;
  }

  .site-header__brand img {
    display: block;
    width: 132px;
    height: auto;
    max-height: 28px;
    object-fit: contain;
  }

  .site-header__brand span,
  .site-header__utility,
  .site-header__main {
    display: none;
  }

  .site-header__menu-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 74px;
    height: 50px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #111;
    font-family: inherit;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-header__menu-button em {
    display: block;
    margin: 0;
    font-style: normal;
  }

  .site-header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 18px;
    margin: 0;
    background: transparent;
    transform: none;
  }

  .site-header__menu-icon i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #111;
    transform: none;
    opacity: 1;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .publisher-mobile-menu {
    position: fixed;
    inset: 50px 0 0;
    z-index: 999;
    display: block;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity .18s ease, background .18s ease;
  }

  .publisher-mobile-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    background: rgba(0, 0, 0, .34);
  }

  .publisher-mobile-menu__panel {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    background: #fff;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
    overflow-y: auto;
    padding: 18px 20px 40px;
  }

  .publisher-mobile-menu.is-open .publisher-mobile-menu__panel {
    transform: translateY(0);
    opacity: 1;
  }

  .publisher-mobile-menu__section + .publisher-mobile-menu__section {
    margin-top: 22px;
    border-top: 1px solid #ded8d0;
    padding-top: 18px;
  }

  .publisher-mobile-menu__section p {
    margin: 0 0 8px;
    color: #8e1f16;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .04em;
  }

  .publisher-mobile-menu__section a {
    display: block;
    border-bottom: 1px solid #ece7df;
    padding: 12px 0;
    color: #111;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .site-header {
    height: 46px;
  }

  .site-header__top,
  .site-header__brand,
  .site-header__menu-button {
    height: 46px;
  }

  .site-header__brand img {
    width: 124px;
    max-height: 26px;
  }

  .publisher-mobile-menu {
    inset: 46px 0 0;
  }
}


/* Mobile header measured fixes */
@media (max-width: 720px) {
  .site-header__brand {
    flex-direction: row;
  }

  .publisher-mobile-menu {
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    min-height: calc(100vh - 50px);
  }

  .publisher-mobile-menu__panel {
    min-height: calc(100vh - 50px);
  }
}

@media (max-width: 380px) {
  .publisher-mobile-menu {
    top: 46px;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100vh - 46px);
  }

  .publisher-mobile-menu__panel {
    min-height: calc(100vh - 46px);
  }
}


/* Visual audit fixes: compact header, pickup, labels, footer */
@media (min-width: 901px) {
  .site-header__top {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .site-header__brand img {
    width: 132px;
    max-height: 68px;
    object-fit: contain;
  }

  .site-header__brand {
    gap: 2px;
  }

  .site-header__brand span {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .site-header__main {
    min-height: 36px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 54px;
    background: #fff;
    border-bottom: 1px solid #111;
  }

  .site-header__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 54px;
    max-width: none;
    width: 100%;
    padding: 0 18px;
  }

  .site-header__brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    width: auto;
    height: 54px;
  }

  .site-header__brand img {
    display: block;
    width: 146px;
    max-height: 31px;
    object-fit: contain;
  }

  .site-header__brand span,
  .site-header__utility,
  .site-header__main {
    display: none;
  }

  .site-header__menu-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 78px;
    height: 54px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #111;
    font-family: inherit;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-header__menu-button em {
    display: block;
    margin: 0;
    font-style: normal;
  }

  .site-header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 18px;
    margin: 0;
    background: transparent;
  }

  .site-header__menu-icon i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #111;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open .site-header__menu-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .publisher-mobile-menu {
    position: fixed;
    top: 54px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    height: auto;
    min-height: calc(100vh - 54px);
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity .18s ease, background .18s ease;
  }

  .publisher-mobile-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    background: rgba(0, 0, 0, .34);
  }

  .publisher-mobile-menu__panel {
    width: 100%;
    min-height: calc(100vh - 54px);
    margin: 0;
    border: 0;
    background: #fff;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
    overflow-y: auto;
    padding: 22px 26px 44px;
  }

  .publisher-mobile-menu.is-open .publisher-mobile-menu__panel {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .pickup-grid {
    gap: 22px;
    padding-bottom: 28px;
  }

  .pickup-card:first-child .pickup-card__image {
    aspect-ratio: 16 / 9;
  }

  .pickup-card__image {
    aspect-ratio: 16 / 9;
  }

  .pickup-card:first-child h2 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.32;
  }

  .pickup-card h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .pickup-card p {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 720px) {
  .pickup-section {
    margin-bottom: 32px;
  }

  .pickup-grid {
    gap: 18px;
  }

  .pickup-card {
    padding-bottom: 18px;
  }

  .pickup-card:first-child h2 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.34;
  }

  .pickup-card h2 {
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.45;
  }

  .pickup-card p {
    display: none;
  }

  .pickup-card__author {
    margin-top: 9px;
  }

  .editorial-footer {
    padding-top: 0;
  }

  .editorial-footer__inner,
  .editorial-footer__inner--poc {
    display: block;
    padding: 30px 24px 24px;
  }

  .editorial-footer__brand p:not(.editorial-footer__name) {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .editorial-footer__nav--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
    margin-top: 24px;
  }

  .editorial-footer__nav--columns h2 {
    margin-bottom: 8px;
  }

  .editorial-footer__nav--columns a {
    padding: 6px 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .editorial-footer .copyright {
    padding: 0 24px 24px;
    text-align: left;
  }
}


/* Tablet footer compact fix */
@media (min-width: 721px) and (max-width: 900px) {
  .editorial-footer__inner,
  .editorial-footer__inner--poc {
    display: block;
    padding: 34px 28px 26px;
  }

  .editorial-footer__brand p:not(.editorial-footer__name) {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .editorial-footer__nav--columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
  }

  .editorial-footer__nav--columns a {
    padding: 6px 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .editorial-footer .copyright {
    padding: 0 28px 26px;
    text-align: left;
  }
}


/* Professional audit pass: denser publisher UI */
@media (min-width: 901px) {
  .site-header__top {
    min-height: 58px;
    padding-top: 6px;
    padding-bottom: 5px;
  }

  .site-header__brand {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .site-header__brand img {
    width: 112px;
    max-height: 47px;
  }

  .site-header__brand span {
    max-width: 240px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .site-header__main {
    min-height: 34px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header__primary {
    gap: 26px;
  }

  .site-header__primary a,
  .site-header__utility a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.pickup-section {
  margin-bottom: 38px;
}

.pickup-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.pickup-card,
.pickup-card:first-child {
  display: grid;
  grid-template-columns: minmax(280px, 44%) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid #d8d5cf;
}

.pickup-card__image,
.pickup-card:first-child .pickup-card__image {
  aspect-ratio: 16 / 10;
}

.pickup-card__body,
.pickup-card:first-child .pickup-card__body {
  padding: 2px 0 0;
}

.pickup-card h2,
.pickup-card:first-child h2 {
  margin-top: 8px;
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.36;
}

.pickup-card p {
  display: -webkit-box;
  margin-top: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-detail__footer {
  margin-top: 44px;
  padding-top: 0;
}

.article-after-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
  padding: 18px 0;
  border-top: 1px solid #d8d5cf;
  border-bottom: 1px solid #d8d5cf;
}

.article-after-note a {
  color: #111;
  text-decoration: none;
}

.article-after-note__writer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.article-after-note__writer strong {
  font-weight: 900;
}

.article-after-note__contact {
  flex: 0 0 auto;
  border-bottom: 1px solid #111;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 800;
}

.related-section {
  margin-top: 0;
}

.related-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card-grid .media-card {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .pickup-card,
  .pickup-card:first-child {
    display: block;
    padding-bottom: 18px;
  }

  .pickup-card h2,
  .pickup-card:first-child h2 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.42;
  }

  .article-after-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
    padding: 16px 0;
  }

  .article-after-note__contact {
    display: inline-block;
    padding: 4px 0;
  }

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

@media (max-width: 720px) {
  .pickup-section {
    margin-bottom: 26px;
  }

  .pickup-card h2,
  .pickup-card:first-child h2 {
    font-size: 21px;
    font-size: 2.1rem;
  }

  .pickup-card__author {
    font-size: 12px;
    font-size: 1.2rem;
  }
}


/* Header structure pass: single-row desktop media navigation */
@media (min-width: 901px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 28px;
    min-height: 64px;
    padding: 0 34px;
    border-bottom: 1px solid #111;
  }

  .site-header__top {
    display: contents;
    min-height: 0;
    max-width: none;
    padding: 0;
  }

  .site-header__brand {
    grid-column: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 132px;
    height: 64px;
  }

  .site-header__brand img {
    width: 116px;
    max-height: 42px;
  }

  .site-header__brand span {
    display: none;
  }

  .site-header__main {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 64px;
    max-width: none;
    border-top: 0;
    padding: 0;
  }

  .site-header__primary {
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    overflow: visible;
  }

  .site-header__primary a,
  .site-header__cta {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    padding: 2px 0 0;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header__primary a:hover,
  .site-header__primary a.is-active {
    border-bottom-color: #111;
  }

  .site-header__utility {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-height: 64px;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .site-header__utility a {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    padding: 2px 0 0;
    border-bottom: 2px solid transparent;
    color: #555;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header__utility a:nth-child(2),
  .site-header__utility a:nth-child(4) {
    display: none;
  }

  .site-header__menu-button {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .site-header {
    column-gap: 22px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-header__primary {
    gap: 18px;
  }

  .site-header__utility {
    gap: 12px;
  }

  .site-header__utility a:nth-child(3) {
    display: none;
  }
}


/* Header structure correction: force desktop items onto the same grid row */
@media (min-width: 901px) {
  .site-header__brand,
  .site-header__main,
  .site-header__utility {
    grid-row: 1;
  }

  .site-header__main {
    justify-self: center;
    width: auto;
  }

  .site-header__utility {
    justify-self: end;
  }
}


/* Professional audit pass: home, related articles, fallback polish */
.media-home-page .media-container {
  padding-top: 34px;
}

.media-heading--home h3 {
  font-size: 44px;
  font-size: 4.4rem;
}

.media-card__image[href] img[src*="dummy_ph.jpg"],
.pickup-card__image[href] img[src*="dummy_ph.jpg"] {
  filter: grayscale(1) contrast(.92) brightness(1.04);
}

.media-card__image:has(img[src*="dummy_ph.jpg"]),
.pickup-card__image:has(img[src*="dummy_ph.jpg"]) {
  position: relative;
  background: #f4f1ec;
}

.media-card__image:has(img[src*="dummy_ph.jpg"])::after,
.pickup-card__image:has(img[src*="dummy_ph.jpg"])::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  content: none; /* フォールバック画像自体がブランド化されたため透かしは無効化（旧: "GRASSROOTS"） */
  border-top: 2px solid #111;
  padding-top: 6px;
  color: #111;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.related-card-grid {
  align-items: stretch;
}

.related-card-grid .media-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  min-height: 122px;
  border-top: 1px solid #d8d5cf;
  padding: 14px 0 0;
}

.related-card-grid .media-card__image {
  aspect-ratio: 4 / 3;
  height: 72px;
}

.related-card-grid .media-card__body {
  display: block;
  min-width: 0;
  padding: 0;
}

.related-card-grid .media-card__meta {
  margin-bottom: 5px;
  font-size: 11px;
  font-size: 1.1rem;
}

.related-card-grid .media-card__title {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.55;
}

.related-card-grid .media-card__subtitle,
.related-card-grid .media-card__excerpt,
.related-card-grid .media-card__footer {
  display: none;
}

@media (max-width: 900px) {
  .media-home-page .media-container {
    padding-top: 24px;
  }

  .media-heading--home h3 {
    font-size: 36px;
    font-size: 3.6rem;
  }

  .related-card-grid .media-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
  }

  .related-card-grid .media-card__image {
    height: 69px;
  }
}

@media (max-width: 720px) {
  .media-heading--home h3 {
    font-size: 30px;
    font-size: 3.0rem;
  }

  .media-card__image:has(img[src*="dummy_ph.jpg"])::after,
  .pickup-card__image:has(img[src*="dummy_ph.jpg"])::after {
    right: 10px;
    bottom: 9px;
    font-size: 10px;
    font-size: 1.0rem;
  }
}


/* Final masthead direction: centered two-tier desktop editorial header */
@media (min-width: 901px) {
  .site-header {
    display: block;
    min-height: 112px;
    padding: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #111;
  }

  .site-header__top,
  .site-header__main {
    box-sizing: border-box;
    width: 100%;
    max-width: 1160px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-header__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .site-header__brand {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: auto;
    transform: translate(-50%, -50%);
  }

  .site-header__brand img {
    display: block;
    width: 178px;
    max-height: 48px;
    object-fit: contain;
  }

  .site-header__brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-header__utility {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: 100%;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .site-header__utility::before {
    content: "";
    margin-right: auto;
    color: #555;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .site-header__utility a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-bottom: 1px solid transparent;
    padding: 2px 0 0;
    color: #555;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header__utility a:nth-child(2),
  .site-header__utility a:nth-child(3) {
    display: none;
  }

  .site-header__utility a:hover {
    color: #111;
    border-bottom-color: #111;
  }

  .site-header__main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-top: 1px solid #e5ded6;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    overflow: visible;
  }

  .site-header__primary a,
  .site-header__cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 2px solid transparent;
    padding: 2px 0 0;
    background: transparent;
    color: #111;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .03em;
    white-space: nowrap;
  }

  .site-header__primary a:hover,
  .site-header__primary a.is-active {
    border-bottom-color: #111;
    background: transparent;
    color: #111;
  }

  .site-header__menu-button {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .site-header__top,
  .site-header__main {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-header__brand img {
    width: 158px;
  }

  .site-header__utility {
    gap: 14px;
  }

  .site-header__utility::before {
    font-size: 11px;
    font-size: 1.1rem;
  }

  .site-header__utility a:nth-child(4) {
    display: none;
  }

  .site-header__primary {
    gap: 22px;
  }
}


/* Masthead utility link correction */
@media (min-width: 1121px) {
  .site-header__utility a:nth-child(4) {
    display: inline-flex;
  }
}


/* Writer taxonomy: profile avatar, bio, list avatar */
.author-profile-block__avatar {
  flex: 0 0 auto;
}

.author-profile-block__avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-profile-block__count {
  margin: 4px 0 0;
  font-size: 1.3rem;
  color: #6b6b6b;
}

.author-profile-block__bio {
  margin-top: 10px;
  line-height: 1.85;
}

.author-profile-block__bio p {
  margin: 0 0 0.6em;
}

.writer-list-card__avatar {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.writer-list-card__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Footer SNS links */
.editorial-footer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.editorial-footer__sns a {
  font-size: 1.3rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Feature (特集) hero + listing */
.feature-hero {
  margin: 8px 0 28px;
}

.feature-hero--has-image {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.feature-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.feature-hero__count {
  margin: 4px 0 0;
  font-size: 1.3rem;
  color: #6b6b6b;
}

.feature-hero__lead {
  margin-top: 10px;
  line-height: 1.85;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-list-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.feature-list-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: #f0f0ee;
  color: #9a9a96;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 4px;
}

.feature-list-card__body h2 {
  margin: 10px 0 4px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.feature-list-card__count {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #6b6b6b;
}

.feature-list-card__excerpt {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #333;
}

@media (max-width: 720px) {
  .feature-hero--has-image {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-list-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.section-more {
  margin-top: 16px;
  text-align: right;
}

.section-more a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 901px) {
  .feature-home-section .feature-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* PC header: left-aligned logo (override the centered masthead) */
@media (min-width: 901px) {
  .site-header__top {
    justify-content: space-between;
  }

  .site-header__brand {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    min-width: 0;
  }

  .site-header__utility {
    width: auto;
  }
}

/* ============================================================
   Grassroots Accessibility Pack (2026-06-08)
   対応: WCAG 2.1 SC 2.4.7 / WCAG 2.2 SC 2.4.11・2.5.8 / SC 1.4.3
   方針: アクセント1色(--gr-red)。視覚密度・レイアウトは原則不変。
        outline と min-height のみで box model への影響を最小化。
   ============================================================ */

/* ---- 1. キーボードフォーカスリング (SC 2.4.7 / 2.4.11) ----
   テーマには :focus / outline 指定がゼロ。マウス/タッチでは出さず
   キーボード操作時のみ表示。outline は forced-colors でも維持される。 */
:focus-visible {
  outline: 2px solid var(--gr-red, #b9402c);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
/* 反転背景でもリングが埋もれないよう外側に白の余白(Oreoパターン) */
.site-header__primary a:focus-visible,
.site-header__cta:focus-visible,
.media-card__category:focus-visible {
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #fff;
}
/* overflow:hidden の画像リンクは outline がクリップされるので内側に描く */
.media-card__image:focus-visible,
.pickup-card__image:focus-visible,
.feature-list-card__image:focus-visible {
  outline-offset: -2px;
  box-shadow: none;
}
@media (forced-colors: active) {
  :focus-visible {
    outline: 2px solid ButtonText;
    outline-offset: 2px;
    box-shadow: none;
  }
}
@supports not selector(:focus-visible) {
  a:focus, button:focus, input:focus, [tabindex]:focus {
    outline: 2px solid var(--gr-red, #b9402c);
    outline-offset: 2px;
  }
}

/* ---- 2. タッチターゲット最小化 (SC 2.5.8 AA = 24x24px) ----
   ナビ/カードメタ/フッターは inline 例外の対象外。見た目を変えず
   不可視の縦タップ領域だけを足す。site-header__primary a と __cta は
   既に min-height:34px で適合済みのため触らない。 */
.media-card__category {
  min-height: 24px;
  padding-block: 3px; /* was 2px */
}
.media-card__author,
.media-card__readmore,
.pickup-card__author {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.site-header__utility a,
.editorial-footer__nav a,
.editorial-footer__nav--columns a,
.editorial-footer__sns a,
.media-action-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
/* フッター各列のリンクは横並びにせず一行ずつ（縦積み）に戻す */
.editorial-footer__nav--columns a {
  display: flex;
  width: 100%;
}
.media-card__title a,
.pickup-card__body h2 a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
/* カンパ/支援CTAは行動喚起のため 44px (SC 2.5.5 AAA 推奨) */
.site-header__cta,
a[href*="donation"],
a[href*="kampa"] {
  min-height: 44px;
}

/* ---- 3. コントラスト改善 (SC 1.4.3 AA = 4.5:1) ----
   axe実測の違反箇所を個別補正(過剰な一括暗色化はしない)。 */
/* (a) 特集カードのプレースホルダ "特集": #9a9a96 on #f0f0ee ≈2:1 → #666 で約5:1 */
.feature-list-card__placeholder {
  color: #666; /* was #9a9a96 */
}
/* (b) カード著者ラベルの "by ": #777(4.47:1) → #666(5.74:1) */
.media-card__author::before {
  color: #666; /* was #777 */
}

/* ---- 4. スクリーンリーダー専用テキスト ユーティリティ ---- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(1px, 1px, 1px, 1px);
}
/* ===== end Accessibility Pack ===== */

/* ============================================================
   Typography hardening (JLREQ) — 2026-06-08
   禁則処理(kinsoku) + iOS の自動フォント拡大抑止。
   ============================================================ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.article-body,
.article-body p,
.article-body li,
.article-body blockquote {
  overflow-wrap: break-word; /* 長いURL/英単語のはみ出し防止 */
  word-break: normal;
  line-break: strict;        /* 行頭・行末禁則文字の制御(全角句読点・中点等) */
}
/* ===== end Typography hardening ===== */

/* ピックアップカードの著者ラベルを通常カードと同じ "by ○○" に統一 */
.pickup-card__author::before {
  content: "by ";
  color: #666;
  font-weight: 400;
}

/* ============================================================
   ヘッダーのX（旧Twitter）アイコン（2026-07-03 R4）
   ============================================================ */
.site-header__utility .site-header__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  line-height: 1;
}
.site-header__utility .site-header__x:hover {
  color: #555;
}
.site-header__utility .site-header__x svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* ============================================================
   ご支援のお願いページ（2026-07-03 R2）
   ============================================================ */
.support-methods {
  margin: 24px 0 40px;
}
.support-method {
  border: 1px solid var(--gr-line);
  border-top: 4px solid var(--gr-red);
  background: var(--gr-card);
  padding: 26px 28px 22px;
  max-width: 640px;
}
.support-bank {
  margin: 18px 0 16px;
  border-top: 1px solid var(--gr-line);
}
.support-bank > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gr-line);
}
.support-bank dt {
  flex: 0 0 6.5em;
  color: var(--gr-muted);
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.support-bank dd {
  margin: 0;
  font-weight: 900;
  font-size: 17px;
  font-size: 1.7rem;
  font-feature-settings: "tnum";
}
.support-note {
  color: var(--gr-muted);
  font-size: 13px;
  font-size: 1.3rem;
}

/* 本文(the_content)内に置いたカード群から、記事本文用の見出し装飾
   (緑の左ボーダー等)を打ち消してカードのデザイン言語に揃える */
.support-content-block .support-methods h2,
.support-content-block .about-section-grid h2 {
  margin: 4px 0 10px;
  border-left: 0;
  padding-left: 0;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.5;
}
.support-content-block .support-method > p,
.support-content-block .about-section-grid article p:not(.archive-eyebrow) {
  margin: 0 0 14px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.85;
}
.support-content-block .about-section-grid,
.support-content-block .support-methods {
  margin-top: 8px;
}
.support-content-block .about-section-grid article a {
  text-decoration: none;
}
