:root {
  --color-default: #87a6a9;
  --color-inverted: white;
  --color-black: black;
  --color-border: #c9c9c9;
  --bg-default: #f7f8f8;
  --bg-light: #f7f6f0;
  --bg-dark: #f5f0e2;
  --bg-inverted: var(--color-default);
  --color-link: inherit;
  --bg-gradient-light: linear-gradient(to bottom, var(--bg-default), var(--bg-light));
  --bg-gradient-middle: linear-gradient(to bottom, var(--bg-light), var(--bg-dark));
  --bg-gradient-dark: linear-gradient(to bottom, var(--bg-dark), var(--bg-default));
}

/*
====================================================================
 ABOUT
====================================================================
*/
.about-section {
  background: var(--bg-gradient-light);
  padding-top: 180px;
}
.about-section .section-block__container {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.about-section .section-block__content {
  display: block;
  padding-top: 72px;
  width: auto;
  min-width: unset;
}
.about-section .section-block__content h2,
.about-section .section-block__content p {
  padding-left: 0;
  width: 100%;
}
.about-section .section-block__media {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  order: 1;
  -moz-column-gap: 32px;
       column-gap: 32px;
  width: 48.3%;
  max-width: 720px;
}
.about-section .section-block__image-box--main {
  width: 64.6%;
  max-width: 465px;
  aspect-ratio: 1/1.225;
  margin-bottom: 190px;
}
.about-section .section-block__image-box--sub {
  width: 30.8%;
  max-width: 222px;
  aspect-ratio: 1/1.5;
}

/*
====================================================================
 LOCATION
====================================================================
*/
.location-section {
  background: var(--bg-gradient-middle);
}
.location-section .section-block__container {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.location-section .section-block__content {
  display: block;
  width: auto;
  min-width: unset;
}
.location-section .section-block__media {
  flex-shrink: 0;
  width: 46.7%;
  max-width: 695px;
  order: 1;
  margin-right: -56px;
}

/*
====================================================================
 RATE
====================================================================
*/
.rate-section {
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-default) 40%);
}
.rate-section .section-block__container {
  display: block;
}
.rate-section .section-block__content {
  width: 100%;
}
.rate-section .section-block__heading {
  width: 100%;
}
.rate-section .section-block__body {
  flex-shrink: 0;
  width: 59.8%;
}
.rate-section .section-block__cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 32px;
       column-gap: 32px;
  width: 77.7%;
  margin-top: 80px;
}
.rate-section .section-block__cta a {
  border-bottom: 1px solid var(--color-default);
  flex-wrap: wrap;
}
.rate-section .section-block__cta a img {
  aspect-ratio: 2.45/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.rate-section .section-block__cta a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-bottom: 10px;
}
.rate-section .section-block__cta a span::after {
  content: "";
  display: block;
  position: static;
  width: 10px;
  height: 10px;
  background: url(../../images/common/icon_arrow.svg) right center/contain no-repeat;
}
.rate-section .button--legal {
  margin-top: 48px;
}
.rate-section .note {
  border: 1px solid var(--color-default);
  padding: 12px 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 56px;
}
.rate-section table {
  border-bottom: 1px solid var(--color-default);
}
.rate-section thead th {
  border-top: 1px solid var(--color-default);
  padding-top: 24px;
}
.rate-section thead th:first-child {
  width: 68%;
}
.rate-section thead th:nth-child(2) {
  width: 24%;
}
.rate-section tbody tr:last-child td {
  padding-bottom: 24px;
  position: relative;
}
.rate-section tbody tr:last-child td span {
  padding-left: 1em;
}
.rate-section th {
  width: 30%;
  padding-bottom: 1em;
}
.rate-section td {
  padding-bottom: 1em;
}
.rate-section__amenities {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 14%;
       column-gap: 14%;
}
.rate-section__media {
  width: 25.4%;
  max-width: 378px;
}
.rate-section__list {
  width: 25.5%;
}
.rate-section__list h3 {
  border-top: 1px solid var(--color-default);
  padding-top: 24px;
  margin-bottom: 24px;
}
.rate-section__list ul:first-of-type {
  margin-bottom: 24px;
}

