/*FONT--*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*COLOR*/
/*BREAK POINT*/
body {
  font-family: "Noto Sans", sans-serif;
  color: #4a4a4a;
}

.pc {
  display: block;
}
@media screen and (max-width: 736px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 736px) {
  .sp {
    display: block;
  }
}

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

a {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 736px) {
  section {
    padding: 30px 0;
  }
}
section .box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title-box h2 {
  font-size: 36px;
  font-weight: 400;
  font-family: "Libre Baskerville", serif;
}
.title-box span {
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
}
.title-box p {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  line-height: 2em;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

.btn-box {
  margin-top: 30px;
}
.btn-box a {
  width: auto;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  padding: 10px 100px 10px 15px;
  font-size: 16px;
  position: relative;
  font-family: "Noto Serif", serif;
  transition: all 0.2s ease-in-out;
}
.btn-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  aspect-ratio: 82/20;
  background-image: url("../img/common/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease-in-out;
}

.fadein,
.under-lead-img-fadein,
.under-lead-text-fadein,
.sumai-img-fadein,
.sumai-title-fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.under-mv-fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.heading-xl {
  font-family: "Noto Serif", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 736px) {
  .heading-xl {
    font-size: 32px;
    line-height: 160%; /* 51.2px */
    letter-spacing: 1.28px;
  }
}

.heading-l {
  font-family: "Noto Serif", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 51.2px */
  letter-spacing: 1.28px;
}
@media screen and (max-width: 736px) {
  .heading-l {
    font-family: "Noto Serif", serif;
    font-size: 24px;
    line-height: 160%; /* 38.4px */
    letter-spacing: 0.96px;
  }
}

.heading-m {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 736px) {
  .heading-m {
    font-size: 20px;
    line-height: 160%; /* 32px */
    letter-spacing: 0.8px;
  }
}

.heading-s {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 736px) {
  .heading-s {
    font-size: 16px;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.64px;
  }
}

.heading-contact {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 736px) {
  .heading-contact {
    font-size: 32px;
    line-height: normal;
  }
}

header.pc {
  width: 100%;
  background: #F9F8F5;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 24px 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 736px) {
  header.pc {
    display: none;
  }
}
header.pc .logo a {
  width: 200px;
  height: auto;
  display: block;
}
header.pc .logo a img {
  width: 100%;
  height: auto;
}
header.pc .header-nav .sub-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header.pc .header-nav .sub-nav ul li {
  padding: 2.5px 16px;
  border-right: 1px solid #aaa;
}
header.pc .header-nav .sub-nav ul li:last-child {
  border-right: none;
  padding-right: 0;
}
header.pc .header-nav .sub-nav ul li a {
  color: #4a4a4a;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.52px;
  display: flex;
  align-items: center;
}
header.pc .header-nav .sub-nav ul li a img {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-left: 3px;
}
header.pc .header-nav .sub-nav ul li.tel a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
header.pc .header-nav .sub-nav ul li.tel a img {
  width: 32px;
  height: auto;
  display: inline-block;
  margin: 0;
}
header.pc .header-nav .main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
header.pc .header-nav .main-nav li {
  border-bottom: 2px solid transparent;
}
header.pc .header-nav .main-nav li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  padding: 4px 0 16px;
}
header.pc .header-nav .main-nav li:hover,
header.pc .header-nav .main-nav li.active {
  border-bottom: 2px solid #356138;
}
header.pc .header-nav .main-nav li:hover a,
header.pc .header-nav .main-nav li.active a {
  color: #356138;
  font-weight: 500;
}
header.pc .header-nav .main-nav li.parent {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  padding: 4px 0 4px;
  position: relative;
  cursor: pointer;
}
header.pc .header-nav .main-nav li.parent img {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 3px;
}
header.pc .header-nav .main-nav li.parent:hover ul.child {
  display: flex;
}
header.pc .header-nav .main-nav ul.child {
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  position: fixed;
  top: 108px;
  right: 40px;
  border-radius: 0 0 8px 8px;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
  background: #F5F2ED;
  width: auto;
  margin: 0 auto;
  padding: 32px 40px 40px;
  z-index: 1;
}
header.pc .header-nav .main-nav .child li {
  width: 160px;
}
header.pc .header-nav .main-nav .child li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  display: block;
}
header.pc .header-nav .main-nav .child li a img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #aaa;
  border-radius: 4px;
  margin-bottom: 8px;
}
header.pc .header-nav .main-nav .child li.all {
  width: auto;
  margin-right: 30px;
}
header.pc .header-nav .main-nav .child li.all p {
  color: #356138;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.96px;
}
header.pc .header-nav .main-nav .child li.all a {
  color: #356138;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 90px;
}
header.pc .header-nav .main-nav .child li.all a img {
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transform: rotate(-90deg);
  background: transparent;
  margin: 0;
}

