@charset "UTF-8";

/* ===== Base ===== */
:root {
  --container: 1100px;
  --pink: #e99aa8;
  --pink-deep: #d97a8c;
  --green: #7dbb5a;
  --green-deep: #5a8f3f;
  --green-soft: #dff0c8;
  --blue-soft: #6aa6c9;
  --text: #2b2b2b;
  --muted: #6f6f6f;
  --line: #e9e9e9;
  --shadow: 0 10px 26px rgba(0,0,0,.08);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  background: #fff;
}
a {
  color: inherit; text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
hr{
  border: none;
  border-top: 1px solid rgba(0,0,0,.08);
  margin: 48px 0;
}
.aligncenter {
  margin: 0 auto;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Scroll Reveal ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.js-reveal.is-inview{
  opacity: 1;
  transform: translateY(0);
}

/* “®‚«‚ðŒ¸‚ç‚µ‚½‚¢lŒü‚¯ */
@media (prefers-reduced-motion: reduce){
  .js-reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Header ===== */
.site-header {
  border-top: 4px solid var(--pink);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: url("../img/sakura2.png") right bottom/contain no-repeat;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.brand-title {
  font-size: 24px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 28px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  box-shadow: 0 8px 18px rgba(125,187,90,.25);
  transition: background-color 0.25s ease;
}

.header-contact:hover {
  background: var(--green-deep);
}
.header-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display:block;
  width: 22px;
  height: 2px;
  background: #666;
  margin: 5px 0;
}
.global-nav {
  background: var(--pink);
}
.global-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.global-nav-menu a {
  display: grid;
  place-items: center;
  padding: 12px 10px;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.25);
  min-height: 48px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.global-nav-menu li:last-child a {
  border-right: 0;
}
.global-nav-menu a:hover {
  background: rgba(255,255,255,.12);
}

/* =========================
  Content Headings
  (Page / Single)
========================= */

/* ===== Heading 1 ===== */
.page-container h1,
.single-container h1{
  margin: 2.8em 0 1.4em;
  padding-bottom: .45em;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  border-bottom: 3px solid var(--pink);
}

/* ===== Heading 2 ===== */
.page-container h2,
.single-container h2{
  margin: 3em 0 1.6em;
  padding: .7em .9em .7em 1.2em;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--pink-deep);
  border-left: 6px solid var(--pink);
  background: linear-gradient(
    to right,
    rgba(233,154,168,.18),
    rgba(233,154,168,0)
  );
  border-radius: 4px;
}

/* ===== Heading 3 ===== */
.page-container h3,
.single-container h3{
  margin: 2.4em 0 1.2em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--pink-deep);
  position: relative;
  padding-left: 1.1em;
}

.page-container h3::before,
.single-container h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: .6em;
  height: .6em;
  border-radius: 50%;
  background: var(--pink);
}

/* ===== Paragraph spacing (”÷’²®) ===== */
.page-container p,
.single-container p{
  margin: 1.2em 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background-position: center bottom;
}
.hero-bg {
  height: 340px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.00) 55%),
    var(--hero-bg) center/cover no-repeat;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 20px;
}
.hero-title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
  letter-spacing: .03em;
}
.hero-sub {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #f6efe8;
  padding: 22px 0;
  text-align: center;
  color: var(--green-deep);
}
.hero-sub p {
  margin: 0;
}

/* ===== Section Head ===== */
.section-head {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 36px 0 18px;
}
.section-head-icon {
  font-size: 26px;
}
.section-head-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--pink-deep);
  letter-spacing: .10em;
  font-weight: 500;
}
.section-head-title img{
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

/* ===== Topics ===== */
.topics {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}
.topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.topic-item {
  display: grid;
  grid-template-columns: 120px 92px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
}
.topic-item:first-child {
  border-top: 0;
}
.topic-date {
  color: var(--green);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.topic-tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--blue-soft);
}
.topic-tag--news{
  background: var(--blue-soft);
}
.topic-tag--report{
  background: var(--green);
}
.topic-tag--topics{
  background: #888;
}
.topic-link {
  color: #333;
  font-weight: 700;
}
.topic-link:hover {
  text-decoration: underline;
}
.topic-link.is-disabled{
  color: inherit;
  cursor: default;
  text-decoration: none;
  font-weight: 500;
}
.topics-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 42vw);
  height: 260px;
  background: url("../img/sakura.jpg") right bottom/contain no-repeat;
  opacity: .9;
  pointer-events: none;
}

