@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
/*
  Settings
————————————————————————————————————————— */
/*
  Base
————————————————————————————————————————— */
@font-face {
  font-family: "A1Mincho";
  src: url("../fonts/A-OTF-A1MinchoStd-Bold.woff2") format("woff2"), url("../fonts/A-OTF-A1MinchoStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #08391F;
  line-height: 1;
}
body.is-drawerActive {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
}
.l-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}
.l-header.is-scrolled::before {
  opacity: 1;
}
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
.l-wrapper02 {
  max-width: 1165px;
  margin: 0 auto;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
  layout(1199)
  =========================*/
  .l-wrapper {
    max-width: 90%;
  }
}
/* =================================
  Object
================================= */
/*
  component
————————————————————————————————————————— */
.c-breadcrumb {
  margin-top: 16px;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-breadcrumb__item {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 16px;
  padding-left: 16px;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.75);
}
.c-breadcrumb__item a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-breadcrumb__item a:hover {
  opacity: 0.75;
}
/* =========================
  hero
========================= */
.c-pageHero {
  position: relative;
  overflow: hidden;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
}
.c-pageHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)), radial-gradient(rgba(255, 255, 255, 0.04) 0.6px, transparent 0.8px);
  background-size: 100% 100%, 4px 4px;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.7;
}
.c-pageHero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 146px 80px 72px;
}
.c-pageHero__heading {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
}
.c-pageHero__titleEn {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 12vw, 90px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.c-pageHero__titleJa {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.c-sectionHeading--center {
  text-align: center;
}
.c-sectionHeading__title {
  font-family: "futura-pt", sans-serif;
  color: #107140;
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.c-sectionHeading__sub {
  position: relative;
  display: inline-block;
  margin: 18px 0 0;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.c-sectionHeading__sub::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #08391F;
  transition: 0.3s ease;
  position: relative;
  color: #08391F;
}
.c-link:hover {
  background: #107140;
  color: #fff;
}
.c-link:hover .c-link__buttonText {
  color: #fff;
}
.c-link:hover .c-link__icon {
  fill: #fff;
}
.c-link__buttonArrow {
  display: inline-block;
  width: 23px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-link__buttonArrow .c-link__icon {
  display: block;
  fill: #08391F;
}
.c-link__buttonText {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #08391F;
}
.c-link.white {
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.c-link.white:hover {
  background: #fff;
  color: #08391F;
}
.c-link.white:hover .c-link__buttonText {
  color: #08391F;
}
.c-link.white .c-link__buttonArrow .c-link__icon {
  fill: #fff;
}
.c-link.white:hover .c-link__icon {
  fill: #08391F;
}
.c-link.white .c-link__buttonText {
  color: #fff;
}
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 10001;
  width: 54px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 38px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.c-hamburger__line {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-hamburger__line::before {
  top: -4px;
}
.c-hamburger__line::after {
  top: 4px;
}
.c-hamburger.is-active .c-hamburger__line {
  background: transparent;
}
.c-hamburger.is-active .c-hamburger__line::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  .c-pageHero__inner {
    padding: 110px 24px 38px;
  }
  .c-pageHero__heading {
    gap: 14px;
    padding-bottom: 16px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  component(768)
  =========================*/
  .c-pageHero__inner {
    padding: 100px 20px 34px;
  }
  .c-pageHero__heading {
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  }
  .c-pageHero__titleJa {
    margin: 0 0 4px;
  }
  .c-breadcrumb {
    margin-top: 8px;
  }
  .c-hamburger {
    top: 15px;
    right: 16px;
  }
  .c-sectionHeading__title {
    font-size: 52px;
    line-height: 1.05;
  }
  .c-sectionHeading__sub {
    margin-top: 14px;
    padding-left: 14px;
    font-size: 13px;
  }
  .c-sectionHeading__sub::before {
    top: 0.8em;
  }
}
/*
  footer
————————————————————————————————————————— */
.cta__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image content";
  color: #fff;
  text-decoration: none;
}
.cta__imageWrap {
  grid-area: image;
  min-width: 0;
}
.cta__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 84px 88px 84px 92px;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
}
.cta__image {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #d9d9d9;
}
.cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 1s ease;
}
.cta__sub {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.cta__title {
  font-family: "A1Mincho";
  margin: 36px 0 0;
  font-size: clamp(54px, 5vw, 70px);
  line-height: 1.58;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #fff;
}
.cta__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
}
.cta__lead {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.cta__arrow {
  flex-shrink: 0;
  width: 86px;
  line-height: 0;
  color: #fff;
}
.cta__arrow svg {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.cta__link:hover .cta__image img {
  transform: scale(1.04);
}
.cta__link:hover .cta__arrow svg {
  transform: translateX(8px);
}
.footer {
  padding: 120px 0 52px;
  color: #08391F;
  background: #fff;
}
.footer__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.footer__brand svg {
  display: block;
  width: min(100%, 310px);
  margin-inline: auto;
  height: auto;
}
.footer__coordinates {
  margin: 22px 0 0;
  font-size: clamp(20px, 1.9vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #177948;
}
.footer__sns {
  margin-top: 66px;
}
.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer__instagram:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
.footer__instagram img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  font-family: "futura-pt", sans-serif;
  display: block;
  margin-top: 62px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(31, 95, 66, 0.92);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  .cta__content {
    padding: 64px 34px 64px 52px;
  }
  .cta__image img {
    min-height: 520px;
  }
  .cta__sub {
    font-size: 0.875rem;
  }
  .cta__title {
    font-size: clamp(44px, 5vw, 66px);
  }
  .cta__lead {
    font-size: 0.9375rem;
  }
  .cta__arrow {
    width: 72px;
  }
  .footer {
    padding: 100px 0 44px;
  }
  .footer__coordinates {
    margin-top: 18px;
    letter-spacing: 0.14em;
  }
  .footer__sns {
    margin-top: 52px;
  }
  .footer__copyright {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .cta__inner {
    width: 100%;
  }
  .cta__link {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
  }
  .cta__content {
    padding: 34px 24px 32px;
  }
  .cta__image img {
    min-height: auto;
    aspect-ratio: 1.4545454545;
  }
  .cta__sub {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .cta__title {
    margin-top: 20px;
    font-size: 2.5rem;
    line-height: 1.55;
    letter-spacing: 0.1em;
  }
  .cta__bottom {
    margin-top: 26px;
  }
  .cta__lead {
    font-size: 13px;
  }
  .cta__arrow {
    width: 56px;
  }
  .footer {
    padding: 72px 0 32px;
  }
  .footer__inner {
    padding-inline: 16px;
  }
  .footer__brand svg {
    width: min(100%, 200px);
  }
  .footer__coordinates {
    margin-top: 14px;
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .footer__sns {
    margin-top: 38px;
  }
  .footer__instagram {
    width: 32px;
    height: 32px;
  }
  .footer__copyright {
    margin-top: 34px;
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
/*
  header
————————————————————————————————————————— */
.p-header__logoImage, .p-header__listItem a, .p-header__listItem--instagram img, .p-header__contact a, .c-hamburger__line, .c-hamburger__line::before, .c-hamburger__line::after {
  transition: 0.3s ease;
}
.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  pointer-events: auto;
}
.p-header__logo {
  position: relative;
  z-index: 10002;
}
.p-header__logo a {
  display: inline-block;
}
.p-header__logo a img {
  width: 135px;
}
.p-header__nav {
  margin-left: auto;
  margin-right: 24px;
}
.p-header__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-header__listItem a {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}
.p-header__listItem a:hover {
  opacity: 0.7;
}
.p-header__listItem--instagram a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.p-header__listItem--instagram a img {
  width: 26px;
  height: 26px;
}
.p-header__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 45px;
  padding: 0 24px;
  border: 1px solid #fff;
  background: #fff;
  color: #08391F;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.p-header__contact a:hover {
  background: transparent;
  color: #fff;
}
.p-globalMenuSp {
  position: fixed;
  padding: 20vh 10% 60px;
  inset: 0;
  min-height: 100vh;
  z-index: 10000;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-globalMenuSp.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: scroll;
}
.p-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.p-nav-list li {
  text-align: left;
}
.p-nav-list li + li {
  margin-top: 32px;
}
.p-nav-list a {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.p-nav-list__item--instagram a, .p-nav-list__item--instagram a img {
  width: 30px;
  height: 30px;
  display: block;
}
.p-nav-list__item--contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 45px;
  padding: 0 24px;
  border: 1px solid #fff;
  background: #fff;
  color: #08391F;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  text-decoration: unset;
}
.p-nav-list__item--contact a:hover {
  background: transparent;
  color: #fff;
}
.p-preloader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  overflow: hidden;
  background: #0d2017;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
}
.p-preloader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html.is-preload-ready #js-pageWrap {
  opacity: 0;
  visibility: hidden;
}
html.is-loaded #js-pageWrap {
  opacity: 1;
  visibility: visible;
}
html.is-preload-ready, html.is-preload-ready body {
  overflow: hidden;
  height: 100%;
}
html.is-loaded, html.is-loaded body {
  overflow: visible;
  height: auto;
}
.p-preloader__bg {
  position: absolute;
  inset: -10%;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
}
.p-preloader__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}
.p-preloader__yearWrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
}
.p-preloader__since {
  font-family: "futura-pt", sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.35em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(4px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}
.p-preloader__since.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.p-preloader__since.is-out {
  opacity: 0;
  transform: translateY(-10px);
  filter: blur(8px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}
.p-preloader__year {
  font-family: "futura-pt", sans-serif;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(54px, 12vw, 180px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}
.p-preloader__year.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.p-preloader__year.is-out {
  opacity: 0;
  transform: translateY(-12px);
  filter: blur(10px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}
.p-preloader__brand {
  opacity: 0;
  transform: translateY(10px);
  z-index: 10000;
  position: relative;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.p-preloader__brand svg {
  width: min(1000px, 80vw);
  opacity: 0;
  transform: scale(0.98);
  transition: all 1.2s ease;
}
.p-preloader__brand.is-show {
  opacity: 1;
  transform: translateY(0);
}
.p-preloader__brand.is-show svg {
  opacity: 1;
  transform: scale(1);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
  project(1199)
  =========================*/
  .p-header {
    padding: 20px 24px;
  }
  .p-header__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  project(768)
  =========================*/
  .p-header {
    padding: 20px 16px;
  }
  .p-header__logo a img {
    width: 110px;
  }
  .p-nav-list a {
    font-size: 1rem;
  }
  .p-nav-list__item--contact a {
    width: 100%;
  }
  .p-preloader__brand svg {
    width: 240px;
  }
}
/*
top
————————————————————————————————————————— */
body.home .l-main {
  --bg-scale: 1;
}
body.home .l-main::before {
  content: "";
  display: inline-block;
  background: url(../img/top/mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(var(--bg-scale));
  transform-origin: center;
  will-change: transform;
}
.topMv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  --overlay-opacity: .2;
}
.topMv::before {
  content: "";
  display: inline-block;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  opacity: var(--overlay-opacity);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.topMv__inner {
  padding-top: 10vw;
  padding-bottom: 10vw;
}
.topMv__head {
  text-align: center;
}
.topMv__symbol {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.topMv__symbol img {
  display: block;
  width: 46px;
  height: auto;
}
.topMv__label {
  margin: 0;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.9375rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.topMv__subLabel {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
}
.topMv__title {
  margin: 0;
  color: #fff;
  font-family: "A1Mincho";
  font-size: clamp(54px, 4vw, 82px);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  position: relative;
  left: 0.3em;
  margin-top: 54px;
}
.topMv__lead {
  font-family: "A1Mincho";
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2.5;
  letter-spacing: 0.08em;
  max-width: 520px;
  margin: 84px auto 0;
}
.topMv__brand {
  margin-top: 90px;
  text-align: center;
}
.topMv__brand svg {
  display: block;
  width: min(100%, 210px);
  margin-inline: auto;
  height: auto;
}
.topMv__scroll {
  font-family: "futura-pt", sans-serif;
  position: absolute;
  left: 5%;
  bottom: 30vw;
  margin: 0;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
}
.topMv__scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -110px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.topMessage {
  padding: 140px 0 0;
  color: #08391F;
  background: #fff;
}
.topMessage__heading {
  padding-inline: 20px;
}
.topMessage__lead {
  max-width: 920px;
  margin: 84px auto 0;
  padding-inline: 20px;
  text-align: center;
}
.topMessage__lead p {
  margin: 0;
  font-size: 17px;
  line-height: 2.35;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.topMessage__lead p + p {
  margin-top: 34px;
}
.topMessage__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 88px;
}
.topMessageCard {
  min-width: 0;
}
.topMessageCard__link {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.topMessageCard__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}
.topMessageCard__image {
  position: relative;
  aspect-ratio: 0.8260869565;
  overflow: hidden;
}
.topMessageCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.topMessageCard__link:hover .topMessageCard__image img {
  transform: scale(1.06);
}
.topMessageCard__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 55.5%;
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  background: linear-gradient(rgba(255, 255, 255, 0.12) 0%, #010C06 100%);
}
.topMessageCard__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0 24px 20px;
}
.topMessageCard__number {
  font-family: "futura-pt", sans-serif;
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding-right: 58px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.topMessageCard__number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}
.topMessageCard__title {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
}
.topMessageCard__text {
  margin: 6px 0 0;
  padding-right: 50px;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.topMessageCard__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  line-height: 0;
}
.topMessageCard__arrow svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
  fill: #fff;
}
.topMessageCard__link:hover .topMessageCard__arrow svg {
  transform: translateX(8px);
}
.topService {
  padding: 140px 0 160px;
  color: #08391F;
  background: #fff;
}
.topService__inner {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 24px;
}
.topService__layout {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  column-gap: 90px;
  align-items: start;
}
.topService__left {
  min-width: 0;
}
.topService__sticky {
  position: sticky;
  top: 110px;
}
.topService__heading {
  margin-bottom: 36px;
}
.topService__right {
  min-width: 0;
}
.topService__intro {
  padding-top: 8px;
  margin-bottom: 42px;
}
.topService__intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #08391F;
}
.topService__list {
  display: grid;
  gap: 70px;
}
/* diagram */
.topService__diagram {
  width: min(100%, 420px);
}
.topServiceDiagram {
  display: block;
  width: 120%;
  height: auto;
  margin-left: -10%;
  margin-top: -10%;
}
.topServiceDiagram__ring, .topServiceDiagram__orbit {
  fill: none;
  stroke: url(#serviceStroke);
}
.topServiceDiagram__ring {
  stroke-width: 1;
  opacity: 0.45;
}
.topServiceDiagram__ring--outer {
  stroke-dasharray: 4 6;
  transform-origin: 260px 260px;
  animation: serviceRotateSlow 26s linear infinite;
}
.topServiceDiagram__ring--middle {
  opacity: 0.75;
}
.topServiceDiagram__ring--inner {
  opacity: 0.5;
  transform-origin: 260px 260px;
  animation: serviceRotateReverse 18s linear infinite;
}
.topServiceDiagram__orbit {
  stroke-width: 1.1;
  opacity: 0.65;
  stroke-dasharray: 3 6;
  animation: serviceDash 12s linear infinite;
}
.topServiceDiagram__node text, .topServiceDiagram__center text {
  fill: #2f7756;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topServiceDiagram__node text {
  font-size: 18px;
}
.topServiceDiagram__center text {
  font-family: "futura-pt", sans-serif;
  text-anchor: middle;
  font-weight: 700;
  font-size: 20px;
}
.topServiceDiagram__center text:last-child {
  font-size: 18px;
}
.topServiceDiagram__nodeDot {
  fill: #97c9aa;
  transition: fill 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.topServiceDiagram__nodePulse {
  fill: rgba(15, 123, 68, 0.4);
  stroke: rgba(15, 123, 68, 0.8);
  stroke-width: 1;
  opacity: 0;
}
.topServiceDiagram.is-maintenance .topServiceDiagram__node--maintenance .topServiceDiagram__nodePulse, .topServiceDiagram.is-custom .topServiceDiagram__node--custom .topServiceDiagram__nodePulse, .topServiceDiagram.is-oneoff .topServiceDiagram__node--oneoff .topServiceDiagram__nodePulse, .topServiceDiagram.is-vehicle .topServiceDiagram__node--vehicle .topServiceDiagram__nodePulse {
  animation: serviceNodePulse 2.2s ease-out infinite;
}
.topServiceDiagram__centerDot {
  fill: #7fb99a;
}
.topServiceDiagram.is-maintenance .topServiceDiagram__node--maintenance .topServiceDiagram__nodeDot, .topServiceDiagram.is-custom .topServiceDiagram__node--custom .topServiceDiagram__nodeDot, .topServiceDiagram.is-oneoff .topServiceDiagram__node--oneoff .topServiceDiagram__nodeDot, .topServiceDiagram.is-vehicle .topServiceDiagram__node--vehicle .topServiceDiagram__nodeDot {
  fill: #107140;
  transform: scale(1.2);
}
/* cards */
.topServiceCard__link {
  display: block;
  color: inherit;
}
.topServiceCard__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 95, 66, 0.68);
}
.topServiceCard__number {
  flex-shrink: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #08391F;
}
.topServiceCard__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: #107140;
  transition: color 0.3s ease;
}
.topServiceCard__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  background: #107140;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.topServiceCard__arrow svg {
  width: 18px;
  display: block;
}
.topServiceCard__image {
  margin: 32px 0 18px;
  overflow: hidden;
  background: #d9d9d9;
}
.topServiceCard__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.5185185185;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.35s ease;
}
.topServiceCard__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.1;
  color: #08391F;
}
.topServiceCard__link:hover .topServiceCard__title {
  color: #107140;
}
.topServiceCard__link:hover .topServiceCard__arrow {
  transform: translate(6px, 0);
}
.topServiceCard__link:hover .topServiceCard__image img {
  transform: scale(1.04);
  filter: saturate(1.04);
}
@keyframes serviceDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -80;
  }
}
@keyframes serviceRotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes serviceRotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes serviceCoreGlow {
  0%, 100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes serviceNodePulse {
  0% {
    r: 10;
    opacity: 0;
    stroke-width: 1.4;
  }
  20% {
    opacity: 0.35;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    r: 34;
    opacity: 0;
    stroke-width: 0.4;
  }
}
.topLife {
  background: #fff;
}
r .topLife__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}
.topLife__link {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
}
.topLife__image {
  position: relative;
  margin: 0;
}
.topLife__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}
.topLife__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.topLife__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(100%, 645px);
  padding: 44px 56px 36px;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  transform: translate(-50%, -50%);
}
.topLife__sub {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.topLife__title {
  margin: 18px 0 0;
  text-align: center;
  line-height: 1;
}
.topLife__titleSvg {
  display: block;
  width: min(100%, 360px);
  margin-inline: auto;
  color: #fff;
}
.topLife__titleSvg svg {
  display: block;
  width: 100%;
  height: auto;
}
.topLife__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 34px;
}
.topLife__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.topLife__arrow {
  flex-shrink: 0;
  width: 84px;
  line-height: 0;
  color: #fff;
  position: absolute;
  right: 20px;
}
.topLife__arrow svg {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.topLife__link:hover .topLife__image img {
  transform: scale(1.04);
}
.topJournal {
  padding: 140px 0;
  color: #08391F;
  background: #fff;
}
.topJournal__inner {
  width: min(100%, 1380px);
  margin-inline: auto;
  padding-inline: 24px;
}
.topJournal__layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  grid-template-areas: "head posts" "button posts";
  column-gap: 110px;
  row-gap: 58px;
  align-items: start;
}
.topJournal__head {
  grid-area: head;
}
.topJournal__posts {
  grid-area: posts;
  min-width: 0;
}
.topJournal__button {
  grid-area: button;
}
.topJournal__heading {
  margin-top: 6px;
}
.topJournalList {
  border-top: 0;
}
.topJournalItem {
  border-bottom: 1px solid rgba(31, 95, 66, 0.14);
}
.topJournalItem__link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px 0 25px;
  color: inherit;
  transition: opacity 0.3s ease;
}
.topJournalItem__link:hover {
  opacity: 0.72;
}
.topJournalItem__date {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: rgba(31, 95, 66, 0.95);
  white-space: nowrap;
}
.topJournalItem__content {
  min-width: 0;
}
.topJournalItem__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topAccess {
  padding: 140px 0;
  background: #F2F2F2;
  color: #08391F;
}
.topAccess__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 24px;
}
.topAccess__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  grid-template-areas: "map heading" "map info" "map button";
  column-gap: 84px;
  align-items: start;
}
.topAccess__mapWrap {
  grid-area: map;
  align-self: center;
  margin-right: -24%;
}
.topAccess__heading {
  grid-area: heading;
  margin-bottom: 36px;
}
.topAccess__info {
  grid-area: info;
}
.topAccess__button {
  grid-area: button;
}
.topAccessMap {
  width: min(100%, 760px);
  margin-inline: auto;
}
.topAccessMap__svg {
  display: block;
  width: 100%;
  height: auto;
}
.topAccessMap__base path {
  fill: none;
  stroke: #adc3b4;
  stroke-width: 2.2;
}
.topAccessMap__pin {
  fill: #0a6f3f;
}
.topAccessMap__pulse {
  fill: rgba(10, 111, 63, 0.1);
  stroke: rgba(10, 111, 63, 0.25);
  stroke-width: 1.2;
  opacity: 0;
  transform-origin: center;
}
.topAccessMap__pulse--01 {
  animation: accessPinPulse 2.4s ease-out infinite;
}
.topAccessMap__pulse--02 {
  animation: accessPinPulse 2.4s ease-out 1.2s infinite;
}
.topAccessMap__label text {
  fill: #0a6f3f;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.topAccess__list {
  margin: 0;
}
.topAccess__row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.topAccess__row + .topAccess__row {
  margin-top: 14px;
}
.topAccess__row dt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #1f5f42;
}
.topAccess__row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(31, 95, 66, 0.96);
}
.topAccess__row dd address {
  font-style: normal;
  line-height: inherit;
}
.topAccess__row dd a {
  color: inherit;
}
.topAccess__buttonWrap {
  margin: 54px 0 0;
}
@keyframes accessPinPulse {
  0% {
    r: 10;
    opacity: 0;
    stroke-width: 1.4;
  }
  20% {
    opacity: 0.32;
  }
  100% {
    r: 42;
    opacity: 0;
    stroke-width: 0.3;
  }
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  .topMessage__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .topMessageCard__image {
    aspect-ratio: 1.5;
  }
  .topService__layout {
    grid-template-columns: 360px minmax(0, 1fr);
    column-gap: 56px;
  }
  .topService__diagram {
    width: min(100%, 340px);
  }
  .topService__layout {
    grid-template-columns: 360px minmax(0, 1fr);
    column-gap: 56px;
  }
  .topService__diagram {
    width: min(100%, 340px);
  }
  .topServiceCard__title {
    font-size: 30px;
  }
  .topLife__panel {
    width: min(100%, 490px);
    padding: 36px 36px 30px;
  }
  .topLife__sub {
    font-size: 14px;
  }
  .topLife__titleSvg {
    width: min(100%, 220px);
  }
  .topLife__lead {
    font-size: 15px;
  }
  .topLife__arrow {
    width: 68px;
  }
  .topJournal {
    padding: 110px 0;
  }
  .topJournal__layout {
    grid-template-columns: 280px minmax(0, 1fr);
    column-gap: 56px;
    row-gap: 42px;
  }
  .topJournalItem__link {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
  }
  .topJournalItem__date {
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .topJournalItem__title {
    font-size: 16px;
  }
  .topAccess {
    padding: 110px 0;
  }
  .topAccess__layout {
    grid-template-columns: 1fr 420px;
    column-gap: 48px;
  }
  .topAccessMap {
    width: min(100%, 640px);
  }
  .topAccessMap__label text {
    font-size: 32px;
  }
  .topAccess__row {
    grid-template-columns: 86px minmax(0, 1fr);
  }
  .topAccess__row dt, .topAccess__row dd {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .topMv__inner {
    padding-inline: 20px;
    padding-top: 30vw;
    padding-bottom: 0;
  }
  .topMv__symbol {
    margin-bottom: 10px;
  }
  .topMv__symbol img {
    width: 40px;
  }
  .topMv__label {
    font-size: 1.5rem;
  }
  .topMv__subLabel {
    font-size: 0.625rem;
  }
  .topMv__title {
    font-size: clamp(34px, 4vw, 82px);
    line-height: 1.65;
    letter-spacing: 0.08em;
  }
  .topMv__lead {
    margin-top: 34px;
  }
  .topMv__brand {
    margin-top: 52px;
  }
  .topMv__brand svg {
    width: 160px;
  }
  .topMessage {
    padding-top: 88px;
  }
  .topMessage__lead {
    margin-top: 42px;
    padding-inline: 24px;
  }
  .topMessage__lead p {
    font-size: 14px;
    line-height: 2.1;
  }
  .topMessage__lead p + p {
    margin-top: 24px;
  }
  .topMessage__cards {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 52px;
  }
  .topMessageCard__body {
    padding: 0 18px 18px;
  }
  .topMessageCard__number {
    margin-bottom: 18px;
    padding-right: 44px;
    font-size: 12px;
  }
  .topMessageCard__number::after {
    width: 34px;
  }
  .topMessageCard__title {
    font-size: 28px;
  }
  .topMessageCard__text {
    margin-top: 10px;
    padding-right: 54px;
    font-size: 13px;
  }
  .topMessageCard__arrow {
    right: 18px;
    bottom: 20px;
    width: 38px;
  }
  .topService {
    padding: 88px 0 100px;
  }
  .topService__inner {
    padding-inline: 16px;
  }
  .topService__heading {
    text-align: center;
  }
  .topService__layout {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .topService__sticky {
    position: static;
  }
  .topService__diagram {
    width: min(100%, 320px);
    margin-inline: auto;
  }
  .topService__intro {
    margin-bottom: 42px;
  }
  .topService__intro p {
    font-size: 13px;
    line-height: 2;
    text-align: center;
  }
  .topService__list {
    gap: 32px;
  }
  .topServiceCard__head {
    gap: 12px;
    padding-top: 32px;
  }
  .topServiceCard__number {
    font-size: 13px;
  }
  .topServiceCard__title {
    font-size: 24px;
  }
  .topServiceCard__image {
    margin: 18px 0 18px;
  }
  .topServiceCard__body p {
    font-size: 13px;
    line-height: 1.95;
  }
  .topServiceDiagram {
    margin-top: -5%;
  }
  .topServiceDiagram__nodePulse {
    display: none;
  }
  .topServiceDiagram__nodeDot {
    fill: #107140;
    transform: scale(1.2);
  }
  .topLife__image img {
    aspect-ratio: 1.4545454545;
  }
  .topLife__panel {
    position: static;
    width: 100%;
    padding: 28px 20px 56px;
    background: url(../img/common/bg.jpg);
    background-size: 240px;
    background-repeat: repeat;
    transform: unset;
    backdrop-filter: unset;
  }
  .topLife__sub {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .topLife__title {
    margin-top: 14px;
  }
  .topLife__titleSvg {
    width: min(100%, 180px);
  }
  .topLife__bottom {
    display: block;
    margin-top: 20px;
  }
  .topLife__lead {
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
  }
  .topLife__arrow {
    width: 58px;
    bottom: 24px;
  }
  .topJournal {
    padding: 88px 0;
  }
  .topJournal__inner {
    padding-inline: 16px;
  }
  .topJournal__heading {
    text-align: center;
  }
  .topJournal__layout {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "posts" "button";
    row-gap: 34px;
  }
  .topJournalItem__link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0 15px;
  }
  .topJournalItem__date {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .topJournalItem__title {
    font-size: 14px;
    line-height: 1.8;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
  .topJournal__buttonWrap {
    text-align: center;
  }
  .topAccess {
    padding: 88px 0;
  }
  .topAccess__inner {
    padding-inline: 16px;
  }
  .topAccess__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "map" "info" "button";
    row-gap: 28px;
  }
  .topAccess__mapWrap {
    grid-area: map;
    margin-right: 0;
  }
  .topAccessMap__svg {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  .topAccess__heading {
    grid-area: heading;
    margin-bottom: 0;
    text-align: center;
  }
  .topAccess__info {
    grid-area: info;
  }
  .topAccess__buttonWrap {
    grid-area: button;
    margin-top: 0;
  }
  .topAccessMap {
    width: min(100%, 420px);
  }
  .topAccessMap__base path {
    stroke-width: 1.6;
  }
  .topAccessMap__label text {
    font-size: 26px;
  }
  .topAccess__row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }
  .topAccess__row dt, .topAccess__row dd {
    font-size: 14px;
    line-height: 1.8;
  }
  .topAccess__buttonWrap {
    margin-top: 32px;
    text-align: center;
  }
}
/*
  NAVICについて
————————————————————————————————————————— */
.aboutPage {
  color: #107140;
}
/* =========================
  mv image
========================= */
.aboutMv {
  width: 100%;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 88px;
  margin-top: 80px;
}
.aboutMv img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.5;
  object-fit: cover;
}
/* =========================
  intro layout
========================= */
.aboutIntro {
  padding: 88px 0 180px;
}
.aboutIntro__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 88px;
}
.aboutIntro__grid {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  column-gap: 120px;
  align-items: start;
}
.aboutIntro__left {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.aboutIntro__right {
  display: flex;
  flex-direction: column;
  gap: 148px;
  padding-top: 82px;
}
.aboutIntro__leadBlock {
  min-height: 320px;
  padding-left: 40px;
}
.aboutIntro__lead {
  font-family: "A1Mincho";
  margin: 0;
  color: #107140;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 2.02;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0.1px 0 #107140, -0.1px 0 #107140, 0 0.1px #107140, 0 -0.1px #107140;
}
.aboutIntro__sub {
  margin: 52px 0 0;
  color: #08391F;
  font-size: 0.875rem;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.aboutIntro__image {
  margin: 0;
}
.aboutIntro__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}
/* =========================
  story section
========================= */
.aboutStorySection {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aboutStorySection--first {
  padding-top: 2px;
}
.aboutStorySection--second {
  padding-top: 10px;
}
.aboutStorySection--third {
  padding-top: 4px;
}
.aboutStorySection__heading {
  font-family: "A1Mincho";
  margin: 0 0 10px;
  color: #107140;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.95;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0.1px 0 #107140, -0.1px 0 #107140, 0 0.1px #107140, 0 -0.1px #107140;
}
.aboutStorySection__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aboutStorySection__text p {
  color: #08391F;
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.32;
  letter-spacing: 0.08em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.aboutStorySection__image {
  margin: 6px 0 0;
}
.aboutStorySection__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.aboutStorySection__brand {
  padding-top: 28px;
}
.aboutStorySection__brand svg {
  width: 200px;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  .aboutMv {
    padding-inline: 56px;
  }
  .aboutIntro__inner {
    padding-inline: 56px;
  }
  .aboutIntro__grid {
    grid-template-columns: 430px minmax(0, 1fr);
    column-gap: 54px;
  }
  .aboutIntro__right {
    padding-top: 56px;
  }
}
@media screen and (max-width: 991px) {
  .aboutMv {
    padding-inline: 24px;
    margin-top: 56px;
  }
  .aboutMv img {
    aspect-ratio: 1.7777777778;
  }
  .aboutIntro {
    padding: 52px 0 92px;
  }
  .aboutIntro__inner {
    padding-inline: 24px;
  }
  .aboutIntro__grid {
    grid-template-columns: 365px minmax(0, 1fr);
    column-gap: 32px;
  }
  .aboutIntro__image {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .aboutMv img {
    aspect-ratio: 1.5238095238;
  }
  .aboutIntro {
    padding: 56px 0 74px;
  }
  .aboutIntro__inner {
    padding-inline: 20px;
  }
  .aboutIntro__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .aboutIntro__right {
    gap: 44px;
    padding-top: 26px;
  }
  .aboutIntro__leadBlock {
    padding-left: 0;
  }
  .aboutIntro__sub {
    margin-top: 40px;
    font-size: 0.625rem;
  }
  .aboutStorySection__image img {
    aspect-ratio: 1.3333333333;
  }
  .aboutStorySection__brand {
    text-align: center;
  }
  .aboutStorySection__brand svg {
    width: 200px;
  }
}
/*
  サービス
————————————————————————————————————————— */
.servicePage {
  color: #107140;
}
.serviceContent {
  overflow: hidden;
}
/* =========================
  intro
========================= */
.serviceIntro {
  padding: 120px 0 120px;
}
.serviceIntro__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.serviceIntro__eyebrow {
  font-family: "futura-pt", sans-serif;
  margin: 0 0 18px;
  color: rgba(16, 113, 64, 0.7);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
}
.serviceIntro__title {
  font-family: "A1Mincho";
  margin: 0;
  color: #107140;
  font-size: clamp(34px, 7vw, 82px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0.1px 0 #107140, -0.1px 0 #107140, 0 0.1px #107140, 0 -0.1px #107140;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 0.3em;
}
.serviceIntro__lead {
  max-width: 760px;
  margin: 84px auto 0;
}
.serviceIntro__lead p {
  font-family: "A1Mincho";
  margin: 0;
  color: #08391F;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 2.5;
  letter-spacing: 0.08em;
}
.serviceIntro__lead p + p {
  margin-top: 24px;
}
/* =========================
  section
========================= */
.serviceSection {
  display: flex;
  flex-direction: column;
}
.serviceSection__visual {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
.serviceSection__image {
  margin: 0;
}
.serviceSection__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.9514285714;
  object-fit: cover;
}
.serviceSection__body {
  padding: 68px 0 100px;
}
.serviceSection__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
}
.serviceSection__number {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  color: rgba(8, 57, 31, 0.72);
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}
.serviceSection__label {
  margin: 14px 0 0;
  color: #08391F;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.serviceSection__title {
  font-family: "A1Mincho";
  margin: 26px 0 0;
  color: #107140;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.95;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: 0.1px 0 #107140, -0.1px 0 #107140, 0 0.1px #107140, 0 -0.1px #107140;
}
.serviceSection__text {
  margin-top: 34px;
}
.serviceSection__text p {
  margin: 0;
  color: #08391F;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.35;
  letter-spacing: 0.05em;
}
.serviceSection__text p + p {
  margin-top: 14px;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  .serviceIntro {
    padding: 94px 0 104px;
  }
  .serviceSection__body {
    padding-top: 54px;
  }
}
@media screen and (max-width: 991px) {
  .serviceIntro {
    padding: 72px 0 88px;
  }
  .serviceSection__body {
    padding-top: 42px;
  }
  .serviceSection__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .serviceIntro {
    padding: 56px 0 64px;
  }
  .serviceIntro__inner {
    padding-inline: 20px;
  }
  .serviceIntro__eyebrow {
    margin-bottom: 12px;
    font-size: 0.75rem;
  }
  .serviceIntro__title {
    letter-spacing: 0.1em;
    line-height: 1.65;
  }
  .serviceIntro__lead {
    margin-top: 28px;
  }
  .serviceIntro__lead p {
    line-height: 2.2;
    letter-spacing: 0.04em;
  }
  .serviceSection__image img {
    aspect-ratio: 1.3333333333;
  }
  .serviceSection__body {
    padding: 28px 0 64px;
  }
  .serviceSection__inner {
    padding-inline: 20px;
  }
  .serviceSection__number {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }
  .serviceSection__label {
    margin-top: 10px;
    font-size: 0.6875rem;
  }
  .serviceSection__title {
    margin-top: 18px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
  .serviceSection__text {
    margin-top: 22px;
  }
  .serviceSection__text p {
    line-height: 2.1;
    letter-spacing: 0.03em;
  }
}
/*
  4x4LIFE
————————————————————————————————————————— */
.lifePage {
  color: #107140;
}
.lifeContent {
  overflow: clip;
}
.lifePage .cta {
  display: none;
}
/* =========================
  intro
========================= */
.lifeIntro {
  position: relative;
  min-height: 235vh;
}
.lifeIntro__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 4;
}
.lifeHero {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  overflow: hidden;
}
.lifeHero__bg, .lifeHero__green, .lifeHero__shade {
  position: absolute;
  inset: 0;
}
.lifeHero__bg {
  z-index: 1;
}
.lifeHero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform, opacity;
}
.lifeHero__green {
  z-index: 2;
  pointer-events: none;
  opacity: 0.26;
  will-change: opacity;
}
.lifeHero__shade {
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
}
.lifeHero__center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  pointer-events: none;
}
.lifeHero__copy {
  position: relative;
  width: min(100%, 840px);
  min-height: 320px;
  will-change: opacity, filter;
}
.lifeHero__sub {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}
.lifeHero__title {
  position: relative;
  margin: 0;
  height: 220px;
}
.lifeHero__titleMain {
  --life-logo-width: 320px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--life-logo-width);
  transform: translate(-50%, -50%);
  transform-origin: 52% 48%;
  line-height: 0;
  pointer-events: none;
  will-change: width, transform;
}
.lifeHero__title img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2));
  backface-visibility: hidden;
}
.lifeHero__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}
/* MESSAGEをヒーロー上に重ねる */
.lifeIntro__message {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 140px 0 140px;
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
  will-change: opacity, transform;
}
.lifeMessage__inner {
  position: relative;
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
  z-index: 2;
  will-change: transform, opacity;
}
.lifeMessage__head {
  text-align: center;
}
.lifeMessage__symbol {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.lifeMessage__symbol img {
  display: block;
  width: 46px;
  height: auto;
}
.lifeMessage__label {
  margin: 0;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.9375rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lifeMessage__subLabel {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
}
.lifeMessage__content {
  margin-top: 84px;
  text-align: center;
}
.lifeMessage__title {
  margin: 0;
  color: #fff;
  font-family: "A1Mincho";
  font-size: clamp(34px, 7vw, 82px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 0.3em;
}
.lifeMessage__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 520px;
  margin: 84px auto 0;
}
.lifeMessage__text p {
  font-family: "A1Mincho";
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 2.5;
  letter-spacing: 0.08em;
}
.lifeMessage__brand {
  margin-top: 90px;
  text-align: center;
}
.lifeMessage__brand svg {
  display: block;
  width: min(100%, 210px);
  margin-inline: auto;
  height: auto;
}
/* 次セクションはそのまま下から続く */
.lifeScenes {
  position: relative;
  z-index: 6;
  padding-top: 0;
  background: url(../img/common/bg.jpg);
  background-size: 240px;
  background-repeat: repeat;
  max-width: 991px;
  margin-top: 120px;
  margin-inline: auto;
}
.lifeScenes__inner {
  width: min(100%);
  margin-inline: auto;
}
.lifeScene {
  position: relative;
  overflow: hidden;
}
.lifeScene__image {
  margin: 0;
}
.lifeScene__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7973684211;
  object-fit: cover;
}
.lifeScene__card {
  position: absolute;
  top: 60%;
  z-index: 4;
  width: min(100%, 300px);
  padding: 34px 32px 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-50%);
}
.lifeScene--left .lifeScene__card {
  left: clamp(28px, 7vw, 92px);
}
.lifeScene--right .lifeScene__card {
  right: clamp(28px, 7vw, 92px);
}
.lifeScene__copy {
  margin: 0;
  color: #08391F;
  font-family: "A1Mincho";
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.lifeScene__meta {
  margin: 22px 0 0;
  color: #08391F;
  font-family: "futura-pt", sans-serif;
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .lifeIntro {
    min-height: 225vh;
  }
  .lifeHero__titleMain {
    --life-logo-width: 280px;
  }
  .lifeScenes {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .lifeIntro {
    min-height: 240vh;
    background: url(../img/common/bg.jpg);
    background-size: 240px;
    background-repeat: repeat;
  }
  .lifeHero__center {
    padding: 64px 20px 40px;
  }
  .lifeHero__copy {
    min-height: 220px;
  }
  .lifeHero__sub {
    margin-bottom: 24px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
  .lifeHero__title {
    height: 128px;
  }
  .lifeHero__titleMain {
    --life-logo-width: 230px;
  }
  .lifeHero__lead {
    margin-top: 32px;
    font-size: 0.75rem;
    line-height: 1.8;
  }
  .lifeIntro__message {
    padding: 88px 0 72px;
    transform: translateY(88px);
  }
  .lifeMessage__inner {
    padding-inline: 20px;
  }
  .lifeMessage__symbol {
    margin-bottom: 10px;
  }
  .lifeMessage__symbol img {
    width: 40px;
  }
  .lifeMessage__label {
    font-size: 1.5rem;
  }
  .lifeMessage__subLabel {
    font-size: 0.625rem;
  }
  .lifeMessage__content {
    margin-top: 42px;
  }
  .lifeMessage__title {
    line-height: 1.65;
    letter-spacing: 0.08em;
  }
  .lifeMessage__text {
    gap: 18px;
    margin-top: 34px;
  }
  .lifeMessage__brand {
    margin-top: 52px;
  }
  .lifeMessage__brand svg {
    width: 160px;
  }
  .lifeScene__image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 0.7547169811;
  }
  .lifeScene__card {
    top: auto;
    bottom: 18px;
    left: 18px;
    width: min(100% - 36px, 220px);
    background: rgba(255, 255, 255, 0.82);
    padding: 20px 18px 18px;
    transform: none;
  }
  .lifeScene--right .lifeScene__card {
    left: unset;
    right: 18px;
  }
  .lifeScene__copy {
    font-size: clamp(18px, 5.4vw, 28px);
    line-height: 1.95;
  }
  .lifeScene__meta {
    margin-top: 14px;
    font-size: 0.5625rem;
  }
}
/*
  NAVICの記録
————————————————————————————————————————— */
.journalArchive {
  padding-bottom: 140px;
}
.journalArchive__inner {
  width: min(100%, 800px);
  margin-inline: auto;
  padding-inline: 24px;
}
.journalArchive__list {
  padding-top: 120px;
}
/* カード */
.journalCard {
  background: #fff;
}
.journalCard__link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 95, 66, 0.14);
}
.journalCard__body {
  padding: 26px 0 25px;
}
.journalCard__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.journalCard__meta time {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: rgba(31, 95, 66, 0.95);
  white-space: nowrap;
}
.journalCard__cat {
  font-weight: 500;
  font-size: 0.9375rem;
  background: #107140;
  color: #fff;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
}
.journalCard__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}
/* ページネーション */
.journalArchive__pagination {
  margin-top: 80px;
  text-align: center;
}
.journalArchive__pagination .page-numbers {
  font-family: "futura-pt", sans-serif;
  display: inline-block;
  margin: 0 6px;
  padding: 10px 14px;
  border: 1px solid #08391F;
  color: #08391F;
  text-decoration: none;
  transition: all 0.3s;
}
.journalArchive__pagination .current {
  background: #107140;
  color: #fff;
  border-color: #107140;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .journalArchive {
    padding-bottom: 74px;
  }
  .journalArchive__list {
    padding-top: 56px;
  }
  .journalCard__body {
    padding: 16px 0 15px;
  }
  .journalCard__meta {
    margin-bottom: 8px;
  }
  .journalCard__meta time {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .journalCard__cat {
    font-size: 0.75rem;
  }
  .journalCard__title {
    font-size: 14px;
    line-height: 1.8;
  }
  .journalArchive__pagination {
    margin-top: 55px;
  }
}
/* ==================================================
  Journal Single
================================================== */
.journalPage {
  padding-bottom: 140px;
}
.journalSingle {
  position: relative;
  padding-top: 88px;
}
.journalSingle__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-inline: 24px;
}
.journalSingle__header {
  margin-bottom: 48px;
}
.journalSingle__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 24px;
}
.journalSingle__date {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: rgba(31, 95, 66, 0.95);
  white-space: nowrap;
}
.journalSingle__cats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.journalSingle__catItem {
  margin: 0;
}
.journalSingle__catLink {
  font-weight: 500;
  font-size: 0.9375rem;
  background: #107140;
  color: #fff;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
}
.journalSingle__title {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.journalSingle__thumbnail {
  margin: 0 0 56px;
  overflow: hidden;
  border-radius: 2px;
}
.journalSingle__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.journalSingle__content {
  color: #08391F;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.32;
  letter-spacing: 0.08em;
  word-break: break-word;
}
.journalSingle__content > *:first-child {
  margin-top: 0;
}
.journalSingle__content > *:last-child {
  margin-bottom: 0;
}
.journalSingle__content p {
  margin: 0 0 2.1em;
}
.journalSingle__content h2, .journalSingle__content h3, .journalSingle__content h4 {
  margin: 2.6em 0 1em;
  color: #107140;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.journalSingle__content h2 {
  font-size: clamp(24px, 2.3vw, 34px);
}
.journalSingle__content h3 {
  font-size: clamp(20px, 1.9vw, 28px);
}
.journalSingle__content h4 {
  font-size: clamp(18px, 1.6vw, 22px);
}
.journalSingle__content ul, .journalSingle__content ol {
  margin: 0 0 2.1em;
  padding-left: 1.5em;
}
.journalSingle__content li {
  margin-bottom: 0.6em;
}
.journalSingle__content a {
  color: #107140;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.journalSingle__content strong {
  font-weight: 700;
}
.journalSingle__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4em auto;
}
.journalSingle__content figure {
  margin: 2.4em 0;
}
.journalSingle__content blockquote {
  margin: 2.4em 0;
  padding: 1.2em 1.4em;
  border-left: 1px solid rgba(16, 113, 64, 0.22);
  background: rgba(16, 113, 64, 0.035);
}
.journalSingle__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.4em 0;
}
.journalSingle__content th, .journalSingle__content td {
  padding: 14px 16px;
  border: 1px solid rgba(16, 113, 64, 0.14);
  font-size: 0.9em;
  line-height: 1.8;
  text-align: left;
}
.journalSingle__footer {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid rgba(16, 113, 64, 0.12);
  text-align: center;
}
.journalSingle__nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.journalSingle__navItem {
  min-width: 0;
}
.journalSingle__navItem--next {
  text-align: right;
}
.journalSingle__navLink {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: #107140;
  text-decoration: none;
}
.journalSingle__navLabel {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(16, 113, 64, 0.52);
  text-transform: uppercase;
}
.journalSingle__navTitle {
  display: inline-block;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.journalSingle__navLink:hover .journalSingle__navTitle {
  opacity: 0.68;
}
.journalSingle__navCenter {
  display: flex;
  justify-content: center;
}
.journalSingle__archiveLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(16, 113, 64, 0.18);
  color: #107140;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.journalSingle__archiveLink:hover {
  background: rgba(16, 113, 64, 0.06);
  border-color: rgba(16, 113, 64, 0.3);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .journalPage {
    padding-bottom: 96px;
  }
  .journalSingle {
    padding-top: 56px;
  }
  .journalSingle__header {
    margin-bottom: 32px;
  }
  .journalSingle__thumbnail {
    margin-bottom: 40px;
  }
  .journalSingle__date {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .journalSingle__catLink {
    font-size: 0.75rem;
  }
  .journalSingle__title {
    font-size: 1.125rem;
  }
  .journalSingle__footer {
    margin-top: 72px;
    padding-top: 32px;
  }
  .journalSingle__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .journalSingle__navItem--next {
    text-align: left;
  }
  .journalSingle__navCenter {
    justify-content: flex-start;
  }
}
/* ==================================================
  Journal Single Gallery
================================================== */
.journalSingle__content .gallery {
  display: grid;
  gap: 20px;
  margin: 2.8em 0;
  padding: 0;
}
.journalSingle__content .gallery-item {
  width: auto !important;
  margin: 0 !important;
}
.journalSingle__content .gallery-icon {
  line-height: 1;
}
.journalSingle__content .gallery-icon a {
  display: block;
  text-decoration: none;
}
.journalSingle__content .gallery-icon img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0 !important;
  object-fit: cover;
}
.journalSingle__content .gallery-caption {
  margin-top: 10px;
  color: #08391F;
  font-size: 0.8125rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  text-align: left;
}
.journalSingle__content .gallery-columns-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.journalSingle__content .gallery-columns-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .journalSingle__content .gallery {
    gap: 12px;
    margin: 2.2em 0;
  }
  .journalSingle__content .gallery-caption {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.75;
  }
  .journalSingle__content .gallery-columns-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .journalSingle__content .gallery-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journalSingle__content .gallery-columns-3, .journalSingle__content .gallery-columns-4, .journalSingle__content .gallery-columns-5, .journalSingle__content .gallery-columns-6, .journalSingle__content .gallery-columns-7, .journalSingle__content .gallery-columns-8, .journalSingle__content .gallery-columns-9 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==================================================
  Journal Lightbox