header.sp {
  display: none;
  background: #F9F8F5;
}
@media screen and (max-width: 736px) {
  header.sp {
    display: block;
  }
}
header.sp .header-top {
  background: #F9F8F5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  height: 60px;
}
header.sp .header-top .logo a {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
header.sp .header-top .logo a img {
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header.sp .header-top .menu-btn img {
  width: 40px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header.sp .header-top .menu-btn .btn-close {
  display: none;
}
header.sp .header-nav {
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  height: calc(100% - 50px);
  z-index: 9999;
  left: 100%;
  transition: left 0.3s ease;
  overflow-y: auto;
  background: #F9F8F5;
}
header.sp .header-nav.open {
  left: 0;
}
header.sp .header-nav ul li {
  border-bottom: 1px solid #DCDCDC;
}
header.sp .header-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  background: #F9F8F5;
}
header.sp .header-nav ul li.parent {
  background: #F9F8F5;
}
header.sp .header-nav ul li.parent p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
header.sp .header-nav ul li.parent p span {
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}
header.sp .header-nav ul li.parent p img {
  width: 24px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header.sp .header-nav ul li.parent ul.child li a {
  background: #F5F2ED;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  padding: 16px 40px;
}
header.sp .header-nav .header-bottom {
  padding: 32px 16px 40px;
}
header.sp .header-nav .header-bottom a.contact-btn {
  width: 100%;
  display: block;
  padding: 16px 24px;
  background: #356138;
  border-radius: 4px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  margin-bottom: 24px;
}
header.sp .header-nav .header-bottom .mokka-box {
  width: 100%;
  display: block;
  padding: 32px 16px;
  border-top: 1px solid #356138;
  border-bottom: 1px solid #356138;
  margin-bottom: 24px;
}
header.sp .header-nav .header-bottom .mokka-box a {
  display: block;
  color: #356138;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.64px;
  position: relative;
}
header.sp .header-nav .header-bottom .mokka-box a span {
  color: #356138;
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  display: block;
  width: 100%;
}
header.sp .header-nav .header-bottom .mokka-box a img {
  width: 16px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
header.sp .header-nav .header-bottom a.privacy {
  color: #4a4a4a;
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 16px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.side-btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 736px) {
  .side-btn {
    display: none;
  }
}
.side-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 8px 0 0 8px;
  background: #356138;
  padding: 24px 16px 24px 12px;
}
.side-btn a img {
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

#contact {
  background: #356138;
  padding: 40px 0;
}
#contact .box .title-box {
  margin-bottom: 40px;
}
#contact .box .title-box h2 {
  color: #fff;
}
#contact .box .title-box p {
  color: #fff;
  font-family: "Noto Serif", serif;
}
#contact .box .contact-box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
}
@media screen and (max-width: 736px) {
  #contact .box .contact-box {
    flex-direction: column;
    gap: 16px;
  }
}
#contact .box .contact-box a {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 736px) {
  #contact .box .contact-box a {
    border-radius: 4px;
    padding: 16px 24px;
  }
}
#contact .box .contact-box a.tel img {
  width: auto;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#contact .box .contact-box a.tel p {
  color: #356138;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}
