@charset "UTF-8";
/* ///////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/*
  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #1A1A1A;
  --color-green: #297648;
  --color-light-green: #99BC7A;
  --color-ivory: #F4F2E7;
  --color-bg-light: #DBEBCD;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-en: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-base);
  font-size: 14rem;
  font-family: var(--font-gothic);
  font-weight: 500;
}

:is(p) {
  line-height: 2;
}

:is(li, dt, dd, th, td) {
  line-height: 1.7;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:is(a) {
  color: inherit;
}
:is(a):hover {
  text-decoration: none;
}

/*
  LAYOUT
----------------------------------------------- */
@media screen and (max-width: 960px) {
  body.isMenuOpen {
    overflow: hidden;
  }
}

.main-contents {
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .main-contents {
    margin-top: 76px;
  }
}

/*
  HEADER
----------------------------------------------- */
.header {
  display: flex;
}
@media screen and (min-width: 961px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    flex-direction: column;
    gap: 60px;
    width: 380px;
    padding-block: 70px;
    padding-left: 60px;
    overflow-y: auto;
    background-color: var(--color-bg-light);
    background-image: url(../img/ill-header-1.png), url(../img/ill-header-2.png);
    background-position: 0 0, 0 302px;
    background-size: 168px, 121px;
    background-repeat: no-repeat;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.15);
    scrollbar-width: none;
  }
  .header::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 25px;
    height: 76px;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    background-color: #fff;
  }
  .header.scrolled {
    background-color: #fff;
  }
}
.header .logo {
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .header .logo {
    width: 240px;
    position: relative;
    z-index: 20;
  }
}
.header .logo a {
  display: grid;
  gap: 7px;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 961px) {
  .header .logo a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 960px) {
  .header .logo a {
    font-size: 10px;
  }
}
@media screen and (min-width: 961px) {
  .header .logo .name {
    padding-left: 30px;
  }
}
.isMenuOpen .header {
  background-color: var(--color-bg-light);
  background-image: url(../img/ill-header-1.png);
  background-repeat: no-repeat;
  background-size: 166px;
}

/*
  MENU
----------------------------------------------- */
@media screen and (min-width: 961px) {
  .gnav {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 960px) {
  .gnav {
    position: fixed !important;
    z-index: 10;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px 35px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    background-color: var(--color-bg-light);
    background-image: url(../img/ill-header-2-sp.png);
    background-repeat: no-repeat;
    background-position: right bottom 5px;
    background-size: 101px;
    transition: 0.4s;
    color: var(--color-green);
  }
}
@media screen and (min-width: 961px) {
  .gnav-menu {
    grid-area: 1/2/3/3;
    margin-left: 50px;
  }
}
.gnav-list {
  display: grid;
}
@media screen and (min-width: 961px) {
  .gnav-list {
    gap: 0.7em;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list {
    gap: 2px;
  }
}
.gnav-list > li {
  position: relative;
}
.gnav-list > li > a {
  align-items: center;
  font-weight: 600;
  text-decoration: none;
}
.gnav-list > li > a::before {
  content: "";
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (min-width: 961px) {
  .gnav-list > li > a {
    display: inline-flex;
    gap: 15px;
    font-size: 16rem;
  }
  .gnav-list > li > a::before {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list > li > a {
    display: flex;
    gap: 9px;
    height: 50px;
    padding-left: 18px;
    background-color: #EBF4E4;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .gnav-list > li > a::before {
    width: 18px;
    background-image: url(../img/mrk-right-w.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
.gnav .btnOpenMenu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-green);
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .gnav .btnOpenMenu {
    display: none;
  }
}
.gnav .btnOpenMenu::before, .gnav .btnOpenMenu::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav .btnOpenMenu::before {
  content: "\f107";
}
.gnav .btnOpenMenu.active::before {
  content: "\f106";
}
@media screen and (min-width: 961px) {
  .gnav-subpage {
    display: none;
  }
}
.gnav-subpage li {
  margin-left: 25px;
}
.gnav-subpage li:not(:last-child) {
  border-bottom: 1px solid #BBD5A5;
}
.gnav-subpage li a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 45px;
  background: url(../img/mrk-right-g.svg) no-repeat center left;
  padding-left: 17px;
  text-decoration: none;
}
.gnav-sns {
  display: flex;
  gap: 1.2em;
}
@media screen and (min-width: 961px) {
  .gnav-sns {
    padding-block: 40px;
    font-size: 22rem;
  }
}
@media screen and (max-width: 960px) {
  .gnav-sns {
    justify-content: center;
    padding-block: 40px;
    font-size: 26px;
  }
}
.gnav-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
}
.gnav-link a::before {
  content: "";
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (min-width: 961px) {
  .gnav-link a {
    gap: 15px;
    font-size: 14rem;
  }
  .gnav-link a::before {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .gnav-link {
    text-align: center;
  }
  .gnav-link a {
    gap: 10px;
    font-size: 16px;
  }
  .gnav-link a::before {
    width: 18px;
    background-image: url(../img/mrk-right-w.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
.gnav .debug {
  opacity: 1;
  pointer-events: inherit;
}
.gnav-copyright {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-feature-settings: "pkna";
  font-size: 10rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .gnav-copyright {
    display: none;
  }
}
.gnav-scroll {
  margin-top: auto;
  display: flex;
  align-items: center;
  height: 170px;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: 11rem;
  font-family: var(--font-montserrat);
  font-weight: bold;
  position: relative;
}
.gnav-scroll::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: currentColor;
  width: 1px;
  height: 120px;
}
.gnav-scroll::after {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  content: "";
  background-color: currentColor;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: scrollIndicator 2s infinite;
}
@media screen and (max-width: 960px) {
  .gnav-scroll {
    display: none;
  }
}

@keyframes scrollIndicator {
  0% {
    bottom: 120px;
  }
  100% {
    bottom: 0px;
  }
}
.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  z-index: 20;
  place-items: center;
  width: 30px;
  height: 30px;
  display: none;
  transition: 0.2s;
}
.btnMenu::before, .btnMenu::after, .btnMenu span {
  grid-area: 1/1;
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-green);
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -6px;
}
.btnMenu::after {
  translate: 0 6px;
}
@media screen and (max-width: 960px) {
  .btnMenu {
    display: grid;
  }
}

.isMenuOpen .btnMenu::before {
  rotate: 45deg;
  translate: 0;
}
.isMenuOpen .btnMenu::after {
  rotate: -45deg;
  translate: 0;
}
.isMenuOpen .btnMenu span {
  opacity: 0;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  position: relative;
}
@media screen and (min-width: 961px) {
  .footer {
    background-color: var(--color-green);
    padding-bottom: 380px;
  }
}
@media screen and (max-width: 960px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer-cta {
  display: grid;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .footer-cta {
    padding-block: 40px;
    grid-template-columns: 1fr 304px;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .footer-cta {
    position: fixed;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--color-green);
    transition: bottom 0.4s;
  }
}
.footer-cta .nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 30px;
}
.footer-cta .nav a::after {
  background-image: url(../img/mrk-right-g.svg);
}
@media screen and (max-width: 960px) {
  .footer-cta .nav {
    gap: 10px 30px;
    grid-template-columns: auto auto;
    font-size: 11px;
  }
  .footer-cta .nav a::after {
    background-image: url(../img/mrk-right-w.svg);
    scale: 0.85;
  }
}
.footer-cta .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border: 1px solid currentColor;
  text-decoration: none;
  font-family: var(--font-en);
  font-weight: bold;
}
.footer-cta .phone i {
  font-size: 85%;
}
@media screen and (min-width: 961px) {
  .footer-cta .phone {
    height: 70px;
    font-size: 24rem;
  }
}
@media screen and (max-width: 960px) {
  .footer-cta .phone {
    height: 45px;
    font-size: 20px;
  }
}
.footer-copyright {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 961px) {
  .footer-copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 75px;
    height: 75px;
    justify-content: flex-end;
    padding-inline: 25px;
    font-size: 10rem;
    max-width: inherit !important;
  }
}
@media screen and (max-width: 960px) {
  .footer-copyright {
    height: 60px;
    font-size: 10px;
  }
}
.footer .pagetop {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-green);
  aspect-ratio: 1;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .footer .pagetop {
    width: 75px;
    border-top-left-radius: 30px;
    font-size: 23rem;
  }
}
@media screen and (max-width: 960px) {
  .footer .pagetop {
    bottom: 120px;
    width: 60px;
    font-size: 18px;
  }
}
.footer .pagetop:hover {
  padding-bottom: 10px;
}
.footer-image {
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .footer-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: inherit !important;
    height: 380px;
    padding-left: 380px;
  }
}
@media screen and (max-width: 960px) {
  .footer-image {
    margin: 0 -20px;
  }
}
.footer-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}

