/* Washington.co.jp site.css */

:root {
  --ink: #18201e;
  --muted: #5f6b66;
  --paper: #f7f3ea;
  --paper-soft: #fffaf0;
  --cedar: #24463b;
  --cedar-dark: #132a24;
  --water: #496f78;
  --rain: #dfe8e4;
  --mist: #edf1ee;
  --gold: #b8863b;
  --line: rgba(24, 32, 30, 0.16);
  --shadow: 0 22px 60px rgba(17, 31, 28, 0.18);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(73, 111, 120, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(184, 134, 59, 0.11), transparent 25rem),
    linear-gradient(180deg, #fbf8ef 0%, var(--paper) 45%, #ece7dc 100%);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    Georgia,
    serif;
  line-height: 1.9;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--water);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 44px);
  background: rgba(19, 42, 36, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 240px;
}

.brand-mark {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.88rem;
}

.main-nav a {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--cedar-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.86) 0%, rgba(8, 22, 19, 0.58) 42%, rgba(8, 22, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 22, 19, 0.72) 0%, transparent 44%);
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 clamp(40px, 7vw, 96px) clamp(20px, 6vw, 86px);
  padding: clamp(22px, 4vw, 42px);
  border-left: 4px solid var(--gold);
  background: rgba(10, 26, 22, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 670px;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #18201e;
  background: #fff4d6;
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.button.ghost-dark {
  color: var(--cedar-dark);
  border: 1px solid rgba(19, 42, 36, 0.4);
  background: rgba(255, 255, 255, 0.46);
}

.magazine-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 4vw, 36px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro-lead h2,
.section-heading h2,
.feature-band h2,
.essay-panel h2,
.food-stay-band h2,
.closing h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.intro-lead p {
  font-size: 1.05rem;
}

.editor-note {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(18, 42, 36, 0.08);
}

.editor-note h3 {
  margin: 0 0 12px;
  color: var(--cedar);
  font-size: 1.28rem;
}

.editor-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-band {
  max-width: var(--max);
  margin: 0 auto clamp(34px, 5vw, 70px);
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 34px;
  align-items: center;
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(36, 70, 59, 0.96), rgba(73, 111, 120, 0.92)),
    var(--cedar);
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-band h2,
.feature-band p {
  margin-left: 0;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.86);
}

.start-links {
  display: grid;
  gap: 12px;
}

.start-links a {
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 800;
}

.start-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.image-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 24px;
}

.story-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(17, 31, 28, 0.1);
}

.story-card.large {
  grid-row: span 2;
}

.story-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.story-card.large img {
  height: 530px;
}

.story-card div {
  padding: clamp(20px, 3vw, 34px);
}

.story-card h2,
.story-card h3 {
  margin: 0 0 12px;
  line-height: 1.22;
}

.story-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.story-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.story-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--cedar);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.place-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(17, 31, 28, 0.07);
}

.place-card h3 {
  margin: 0 0 8px;
  color: var(--cedar);
  font-size: 1.12rem;
  line-height: 1.35;
}

.place-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.place-card dl {
  margin: 0;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.place-card dt {
  margin-top: 8px;
  color: var(--cedar);
  font-weight: 900;
}

.place-card dd {
  margin: 0;
  color: var(--muted);
}

.place-card a {
  color: var(--water);
  font-weight: 800;
  word-break: break-word;
}

.wide-photo-essay {
  position: relative;
  max-width: 1320px;
  margin: 10px auto 20px;
  min-height: 620px;
  border-radius: calc(var(--radius) + 14px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wide-photo-essay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-photo-essay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.9), rgba(247, 243, 234, 0.66) 42%, rgba(247, 243, 234, 0.14) 100%);
}

.essay-panel {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(36px, 6vw, 74px);
}

.essay-panel p {
  color: #35413d;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.region-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(17, 31, 28, 0.12);
  background: var(--cedar);
}

.region-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 22, 19, 0.78), rgba(8, 22, 19, 0.06));
}

.region-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
}

.region-card:hover img {
  transform: scale(1.06);
}

.feature-list {
  padding-top: 30px;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-list-grid article {
  padding: 24px;
  min-height: 240px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(237, 241, 238, 0.86));
  border: 1px solid var(--line);
}

.feature-list-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.42;
}

.feature-list-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.food-stay-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.food-stay-band p {
  max-width: 760px;
  color: var(--muted);
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--cedar);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 800;
}

.pill-nav a:hover {
  background: var(--water);
  color: #fff;
}

.closing {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.closing img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.closing p {
  color: var(--muted);
}

.site-footer {
  margin-top: 30px;
  padding: 44px clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--cedar-dark);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  align-content: start;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

/* Subpage / admin-page helpers */

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--cedar-dark);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.82), rgba(8, 22, 19, 0.38)),
    linear-gradient(0deg, rgba(8, 22, 19, 0.72), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: clamp(36px, 7vw, 84px) clamp(22px, 6vw, 82px);
}

.page-hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero-content p {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

.content-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 36px);
}

.content-page.wide {
  max-width: var(--max);
}

.content-page h2 {
  margin-top: 42px;
  color: var(--cedar);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.25;
}

.content-page h3 {
  margin-top: 30px;
  color: var(--cedar);
  font-size: 1.35rem;
}

.content-page p,
.content-page li {
  color: #3f4945;
  font-size: 1.02rem;
}

.content-page a {
  color: var(--water);
  font-weight: 800;
  border-bottom: 1px solid rgba(73, 111, 120, 0.35);
}

.admin-card {
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(17, 31, 28, 0.08);
}

.notice-box {
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 240, 0.86);
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 31, 28, 0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  display: block;
  padding: 12px 14px 14px;
  color: var(--cedar);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 800;
}

/* Responsive */

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

  .main-nav {
    justify-content: flex-start;
  }

  .place-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: 78vh;
  }

  .hero-panel {
    margin: 0 16px 28px;
    padding: 24px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(8, 22, 19, 0.88) 0%, rgba(8, 22, 19, 0.42) 75%, rgba(8, 22, 19, 0.2) 100%);
  }

  .intro-grid,
  .feature-band,
  .image-story-grid,
  .food-stay-band,
  .closing,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-card.large {
    grid-row: auto;
  }

  .story-card.large img,
  .story-card img {
    height: 300px;
  }

  .wide-photo-essay {
    min-height: auto;
    border-radius: 0;
  }

  .wide-photo-essay img {
    position: relative;
    height: 360px;
  }

  .wide-photo-essay::after {
    display: none;
  }

  .essay-panel {
    background: var(--paper-soft);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    line-height: 1.82;
  }

  .site-header {
    position: relative;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .main-nav {
    gap: 5px;
    font-size: 0.8rem;
  }

  .main-nav a {
    padding: 6px 8px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 13vw, 3.7rem);
  }

  .hero-actions,
  .pill-nav {
    flex-direction: column;
  }

  .button,
  .pill-nav a {
    width: 100%;
  }

  .magazine-section {
    padding: 46px 16px;
  }

  .feature-band {
    margin-inline: 16px;
    padding: 26px;
    border-radius: 22px;
  }

  .place-grid,
  .region-grid,
  .feature-list-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card img {
    min-height: 230px;
  }

  .closing img {
    min-height: 300px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .pill-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  .page-hero {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero img,
  .page-hero img {
    position: relative;
    height: auto;
  }

  .hero::after,
  .page-hero::after {
    display: none;
  }

  .hero-panel,
  .page-hero-content {
    margin: 0;
    padding: 20px 0;
    color: #000;
    background: none;
    box-shadow: none;
  }
}