#contact .box .contact-box a.tel small {
  width: 100%;
  color: #356138;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.52px;
}
@media screen and (max-width: 736px) {
  #contact .box .contact-box a.mail {
    padding: 32px 24px;
  }
}
#contact .box .contact-box a.mail img {
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#contact .box .contact-box a.mail p {
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 72px 60px 0;
  flex-direction: row-reverse;
}
@media screen and (max-width: 736px) {
  footer {
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 24px;
  }
}
@media screen and (max-width: 736px) {
  footer .f-logo {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 24px;
    text-align: center;
  }
}
footer .f-logo a.logo {
  display: block;
  margin-bottom: 16px;
}
footer .f-logo a.logo img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 736px) {
  footer .f-logo a.logo img {
    height: 30px;
  }
}
footer .f-logo a.tel {
  display: inline-block;
  color: #4a4a4a;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 16px;
}
footer .f-logo a.tel img {
  width: 32px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .f-logo p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.56px;
  margin-bottom: 8px;
}
footer .f-logo small {
  color: #4a4a4a;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 24px;
}
footer .f-right {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 736px) {
  footer .f-right {
    padding-bottom: 32px;
    border-bottom: 1px solid #DCDCDC;
  }
}
footer .f-right .f-nav {
  display: flex;
  gap: 30px;
}
footer .f-right .f-nav ul li {
  margin-bottom: 8px;
}
footer .f-right .f-nav ul li a {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 736px) {
  footer .f-right .f-nav ul li a {
    font-size: 13px;
  }
}
footer .f-right .f-sns.pc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 736px) {
  footer .f-right .f-sns.pc {
    display: none;
  }
}
footer .f-right .f-sns.pc .btn-box {
  margin-top: 0;
}
footer .f-right .f-sns.pc .btn-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 2px;
  border: 1px solid #356138;
  padding: 10px 20px;
}
footer .f-right .f-sns.pc .btn-box a::before {
  display: none;
}
footer .f-right .f-sns.pc .btn-box a.btn-staff-blog {
  color: #356138;
}
footer .f-right .f-sns.pc .btn-box a.btn-facebook,
footer .f-right .f-sns.pc .btn-box a.btn-instagram {
  margin-top: 16px;
  background-color: #356138;
  color: #fff;
}
footer .f-right .f-sns.pc .btn-box a.btn-facebook img,
footer .f-right .f-sns.pc .btn-box a.btn-instagram img {
  width: 24px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 10px;
}
footer .f-right .f-sns.pc .privacy-box a {
  color: #626262;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.48px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
footer .f-sns.sp {
  display: none;
}
@media screen and (max-width: 736px) {
  footer .f-sns.sp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
}
footer .f-sns.sp .btn-box {
  margin-top: 0;
  width: 100%;
  text-align: center;
}
footer .f-sns.sp .btn-box a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 2px;
  border: 1px solid #356138;
  padding: 10px 20px;
}
footer .f-sns.sp .btn-box a::before {
  display: none;
}
footer .f-sns.sp .btn-box a.btn-staff-blog {
  color: #356138;
}
footer .f-sns.sp .btn-box a.btn-facebook,
footer .f-sns.sp .btn-box a.btn-instagram {
  margin-top: 16px;
  background-color: #356138;
  color: #fff;
}
footer .f-sns.sp .btn-box a.btn-facebook img,
footer .f-sns.sp .btn-box a.btn-instagram img {
  width: 24px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 10px;
}
@media screen and (max-width: 736px) {
  footer .f-sns.sp .privacy-box {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
footer .f-sns.sp .privacy-box a {
  color: #626262;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.48px;
  text-decoration-line: underline;
}
@media screen and (max-width: 736px) {
  footer .f-sns.sp .privacy-box a {
    text-align: center;
  }
}
footer .copyright {
  width: 100%;
  color: #b3b3b3;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.4px;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #dcdcdc;
  margin-top: 16px;
}

main.under-page {
  background: #F9F8F5;
}
main.under-page section .box h2.title {
  color: #318338;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  margin-bottom: 24px;
}
main.under-page #building {
  padding-bottom: 0;
}
main.under-page #building .box {
  width: 100%;
  max-width: none;
}
main.under-page #building .box ul {
  display: flex;
  gap: 8px;
  background-color: #000;
}
@media screen and (max-width: 736px) {
  main.under-page #building .box ul {
    flex-direction: column;
  }
}
main.under-page #building .box ul li {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 736px) {
  main.under-page #building .box ul li {
    aspect-ratio: 16/9;
  }
}
main.under-page #building .box ul li:nth-child(1) {
  background-image: url("../img/building/building01.jpg");
}
main.under-page #building .box ul li:nth-child(2) {
  background-image: url("../img/building/building02.jpg");
}
main.under-page #building .box ul li:nth-child(3) {
  background-image: url("../img/building/building03.jpg");
}
main.under-page #building .box ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
}
main.under-page #building .box ul li:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
main.under-page #building .box ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
main.under-page #building .box ul li a h3 {
  color: #FFF;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 736px) {
  main.under-page #building .box ul li a h3 {
    font-size: 16px;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.64px;
  }
}
main.under-page #commitment .box ul {
  display: flex;
}
@media screen and (max-width: 736px) {
  main.under-page #commitment .box ul {
    flex-direction: column;
  }
}
main.under-page #commitment .box ul li {
  width: 100%;
  padding: 0 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 736px) {
  main.under-page #commitment .box ul li {
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}
main.under-page #commitment .box ul li:last-child {
  border-right: none;
}
main.under-page #commitment .box ul li h3 {
  color: #000;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 38.4px */
  margin-bottom: 24px;
}
@media screen and (max-width: 736px) {
  main.under-page #commitment .box ul li h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
main.under-page #commitment .box ul li p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}
main.under-page #detail .box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 736px) {
  main.under-page #detail .box ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.under-page #detail .box ul li {
  padding: 24px 32px;
  background: #356138;
}
main.under-page #detail .box ul li h3 {
  color: #FFF;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
  text-align: center;
}
main.under-page #case .box {
  width: 100%;
  max-width: none;
}
main.under-page #case .box h2 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #318338;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  margin-bottom: 24px;
}
main.under-page #case .box .inner-box {
  border-top: 1px solid #356138;
  border-bottom: 1px solid #356138;
}
main.under-page #case .box .inner-box ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
main.under-page #case .box .inner-box ul li {
  width: 33.3333333333%;
  padding: 40px 40px 32px;
  border-left: 1px solid #356138;
}
main.under-page #case .box .inner-box ul li:last-child {
  border-right: 1px solid #356138;
}
main.under-page #case .box .inner-box ul li a {
  display: block;
}
main.under-page #case .box .inner-box ul li a img {
  width: 100%;
}
main.under-page #case .box .inner-box ul li a .heading-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
  margin-top: 8px;
}
main.under-page #case .box .inner-box ul li a .heading-box .area {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%; /* 21.6px */
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
}
main.under-page #case .box .inner-box ul li a .heading-box .area img {
  width: 16px;
  height: auto;
  margin-right: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