/*
====================================================================
 ACTIVITIES
====================================================================
*/
.activities-section .section-block__content {
  width: 100%;
}
.activities-section .section-block__body {
  width: 61.8%;
  min-width: 920px;
}

.feature__card-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10.4%;
       column-gap: 10.4%;
  counter-reset: number;
}
.feature__card {
  counter-increment: number;
}
.feature__card h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 21px;
  letter-spacing: 0;
  border-bottom: 1px solid var(--color-default);
}
.feature__card h3::before {
  content: "0" counter(number);
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
}

/*
====================================================================
 ACCESS
====================================================================
*/
.access-section .button--google-map {
  margin-top: 20px;
  margin-right: 0;
  margin-left: auto;
}
.access-section .section-block__container {
  display: block;
}
.access-section .section-block__content {
  margin: 56px 0 0 auto;
  flex-wrap: wrap;
}
.access-section .section-block__heading {
  padding-top: 0;
}
.access-section .section-block__heading h2 {
  font-size: 12px;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / ABOUT
  ====================================================================
  */
  .about-section {
    padding-top: 120px;
  }

  .about-section .section-block__content {
    display: block;
    padding-top: 0;
  }
  .about-section .section-block__media {
    -moz-column-gap: 18px;
         column-gap: 18px;
    width: 100%;
    margin-bottom: 56px;
  }
  .about-section .section-block__image-box--main {
    margin-bottom: 117px;
  }
  /*
  ====================================================================
   SP / LOCATION
  ====================================================================
  */
  .location-section .section-block__media {
    width: calc(100% + 24px);
    max-width: unset;
    margin-right: -24px;
    padding-left: 40px;
    margin-bottom: 24px;
  }
  /*
  ====================================================================
   SP / RATE
  ====================================================================
  */
  .rate-section .section-block__body {
    width: 100%;
  }
  .rate-section .section-block__cta {
    width: 100%;
    padding-left: 0;
    display: block;
    margin-top: 24px;
  }
  .rate-section .section-block__cta a {
    display: grid;
    grid-template-columns: 41.4% 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 12px 0;
  }
  .rate-section .section-block__cta a span {
    margin-top: 0;
    padding-bottom: 0;
  }
  .rate-section .button--legal {
    margin-top: 24px;
    display: block !important;
    padding: 8px 0 !important;
  }
  .rate-section .note {
    border: none;
    padding: 0;
    letter-spacing: 0;
  }
  .rate-section thead th:first-child {
    width: 54%;
  }
  .rate-section thead th:nth-child(2) {
    width: 24%;
  }
  .rate-section tbody:nth-of-type(2) tr:last-child td {
    position: relative;
    padding-bottom: 60px;
  }
  .rate-section tbody:nth-of-type(2) tr:last-child td span {
    position: absolute;
    width: auto;
    white-space: nowrap;
    bottom: 24px;
    left: 0;
    padding-left: 0;
  }
  /*
  ====================================================================
   SP / ACTIVITIES
  ====================================================================
  */
  .activities-section .section-block__body {
    width: 100%;
    min-width: unset;
  }
  .feature__card-group {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
  }
  .feature__card h3 {
    margin-top: 24px;
    font-size: 16px;
  }
  .feature__card h3::before {
    font-size: 12px;
  }
  /*
  ====================================================================
   ACCESS
  ====================================================================
  */
  .access-section .button--google-map {
    margin-top: 20px;
    margin-right: 0;
    margin-left: auto;
  }
  .access-section .section-block__container {
    display: block;
  }
  .access-section .section-block__content {
    margin: 56px 0 0 auto;
    flex-wrap: wrap;
  }
  .access-section .section-block__heading {
    padding-top: 0;
  }
  .access-section .section-block__heading h2 {
    font-size: 12px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=about.css.map */