@charset "UTF-8";
:root {
  /* spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 28px;
  --space-xl: 40px;
  /* radius */
  --radius-ss: 6px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  /* colors */
  --color-text: #1b1b1b;
  --color-muted: rgba(27, 27, 27, 0.65);
  --color-surface: rgba(255, 255, 255, 0.65);
  --color-border: rgba(27, 27, 27, 0.08);
  --color-fff: #fff;
  /* shadow */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  /* container */
  --container-max: 1040px;
  --content-max: 720px;
  --container-pad: 16px;
  /* motion */
  --motion-fade: 0.6s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  :root {
    --container-pad: 24px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 15px;
}

body {
  margin: 0;
  color: #75706a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

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

a {
  color: #7c8a97;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}
a:hover {
  color: #3a6ea5;
  text-decoration-color: #3a6ea5;
}

.entry-content a[target=_blank]::after {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f35d"; /* 外部リンクアイコン */
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.8em;
  text-decoration: none;
}

.section__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.section__cta {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

/*============================
 色
============================*/
.section {
  position: relative;
}
.section--hero::before, .section--life::before, .section--diary::before, .section--map::before, .section--mapdetail::before, .section--contact::before, .section--entry-hero::before, .section--single-related::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-mask-image: url("/wp-content/themes/tabitsuma/assets/img/mask-beta.png");
  mask-image: url("/wp-content/themes/tabitsuma/assets/img/mask-beta.png");
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}
.section--hero::before {
  background-color: #e5e8ce;
}
.section--life::before {
  background-color: #c3dbcb;
}
.section--diary::before {
  background-color: #d6d8e6;
}
.section--map::before {
  background-color: #ede9e4;
}
.section--mapdetail::before {
  background-color: #c5e0e1;
}
.section--contact::before {
  background-color: #c3dbcb;
}
.section--entry-hero::before {
  background-color: #d6d8e6;
}
.section--single-related::before {
  background-color: #c3dbcb;
}
.section > * {
  position: relative;
  z-index: 1;
}

.grain-top {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: -280px;
  height: 560px;
  pointer-events: none;
  /* 粒状グラデ画像をマスクとして使う */
  -webkit-mask-image: url("/wp-content/themes/tabitsuma/assets/img/mask-gradation.png");
  mask-image: url("/wp-content/themes/tabitsuma/assets/img/mask-gradation.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  opacity: 1;
}

.section--life .grain-top {
  background: #c3dbcb; /* ←上のセクション背景色に合わせて変える */
}

.section--diary .grain-top {
  background: #d6d8e6; /* ←上のセクション背景色に合わせて変える */
}

.section--contact .grain-top {
  background: #c3dbcb; /* ←上のセクション背景色に合わせて変える */
}

.section--single-related .grain-top {
  background: #c3dbcb; /* ←上のセクション背景色に合わせて変える */
}

@media (min-width: 900px) {
  .grain-top {
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: 100% 100%;
    mask-size: auto 100%;
  }
  .section--life .grain-top {
    z-index: 0;
  }
}
/* ========================================
波線（共通）
======================================== */
.wave-top {
  position: relative;
  --wave-height: 260px;
  --wave-offset: -250px;
  padding-top: 120px;
}

.wave-top::before {
  content: "";
  position: absolute;
  top: var(--wave-offset);
  left: 0;
  width: 100%;
  height: var(--wave-height);
  background-image: url("/wp-content/themes/tabitsuma/assets/img/bookshape.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
}

@media (min-width: 900px) {
  .wave-top::before {
    background-image: url("/wp-content/themes/tabitsuma/assets/img/bookshape_pc.svg");
  }
}
.wave-bottom {
  --wave-height: 260px;
  padding-top: 120px;
}

.wave-bottom {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: var(--wave-height);
  background-image: url("/wp-content/themes/tabitsuma/assets/img/bookshape.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
}

@media (min-width: 900px) {
  .wave-bottom {
    background-image: url("/wp-content/themes/tabitsuma/assets/img/bookshape_pc.svg");
  }
}
.container {
  width: min(100% - var(--container-pad) * 2, var(--container-max));
  margin-inline: auto;
}

.container-sm {
  width: min(100% - var(--container-pad) * 2, var(--content-max));
  margin-inline: auto;
}

.container-md {
  width: min(100% - var(--container-pad) * 2, 896px);
  margin-inline: auto;
}

.container-full {
  width: 100%;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(28px, 7vw, 64px);
}

.pb-300 {
  padding-bottom: 300px;
}

main {
  overflow: hidden;
}

/* ========================================
BASE BUTTON
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.15s ease, background 0.15s ease;
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}

/* ========================================
BUTTON VARIANTS
======================================== */
.btn--primary {
  box-shadow: var(--shadow-soft);
}

/* ========================================
INTRO BUTTON
======================================== */
.btn-arrow {
  --accent: #9a8608;
  --bg: #fff;
  --h: 48px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  height: var(--h);
  border-radius: 999px;
  background: var(--bg);
  color: var(--accent);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.btn-arrow__label {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.btn-arrow__icon {
  position: relative;
  width: 60px;
  height: 14px;
  display: inline-block;
}
.btn-arrow__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 60px;
  border-top: 1px dotted var(--accent);
  transform: translateY(-50%) scaleX(1);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-arrow__icon::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 1px dotted var(--accent);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section__cta {
  --bg: #fff;
}
.section__cta .btn-arrow {
  background: #c3dbcb;
  color: var(--bg);
}
.section__cta .btn-arrow__icon::before {
  border-top: 1px dotted var(--bg);
}
.section__cta .btn-arrow__icon::after {
  border-top: 1px dotted var(--bg);
}

/* ========================================
HOVER ANIMATION
======================================== */
.btn-arrow:hover .btn-arrow__icon::before,
.btn-arrow:focus-visible .btn-arrow__icon::before {
  transform: translateY(-50%) scaleX(1.18);
}

.btn-arrow:hover .btn-arrow__icon::after,
.btn-arrow:focus-visible .btn-arrow__icon::after {
  transform: rotate(45deg) translateX(0) translateY(-9px);
}

/* ========================================
FOCUS STATE
======================================== */
.btn-arrow:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 40%, transparent);
  outline-offset: 6px;
}

.post-card__link {
  display: grid;
  gap: 10px;
}

.post-card__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-border);
}

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

.post-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.post-card__meta {
  font-size: 13px;
  color: var(--color-muted);
}

/* ========================================
BREADCRUMB
======================================== */
.breadcrumb {
  margin: 20px auto 10px;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(80, 80, 80, 0.7);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: rgba(120, 120, 120, 0.5);
}

.breadcrumb-current {
  color: rgba(80, 80, 80, 0.5);
}

/* ========================================
SHARE
======================================== */
.share {
  margin: 50px 0;
  text-align: center;
}

.share-title {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(80, 80, 80, 0.7);
}

/* ボタン横並び */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* 共通ボタン */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(120, 120, 120, 0.35);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* アイコン */
.share-btn i {
  font-size: 14px;
}

/* hover */
.share-btn:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}

.share-copy {
  cursor: pointer;
  background: none;
}

/* モバイル */
@media (max-width: 520px) {
  .share-buttons {
    gap: 8px;
  }
  .share-btn {
    font-size: 12px;
    padding: 7px 12px;
  }
}
/* ========================================
COPY TOAST
======================================== */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(90, 84, 110, 0.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.copy-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 520px) {
  .copy-toast {
    bottom: 18px;
    font-size: 11px;
    padding: 9px 14px;
  }
}
/* ========================================
ENTRY TAXONOMY
======================================== */
.entry-taxonomy {
  padding-top: 20px;
}

.entry-taxonomy__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.entry-taxonomy__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
  color: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.entry-taxonomy__badge i {
  font-size: 11px;
}

.entry-taxonomy__badge:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.entry-taxonomy__badge--category {
  background: #ebe7f6;
  color: #4f4a78;
}

.entry-taxonomy__badge--tag {
  background: #f3eee7;
  color: #7a5f3e;
}

.section--entry-hero {
  position: relative;
}

.entry-hero__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  min-height: 120px;
}

.entry-hero__figure {
  position: absolute;
  right: 0;
  bottom: -34%;
  width: min(30vw, 170px);
  z-index: 5;
}
.entry-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .entry-hero__figure {
    right: 10%;
    bottom: -83%;
    width: min(30vw, 220px);
  }
}
.navigation.pagination {
  padding: 0 20px 60px;
}

.navigation.pagination .nav-links {
  width: min(720px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(120, 120, 120, 0.25);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.navigation.pagination .page-numbers:hover {
  background: rgba(140, 137, 184, 0.08);
  border-color: rgba(140, 137, 184, 0.32);
}

.navigation.pagination .page-numbers.current {
  background: #8c89b8;
  border-color: #8c89b8;
  color: #fff;
}

/*============================
  Color Tokens（カレンダー用）
============================*/
/*============================
  日記上部：イラスト＋日付
============================*/
.diary-hero-meta {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.diary-hero-meta__illust img {
  display: block;
  max-width: 140px;
  height: auto;
}
.diary-hero-meta__calendar {
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .diary-hero-meta {
    top: -120px;
    gap: 20px;
  }
  .diary-hero-meta__illust img {
    max-width: 180px;
  }
}

/*============================
  日めくりカレンダー
============================*/
.daily-date-card {
  position: relative;
  width: 102px;
  aspect-ratio: 1/1;
  background: #f3f3f3;
  border-radius: 14px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  overflow: visible;
  flex-shrink: 0;
}
.daily-date-card::before, .daily-date-card::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 10px;
  height: 26px;
  background: #71677a;
  border-radius: 999px;
  z-index: 2;
}
.daily-date-card::before {
  left: 20px;
}
.daily-date-card::after {
  right: 20px;
}
.daily-date-card__top {
  height: 28px;
  background: #8a9642;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
}
.daily-date-card__month {
  color: #fff;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.daily-date-card__body {
  height: calc(100% - 28px);
  padding: 10px 8px 12px;
  background: #f3f3f3;
  border-radius: 0 0 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.daily-date-card__day {
  font-size: 48px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
}
.daily-date-card__week {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #111;
}
.daily-date-card__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 50%);
  border-bottom-right-radius: 14px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.5;
}
@media (min-width: 900px) {
  .daily-date-card {
    width: 132px;
    border-radius: 18px;
  }
  .daily-date-card::before, .daily-date-card::after {
    top: -17px;
    width: 12px;
    height: 34px;
  }
  .daily-date-card::before {
    left: 30px;
  }
  .daily-date-card::after {
    right: 30px;
  }
  .daily-date-card__top {
    height: 38px;
    border-radius: 18px 18px 0 0;
    padding-bottom: 7px;
  }
  .daily-date-card__month {
    font-size: 10px;
  }
  .daily-date-card__body {
    height: calc(100% - 38px);
    padding: 14px 10px 16px;
  }
  .daily-date-card__day {
    font-size: 68px;
  }
  .daily-date-card__week {
    margin-top: 8px;
    font-size: 15px;
  }
  .daily-date-card__corner {
    width: 44px;
    height: 44px;
    border-bottom-right-radius: 18px;
  }
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 !important;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-ss);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}
@media (min-width: 900px) {
  .blog-card {
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 14px;
  }
}
.blog-card figure,
.blog-card h3,
.blog-card p {
  margin: 0;
}

.blog-card__badge {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px 0 6px 0;
  background: #8a9642;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 900px) {
  .blog-card__badge {
    top: 0;
    left: 0px;
  }
}

.blog-card__thumb {
  overflow: hidden;
  border-radius: var(--radius-ss);
  background: #f3f3f3;
  aspect-ratio: 5/4;
}
.blog-card__thumb img {
  display: block;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.03);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-card__title {
  margin: 0 0 6px !important;
  padding: 4px !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 900px) {
  .blog-card__title {
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
}

.blog-card__meta {
  margin: 0 0 10px !important;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}

.blog-card__excerpt {
  margin: 0 !important;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card__footer {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card__site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.blog-card__favicon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0 !important;
}

.blog-card__domain {
  color: #888;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-all;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 12px;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.blog-card:hover .blog-card__more {
  background: #8a9642;
  border-color: #8a9642;
  color: #fff;
}

.site-header {
  position: relative;
}

/* =========================
   ヘッダーロゴ
========================= */
.header__logo {
  position: fixed;
  left: 10px;
  top: 16px;
  z-index: 5;
  display: flex;
  justify-content: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header__logo img {
  width: 60px;
  height: auto;
}

/* トップページだけ初期非表示 */
.is-front-page .header__logo {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.is-front-page .header__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* それ以外のページは最初から表示 */
body:not(.is-front-page) .header__logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   メニュー
========================= */
.site-header__menu {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 40;
  display: inline-block;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-book-icon {
  width: 48px;
  height: auto;
  display: block;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

/* hover */
.site-header__menu:hover .menu-book-icon {
  transform: translateY(-2px);
}

/* 本の真ん中の線 */
.menu-book__spine {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.18);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

/* 3本線のベース */
.menu-book__bars {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 12px;
  height: 1.5px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  transition: background 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.menu-book__bars::before,
.menu-book__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  transition: transform 0.24s ease, top 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

.menu-book__bars::before {
  top: -5px;
}

.menu-book__bars::after {
  top: 5px;
}

/* =========================
   OPEN
========================= */
/* 真ん中の線を消す */
.site-header__menu.is-open .menu-book__bars {
  background: transparent;
}

/* 上下2本を中央に寄せて × */
.site-header__menu.is-open .menu-book__bars::before {
  top: 0;
  transform: rotate(45deg);
  background: rgba(0, 0, 0, 0.42);
}

.site-header__menu.is-open .menu-book__bars::after {
  top: 0;
  transform: rotate(-45deg);
  background: rgba(0, 0, 0, 0.42);
}

/* 本アイコンは少しだけ落ち着かせる */
.site-header__menu.is-open .menu-book-icon {
  opacity: 0.98;
}

.site-header__menu.is-open .menu-book-icon {
  transform: rotate(2deg);
}

/* ---------- ドロワー ---------- */
.site-header__inner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(320px, 84vw);
  height: 100dvh;
  background: #afc2a9;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  border-radius: 40px 0 0 40px;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}

/* 開いた時 */
body.menu-open .site-header__inner {
  transform: translateX(0);
}

/* 背景オーバーレイ */
.site-header::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 20;
}

body.menu-open .site-header::after {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
　　ナビゲーション
========================= */
.menu {
  position: fixed;
  inset: 0;
  margin-block: auto;
  padding-inline: 30px;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
}

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

.menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.menu__item a:hover {
  opacity: 0.6;
}

.menu__arrow {
  font-size: 10px;
  opacity: 0.7;
}

/* =========================
   検索
========================= */
.menu__search {
  margin-top: 30px;
}
.menu__search p {
  font-size: 14px;
  margin-bottom: 4px;
}

.menu__search .searchform {
  position: relative;
}

.menu__search .searchform > div {
  position: relative;
}

.menu__search .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu__search #s {
  width: 100%;
  height: 56px;
  padding: 0 56px 0 20px;
  border: none;
  border-radius: var(--radius-ss);
  background: #f3f1f1;
  color: #7d746d;
  font-size: 16px;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.menu__search #s::-moz-placeholder {
  color: #9b928a;
}

.menu__search #s::placeholder {
  color: #9b928a;
}

.menu__search #s:focus {
  outline: none;
}

.menu__search #searchsubmit {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  z-index: 2;
}

/* 虫眼鏡アイコン */
.menu__search .searchform > div::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: #8a8178;
  pointer-events: none;
  z-index: 1;
}

.section--hero {
  padding-bottom: 300px;
}
@media (min-width: 900px) {
  .section--hero {
    padding-bottom: 220px;
  }
}

/*============================
 SPのヒーローのコンテンツ順
============================*/
.hero {
  display: grid;
  gap: var(--space-lg);
  position: relative;
}

.hero__content {
  display: contents;
}

.hero__logo {
  order: 1;
}

.hero__media {
  order: 2;
}

.hashtag {
  order: 4;
}

.scroll-indicator {
  order: 3;
}

/*============================
 ヒーローの各要素
============================*/
.hero__logo {
  display: flex;
  justify-content: center;
}
.hero__logo img {
  width: 100px;
  height: auto;
  display: block;
}

.circleTextWrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -18px;
  right: -12px;
  z-index: 5;
}

.circleText {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: circleSpin 10s linear infinite;
  transform-origin: 50% 50%;
}

.circleText__text {
  fill: #fff;
  font-size: 10px;
  letter-spacing: 0.06em;
}

@keyframes circleSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .circleText {
    animation: none;
  }
}
.hero__media {
  position: relative;
  width: 90%;
  margin-inline: auto;
}

.hero__arch {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 999px 999px 20px 20px;
  border: 2px solid #fff;
  position: relative;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.hero__slides img:first-child {
  opacity: 1;
}

.hero__figure {
  position: absolute;
  right: -12%;
  bottom: -10%;
  width: min(40vw, 220px);
  overflow: hidden;
  z-index: 5;
}
.hero__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__text1 {
  width: min(60vw, 250px);
  margin-top: 20px;
  order: 3;
  margin-left: auto;
}

/*============================
 スクロールダウン
============================*/
.scroll-indicator {
  position: relative;
  height: 170px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.scroll-indicator__label {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 10px 10px 70px;
  color: #75706a;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-indicator__label span {
  display: inline-block;
}
.scroll-indicator__track {
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
}
.scroll-indicator__track::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7px;
  height: 60px;
  background: #75706a;
}
.scroll-indicator__track::before {
  content: "";
  position: absolute;
  left: -3.6px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75706a;
  animation: scroll-indicator-dot-move 3s ease-in-out infinite, scroll-indicator-dot-fade 3s ease-out infinite;
}

@keyframes scroll-indicator-dot-move {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes scroll-indicator-dot-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.hashtag {
  display: flex;
  flex-direction: column;
}
.hashtag p {
  background-color: #afc2a9;
  color: #fff;
  margin: 8px 0;
  padding: 2px 12px;
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ============================
   PC
============================ */
@media (min-width: 900px) {
  .hero__logo {
    order: 0;
  }
  .hero__media {
    order: 0;
  }
  .hashtag {
    order: 0;
  }
  .scroll-indicator {
    order: 0;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .hero__content .hero__logo img {
    width: 200px;
  }
  .hero__media {
    grid-column: 2;
    width: 90%;
  }
  .hero__media .hero__figure {
    right: -20%;
    width: min(40vw, 270px);
  }
  .hero__text1 {
    grid-column: 2;
    margin-top: 40px;
  }
  .scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
  }
}
/* section--life */
.life {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.life__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.life__title {
  width: 70%;
  margin-inline: auto;
}
.life__title img {
  display: block;
  width: 100%;
  height: auto;
}

.life__subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: clamp(14px, 2.8vw, 18px);
}

.life__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.life__illust {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: clamp(28px, 6vw, 44px);
}
.life__illust img {
  width: min(360px, 38vw);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* 白円 */
.life__circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: white;
  z-index: 0;
  bottom: 0;
}

.life__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

.life__text {
  color: #75706a;
  line-height: 2;
}

/* PC */
@media (min-width: 900px) {
  .life {
    gap: 66px;
  }
  .life__title {
    width: min(300px, 100%);
  }
  .life__body {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(320px, 460px);
    align-items: center;
    justify-content: center;
    -moz-column-gap: 72px;
         column-gap: 72px;
    text-align: left;
  }
  .life__illust {
    margin-top: 0;
  }
  .life__illust img {
    width: 100%;
    max-width: 250px;
  }
  .life__circle {
    width: 220px;
    height: 220px;
    bottom: 190px;
  }
  .life__content {
    align-items: center;
  }
  .life__text {
    font-size: 16px;
    line-height: 2.1;
  }
}
/* ========================================
DIARY SECTION
======================================== */
.section--diary {
  padding-bottom: 0;
}

.diary {
  padding-inline: 0;
}

.diary-inner {
  background: #fff;
}

.diary-archive {
  background: #fff;
}

/* ========================================
DIARY HEADER
======================================== */
.diary__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-block: clamp(28px, 7vw, 64px);
  padding-bottom: 150px;
}
.diary__header > * {
  margin: 0;
}

.diary__title-en img,
.diary__title img,
.diary__subtitle img {
  display: block;
  width: 100%;
  height: auto;
}

.diary__title-en {
  width: min(200px, 40vw);
}

.diary__title {
  width: min(360px, 70vw);
}

.diary__subtitle {
  width: min(300px, 60vw);
}

/* ========================================
ILLUST
======================================== */
/* ========================================
TABS
======================================== */
.diary-tabs {
  width: min(520px, 100%);
  margin: 0 auto 22px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #ead7c5;
  border-radius: 999px;
}

.diary-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  height: 32px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(70, 60, 45, 0.75);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.diary-tab.is-active {
  background: #c79a64;
  color: #fff;
}
.diary-tab:focus-visible {
  outline: 3px solid rgba(199, 154, 100, 0.45);
  outline-offset: 2px;
}

/* ========================================
DIARY LIST
======================================== */
.diary-list {
  margin: 20px auto 60px;
  display: grid;
  gap: 10px;
}

.diary-item {
  position: relative;
  padding-top: 10px;
  border-top: 1px dotted rgba(120, 120, 120, 0.35);
}
.diary-item:last-child {
  border-bottom: 1px dotted rgba(120, 120, 120, 0.35);
  padding-bottom: 10px;
}
.diary-item.is-hidden {
  display: none;
}

/* 関連記事内だけ見た目変更 */
.single-related__list .diary-item {
  padding: 8px;
  background: #fff;
  border-top: 0;
  border-radius: var(--radius-ss);
}
.single-related__list .diary-item:last-child {
  border-bottom: 0;
}

/* ========================================
CARD LAYOUT
======================================== */
.diary-link {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.diary-thumb {
  width: 168px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-ss);
}
.diary-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.diary-link:hover .diary-thumb img {
  transform: scale(1.06);
}

.diary-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.diary-title {
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: transparent;
  background: linear-gradient(to right, #8c89b8 50%, #75706a 50%) 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.5s ease;
}

.diary-link:hover .diary-title {
  background-position: 0 100%;
}

.diary-meta {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(80, 80, 80, 0.75);
}

.diary-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.diary-badge {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 4px;
  background: #8c89b8;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

/*============================
 タブ切り替え
============================*/
.diary-panel {
  display: none;
}

.diary-panel.is-active {
  display: block;
}

/* ========================================
MOBILE
======================================== */
@media (max-width: 520px) {
  .diary-link {
    grid-template-columns: 122px 1fr;
    gap: 14px;
  }
  .diary-thumb {
    width: 122px;
  }
  .diary-title {
    font-size: 16px;
  }
}
/* ========================================
PC
======================================== */
@media (min-width: 900px) {
  .diary__header {
    gap: 18px;
    padding-top: 0;
    padding-bottom: 140px;
  }
  .diary__title-en {
    width: 180px;
  }
  .diary__title {
    width: 360px;
  }
  .diary__subtitle {
    width: 280px;
  }
  .diary-tabs {
    margin-bottom: 46px;
  }
  .diary-list {
    margin: 0 auto 72px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 34px;
  }
  .diary-item {
    padding-top: 0;
    border-top: 0;
    border-bottom: 0;
    background: #fff;
    border-radius: 16px;
  }
  .diary-item:last-child {
    border-bottom: 0;
  }
  .diary-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
  }
  .diary-thumb {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .diary-body {
    flex: 1;
    padding-inline: 2px;
  }
  .diary-title {
    font-size: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
  }
  .diary-meta {
    margin-top: 10px;
  }
}
.map-frame__placeholder {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.55);
  min-height: 260px;
  display: grid;
  place-items: center;
}

.map-frame__note {
  margin: 0;
  color: var(--color-muted);
}

/*============================
 横スクロール
============================*/
.journey-map {
  position: relative;
  padding: 80px 0 120px;
  background: #f4f4f2;
  overflow: hidden;
}

.journey-map__inner {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.journey-map__head {
  margin-bottom: 24px;
}

.journey-map__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #90aeb3;
}

.journey-map__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #4d4d4d;
}

/* =========================
   マップ
========================= */
.journey-story {
  position: relative;
  background: #f5f3ee;
  color: #4f4a44;
  overflow: clip;
}

.journey-story__intro {
  padding-top: 80px;
  padding-bottom: 32px;
}

.journey-story__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8aa1a6;
}

.journey-story__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.journey-story__lead {
  margin: 12px 0 0;
  max-width: 42em;
  line-height: 1.8;
  color: #6d655e;
}

/* 縦スクロール量を確保 */
.journey-story__track {
  position: relative;
  height: 400svh;
}

/* 固定本体 */
.journey-story__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: 2fr 1fr;
  overflow: hidden;
}

/* =========================
   上：マップ
========================= */
.journey-story__map-area {
  position: relative;
  background: linear-gradient(180deg, #d7e6e9 0%, #dbe9eb 100%);
  overflow: hidden;
}

.journey-map-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.journey-map-stage__map {
  position: absolute;
  inset: 0;
}

.journey-map-stage__image {
  position: absolute;
  inset: 0;
  width: min(92%, 980px);
  max-width: 100%;
  height: auto;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ピン */
.journey-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}

.journey-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #9f9739;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.journey-pin::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #efe7c3;
  z-index: 1;
}

.journey-pin.is-active::before {
  transform: rotate(-45deg) scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* 地名 */
.journey-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(20px, -50%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(74, 97, 104, 0.9);
  pointer-events: none;
  z-index: 4;
}

/* =========================
   写真レイヤー
========================= */
.journey-photo-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.journey-photo {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.journey-photo.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.journey-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 写真位置パターン */
.journey-photo--1 {
  right: 13%;
  top: 10%;
  width: clamp(120px, 20vw, 240px);
  aspect-ratio: 1/1;
  transition-delay: 0s;
}

.journey-photo--2 {
  right: 24%;
  bottom: 8%;
  width: clamp(160px, 28vw, 360px);
  aspect-ratio: 1.25/1;
  transition-delay: 0.12s;
}

.journey-photo--3 {
  right: 4%;
  bottom: 2%;
  width: clamp(100px, 14vw, 170px);
  aspect-ratio: 0.9/1.1;
  transition-delay: 0.22s;
}

/* =========================
   下：詳細
========================= */
.journey-story__detail-area {
  position: relative;
  background: #f5f3ee;
  border-top: 1px solid rgba(79, 74, 68, 0.08);
  overflow: hidden;
}

.journey-detail {
  height: 100%;
}

.journey-detail__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.journey-detail__track {
  display: flex;
  width: 500%; /* 5地点ぶん。JS導入後は可変でもOK */
  height: 100%;
  will-change: transform;
}

.journey-card {
  flex: 0 0 20%; /* 5地点なので100 / 5 */
  min-width: 20%;
  height: 100%;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-card__place {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.journey-card__catch {
  margin: 8px 0 0;
  font-size: 15px;
  color: #7a6d54;
}

.journey-card__meta {
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px dashed rgba(79, 74, 68, 0.18);
}

.journey-card__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 12px 0;
}

.journey-card__row + .journey-card__row {
  border-top: 1px dashed rgba(79, 74, 68, 0.12);
}

.journey-card__row dt {
  font-weight: 700;
  color: #5c554e;
}

.journey-card__row dd {
  margin: 0;
  color: #5c554e;
  line-height: 1.7;
}

/* =========================
   アクセシビリティ
========================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* =========================
   PC
========================= */
@media (min-width: 900px) {
  .journey-story__intro {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .journey-story__track {
    height: 360svh;
  }
  .journey-story__sticky {
    grid-template-rows: 2.1fr 0.9fr;
  }
  .journey-map-stage__image {
    width: min(88%, 1100px);
    top: 50%;
  }
  .journey-pin {
    width: 36px;
    height: 36px;
  }
  .journey-pin::after {
    top: 9px;
    left: 9px;
    width: 18px;
    height: 18px;
  }
  .journey-label {
    font-size: 14px;
    transform: translate(24px, -54%);
  }
  .journey-card {
    padding: 28px 48px 24px;
  }
  .journey-card__meta {
    max-width: 960px;
  }
  .journey-card__row {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }
}
/* ========================================
Contact
======================================== */
.section--contact {
  --content-max: 720px;
}

/* ========================================
Contact HEADER
======================================== */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__title {
  width: 70vw;
}
.contact__title img {
  display: block;
  width: 100%;
  height: auto;
}
.contact__title-en {
  width: 30vw;
}

.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(28px, 7vw, 64px);
  gap: 14px;
  position: relative;
}
.contact__header > * {
  margin: 0;
}

/* ========================================
イラスト
======================================== */
.contact__illust {
  position: relative;
  left: 10px;
}
.contact__illust img {
  width: min(360px, 28vw);
  height: auto;
  display: block;
}

/* ========================================
説明文
======================================== */
.contact__text {
  text-align: center;
}

/* ========================================
フォーム枠
======================================== */
.contact__form-wrap {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

/* ========================================
コンタクトフォーム
======================================== */
.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  display: grid;
  gap: 14px;
}
.wpcf7-form p {
  margin: 0;
}

/* ラベル */
.wpcf7-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

/* 必須マークを全部出したいならこのやり方は注意
   label::before は display: contents; だと不安定なことある */
.wpcf7-form label.required::before {
  content: "*";
  color: rgb(228, 113, 113);
  margin-right: 4px;
}

/* 入力欄 */
.wpcf7-form-control {
  width: 100%;
  border-radius: var(--radius-ss);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  font: inherit;
  outline: none;
  box-sizing: border-box;
}

/* focus */
.wpcf7-form-control:focus {
  border-color: rgba(27, 27, 27, 0.18);
}

/* textarea */
.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

/* 送信ボタン */
.wpcf7-submit {
  --accent: #fff;
  --bg: #80a8b4;
  --bghover: #a2c5d0;
  --h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--h);
  padding: 0 50px;
  margin-top: var(--space-sm);
  border-radius: 999px;
  border: 0;
  background: var(--bg);
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.wpcf7-submit:hover {
  background: var(--bghover);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.wpcf7-submit:active {
  transform: translateY(1px);
}

/* スピナー位置 */
.wpcf7-spinner {
  margin-left: 8px;
}

.wpcf7-form p:has(.wpcf7-submit) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================================
PC
======================================== */
@media (min-width: 900px) {
  .contact__header {
    padding-block: 0 10px;
    gap: 18px;
  }
  .contact__title-en {
    width: 140px;
  }
  .contact__title {
    width: 320px;
  }
  .contact__text {
    font-size: 15px;
    line-height: 2;
  }
  .contact__illust img {
    width: 160px;
  }
  .contact__form-wrap {
    width: min(100%, var(--content-max));
  }
  .wpcf7-form {
    gap: 18px;
  }
  .wpcf7-form label {
    gap: 10px;
    font-size: 14px;
  }
  .wpcf7-textarea {
    min-height: 180px;
  }
}
.single-entry {
  overflow: hidden;
}

/*============================
 記事
============================*/
.single-entry__container {
  padding-top: 10px;
}

.single-entry__article {
  margin-bottom: 64px;
}

.single-entry__header {
  margin-bottom: 20px;
}

.single-entry__category {
  margin-bottom: 10px;
}
.single-entry__category .entry-taxonomy__badge {
  font-size: 10px;
  min-height: 22px;
  padding: 2px 6px;
}
.single-entry__category .entry-taxonomy__badge i {
  font-size: 10px;
}

.single-entry__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  font-weight: bold;
}

.single-entry__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 11px;
}

.single-entry__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.single-entry__thumb {
  margin: 0 0 28px;
}
.single-entry__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-ss);
}

/*============================
 記事の要素
============================*/
.entry-content {
  line-height: 2.15;
  padding-bottom: 100px;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content p {
  margin: 0 0 1.6em;
}
.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: var(--radius-ss);
}
.entry-content h2 {
  margin: 48px 0 24px;
  padding: 14px 16px;
  background: #e5e8ce;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: var(--radius-ss);
}
.entry-content h3 {
  margin: 36px 0 16px;
  padding: 8px 16px;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 1.6;
  border-radius: var(--radius-ss);
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em 1.2em;
  padding: 0;
}
.entry-content blockquote {
  margin: 24px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.45);
  border-left: 3px solid #c8d8cb;
}