main.under-page #case .box .inner-box ul li a .heading-box .date {
  color: #626262;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.48px;
}
main.under-page #case .box .inner-box ul li a p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}
main.under-page #case .box .inner-box ul li a .tag-box {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
main.under-page #case .box .inner-box ul li a .tag-box span.tag {
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.48px;
  border-radius: 2px;
  background: #DFE6D3;
  padding: 2px 8px;
}
@media screen and (max-width: 736px) {
  main.under-page #case .box .inner-box ul.under-case-slider {
    width: 100%;
  }
  main.under-page #case .box .inner-box ul.under-case-slider .slick-slide {
    padding: 32px 24px 24px;
    border-left: none;
    border-right: 1px solid #356138;
  }
  main.under-page #case .box .inner-box ul.under-case-slider ul.slick-dots {
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    list-style: none;
    padding: 0;
    position: absolute;
    bottom: -20px;
  }
  main.under-page #case .box .inner-box ul.under-case-slider ul.slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0;
    padding: 0;
    border: none;
  }
  main.under-page #case .box .inner-box ul.under-case-slider ul.slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
  }
  main.under-page #case .box .inner-box ul.under-case-slider ul.slick-dots li button:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  main.under-page #case .box .inner-box ul.under-case-slider ul.slick-dots li.slick-active button {
    background-color: #356138;
  }
}
main.under-page #case .box .btn-box {
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 736px) {
  main.under-page #case .box .btn-box {
    margin-top: 60px;
  }
}
main.under-page #case .box .btn-box a {
  color: #356138;
  border: 1px solid #356138;
  border-radius: 2px;
  padding: 16px 120px 16px 20px;
}
main.under-page #case .box .btn-box a::before {
  background-image: url("../img/common/icon-arrow-green.png");
}
@media screen and (max-width: 736px) {
  main.under-page #banner {
    padding-bottom: 60px;
  }
}
main.under-page #banner .box .inner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #FFF;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box {
    flex-direction: column;
  }
}
main.under-page #banner .box .inner-box .img-box {
  width: 50%;
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box .img-box {
    width: 100%;
  }
}
main.under-page #banner .box .inner-box .img-box:nth-child(2) {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box .img-box:nth-child(2) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: 8px;
    padding-top: 8px;
  }
}
main.under-page #banner .box .inner-box .img-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
main.under-page #banner .box .inner-box .img-box a img {
  width: auto;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box .img-box a img {
    height: 40px;
  }
}
main.under-page #banner .box .inner-box .img-box a img.icon-link {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
main.under-page #banner .box .inner-box .text-box {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box .text-box {
    width: 100%;
    border-left: none;
  }
}
main.under-page #banner .box .inner-box .text-box p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 736px) {
  main.under-page #banner .box .inner-box .text-box p {
    font-size: 14px;
    line-height: 170%; /* 23.8px */
    letter-spacing: 0.56px;
  }
}
main.under-page #person {
  padding-top: 56px;
}
main.under-page #person .box .inner-box {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F5F2ED;
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
}
@media screen and (max-width: 736px) {
  main.under-page #person .box .inner-box {
    padding: 32px 16px;
  }
}
main.under-page #person .box .inner-box .content-box {
  flex: 1;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 24px 32px 16px;
}
main.under-page #person .box .inner-box .content-box p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.64px;
}
main.under-page #person .box .inner-box .title-box {
  width: 240px;
}
main.under-page #person .box .inner-box .title-box .img-box {
  width: 100%;
  margin-bottom: 8px;
  position: relative;
}
main.under-page #person .box .inner-box .title-box .img-box img.photo {
  width: 100%;
  height: auto;
  aspect-ratio: 22/24;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main.under-page #person .box .inner-box .title-box .img-box img.icon-plus {
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
main.under-page #person .box .inner-box .title-box .text-box {
  width: 100%;
  position: relative;
}
main.under-page #person .box .inner-box .title-box .text-box span.position {
  display: block;
  color: #318338;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.52px;
  margin-bottom: 4px;
}
main.under-page #person .box .inner-box .title-box .text-box h3 {
  color: #000;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-bottom: 4px;
}
main.under-page #person .box .inner-box .title-box .text-box span.kana {
  color: #999;
  font-family: "Libre Baskerville", serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main.under-page #person .box .inner-box .title-box .text-box span.tag {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.48px;
  border-radius: 2px;
  background: #DFE6D3;
  padding: 2px 8px;
}

