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

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

.wrapper {
  margin-top: 8rem;
}
@media (max-width: 834px) {
  .wrapper {
    margin-top: 0;
  }
}

.inner {
  padding: 0 2rem;
}
@media (max-width: 834px) {
  .inner {
    padding: 0 4.8rem;
  }
}

.block {
  max-width: 144rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 834px) {
  .block {
    max-width: 100%;
    width: 100%;
  }
}

.heading {
  text-align: center;
}
.heading h2 {
  font-size: clamp(5rem, 7.8125vw, 7rem);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Montserrat", serif;
}
@media (max-width: 834px) {
  .heading h2 {
    font-size: 7rem;
  }
}
.heading span {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 700;
  display: block;
}
@media (max-width: 834px) {
  .heading span {
    font-size: 2.6rem;
  }
}
.heading .icon {
  width: 11.9rem;
  display: block;
  padding: 1rem 0;
  margin: 0 auto;
}

.btn-link {
  text-decoration: none;
  background: #fff;
  border-radius: 7rem;
  width: 24.1rem;
  height: 5.6rem;
  color: #082618;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

.header {
  height: 12rem;
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 100;
}
@media (max-width: 834px) {
  .header {
    height: 16.2rem;
  }
}
.header .inner {
  padding: 0 4rem;
  height: 100%;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-logo {
  width: 20.8rem;
}
@media (max-width: 834px) {
  .header-logo {
    width: 49%;
  }
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-list {
  display: flex;
  gap: 5.6rem;
  margin-right: 5.6rem;
}
.header-link {
  text-decoration: none;
  font-size: clamp(1.8rem, 1.5vw, 2rem);
  font-weight: 700;
  font-family: "Montserrat", serif;
}
.header .btn-link {
  border: 0.2rem solid #00532e;
  color: #00532d;
  position: relative;
}
.header .btn-link .arrow {
  width: 2.4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  display: flex;
  align-items: center;
}
.header .hamburger {
  display: none;
  width: 3rem;
  height: 2.4rem;
  position: relative;
  cursor: pointer;
  z-index: 101;
}
@media (max-width: 834px) {
  .header .hamburger {
    width: 4rem;
    height: 2.8rem;
  }
}
.header .hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background: #00532d;
  transition: all 0.3s;
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger span:nth-child(3) {
  bottom: 0;
}
.header .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.footer {
  background: #fff;
  padding: 13.6rem 0;
}
@media (max-width: 834px) {
  .footer {
    padding: 16rem 0 12.8rem;
  }
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1150px) {
  .footer-wrap {
    flex-direction: column;
    gap: 10.4rem;
  }
}
.footer-img {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1150px) {
  .footer-img {
    width: 61%;
  }
}
.footer-logo {
  width: 36.8rem;
}
@media (max-width: 834px) {
  .footer-logo {
    width: 100%;
  }
}
.footer-content {
  width: 66%;
  background: #082618;
  padding: 16.4rem 15rem;
}
@media (max-width: 1150px) {
  .footer-content {
    width: 88%;
    margin-left: auto;
  }
}
@media (max-width: 834px) {
  .footer-content {
    padding: 11.2rem 0;
  }
}
.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5.6rem;
}
@media (max-width: 834px) {
  .footer-menu__list {
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
  }
}
.footer-menu__link {
  text-decoration: none;
  font-size: clamp(1.8rem, 1.5vw, 2rem);
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", serif;
}
@media (max-width: 834px) {
  .footer-menu__link {
    font-size: 4rem;
  }
}
.footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  margin-top: 6.4rem;
}
@media (max-width: 1150px) {
  .footer-flex {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 834px) {
  .footer-flex {
    margin: 8rem auto 0;
    width: 70%;
  }
}
.footer-flex .btn {
  position: relative;
}
@media (max-width: 834px) {
  .footer-flex .btn {
    width: 100%;
  }
}
@media (max-width: 834px) {
  .footer-flex .btn-link {
    font-size: 3rem;
    width: 100%;
    height: 11.1rem;
  }
}
.footer-flex .btn .arrow {
  width: 2.4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 834px) {
  .footer-flex .btn .arrow {
    width: 4.7rem;
  }
}
.footer-tel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media (max-width: 834px) {
  .footer-tel {
    display: none;
  }
}
.footer-tel span {
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
.footer-tel-btn {
  display: none;
}
@media (max-width: 834px) {
  .footer-tel-btn {
    border: 0.4rem solid #fff;
    border-radius: 7rem;
    height: 11.1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer-tel__link {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 1.5vw, 2.5rem);
  font-family: "Montserrat", serif;
  position: relative;
}
@media (max-width: 834px) {
  .footer-tel__link {
    font-size: 3rem;
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    text-align: center;
  }
}
.footer-tel__link .arrow {
  width: 2.4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 834px) {
  .footer-tel__link .arrow {
    width: 4.7rem;
  }
}

.sp-nav {
  display: none;
  position: fixed;
  top: 16.2rem;
  right: 0;
  width: 90%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  padding: 11.2rem 9.6rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  background: #082618;
  border-top-left-radius: 1.6rem;
}
.sp-nav.active {
  opacity: 1;
  visibility: visible;
}
.sp-nav-list {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}
.sp-nav-link {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", serif;
}
.sp-nav .line-btn {
  margin-bottom: 4rem;
}
.sp-nav .line-btn__link {
  text-decoration: none;
  background: #fff;
  border-radius: 7rem;
  font-size: 3rem;
  width: 100%;
  height: 11.1rem;
  color: #082618;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.sp-nav .line-btn__link .arrow {
  width: 4.7rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  display: flex;
  align-items: center;
}
.sp-nav .tel-btn__link {
  text-decoration: none;
  border-radius: 7rem;
  font-size: 3rem;
  width: 100%;
  height: 11.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  border: 0.4rem solid #fff;
}
.sp-nav .tel-btn__link .arrow {
  width: 4.7rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1150px) {
  .header-content {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .sp-nav {
    display: block;
  }
}