@charset "UTF-8";
/*!
  Theme Name: glamping-oshima-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: glamping-oshima-theme2025 framework
  Version: 2.0
  Date: 2025.07.25
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */

@font-face {
  font-family: "ShipporiGothicB2";
  src: url("fonts/ShipporiGothicB2-Bold.ttf") format("truetype");
}

/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #111111;
  --gray: #444444;
  --l-gray: #EEEEEE;
  --blue: #1BB8CE;
  --red: #E50012;
  --blue01: #4DBAF2;
  --blue02: #EFF8FC;
  --orange01: #FF3E00;
  --orange02: #FFF7F3;
  --yellow01: #FB9700;
  --yellow02: #FFFEE6;
  --font: "ShipporiGothicB2", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --dm-sans: "DM Sans", sans-serif;
  --eb-garamond: "EB Garamond", serif;
  --shippori-mincho: "Shippori Mincho B1", serif;
  --shippori: "ShipporiGothicB2", sans-serif;
  --bodoni: "Bodoni Moda", serif;
  --notosans: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

body.en {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--dm-sans);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  width: 100%;
}

.contact_en {
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 10px;
  font-weight: 500;
  font-family: var(--dm-sans);
  letter-spacing: 0.05em;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

@font-face {
  font-family: "ShipporiGothicB2";
  src: url("fonts/ShipporiGothicB2-Bold.ttf") format("truetype");
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================================
ふわっ
===================================*/



/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp02 {
  -webkit-animation-name: fadeUpAnime02;
  animation-name: fadeUpAnime02;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime02 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime02 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.02);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.02);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.text-active {
  -webkit-animation-name: bg-Anime;
  animation-name: bg-Anime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bg-Anime {
  from {
    filter: blur(3px);
    transform: scale(1.01);
    transform: translateY(160px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bg-Anime {
  from {
    filter: blur(3px);
    transform: scale(1.01);
    transform: translateY(160px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    transform: translateY(0);
    opacity: 1;
  }
}

.text-activeTrigger {
  opacity: 0;
}

.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  49% {
    transform: translateY(24px);
    opacity: 0;
  }

  50% {
    transform: translateY(-24px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes textSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  49% {
    transform: translateY(24px);
    opacity: 0;
  }

  50% {
    transform: translateY(-24px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1.3s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 1.3s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header {
  z-index: 999;
}

.header.-is-fixed {
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  z-index: 999;
  background: var(--white);
}

@media screen and (min-width: 1300px) {
  .header.-is-fixed .header_contents {
    height: 80px;
    overflow: hidden;
    transition: all 0.5s;
  }
}

@media screen and (max-width: 1299px) {
  .header {
    padding-right: 15px;
  }
}

@media screen and (max-width: 1299px) {
  .header.-is-open {
    background: var(--white);
    padding: 5px 15px;
  }
}

.header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), transparent 80%, transparent);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding-left: 15px;
  transition: all 0.5s;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header.-is-fixed .header__nav_toggle_bar,
.header.-is-fixed .header__nav_toggle_bar::before,
.header.-is-fixed .header__nav_toggle_bar::after {
  background-color: var(--black);
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 20px;
}

.header__nav_toggle_bar::after {
  width: 15px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
  background-color: var(--black);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
  background-color: var(--black);
}

@media screen and (min-width: 1300px) {
  .header__nav_toggle {
    display: none;
  }

  .header__nav_list {
    gap: 0 30px;
  }
}

.header__logo_type01 {
  display: block;
}

.header__logo_type02 {
  display: none;
}

.header.-is-open .header__logo_type01,
.header.-is-fixed .header__logo_type01 {
  display: none;
}

.header.-is-open .header__logo_type02,
.header.-is-fixed .header__logo_type02 {
  display: block;
}

@media screen and (min-width: 1300px) {
  .header_wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 310px 1fr;
    align-items: center;
  }
}

@media screen and (min-width: 1300px) {
  .header__nav {
    width: calc(100% - 360px);
  }
}

.bogo-language-switcher {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bogo-language-switcher li+li::before {
  content: "/";
}

.bogo-language-switcher li {
  font-size: 14px;
  font-family: var(--dm-sans);
  font-weight: 500;
  color: #A0A8B5;

}

.bogo-language-switcher li span {
  padding: 5px;
}

.bogo-language-switcher .current a {
  color: var(--white);
}

.header_left_contents {
  gap: 30px;
}

.header.-is-open .fc--white,
.header.-is-fixed .fc--white {
  color: var(--black);
}

.header.-is-open .bogo-language-switcher .current a,
.header.-is-fixed .bogo-language-switcher .current a {
  color: var(--black);
}

.header__nav_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3;
}

.header__nav_link span {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: var(--dm-sans);
}

.header_right_contents {
  gap: 30px;
}

.header_sns_link {
  gap: 10px;
}

.header_sns_link a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}

.header_sns_link a:hover {
  opacity: 1;
  background: var(--white);
}

.header_sns_link a:hover i {
  color: var(--black);
}

.header.-is-open .header_sns_link a,
.header.-is-fixed .header_sns_link a {
  border: 1px solid #F6F8FA;
  background: #F6F8FA;
}

.header.-is-open .header_sns_link a:hover,
.header.-is-fixed .header_sns_link a:hover {
  opacity: 1;
  background: var(--black);
}

.header.-is-open .header_sns_link a:hover i,
.header.-is-fixed .header_sns_link a:hover i {
  color: #F6F8FA;
}

.header_reserve_link {
  background: rgba(0, 0, 0, 0.5);
  padding: 46px 38px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ri-calendar-line {
  font-weight: 400;
}

.header.-is-open .header_reserve_link,
.header.-is-fixed .header_reserve_link {
  background: #E7F8FB;
  padding: 36px 38px;
  font-size: 14px;
  color: #1BB8CE;
}

@media screen and (min-width: 1300px) {
  .header_left_contents {
    width: 100%;
    max-width: 310px;
  }
}

@media screen and (max-width: 1299px) {
  p.header__logo {
    margin: 16px 0;
  }

  .header__logo {
    z-index: 10;
    width: 100%;
    max-width: 120px;
  }

  .header__nav a {
    width: 100%;
    padding: 10px 20px;
  }

  .header_menu_contents {
    padding-top: 40px;
    max-width: min(100%, 1300px);
    position: absolute;
    top: 0;
    width: 100%;
    right: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }

  .header__nav_list {
    flex-wrap: wrap;
  }

  .header__nav_item {
    width: 50%;
  }

  .header_sns_link {
    margin: 0 auto;
  }

  .header_right_contents {
    flex-wrap: wrap;
  }

  .header_reserve_link {
    width: 100%;
    padding: 20px;
  }

  .header.-is-open .header_menu_contents {
    height: 100vh;
    opacity: 1;
    justify-content: center !important;
    gap: 40px;
    pointer-events: auto;
  }
}

a:hover {
  opacity: 0.6;
}

/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.js-pagetop {
  font-size: 3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--black);
}

.js-pagetop a {
  display: block;
  color: var(--white);
}

.footer {
  padding-bottom: 80px;
}

.footer_reservation {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  position: relative;
}

.footer_reservation .title02 {
  margin-bottom: 30px;
}

@media screen and (min-width: 540px) {
  .footer_reservation .title02 {
    margin-bottom: 50px;
  }
}

.footer_reservation p {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.1;
}

.footer_reservation .footer_reservation_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.footer_reservation .footer_reservation_img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  min-height: 500px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .footer_reservation .footer_reservation_img img {
    min-height: 600px;
  }
}

.footer_reservation::before {
  content: "";
  background: linear-gradient(transparent, #FFFFFF);
  width: 100%;
  height: 180px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer_reservation_Wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1150px) {
  .footer_reservation_Wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer_reservation_Wrap .title01 {
  margin-bottom: 50px;
}

.footer_reservation_list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

@media screen and (min-width: 768px) {
  .footer_reservation_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "a a""b c";
  }
}

@media screen and (min-width: 1150px) {
  .footer_reservation_list {
    width: 100%;
    max-width: 720px;
  }
}

.footer_reservation_list li:first-child {
  grid-area: a;
}

.footer_reservation_list li:nth-child(2) {
  grid-area: b;
}

.footer_reservation_list li:nth-child(3) {
  grid-area: c;
}

.footer_reservation_list .btn01 {
  padding: 20px 10px;
}

.footer__nav_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .footer__nav_wrapper {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "item01 item01""item02 item03";
  }
}

@media screen and (min-width: 1024px) {
  .footer__nav_wrapper {
    grid-template-columns: 300px 1fr 320px;
    grid-template-rows: 1fr;
    grid-template-areas: "item01 item02 item03";
    align-items: flex-start;
  }
}

.footer__nav_wrapper .footer__nav_box01 {
  grid-area: item01;
}

.footer__nav_wrapper .footer__nav_box02 {
  width: 100%;
}

.footer__nav_wrapper .footer__nav_box03 {
  grid-area: item03;
}

.footer__nav_contents {
  padding-top: 50px;
  position: relative;
}

.footer__nav_contents::before {
  content: "";
  background: url(img/top/deco02.png);
  width: 100%;
  max-width: 771px;
  height: 100%;
  position: absolute;
  top: -80px;
  right: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.footer__nav_box01 {
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.footer__nav_box01 p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.footer__nav_box01 .btn03 {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  margin-top: 20px;
}

.footer_sns_link {
  gap: 10px;
  margin-top: 30px;
}

.footer_sns_link a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #F6F8FA;
  background: #F6F8FA;
}

.footer_sns_link a:hover {
  opacity: 1;
  background: var(--black);
}

.footer_sns_link a:hover i {
  color: #F6F8FA;
}

.footer__nav_box02 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__nav_box02 {
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 700px;
  }

}
@media screen and (min-width: 1024px) {
  .footer__nav_box02 {
    gap: 50px;
  }
}
.footer__nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav_list {
    gap: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
  }
}
@media screen and (min-width: 1200px){
  .footer__nav_list{
    gap: 0 50px;
  }
}

.footer__nav_item {
  width: 100%;
  max-width: calc(50% - 10px);
}
.footer__nav_item.column-1 {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav_item {
    max-width: 100%;
  }
}

.footer__nav_item a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #D8DFE8;
  padding: 15px;
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 0;
  line-height: 1.3;
  position: relative;
}
.footer__nav_item a span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--dm-sans);
}
.footer__nav_item a::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background: url(img/common/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  right: 4px;
}
.footer__nav_item a:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.footer__nav_box03 a {
  background: url(img/common/footer_reserve.png);
  border-radius: 7px;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 16px rgba(0, 82, 130, 0.25);
}

.footer__nav_box03 a .btn01 {
  margin-top: 140px;
}

.footer__nav_box03_title {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer__nav_box03_title span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--dm-sans);
}

