@charset "UTF-8";
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
body {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
  font-weight: normal;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
  color: #333;
  text-decoration: none;
}
@media (min-width: 768px) {
  a {
    transition: all 0.5s;
  }
  a:hover {
    text-decoration: underline;
  }
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media (min-width: 768px) {
  .h-opacity {
    transition: opacity 0.5s ease-out;
  }
  .h-opacity:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.is-hide {
  display: none;
}

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

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

.wrap {
  overflow: hidden;
}

.inner {
  width: 100%;
  max-width: 124rem;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 3.2rem;
  }
}

.anchor-wrap {
  position: relative;
}
.anchor-wrap .anchor {
  position: absolute;
  top: -7rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .anchor-wrap .anchor {
    top: -10rem;
  }
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
  padding-top: 7rem;
  width: 100%;
}
@media (max-width: 767px) {
  #wrapper {
    padding-top: 10rem;
  }
}

/* !header
---------------------------------------------------------- */
#header {
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}
#header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  padding: 0 5.6rem;
}
@media (max-width: 767px) {
  #header .header-inner {
    height: 10rem;
    padding: 0;
  }
}
#header .header-logo {
  width: 16.7rem;
  line-height: 1;
  font-size: 1px;
}
@media (max-width: 767px) {
  #header .header-logo {
    width: 18.2rem;
  }
}
#header .g-navi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  #header .g-navi {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: url(../img/common/bg_navi.jpg) center center repeat-y;
    background-size: 100% auto;
    display: block;
    padding: 14.5rem 0;
  }
  #header .g-navi.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
#header .g-navi__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1280px) {
  #header .g-navi__links {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  #header .g-navi__links {
    flex-direction: column;
    gap: 2.3rem;
  }
  #header .g-navi__links li {
    width: 100%;
  }
}
#header .g-navi__links a {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #444;
}
@media (max-width: 767px) {
  #header .g-navi__links a {
    font-size: 3.6rem;
    font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
    line-height: 1.6;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
}
#header .g-navi__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20.6rem;
  height: 4.3rem;
  border-radius: 2.4rem;
  background: #709A46;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  #header .g-navi__button {
    display: none;
  }
}
#header .btn-menu {
  display: none;
}
@media (max-width: 767px) {
  #header .btn-menu {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 9999;
  }
  #header .btn-menu .line {
    width: 3.6rem;
    height: 0.2rem;
    background: #557436;
    border-radius: 0.1rem;
    transition: all 0.3s ease;
  }
  #header .btn-menu.is-active .line {
    background: #fff;
    width: 5rem;
  }
  #header .btn-menu.is-active .line:nth-child(1) {
    transform: translateY(1.4rem) rotate(45deg);
  }
  #header .btn-menu.is-active .line:nth-child(2) {
    opacity: 0;
  }
  #header .btn-menu.is-active .line:nth-child(3) {
    transform: translateY(-1.4rem) rotate(-45deg);
  }
}

/* !footer
---------------------------------------------------------- */
#footer {
  background: #fff;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  #footer {
    padding: 5.4rem 0 1rem;
  }
}
#footer .footer-inner {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #footer .footer-inner {
    max-width: 100%;
    padding: 0;
  }
}
#footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  #footer .footer-top {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
#footer .footer-logo {
  width: 12.7rem;
  line-height: 1;
  font-size: 1px;
}
@media (max-width: 767px) {
  #footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18.2rem;
    height: 18.2rem;
  }
}
#footer .footer-logo img {
  width: 100%;
}
#footer .footer-menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  #footer .footer-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 0;
    width: 100%;
  }
}
#footer .footer-menu a {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #footer .footer-menu a {
    font-size: 2.5rem;
  }
}
#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1.6rem;
}
@media (max-width: 767px) {
  #footer .footer-bottom {
    display: block;
    text-align: center;
    line-height: 1.9rem;
  }
}