#under-mv {
  padding-top: 100px;
}
@media screen and (max-width: 736px) {
  #under-mv {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
#under-mv .breadcrumb {
  margin-left: 40px;
  padding-top: 40px;
  background-color: #f9f8f5;
}
@media screen and (max-width: 736px) {
  #under-mv .breadcrumb {
    margin-left: 0;
    padding: 12px 16px;
    background-color: #F5F2ED;
  }
}
#under-mv .breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.52px;
  line-height: 1em;
  padding-bottom: 2px;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item {
  display: flex;
  align-items: center;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #356138;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item a {
  display: flex;
  align-items: flex-end;
  color: #356138;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.52px;
  border-bottom: 1px solid #356138;
  line-height: 1em;
  padding-bottom: 2px;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item a:hover {
  color: #356138;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item a img {
  width: 12px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 6px;
}
#under-mv .breadcrumb .breadcrumb-list .breadcrumb-item:last-child {
  color: #356138;
  font-weight: 500;
}
#under-mv .title-box {
  align-items: flex-start;
  padding: 120px 120px 0;
}
@media screen and (max-width: 736px) {
  #under-mv .title-box {
    padding: 88px 24px 56px;
  }
}
#under-mv .title-box h2 {
  color: #356138;
  font-family: "Noto Serif", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 736px) {
  #under-mv .title-box h2 {
    font-size: 32px;
    line-height: 140%; /* 44.8px */
    letter-spacing: 1.28px;
    margin-bottom: 16px;
  }
}
#under-mv .title-box span {
  color: #7F7F7F;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 736px) {
  #under-mv .title-box span {
    font-size: 12px;
  }
}

.under-lead {
  padding-bottom: 0;
}
.under-lead .box {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-image: url("../img/common/bg-grid.png");
  background-repeat: repeat;
  background-position: 0 0;
  border-top: 1px solid #3B9443;
  border-bottom: 1px solid #3B9443;
}
@media screen and (max-width: 736px) {
  .under-lead .box {
    flex-direction: column;
    border-top: none;
    border-bottom: none;
  }
}
.under-lead .box .img-box {
  width: 50%;
  height: auto;
  display: flex;
}
@media screen and (max-width: 736px) {
  .under-lead .box .img-box {
    width: 100%;
    padding: 8px;
  }
}
.under-lead .box .img-box img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 736px) {
  .under-lead .box .img-box img {
    border-radius: 4px;
  }
}
.under-lead .box .text-box {
  width: 50%;
  padding: 120px 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 736px) {
  .under-lead .box .text-box {
    width: 100%;
    padding: 48px 24px 64px;
  }
}
.under-lead .box .text-box h2 {
  color: #356138;
  font-family: "Hannari", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 54.4px */
  letter-spacing: 1.28px;
  margin-bottom: 40px;
}
@media screen and (max-width: 736px) {
  .under-lead .box .text-box h2 {
    font-size: 26px;
    line-height: 170%; /* 44.2px */
    letter-spacing: 1.04px;
  }
}
.under-lead .box .text-box p {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%; /* 26.6px */
  letter-spacing: 0.56px;
}
@media screen and (max-width: 736px) {
  .under-lead .box .text-box p {
    padding-left: 40px;
    color: #356138;
  }
}/*# sourceMappingURL=components.css.map */