@charset "UTF-8";
html {
  font-size: clamp(13px, 0.7vw + 9px, 16px);
}

html,
body,
div {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

.main::before,
.about::before,
.about::after,
.about-inner::after,
.top-report::after,
.theme::before,
.theme::after,
.cycle::before,
.cycle::after,
.project::before,
.history::after,
footer .footer::before,
footer .footer::after {
  pointer-events: none;
}

img {
  width: 100%;
  height: auto;
}

h2 {
  margin: 0;
}

/* メインビジュアル */
.main {
  background: #e3e9b4;
  min-height: 70vw;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/main.webp) center top/100% no-repeat;
  transform: scale(1.16) translateY(-3%);
  transform-origin: center top;
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}
.main > * {
  position: relative;
  z-index: 1;
}
.main nav .nav {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 1%;
  justify-content: flex-end;
  padding: 0.5rem;
  list-style: none;
}
.main nav .nav a {
  background: #00671f;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0.4rem;
  font-size: 0.8rem;
  transition: 0.3s;
}
.main nav .nav a:hover {
  opacity: 0.8;
}
.main-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 9%;
  height: 60vw;
}
.main-logo h1 {
  width: 36%;
  max-width: 400px;
  opacity: 0;
  transform: scale(0.84);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, opacity 0.45s ease 0.35s;
  will-change: transform, opacity;
}
.main.is-ready::before {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.main.is-ready .main-logo h1 {
  opacity: 1;
  transform: scale(1);
}

.morino-reveal > * {
  opacity: 0;
  transform: translateY(36px);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  will-change: transform, opacity;
}
.morino-reveal.is-content-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.morino-reveal > :nth-child(2) {
  transition-delay: 0.08s;
}
.morino-reveal > :nth-child(3) {
  transition-delay: 0.16s;
}
.morino-reveal > :nth-child(4) {
  transition-delay: 0.24s;
}
.morino-reveal > :nth-child(5) {
  transition-delay: 0.32s;
}
.morino-reveal > :nth-child(6) {
  transition-delay: 0.4s;
}

/* 千葉の森を、未来へつなぐ */
.about {
  background: url(../img/about.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9% 0 20%;
  position: relative;
  margin-top: -18%;
}
.about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 32%;
  background: url(../img/footer-left.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  transform-origin: left top;
  transform: translate(-32px, 24px) scale(0.82);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}
.about::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  padding-top: 32%;
  background: url(../img/footer-right.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  transform-origin: right top;
  transform: translate(32px, 24px) scale(0.82);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s, opacity 0.7s ease 0.12s;
  will-change: transform, opacity;
}
.about.is-visible::before, .about.is-visible::after {
  opacity: 1;
}
.about.is-visible::before {
  transform: translate(0, 0) scale(1);
}
.about.is-visible::after {
  transform: translate(0, 0) scale(1);
}
.about-inner {
  width: 90%;
  max-width: 640px;
  text-align: center;
  position: relative;
}
.about-inner h2 {
  font-size: 2.4rem;
  font-weight: 600;
}
.about-inner P {
  font-size: 1.2rem;
  font-weight: 500;
}
.about-inner P strong {
  padding-bottom: 2rem;
}
.about-inner::after {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  left: -6%;
  bottom: -36%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}

.about-inner,
.top-report,
.theme,
.cycle,
.project,
.history {
  --tree-grow: 0;
  --tree-shift: 24px;
}

.about-inner.is-tree-visible,
.top-report.is-tree-visible,
.theme.is-tree-visible,
.cycle.is-tree-visible,
.project.is-tree-visible,
.history.is-tree-visible {
  --tree-grow: 1;
}

.about-inner::after,
.top-report::after,
.theme::before,
.theme::after,
.cycle::before,
.cycle::after,
.project::before,
.history::after {
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.55s ease;
}

/* 活動報告 */
.top-report {
  background: url(../img/report.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 9.3%;
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}
.top-report::after {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  right: 3%;
  bottom: -3%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.top-report--inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.top-report--inner h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
.top-report--list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding-top: 3rem;
  align-items: stretch;
  opacity: 1;
  transform: none;
  transition: none;
}
.top-report--list .col {
  width: 22.75%;
  display: flex;
}
.top-report--list .col a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.top-report--list .col a .image {
  aspect-ratio: 13/17;
  overflow: hidden;
  border-radius: 12px;
}
.top-report--list .col a .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.22s ease;
}
.top-report--list .col a P {
  margin: 0;
  padding-top: 0.5rem;
  position: relative;
  line-height: 1.5;
}
.top-report--list .col a P::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../img/report-icon.svg);
  background-size: cover;
  position: absolute;
  margin: 0.3rem 0 0 0.5rem;
}
.top-report--list .col a:hover, .top-report--list .col a:focus-visible {
  transform: translateY(-12px) scale(1.02);
}
.top-report--list .col a:hover .image img, .top-report--list .col a:focus-visible .image img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.top-report--list .col a:focus-visible {
  outline: 3px solid rgba(34, 181, 115, 0.35);
  outline-offset: 6px;
}
.top-report .btn {
  text-align: center;
  padding-top: 3rem;
}
.top-report .btn a {
  display: inline-block;
  background: #00671f;
  padding: 0.6rem 2rem 0.6rem 4rem;
  border-radius: 2rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.top-report .btn a::after {
  content: ">";
  margin-left: 2em;
}
.top-report .btn a:hover, .top-report .btn a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
  background: #007d25;
}