================================================== */
.is-lightbox-open {
  overflow: hidden;
}
.journalSingle__content .gallery-icon a {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.journalSingle__content .gallery-icon a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 113, 64, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.journalSingle__content .gallery-icon a:hover::after {
  opacity: 1;
}
.journalSingle__content .gallery-icon a img {
  transition: transform 0.55s ease;
}
.journalSingle__content .gallery-icon a:hover img {
  transform: scale(1.03);
}
.journalLightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.journalLightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.journalLightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.86);
  backdrop-filter: blur(8px);
}
.journalLightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1400px);
  height: 100%;
  margin-inline: auto;
  padding: 56px 88px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journalLightbox__body {
  width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journalLightbox__figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.journalLightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  margin: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.journalLightbox__image.is-loaded {
  transform: scale(1);
  opacity: 1;
}
.journalLightbox__caption {
  width: min(100%, 880px);
  margin-top: 18px;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: center;
}
.journalLightbox:not(.has-caption) .journalLightbox__caption {
  display: none;
}
.journalLightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.journalLightbox__close::before, .journalLightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  background: #fff;
  transform-origin: center;
}
.journalLightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.journalLightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.journalLightbox__nav {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.journalLightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
}
.journalLightbox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.journalLightbox__nav--prev {
  left: 20px;
}
.journalLightbox__nav--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.journalLightbox__nav--next {
  right: 20px;
}
.journalLightbox__nav--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.journalLightbox.is-first .journalLightbox__nav--prev, .journalLightbox.is-last .journalLightbox__nav--next {
  opacity: 0.28;
  pointer-events: none;
}
.journalLightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
.journalLightbox__slash {
  margin-inline: 6px;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .journalLightbox__dialog {
    padding: 72px 20px 92px;
  }
  .journalLightbox__image {
    max-height: calc(100vh - 220px);
  }
  .journalLightbox__caption {
    margin-top: 14px;
    font-size: 0.8125rem;
    line-height: 1.8;
    text-align: left;
  }
  .journalLightbox__close {
    top: 14px;
    right: 10px;
    width: 48px;
    height: 48px;
  }
  .journalLightbox__nav {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: 24px;
    transform: none;
  }
  .journalLightbox__nav--prev {
    left: 16px;
  }
  .journalLightbox__nav--next {
    right: 16px;
  }
  .journalLightbox__counter {
    bottom: 40px;
    font-size: 0.75rem;
  }
}
/* ==================================================
  Access Page
================================================== */
.accessPage {
  padding-bottom: 180px;
  background: #f5f5f3;
  color: #107140;
}
.accessInfo, .accessRoute {
  position: relative;
}
.accessInfo__inner, .accessRoute__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
}
.accessInfo {
  padding-top: 120px;
}
.accessRoute {
  padding-top: 170px;
}
.accessSectionHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 88px;
}
.accessSectionHeading img {
  display: block;
  width: 68px;
  height: auto;
  margin-bottom: 20px;
}
.accessSectionHeading__title {
  font-family: "futura-pt", sans-serif;
  margin: 0;
  color: #107140;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.accessSectionHeading__sub {
  margin: 14px 0 0;
  color: #08391F;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
}
.accessInfo__layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.accessInfo__image {
  overflow: hidden;
}
.accessInfo__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.accessInfo__content {
  min-width: 0;
}
.accessInfoTable {
  margin: 0;
}
.accessInfoTable__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(16, 113, 64, 0.12);
}
.accessInfoTable__row:first-child {
  border-top: 1px solid rgba(16, 113, 64, 0.12);
}
.accessInfoTable__term {
  margin: 0;
  color: #107140;
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.accessInfoTable__desc {
  margin: 0;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.accessInfoTable__desc a {
  color: inherit;
  text-decoration: none;
}
.accessInfoTable__address {
  font-style: normal;
  line-height: 2;
}
.accessRouteTable {
  border-top: 1px solid rgba(16, 113, 64, 0.12);
}
.accessRouteTable__row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 48px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(16, 113, 64, 0.12);
}
.accessRouteTable__from {
  margin: 0;
  color: #107140;
  font-size: 1.1875rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.accessRouteTable__content {
  min-width: 0;
}
.accessRouteTable__title {
  margin: 0 0 14px;
  color: #107140;
  font-size: 1.0625rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.accessRouteTable__title + .accessRouteTable__text {
  margin-top: 0;
}
.accessRouteTable__text {
  margin: 0 0 28px;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
.accessRouteTable__text:last-child {
  margin-bottom: 0;
}
.accessMap {
  margin-top: 72px;
}
.accessMap__iframe {
  display: block;
  width: 100%;
  height: min(46vw, 640px);
  min-height: 420px;
  filter: grayscale(1);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  .accessInfo__layout {
    grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  }
  .accessInfoTable__row {
    grid-template-columns: 100px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .accessPage {
    padding-bottom: 110px;
  }
  .accessInfo {
    padding-top: 56px;
  }
  .accessRoute {
    padding-top: 96px;
  }
  .accessSectionHeading {
    margin-bottom: 48px;
  }
  .accessSectionHeading img {
    width: 54px;
    margin-bottom: 14px;
  }
  .accessSectionHeading__title {
    font-size: 1.75rem;
  }
  .accessSectionHeading__sub {
    margin-top: 10px;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }
  .accessInfo__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .accessInfo__image {
    order: 2;
  }
  .accessInfo__content {
    order: 1;
  }
  .accessInfoTable__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .accessInfoTable__term {
    font-size: 0.875rem;
  }
  .accessInfoTable__desc {
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .accessRouteTable__row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .accessRouteTable__from {
    font-size: 1.0625rem;
    line-height: 1.7;
  }
  .accessRouteTable__title {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
  .accessRouteTable__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 22px;
  }
  .accessMap {
    margin-top: 40px;
  }
  .accessMap__iframe {
    height: 72vw;
    min-height: 280px;
  }
}
/* ==================================================
  Contact Page
================================================== */
.contactPage {
  padding-bottom: 180px;
  color: #08391F;
}
.contactLead {
  padding-top: 88px;
}
.contactLead__inner, .contactFormSection__inner {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: 24px;
}
.contactLead__notice {
  max-width: 900px;
  margin-inline: auto;
  padding: 26px 32px;
  border: 1px solid rgba(16, 113, 64, 0.58);
  background: rgba(255, 255, 255, 0.28);
}
.contactLead__notice p {
  margin: 0;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
.contactFormSection {
  padding-top: 56px;
}
.contactForm {
  max-width: 860px;
  margin-inline: auto;
}
/* ------------------------------
  Contact Form 7
------------------------------ */
.contactForm .wpcf7 {
  width: 100%;
}
.contactForm .wpcf7 form {
  margin: 0;
}
.contactForm .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contactForm .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.contactForm .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(16, 113, 64, 0.2);
  color: #08391F;
  font-size: 0.875rem;
  line-height: 1.8;
}
.contactForm .wpcf7-spinner {
  margin: 12px 0 0 10px;
}
.contactForm .wpcf7-form-control {
  max-width: 100%;
}
/* ------------------------------
  Form Layout
------------------------------ */
.contactFormRow {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}
.contactFormRow--top {
  align-items: start;
}
.contactFormRow__head p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 56px;
  padding-top: 0;
}
.contactFormRow__label {
  color: #107140;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}
.contactFormRow__required, .contactFormRow__optional {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 4px 8px;
  background: #dcdedb;
  color: #107140;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}
.contactFormRow__body {
  min-width: 0;
}
.contactFormRow__note {
  margin: 8px 0 0;
  color: #08391F;
  opacity: 0.8;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.contactFormRow__note + .contactFormRow__note {
  margin-top: 4px;
}
/* ------------------------------
  Input
------------------------------ */
.contactForm input[type="text"], .contactForm input[type="email"], .contactForm input[type="tel"], .contactForm input[type="url"], .contactForm textarea, .contactForm select {
  width: 100%;
  border: 1px solid rgba(16, 113, 64, 0.14);
  background: #fff;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  appearance: none;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contactForm input[type="text"]:focus, .contactForm input[type="email"]:focus, .contactForm input[type="tel"]:focus, .contactForm input[type="url"]:focus, .contactForm textarea:focus, .contactForm select:focus {
  border-color: rgba(16, 113, 64, 0.42);
  box-shadow: 0 0 0 4px rgba(16, 113, 64, 0.06);
}
.contactForm input[type="text"], .contactForm input[type="email"], .contactForm input[type="tel"], .contactForm input[type="url"], .contactForm select {
  height: 56px;
  padding: 0 18px;
}
.contactForm textarea {
  min-height: 260px;
  padding: 16px 18px;
  resize: vertical;
}
/* ------------------------------
  Checkbox
------------------------------ */
.contactForm .wpcf7-checkbox {
  display: grid;
  gap: 12px;
}
.contactForm .wpcf7-list-item {
  display: block;
  margin: 0;
}
.contactForm .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0;
  cursor: pointer;
}
.contactForm .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contactForm .wpcf7-list-item-label {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 34px;
  color: #08391F;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.contactForm .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #107140;
  background: transparent;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.contactForm .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #107140;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.contactForm .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: rgba(16, 113, 64, 0.08);
}
.contactForm .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
/* ------------------------------
  Privacy
------------------------------ */
.contactFormPrivacy {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 113, 64, 0.12);
}
.contactFormPrivacy__text {
  margin: 0;
  color: #08391F;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.contactFormPrivacy__text a {
  color: #107140;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.contactFormPrivacy__agree {
  margin-top: 18px;
}
.contactFormPrivacy .wpcf7-list-item {
  margin: 0;
}
.contactFormPrivacy label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.contactFormPrivacy .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.contactFormPrivacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #08391F;
  background: transparent;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.contactFormPrivacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #08391F;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.contactFormPrivacy input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contactFormPrivacy input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
/* ------------------------------
  Submit
------------------------------ */
.contactFormSubmit {
  margin-top: 74px;
  text-align: center;
}
.contactFormSubmit .wpcf7-submit, .contactFormSubmit input[type="submit"] {
  min-width: 360px;
  min-height: 74px;
  padding: 0 36px;
  border: 2px solid #08391F;
  background: transparent;
  color: #08391F;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.contactFormSubmit .wpcf7-submit:hover, .contactFormSubmit input[type="submit"]:hover {
  background: #107140;
  color: #fff;
  transform: translateY(-2px);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .contactPage {
    padding-bottom: 110px;
  }
  .contactLead {
    padding-top: 56px;
  }
  .contactLead__notice {
    padding: 18px 18px 20px;
  }
  .contactLead__notice p {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
  .contactFormSection {
    padding-top: 40px;
  }
  .contactFormRow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .contactFormRow__head p {
    justify-content: flex-start;
    min-height: 0;
    padding-top: 0;
    gap: 8px;
  }
  .contactFormRow__label {
    font-size: 0.9375rem;
    text-align: left;
    white-space: normal;
  }
  .contactFormRow__required, .contactFormRow__optional {
    min-width: 40px;
    min-height: 26px;
    font-size: 0.6875rem;
  }
  .contactForm input[type="text"], .contactForm input[type="email"], .contactForm input[type="tel"], .contactForm input[type="url"], .contactForm select {
    height: 52px;
    padding-inline: 14px;
    font-size: 0.875rem;
  }
  .contactForm textarea {
    min-height: 220px;
    padding: 14px;
    font-size: 0.875rem;
  }
  .contactForm .wpcf7-checkbox {
    gap: 10px;
  }
  .contactForm .wpcf7-list-item-label {
    padding-left: 24px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .contactForm .wpcf7-list-item-label::before {
    width: 14px;
    height: 14px;
  }
  .contactForm .wpcf7-list-item-label::after {
    left: 4px;
    width: 6px;
    height: 6px;
  }
  .contactFormPrivacy {
    margin-top: 22px;
    padding-top: 22px;
  }
  .contactFormPrivacy__text {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
  .contactFormPrivacy .wpcf7-list-item-label {
    padding-left: 28px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .contactFormPrivacy .wpcf7-list-item-label::before {
    width: 14px;
    height: 14px;
  }
  .contactFormPrivacy .wpcf7-list-item-label::after {
    left: 4px;
    width: 6px;
    height: 6px;
  }
  .contactFormRow__note {
    font-size: 0.75rem;
    line-height: 1.75;
  }
  .contactFormSubmit {
    margin-top: 48px;
  }
  .contactFormSubmit .wpcf7-submit, .contactFormSubmit input[type="submit"] {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}
/* ==================================================
  Policy Page
================================================== */
.policyPage {
  padding-bottom: 180px;
  background: #f5f5f3;
  color: #107140;
}
.policyIntro {
  padding-top: 88px;
}
.policyIntro__inner, .policyBody__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 24px;
}
.policyIntro__lead {
  padding: 0 0 42px;
  border-bottom: 1px solid rgba(16, 113, 64, 0.12);
}
.policyIntro__lead p {
  margin: 0;
  color: #08391F;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.06em;
}
.policyIntro__lead p + p {
  margin-top: 1.2em;
}
.policyBody {
  padding-top: 72px;
}
.policyBlock {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(16, 113, 64, 0.12);
}
.policyBlock__title {
  margin: 0 0 22px;
  color: #107140;
  font-size: 1.625rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.policyBlock__content {
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 2.15;
  letter-spacing: 0.05em;
}
.policyBlock__content > *:first-child {
  margin-top: 0;
}
.policyBlock__content > *:last-child {
  margin-bottom: 0;
}
.policyBlock__content p {
  margin: 0 0 1.2em;
}
.policyBlock__content ul, .policyBlock__content ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}
.policyBlock__content li {
  margin-bottom: 0.5em;
}
.policyBlock__content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.policyInfo {
  margin: 0;
}
.policyInfo__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 113, 64, 0.08);
}
.policyInfo__row:first-child {
  border-top: 1px solid rgba(16, 113, 64, 0.08);
}
.policyInfo__term {
  margin: 0;
  color: #107140;
  font-size: 0.9375rem;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.policyInfo__desc {
  margin: 0;
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.policyInfo__desc a {
  color: inherit;
  text-decoration: none;
}
.policyInfo__address {
  font-style: normal;
  line-height: 1.9;
}
.policyFoot {
  margin-top: 18px;
}
.policyFoot__date {
  margin: 0;
  color: rgba(16, 113, 64, 0.74);
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .policyPage {
    padding-bottom: 110px;
  }
  .policyIntro {
    padding-top: 56px;
  }
  .policyIntro__lead {
    padding-bottom: 30px;
  }
  .policyIntro__lead p {
    font-size: 0.875rem;
    line-height: 2;
  }
  .policyBody {
    padding-top: 48px;
  }
  .policyBlock {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .policyBlock__title {
    margin-bottom: 16px;
    font-size: 1.25rem;
    line-height: 1.55;
  }
  .policyBlock__content {
    font-size: 0.875rem;
    line-height: 2;
  }
  .policyInfo__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .policyInfo__term, .policyInfo__desc {
    font-size: 0.875rem;
  }
  .policyFoot__date {
    font-size: 0.8125rem;
  }
}
/* ==================================================
  Not Found Page
================================================== */
.notFoundPage {
  padding-bottom: 180px;
  background: #f5f5f3;
  color: #107140;
}
.notFoundLead {
  padding-top: 88px;
}
.notFoundLead__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: 24px;
}
.notFoundLead__head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.notFoundLead__number {
  margin: 0 0 18px;
  color: rgba(16, 113, 64, 0.14);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.notFoundLead__title {
  margin: 0;
  color: #107140;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.notFoundLead__text {
  margin: 22px 0 0;
  color: #08391F;
  font-size: 1rem;
  line-height: 2.15;
  letter-spacing: 0.05em;
}
.notFoundLead__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}
.notFoundLead__button {
  min-width: 220px;
  min-height: 60px;
  padding: 0 30px;
  border: 1px solid rgba(16, 113, 64, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #107140;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.notFoundLead__button:hover {
  background: rgba(16, 113, 64, 0.06);
  border-color: rgba(16, 113, 64, 0.34);
  transform: translateY(-2px);
}
.notFoundLead__button--primary {
  background: #107140;
  border-color: #107140;
  color: #fff;
}
.notFoundLead__button--primary:hover {
  background: #0d6237;
  border-color: #0d6237;
}
.notFoundGuide {
  margin-top: 88px;
}
.notFoundGuide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.notFoundGuide__card {
  padding: 34px 34px 36px;
  border: 1px solid rgba(16, 113, 64, 0.1);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
}
.notFoundGuide__title {
  margin: 0 0 22px;
  color: #107140;
  font-size: 1.375rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.notFoundGuide__list, .notFoundGuide__postList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.notFoundGuide__list li, .notFoundGuide__postItem {
  border-top: 1px solid rgba(16, 113, 64, 0.1);
}
.notFoundGuide__list li:last-child, .notFoundGuide__postItem:last-child {
  border-bottom: 1px solid rgba(16, 113, 64, 0.1);
}
.notFoundGuide__list a, .notFoundGuide__postItem a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  color: #08391F;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.notFoundGuide__list a:hover, .notFoundGuide__postItem a:hover {
  color: #107140;
  opacity: 0.76;
}
.notFoundGuide__postItem a {
  align-items: flex-start;
  flex-direction: column;
}
.notFoundGuide__postItem time {
  color: rgba(16, 113, 64, 0.72);
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.notFoundGuide__postItem span {
  color: #08391F;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.notFoundGuide__postItem--empty {
  padding: 18px 0;
  color: rgba(16, 113, 64, 0.72);
  font-size: 0.875rem;
  line-height: 1.8;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  .notFoundPage {
    padding-bottom: 110px;
  }
  .notFoundLead {
    padding-top: 56px;
  }
  .notFoundLead__number {
    margin-bottom: 12px;
    font-size: clamp(68px, 22vw, 120px);
  }
  .notFoundLead__text {
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 2;
    text-align: left;
  }
  .notFoundLead__actions {
    margin-top: 32px;
    gap: 12px;
  }
  .notFoundLead__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 20px;
    font-size: 0.8125rem;
  }
  .notFoundGuide {
    margin-top: 56px;
  }
  .notFoundGuide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .notFoundGuide__card {
    padding: 24px 20px 26px;
  }
  .notFoundGuide__title {
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
  .notFoundGuide__list a, .notFoundGuide__postItem a {
    padding: 14px 0;
  }
  .notFoundGuide__postItem span {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
/*
  utillity
————————————————————————————————————————— */
.grecaptcha-badge {
  opacity: 0;
}
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-sp-none992 {
  display: none;
}
.u-sp-none768 {
  display: none;
}
.u-sp-none576 {
  display: none;
}
.u-m-auto {
  margin: 0 auto;
}
.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.u-fade {
  opacity: 0;
  transition: all 1s ease;
}
.u-fade.is-active {
  opacity: 1;
  transform: none;
}
.u-fade-up {
  transform: translate(0, 50px);
}
.u-fade-lr {
  transform: translate(-100px, 0);
}
.u-fade-rl {
  transform: translate(100px, 0);
}
.l-main.u-fade-blur {
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}
.u-fade-blur {
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.u-fade-blur.is-active {
  opacity: 1;
  filter: blur(0);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
  utility(992)
  =========================*/
  .u-sp-none992 {
    display: block;
  }
  .u-pc-none992 {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
  utility(768)
  =========================*/
  .u-sp-none768 {
    display: block;
  }
  .u-pc-none768 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
  utility(576)
  =========================*/
  .u-sp-none576 {
    display: block;
  }
  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
}