/* ===== Gallery ===== */
.gallery {
  padding: 18px 0 34px;
  background: #fff;
}
.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-card {
  display: grid;
  gap: 10px;
}
.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.gallery-label {
  text-align: center;
  font-weight: 700;
  color: #444;
  font-size: 14px;
}
.gallery-link {
  display:block;
}
.gallery-link:hover .gallery-image {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.gallery-image {
  transition: transform .18s ease, box-shadow .18s ease;
}

/* ===== About Section ===== */
.about-section {
  position: relative;
  padding: 44px 0 56px;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 420px at 50% 10%, rgba(255,255,255,.70), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(191,232,255,.95), rgba(191,232,255,.55)),
    url("../img/bg-sky.jpg") center/cover no-repeat;
}
.about-card {
  position: relative;
  margin: 0 auto;
  width: min(760px, 100%);
  background: rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px 28px 26px;
  backdrop-filter: blur(2px);
  text-align: center;
}
.about-title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: .05em;
}
.about-text {
  margin: 0 0 18px;
  color: #3a3a3a;
  font-size: 14px;
  text-align: left;
}
.pill-button {
  margin: 0 auto;
  width: min(360px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 30px rgba(234,152,168,.30);
}
.pill-button-arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
}

/* ===== Partners ===== */
.partners{
  padding: 72px 0;
  background: #fff;
}
.partners-lead{
  margin-top: 16px;
  color: #666;
  font-size: 14px;
}

.partners-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.partners-item {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.partners-item a,
.partners-item .nolink {
  display: block;
  background: #fff;
  border: 1px solid #b7b7b7;
}
.partners-item a:hover {
  border: 1px solid var(--pink);
}
.partners-item img{
  max-width: 160px;
  max-height: 80px;
  margin: 0 auto;
  opacity: 1;
  object-fit: contain;
}
.partners-item a:hover img {
  opacity: .85;
}


/* ===== Buttons ===== */
.button-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background: var(--pink);
  color:#fff;
  font-weight:900;
  box-shadow: 0 10px 20px rgba(233,154,168,.25);
}
.button-link.is-ghost{
  background: transparent;
  color: var(--pink-deep);
  border: 2px solid var(--pink);
  box-shadow: none;
}

/* ===== Footer ===== */
.site-footer {
  background: url("../img/footer-sakura.png") right top no-repeat, var(--green-soft);
  position: relative;
  overflow: hidden;
}
.footer-top {
  padding: 28px 0;
}

.footer-brand-row {
  margin: 0 0 0 10px;
  font-size: 20px;
}
.footer-logo {
  width: 46px;
  height: 46px;
  overflow: hidden;
}
.footer-name {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.footer-meta {
  margin: 12px 0 20px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.8;
}
.footer-meta .meta-label {
  display: block;
  flex-shrink: 0;
}
.footer-meta .meta-label img {
  width: 54px;
  height: auto;
  margin: 0 auto 10px;
  overflow: hidden;
}
.footer-meta dl {
  margin: 0;
}
.footer-meta dt {
  font-size: 1.2em;
  font-weight: 700;
}
.footer-meta dd {
  margin-left: 0;
  line-height: 1.4;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.footer-menu li{
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-menu li img{
  width: 14px;
  height: auto;
  flex-shrink: 0;
}
.footer-menu a {
  color: #4b4b4b;
  font-weight: 700;
  line-height: 1.6;
}
.footer-menu a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background: rgba(255,255,255,.40);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 12px 0;
  color: #666;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 981px) {
  .site-footer .container {
    padding: 0 100px;
  }
}
@media (min-width: 769px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
  }
  .footer-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px 10px;
    font-size: 22px;
  }
  .footer-meta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
  .footer-meta {
    margin-bottom: 0;
  }
  .site-footer nav {
    display: none;
  }
}

