/* ------------------------------
  Footer
------------------------------ */
.site-footer {
  position: relative;
  background: url("../../img/bg_wood.jpg") repeat center bottom;
  background-size: 100% auto;
}


/* ------------------------------
  Footer Access
------------------------------ */
.footer-access {
  padding: 220px 0 200px;
  background: #728F61;
  color: #fff;
}

.footer-access__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-access__wave img {
  display: block;
  width: 100%;
}

.footer-access__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-access__info,
.footer-access__map {
  flex: 1;
}

.footer-access__name {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-access__address {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.footer-access__meta {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
}

.footer-access__item {
  display: flex;
  gap: 3px;
}

.footer-access__label {
  width: 70px;
}

.footer-access__value a {
  color: inherit;
  text-decoration: none;
}

.footer-access__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
}


/* ------------------------------
  Footer Main
------------------------------ */
.footer-main {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 960px);
  margin: -100px auto 0;
  background: #fff;
  border-radius: 8px;
}

.footer-main__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 40px;
}

.footer-brand__sns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #40533E;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0;
}

.footer-brand__sns-icon a {
  font-size: 2.5rem;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 50px;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
  transition: transform .4s ease;
}

.footer-menu li:hover {
  opacity: .8;
}

.footer-menu__en {
  display: block;
  margin-bottom: 3px;
  color: #40533E;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-menu__jp {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  height: 40px;
  padding: 0 50px;
  border-radius: 999px;
  text-wrap: nowrap;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background .3s, color .3s, border-color .3s;
}

.footer-btn--tel {
  border: 2px solid #40533E;
  background: #40533E;
  color: #fff;
}

.footer-btn--tel:hover {
  background: #fff;
  color: #5b7d47;
}

.footer-btn--mail {
  border: 2px solid #6b5b2d;
  background: #6b5b2d;
  color: #fff;
}

.footer-btn--mail:hover {
  background: #fff;
  color: #6b5b2d;
}

.footer-contact__time {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}


/* ------------------------------
  Footer Group
------------------------------ */
.footer-group {
  position: relative;
  padding: 50px 30px;
}

.footer-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(76, 93, 66, .25);
}

.footer-group__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-group__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(76, 93, 66, .25);
  border-radius: 8px;
  background: #fff;
}

.footer-group__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.footer-group__item:hover img {
  transform: scale(1.08);
}


/* ------------------------------
  Footer Bottom
------------------------------ */
.footer-bottom {
  width: min(100% - 40px, 960px);
  margin: 20px auto 0;
  padding: 0 0 50px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #40533E;
  font-size: 1.2rem;
  font-weight: 600;
  transition: .3s;
}

.footer-bottom__links li {
  display: flex;
  align-items: center;
}

.footer-bottom__links li + li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
}

.footer-bottom__links li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background: #40533E;
  transform: translateY(-50%);
}

.footer-bottom__links a {
  color: #40533E;
  text-decoration: none;
}

.footer-bottom__links a:hover {
  color: #54714B;
  text-decoration: underline;
}

.footer-bottom__copy {
  margin: 0;
  color: #40533E;
  font-size: 1.2rem;
  font-weight: 600;
}


/* ------------------------------
  Tablet
------------------------------ */
@media screen and (max-width: 1024px) {
  .footer-brand__sns {
    flex-direction: column;
  }

  .footer-menu {
    gap: 15px 30px;
  }
}


/* ------------------------------
  Mobile
------------------------------ */
@media screen and (max-width: 767px) {
  .footer-access {
    padding: 120px 0 100px;
  }

  .footer-access__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-access__map {
    width: 100%;
  }

  .footer-access__map iframe {
    max-height: 180px;
  }

  .footer-main {
    margin: -50px auto 0;
  }

  .footer-main__inner {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-menu {
    gap: 15px 10px;
  }

  .footer-menu__en {
    margin-bottom: 2px;
    font-size: 1.1rem;
  }

  .footer-menu__jp {
    font-size: 1.1rem;
  }

  .footer-contact {
    width: 100%;
    max-width: 255px;
  }

  .footer-group {
    padding: 30px 20px;
  }

  .footer-group::before {
    left: 20px;
    right: 20px;
  }

  .footer-group__inner {
    gap: 10px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.1rem;
  }

  .footer-bottom__links li + li {
    margin-left: 10px;
    padding-left: 10px;
  }

  .footer-bottom__copy {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-group__inner {
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }
}