/*============================
 関連記事
============================*/
.section--single-related {
  position: relative;
  margin: 0 calc(50% - 50vw);
}

.single-related__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(28px, 7vw, 64px);
  gap: 14px;
  position: relative;
  margin-bottom: 30px;
}
.single-related__header > * {
  margin: 0;
}

.single-related__title {
  width: min(320px, 60vw);
}
.single-related__title-en {
  width: min(220px, 40vw);
}

.single-related__list {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* 関連記事のカードを diary-list ベースで整える */
.single-related__list.diary-list {
  display: grid;
  gap: 16px;
}

.single-related__list .diary-item {
  background: #fff;
  border: none;
  border-radius: var(--radius-ss);
  overflow: hidden;
}

.single-related__list .diary-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.single-related__list .diary-thumb {
  width: 110px;
  flex-shrink: 0;
}

.single-related__list .diary-thumb img,
.single-related__list .diary-thumb__fallback {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-related__list .diary-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-related__list .diary-title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.single-related__list .diary-meta {
  margin: 0 0 8px;
  font-size: 11px;
}

/* PC */
@media (min-width: 768px) {
  .single-related__header {
    padding-block: 0 10px;
    gap: 18px;
  }
  .single-related__title-en {
    width: 140px;
  }
  .single-related__title {
    width: 320px;
  }
  .single-related__list.diary-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .single-related__list .diary-thumb {
    width: 140px;
  }
}
/* ========================================
POST NAV
======================================== */
.post-nav {
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px dotted rgba(120, 120, 120, 0.35);
}

.post-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.post-nav__item {
  min-width: 0;
}

.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(120, 120, 120, 0.2);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.post-nav__link:hover {
  background: rgba(140, 137, 184, 0.06);
  border-color: rgba(140, 137, 184, 0.35);
  transform: translateY(-2px);
}

.post-nav__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(80, 80, 80, 0.6);
}

.post-nav__title {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  word-break: break-word;
  color: transparent;
  background: linear-gradient(to right, #8c89b8 50%, #75706a 50%) 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.35s ease;
}

.post-nav__link:hover .post-nav__title {
  background-position: 0 100%;
}

.post-nav__item--next {
  text-align: right;
}

.post-nav__item--next .post-nav__link {
  align-items: flex-end;
}

@media (max-width: 520px) {
  .post-nav__grid {
    grid-template-columns: 1fr;
  }
  .post-nav__item--next {
    text-align: left;
  }
  .post-nav__item--next .post-nav__link {
    align-items: flex-start;
  }
  .post-nav__title {
    font-size: 14px;
  }
}
/* ========================================
イラスト
======================================== */
.footer__illust {
  position: absolute;
  top: -190px;
  left: 30%;
}
.footer__illust img {
  width: min(300px, 60vw);
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .footer__illust {
    position: absolute;
    top: -250px;
    left: 38%;
  }
  .footer__illust img {
    width: min(320px, 60vw);
  }
}
/* ========================================
FOOTER ARCHIVE
======================================== */
.footer__ttl,
.site-footer .wp-block-heading {
  background-color: #c3dbcb;
  font-size: 16px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  border-radius: var(--radius-ss);
}

.footer__archive-select {
  position: relative;
  /* select wrapper */
}
.footer__archive-select select {
  width: 100%;
  padding: 14px 12px;
  font-size: 13px;
  font-family: inherit;
  border-radius: var(--radius-ss);
  border: 1px solid var(--color-border);
  background: #fff;
  color: #75706a;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  /* focus */
}
.footer__archive-select select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.25);
}
.footer__archive-select {
  /* dropdown arrow */
}
.footer__archive-select select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}