.footer__copyright_box {
  text-align: right;
  margin-top: 60px !important;
}

.footer__copyright {
  display: inline-block;
}

.campaign_box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  cursor: pointer;
  width: 200px;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .campaign_box {
    width: auto;
  }
}

.campaign_box .campaign_close {
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 22;
}

.campaign_box.hidden {
  opacity: 0;
  z-index: -1;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: baseline;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #AFBBCC;
  font-size: 16px;
  font-weight: bold;
  margin: 5px;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: var(--white);
  border: 1px solid rgba(76, 76, 76, 0.75);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 72px;
    height: 72px;
  }
}

.wp-pagenavi span.current {
  color: #676F7B;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

@media screen and (max-width: 450px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
  }
}

.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}

/***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}

.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}

.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}

.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.title01 span {
  font-size: 40px;
  font-family: var(--eb-garamond);
  font-weight: 400;
  line-height: 0.75;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.title01 span::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--black);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 540px) {
  .title01 span {
    font-size: 56px;
  }
}

@media screen and (min-width: 768px) {
  .title01 span {
    font-size: 72px;
  }
}

.title01.fc--white span::after {
  background: var(--white);
}

.title02 {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.title02 span {
  font-size: 40px;
  font-family: var(--eb-garamond);
  font-weight: 400;
  line-height: 0.7;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (min-width: 540px) {
  .title02 span {
    font-size: 56px;
  }
}

.title03 {
  font-size: 24px;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  line-height: 2;
  font-weight: 500;
}

.en .title03 {
  line-height: 1.6;
}

.title03 br {
  display: none;
}

@media screen and (min-width: 390px) {
  .title03 {
    font-size: 26px;
  }

  .title03 br {
    display: block;
  }
}

.title04 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media screen and (min-width: 540px) {
  .title04 {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .title04 {
    font-size: 32px;
  }
}

.title05 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.contact_en .title05 {
  line-height: 1.7;
  font-family: var(--dm-sans);
}


@media screen and (min-width: 540px) {
  .title05 {
    font-size: 21px;
  }
}

@media screen and (min-width: 768px) {
  .title05 {
    font-size: 22px;
  }
}

.page_title {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .page_title {
    font-size: 24px;
  }
}

.page_title span {
  font-family: var(--eb-garamond);
  font-size: 12vw;
  line-height: 1;
  letter-spacing: normal;
}

@media screen and (min-width: 1024px) {
  .page_title span {
    font-size: 90px;
  }
}

.title06 {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.01em;
  text-align: center;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}

.title06::before,
.title06::after {
  content: "";
  height: 1px;
  background: var(--black);
  flex-grow: 1;
}

.title07 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 9px; */
}

