@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Tenor+Sans&display=swap");
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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;
}

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

@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .desktop-only {
    display: none;
  }
}
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Konqueror HTML */ /* Safari */
  -moz-user-select: none; /* Internet Explorer/Edge */ /* Old versions of Firefox */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Opera and Firefox */
}

.no-transition {
  transition: none !important;
}

.stretched-link::after {
  background-color: rgba(0, 0, 0, 0);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

html {
  font-size: 10px;
}

html, body {
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  word-wrap: break-word;
  background: #FFF;
  color: #292929;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-break: strict;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-all;
}
body.en {
  letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
  body {
    font-size: min(100vw * (28 / 576), 18.6666666667px);
    letter-spacing: 0.1em;
  }
}

a {
  color: #0074cc;
  text-decoration: none;
  transition: all 0.2s ease;
}

a, button {
  cursor: pointer;
}

:focus {
  outline: none;
}

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

/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  display: inline-block;
  height: 100vh;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  height: 100%;
  vertical-align: top;
  white-space: nowrap;
}

.c-scrollbar {
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  width: 11px;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  bottom: 0;
  height: 10px;
  top: auto;
  transform: scaleY(1);
  width: 100%;
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  background-color: black;
  border-radius: 10px;
  cursor: grab;
  margin: 2px;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  bottom: 0;
  right: auto;
}

/**
 * 画面内にスクロールしたタイミングでアニメーション
 *
 * 対象要素もしくは親要素に[data-track]を追加すると
 * 画面内にスクロールしたタイミングで`.scrollin-active`が追加される
 *
 * 全デバイスに適用する場合は`.scrollin-up`
 * PCのみ適用する場合は`.scrollin-up--desktop`
 * SPのみ適用する場合は`.scrollin-up--mobile`
 */
