*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #333333;
  --color-white: #FFFFFF;
  --color-bg: #EFECE0;
  --color-main: #27563E;
  --color-gold: #B79F54;
  --lg-btn: linear-gradient(90deg, var(--main, #27563E) 0%, var(--sub, #92B482) 100%);
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #F5F4EE;
  line-height: 1.2;
}
body.of-hidden {
  overflow: hidden;
}
body h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.35s ease;
}

.container {
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 1199px) {
  .container {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: 20px;
  }
}

.bg {
  background: #3E3A39;
}

.w_100 {
  width: 100% !important;
}

.img-txt {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
@media (max-width: 767px) {
  .img-txt {
    font-size: 10px;
    line-height: 15px;
    left: 10px;
    bottom: 5px;
  }
}

.section {
  padding: 128px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }
}

.garden-line {
  padding-block: 80px 64px;
}
@media (max-width: 767px) {
  .garden-line {
    padding-block: 64px 32px;
  }
}

.garden-line-bg {
  width: 1px;
  margin-inline: auto;
  height: 128px;
  background-color: #AB895B;
}
@media (max-width: 767px) {
  .garden-line-bg {
    height: 64px;
  }
}

@keyframes crystalClear {
  0% {
    filter: blur(20px);
    transform: translateY(10px);
  }
  100% {
    filter: blur(0);
    transform: translateY(0);
  }
}
.animation {
  opacity: 0;
  transition: all 0.6s ease;
}
.animation.animate {
  opacity: 1;
}

.td-8 {
  transition-delay: 0.8s;
}

.a-blur.animate {
  animation: crystalClear 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes mvScroll {
  100% {
    -o-object-position: center right;
       object-position: center right;
  }
}
.animation-paused {
  animation-play-state: paused;
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

.header {
  width: 100%;
  z-index: 10;
  position: absolute;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
}
@media (max-width: 767px) {
  .header__wrapper {
    padding: 8px 8px 8px 16px;
  }
}
.header__logo {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 80%;
  }
}
.header.is-scrolled {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  background: #3E3A39;
  box-shadow: 0 8px 8px 0 rgba(62, 58, 57, 0.08);
  transition: all 0.3s ease;
}
.header.is-scrolled .header__logo {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.header.is-scrolled .btn-primary {
  background: #AB895B;
  color: #fff;
  border: none;
}
.header.is-scrolled .btn-primary:hover {
  background-color: #fff;
  color: #AB895B;
}

.footer {
  background: #3E3A39;
  color: #fff;
  font-size: 14px;
  padding-block: 128px 48px;
  padding-inline: 80px;
}
@media (max-width: 991px) {
  .footer {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-inline: 40px;
    padding-block: 64px 24px;
  }
}
.footer a {
  transition: all 0.25s ease;
}
.footer a:hover {
  opacity: 0.7;
  color: #AB895B;
}
.footer__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.footer__logo-wrap {
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .footer__logo-wrap {
    margin-bottom: 64px;
  }
  .footer__logo-wrap img {
    aspect-ratio: 301/19;
  }
}
.footer__logo {
  margin-bottom: 24px;
  max-width: 385px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 301px;
    margin-bottom: 16px;
  }
}
.footer__num {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  color: #FFF;
}
.footer__num-txt {
  font-size: 12px;
  font-weight: 400;
  line-height: 10px;
}
@media (max-width: 767px) {
  .footer__num-txt {
    font-size: 10px;
    line-height: 7px;
  }
}
.footer__num-tel {
  font-size: 20px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .footer__num-tel {
    font-size: 15px;
    letter-spacing: 0.6px;
    line-height: 15px;
  }
}
.footer__num-tel a {
  line-height: 0;
  color: #fff;
}
.footer__sites {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .footer__sites {
    margin-bottom: 32px;
  }
}
.footer__sites-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.28px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .footer__sites-heading {
    font-size: 13px;
    letter-spacing: 1.04px;
    line-height: 26px;
    margin-bottom: 8px;
  }
}
.footer__sites-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
}
.footer__sites-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .footer__sites-list {
    gap: 4px;
  }
}
.footer__sites-icon {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .footer__sites-icon {
    letter-spacing: 0.48px;
    font-size: 12px;
    line-height: 17px;
  }
}
.footer__sites-list li a {
  color: #fff;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.12px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .footer__sites-list li a {
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: 17px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer__nav {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.footer__nav li {
  line-height: 0;
}
.footer__nav li:first-of-type {
  padding-left: 0px;
}
.footer__nav li a {
  color: #F5F4EE;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.56px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer__nav li a {
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 15px;
  }
}
.footer__copyright {
  color: #878581;
  font-size: 12px;
  font-family: "angie-sans", sans-serif;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.4px;
  }
}