/* ========================================
タグクラウド
======================================== */
.wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

.tag-cloud-link {
  display: inline-block;
  padding: 0.5em 0.8em;
  line-height: 1;
  font-size: 12px !important;
  text-decoration: none;
  color: #75706a;
  background-color: #fff;
  border: 1px solid #75706a;
  border-radius: 2em;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* # を付ける */
.tag-cloud-link::before {
  content: "#";
  margin-right: 2px;
}

/* hover */
.tag-cloud-link:hover {
  color: #fff;
  background: #75706a;
  border-color: #75706a;
}

/* ========================================
フッターロゴ
======================================== */
.footer__logo {
  display: flex;
  justify-content: center;
  padding-block: 50px;
}
.footer__logo img {
  width: 80px;
  height: auto;
}

.site-footer small {
  display: block;
  font-size: 10px;
  text-align: center;
}

/* ========================================
ARCHIVE HEADER
======================================== */
.archive-header {
  margin-block: 30px 40px;
}

.archive-header__inner {
  margin: 0 auto;
}

.archive-header__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 800;
}

.archive-header__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(60, 60, 60, 0.75);
}
.archive-header__desc p {
  margin: 0;
}

/* ========================================
ARCHIVE ENTRY
======================================== */
.archive-entry__empty {
  width: min(720px, 100%);
  margin: 40px auto 0;
  font-size: 14px;
  color: rgba(80, 80, 80, 0.7);
}

/* ========================================
MOBILE
======================================== */
@media (max-width: 520px) {
  .archive-header__title {
    font-size: 28px;
  }
  .archive-header__desc {
    font-size: 13px;
    line-height: 1.7;
  }
}/*# sourceMappingURL=main.css.map */