/* 森が抱える課題 */
.theme {
  background: url(../img/theme.webp) #e1eab2;
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 12% 0 16%;
  position: relative;
  margin-top: -9.3%;
}
.theme::before {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  left: 3%;
  bottom: 16%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.theme::after {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  right: 3%;
  bottom: -3%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.theme-inner {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}
.theme-inner h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
.theme-inner p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.25rem 0 0;
  padding: 0;
}
.theme-inner p span {
  display: inline-block;
}
.theme-inner h2 + p {
  margin-top: 1.8rem;
}
.theme-inner--image img, .theme-inner--images img {
  display: block;
  margin-inline: auto;
}
.theme-inner--image {
  width: 48%;
  max-width: 240px;
  margin: 1.5rem auto 0;
}
.theme-inner--images {
  width: min(100%, 600px);
  margin: 2rem auto 0;
}

.theme-inner--image,
.theme-inner--images,
.life-inner .img-2cols,
.cycle-inner--flow,
.cycle-inner--images,
.project-inner .img-2cols,
.case-list {
  opacity: 1;
  transform: none;
  transition: none;
}

/* 千葉のスギを暮らしの中へ */
.life {
  background: #e1eab2;
  padding: 0 0 4rem;
}
.life-inner {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}
.life-inner h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
.life-inner P {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}
.life-inner P span {
  display: inline-block;
}
.life-inner .img-2cols {
  display: flex;
  gap: 2%;
  padding-top: 2rem;
}

/* 森から暮らしへ、そして再生への循環 */
.cycle {
  background: url(../img/cycle.webp) #e1eab2;
  background-size: 100% 100%;
  background-position: top;
  padding: 18% 0 40%;
  position: relative;
}
.cycle::before {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  left: 3%;
  top: -4%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.cycle::after {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  right: 3%;
  top: 2%;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.cycle-inner {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}
.cycle-inner h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
.cycle-inner p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0;
}
.cycle-inner--images {
  padding-top: 3rem;
}
.cycle-inner--images .img-3cols {
  display: flex;
  gap: 2%;
}
.cycle-inner--images p {
  margin-top: 0;
  text-align: center;
  font-weight: 500;
}
.cycle-inner--images p span {
  display: inline-block;
}
.cycle-inner--flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
}
.cycle-inner--flow .col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.cycle-inner--flow .col:first-child {
  flex-grow: 581.37;
}
.cycle-inner--flow .col:last-child {
  flex-grow: 418.36;
}
.cycle-inner--flow .col img {
  display: block;
  width: 100%;
  height: auto;
}

/* プロジェクト */
.project {
  min-height: 80vw;
  background: url(../img/project.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 0 16%;
  position: relative;
  margin-top: -40%;
}
.project::before {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  left: 3%;
  top: 0;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.project-inner {
  width: 92%;
  max-width: 960px;
}
.project-inner h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.project-inner p {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.65;
}
.project-inner p span {
  display: inline-block;
}
.project-inner .img-2cols {
  display: flex;
  gap: 2%;
  padding: 2rem 0 2rem;
}

/* 地域財学習机天板プロジェクト */
.project-desk {
  background: url(../img/project-desk.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 2;
  padding: 0 0 37.4%;
}
.project-desk--inner {
  width: 96%;
  max-width: 880px;
  margin: 0 auto;
}
.project-desk--inner h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.project-desk--inner h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.project-desk--inner p {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.65;
}
.project-desk--inner p span {
  display: inline-block;
}
.project-desk--inner p span.green {
  color: #006837;
  font-weight: 600;
  margin: 0 0.3rem;
}

.flow {
  opacity: 1;
  transform: none;
  transition: none;
}

/* 沿革 */
.history {
  background: url(../img/history.webp);
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 18%;
  position: relative;
  z-index: 1;
  padding-top: 14%;
  margin-top: -14%;
  --tree-grow: 0;
  --tree-shift: 24px;
}
.history::after {
  content: "";
  width: 150px;
  height: 154px;
  background: url(../img/tree.webp);
  background-size: cover;
  position: absolute;
  right: 6%;
  bottom: 4rem;
  transform-origin: center bottom;
  transform: translateY(calc(var(--tree-shift) * (1 - var(--tree-grow)))) scaleY(calc(0.03 + 0.97 * var(--tree-grow)));
  opacity: var(--tree-grow);
  will-change: transform, opacity;
}
.history-inner {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}
.history-inner h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.history-inner p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}

.history-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.history-slider__viewport {
  overflow: hidden;
}
.history-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.history-slider__slide {
  flex: 0 0 100%;
}
.history-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.history-slider__nav {
  width: 3.25rem;
  height: 3.25rem;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(57, 92, 28, 0.9);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.history-slider__nav:hover, .history-slider__nav:focus-visible {
  background: #284015;
  transform: scale(1.06);
}
.history-slider__nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}
.history-slider__nav.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.history-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.history-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(57, 92, 28, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.history-slider__dot:hover, .history-slider__dot:focus-visible {
  background: rgba(57, 92, 28, 0.62);
  transform: scale(1.08);
}
.history-slider__dot.is-active {
  background: #395c1c;
}

/* 納入事例 */
.case {
  background: url(../img/case.webp) #e1eab2;
  background-size: cover;
  background-position: bottom;
  padding: 18rem 0 24rem;
  margin-top: -18%;
  position: relative;
}
.case h2 {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
}
.case-list {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.case-list .col {
  flex: 0 0 auto;
}

.case-trigger {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(48, 74, 20, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.case-trigger img {
  display: block;
  width: auto;
  height: clamp(150px, 16vw, 200px);
  max-width: 100%;
}
.case-trigger:hover, .case-trigger:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(48, 74, 20, 0.24);
  filter: brightness(1.05);
}
.case-trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.case-modal.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.case-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 14, 0.78);
  backdrop-filter: blur(4px);
}
.case-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 4rem);
  padding: 1rem;
  background: rgba(250, 250, 244, 0.96);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.3s ease;
}
.case-modal.is-open .case-modal__dialog {
  transform: translateY(0) scale(1);
}
.case-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 72, 20, 0.9);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.case-modal__close:hover, .case-modal__close:focus-visible {
  background: #24380f;
  transform: scale(1.08);
}
.case-modal__body {
  overflow: auto;
  max-height: calc(100vh - 6rem);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.case-modal__body img {
  display: block;
  width: 100%;
  height: auto;
}

body.case-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

@media screen and (max-width: 767px) {
  .cycle-inner--flow {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cycle-inner--flow .col {
    flex: 0 1 auto;
    width: 100%;
  }
  .cycle-inner--flow .col img {
    width: auto;
    height: clamp(68px, 20vw, 82px);
    max-width: 100%;
  }
  .history-slider {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .history-slider__nav {
    width: 3rem;
    height: 3rem;
  }
  .history-slider__nav--prev {
    justify-self: start;
    order: 2;
  }
  .history-slider__nav--next {
    justify-self: end;
    order: 2;
    margin-top: -3.75rem;
  }
  .history-slider__viewport {
    order: 1;
  }
  .case {
    padding: 12rem 0 16rem;
  }
  .case-list {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .case-trigger {
    max-width: 100%;
  }
  .case-trigger img {
    height: 160px;
  }
  .case-modal {
    padding: 1rem;
  }
  .case-modal__dialog {
    padding: 0.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .main-logo h1 {
    width: 30%;
    max-width: 320px;
  }
  .cycle::before {
    top: -9%;
  }
  .cycle::after {
    top: -3%;
  }
  .case {
    margin-top: -22%;
    padding: 14rem 0 18rem;
    background-size: cover;
    background-position: center bottom;
  }
  .case-list {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    max-width: 760px;
  }
  .case-list .col {
    flex: 0 1 calc(50% - 0.625rem);
    display: flex;
    justify-content: center;
  }
  .case-trigger {
    width: 100%;
  }
  .case-trigger img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 12px;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .about-inner h2,
  .top-report--inner h2,
  .theme-inner h2,
  .life-inner h2,
  .cycle-inner h2,
  .project-inner h2,
  .project-desk--inner h2,
  .history-inner h2,
  .case h2,
  .contact h2,
  .contact-form--inner .form h3 {
    font-size: 1.4rem;
    line-height: 1.35;
  }
  .about-inner p,
  .theme-inner p,
  .life-inner p,
  .cycle-inner p,
  .project-inner p,
  .project-desk--inner p,
  .history-inner p,
  .top-report--list p,
  .contact-form--inner .form p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }
  .about-inner::after,
  .top-report::after,
  .theme::before,
  .theme::after,
  .cycle::before,
  .cycle::after,
  .project::before,
  .history::after {
    width: 60px;
    height: 62px;
  }
  .top-report--list {
    gap: 1rem 4%;
  }
  .top-report--list .col {
    width: 48%;
  }
  .top-report--inner {
    padding-top: 2rem;
  }
  /*
  .project-inner p span,
  .project-desk--inner p span {
      display: inline;
  }
  */
  .cycle {
    background-size: 160% 100%;
    background-position: center top;
  }
  .history::after {
    right: 4%;
    bottom: 0.75rem;
  }
  .case {
    margin-top: -28%;
  }
  /*
  .about-inner > p:first-of-type br:nth-of-type(odd),
  .theme-inner > p br:nth-of-type(odd),
  .life-inner > p br:nth-of-type(odd),
  .project-inner > p br:nth-of-type(odd) {
      display: none;
  }
  */
  .main::before {
    background-image: url(../img/sp/main.webp);
    background-size: 118% auto;
    background-position: center top;
  }
  .main-logo {
    height: 68vw;
    padding-bottom: 10%;
  }
  .main-logo h1 {
    width: 44%;
    max-width: 240px;
  }
  .about {
    background-image: url(../img/sp/about.webp);
    margin-top: -14%;
    background-size: 128% 100%;
    background-position: center top;
  }
  .about::before, .about::after {
    padding-top: 24%;
  }
  .about::before {
    background-image: url(../img/sp/footer-left.webp);
    transform: translate(-16px, -12px) scale(0.68);
  }
  .about::after {
    background-image: url(../img/sp/footer-right.webp);
    transform: translate(16px, -12px) scale(0.68);
  }
  .about.is-visible::before, .about.is-visible::after {
    transform: translate(0, -12px) scale(0.82);
  }
  .theme {
    background-image: url(../img/sp/theme.webp);
  }
  .theme::before {
    display: none;
  }
  .theme::after {
    background-image: url(../img/sp/tree.webp);
    right: 1%;
    bottom: -9%;
  }
  .theme-inner p {
    margin-top: 1rem;
  }
  .theme-inner h2 + p {
    margin-top: 1.35rem;
  }
  .theme-inner--image {
    margin-top: 1.1rem;
  }
  .theme-inner--images {
    width: 78%;
    max-width: 520px;
    margin-top: 1.55rem;
  }
  .about-inner::after,
  .top-report::after,
  .cycle::before,
  .cycle::after,
  .project::before,
  .history::after {
    background-image: url(../img/sp/tree.webp);
  }
  .cycle {
    background-image: url(../img/sp/cycle.webp);
  }
  .project {
    background-image: url(../img/sp/project.webp);
  }
  .project-desk {
    background-image: url(../img/sp/project-desk.webp);
  }
  .history {
    background-image: url(../img/sp/history.webp);
  }
  footer .footer-inner {
    padding: 14% 0 60%;
  }
  footer {
    background-image: url(../img/sp/footer-back.webp);
  }
  footer .footer {
    background-image: url(../img/sp/footer-green.webp);
  }
  footer .footer::before,
  footer .footer::after {
    padding-top: 20%;
  }
  footer .footer::before {
    background-image: url(../img/sp/footer-left.webp);
    bottom: 0;
  }
  footer .footer::after {
    background-image: url(../img/sp/footer-right.webp);
    bottom: 0;
  }
  footer .footer-inner--address {
    font-size: 0.95rem;
  }
  footer .footer-inner--address .footer-contact {
    flex-direction: column;
    gap: 0.1rem;
    align-items: center;
    line-height: 1.15;
  }
  footer .footer-inner--address .footer-contact p:first-child {
    margin-top: 0.8rem;
  }
  footer .footer-inner .copyright {
    font-size: 0.68rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    width: 88%;
    margin: 0 auto;
  }
}
@media (hover: none) {
  .case-trigger:hover {
    transform: none;
    box-shadow: 0 18px 36px rgba(48, 74, 20, 0.16);
    filter: none;
  }
}
/* お問い合わせ */
.contact {
  background: #e1eab2;
}
.contact h2 {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-form {
  width: 92%;
  max-width: 1200px;
  margin: -6rem auto 0;
  position: relative;
}
.contact-form--inner {
  /*padding-top: 75.04%;*/
  background: url(../img/contact-back.webp);
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.contact-form--inner .form {
  /*position: absolute;*/
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.contact-form--inner .form h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0;
}
.contact-form--inner .form P {
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
}
.contact-form--inner .form P span {
  display: inline-block;
}
.contact-form--inner .form .mailform {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.contact-form--inner .form .mailform .wpcf7 {
  margin-top: 2rem;
}
.contact-form--inner .form .mailform .wpcf7 form {
  margin: 0;
}
.contact-form--inner .form .mailform .wpcf7 .screen-reader-response,
.contact-form--inner .form .mailform .wpcf7 .screen-reader-response * {
  display: none !important;
}
.contact-form--inner .form .mailform .wpcf7 .hidden-fields-container,
.contact-form--inner .form .mailform .wpcf7 .hidden-fields-container * {
  display: none !important;
}
.contact-form--inner .form .mailform .contact_morinosaisei {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(69, 84, 33, 0.08);
}
.contact-form--inner .form .mailform .contact_morinosaisei th,
.contact-form--inner .form .mailform .contact_morinosaisei td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(130, 147, 88, 0.22);
  vertical-align: top;
}
.contact-form--inner .form .mailform .contact_morinosaisei tr:last-child th,
.contact-form--inner .form .mailform .contact_morinosaisei tr:last-child td {
  border-bottom: 0;
}
.contact-form--inner .form .mailform .contact_morinosaisei th {
  width: 28%;
  background: rgba(225, 234, 178, 0.7);
  text-align: left;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}
.contact-form--inner .form .mailform .contact_morinosaisei td {
  background: rgba(255, 255, 255, 0.76);
}
.contact-form--inner .form .mailform .contact_morinosaisei .wpcf7-form-control-wrap {
  display: block;
}
.contact-form--inner .form .mailform .contact_morinosaisei input[type=text],
.contact-form--inner .form .mailform .contact_morinosaisei input[type=email],
.contact-form--inner .form .mailform .contact_morinosaisei textarea {
  width: 100%;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(108, 130, 55, 0.28);
  border-radius: 0.9rem;
  background: #fff;
  font: inherit;
  color: #2d331e;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form--inner .form .mailform .contact_morinosaisei input[type=text]:focus,
.contact-form--inner .form .mailform .contact_morinosaisei input[type=email]:focus,
.contact-form--inner .form .mailform .contact_morinosaisei textarea:focus {
  outline: 0;
  border-color: #6b8a34;
  box-shadow: 0 0 0 4px rgba(144, 177, 73, 0.16);
  background: #fffef7;
}
.contact-form--inner .form .mailform .contact_morinosaisei textarea {
  min-height: 5.5rem;
  height: 5.5rem;
  resize: vertical;
}
.contact-form--inner .form .mailform .wpcf7-not-valid-tip {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-form--inner .form .mailform .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
  display: block;
}
.contact-form--inner .form .mailform .wpcf7-response-output:empty {
  display: none;
}
.contact-form--inner .form .mailform .contact__form_btn {
  margin-top: 2rem;
  text-align: center;
}
.contact-form--inner .form .mailform .contact__form_btn .wpcf7-submit {
  min-width: 13rem;
  padding: 0.95rem 2.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d8c2d 0%, #4f7020 100%);
  box-shadow: 0 16px 28px rgba(58, 86, 24, 0.2);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
.contact-form--inner .form .mailform .contact__form_btn .wpcf7-submit:hover, .contact-form--inner .form .mailform .contact__form_btn .wpcf7-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(58, 86, 24, 0.24);
}
.contact-form--inner .form .mailform .contact__form_btn .wpcf7-submit:focus-visible {
  outline: 3px solid rgba(112, 151, 27, 0.28);
  outline-offset: 4px;
}
.contact-form--inner .form .mailform .wpcf7-spinner {
  margin: 0.8rem auto 0;
  display: block;
}

@media screen and (max-width: 820px) {
  .contact-form--inner .form .mailform {
    width: 82%;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei,
  .contact-form--inner .form .mailform .contact_morinosaisei tbody,
  .contact-form--inner .form .mailform .contact_morinosaisei tr,
  .contact-form--inner .form .mailform .contact_morinosaisei th,
  .contact-form--inner .form .mailform .contact_morinosaisei td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei {
    border-radius: 1.1rem;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei tr {
    border-bottom: 0;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei tr:last-child {
    border-bottom: 0;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei th,
  .contact-form--inner .form .mailform .contact_morinosaisei td {
    border-bottom: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 0.3rem 0.55rem;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei th {
    background: transparent !important;
    border-radius: 0;
    min-height: 1.35rem !important;
    height: 1.35rem !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei td {
    padding-top: 0 !important;
    padding-bottom: 0.16rem !important;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei input[type=text],
  .contact-form--inner .form .mailform .contact_morinosaisei input[type=email],
  .contact-form--inner .form .mailform .contact_morinosaisei textarea {
    padding: 0.38rem 0.6rem;
    border-radius: 0.7rem;
  }
  .contact-form--inner .form .mailform .contact_morinosaisei textarea {
    min-height: 3.5rem;
    height: 3.5rem;
  }
  .contact-form--inner .form .mailform .contact__form_btn {
    margin-top: 1rem;
  }
  .contact-form--inner .form .mailform .contact__form_btn .wpcf7-submit {
    width: 100%;
    min-width: 0;
    padding: 0.72rem 1.2rem;
    font-size: 0.9rem;
  }
}
/* フッター */
footer {
  background: url(../img/footer-back.webp) #e1eab2;
  background-size: cover;
  background-position: left top;
  z-index: 2;
}
footer .footer {
  background: url(../img/footer-green.webp);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
}
footer .footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3%;
  width: 100%;
  padding-top: 40%;
  background: url(../img/footer-left.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  transform-origin: left bottom;
  transform: translate(-32px, 24px) scale(0.82);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  will-change: transform, opacity;
  z-index: 0;
}
footer .footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 100%;
  padding-top: 40%;
  background: url(../img/footer-right.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  transform-origin: right bottom;
  transform: translate(32px, 24px) scale(0.82);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s, opacity 0.7s ease 0.12s;
  will-change: transform, opacity;
  z-index: 0;
}
footer .footer.is-visible::before, footer .footer.is-visible::after {
  opacity: 1;
}
footer .footer.is-visible::before {
  transform: translate(0, 0) scale(1);
}
footer .footer.is-visible::after {
  transform: translate(0, 0) scale(1);
}
footer .footer-inner {
  padding: 12% 0;
  position: relative;
  z-index: 1;
}
footer .footer-inner--logo {
  width: 64%;
  margin: 0 auto;
  max-width: 360px;
  margin: 0 auto;
}
footer .footer-inner--address {
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  padding-top: 3rem;
}
footer .footer-inner--address .footer-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer .footer-inner--address .footer-contact a {
  text-decoration: none;
  color: #000;
}
footer .footer-inner .copyright {
  padding-top: 3rem;
  font-size: 0.9rem;
}

footer .footer-inner--address .footer-contact p,
footer .footer-inner .copyright {
  margin: 0;
}

/* 森の再生活動報告 */
body.reforestation-news-page {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #2d331e;
  background: #eef2d1;
}

.reforestation-news-shell {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 36%), #eef2d1;
}

.reforestation-news-site-header {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(109, 140, 45, 0.12);
}
.reforestation-news-site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.reforestation-news-site-header__logo {
  display: inline-block;
  width: min(280px, 52vw);
}
.reforestation-news-site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.reforestation-news-site-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: rgba(109, 140, 45, 0.12);
  color: #49631f;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.reforestation-news-site-header__link:hover, .reforestation-news-site-header__link:focus-visible {
  transform: translateY(-2px);
  background: rgba(109, 140, 45, 0.18);
  box-shadow: 0 14px 24px rgba(67, 84, 26, 0.12);
}

.reforestation-news-archive,
.reforestation-news-single {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.reforestation-news-archive__header {
  margin-bottom: 3rem;
  text-align: center;
}
.reforestation-news-archive__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
.reforestation-news-archive__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  line-height: 1.8;
}
.reforestation-news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
.reforestation-news-archive__pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.reforestation-news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #30411c;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(67, 84, 26, 0.08);
}
.reforestation-news-archive__pagination .current {
  background: #6d8c2d;
  color: #fff;
}
.reforestation-news-archive__empty {
  padding: 4rem 1rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  box-shadow: 0 18px 36px rgba(67, 84, 26, 0.08);
}

.reforestation-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 1rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(69, 84, 33, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.reforestation-news-card:hover, .reforestation-news-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 26px 42px rgba(69, 84, 33, 0.13);
  background: rgba(255, 255, 255, 0.96);
}
.reforestation-news-card__image {
  aspect-ratio: 13/17;
  overflow: hidden;
  border-radius: 1rem;
  background: #eef2d1;
}
.reforestation-news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.reforestation-news-card:hover .reforestation-news-card__image img, .reforestation-news-card:focus-visible .reforestation-news-card__image img {
  transform: scale(1.04);
}
.reforestation-news-card__meta {
  margin-top: 0.95rem;
  font-size: 0.85rem;
  color: #5f6a3d;
}
.reforestation-news-card__title {
  margin: 0.45rem 0 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.reforestation-news-card__excerpt {
  margin: 0.6rem 0 0;
  line-height: 1.8;
  color: #333;
}

.reforestation-news-single {
  max-width: 920px;
}
.reforestation-news-single__meta {
  font-size: 0.9rem;
  color: #5f6a3d;
}
.reforestation-news-single__title {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.35;
}
.reforestation-news-single__panel {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.75rem;
  box-shadow: 0 18px 36px rgba(69, 84, 33, 0.08);
}
.reforestation-news-single__image {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #eef2d1;
}
.reforestation-news-single__image img {
  display: block;
  width: 100%;
  height: auto;
}
.reforestation-news-single__content {
  margin-top: 2rem;
  line-height: 2;
}
.reforestation-news-single__content img {
  max-width: 100%;
  height: auto;
}
.reforestation-news-single__panel > .reforestation-news-single__content:first-child {
  margin-top: 0;
}
.reforestation-news-single__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.reforestation-news-single__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d8c2d 0%, #4f7020 100%);
  box-shadow: 0 16px 28px rgba(58, 86, 24, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
.reforestation-news-single__back:hover, .reforestation-news-single__back:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(58, 86, 24, 0.24);
}

.reforestation-news-site-footer {
  padding: 3rem 1.5rem 3.5rem;
  background: #dfe7b2;
}
.reforestation-news-site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.reforestation-news-site-footer__logo {
  width: min(260px, 48vw);
  margin: 0 auto;
}
.reforestation-news-site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.reforestation-news-site-footer__address {
  margin-top: 1.5rem;
  line-height: 1.8;
  font-weight: 600;
}
.reforestation-news-site-footer__contact {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.reforestation-news-site-footer__contact a {
  color: inherit;
  text-decoration: none;
}
.reforestation-news-site-footer__copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

@media screen and (max-width: 820px) {
  .reforestation-news-site-header {
    padding: 1rem;
  }
  .reforestation-news-site-header__inner {
    flex-direction: column;
  }
  .reforestation-news-archive,
  .reforestation-news-single {
    padding: 3.5rem 1rem 4.5rem;
  }
  .reforestation-news-archive__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .reforestation-news-card {
    padding: 0.85rem 0.85rem 1rem;
  }
  .reforestation-news-single__panel {
    border-radius: 1.35rem;
  }
  .reforestation-news-single__content {
    line-height: 1.9;
  }
  .reforestation-news-single__back {
    width: 100%;
    max-width: 18rem;
    padding-inline: 1.5rem;
  }
  .reforestation-news-site-footer__contact {
    flex-direction: column;
    gap: 0.2rem;
  }
}/*# sourceMappingURL=style.css.map */