.btn-primary {
  width: 174px;
  height: 53px;
  background: #3E3A39;
  color: #FFF;
  font-family: "angie-sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #fff;
  color: #AB895B;
}
@media (max-width: 767px) {
  .btn-primary {
    width: 91px;
    height: 41px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 0.52px;
  }
}

.mv {
  height: 100svh;
  position: relative;
  z-index: 2;
  /* arrows + pause */
  /* pagination dots */
}
.mv__fv-slide {
  height: 100%;
}
.mv__fv-slide .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .mv__fv-slide .swiper-slide img {
    -o-object-position: left center;
       object-position: left center;
  }
}
.mv__fv-slide .swiper-wrapper {
  transition-timing-function: linear;
}
@media (max-width: 767px) {
  .mv__fv-slide .swiper-slide::after {
    content: "";
    width: 100%;
    height: 72.01vw;
    z-index: 2;
    opacity: 0.6;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .mv__fv-slide .swiper-slide.swiper-slide-prev img {
    animation: mvScroll 8s linear forwards 0.5s;
  }
  .mv__fv-slide .swiper-slide.swiper-slide-active img {
    animation: mvScroll 8s linear forwards 0.5s;
  }
}
.mv__phrase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .mv__phrase {
    display: flex;
    justify-content: center;
  }
}
.mv__content {
  position: absolute;
  top: 0;
  z-index: 5;
  left: 0;
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.27vw;
}
@media (max-width: 767px) {
  .mv__content {
    padding-bottom: 61px;
    padding-inline: 20px 19px;
  }
}
.mv__logo {
  margin-top: 17.34vw;
  width: 47px;
}
@media (max-width: 767px) {
  .mv__logo {
    margin-top: 19.34vw;
  }
}
.mv-img {
  position: relative;
}
.mv-img .img-txt {
  left: 26px;
  bottom: 15px;
  z-index: 5;
}
@media (max-width: 767px) {
  .mv-img .img-txt {
    left: 10px;
    bottom: 7px;
  }
}
.mv .swiper-controls {
  position: absolute;
  bottom: 19px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .mv .swiper-controls {
    gap: 8px;
    bottom: 10px;
    right: 14px;
  }
}
.mv .swiper-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .mv .swiper-inner {
    gap: 4px;
  }
}
.mv .swiper-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.85;
}
.mv .swiper-btn .pause {
  width: 18px;
  height: 18px;
  font-size: 14px;
}
.mv .swiper-btn.prev::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6.27542 8.00586L11.1254 2.77268C11.1654 2.7305 11.1969 2.68044 11.2183 2.62537C11.2397 2.5703 11.2505 2.51133 11.25 2.45186C11.2495 2.3924 11.2378 2.33362 11.2156 2.27894C11.1933 2.22425 11.161 2.17474 11.1204 2.13327C11.0798 2.0918 11.0318 2.05919 10.9791 2.03733C10.9264 2.01548 10.8701 2.00481 10.8135 2.00594C10.7569 2.00707 10.701 2.01998 10.6492 2.04393C10.5973 2.06787 10.5505 2.10238 10.5115 2.14544L5.37133 7.69224C5.29353 7.7762 5.25 7.88872 5.25 8.00586C5.25 8.123 5.29353 8.23552 5.37133 8.31948L10.5115 13.8663C10.5505 13.9093 10.5973 13.9438 10.6492 13.9678C10.701 13.9917 10.7569 14.0046 10.8135 14.0058C10.8701 14.0069 10.9264 13.9962 10.9791 13.9744C11.0318 13.9525 11.0798 13.9199 11.1204 13.8785C11.161 13.837 11.1933 13.7875 11.2156 13.7328C11.2378 13.6781 11.2495 13.6193 11.25 13.5599C11.2505 13.5004 11.2397 13.4414 11.2183 13.3864C11.1969 13.3313 11.1654 13.2812 11.1254 13.239L6.27542 8.00586Z' fill='%23F5F4EE'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
}
.mv .swiper-btn.next::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M9.72458 8.00586L4.87457 2.77268C4.83464 2.7305 4.80307 2.68044 4.78169 2.62537C4.76031 2.5703 4.74954 2.51133 4.75001 2.45186C4.75048 2.3924 4.76218 2.33362 4.78443 2.27894C4.80668 2.22425 4.83904 2.17474 4.87963 2.13327C4.92022 2.0918 4.96824 2.05919 5.02092 2.03733C5.07359 2.01548 5.12987 2.00481 5.1865 2.00594C5.24313 2.00707 5.29898 2.01998 5.35082 2.04393C5.40266 2.06787 5.44947 2.10238 5.48853 2.14544L10.6287 7.69224C10.7065 7.7762 10.75 7.88872 10.75 8.00586C10.75 8.123 10.7065 8.23552 10.6287 8.31948L5.48853 13.8663C5.44947 13.9093 5.40266 13.9438 5.35082 13.9678C5.29898 13.9917 5.24313 14.0046 5.1865 14.0058C5.12987 14.0069 5.07359 13.9962 5.02092 13.9744C4.96824 13.9525 4.92022 13.9199 4.87963 13.8785C4.83904 13.837 4.80668 13.7875 4.78443 13.7328C4.76218 13.6781 4.75048 13.6193 4.75001 13.5599C4.74954 13.5004 4.76031 13.4414 4.78169 13.3864C4.80307 13.3313 4.83464 13.2812 4.87457 13.239L9.72458 8.00586Z' fill='%23F5F4EE'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
}
.mv .swiper-btn:hover {
  opacity: 1;
}
.mv .swiper-pagination {
  display: inline-flex;
  gap: 8px;
  position: static !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
@media (max-width: 767px) {
  .mv .swiper-pagination {
    gap: 4px;
  }
}
.mv .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: block;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  margin: 0 !important;
}
.mv .swiper-pagination-bullet-active {
  background: #fff;
}

