html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding: 100px;
}
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #5f6247;
}
a {
  display: block;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
main {
  padding: 150px 0 0;
}
header {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.h-inner {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  align-items: center;
}

.h-logo {
  width: calc(473 / 1920 * 100vw);
  max-width: 473px;
}
.h-menu {
  width: calc(623 / 1920 * 100vw);
}
.h-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-menu li {
  border-right: solid 1px #5f6247;
  height: calc(25 / 1920 * 100vw);
  padding-right: calc(20 / 1920 * 100vw);
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
}
.h-menu li a {
  color: #5f6247;
}
.h-contact ul {
  display: flex;
  gap: 20px;
}

.h-tel a {
  background-color: #ffb6b4;
  border-radius: 7px;
  display: flex;
  align-items: center;
  width: calc(257 / 1920 * 100vw);
  max-width: 257px;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
}
.h-tel img {
  width: calc(20 / 1920 * 100vw);
}
.h-tel p {
  font-size: min(calc(32 / 1920 * 100vw), 3.6rem);
  color: #fff;
}
.h-mail {
  background-color: #ff9e5d;
  border-radius: 7px;
  padding: calc(10 / 1920 * 100vw) 0;
  width: calc(248 / 1920 * 100vw);
}
.h-mail a {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  gap: 10px;
}
.h-mail p {
  font-size: min(calc(24 / 1920 * 100vw), 2.4rem);
}

.h-mail img {
  width: calc(34 / 1920 * 100vw);
}

.l-footer {
  max-width: 1590px;
  margin: 0 auto;
  border-top: solid 6px #cae981;
}

.l-footer img {
  width: calc(510 / 1920 * 100vw);
  max-width: 510px;
  margin: 79px auto 60px;
}
.f-address {
  text-align: center;
}
.f-address p {
  font-size: 2rem;
  line-height: 2;
}
.f-btn {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 60px 0;
}
.f-btn div {
  width: calc(355 / 1920 * 100vw);
  text-align: center;
  border-radius: 7px;
  letter-spacing: 0.2rem;
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
}
.f-time {
  background-color: #ffb6b4;
  font-size: 2rem;
}
.f-time p {
  padding: 20px 0;
  color: #fff;
}
.f-tel a {
  background-color: #ff9e5d;
  font-size: 2rem;
  padding: 20px 0;
  color: #fff;
  border-radius: 7px;
}
.f-btn strong {
  font-size: min(calc(32 / 1920 * 100vw), 3.2rem);
  margin-left: calc(30 / 1920 * 100vw);
}

.f-copy {
  background-color: #cae981;
  text-align: center;
  padding: 30px 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  main {
    padding: 70px 0 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .h-inner {
    display: block;
    padding: 20px 15px;
  }
  .h-logo {
    width: 218px;
  }
  .h-menu {
    position: fixed;
    top: 0px;
    right: -360px;
    width: 300px;
    height: 100%;
    transition: right 0.4s ease;
    z-index: 999;
    padding: 160px 25px 0 25px;
    background-color: #cae981;
  }
.h-mail a {
  padding: 8px 0;
}
  .h-menu.active {
    right: 0;
  }
.h-tel a {
  width: calc(191/430*100vw);
  padding: 8px 0;
  justify-content: center;
}
  .h-menu ul {
    display: block;
  }
  .h-menu li {
    border-right: unset;
    height: auto;
    border-top: solid 1px #9fb271;
    padding: 30px 0;
    position: relative;
  }
  .h-menu li a {
    font-size: 1.6rem;
  }
  .h-menu li:last-of-type {
    border-bottom: solid 1px #9fb271;
  }

  .h-menu li::after {
    content: "";
    background: url(../img/arw.png) no-repeat;
    width: 48.5px;
    height: 6.5px;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 37px;
  }
  .menu-btn {
    display: block;
    pointer-events: all;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    background-color: #cae981;
    border: unset;
    border-radius: 7px;
  }
  .menu-btn .bar {
    display: block;
    position: absolute;
    width: 35px;
    height: 5px;
    left: 8px;
    background: #fff;
  }
  .menu-btn .bar:nth-of-type(1) {
    top: 11px;
    transition: 0.3s;
  }
  .menu-btn .bar:nth-of-type(2) {
    top: 19px;
  }
  .menu-btn .bar:nth-of-type(3) {
    top: 27px;
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(2) {
    top: 22px;
    opacity: 0;
  }
  .menu-btn.active .bar:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
    transition: 0.3s;
  }
  .h-contact {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .h-tel,
  .h-mail {
    width: calc(191 / 430 * 100vw);
    max-width: unset;
  }
  .h-tel p {
    font-size: 2rem;
  }
  .h-tel img {
    width: 16px;
  }
  .h-mail p {
    font-size: 1.6rem;
  }
  .h-mail img {
    width: 27px;
  }
  .h-contact ul {
    gap: 10px;
  }
  .l-footer {
    width: 90%;
  }
  .l-footer img {
    width: 270px;
    margin: 40px auto;
  }
  .f-address p {
    font-size: 1.6rem;
  }
  .f-btn {
    display: block;
    margin: 40px 0;
  }
  .f-btn p {
    font-size: 1.6rem;
  }

  .f-btn div {
    width: 270px;
    margin: 0 auto 20px;
  }
  .f-btn strong {
    font-size: 2rem;
  }
  .f-copy {
    font-size: 1.3rem;
    padding: 20px 0;
    margin-bottom: 60px;
  }
}