/*
  PARTS
----------------------------------------------- */
@media screen and (min-width: 961px) {
  .container {
    padding-inline: 405px 25px;
  }
  .container > *:not([class^=ill-]) {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 960px) {
  .container {
    padding-inline: 20px;
  }
}

.news-list a {
  display: grid;
  text-decoration: none;
  line-height: 2;
}
.news-list a + a {
  border-top: 1px solid var(--color-light-green);
}
@media screen and (min-width: 961px) {
  .news-list a {
    grid-template-columns: 6.1em 85px 1fr;
    gap: 1.3em;
    padding-block: 1.3em;
  }
}
@media screen and (max-width: 960px) {
  .news-list a {
    grid-template-columns: 7.3em 1fr;
    gap: 10px 20px;
    padding-block: 20px;
  }
}
.news-list .date {
  font-family: var(--font-outfit);
}
@media screen and (min-width: 961px) {
  .news-list .date {
    font-size: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .date {
    font-size: 16px;
  }
}
.news-list .category {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5em;
  border: 1px solid var(--color-light-green);
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 961px) {
  .news-list .category {
    height: 32px;
    font-size: 13rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .category {
    min-width: 80px;
    width: fit-content;
    height: 32px;
    font-size: 13px;
  }
}
@media screen and (min-width: 961px) {
  .news-list .title {
    font-size: 14rem;
  }
}
@media screen and (max-width: 960px) {
  .news-list .title {
    grid-area: 2/1/3/3;
    font-size: 14px;
  }
}

.mrk {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  text-decoration: none;
}
.mrk.right::after {
  display: inline-block;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 17px;
  content: "";
  background-image: url(../img/mrk-right-w.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
}
.mrk:hover::after {
  translate: 10px;
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid currentColor;
  text-decoration: none;
  color: var(--color-green);
}
.button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  background-color: currentColor;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 20px;
  content: "";
  background-image: url(../img/mrk-right-w.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.button:hover::after {
  animation: buttonHover 2s infinite;
}
@media screen and (min-width: 961px) {
  .button {
    width: 260px;
    height: 60px;
    font-size: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .button {
    height: 50px;
    font-size: 16px;
  }
}

@keyframes buttonHover {
  0% {
    translate: -10px;
  }
  10% {
    translate: -10px;
  }
  100% {
    translate: 0px;
  }
}