@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : BEM ベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500&display=swap");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 997px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 998px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: min(16px, 1.6048144433vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html, body {
  overflow: hidden;
  height: 100%;
  margin: 0;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  padding: 0;
  background: black;
  color: #fff;
  font-family: "Noto Sans Display", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans Display", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

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

a {
  text-decoration: underline;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
.l-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.l-header__inner {
  box-sizing: border-box;
  position: relative;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-header__logo {
  margin: 0;
}
.l-header__logo a {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 5.125rem;
}
.l-header__logo a img {
  width: 100%;
  display: block;
}
.l-header__btn {
  margin-right: 8.125rem;
  margin-top: 1.0625rem;
  display: block;
  color: white;
  text-decoration: none;
  border: solid 1px white;
  border-radius: 6.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 2.3125rem;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.l-header__btn:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .l-header__inner {
    padding: 1.25rem 1.375rem 0;
  }
  .l-header__logo {
    display: none !important;
  }
  .l-header__btn {
    margin: 0;
    padding: 0.375rem 1.6875rem;
  }
}

.l-menuBtn {
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  top: 2.375rem;
  right: 1.875rem;
  width: 5.21rem;
  height: 1.875rem;
  margin: 0;
  z-index: 100;
  cursor: pointer;
}
.l-menuBtn img {
  width: 100%;
  display: block;
}
.l-menuBtn:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .l-menuBtn {
    top: 1.4375rem;
    right: 1.25rem;
  }
}

.l-header-sns {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.l-header-sns__instagram {
  width: 1.4375rem;
  display: block;
}
.l-header-sns__instagram img {
  width: 100%;
  display: block;
}
.l-header-sns__text {
  margin: 0;
  display: block;
  width: 6.25rem;
}
.l-header-sns__text img {
  width: 100%;
  display: block;
}
.l-header-sns.-gnav {
  z-index: 102;
}
@media (max-width: 767px) {
  .l-header-sns {
    bottom: 1.5rem;
    right: 1.25rem;
  }
}

.l-gnav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 22.8125rem;
  max-width: 100%;
  height: 100%;
  background: white;
  color: #003D73;
  z-index: 101;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-gnav {
    width: 100%;
  }
}
.l-gnav__close {
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 4.20625rem;
  position: absolute;
  z-index: 102;
  right: 1.875rem;
  top: 1.375rem;
  cursor: pointer;
}
.l-gnav__close:hover {
  opacity: 1;
}
.l-gnav__close img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .l-gnav__close {
    top: 0.4375rem;
    right: 1.25rem;
  }
}
.l-gnav__container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
  overflow-y: auto;
  padding: 8.5rem 1.875rem 7.5rem;
  box-sizing: border-box;
}
.l-gnav__container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .l-gnav__container {
    padding: 3.5rem 1.25rem 6.25rem;
  }
}
.l-gnav__logo {
  display: none;
}
@media (max-width: 767px) {
  .l-gnav__logo {
    display: block;
    width: 10.25rem;
    margin: 0 auto;
  }
  .l-gnav__logo a {
    display: block;
    width: 100%;
  }
  .l-gnav__logo img {
    width: 100%;
    display: block;
  }
}
.l-gnav__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .l-gnav__list {
    margin-top: 4.375rem;
    gap: 2.25rem;
  }
}
.l-gnav__list > li {
  display: block;
}
.l-gnav__btn {
  text-align: center;
  display: block;
  padding: 0;
  color: #003D73;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
}
.l-gnav__bookingBtn {
  color: #003D73;
  border: solid 1px #003D73;
  border-radius: 6.25rem;
  text-decoration: none;
  display: block;
  width: 13.75rem;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.625rem;
  letter-spacing: 0.1em;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
  margin: 3.5rem auto 0;
}
.l-gnav__bookingBtn:hover {
  opacity: 1;
  background: #003D73;
  color: white;
}
@media (max-width: 767px) {
  .l-gnav__bookingBtn {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    font-size: 0.75rem;
    padding: 0.375rem;
    width: 6.75rem;
  }
}