/* !contact
---------------------------------------------------------- */
.common-contact {
  background: url(../img/common/bg_contact.jpg) center center no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .common-contact {
    padding: 5.4rem 0;
  }
}
.common-contact__wrap {
  width: 100%;
  max-width: 78.8rem;
  margin: 0 auto;
  background: url(../img/common/bg_contact_inner.jpg) center center no-repeat;
  background-size: 100% 100%;
  padding: 3.555rem 2rem 3.439rem;
}
@media (max-width: 767px) {
  .common-contact__wrap {
    background: none;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .common-contact__top {
    background: url(../img/common/bg_contact_inner_sp.jpg) center center no-repeat;
    background-size: 100% 100%;
    padding: 2.7rem 6.1rem 3.7rem;
  }
}
.common-contact-heading {
  font-size: 2.745rem;
  line-height: 1.6;
  font-weight: bold;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .common-contact-heading {
    font-size: 3.027rem;
    gap: 1.4rem;
  }
}
.common-contact-heading::before, .common-contact-heading::after {
  width: 12rem;
  height: 0.1rem;
  background: #333;
  content: "";
}
@media (max-width: 767px) {
  .common-contact-heading::before, .common-contact-heading::after {
    width: 13.3rem;
  }
}
.common-contact-title {
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 1.1rem;
}
@media (max-width: 767px) {
  .common-contact-title {
    max-width: 100%;
    padding: 0.6rem 0 0;
  }
}
.common-contact-title::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  filter: blur(1rem);
  content: "";
}
.common-contact-title__ttl {
  text-align: center;
  font-size: 2rem;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  line-height: 1.6;
  font-weight: bold;
}
@media (max-width: 767px) {
  .common-contact-title__ttl {
    font-size: 3.81rem;
  }
}
.common-contact-title__ttl small {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .common-contact-title__ttl small {
    font-size: 3.048rem;
  }
}
.common-contact-title__txt {
  text-align: center;
  color: #AC8446;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  margin-top: -1.2rem;
}
@media (max-width: 767px) {
  .common-contact-title__txt {
    font-size: 5rem;
    line-height: 1.3;
    margin-top: 0;
  }
}
.common-contact-title__txt span {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .common-contact-title__txt span {
    font-size: 6.694rem;
  }
}
.common-contact-title__txt small {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .common-contact-title__txt small {
    font-size: 3.347rem;
  }
}
.common-contact__bottom {
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .common-contact__bottom {
    margin-top: 4.8rem;
    position: relative;
    width: 100%;
    padding: 4.2rem 0;
    z-index: 2;
  }
  .common-contact__bottom::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
    filter: blur(1rem);
    content: "";
  }
}
.common-contact-text {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
@media (max-width: 767px) {
  .common-contact-text {
    font-size: 2.4rem;
  }
}
.common-contact-notes {
  margin-top: 1.255rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 767px) {
  .common-contact-notes {
    margin-top: 1.7rem;
    font-size: 2.322rem;
    gap: 0.5rem;
  }
}
.common-contact-notes::before, .common-contact-notes::after {
  width: 1.238rem;
  height: 0.1rem;
  background: #333;
  content: "";
}
@media (max-width: 767px) {
  .common-contact-notes::before, .common-contact-notes::after {
    width: 2.406rem;
  }
}
.common-contact-notes::before {
  transform: rotate(72.47deg);
}
.common-contact-notes::after {
  transform: rotate(-72.47deg);
}
.common-contact-button {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .common-contact-button {
    margin-top: 3.755rem;
  }
}
.common-contact-button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 29rem;
  height: 6rem;
  border-radius: 0.4rem;
  background: #709A46;
  font-size: 2.015rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .common-contact-button a {
    gap: 1.4rem;
    width: 56.5rem;
    height: 11.645rem;
    font-size: 3.916rem;
    border-radius: 0.743rem;
  }
}
.common-contact-button a::before {
  width: 1.6rem;
  height: 2.1rem;
  content: "";
  background: url(../img/common/icon_file.svg) center center no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .common-contact-button a::before {
    width: 2.887rem;
    height: 3.816rem;
  }
}
.common-contact-button a::after {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  color: #709A46;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10.7rem;
  height: 2.677rem;
  background: #fff;
  border: 0.259rem solid #709A46;
  border-radius: 0.382rem;
  box-shadow: 0.259rem 0.259rem 0.518rem rgba(125, 80, 47, 0.4);
  content: "30秒で簡単予約";
}
@media (max-width: 767px) {
  .common-contact-button a::after {
    font-size: 2.23rem;
    width: 20.8rem;
    height: 5.2rem;
    border-width: 0.504rem;
    border-radius: 0.76rem;
    box-shadow: 0.504rem 0.504rem 0.1, 8 rgba(125, 80, 47, 0.4);
  }
}

/* !heading
---------------------------------------------------------- */
.heading-large {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}
.heading-large__eng {
  display: block;
  font-size: 6rem;
  line-height: 1.6;
  font-weight: bold;
  color: rgba(85, 116, 54, 0.4);
  margin-bottom: 1.3rem;
}
@media (max-width: 767px) {
  .heading-large__eng {
    margin-bottom: 0.8rem;
  }
}
.heading-large__jap {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #557436;
}
@media (max-width: 767px) {
  .heading-large__jap {
    font-size: 5rem;
    line-height: 1.2;
  }
}

/* !js image scroll
---------------------------------------------------------- */
.js-image-scroll {
  overflow: hidden;
  display: flex;
}
.js-image-scroll ul {
  display: flex;
}
.js-image-scroll ul:nth-child(odd) {
  animation-name: image-loop-left1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
  animation-name: image-loop-left2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes image-loop-left1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes image-loop-left2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.image-slider {
  width: 100%;
  overflow: hidden;
}
.image-slider li {
  font-size: 1px;
  line-height: 1;
  width: 49.6rem;
  padding-right: 3.2rem;
}
.image-slider li img {
  width: 100%;
}/*# sourceMappingURL=common.css.map */