.garden__img {
  position: relative;
  width: 100%;
}
.garden__t {
  font-family: "angie-sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .garden__t {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .garden__t {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: normal;
  }
}
.garden__p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.64px;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .garden__p {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .garden__p {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.52px;
  }
}
.garden__row {
  display: flex;
  max-width: calc(50% + 560px);
  margin-left: auto;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1199px) {
  .garden__row {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .garden__row {
    max-width: 100%;
    flex-direction: column;
    gap: 40px;
  }
}
.garden__row.rev {
  flex-direction: row-reverse;
  margin-left: 0;
}
@media (max-width: 1199px) {
  .garden__row.rev .garden__content {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .garden__row.rev {
    flex-direction: column;
  }
  .garden__row.rev .garden__content {
    padding-inline: 40px;
  }
}
.garden__content {
  max-width: 360px;
  width: 100%;
}
@media (max-width: 1199px) {
  .garden__content {
    padding-inline: 40px 0;
  }
}
@media (max-width: 767px) {
  .garden__content {
    max-width: 100%;
    padding-inline: 40px;
  }
}
.garden__service {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .garden__service {
    margin-top: 12px;
  }
}
.garden__service li {
  border: 1px solid #F5F4EE;
  width: calc(50% - 5.3333333333px);
  text-align: center;
  padding: 3px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.64px;
}
@media (max-width: 991px) {
  .garden__service li {
    font-size: 14px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .garden__service li {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0.52px;
  }
}
.garden-bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--color-mattegray, #3E3A39);
}
@media (max-width: 767px) {
  .garden-bg {
    padding: 80px 0 0;
  }
}
.garden__iframe {
  width: 100%;
  height: 522px;
}
@media (max-width: 767px) {
  .garden__iframe {
    height: 240px;
  }
}
.garden__iframe .garden__iframe-api {
  width: 100%;
  height: 100%;
}

.map-header {
  font-family: "angie-sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .map-header {
    letter-spacing: normal;
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
  }
}
.map_img {
  margin-top: 48px;
  position: relative;
}
@media (max-width: 767px) {
  .map_img {
    margin-top: 24px;
  }
}
.map-open {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #AB895B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.map-open:hover {
  background-color: #fff;
  transition: all 0.3s ease;
}
.map-open:hover path {
  transition: all 0.3s ease;
  fill: #AB895B;
}
@media (max-width: 767px) {
  .map-open {
    width: 32px;
    height: 32px;
  }
}

.banner {
  position: relative;
}

.access {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--color-mattegray, #3E3A39);
}
@media (max-width: 767px) {
  .access {
    padding: 80px 32px 0;
  }
  .access .garden__row.rev .garden__content {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .access .container {
    padding-inline: 0;
  }
}
.access-btm-txt {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.48px;
  padding-block: 64px;
}
@media (max-width: 767px) {
  .access-btm-txt {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.4px;
    padding-block: 32px;
  }
}

.map-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: rgba(62, 58, 57, 0.8);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.map-modal.opened {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.map-modal-wrap {
  display: flex;
  align-items: center;
  height: 100dvh;
}
@media (max-width: 767px) {
  .map-modal-wrap {
    padding-inline: 8px;
  }
}
.map-modal-close {
  right: 0;
  font-family: "angie-sans", sans-serif;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.72px;
  display: flex;
  align-items: center;
  gap: 8px;
  top: -34px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .map-modal-close {
    left: 50%;
    right: unset;
    top: unset;
    bottom: -34px;
    font-size: 14px;
    line-height: 16.5px;
    letter-spacing: 0.56px;
  }
}
.map-modal-close::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M0.499997 12.5L12.5 0.499987' stroke='white' stroke-linecap='round'/%3E%3Cpath d='M12.5 12.5L0.500016 0.499987' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
}
.map-modal-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
  max-height: 100%;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .map-modal-container {
    align-items: center;
    flex-direction: column-reverse;
    max-width: 100%;
  }
}
.map-modal-img {
  position: relative;
}
@media (max-width: 767px) {
  .map-modal-img {
    overflow-x: scroll;
    max-width: 100%;
    max-height: 100%;
    flex-grow: 1;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .map-modal-content {
    width: 914px;
  }
  .map-modal-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-height: 550px) {
  .map-modal-content {
    width: 650px;
  }
}
.map-modal-scroll {
  background-color: #AB895B;
  opacity: 0.9;
  width: 171px;
  height: 171px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}
.map-modal-scroll p {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 26.25px;
  letter-spacing: 0.6px;
}
.map-modal-scroll.show {
  transition: visibility 0.3s ease;
  visibility: visible;
}
.map-modal-scroll.show svg {
  animation: leftToRight 1.2s 2;
}
.map-modal-hint {
  width: 60px;
}

@keyframes leftToRight {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(-50px);
    opacity: 0;
  }
}/*# sourceMappingURL=app.css.map */