/**************************************************/
/* Footer */
/**************************************************/
@media (max-width: 767px) {
  .l-footer-booking {
    padding: 0 0.9375rem;
  }
}
.l-footer-booking .booking__title-ja {
  margin: 0;
  font-size: 1.5625rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  display: inline-block;
  margin-right: 1.125rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .l-footer-booking .booking__title-ja {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-right: 1rem;
  }
}
.l-footer-booking .booking__title-en {
  letter-spacing: 0.07em;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .l-footer-booking .booking__title-en {
    font-size: 0.9375rem;
  }
}
.l-footer-booking .booking__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 4.375rem 0 0 0;
}
@media (max-width: 767px) {
  .l-footer-booking .booking__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  .l-footer-booking .booking__text {
    margin-top: 2.25rem;
  }
}
.l-footer-booking .booking__btn {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .l-footer-booking .booking__btn {
    margin-top: 2.25rem;
  }
}

.l-footer {
  padding-top: 12.5rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .l-footer {
    padding-top: 8.75rem;
  }
}
.l-footer__inner {
  padding: 0 1.75rem 1.75rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding: 0 1.25rem 1.375rem;
  }
}
.l-footer__logo {
  margin: 0;
  width: 13.625rem;
  display: block;
}
.l-footer__logo img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .l-footer__logo {
    width: 11.25rem;
  }
}
.l-footer__address {
  margin: 1.5rem 0 0 0;
  font-family: "Montserrat", sans-serif, "Noto Sans Display", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
  line-height: 1.6363636364;
}
@media (max-width: 767px) {
  .l-footer__address {
    font-size: 0.625rem;
  }
}
.l-footer__bottom {
  position: absolute;
  bottom: 1.375rem;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 10.625rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 1.25rem 1.875rem;
  width: 80%;
}
@media (max-width: 767px) {
  .l-footer__bottom {
    flex-direction: column;
    position: relative;
    margin-top: 0.875rem;
    padding-left: 0;
    transform: translateX(0);
    bottom: 0;
    left: 0;
    width: auto;
    align-items: flex-start;
  }
}
.l-footer__copy {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .l-footer__copy {
    font-size: 0.5625rem;
  }
}
.l-footer__policy {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: inherit;
}
@media (max-width: 767px) {
  .l-footer__policy {
    margin-top: 1rem;
  }
}
.l-footer__link {
  display: block;
  background: white;
  color: #003D73;
  padding: 0.125rem 1.5625rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .l-footer__link {
    font-size: 0.625rem;
    padding: 0.125rem 1.0625rem;
  }
}

/**************************************************/
/* contents */
/**************************************************/
body > .inbox {
  overflow-y: auto;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.25rem;
}
@media (max-width: 767px) {
  body > .inbox {
    scroll-padding-top: 3.75rem;
  }
}

.l-page-container {
  position: relative;
  overflow: hidden;
}

.l-page-contents {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 3.125rem;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .l-page-contents {
    padding: 0 1.25rem;
  }
}

.l-page-contents-sm {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 3.125rem;
}
.l-page-contents-sm > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .l-page-contents-sm {
    padding: 0 2.1875rem;
  }
}

.l-bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-bg-fixed__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
}
.l-bg-fixed__img:first-child {
  display: block;
}

.l-totop {
  position: fixed;
  bottom: 8.125rem;
  right: 1.5rem;
  display: inline-block;
  z-index: 20;
}
@media (max-width: 767px) {
  .l-totop {
    bottom: 7.6875rem;
    right: 1rem;
  }
}
.l-totop__btn {
  display: inline-block;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
  padding-top: 5.125rem;
  position: relative;
}
.l-totop__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.0625rem);
  transform: translateX(-50%);
  background: url(../img/deco-totop.png) no-repeat center center/contain;
  width: 1.1875rem;
  height: 4.75rem;
}
@media (max-width: 767px) {
  .l-totop__btn {
    font-size: 0.625rem;
    padding-top: 4.375rem;
  }
  .l-totop__btn::before {
    left: 50%;
    width: 1rem;
    height: 4.0625rem;
  }
}