.scrollin-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrollin-up.scrollin-active, .scrollin-active .scrollin-up {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
  .scrollin-up--desktop {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-up--desktop.scrollin-active, .scrollin-active .scrollin-up--desktop {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 991.98px) {
  .scrollin-up--mobile {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-up--mobile.scrollin-active, .scrollin-active .scrollin-up--mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.scrollin-left {
  opacity: 0;
  transform: translate3d(25vw, 0, 0);
  transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrollin-left.scrollin-active, .scrollin-active .scrollin-left {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
  .scrollin-left--desktop {
    opacity: 0;
    transform: translate3d(25vw, 0, 0);
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-left--desktop.scrollin-active, .scrollin-active .scrollin-left--desktop {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 991.98px) {
  .scrollin-left--mobile {
    opacity: 0;
    transform: translate3d(25vw, 0, 0);
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-left--mobile.scrollin-active, .scrollin-active .scrollin-left--mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.scrollin-right {
  opacity: 0;
  transform: translate3d(-25vw, 0, 0);
  transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrollin-right.scrollin-active, .scrollin-active .scrollin-right {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
  .scrollin-right--desktop {
    opacity: 0;
    transform: translate3d(-25vw, 0, 0);
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-right--desktop.scrollin-active, .scrollin-active .scrollin-right--desktop {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 991.98px) {
  .scrollin-right--mobile {
    opacity: 0;
    transform: translate3d(-25vw, 0, 0);
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-right--mobile.scrollin-active, .scrollin-active .scrollin-right--mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.scrollin-scaleimg {
  display: inline-block;
  overflow: hidden;
}
.scrollin-scaleimg img {
  transform: scale(1.3);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrollin-scaleimg.scrollin-active img, .scrollin-active .scrollin-scaleimg img {
  transform: scale(1);
}

@media (min-width: 992px) {
  .scrollin-scaleimg--desktop {
    display: inline-block;
    overflow: hidden;
  }
  .scrollin-scaleimg--desktop img {
    transform: scale(1.3);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-scaleimg--desktop.scrollin-active img, .scrollin-active .scrollin-scaleimg--desktop img {
    transform: scale(1);
  }
}
@media (max-width: 991.98px) {
  .scrollin-scaleimg--mobile {
    display: inline-block;
    overflow: hidden;
  }
  .scrollin-scaleimg--mobile img {
    transform: scale(1.3);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-scaleimg--mobile.scrollin-active img, .scrollin-active .scrollin-scaleimg--mobile img {
    transform: scale(1);
  }
}
.scrollin-blur {
  filter: blur(20px);
  opacity: 0;
  transition: filter 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrollin-blur.scrollin-active, .scrollin-active .scrollin-blur {
  filter: blur(0);
  opacity: 1;
}

@media (min-width: 992px) {
  .scrollin-blur--desktop {
    filter: blur(20px);
    opacity: 0;
    transition: filter 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-blur--desktop.scrollin-active, .scrollin-active .scrollin-blur--desktop {
    filter: blur(0);
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .scrollin-blur--mobile {
    filter: blur(20px);
    opacity: 0;
    transition: filter 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scrollin-blur--mobile.scrollin-active, .scrollin-active .scrollin-blur--mobile {
    filter: blur(0);
    opacity: 1;
  }
}
[data-accordion] [data-accordion-toggle] {
  cursor: pointer;
  position: relative;
}
[data-accordion] [data-accordion-toggle]:after {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.37114e-08' y1='5.5' x2='11' y2='5.5' stroke='%23136FAF'/%3E%3Cline x1='5.5' y1='5' x2='5.5' y2='6' stroke='%23136FAF'/%3E%3Cline x1='5.5' y1='6.55671e-08' x2='5.5' y2='11' stroke='%23136FAF'/%3E%3Cline x1='6' y1='5.5' x2='5' y2='5.5' stroke='%23136FAF'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  content: "";
  display: block;
  height: 22px;
  position: absolute;
  right: 0;
  top: calc(50% - 11px);
  width: 22px;
}
@media (max-width: 991.98px) {
  [data-accordion] [data-accordion-toggle]:after {
    height: 16px;
    top: calc(50% - 8px);
    width: 16px;
  }
}
[data-accordion] [data-accordion-content] {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s linear;
}
[data-accordion][data-accordion-expanded] > [data-accordion-toggle]:after {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='1' viewBox='0 0 11 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.37114e-08' y1='0.5' x2='11' y2='0.500001' stroke='%23136FAF'/%3E%3C/svg%3E%0A");
}
[data-accordion][data-accordion-expanded] > [data-accordion-content] {
  opacity: 1;
}

.document-wrapper {
  border-bottom: 8px solid #136FAF;
  border-top: 8px solid #136FAF;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.7s linear;
}
.fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  filter: blur(20px);
  left: 0;
  opacity: 0;
  padding-bottom: 160px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 48px;
  transition: filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.logo img {
  max-width: 230px;
}
@media (max-width: 991.98px) {
  .logo {
    padding-bottom: 90px;
    padding-top: 32px;
    position: sticky;
    top: 0;
    transform: none !important;
  }
  .logo img {
    height: min(100vw * (130 / 576), 86.6666666667px);
    height: 85px;
    width: auto;
  }
}

.is-loaded .logo {
  filter: blur(0);
  opacity: 1;
}

.language {
  position: absolute;
  right: 50px;
  top: 30px;
  z-index: 2;
}
.language a {
  color: #FFF;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .language {
    right: min(100vw * (40 / 576), 26.6666666667px);
    top: min(100vw * (25 / 576), 16.6666666667px);
  }
}

.hero-section {
  background: url(../img/hero.jpg) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  display: flex;
  height: 880px;
  justify-content: center;
  padding: 48px 5vw;
  width: 100vw !important;
}
@media (max-width: 991.98px) {
  .hero-section {
    background-image: url(../img/hero-sp.jpg);
    height: min(100vw * (769 / 576), 512.6666666667px);
    margin-top: -207px;
    position: relative;
  }
}

.intro-section {
  padding: 120px 5vw 110px;
  position: relative;
  z-index: 3;
}
.intro-section .section-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.intro-section .section-heading .line {
  display: block;
  position: relative;
}
.intro-section .section-heading .line .highlight {
  color: #136FAF;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  padding: 6px 10px 10px;
  position: relative;
}
.intro-section .section-heading .line .fg {
  background: #136FAF;
  bottom: 0;
  display: inline-block;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: width 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
  width: 0%;
}
.intro-section .section-heading .line .fg .highlight {
  color: #FFF;
}
.intro-section .section-heading .line .condensed {
  letter-spacing: 0em;
}
.intro-section .section-heading .line + .line {
  margin-top: 20px;
}
.intro-section .section-heading .line:nth-child(2) .fg {
  transition-delay: 0.2s;
}
.intro-section .section-heading.is-inview .line .fg {
  width: 100%;
}
.intro-section .section-body p {
  font-size: 2rem;
  line-height: 2.8;
  text-align: center;
}
@media (max-width: 991.98px) {
  .intro-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) min(100vw * (50 / 576), 33.3333333333px);
  }
  .intro-section .section-heading {
    margin-bottom: min(100vw * (50 / 576), 33.3333333333px);
  }
  .intro-section .section-heading .line .highlight {
    font-size: min(100vw * (28 / 576), 18.6666666667px);
    padding: min(100vw * (6 / 576), 4px) min(100vw * (10 / 576), 6.6666666667px) min(100vw * (10 / 576), 6.6666666667px);
  }
  .intro-section .section-heading .line + .line {
    margin-top: min(100vw * (20 / 576), 13.3333333333px);
  }
  .intro-section .section-body {
    margin: 0;
  }
  .intro-section .section-body p {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2.3;
  }
}

.parallax-section {
  height: 880px;
  width: 100vw !important;
}
.parallax-section video {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991.98px) {
  .parallax-section {
    height: 100vw;
  }
}

.glamping-section {
  padding: 120px 5vw 110px;
  position: relative;
}
.glamping-section:before {
  background: #136FAF;
  content: "";
  display: block;
  height: 180px;
  left: 50%;
  position: absolute;
  top: -87px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 1px;
}
.glamping-section.is-inview:before {
  transform: scaleY(1);
}
.glamping-section .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.glamping-section .section-description {
  color: #136FAF;
  font-size: 2.4rem;
  margin-top: 40px;
  text-align: center;
}
.glamping-section .section-body {
  margin-top: 26px;
}
.glamping-section .section-body p {
  font-size: 2rem;
  line-height: 2.8;
  text-align: center;
}
@media (max-width: 991.98px) {
  .glamping-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) min(100vw * (50 / 576), 33.3333333333px);
  }
  .glamping-section:before {
    height: min(100vw * (160 / 576), 106.6666666667px);
    top: min(100vw * (-87 / 576), -58px);
  }
  .glamping-section .section-title {
    font-size: min(100vw * (44 / 576), 29.3333333333px);
  }
  .glamping-section .section-description {
    font-size: min(100vw * (26 / 576), 17.3333333333px);
    margin-top: min(100vw * (40 / 576), 26.6666666667px);
  }
  .glamping-section .section-body {
    margin-top: min(100vw * (34 / 576), 22.6666666667px);
  }
  .glamping-section .section-body p {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2.3;
  }
}

body {
  transition: background-color 0.5s linear;
}

body.gray {
  background-color: #E1DEDA;
}

.activity-section {
  padding: 120px 0 120px;
  transition: background-color 1s linear;
}
.activity-section .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.activity-section .section-body {
  margin-top: 85px;
}
.activity-section .section-body p {
  font-size: 2rem;
  line-height: 2.8;
  text-align: center;
}
@media (max-width: 991.98px) {
  .activity-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) 0;
  }
  .activity-section .section-title {
    font-size: min(100vw * (44 / 576), 29.3333333333px);
  }
  .activity-section .section-body {
    margin-top: min(100vw * (85 / 576), 56.6666666667px);
  }
  .activity-section .section-body p {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
  }
}
.activity-section .activity-list .activity {
  align-items: center;
  display: flex;
}
.activity-section .activity-list .activity .activity-image {
  flex: 0 0 50%;
}
.activity-section .activity-list .activity .activity-image img {
  width: 100%;
}
.activity-section .activity-list .activity .activity-body {
  box-sizing: border-box;
  flex: 0 0 50%;
  padding-right: 12vw;
}
@media (min-width: 992.98px) and (max-width: 1199px) {
  .activity-section .activity-list .activity .activity-body {
    padding-right: 6vw;
  }
}
.activity-section .activity-list .activity .activity-body .activity-title {
  color: #136FAF;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  padding: 60px;
  padding-right: 0;
  position: relative;
}
.activity-section .activity-list .activity .activity-body .activity-title:after {
  background: #136FAF;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.activity-section .activity-list .activity .activity-body .activity-title.is-inview:after {
  transform: scaleX(1);
}
.activity-section .activity-list .activity .activity-body .activity-description {
  font-size: 1.6rem;
  line-height: 2.5;
  padding: 48px 60px;
  padding-right: 0;
  text-align: start;
}
@media (min-width: 992px) {
  .activity-section .activity-list .activity:nth-child(even) {
    flex-direction: row-reverse;
  }
  .activity-section .activity-list .activity:nth-child(even) .activity-body {
    padding-left: 12vw;
    padding-right: 0;
  }
  .activity-section .activity-list .activity:nth-child(even) .activity-body .activity-title {
    padding-left: 0;
    padding-right: 60px;
  }
  .activity-section .activity-list .activity:nth-child(even) .activity-body .activity-description {
    padding-left: 0;
    padding-right: 60px;
  }
}
@media (min-width: 992.98px) and (max-width: 1199px) {
  .activity-section .activity-list .activity:nth-child(even) .activity-body {
    padding-left: 6vw;
  }
}
@media (max-width: 991.98px) {
  .activity-section .activity-list .activity {
    flex-direction: column;
  }
  .activity-section .activity-list .activity .activity-image {
    flex: 0 0 100%;
    padding: 0;
    width: 100%;
  }
  .activity-section .activity-list .activity .activity-image img {
    width: 100%;
  }
  .activity-section .activity-list .activity .activity-body {
    flex: 0 0 100%;
    padding: min(100vw * (50 / 576), 33.3333333333px);
  }
  .activity-section .activity-list .activity .activity-body .activity-title {
    font-size: min(100vw * (24 / 576), 16px);
    padding: 0 0 min(100vw * (32 / 576), 21.3333333333px);
  }
  .activity-section .activity-list .activity .activity-body .activity-description {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2;
    padding: min(100vw * (22 / 576), 14.6666666667px) 0 0;
  }
}

.information-area {
  padding: 120px 0 0;
}
.information-area .area-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media (max-width: 991.98px) {
  .information-area {
    padding: min(100vw * (120 / 576), 80px) 0 0;
  }
  .information-area .area-title {
    font-size: min(100vw * (44 / 576), 29.3333333333px);
  }
}

.cafe-section {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 120px 12vw;
}
.cafe-section .col {
  flex: 1 1 640px;
}
.cafe-section .image {
  max-width: 640px;
}
.cafe-section .image figcaption {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 5px;
  text-align: right;
}
.cafe-section .text {
  margin-right: 60px;
  max-width: 580px;
}
.cafe-section .text .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4.4rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.cafe-section .text .section-body {
  margin-top: 60px;
}
.cafe-section .text .section-body p {
  font-size: 1.6rem;
  line-height: 2.5;
}
@media (min-width: 992.98px) and (max-width: 1199px) {
  .cafe-section {
    padding: 120px 6vw;
  }
}
@media (max-width: 991.98px) {
  .cafe-section {
    flex-direction: column;
    padding: min(100vw * (100 / 576), 66.6666666667px) min(100vw * (50 / 576), 33.3333333333px) min(100vw * (100 / 576), 66.6666666667px);
  }
  .cafe-section .col {
    flex: 0 0 100%;
  }
  .cafe-section .image {
    max-width: 100%;
    padding: min(100vw * (50 / 576), 33.3333333333px) 0 0;
  }
  .cafe-section .text {
    margin: 0;
    max-width: 100%;
  }
  .cafe-section .text .section-title {
    font-size: min(100vw * (36 / 576), 24px);
  }
  .cafe-section .text .section-body {
    margin-top: min(100vw * (44 / 576), 29.3333333333px);
  }
  .cafe-section .text .section-body p {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2;
    text-align: center;
  }
}

.access-section {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding: 0 12vw;
}
@media (min-width: 992.98px) and (max-width: 1199px) {
  .access-section {
    padding: 0 6vw;
  }
}
.access-section .col {
  flex: 1 1 640px;
}
.access-section .image {
  max-width: 640px;
}
.access-section .image iframe {
  aspect-ratio: 640/500;
  background-color: #EFEDE9;
  height: 100%;
  width: 100%;
}
.access-section .text {
  margin-left: 60px;
  max-width: 580px;
}
.access-section .text .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4.4rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.access-section .text .section-description {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 60px;
  text-align: center;
}
.access-section .text .section-body {
  margin-top: 60px;
}
.access-section .text .section-body .properties {
  display: flex;
  justify-content: stretch;
  margin: -16px;
}
.access-section .text .section-body .properties .item {
  flex: 1;
  padding: 16px;
}
.access-section .text .section-body .properties .item h4 {
  color: #136FAF;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  min-width: 80px;
  padding-bottom: 5px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.access-section .text .section-body .properties .item h4 small {
  display: block;
  font-size: 2.6rem;
  letter-spacing: 0;
}
.access-section .text .section-body .properties .item h4:after {
  background: #136FAF;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.access-section .text .section-body .properties .item p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}
.access-section .text .section-body .properties.is-inview .item h4:after {
  transform: scaleX(1);
}
.access-section .text .section-body .annotation {
  color: #777;
  margin: 1em 0;
}
@media (max-width: 991.98px) {
  .access-section {
    flex-direction: column;
    padding: 0 min(100vw * (40 / 576), 26.6666666667px);
  }
  .access-section .col {
    flex: 0 0 100%;
  }
  .access-section .image {
    box-sizing: border-box;
    max-width: 100%;
    padding: min(100vw * (50 / 576), 33.3333333333px) min(100vw * (36 / 576), 24px) 0;
    width: 100%;
  }
  .access-section .image iframe {
    aspect-ratio: 4/3;
  }
  .access-section .text {
    margin: 0;
    max-width: 100%;
  }
  .access-section .text .section-title {
    font-size: min(100vw * (36 / 576), 24px);
  }
  .access-section .text .section-description {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2;
    margin-top: min(100vw * (44 / 576), 29.3333333333px);
  }
  .access-section .text .section-body {
    margin: min(100vw * (44 / 576), 29.3333333333px) min(100vw * (-40 / 576), -26.6666666667px) 0;
  }
  .access-section .text .section-body .properties {
    margin: 0 min(100vw * (16 / 576), 10.6666666667px);
  }
  .access-section .text .section-body .properties .item {
    padding: min(100vw * (16 / 576), 10.6666666667px);
  }
  .access-section .text .section-body .properties .item h4 {
    font-size: min(100vw * (32 / 576), 21.3333333333px);
  }
  .access-section .text .section-body .properties .item h4 small {
    font-size: min(100vw * (20 / 576), 13.3333333333px);
  }
  .access-section .text .section-body .properties .item p {
    font-size: min(100vw * (16 / 576), 10.6666666667px);
    line-height: 1.5;
    margin-top: min(100vw * (12 / 576), 8px);
  }
  .access-section .text .section-body .annotation {
    font-size: min(100vw * (16 / 576), 10.6666666667px);
    margin: min(100vw * (20 / 576), 13.3333333333px) min(100vw * (32 / 576), 21.3333333333px);
  }
}
@media (max-width: 320px) {
  .access-section .text .section-body .properties .item h4 {
    font-size: min(100vw * (28 / 576), 18.6666666667px);
  }
  .access-section .text .section-body .properties:nth-child(1) .item:nth-child(2) h4 {
    min-width: 40px;
  }
}

.faq-section {
  padding: 120px 12vw;
}
.faq-section .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.faq-section .section-body {
  margin: 50px auto 0;
  max-width: 720px;
}
.faq-section ul li {
  border-bottom: 1px solid #E4E1DC;
}
.faq-section ul li .question {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 30px 40px 15px 40px;
  position: relative;
}
.faq-section ul li .question:before {
  color: #136FAF;
  content: "Q";
  display: block;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.4rem;
  left: 0;
  position: absolute;
  top: 26px;
}
.faq-section ul li .question:after {
  top: calc(50% - 11px + 7px);
}
.faq-section ul li .answer {
  font-size: 1.5rem;
  line-height: 2.3;
  padding: 0 0 15px 40px;
  position: relative;
}
.faq-section ul li .answer:before {
  color: #136FAF;
  content: "A";
  display: block;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.4rem;
  left: 0;
  position: absolute;
  top: -7px;
}
@media (max-width: 991.98px) {
  .faq-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) min(100vw * (40 / 576), 26.6666666667px);
  }
  .faq-section .section-title {
    font-size: min(100vw * (44 / 576), 29.3333333333px);
  }
  .faq-section .section-body {
    margin: min(100vw * (50 / 576), 33.3333333333px) 0 0;
    max-width: 100%;
  }
  .faq-section ul li .question {
    font-size: min(100vw * (24 / 576), 16px);
    padding: min(100vw * (30 / 576), 20px) min(100vw * (50 / 576), 33.3333333333px) min(100vw * (15 / 576), 10px) min(100vw * (50 / 576), 33.3333333333px);
  }
  .faq-section ul li .question:before {
    font-size: min(100vw * (32 / 576), 21.3333333333px);
    top: min(100vw * (26 / 576), 17.3333333333px);
  }
  .faq-section ul li .question:after {
    top: calc(50% - 8px + min(100vw * (7 / 576), 4.6666666667px));
  }
  .faq-section ul li .answer {
    font-size: min(100vw * (20 / 576), 13.3333333333px);
    line-height: 2;
    padding: 0 0 min(100vw * (15 / 576), 10px) min(100vw * (50 / 576), 33.3333333333px);
  }
  .faq-section ul li .answer:before {
    font-size: min(100vw * (32 / 576), 21.3333333333px);
    top: min(100vw * (-8 / 576), -5.3333333333px);
  }
}

.message-section {
  align-items: center;
  background: #EFEDE9;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding: 0 0 0 0;
}
.message-section .col {
  flex: 0 0 50%;
}
.message-section .image img {
  height: auto;
  width: 100%;
}
.message-section .text {
  box-sizing: border-box;
  padding-left: 60px;
  padding-right: 12vw;
}
@media (min-width: 992.98px) and (max-width: 1199px) {
  .message-section .text {
    padding-right: 6vw;
  }
}
.message-section .text p {
  font-size: 2rem;
  line-height: 2.8;
}
@media (max-width: 991.98px) {
  .message-section {
    flex-direction: column-reverse;
    padding: 0;
  }
  .message-section .col {
    flex: 0 0 100%;
  }
  .message-section .image {
    padding: 0;
  }
  .message-section .image img {
    height: auto;
    width: 100%;
  }
  .message-section .text {
    padding: min(100vw * (50 / 576), 33.3333333333px);
  }
  .message-section .text p {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    line-height: 2;
  }
}

.contact-section {
  padding: 120px 12vw;
}
.contact-section .section-title {
  color: #136FAF;
  font-family: "Tenor Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.contact-section .section-description {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 50px;
  text-align: center;
}
.contact-section .buttons {
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
}
.contact-section .buttons .button {
  background: #136FAF;
  box-sizing: border-box;
  color: #FFF;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  max-width: 400px;
  padding: 18px 20px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}
.contact-section .buttons .button:hover {
  background: #157ec6;
}
.contact-section .buttons .button + .button {
  margin-left: 24px;
}
@media (max-width: 991.98px) {
  .contact-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) 0;
  }
  .contact-section .section-title {
    font-size: min(100vw * (44 / 576), 29.3333333333px);
  }
  .contact-section .section-description {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
    margin-top: min(100vw * (30 / 576), 20px);
  }
  .contact-section .buttons {
    flex-direction: column;
    margin: min(100vw * (50 / 576), 33.3333333333px) min(100vw * (80 / 576), 53.3333333333px) 0;
  }
  .contact-section .buttons .button {
    font-size: min(100vw * (24 / 576), 16px);
    max-width: none;
    padding: min(100vw * (18 / 576), 12px) min(100vw * (20 / 576), 13.3333333333px) min(100vw * (20 / 576), 13.3333333333px);
  }
  .contact-section .buttons .button + .button {
    margin-left: 0;
    margin-top: min(100vw * (24 / 576), 16px);
  }
}

body.en {
  word-break: keep-all;
}
@media (max-width: 991.98px) {
  body.en .intro-section .section-heading .line .highlight {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
  }
  body.en .intro-section .section-body p {
    font-size: min(100vw * (20 / 576), 13.3333333333px);
  }
}
@media (max-width: 991.98px) {
  body.en .glamping-section {
    padding: min(100vw * (100 / 576), 66.6666666667px) min(100vw * (40 / 576), 26.6666666667px);
  }
  body.en .glamping-section .section-description {
    font-size: min(100vw * (23 / 576), 15.3333333333px);
  }
  body.en .glamping-section .section-body p {
    font-size: min(100vw * (20 / 576), 13.3333333333px);
  }
}
@media (max-width: 991.98px) {
  body.en .cafe-section .image figcaption {
    font-size: 1.2rem;
  }
}
@media (max-width: 991.98px) {
  body.en .faq-section ul li .question {
    font-size: min(100vw * (22 / 576), 14.6666666667px);
  }
}
@media (max-width: 991.98px) {
  body.en .contact-section .section-description {
    line-height: 1.5;
    padding: 0 min(100vw * (40 / 576), 26.6666666667px);
  }
  body.en .contact-section .section-description p + p {
    margin-top: min(100vw * (20 / 576), 13.3333333333px);
  }
}