@media screen and (min-width: 540px) {
  .title07 {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .title07 {
    font-size: 32px;
  }
}

.title07 span {
  font-family: var(--dm-sans);
  /* font-size: 11px; */
  font-size: 20px;
  color: #C3CAD4;
  letter-spacing: 0.05em;
}

.title07.type02 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.title07.type02::before,
.title07.type02::after {
  content: "";
  height: 1px;
  background: var(--black);
  flex-grow: 1;
}

.title07_title_wrap {
  text-align: center;
  position: relative;
  z-index: 5;
}

.title07_title_img {
  position: absolute;
  top: 20%;
  transform: translateY(-20%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.title08 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (min-width: 540px) {
  .title08 {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .title08 {
    font-size: 36px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container_1720 {
  max-width: 1780px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_1720 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_l {
  max-width: 1650px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_l {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_m {
  max-width: 1560px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_m {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_s {
  max-width: 1290px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_s {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_xs {
  max-width: 1165px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_xs {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_1080 {
  max-width: 1110px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .container_1080 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
  border-radius: 40px;
  background: linear-gradient(-90deg, #00C1E9, #0099C9);
  padding: 10px 40px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 0;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.btn01::before,
.btn01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}

.btn01::before {
  transition: all 0.6s;
  /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(-90deg, #00C1E9, #0099C9);
}

.btn01::after {
  z-index: -2;
  background: linear-gradient(-90deg, #0099C9 0%, #00C1E9 100%);
}

.btn01:hover {
  color: var(--white);
  opacity: 1;
}

.btn01:hover::before {
  opacity: 0;
}

.btn02 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border-radius: 28px;
  background-color: #fff;
  padding: 13px 40px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  position: relative;
  letter-spacing: 0.05;
}

.btn02 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.btn02:hover {
  opacity: 1;
  color: var(--white);
  background: var(--black);
}

.btn03 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 28px;
  background-color: #fff;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  position: relative;
  letter-spacing: 0.05em;
}

.btn03 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.btn03:hover {
  opacity: 1;
  color: var(--white);
  background: var(--black);
}

.btn04 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 28px;
  background-color: #fff;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  position: relative;
  letter-spacing: 0.05em;
}

.btn04 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.btn04:hover {
  opacity: 1;
  color: var(--white);
  background: var(--black);
}

.btn05 {
  font-size: 17px;
  font-weight: 500;
  border-radius: 40px;
  padding: 10px 40px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 0;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
}

.btn05.--blue {
  color: var(--white);
  background: var(--blue01);
  border: 1px solid var(--blue01);
}

.btn05.--orange {
  color: var(--white);
  background: var(--orange01);
  border: 1px solid var(--orange01);
}

.btn05.--yellow {
  color: var(--white);
  background: var(--yellow01);
  border: 1px solid var(--yellow01);
}

.btn05:hover {
  opacity: 1;
}

.btn05:hover.--blue {
  color: var(--blue01);
  border: 1px solid var(--blue01);
  background: var(--white);
}

.btn05:hover.--orange {
  color: var(--orange01);
  border: 1px solid var(--orange01);
  background: var(--white);
}

.btn05:hover.--yellow {
  color: var(--yellow01);
  border: 1px solid var(--yellow01);
  background: var(--white);
}

@-webkit-keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/***************************

object/component/_form.scss

***************************/
.form_wrap {
  margin: 0 15px;
}

.form_wrap .container_1080 {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 960px) {
  .form_wrap .container_1080 {
    padding-left: 30px;
    padding-right: 30px;
  }
}


.form_wrap .container_s {
  background: #F6F8FA;
  padding-top: 60px;
  padding-bottom: 80px;
}

.form__container {
  margin-top: 60px;
}

input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  padding: 18px 20px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  width: 100%;
  padding: 20px;
  height: 250px;
}

::-webkit-input-placeholder {
  color: #AAAAAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--notosans);
}

:-moz-placeholder {
  color: #AAAAAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--notosans);
}

::-moz-placeholder {
  color: #AAAAAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--notosans);
}

:-ms-input-placeholder {
  color: #AAAAAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--notosans);
}

input[type=checkbox] {
  display: none;
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 960px) {
  .wpcf7-checkbox {
    flex-direction: row;
  }
}

.wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  /* align-items: center; */
  gap: 10px;
  font-size: 16px;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #666666;
  border-radius: 3px;
  content: "";
  display: block;
  left: 5px;
  top: 50%;
  width: 32px;
  max-width: 32px;
  height: 32px;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  left: 6px;
  margin-top: -9px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #E6E6E6;
  border-bottom: 3px solid #E6E6E6;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  left: 12px;
}

input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.contact_unit {
  padding: 30px 0;
  border-bottom: 1px solid #D8DFE8;
}

.contact_unit:first-of-type {
  padding-top: 0;
}

.span-required {
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  padding: 5px 6px;
  font-size: 11px;
  font-weight: bold;
  font-family: var(--notosans);
  margin-right: 15px;
}

.contact_dt {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.form_privacy_wrap {
  padding: 20px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  background: var(--white);
  margin-top: 90px;
  height: 320px;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
  .form_privacy_wrap {
    padding: 30px;
  }
}

.form_privacy_list dt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.form_privacy_list dd p {
  font-size: 15px;
}

.contact-form__check .wpcf7-list-item-label {
  flex-wrap: wrap;
}

.contact-form__check .wpcf7-checkbox {
  justify-content: center;
  margin: 40px 0 50px;
}

.contact-form__check .wpcf7-checkbox a {
  text-decoration: underline;
}

.contact-btn_wrap {
  text-align: center;
}

.contact-btn_wrap .wpcf7-form-control {
  background: #C4C7CC;
  border: none;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  font-family: var(--notosans);
  border-radius: 40px;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  pointer-events: none;
}

.contact-btn_wrap .wpcf7-form-control.active {
  pointer-events: auto;
  background: linear-gradient(-90deg, #00C1E9, #0099C9);
  cursor: pointer;
  transition: all 0.5s;
}

.contact-btn_wrap .wpcf7-form-control.active:hover {
  opacity: 0.6;
}

/***************************

object/object/project/_home.scss

***************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #E6F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
  animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 1s 0.5s forwards;
  animation: logo_fade 1s 0.5s forwards;
  padding: 20px;
}

@-webkit-keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.top_mv_img {
  width: 100%;
  height: 100vh;
}

.top_mv_img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.top_mv {
  position: relative;
  width: 100%;
  height: 700px;
}

@media screen and (min-width: 768px) {
  .top_mv {
    height: 100vh;
  }
}

.top_mv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.top_mv_textbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  z-index: 20;
}

.top_mv_textbox p {
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 14px;
  font-family: var(--shippori-mincho);
}

.top_mv_textbox p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_mv_textbox p {
    font-size: 16px;
  }

  .top_mv_textbox p br {
    display: block;
  }
}

.top_mv_textbox .btn01 {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.top_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_title_ja {
  font-size: 6vw;
  font-weight: 500;
  font-family: var(--shippori-mincho);
}

@media screen and (min-width: 768px) {
  .top_title_ja {
    font-size: 32px;
  }
}

.top_title_en {
  font-family: var(--eb-garamond);
  font-weight: 500;
  font-size: 10vw;
  text-align: center;
  line-height: 1.05;
}

@media screen and (min-width: 768px) {
  .top_title_en {
    font-size: 80px;
  }
}

.top_mv_video {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top_mv_video video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.bnr_box {
  padding: 40px 0;
}

.bg_gray {
  background: #F6F8FA;
}

.top_lead {
  background: url(img/top/top_lead_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 200px;
  position: relative;
}

.top_lead_decoimg01 {
  position: absolute;
  top: -30px;
  left: 0;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .top_lead_decoimg01 {
    width: auto;
    top: -40px;
    left: 80px;
  }
}

.top_lead_decoimg02 {
  position: absolute;
  bottom: 180px;
  right: 0;
  z-index: 5;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .top_lead_decoimg02 {
    width: auto;
    bottom: 60px;
    right: 0;
  }
}

.top_lead_textimg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0.3;
}

@media screen and (min-width: 768px) {
  .top_lead_textimg {
    opacity: 0.6;
  }
}

.top_lead_textimg img {
  width: 100%;
  max-width: 77px;
}

.top_lead_textbox {
  color: var(--white);
}

.top_lead_title {
  font-size: 26px;
  font-weight: 500;
  left: 0.05em;
  line-height: 2;
  margin-bottom: 60px;
}

.top_lead_box {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .top_lead_box {
    flex-direction: row;
    justify-content: space-between;
  }
}

.sec_suo-oshima {
  background: url(img/top/sec_suo-oshima_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  margin-right: 20px;
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .sec_suo-oshima {
    margin-right: 100px;
    padding: 20px 0 15px;
  }
}

.sec_suo-oshima dl {
  width: 100%;
  max-width: 600px;
}

.sec_suo-oshima .container_xs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sec_suo-oshima .container_xs {
    flex-direction: row;
    gap: 60px;
  }
}

@media screen and (min-width: 1570px) {
  .sec_suo-oshima .container_xs {
    padding-left: 70px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .sec_suo-oshima .container_xs .sec_suo-oshima_img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;
  }
}

.sec_suo-oshima_dt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 20px;
}

.sec_suo-oshima_dd {
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.top_about {
  padding: 160px 0 0;
}

.top_about .bnr_box {
  padding: 120px 0;
}

.top_about_list {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 80px;
}

@media screen and (min-width: 768px) {
  .top_about_list {
    margin-top: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .top_about_item:nth-child(even) .top_about_contents {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1200px) {
  .top_about_contents {
    display: flex;
    gap: 100px;
    align-items: center;
  }
}

.top_about_img {
  overflow: hidden;
}

.top_about_img img {
  width: 100%;
}

.top_about_textbox .title03 {
  margin-top: 20px;
}

@media screen and (min-width: 1200px) {
  .top_about_textbox {
    width: 100%;
    max-width: 480px;
  }
}

.top_room {
  padding: 110px 0 150px;
  background: #F6F8FA;
  position: relative;
}

.top_room::after {
  content: "";
  width: 60%;
  height: 100%;
  display: block;
  background: url(img/top/room_bg_deco.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .top_room::after {
    width: 580px;
  }
}

@media screen and (min-width: 1200px) {
  .top_room::after {
    width: 880px;
  }
}

.top_room .container_l {
  position: relative;
  z-index: 6;
}

.top_room_textbox {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

@media screen and (min-width: 960px) {
  .top_room_textbox {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
  }

  .top_room_textbox .title01 {
    text-align: right;
  }
}

.top_room_textbox p {
  width: 100%;
  max-width: 500px;
}

@media screen and (min-width: 1377px) {
  .top_room_textbox p {
    max-width: 1074px;
  }
}

.top_room_swiper_container {
  position: relative;
  padding: 80px 0 90px;
}

.swiper-button-next {
  right: 4% !important;
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: 10% !important;
  }
}

@media screen and (min-width: 1024px) {
  .swiper-button-next {
    right: 18% !important;
  }
}

.swiper-button-prev {
  left: 4% !important;
}

@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 10% !important;
  }
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev {
    left: 18% !important;
  }
}

.top_activity_swiper_container .swiper-button-next {
  right: 4% !important;
  top: 140px !important;
}

@media screen and (min-width: 768px) {
  .top_activity_swiper_container .swiper-button-next {
    right: 2% !important;
    top: 100px !important;
  }
}

@media screen and (min-width: 1024px) {
  .top_activity_swiper_container .swiper-button-next {
    right: 5% !important;
    top: 140px !important;
  }
}

@media screen and (min-width: 1400px) {
  .top_activity_swiper_container .swiper-button-next {
    top: 160px !important;
  }
}

@media screen and (min-width: 1500px) {
  .top_activity_swiper_container .swiper-button-next {
    top: 150px !important;
    right: 11% !important;
  }
}

.top_activity_swiper_container .swiper-button-prev {
  left: 4% !important;
  top: 140px !important;
}

@media screen and (min-width: 768px) {
  .top_activity_swiper_container .swiper-button-prev {
    left: 2% !important;
    top: 100px !important;
  }
}

@media screen and (min-width: 1024px) {
  .top_activity_swiper_container .swiper-button-prev {
    left: 5% !important;
    top: 140px !important;
  }
}

@media screen and (min-width: 1400px) {
  .top_activity_swiper_container .swiper-button-prev {
    top: 160px !important;
  }
}

@media screen and (min-width: 1500px) {
  .top_activity_swiper_container .swiper-button-prev {
    top: 150px !important;
    left: 11% !important;
  }
}

.room_Swiper .swiper-wrapper {
  align-items: center;
}

.room_Swiper .swiper-slide {
  transform: scale(0.85);
  opacity: 0.15;
  transition: all 0.5s;
}

.room_Swiper .swiper-slide-active {
  transform: scale(1);
  transition-duration: 0.3s;
  opacity: 1;
}

.room_link {
  position: relative;
}

.room_link:hover {
  opacity: 1;
}

.room_link:hover .room_img img {
  transform: scale(1.05);
}

.room_link:hover .room_textbox::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.room_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room_img {
  overflow: hidden;
  width: 100%;
}

.room_img img {
  transition: all 0.5s;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.room_textbox {
  background: rgba(255, 255, 255, 0.95);
  margin: 0 auto;
  width: 100%;
  max-width: calc(100% - 20px);
  padding: 30px;
  margin-top: -10px;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .room_textbox {
    margin-top: -20px;
  }
}

@media screen and (min-width: 960px) {
  .room_textbox {
    margin-top: -40px;
  }
}

@media screen and (min-width: 1024px) {
  .room_textbox {
    margin-top: -100px;
    max-width: 720px;
  }
}

.room_textbox::after {
  content: "";
  width: 10px;
  height: 20px;
  background: url(img/common/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  position: absolute;
  top: 45%;
  right: 15px;
}

@media screen and (min-width: 960px) {
  .room_textbox::after {
    right: 40px;
  }
}

.room_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .room_title {
    font-size: 26px;
  }
}

.room_title::after {
  content: "";
  background: #D8DFE8;
  width: 60px;
  height: 1px;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  width: 42px;
  height: 42px;
  background: rgba(17, 17, 17, 0.75);
  border-radius: 50%;
  transition: all 0.5s;
}

@media screen and (min-width: 540px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 52px;
    height: 52px;
  }
}

@media screen and (min-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 72px;
    height: 72px;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--blue);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background: url(img/common/slide_arrow-right.svg);
  width: 15px;
  height: 15px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media screen and (min-width: 540px) {

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }
}

.swiper-button-prev::after {
  transform: scale(-1, 1);
}

.top_food {
  padding: 150px 0 90px;
}

.content {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (min-width: 960px) {
  .content {
    flex-direction: row;
  }
}

@media screen and (min-width: 960px) {
  .side_01 {
    position: -webkit-sticky;
    position: sticky;
  }
}

@media screen and (min-width: 1200px) {
  .side_02 {
    opacity: 1;
    height: 900px;
  }
}

@media screen and (min-width: 1400px) {
  .side_02 {
    opacity: 1;
    height: 1130px;
  }
}

.food_img {
  width: 100%;
  max-width: 900px;
  margin-right: calc(50% - 50vw);
  position: relative;
}

@media screen and (min-width: 1200px) {
  .food_img {
    max-width: 1105px;
  }
}

.food_img img {
  -o-object-fit: contain;
  object-fit: contain;
  text-align: right;
}

@media screen and (min-width: 960px) {
  .food_side {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    top: 150px;
    width: 100%;
    z-index: 10;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
}

.food_side .title03 {
  margin-top: 60px;
  line-height: 2.3;
}

.food_side.food-active {
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

@media screen and (min-width: 960px) {
  .food_side {
    max-width: 360px;
  }
}

@media screen and (min-width: 1200px) {
  .food_side {
    height: 690px;
  }
}

.food_side .btn03 {
  margin-top: 70px;
}

.food_side_img {
  position: absolute;
  top: -60px;
  left: -100px;
  width: 400px;
}

@media screen and (min-width: 768px) {
  .food_side_img {
    width: 700px;
  }
}

.top_activity {
  padding: 135px 0;
  position: relative;
  margin-top: 45px;
}

.top_activity::before {
  content: "";
  background: url(img/top/circle.png);
  background-repeat: no-repeat;
  background-size: 900px;
  background-position: center center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top_activity::before {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
}

.top_activity_swiper_container {
  position: relative;
  padding: 50px 0 60px;
}

.top_activity_swiper_container .swiper-slide {
  opacity: 0.15;
  transition: all 0.5s;
}

.top_activity_swiper_container .swiper-slide-active {
  opacity: 1;
  transition-duration: 0.3s;
}

@media screen and (min-width: 768px) {

  .top_activity_swiper_container .swiper-slide-prev,
  .top_activity_swiper_container .swiper-slide-active,
  .top_activity_swiper_container .swiper-slide-next {
    opacity: 1;
    transition-duration: 0.3s;
  }
}

.btnbox {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.slide_img {
  width: 100%;
}

.slide_img img {
  width: 100%;
}

.slide_title {
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

.slide_title br {
  display: none;
}

@media screen and (min-width: 1200px) {
  .slide_title {
    font-size: 16px;
  }

  .slide_title br {
    display: block;
  }
}

.top_news {
  padding: 100px 0 200px;
}

.top_news_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .top_news_wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .top_news_wrap {
    gap: 110px;
  }
}

.top_news_textbox {
  width: 100%;
  max-width: 220px;
}

.top_news_btn {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .top_news_btn {
    margin-top: 65px;
  }
}

.news_list {
  width: 100%;
}

.news_link {
  border-bottom: 1px solid #D8DFE8;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .news_link {
    gap: 70px;
  }
}

.date {
  letter-spacing: 0.05em;
  color: #A0A8B5;
}

.news_title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.top_access {
  padding-bottom: 130px;
  overflow: hidden;
}

.top_access_deco_img {
  position: absolute;
  bottom: 150px;
  right: -100px;
  z-index: 6;
  width: 300px;
}

@media screen and (min-width: 768px) {
  .top_access_deco_img {
    width: auto;
    bottom: 100px;
    right: -300px;
  }
}

.top_access_img {
  width: 100%;
}

.top_access_img img {
  width: 100%;
}

.top_access_textbox {
  position: relative;
  margin-top: -50px;
  z-index: 5;
  padding-top: 300px;
  background: url(img/top/top_access_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_access_textbox .container_s {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
}

@media screen and (min-width: 768px) {
  .top_access_textbox {
    padding-top: 400px;
  }
}

@media screen and (min-width: 820px) {
  .top_access_textbox .container_s {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .top_access_textbox {
    padding-top: 700px;
  }

  .top_access_textbox .container_s {
    padding-left: 20px;
  }
}

.top_access_textbox::after {
  content: "";
  width: calc(100% - (100% - 1800px) / 2);
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  width: calc(100% - 5px);
  height: 45%;
  display: block;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top_access_textbox::after {
    width: calc(100% - 5px);
    height: 250px;
  }
}

@media screen and (min-width: 1500px) {
  .top_access_textbox::after {
    width: calc(100% - 100px);
    height: 250px;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 133.3333%;
  height: 0;
  margin: 30px 0 60px;
}

@media screen and (min-width: 768px) {
  .map {
    padding-top: 44.4444%;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_access_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .top_access_wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .top_access_wrap .top_access_item02 {
    width: 100%;
    max-width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  .top_access_wrap .top_access_item02 {
    width: 100%;
    max-width: 850px;
  }
}

.top_access_item02 dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .top_access_item02 dl {
    flex-direction: row;
    gap: 50px;
  }
}

.top_access_item02 dl:first-child {
  margin-bottom: 50px;
}

.top_access_item02 dt {
  position: relative;
}

.top_access_item02 dt::after {
  content: "";
  background: var(--black);
  width: 100%;
  height: 1px;
  display: block;
}

@media screen and (min-width: 768px) {
  .top_access_item02 dd {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (min-width: 1200px) {
  .top_access_item02 dd {
    max-width: 660px;
  }
}

.top_access_item02 ol {
  counter-reset: number 0;
}

.top_access_item02 ol li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  margin-right: 10px;
}

.top_access_btnbox {
  width: 100%;
  max-width: 360px;
  margin-top: 20px;
}

.top_access_btnbox a {
  padding: 5px 10px;
}

.top_sightseeing {
  padding-bottom: 150px;
}

.top_sightseeing .top_activity_swiper_container {
  padding-bottom: 0;
}

.top_sightseeing_textbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 820px) {
  .top_sightseeing_textbox {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}

/***************************

object/object/project/_food.scss

***************************/
.food01 {
  margin-bottom: 150px;
}

.food01_wrap {
  display: grid;
  grid-template-areas: "a""b""c";
  align-items: center;
  justify-items: center;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .food01_wrap {
    grid-template-areas: "b a ""b c";
    gap: 20px;
  }
}

@media screen and (min-width: 1150px) {
  .food01_wrap {
    grid-template-areas: "a b c";
    gap: 20px;
  }
}

.food_left_img {
  grid-area: a;
  /* width: 50%; */
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}

@media screen and (min-width: 540px) {
  .food_left_img {
    width: 250px;
  }
}

@media screen and (min-width: 768px) {
  .food_left_img {
    margin-right: auto;
  }
}

@media screen and (min-width: 1150px) {
  .food_left_img {
    width: auto;
    margin-right: auto;
  }
}

.food_left_img img {
  text-align: right;
}

.food_center_box {
  grid-area: b;
  width: 100%;
  max-width: 360px;
}

.food_right_img {
  grid-area: c;
  /* width: 50%; */
  margin-right: auto;
  margin-left: calc(50% - 50vw);
}

.food_right_img img {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .food_right_img {
    width: 300px;
    margin-left: auto;
  }
}

@media screen and (min-width: 1150px) {
  .food_right_img {
    width: auto;
    margin-left: auto;
  }
}

.time {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--dm-sans);
  border-bottom: 1px solid var(--black);
  display: inline-block;
  margin-top: 12px;
}

.food_lead_text {
  position: relative;
  z-index: 6;
  line-height: 2.1;
  margin-bottom: 50px;
}

.food_lead_text br {
  display: none;
}

@media screen and (min-width: 690px) {
  .food_lead_text br {
    display: block;
  }
}

.bd_b {
  border-bottom: 1px solid var(--black);
}

.food02 {
  background: linear-gradient(#F6F8FA, transparent);
}

.food02 .deco::before {
  background: #A1BBDC;
}

.food03 {
  background: linear-gradient(#FFFCEB, transparent);
}

.food03 .title07 span {
  color: #FCD57B;
}

.food03 .deco::before {
  background: #FCD57B;
}

.food04 {
  background: linear-gradient(#FFF6F7, transparent);
}

.food04 .title07 span {
  color: #EC929B;
}

.food04 .deco::before {
  background: #EC929B;
}

.food_contents {
  padding-top: 90px;
  padding-bottom: 100px;
}

.food_swiper_container {
  width: 100%;
  max-width: 960px;
}

.mySwiper-food-thum {
  width: 100%;
  max-width: 508px;
  margin-top: 15px;
}

.mySwiper-food-thum .swiper-slide {
  position: relative;
}

.mySwiper-food-thum .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.mySwiper-food-thum .swiper-slide-thumb-active::before {
  background: transparent;
}

.food_menu_title {
  font-size: 14px;
  font-family: var(--dm-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.food_menu_title::before {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  display: block;
}

.deco {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 10px;
}

.deco::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #D8DFE8;
  border-radius: 50%;
  margin-right: 8px;
}

.food_contents_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: var(--white);
  position: relative;
}

@media screen and (min-width: 1400px) {
  .food_contents_wrap {
    justify-content: flex-end;
  }

  .food_contents_wrap.odd {
    flex-direction: row;
  }

  .food_contents_wrap.odd .food_swiper_container {
    margin-left: calc(50% - 50vw);
    margin-right: auto;
  }

  .food_contents_wrap.odd::after {
    content: "";
    width: 100px;
    height: 100%;
    background: #ffffff;
    display: block;
    position: absolute;
    right: -100px;
    top: 0;
  }

  .food_contents_wrap.even {
    flex-direction: row-reverse;
  }

  .food_contents_wrap.even .food_swiper_container {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }

  .food_contents_wrap.even::after {
    content: "";
    width: 100px;
    height: 100%;
    background: #ffffff;
    display: block;
    position: absolute;
    left: -100px;
    top: 0;
  }
}

.bd_gray {
  border: 1px solid #D8DFE8;
}

.food05 .bd_gray {
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .food05 .bd_gray {
    padding: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .food05 .bd_gray {
    padding: 60px 100px;
  }
}

.food05_contents {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .food05_contents {
    margin-top: 60px;
  }
}

@media screen and (min-width: 960px) {
  .food05_contents {
    flex-direction: row;
    align-items: flex-start;
  }
}

.food05_text_box {
  width: 100%;
  max-width: 500px;
}

/***************************

下層共通

***************************/
.page_mv_container {
  position: relative;
}

.page_mv_text_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 5;
}

.page_mv_text_box p br {
  display: none;
}

@media screen and (min-width: 600px) {
  .page_mv_text_box p br {
    display: block;
  }
}

.page_mv_img {
  height: 280px;
}

.page_mv_img.type02 {
  height: 500px;
}

@media screen and (min-width: 1024px) {
  .page_mv_img.type02 {
    height: auto;
  }

  .page_mv_img {
    height: 540px;
  }
}

.page_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec_first {
  padding-top: 100px;
}

@media screen and (min-width: 768px) {
  .sec_first {
    padding-top: 150px;
  }
}

.sec_last {
  padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .sec_last {
    padding-bottom: 150px;
  }
}

.sec_last.type02 {
  padding-bottom: 150px;
}

@media screen and (min-width: 768px) {
  .sec_last.type02 {
    padding-bottom: 200px;
  }
}

.page-anchor_box {
  padding: 80px 0 100px;
}

@media screen and (min-width: 768px) {
  .page-anchor_box {
    padding: 100px 0 120px;
  }
}

.page-anchor {
  gap: 5px 20px;
}

.page-anchor a {
  border-bottom: 1px solid #D8DFE8;
  padding-bottom: 15px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.page-anchor a span {
  color: #A0A8B5;
  font-size: 12px;
  font-family: var(--dm-sans);
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}

.page-anchor a span.--blue {
  color: var(--blue01);
  background: var(--blue02);
  padding: 1px 10px;
  border-radius: 3px;
}

.page-anchor a span.--orange {
  color: var(--orange01);
  background: var(--orange02);
  padding: 1px 10px;
  border-radius: 3px;
}

.page-anchor a span.--yellow {
  color: var(--yellow01);
  background: var(--yellow02);
  padding: 1px 10px;
  border-radius: 3px;
}

.page-anchor a:hover i {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.page-anchor li {
  width: 100%;
  /* max-width: calc(50% - 20px); */
}

@media screen and (min-width: 690px) {
  .page-anchor {
    gap: 10px 20px;
  }

  .page-anchor li {
    width: 100%;
    max-width: calc(33.3333333333% - 20px);
  }

  .page-anchor.column-2 li {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .page-anchor {
    gap: 10px 30px;
  }

  .page-anchor li {
    width: 100%;
    max-width: calc(20% - 30px);
  }

  .page-anchor.column-2 li {
    width: 100%;
    max-width: 360px;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.news_detail_title {
  margin-bottom: 40px;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .news_detail_title {
    margin-bottom: 80px;
    margin-top: 20px;
  }
}

/***************************

object/object/project/_contact.scss

***************************/
.contact_thanks_contents {
  margin: 40px 0 80px;
}

@media screen and (min-width: 768px) {
  .contact_thanks_contents {
    margin: 40px 0 100px;
  }
}

.contact_thanks_contents.ja {
  margin: 40px 0 60px;
}

@media screen and (min-width: 768px) {
  .contact_thanks_contents.ja {
    margin: 40px 0 70px;
  }
}

.contact .t-center {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .contact .t-center {
    text-align: center;
  }
}

.contact_list {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  gap: 10px 30px;
  margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .contact_list {
    margin-bottom: 90px;
  }
}

.contact_list li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact_list li {
    max-width: calc(50% - 30px);
  }
}

/***************************

object/object/project/_faq.scss

***************************/
.faq_list {
  margin-top: 60px;
}

.faq_box:last-child .faq_title {
  border-bottom: 1px solid #D8DFE8;
}

.faq_title {
  font-size: 16px;
  letter-spacing: 0.1em;
  border-top: 1px solid #D8DFE8;
  background: #F6F8FA;
  padding: 20px 25px;
  position: relative;
  transition: all 0.5s;
  padding-right: 40px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 15px;
}

.faq_title span {
  font-size: 18px;
  color: var(--blue);
}

.faq_title::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--black);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.faq_title::after {
  content: "";
  width: 2px;
  height: 12px;
  background: var(--black);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
}

.faq_title.active {
  background: var(--blue);
  color: var(--white);
}

.faq_title.active::after {
  opacity: 0;
  background: var(--white);
}

.faq_title.active span {
  color: var(--white);
}

.faq_title.active::before {
  background: var(--white);
}

.faq_contents {
  display: none;
}

.faq_contents_box {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 15px;
  padding: 20px 25px;
  padding-bottom: 50px;
}

/***************************

object/object/project/_activity.scss

***************************/
.activity01 .title06,
.activity02 .title06 {
  line-height: 1.5;
}

.activity01 .title06 br,
.activity02 .title06 br {
  display: block;
}

@media screen and (min-width: 540px) {

  .activity01 .title06 br,
  .activity02 .title06 br {
    display: none;
  }
}

.activity_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 30px;
  margin-top: 60px;
}

@media screen and (min-width: 960px) {
  .activity_list {
    gap: 60px 40px;
  }
}

@media screen and (min-width: 960px) {
  .activity_item {
    width: 100%;
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1024px) {
  .activity_item {
    width: 100%;
    max-width: calc(33.3333333333% - 30px);
  }
}

.activity_img img {
  width: 100%;
}

.activity_title {
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
}

.activity_text {
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.activity_contents_item {
  border-bottom: 1px solid #D8DFE8;
  display: grid;
  grid-template-columns: 90px 1fr;
}

.activity_contents_item:first-child {
  border-top: 1px solid #D8DFE8;
}

.activity_contents_item dd::before {
  content: ":";
  margin-right: 10px;
}

.activity_contents_list {
  margin-top: 20px;
}

.activity_contents_item {
  padding: 10px;
  padding-left: 0;
  font-size: 14px;
}

.activity_link_list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity_link_list a {
  padding-top: 5px;
  padding-bottom: 5px;
}

/***************************

object/object/project/_room.scss

***************************/
/* .room01 .title03 {
  margin-bottom: 100px;
} */


.attraction_list {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .attraction_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.attraction_item {
  background: rgba(246, 248, 250, 0.95);
}

@media screen and (min-width: 960px) {
  .attraction_item {
    width: 100%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .attraction_item {
    max-width: 33.3333333333%;
  }

  .attraction_item:nth-child(even) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1400px) {
  .attraction_item:nth-child(even) {
    margin-top: 90px;
  }
}

.attraction_textbox {
  width: 100%;
  max-width: 473px;
  margin: 0 auto;
  padding: 30px;
  padding-bottom: 50px;
}

@media screen and (min-width: 690px) {
  .attraction_textbox {
    padding-top: 50px;
  }
}

.room_type {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--dm-sans);
  letter-spacing: 0.05em;
  border-radius: 3px;
  background: var(--l-gray);
  border: 1px solid var(--black);
  padding: 3px 15px;
}

.room_type_title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room_type_title span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: var(--l-gray);
  color: var(--white);
  padding: 1px 5px;
}

.room_type_title img {
  width: 100px;
}

@media screen and (min-width: 540px) {
  .room_type_title {
    gap: 30px;
  }

  .room_type_title span {
    font-size: 18px;
    padding: 1px 15px;
  }

  .room_type_title img {
    width: auto;
  }
}

@media screen and (min-width: 1520px) {
  .food_contents_wrap.odd .room_type_title {
    justify-content: flex-end;
    margin-right: -100px;
  }
}

@media screen and (min-width: 1520px) {
  .food_contents_wrap.even .room_type_title {
    margin-left: -100px;
  }
}

.room_contents .title07 {
  margin-top: 20px;
}

.room_contents .room_info .activity_contents_item:first-child {
  border-top: 1px solid transparent;
}

.room_contents.--blue .room_type {
  color: var(--blue01);
  background: var(--blue02);
  border: 1px solid var(--blue01);
}

.room_contents.--blue .title07 {
  color: var(--blue01);
}

.room_contents.--blue .title07.type02 {
  flex-direction: row;
}

.room_contents.--blue .title07.type02::before,
.room_contents.--blue .title07.type02::after {
  background: var(--blue01);
}

.room_contents.--blue .room_type_title span {
  background: #00A4F8;
}

.room_contents.--blue .room_info {
  background: #EFF8FC;
}

.room_contents.--blue .btn05 {
  color: var(--white);
  background: var(--blue01);
  border: 1px solid var(--blue01);
}

.room_contents.--blue .btn05:hover {
  color: var(--blue01);
  border: 1px solid var(--blue01);
  background: var(--white);
}

.room_contents.--orange .room_type {
  color: var(--orange01);
  background: var(--orange02);
  border: 1px solid var(--orange01);
}

.room_contents.--orange .title07 {
  color: var(--orange01);
}

.room_contents.--orange .title07.type02 {
  flex-direction: row;
}

.room_contents.--orange .title07.type02::before,
.room_contents.--orange .title07.type02::after {
  background: var(--orange01);
}

.room_contents.--orange .room_type_title span {
  background: var(--orange01);
}

.room_contents.--orange .room_info {
  background: #FFF7F3;
}

.room_contents.--orange .btn05 {
  color: var(--white);
  background: var(--orange01);
  border: 1px solid var(--orange01);
}

.room_contents.--orange .btn05:hover {
  color: var(--orange01);
  border: 1px solid var(--orange01);
  background: var(--white);
}

.room_contents.--yellow .room_type {
  color: var(--yellow01);
  background: var(--yellow02);
  border: 1px solid var(--yellow01);
}

.room_contents.--yellow .title07 {
  color: var(--yellow01);
}

.room_contents.--yellow .title07.type02 {
  flex-direction: row;
}

.room_contents.--yellow .title07.type02::before,
.room_contents.--yellow .title07.type02::after {
  background: var(--yellow01);
}

.room_contents.--yellow .room_type_title span {
  background: var(--yellow01);
}

.room_contents.--yellow .room_info {
  background: #FFFEE6;
}

.room_contents.--yellow .btn05 {
  color: var(--white);
  background: var(--yellow01);
  border: 1px solid var(--yellow01);
}

.room_contents.--yellow .btn05:hover {
  color: var(--yellow01);
  border: 1px solid var(--yellow01);
  background: var(--white);
}

@media screen and (min-width: 1400px) {
  .room_contents .food_contents_wrap.odd {
    padding-left: 80px;
  }
}

@media screen and (min-width: 1400px) {
  .room_contents .food_contents_wrap.even {
    padding-right: 80px;
  }
}

.room_contents .activity_contents_list {
  width: 100%;
  max-width: 450px;
}

.room_info_bg {
  padding-top: 110px;
  position: relative;
}

.room_info_bg .room_type_wrap {
  position: relative;
  z-index: 5;
}

.room_info_bg .food_contents_wrap {
  background: transparent;
}

.room_info_bg .food_contents_wrap .food_menu_list {
  padding-top: 30px;
  padding-bottom: 100px;
}

@media screen and (min-width: 1400px) {
  .room_info_bg .food_contents_wrap .food_menu_list {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

.room_info_bg .food_contents_wrap::after {
  top: 146px;
  height: calc(100% - 146px);
}

.room_info_bg .food_contents_wrap::before {
  content: "";
  width: 100%;
  height: calc(100% - 146px);
  bottom: 0;
  right: 0;
  display: block;
  background: var(--white);
  position: absolute;
  z-index: 0;
}

.room_info_bg::before {
  content: "";
  width: 100%;
  height: calc(100% - 256px);
  bottom: 0;
  display: block;
  background: var(--white);
  position: absolute;
  z-index: 0;
}

@media screen and (min-width: 540px) {
  .room_info_bg::before {
    width: 50%;
  }
}

@media screen and (min-width: 1400px) {
  .room_info_bg:has(.food_contents_wrap.even)::before {
    right: 0;
  }

  .room_info_bg:has(.food_contents_wrap.odd)::before {
    left: 0;
  }
}

.room_lead_title {
  position: relative;
  z-index: 7;
  margin-top: 60px;
}

.facility_list {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .facility_list {
    margin-top: 60px;
  }
}

.facility_title {
  font-size: 16px;
  font-family: var(--dm-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facility_title::before {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  display: block;
}

@media screen and (min-width: 768px) {
  .facility_title {
    width: 100%;
    max-width: 200px;
  }
}

@media screen and (min-width: 960px) {
  .facility_title {
    max-width: 280px;
  }
}

.facility_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #D8DFE8;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .facility_box {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

.facility_item {
  width: 100%;
}

.facility_item ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5px;
}

@media screen and (min-width: 768px) {
  .facility_item ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.facility_item ul .deco {
  margin-bottom: 0;
}

.facility_img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (min-width: 960px) {
  .facility_img_list {
    justify-content: space-between;
    margin-top: 60px;
  }
}

.facility_img_item {
  width: 100%;
  max-width: calc(50% - 20px);
}

@media screen and (min-width: 768px) {
  .facility_img_item {
    max-width: calc(33.3333333333% - 20px);
  }
}

@media screen and (min-width: 960px) {
  .facility_img_item {
    max-width: calc(25% - 20px);
  }
}

@media screen and (min-width: 1024px) {
  .facility_img_item {
    max-width: calc(20% - 20px);
  }
}

.facility_img_item figcaption {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

@media screen and (min-width: 540px) {
  .room06 .title06 br {
    display: none;
  }
}

.reception_list {
  margin-top: 40px;
  gap: 30px;
}

@media screen and (min-width: 960px) {
  .reception_list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 959px) {
  .room01 .container_1720 {
    padding-left: 0;
    padding-right: 0;
  }

  .room01 .title03.t-center {
    padding-left: 30px;
    padding-right: 30px;
  }

  .attraction_textbox {
    padding-bottom: 85px;
  }
  .attraction_list{
    display: block;
  }
}
/***************************

object/object/project/_en.scss

***************************/
.en .header_reserve_link {
  padding: 30px 38px;
}

.en .top_mv_textbox {
  max-width: 800px;
}

.en .top_mv_textbox .btn01 {
  max-width: 380px;
  padding-right: 20px;
  padding-left: 20px;
}

.en .footer__nav_box01 .btn03 {
  max-width: 100%;
}

.en .footer__nav_box03 a {
  padding: 25px;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--black);
}

.fc--white {
  color: var(--white);
}

.fc--black {
  color: var(--black);
}

.fc--blue {
  color: #009CCB;
}

.fc--red {
  color: var(--red);
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.gap5-30 {
  gap: 5px 30px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.wpcf7-spinner {
  display: none;
}

.br_sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

.wpcf7-previous {
  cursor: pointer;
  border: none;
  font-family: var(--font);
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block !important;
}

.btn04:has(.wpcf7-previous) {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.btn04:has(.wpcf7-previous):hover {
  transition: all 0.5s;
}

.btn04:has(.wpcf7-previous):hover .wpcf7-previous {
  background: transparent;
  color: var(--white);
}

.font-en {
  line-height: 1.7 !important;
  font-family: var(--dm-sans) !important;
}

.en .top_lead_title {
  line-height: 1.5;
}

.en .food_lead_text {
  line-height: 1.6;
}

.en .footer_reservation p {
  line-height: 1.6;
}

.ml-15.ml-en {
  margin-left: 50px;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .ml-15.ml-en {
    margin-left: 15px;
  }
}

/*# sourceMappingURL=style.css.map */