.l-page-mv {
  width: 100%;
  height: 100dvh;
  position: relative;
}
.l-page-mv .mv-text {
  margin: 0;
  position: absolute;
  transform: translate(-50%, -50%);
}
.l-page-mv .mv-text img {
  width: 100%;
}
.l-page-mv.-facility .mv-text {
  top: calc(50% - 1.625rem);
  left: calc(50% - 2.375rem);
  width: 15.1666666667%;
}
@media (max-width: 767px) {
  .l-page-mv.-facility .mv-text {
    width: 8.65625rem;
    top: calc(50% - 2rem);
    left: calc(50% - 1.875rem);
  }
}
.l-page-mv.-kumejima .mv-text {
  top: calc(50% - 3.5rem);
  left: calc(50% + 1.4375rem);
  width: 14.1333333333%;
}
@media (max-width: 767px) {
  .l-page-mv.-kumejima .mv-text {
    width: 8rem;
    left: calc(50% + 0.75rem);
  }
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-heading-a {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.c-heading-a > span {
  padding: 3rem 0 0 5rem;
  display: inline-block;
  background: url(../../images/deco-heading.svg) no-repeat top left/7.5rem 3.65625rem;
}
@media (max-width: 767px) {
  .c-heading-a {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
  .c-heading-a > span {
    padding: 2.625rem 0 0 4.375rem;
    background-size: 6.5625rem 3.1875rem;
  }
}

.c-heading-b {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-heading-b {
    font-size: 0.9375rem;
    letter-spacing: 0.07em;
  }
}

.c-btn-a {
  border: none;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 3.5rem;
  color: white;
  border: solid 1px white;
  border-radius: 6.25rem;
  letter-spacing: 0.1em;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: 0.3s;
}
.c-btn-a:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.c-btn-a.-wide {
  padding-inline: 4.375rem;
}
@media (max-width: 767px) {
  .c-btn-a {
    font-size: 0.75rem;
    padding: 0.4375rem 2.6875rem;
  }
  .c-btn-a.-wide {
    padding-inline: 2.5rem;
  }
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* top */
/**************************************************/
body.pg-top .toptitle {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
body.pg-top .toptitle.-left {
  text-align: left;
}
@media (max-width: 767px) {
  body.pg-top .toptitle {
    gap: 2.25rem;
  }
}
body.pg-top .toptitle__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  body.pg-top .toptitle__en {
    font-size: 0.9375rem;
  }
}
body.pg-top .toptitle__ja {
  font-size: 1.6875rem;
  margin: 0;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media (max-width: 767px) {
  body.pg-top .toptitle__ja {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}
body.pg-top .l-top-mv {
  width: 100%;
  height: 100dvh;
  position: relative;
}
body.pg-top .l-top-mv .mv-logo {
  margin: 0;
  position: absolute;
  top: calc(50% - 0.875rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19.3333333333%;
}
body.pg-top .l-top-mv .mv-logo img {
  width: 100%;
}
@media (max-width: 767px) {
  body.pg-top .l-top-mv .mv-logo {
    width: 10.0625rem;
    top: 50%;
  }
}
body.pg-top .l-top-lead {
  padding-top: 12.3125rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-lead {
    padding-top: 2.625rem;
  }
}
body.pg-top .l-top-lead .top-lead__title {
  width: 1.5375rem;
  margin: 0 auto;
}
body.pg-top .l-top-lead .top-lead__title img {
  width: 100%;
  display: inline;
}
@media (max-width: 767px) {
  body.pg-top .l-top-lead .top-lead__title {
    width: 1.25rem;
  }
}
body.pg-top .l-top-lead .top-lead__text {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  line-height: 2.2352941176;
  text-align: center;
  margin: 4.5rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-top .l-top-lead .top-lead__text {
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    line-height: 2;
    margin-top: 3rem;
  }
}
body.pg-top .l-top-facility {
  padding-top: 18.4375rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-facility {
    padding-top: 10rem;
  }
}
body.pg-top .l-top-facility .facility__img {
  margin-top: 5.3125rem;
}
body.pg-top .l-top-facility .facility__img img {
  width: 100%;
}
@media (max-width: 767px) {
  body.pg-top .l-top-facility .facility__img {
    margin-top: 2.5rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
body.pg-top .l-top-facility .facility__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 3.75rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-top .l-top-facility .facility__lead {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-top .l-top-facility .facility__lead {
    margin-top: 1.5rem;
  }
}
body.pg-top .l-top-facility .facility__btn {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-top .l-top-facility .facility__btn {
    margin-top: 1.5rem;
  }
}
body.pg-top .l-top-movie {
  padding-top: 12.5rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-movie {
    padding-top: 5rem;
  }
}
body.pg-top .l-top-movie .movie {
  margin: 3.75rem auto 0;
  max-width: 36.75rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-movie .movie {
    margin-top: 2.5rem;
  }
}
body.pg-top .l-top-kumejima {
  padding-top: 20rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima {
    padding-top: 10.3125rem;
  }
}
body.pg-top .l-top-kumejima .kumejima__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 3.125rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__lead {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__lead {
    margin-top: 2rem;
  }
}
body.pg-top .l-top-kumejima .kumejima__title {
  margin-top: 7.25rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__title {
    margin-top: 3.625rem;
  }
}
body.pg-top .l-top-kumejima .kumejima__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 1.875rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-top .l-top-kumejima .kumejima__btn {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__btn {
    margin-top: 1.5rem;
  }
}
body.pg-top .l-top-kumejima .kumejima__swiper {
  margin-top: 2.625rem;
  max-width: 35rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .kumejima__swiper {
    margin-top: 1.875rem;
    max-width: 100%;
  }
}
body.pg-top .l-top-kumejima .swiper-topKumejima {
  overflow: visible;
}
body.pg-top .l-top-kumejima .swiper-topKumejima__slide {
  height: 100%;
}
body.pg-top .l-top-kumejima .swiper-topKumejima__slide-img {
  aspect-ratio: 560/330;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.pg-top .l-top-kumejima .swiper-topKumejima__slide-img img {
  width: 75%;
  transition: width 0.3s;
}
body.pg-top .l-top-kumejima .swiper-topKumejima__slide-text {
  text-align: center;
  margin: 0.875rem 0 0 0;
  font-size: 1.6875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  transition: 0.3s;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .swiper-topKumejima__slide-text {
    font-size: 1.375rem;
  }
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-wrapper {
  align-items: center;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-slide {
  transition: 0.3s;
  box-sizing: border-box;
  height: auto;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-slide .swiper-topKumejima__slide-text {
  opacity: 0;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-slide-active {
  padding: 0;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-slide-active .swiper-topKumejima__slide-img img {
  width: 100%;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-slide-active .swiper-topKumejima__slide-text {
  opacity: 1;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev, body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next {
  border: solid 1px white;
  border-radius: 6.25rem;
  box-sizing: border-box;
  width: 3.25rem;
  height: 3.25rem;
  background: transparent;
  position: absolute;
  top: calc(48% - 1.625rem);
  transform: translateY(0);
  transition: 0.3s;
  cursor: pointer;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev::after, body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.53125rem;
  height: 0.65625rem;
  background: url(../img/icon-slide-arrow.svg) no-repeat center center/contain;
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev:hover, body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev, body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next {
    width: 2.125rem;
    height: 2.125rem;
    top: calc(48% - 1.0625rem);
  }
  body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev::after, body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next::after {
    width: 0.375rem;
    height: 0.4375rem;
  }
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev {
  left: -5.125rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-prev {
    left: -1.1875rem;
  }
}
body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next {
  right: -5.125rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-kumejima .swiper-topKumejima .swiper-button-next {
    right: -1.1875rem;
  }
}
body.pg-top .l-top-message {
  padding-top: 13.125rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-message {
    padding-top: 10.25rem;
  }
}
body.pg-top .l-top-message .message {
  display: flex;
  gap: 0 8.375rem;
  margin-top: 2.625rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-message .message {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
body.pg-top .l-top-message .message__text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 1.625rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-top .l-top-message .message__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-top .l-top-message .message__text {
    margin: 0;
  }
}
body.pg-top .l-top-message .message__img {
  width: 14.0625rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-message .message__img {
    width: 10.625rem;
  }
}
body.pg-top .l-top-access {
  margin-top: 18.75rem;
  padding-bottom: 18.75rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access {
    margin-top: 10.25rem;
    padding-bottom: 11.5rem;
  }
}
body.pg-top .l-top-access .access {
  margin-top: 5rem;
  position: relative;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access {
    margin-top: 3.25rem;
  }
}
body.pg-top .l-top-access .access__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-top .l-top-access .access__text.-address {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access__text.-address {
    margin-top: 2.25rem;
    line-height: 1.5384615385;
  }
}
body.pg-top .l-top-access .access__text.-en {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access__text.-en {
    margin-top: 0.875rem;
    line-height: 1.5384615385;
  }
}
body.pg-top .l-top-access .access__map {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  line-height: 2.1538461538;
  font-weight: 500;
  margin: 1.25rem 0 0 0;
}
body.pg-top .l-top-access .access__map a {
  color: white;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access__map {
    line-height: 1.5384615385;
    letter-spacing: 0.05em;
  }
}
body.pg-top .l-top-access .access__mapImg {
  width: 39.0625rem;
  position: absolute;
  right: -8.5rem;
  top: -0.5rem;
}
@media (max-width: 997px) {
  body.pg-top .l-top-access .access__mapImg {
    right: -3.75rem;
    width: 34.375rem;
  }
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access__mapImg {
    right: auto;
    top: auto;
    position: relative;
    width: calc(100% + 1.375rem);
    margin-top: 3rem;
  }
}
body.pg-top .l-top-access .access-transportation {
  margin-top: 4.5rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation {
    margin-top: 3.75rem;
  }
}
body.pg-top .l-top-access .access-transportation__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__text {
    line-height: 1.2;
  }
}
body.pg-top .l-top-access .access-transportation__contents {
  margin-top: 1.875rem;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__contents {
    flex-direction: column;
  }
}
body.pg-top .l-top-access .access-transportation__place {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  padding: 0.0625rem;
  box-sizing: border-box;
  border: solid 1px white;
  min-width: 9.375rem;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__place {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-top .l-top-access .access-transportation__place.-reverse {
  background: #003D73;
  border-color: #003D73;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__place {
    min-width: 7.5rem;
    padding: 0.25rem;
  }
}
body.pg-top .l-top-access .access-transportation__time {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  white-space: pre;
  position: relative;
  line-height: 1.3;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__time {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-top .l-top-access .access-transportation__time.-plane {
  width: 7.25rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__time.-plane {
    width: auto;
    height: 7.375rem;
  }
}
body.pg-top .l-top-access .access-transportation__time.-car {
  width: 3.25rem;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__time.-car {
    width: auto;
    height: 3.25rem;
  }
}
body.pg-top .l-top-access .access-transportation__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.0625rem;
  width: 100%;
  height: 1px;
  background: white;
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__time::before {
    top: 0;
    left: 3.625rem;
    width: 1px;
    height: 100%;
  }
}
body.pg-top .l-top-access .access-transportation__time > span {
  padding-top: 3rem;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  body.pg-top .l-top-access .access-transportation__time > span {
    padding-top: 0;
    top: 50%;
    left: 5.3125rem;
    transform: translate(0, -50%);
  }
}

/**************************************************/
/* pages */
/**************************************************/
.blur-in {
  opacity: 0.4;
  filter: blur(20px);
  -webkit-filter: blur(20px);
}
.blur-in.-open {
  animation: blurInAnim 0.8s ease-in-out forwards;
}

@keyframes blurInAnim {
  0% {
    opacity: 0.4;
    filter: blur(20px);
    -webkit-filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
  }
}
.blur-in-bottom {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
}
.blur-in-bottom.-open {
  animation: blurInBottomAnim 0.8s ease-in-out forwards;
}

@keyframes blurInBottomAnim {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.fade-in-bottom {
  opacity: 0;
  transform: translateY(10px);
}
.fade-in-bottom.-open {
  animation: fadeInBottomAnim 0.8s ease forwards;
}

@keyframes fadeInBottomAnim {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blur-bg {
  opacity: 0.2;
  filter: blur(30px);
  -webkit-filter: blur(30px);
  will-change: opacity, filter;
  animation-fill-mode: forwards;
}
.blur-bg.-open {
  animation: blurBgFadeIn 2s ease-in-out forwards;
}
.blur-bg.-open.-top {
  animation: blurBgFadeIn 5s ease-in-out forwards;
}
.blur-bg.-top.-forward {
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
}

@keyframes blurBgFadeIn {
  0% {
    opacity: 0.2;
    filter: blur(30px);
    -webkit-filter: blur(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
  }
}
.blur-mv {
  opacity: 0;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  will-change: opacity, filter;
}
.blur-mv.-open {
  animation: fvFadeIn 2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
  }
}
/**************************************************/
/* facility */
/**************************************************/
body.pg-facility .l-facility-information {
  padding-top: 5.375rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information {
    padding-top: 3.625rem;
  }
}
body.pg-facility .l-facility-information .swiper-infoImgs {
  overflow: visible;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .swiper-infoImgs {
    margin-left: -2.1875rem;
    margin-right: -2.1875rem;
  }
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev, body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next {
  border: solid 1px white;
  border-radius: 6.25rem;
  box-sizing: border-box;
  width: 2.8125rem;
  height: 2.8125rem;
  background: transparent;
  position: absolute;
  top: auto;
  bottom: -1.4375rem;
  transform: translateY(0);
  transition: 0.3s;
  cursor: pointer;
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev::after, body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.46875rem;
  height: 0.5625rem;
  background: url(../img/icon-slide-arrow.svg) no-repeat center center/contain;
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev:hover, body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev, body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next {
    width: 2.125rem;
    height: 2.125rem;
    bottom: -1.0625rem;
  }
  body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev::after, body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next::after {
    width: 0.375rem;
    height: 0.4375rem;
  }
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev {
  left: auto;
  right: calc(50% + 1.25rem);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-prev {
    right: calc(50% + 1rem);
  }
}
body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next {
  right: auto;
  left: calc(50% + 1.25rem);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .swiper-infoImgs .swiper-button-next {
    left: calc(50% + 1rem);
  }
}
body.pg-facility .l-facility-information .information {
  padding-top: 9.375rem;
  display: flex;
  gap: 6.25rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information {
    padding-top: 4.875rem;
    gap: 4.375rem;
    flex-direction: column;
  }
}
body.pg-facility .l-facility-information .information__item {
  flex: 1;
}
body.pg-facility .l-facility-information .information__title {
  width: 9.875rem;
  margin: 1rem 0 0 0;
}
body.pg-facility .l-facility-information .information__title img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__title {
    width: 7.125rem;
  }
}
body.pg-facility .l-facility-information .information__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 2.625rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__lead {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__lead {
    margin-top: 1.5rem;
  }
}
body.pg-facility .l-facility-information .information__heading {
  margin: 0;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__heading {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.07;
  }
}
body.pg-facility .l-facility-information .information__dl {
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, auto 1fr);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__dl {
    margin-top: 1.25rem;
  }
}
body.pg-facility .l-facility-information .information__dl dt, body.pg-facility .l-facility-information .information__dl dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  display: block;
  box-sizing: border-box;
  padding: 1rem 0;
  border-bottom: solid 1px white;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__dl dt, body.pg-facility .l-facility-information .information__dl dd {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-facility .l-facility-information .information__dl dt {
  min-width: 8.25rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-information .information__dl dt {
    min-width: 6.25rem;
  }
}
body.pg-facility .l-facility-facilities {
  padding-top: 16rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities {
    padding-top: 9.375rem;
  }
}
body.pg-facility .l-facility-facilities .facilities {
  margin: 6.5625rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6.25rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities {
    margin-top: 4.75rem;
    gap: 3.75rem;
  }
}
body.pg-facility .l-facility-facilities .facilities__item {
  width: calc(50% - 3.125rem);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities__item {
    width: 100%;
  }
}
body.pg-facility .l-facility-facilities .facilities__img {
  margin: 0;
  display: block;
  width: 100%;
}
body.pg-facility .l-facility-facilities .facilities__heading {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities__heading {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
body.pg-facility .l-facility-facilities .facilities__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0.375rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities__text {
    margin-top: 0.625rem;
  }
}
body.pg-facility .l-facility-facilities .facilities-gallery {
  margin: 15.625rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6.25rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities-gallery {
    margin-top: 10.875rem;
    gap: 1.125rem;
  }
}
body.pg-facility .l-facility-facilities .facilities-gallery__item {
  width: calc(50% - 3.125rem);
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities-gallery__item {
    width: calc(50% - 0.5625rem);
  }
}
body.pg-facility .l-facility-facilities .facilities-plan {
  margin: 15.625rem auto 0;
  max-width: 43.75rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-facilities .facilities-plan {
    margin: 10.875rem -1.25rem 0;
  }
}
body.pg-facility .l-facility-following {
  padding-top: 12.5rem;
  padding-bottom: 16.875rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following {
    padding-top: 10.625rem;
    padding-bottom: 9.375rem;
  }
}
body.pg-facility .l-facility-following .following {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4.125rem;
  margin-top: 6.25rem;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following .following {
    margin-top: 4.75rem;
  }
}
body.pg-facility .l-facility-following .following__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(50% - 2.0625rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
body.pg-facility .l-facility-following .following__list.-full {
  width: 100%;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following .following__list {
    width: 100%;
  }
}
body.pg-facility .l-facility-following .following__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following .following__heading {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
}
body.pg-facility .l-facility-following .following__text {
  margin: 0;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  line-height: 1.7333333333;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following .following__text {
    font-size: 0.75rem;
    line-height: 1.8333333333;
    letter-spacing: 0.03em;
  }
}
body.pg-facility .l-facility-following .following__notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  line-height: 1.7333333333;
}
@media (max-width: 767px) {
  body.pg-facility .l-facility-following .following__notes {
    font-size: 0.75rem;
    line-height: 1.8333333333;
    letter-spacing: 0.03em;
  }
}
body.pg-facility .l-facility-following .following__notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

/**************************************************/
/* kumejima */
/**************************************************/
body.pg-kumejima .l-kumejima-lead {
  padding-top: 3.75rem;
  padding-bottom: 12.5rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-lead {
    padding-top: 3.25rem;
    padding-bottom: 9.25rem;
  }
}
body.pg-kumejima .l-kumejima-lead .kumejima-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-lead .kumejima-lead {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-kumejima .l-kumejima-lead .kumejima-lead__text {
  margin: 0;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-lead .kumejima-lead__text {
    width: 100%;
  }
}
body.pg-kumejima .l-kumejima-lead .kumejima-lead__text:nth-child(2) {
  margin-top: 10rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-lead .kumejima-lead__text:nth-child(2) {
    margin-top: 9.375rem;
  }
}
body.pg-kumejima .l-kumejima-lead .kumejima-lead__text:nth-child(3) {
  margin-top: 14.375rem;
  width: 100%;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-lead .kumejima-lead__text:nth-child(3) {
    margin-top: 9.375rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-main {
  max-width: 45rem;
  margin: 6.25rem auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main {
    margin-top: 3.75rem;
  }
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main__img {
    margin-left: -2.1875rem;
    margin-right: -2.1875rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-main__title {
  margin: 2rem auto 0;
  font-size: 1.875rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main__title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-main__title-notes {
  font-family: "Noto Sans Display", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.9375rem;
  margin: 0;
  position: absolute;
  left: calc(100% + 0.75rem);
  bottom: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main__title-notes {
    left: 0;
    margin: 0.375rem auto 0;
    position: relative;
    display: block;
    font-size: 0.8125rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-main__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-main__text {
    margin-top: 1.125rem;
    text-align: left;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-introduction {
  margin: 9.375rem 0 0 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction {
    margin-top: 6.25rem;
    gap: 6.25rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__item {
  display: flex;
  gap: 6.25rem;
  flex-direction: row-reverse;
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(even) {
  flex-direction: row;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item {
    flex-direction: column !important;
    gap: 1.125rem;
  }
}
@media (min-width: 768px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(1) .shop-introduction__imgarea {
    padding-top: 3.125rem;
  }
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(2) {
    margin-top: 11.375rem;
  }
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(2) .shop-introduction__textarea {
    padding-top: 5rem;
  }
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(3) {
    margin-top: 10rem;
  }
  body.pg-kumejima .l-kumejima-shop .shop-introduction__item:nth-child(3) .shop-introduction__imgarea {
    padding-top: 2.625rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__imgarea {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction__imgarea {
    gap: 0.625rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__img {
  width: 100%;
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__textarea {
  flex: 1;
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__heading {
  font-size: 1.375rem;
  line-height: 1.8181818182;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 1.875rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction__heading {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    line-height: 1.7647058824;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-introduction__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-introduction__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-address {
  margin: 11.25rem auto 0;
  border: solid 1px white;
  padding: 2rem;
  box-sizing: border-box;
  max-width: 46.0625rem;
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-address {
    margin-top: 6.25rem;
    padding: 1.5rem 1.5rem 1.125rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-address__img {
  width: 17.5rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-address__img {
    width: 100%;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-address__textarea {
  flex: 1;
}
body.pg-kumejima .l-kumejima-shop .shop-address__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-address__title {
    font-size: 1.25rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-address__text {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.06em;
  margin: 0.9375rem 0 0 0;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-address__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
    margin-top: 0.625rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-address__instagram {
  display: block;
  width: 1.4375rem;
  margin-top: 0.625rem;
}
body.pg-kumejima .l-kumejima-shop .shop-address__instagram img {
  width: 100%;
}
body.pg-kumejima .l-kumejima-shop .shop-deco {
  min-height: 49.25rem;
  position: relative;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-deco {
    min-height: 20.5rem;
  }
}
body.pg-kumejima .l-kumejima-shop .shop-deco__img {
  content: "";
  position: absolute;
  width: 9.375rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.pg-kumejima .l-kumejima-shop .shop-deco__img img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop .shop-deco__img {
    width: 5rem;
  }
}
body.pg-kumejima .l-kumejima-shop.-fuuchinupan .shop-deco__img {
  top: calc(50% + 1rem);
  left: calc(50% - 0.625rem);
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-fuuchinupan .shop-deco__img {
    top: 50%;
    left: calc(50% - 0.125rem);
  }
}
body.pg-kumejima .l-kumejima-shop.-washima .shop-deco__img {
  top: calc(50% + 1.5625rem);
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-washima .shop-deco__img {
    top: calc(50% + 0.125rem);
    width: 5.4375rem;
  }
}
body.pg-kumejima .l-kumejima-shop.-washima .shop-introduction__item:nth-child(1) .shop-introduction__imgarea {
  position: relative;
  padding-top: 0;
}
body.pg-kumejima .l-kumejima-shop.-washima .shop-introduction__item:nth-child(1) .shop-introduction__img {
  max-width: 18rem;
}
@media (min-width: 768px) {
  body.pg-kumejima .l-kumejima-shop.-washima .shop-introduction__item:nth-child(1) .shop-introduction__img {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-washima .shop-introduction__item:nth-child(1) .shop-introduction__img {
    max-width: 12.1875rem;
    margin: auto;
  }
}
body.pg-kumejima .l-kumejima-shop.-yanguwa .shop-deco__img {
  width: 13.4375rem;
  top: calc(50% - 0.375rem);
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-yanguwa .shop-deco__img {
    width: 7.4375rem;
    top: calc(50% - 0.1875rem);
  }
}
body.pg-kumejima .l-kumejima-shop.-hal .shop-deco__img {
  width: 11.4375rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-hal .shop-deco__img {
    width: 5.625rem;
    left: calc(50% + 0.625rem);
  }
}
body.pg-kumejima .l-kumejima-shop.-tumugi {
  padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
  body.pg-kumejima .l-kumejima-shop.-tumugi .shop-deco__img {
    width: 5.25rem;
  }
}