/* ===== Page ===== */
.page-header{
  background: #f6efe8;
  padding: 36px 0;
}
.page-title{
  margin: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--pink-deep);
}

.page-content{
  padding: 60px 0 80px;
  background: url("../img/bg-main.jpg") right top no-repeat, url("../img/sakura.jpg") right bottom no-repeat;
}
.page-container{
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
}
.page-container h2{
  margin-top: 48px;
  font-size: 22px;
  border-left: 6px solid var(--pink);
  padding-left: 14px;
}
.page-container h3{
  margin-top: 36px;
  font-size: 18px;
}
.page-container p{
  margin: 1.2em 0;
}
.page-container a{
  color: var(--pink-deep);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .page-content{
    padding: 20px 0;
  }
}

/* ===== Single ===== */
.single-header{
  background: #fff5f7;
  padding: 46px 0 36px;
  border-bottom: 1px solid var(--line);
}
.single-header-inner{
  max-width: 860px;
  margin: 0 auto;
}
.single-meta{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.single-date{
  color: var(--green);
  font-weight: 700;
}
.single-tag{
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.single-title{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.single-content{
  padding: 60px 0 80px;
}
.single-container{
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
}

.single-eyecatch{
  margin: 0 0 32px;
}
.single-eyecatch img{
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.single-container h2{
  margin-top: 48px;
  font-size: 22px;
  border-left: 6px solid var(--pink);
  padding-left: 14px;
}
.single-container h3{
  margin-top: 36px;
  font-size: 18px;
}

.single-nav{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.single-nav a{
  font-weight: 700;
  color: var(--pink-deep);
}

/* ===== 404 ===== */
.not-found-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 26px;
}
.not-found-search{
  margin: 22px 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:#fff;
}
.not-found-links h2{
  font-size: 18px;
  margin: 0 0 10px;
  border-left: 6px solid var(--pink);
  padding-left: 12px;
}
.not-found-links ul{
  margin:0;
  padding-left: 18px;
}

/* ===== Search form ===== */
.search-form{
  display:flex;
  gap:10px;
  align-items:center;
}
.search-form label{ flex:1; }
.search-field{
  width:100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
}
.search-submit{
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

/* ===== Archive / Category list ===== */
.archive-description{
  max-width: 860px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.post-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.post-card{
  border-radius: 18px;
  overflow: hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.post-card-link{ display:block; height:100%; }
.post-card-thumb img{
  width:100%;
  height:auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-body{ padding: 16px 16px 18px; }
.post-card-meta{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 10px;
}
.post-date{
  color: var(--green);
  font-weight:900;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}
.post-tag{
  display:inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green);
  color:#fff;
  font-size: 12px;
  font-weight:900;
}
.post-card-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
}
.post-card-excerpt{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.post-card:hover .post-card-title{ color: var(--pink-deep); }

/* ===== Pagination ===== */
.pagination{
  display:flex;
  justify-content:center;
  margin-top: 34px;
}
.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  font-weight: 700;
}
.pagination .page-numbers.current{
  background: var(--pink);
  border-color: var(--pink);
  color:#fff;
}
.pagination .page-numbers:hover{
  border-color: var(--pink);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .global-nav-menu {
    grid-template-columns: repeat(3, 1fr);
  }
  .global-nav-menu a {
    border-right: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
  }
  .gallery-grid {
   grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
   grid-template-columns: 1fr;
  }
}

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

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }
  .header-contact {
    padding: 22px 16px;
  }
  .nav-toggle {
    display: inline-block;
  }
  .global-nav {
    display: none;
  }
  .global-nav-menu {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  body.is-nav-open .global-nav {
    display: block;
  }
  .header-contact-label {
    display:none;
  }
  .brand-title{
    font-size: 18px;
  }
  .hero-bg {
    height: 280px;
  }
  .section-head-title{
    flex-direction: column;
    gap: 6px;
  }
  .topic-item{
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date tag"
      "title title";
    row-gap: 6px;
  }

  .topic-date{
    grid-area: date;
  }

  .topic-tag{
    grid-area: tag;
    justify-self: start;
  }

  .topic-link{
    grid-area: title;
  }
  .topics-deco {
    display: none;
  }
  .partners{
    padding: 56px 0;
  }
  .partners-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partners-item img{
    max-width: 140px;
  }
}


/* =========================================================
   Šˆ“®ƒŒƒ|[ƒgiBˆÄFƒ^ƒCƒ€ƒ‰ƒCƒ“Œ^j
   - BEM–½–¼Freport-archive / report-timeline / report-card
   - F‚ÍŽw’è‚µ‚È‚¢iƒTƒCƒg‘¤‚Ì•Ï” or Œ»ó‚Ìƒe[ƒ}F‚É“éõ‚Þj
   ========================================================= */

/* ---- base layout ---- */
.report-archive {
  padding: 48px 0;
}

.report-archive .container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.report__table {
  width: 100%;
  border-collapse: collapse;
}

.report__table th,
.report__table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.report__table th {
  background: #f5f5f5;
  font-weight: 600;
}

.report__table-wrap {
  overflow-x: auto;
}


/* =========================================================
   ƒ^ƒCƒ€ƒ‰ƒCƒ“ güh ‚Æ g“_h
   - PCF¶‚ÉŒÅ’èŒŽEü‚ðo‚·
   - SPFŽ©‘R‚É—¬‚·iü‚Í”–‚­j
   ========================================================= */

/* ‚Ü‚¸‚Íü‚Ì—Ìˆæ‚ð—pˆÓ */
@media (min-width: 860px) {

  .report-timeline__month-title {
    position: sticky;
    top: 90px; /* ƒwƒbƒ_[ŒÅ’è‚ª‚ ‚éê‡‚Í’²® */
    width: 70px;
    margin: 0;
    float: left;
    transform: translateX(-88px);
    opacity: 0.8;
  }
}

/* ŠeƒAƒCƒeƒ€‚Ì“_iPCj */
@media (min-width: 860px) {
  .report-timeline__item {
    position: relative;
  }

  .report-timeline__item::before {
    content: "";
    position: absolute;
    left: -52px; /* month padding-left(88) - line left(44) = 44 ¨ —]”’’²® */
    top: 28px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.25;
  }
}

/* SP‚Å‚Íü‚ÍT‚¦‚ß */
@media (max-width: 859.98px) {
  .report-timeline__month {
    padding-left: 0;
    border-left: 2px solid currentColor;
    border-left-color: currentColor;
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    border-left-color: currentColor;
    opacity: 0.95;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
    border-left-opacity: 0.12;
  }

  /* ª CSS‚É border-left-opacity ‚Í‚È‚¢‚Ì‚Å opacity ‚Å‘ã‘Ö */
  .report-timeline__month {
    border-left-color: currentColor;
  }

  .report-timeline__month {
    border-left-color: currentColor;
    border-left-width: 2px;
  }

  .report-timeline__month {
    padding-left: 14px;
    border-left: 2px solid currentColor;
    border-left-color: currentColor;
  }

  .report-timeline__month-title {
    margin: 0 0 12px;
  }

  .report-timeline__month::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 26px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.18;
  }
}

/* ---- card ---- */
.report-card {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.report-card__link {
  text-decoration: none;
  color: inherit;
}

.report-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.report-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.report-card__link:hover .report-card__image {
  transform: scale(1.03);
}

.report-card__body {
  padding: 14px 14px 14px 0;
  display: grid;
  gap: 8px;
}

.report-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-size: 12px;
  opacity: 0.9;
}

.report-card__date {
  letter-spacing: 0.02em;
}

.report-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0.9;
}

.report-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.report-card__excerpt {
  margin: 0;
  line-height: 1.85;
  opacity: 0.9;
}

.report-card__submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  opacity: 0.85;
}

.report-card__place,
.report-card__people {
  white-space: nowrap;
}


/* ---- pagination ---- */
.report-archive__pagination {
  margin-top: 28px;
}

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

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
}

.pagination__link:hover {
  opacity: 0.85;
}

.pagination__link.is-current {
  pointer-events: none;
  opacity: 0.6;
}

/* ---- hr spacing (optional) ---- */
.report-archive hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}


/* ---- gallery ---- */
.photo-grid-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.photo-grid {
  width: 860px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.photo-grid__item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
