@charset "UTF-8";
/* primitive
-----------------*/
/* font size
-----------------*/
/* space
-----------------*/
/* base color
-----------------*/
/* semantic
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
audio,
video,
canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  color: #333;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::selection {
  background: rgba(65, 50, 110, 0.6);
  color: #faf9f0;
}
*::-moz-selection {
  background: rgba(65, 50, 110, 0.6);
  color: #faf9f0;
}

a,
input[type=submit] {
  transition: all 0.3s ease-out;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  -webkit-overflow-scrolling: touch;
  background-color: #f2f0e4;
}

body,
input,
textarea {
  color: #5e584d;
  line-height: 1.6;
}

a:link,
a:visited {
  color: #41326e;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

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

hr,
hr.wp-block-separator {
  background-color: #d6d3c1;
  border: none;
  clear: both;
  width: 100%;
  height: 1px;
  margin: 55px 0;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style: disc;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 1.5em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: 700;
}
dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}
dd:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 500;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}
blockquote::before, blockquote::after {
  content: "";
}

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 0.8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th,
td {
  padding: 0.5em 0.8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: transparent;
}

th {
  font-weight: 400;
}

/* フェードイン */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードアウト */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes scroll-icon-effect {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
input[type=number],
textarea {
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
input[type=number],
input[type=date],
textarea {
  width: 100%;
  border: 1px solid #d6d3c1;
  box-shadow: none;
  vertical-align: middle;
  padding: 13px 21px;
  border-radius: 6px;
  color: #5e584d;
  background-color: #faf9f0;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=password],
  input[type=tel],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=number],
  input[type=date],
  textarea {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=password],
  input[type=tel],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=number],
  input[type=date],
  textarea {
    padding: 3.4666666667vw 5.6vw;
    border-radius: 1.6vw;
  }
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=date]::placeholder,
textarea::placeholder {
  color: rgba(94, 88, 77, 0.3);
}
input[type=text]:placeholder-shown,
input[type=password]:placeholder-shown,
input[type=tel]:placeholder-shown,
input[type=email]:placeholder-shown,
input[type=url]:placeholder-shown,
input[type=search]:placeholder-shown,
input[type=number]:placeholder-shown,
input[type=date]:placeholder-shown,
textarea:placeholder-shown {
  background-color: #faf9f0;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=date]:focus,
textarea:focus {
  background: #fff;
  color: #5e584d;
  border-color: #5e584d;
}
input[type=text].wpcf7-not-valid,
input[type=password].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=url].wpcf7-not-valid,
input[type=search].wpcf7-not-valid,
input[type=number].wpcf7-not-valid,
input[type=date].wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: #c40000;
  border-width: 2px;
}
input[type=text][readonly],
input[type=password][readonly],
input[type=tel][readonly],
input[type=email][readonly],
input[type=url][readonly],
input[type=search][readonly],
input[type=number][readonly],
input[type=date][readonly],
textarea[readonly] {
  border-color: transparent;
  background: transparent;
  color: #5e584d;
}

textarea {
  height: 240px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 53.3333333333vw;
    padding: 3.7333333333vw;
  }
}

input[disabled][readonly],
select[disabled][readonly],
textarea[disabled][readonly] {
  background-color: #fff;
  border-color: rgb(166, 166, 166);
}

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

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
  padding: 16px 24px;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color ease-out 0.3s, border-color ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    justify-content: center;
    height: 16vw;
    padding: 1.6vw 2.1333333333vw;
  }
}
.page-under .header {
  position: fixed;
}
.header__has-color .header, .page-page:not(.page-rooms) .header {
  background-color: #f2f0e4;
  border-color: #d6d3c1;
}
.view-nav .header {
  border-color: transparent;
}
.header__logo {
  width: 105px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .header__logo {
    position: static;
    width: 23.2vw;
    margin-left: 1.6vw;
  }
}
.header__logo svg {
  width: 100%;
}
.header__logo path {
  opacity: 0;
  transition: all ease 0.2s;
}
.view-nav .header__logo path {
  opacity: 0 !important;
}
.page-page.page-rooms .header__logo path {
  fill: #fff;
  opacity: 1;
}
.page-page.page-rooms.header__has-color .header__logo path {
  fill: #41326e;
}
.page-page:not(.page-rooms) .header__logo path, .page-single .header__logo path, .header__has-color .header__logo path, .under-nav .header__logo path {
  opacity: 1;
}
.header__menu {
  display: flex;
  gap: 24px;
  align-items: center;
  transition: transform 1s cubic-bezier(0.25, 1.25, 0.5, 1);
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .header__menu {
    gap: 2.1333333333vw;
  }
}
.is-init .header__menu {
  transform: translateY(0);
}
.header__book {
  margin: 0;
}
.header .btn {
  padding: 8px 21px;
  min-width: 138px;
  color: #faf9f0;
  background-color: rgba(250, 249, 240, 0.2);
  backdrop-filter: blur(50px);
}
.header .btn:visited {
  color: #faf9f0;
}
@media screen and (max-width: 767px) {
  .header .btn {
    padding: 1.3333333333vw 3.4666666667vw;
    min-width: 28.5333333333vw;
  }
}
.view-nav .header .btn {
  color: #41326e;
  background-color: #faf9f0;
}
.page-page:not(.page-rooms) .header .btn, .page-single .header .btn, .header__has-color .header .btn, .under-nav .header .btn {
  color: #41326e;
  background-color: #faf9f0;
}
.header__nav-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background-color ease-out 0.3s, backdrop-filter ease-out 0.3s, opacity ease-out 0.3s;
  backdrop-filter: blur(0);
}
@media screen and (max-width: 767px) {
  .header__nav-trigger {
    width: 12.8vw;
    height: 12.8vw;
  }
}
@media screen and (min-width: 767px) {
  .header__nav-trigger:hover {
    backdrop-filter: blur(50px);
    background-color: rgba(250, 249, 240, 0.2);
    opacity: 0.6;
  }
}
.header__nav-trigger .screen-reader-text {
  display: block;
  width: 40px;
  height: 2px;
  color: #fff;
  background: #fff;
  border-radius: 2px;
  overflow-x: hidden;
  transition: all ease 0.2s;
  opacity: 0;
}
.header__nav-trigger::before, .header__nav-trigger::after {
  position: absolute;
  top: calc(50% - 1px);
  display: block;
  content: "";
  width: 32px;
  height: 1px;
  background: #faf9f0;
}
@media screen and (max-width: 767px) {
  .header__nav-trigger::before, .header__nav-trigger::after {
    width: 8.5333333333vw;
    height: 1px;
  }
}
.view-nav .header__nav-trigger::before, .view-nav .header__nav-trigger::after {
  background: #d6d3c1;
}
.header__nav-trigger::before {
  margin-top: -5px;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .header__nav-trigger::before {
    margin-top: -1.3333333333vw;
  }
}
.view-nav .header__nav-trigger::before {
  transform: rotate(30deg);
  margin-top: 0;
}
.header__nav-trigger::after {
  margin-top: 5px;
  transition: all ease 0.4s;
}
@media screen and (max-width: 767px) {
  .header__nav-trigger::after {
    margin-top: 1.3333333333vw;
  }
}
.view-nav .header__nav-trigger::after {
  transform: rotate(-30deg);
  margin-top: 0;
}
.page-page:not(.page-rooms) .header__nav-trigger::before, .page-page:not(.page-rooms) .header__nav-trigger::after, .page-single .header__nav-trigger::before, .page-single .header__nav-trigger::after, .header__has-color .header__nav-trigger::before, .header__has-color .header__nav-trigger::after, .under-nav .header__nav-trigger::before, .under-nav .header__nav-trigger::after, .view-nav .header__nav-trigger::before, .view-nav .header__nav-trigger::after {
  background: #80796f;
}
@media screen and (min-width: 767px) {
  .page-page:not(.page-rooms) .header__nav-trigger:hover, .page-single .header__nav-trigger:hover, .header__has-color .header__nav-trigger:hover, .under-nav .header__nav-trigger:hover, .view-nav .header__nav-trigger:hover {
    background-color: #faf9f0;
  }
}
@media screen and (min-width: 767px) {
  .view-nav .header__nav-trigger:hover {
    background-color: #faf9f0;
    backdrop-filter: blur(0);
  }
  .view-nav .header__nav-trigger:hover::before {
    transform: rotate(15deg);
  }
  .view-nav .header__nav-trigger:hover::after {
    transform: rotate(-15deg);
  }
}

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f2f0e4;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate(0, -10%);
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .global-nav {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.global-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 1100px;
  gap: 0 120px;
}
@media screen and (max-width: 767px) {
  .global-nav__inner {
    display: block;
    min-width: 100%;
    margin-top: 16vw;
    padding: 9.0666666667vw 3.4666666667vw;
  }
}
.view-nav .global-nav {
  pointer-events: auto;
  opacity: 1;
  transform: translate(0, 0);
}
.global-nav__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 406px;
  gap: 0 34px;
}
@media screen and (max-width: 767px) {
  .global-nav__content {
    padding: 0 9.0666666667vw;
    height: auto;
    margin-top: 0;
    width: 100%;
  }
}
.global-nav__header {
  display: block;
}
@media screen and (max-width: 767px) {
  .global-nav__header {
    margin-bottom: 9.0666666667vw;
    text-align: center;
  }
  .global-nav__header svg {
    width: 58.4vw;
  }
}
.global-nav__sns {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 34px 0 0 0;
  list-style: none;
  gap: 8px;
}
.global-nav__sns a {
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #faf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity ease-out 0.3s;
}
.global-nav__sns a svg path {
  fill: #41326e;
}
@media screen and (max-width: 767px) {
  .global-nav__sns a {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .global-nav__sns a:hover {
    opacity: 0.6;
  }
}
.global-nav__sns svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .global-nav__sns svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__sns {
    margin: 5.6vw 0 0 0;
    gap: 2.1333333333vw;
  }
}
.global-nav__site-nav {
  padding-left: 0;
  margin: 0;
  list-style: none;
  width: 271px;
}
@media screen and (max-width: 767px) {
  .global-nav__site-nav {
    width: 100%;
    min-width: auto;
    padding: 0;
  }
}
.global-nav__site-nav-item {
  margin-bottom: 34px;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .global-nav__site-nav-item {
    font-size: 5.6vw;
  }
}
.global-nav__site-nav-item a {
  color: #41326e;
  transition: opacity ease-out 0.3s;
}
@media screen and (min-width: 767px) {
  .global-nav__site-nav-item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__site-nav-item {
    min-height: 11.7333333333vw;
    margin-bottom: 0.8vw;
    padding: 2.5333333333vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.global-nav__site-nav-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .global-nav__site-nav-item:last-of-type {
    margin-bottom: 0.8vw;
  }
}
.global-nav__links {
  margin-top: 21px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.global-nav__links .btn {
  color: #41326e;
  padding: 8px 16px;
  min-width: 196px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .global-nav__links .btn {
    font-size: 3.4666666667vw;
  }
}
.global-nav__links .btn svg {
  width: 16px;
  height: 16px;
}
.global-nav__links .btn svg path {
  stroke: #41326e;
}
@media screen and (max-width: 767px) {
  .global-nav__links .btn svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__links {
    width: 100%;
    gap: 2.6666666667vw;
    padding: 0;
    margin-top: 5.6vw;
  }
}

.footer {
  width: 100%;
  background: #35374d;
  color: #faf9f0;
  position: relative;
}
.footer__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  padding: 120px 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 21.3333333333vw 3.4666666667vw 8vw;
    flex-direction: column;
    gap: 0;
  }
}
.footer__logo {
  width: 255px;
  margin: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10.6666666667vw;
  }
}
.footer__logo h4 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .footer__logo h4 {
    margin-bottom: 6.6666666667vw;
  }
}
.footer__logo h4 svg {
  width: 184px;
}
@media screen and (max-width: 767px) {
  .footer__logo h4 svg {
    width: 40vw;
  }
}
.footer__sns {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    justify-content: center;
    gap: 4.2666666667vw;
  }
}
.footer__sns a {
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .footer__sns a {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
.footer__sns a:hover {
  opacity: 0.6;
}
.footer__sns svg {
  width: 24px;
  height: 24px;
}
.footer__sns svg path {
  transition: fill ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__sns svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.footer__desc {
  width: 825px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer__desc {
    width: 100%;
    margin-bottom: 16vw;
    padding: 0 5.6vw;
  }
}
.footer__desc dl {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 56px;
  gap: 24px 32px;
}
@media screen and (max-width: 767px) {
  .footer__desc dl {
    flex-direction: column;
    gap: 0;
    margin-bottom: 10.6666666667vw;
  }
}
.footer__desc dt {
  width: 180px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__desc dt {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__desc dt {
    width: 100%;
    margin-bottom: 2.1333333333vw;
  }
}
.footer__desc dd {
  width: calc(100% - 212px);
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__desc dd {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__desc dd {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .footer__desc dd:last-of-type {
    margin-bottom: 0;
  }
}
html[lang=en] .footer__desc dd {
  line-height: 1.5;
  padding-left: 1em;
}
.footer__desc a {
  text-decoration: underline;
  color: #faf9f0;
}
.footer__desc a:visited {
  color: #faf9f0;
}
.footer__desc p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__desc p {
    font-size: 3.4666666667vw;
  }
}
.footer__facilities {
  background-color: #2e3044;
  width: 100%;
  margin-bottom: 60px;
  padding: 40px;
  color: #faf9f0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .footer__facilities {
    margin-bottom: 24vw;
    padding: 8vw 8.5333333333vw 10.6666666667vw;
    gap: 8.5333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.footer__facilities-inner {
  display: flex;
  flex-flow: column wrap;
  align-items: stretch;
  align-content: space-between;
  justify-content: center;
  max-width: 930px;
  height: 130px;
  margin: 0 auto;
  gap: 8px 20px;
}
@media screen and (max-width: 900px) {
  .footer__facilities-inner {
    align-items: center;
    align-content: center;
    height: auto;
    gap: 0;
  }
}
.footer__facilities-inner .btn {
  order: 2;
  padding: 10px 24px;
  min-width: 165px;
  border: 1px solid #faf9f0;
  border-radius: 50px;
  background-color: transparent;
  color: #faf9f0;
}
.footer__facilities-inner .btn:visited {
  color: #faf9f0;
}
.footer__facilities-inner .btn svg path {
  stroke: #faf9f0;
}
@media screen and (max-width: 900px) {
  .footer__facilities-inner .btn {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .footer__facilities-inner .btn {
    min-width: 37.3333333333vw;
    height: 12.8vw;
    padding: 2.6666666667vw 6.4vw;
    border-radius: 13.3333333333vw;
  }
}
.footer__facility-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 70px;
  order: 1;
}
@media screen and (max-width: 900px) {
  .footer__facility-header {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__facility-header {
    width: 49.3333333333vw;
    height: 16vw;
  }
}
.footer__facility-header svg {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .footer__facility-header svg {
    width: 37.3333333333vw;
  }
}
.footer__facility-items {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  margin: 0;
  order: 3;
}
@media screen and (max-width: 900px) {
  .footer__facility-items {
    justify-content: center;
    order: 2;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .footer__facility-items {
    gap: 8vw;
    padding-top: 3.2vw;
    margin: 3.2vw 0 8.5333333333vw;
  }
}
.footer__facility-items::before {
  content: "";
  display: block;
  width: 1px;
  height: 53px;
  background-color: #faf9f0;
}
@media screen and (max-width: 900px) {
  .footer__facility-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__facility-items::before {
    width: 10.6666666667vw;
  }
}
.footer__facility-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  padding: 16px 8px;
}
@media screen and (max-width: 767px) {
  .footer__facility-item {
    width: 20vw;
    height: 16vw;
    padding: 2.4vw;
  }
}
.footer__facility-item svg {
  width: 100%;
  height: 100%;
}
.footer__nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 36px 0 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    justify-content: center;
    gap: 5.3333333333vw 8vw;
    margin: 0 0 8vw 0;
  }
  .footer__nav li:first-of-type {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer__nav a {
  color: #faf9f0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__nav a {
    font-size: 3.4666666667vw;
  }
}
.footer .copyright {
  margin: 0;
  opacity: 0.6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 3.7333333333vw;
  }
}

html,
body {
  width: 100%;
}

html {
  background: #faf9f0;
  font-feature-settings: "palt" on;
}
html img {
  vertical-align: bottom;
}

main {
  z-index: 2;
}

.noscript {
  display: none;
}

.is-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp,
  span.is-sp,
  br.is-sp {
    display: initial !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("ajax-loader.gif") center center no-repeat;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.slick-dots li {
  position: relative;
  display: block;
  height: 2.6vw;
  width: 2.6vw;
  margin: 0 1.7vw 0 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 2.6vw;
  width: 2.6vw;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 0;
  cursor: pointer;
  text-indent: -9999em;
  opacity: 0.5;
  background: #000;
  border-radius: 55%;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

@media screen and (min-width: 767px) {
  .slick-dots li {
    height: 12px;
    width: 12px;
    margin: 0 8px 0 0;
  }
  .slick-dots li button {
    height: 12px;
    width: 12px;
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
  left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
  right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/**
	First View
 */
.page-index #main {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}
.page-index .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}
.page-index .toppage-visual {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-index .toppage-visual {
    height: 70vh;
  }
  @supports (-webkit-touch-callout: none) {
    .is-iphone .page-index .toppage-visual, .is-pad .page-index .toppage-visual {
      /* The hack for Safari */
      height: -webkit-fill-available;
    }
  }
}
.page-index .toppage-visual__youtube {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.page-index .toppage-visual__youtube::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
}
.page-index .toppage-visual__youtube iframe {
  position: absolute;
  min-width: 100%;
  min-height: 100vh;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 56.25vw;
  min-height: 100vh;
  width: 100vw;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(var(--overscan, 1.25));
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .page-index .toppage-visual__youtube iframe {
    min-height: 100%;
    height: 52.63vw;
    transform: translate(-50%, -50%);
    width: 190vh;
    min-width: none;
  }
}
.page-index .toppage-visual__scroll {
  display: inline-flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 35px;
  margin: 0;
  color: #faf9f0;
  transition: transform 1s cubic-bezier(0.25, 1.25, 0.5, 1);
  transform: translateY(100%);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .page-index .toppage-visual__scroll {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page-index .toppage-visual__scroll {
    gap: 2.1333333333vw;
    bottom: 8.2666666667vw;
    z-index: 1;
  }
}
.page-index .toppage-visual__scroll::before, .page-index .toppage-visual__scroll::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #f2f0e4;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .page-index .toppage-visual__scroll::before, .page-index .toppage-visual__scroll::after {
    height: 14.6666666667vw;
  }
}
.page-index .toppage-visual__scroll::before {
  position: absolute;
  bottom: 0;
  opacity: 0.5;
}
.page-index .toppage-visual__scroll::after {
  animation: scroll-icon-effect 2.4s ease-in-out 0.8s infinite;
}
.page-index.is-init .toppage-visual__scroll {
  transform: translateY(0);
}
.page-index.is-init #main {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
}
.page-index.is-init .footer {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
}

.toppage-about {
  padding: 144px 0;
  background-color: #f2f0e4;
}
@media screen and (max-width: 767px) {
  .toppage-about {
    padding: 23.7333333333vw 3.4666666667vw;
  }
}
.toppage-about__inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage-about__inner {
    padding: 0 3.4666666667vw;
  }
}
.toppage-about__section-title {
  text-align: center;
  color: #41326e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 13px;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .toppage-about__section-title {
    font-size: 4.2666666667vw;
  }
}
.is-animated .toppage-about__section-title span {
  opacity: 1;
}
.is-animated .toppage-about__section-title span::before {
  height: 0;
}
.toppage-about__section-title span {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toppage-about__section-title span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .toppage-about__section-title {
    margin-bottom: 3.4666666667vw;
    gap: 3.4666666667vw;
  }
}
.toppage-about__section-title::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #41326e;
}
@media screen and (max-width: 767px) {
  .toppage-about__section-title::after {
    width: 3.4666666667vw;
  }
}
.toppage-about__title {
  text-align: center;
  margin-bottom: 55px;
  color: #41326e;
  line-height: 1;
}
.toppage-about__title span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.toppage-about__title span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-about__title span {
  opacity: 1;
}
.is-animated .toppage-about__title span::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-about__title span {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-about__title {
    margin-bottom: 14.6666666667vw;
  }
}
.toppage-about__concept-text {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.toppage-about__concept-text div {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.is-animated .toppage-about__concept-text div {
  opacity: 1;
}
.toppage-about__concept-text p {
  text-align: center;
  margin-bottom: 1em;
  color: #80796f;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-about__concept-text p {
    font-size: 3.4666666667vw;
  }
}
.toppage-about__concept-text p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .toppage-about__concept-text {
    gap: 5.6vw;
  }
}

.toppage-gallery {
  background: #ece9db;
  padding: 55px 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .toppage-gallery {
    padding: 14.6666666667vw 0;
  }
}
.toppage-gallery__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  .toppage-gallery__inner {
    padding: 0 3.4666666667vw;
  }
}
.toppage-gallery .slick-slider .slick-track,
.toppage-gallery .slick-slider .slick-list {
  overflow: visible;
  z-index: 1;
}
.toppage-gallery__title {
  color: #41326e;
  text-align: center;
  margin-bottom: 34px;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
.toppage-gallery__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-gallery__title {
  opacity: 1;
}
.is-animated .toppage-gallery__title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-gallery__title {
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-gallery__title {
    margin-bottom: 9.0666666667vw;
  }
}
.toppage-gallery__slider-controller {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.is-animated .toppage-gallery__slider-controller {
  opacity: 1;
}
.toppage-gallery__slider-controller .btn-prev,
.toppage-gallery__slider-controller .btn-next {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  background: #faf9f0;
  z-index: 5;
  cursor: pointer;
  transition: all ease-out 0.3s;
  opacity: 1;
}
.toppage-gallery__slider-controller .btn-prev:hover,
.toppage-gallery__slider-controller .btn-next:hover {
  opacity: 0.6;
}
.toppage-gallery__slider-controller .btn-prev svg,
.toppage-gallery__slider-controller .btn-next svg {
  width: 48px;
  height: 48px;
}
.toppage-gallery__slider-controller .btn-prev.is-disabled,
.toppage-gallery__slider-controller .btn-next.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.toppage-gallery__slider-controller .btn-prev {
  left: 0;
}
.toppage-gallery__slider-controller .btn-next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .toppage-gallery__slider-controller {
    display: none;
  }
}
.toppage-gallery__slider {
  margin-left: -6.5px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-gallery__slider {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .toppage-gallery__slider {
    margin-left: -1.0666666667vw;
    margin-bottom: 9.0666666667vw;
  }
}
.toppage-gallery__slide {
  padding: 0 6.5px;
}
@media screen and (max-width: 767px) {
  .toppage-gallery__slide {
    padding: 0 1.0666666667vw;
  }
}
.toppage-gallery__slide img,
.toppage-gallery__slide video {
  display: block;
  width: 233px;
  height: 155px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .toppage-gallery__slide img,
  .toppage-gallery__slide video {
    width: 62.1333333333vw;
    height: 41.3333333333vw;
  }
}
.toppage-gallery__link {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.is-animated .toppage-gallery__link {
  opacity: 1;
}

.toppage-experience {
  width: 100%;
  padding-top: 144px;
  background: #f2f0e4;
}
@media screen and (max-width: 767px) {
  .toppage-experience {
    padding-top: 23.7333333333vw;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .toppage-experience.is-sticky {
    position: sticky;
    top: 0;
    z-index: 5;
  }
}
.toppage-experience__title {
  margin-bottom: 89px;
  color: #41326e;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.toppage-experience__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-experience__title {
  opacity: 1;
}
.is-animated .toppage-experience__title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-experience__title {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-experience__title {
    margin-bottom: 14.6666666667vw;
  }
}
.toppage-experience__content {
  display: flex;
}
@media screen and (min-width: 767px) {
  .toppage-experience__content {
    position: static;
  }
  .toppage-experience__content:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .toppage-experience__content {
    flex-direction: column-reverse;
    position: sticky;
  }
}
.toppage-experience__content-description {
  width: 50%;
  padding: 89px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  background: #ece9db;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-description {
    width: 100%;
    padding: 14.6666666667vw 9.0666666667vw 23.7333333333vw;
    gap: 5.6vw;
    min-height: 192.5333333333vw;
    justify-content: flex-start;
  }
}
.toppage-experience__title-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 21px;
}
@media screen and (max-width: 767px) {
  .toppage-experience__title-inner {
    gap: 5.6vw;
  }
}
.toppage-experience__content-sub-title {
  color: #41326e;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
.toppage-experience__content-sub-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-experience__content-sub-title {
  opacity: 1;
}
.is-animated .toppage-experience__content-sub-title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-sub-title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-sub-title {
    gap: 1.8666666667vw;
  }
}
.toppage-experience__content-sub-title::before {
  position: absolute;
  top: 0;
  left: 0;
}
.toppage-experience__content-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: #41326e;
}
.is-animated .toppage-experience__content-title span {
  opacity: 1;
}
.is-animated .toppage-experience__content-title span::before {
  height: 0;
}
.toppage-experience__content-title span {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.8em;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-title span {
    font-size: 5.6vw;
  }
}
.toppage-experience__content-title span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.toppage-experience__content-read {
  color: #80796f;
  text-align: justify;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.is-animated .toppage-experience__content-read {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-read {
    font-size: 3.4666666667vw;
  }
}
.toppage-experience__content-read p:last-child {
  margin-bottom: 0;
}
.toppage-experience__content-note {
  color: #80796f;
  text-align: justify;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.is-animated .toppage-experience__content-note {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-note {
    font-size: 3.2vw;
  }
}
.toppage-experience__content-note::before {
  content: "※";
}
.toppage-experience__content-slider-container {
  width: 50%;
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-slider-container {
    width: 100%;
    height: 100vw;
  }
}
.toppage-experience__content-slider-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-slider-btn {
    display: none;
  }
}
.toppage-experience__content-slider-btn .btn-prev,
.toppage-experience__content-slider-btn .btn-next {
  position: absolute;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  border: none;
  padding: 10px;
  background: #faf9f0;
  z-index: 5;
  cursor: pointer;
  transition: all ease 0.6s;
  opacity: 0.6;
}
.toppage-experience__content-slider-btn .btn-prev:hover,
.toppage-experience__content-slider-btn .btn-next:hover {
  background-color: #ece9db;
}
.toppage-experience__content-slider-btn .btn-prev svg,
.toppage-experience__content-slider-btn .btn-next svg {
  width: 24px;
  height: 24px;
}
.toppage-experience__content-slider-btn .btn-prev.is-disabled,
.toppage-experience__content-slider-btn .btn-next.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.toppage-experience__content-slider-btn .btn-prev {
  left: 10px;
}
.toppage-experience__content-slider-btn .btn-next {
  right: 10px;
}
.toppage-experience__content-slider {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.toppage-experience__content-slider .slick-list {
  width: 100%;
  height: 100%;
}
.toppage-experience__content-slider .slick-track {
  height: 100%;
}
.toppage-experience__content-slider .slick-dots {
  justify-content: center;
  bottom: 31px;
  margin: 0;
}
.toppage-experience__content-slider .slick-dots li {
  margin: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toppage-experience__content-slider .slick-dots li.slick-active button, .toppage-experience__content-slider .slick-dots li:hover button {
  opacity: 1;
}
.toppage-experience__content-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background-color: #faf9f0;
  opacity: 0.3;
}
.toppage-experience__content-slide {
  width: 50vw;
}
@media screen and (max-width: 767px) {
  .toppage-experience__content-slide {
    width: 100vw;
    height: 100vw;
  }
}
.toppage-experience__content-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toppage-room {
  width: 100%;
  background-color: #f2f0e4;
  backdrop-filter: blur(30px);
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .toppage-room {
    padding: 23.7333333333vw 0;
    z-index: 10;
    position: relative;
  }
  .toppage-room::before {
    content: "";
    position: absolute;
    top: -80.8vw;
    left: 0;
    width: 100%;
    height: 80.8vw;
    background: linear-gradient(180deg, rgba(158, 155, 140, 0) 0%, rgba(158, 155, 140, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
  }
}
.toppage-room__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage-room__inner {
    width: 100%;
    padding: 0 3.4666666667vw;
  }
}
.toppage-room__image {
  width: 100%;
  margin-bottom: 55px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .toppage-room__image {
    transform: translateY(5.3333333333vw);
    margin-bottom: 9.0666666667vw;
  }
}
.is-animated .toppage-room__image {
  opacity: 1;
  transform: translateY(0);
}
.toppage-room__image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .toppage-room__image img {
    height: 69.6vw;
  }
}
.toppage-room__desc {
  color: #847d73;
  text-align: center;
  margin-bottom: 55px;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.is-animated .toppage-room__desc {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .toppage-room__desc {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-room__desc {
    margin-bottom: 9.0666666667vw;
    padding: 0 3.4666666667vw;
  }
}
.toppage-room__link {
  width: 100%;
  margin: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.is-animated .toppage-room__link {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .toppage-room__link {
    width: 100%;
  }
}
.toppage-room__title {
  color: #41326e;
  text-align: center;
  margin-bottom: 55px;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.toppage-room__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-room__title {
  opacity: 1;
}
.is-animated .toppage-room__title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-room__title {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-room__title {
    margin-bottom: 9.0666666667vw;
  }
}

.toppage-option {
  width: 100%;
  padding: 144px 0;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .toppage-option {
    padding: 23.7333333333vw 0;
    z-index: 10;
  }
}
.toppage-option__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage-option__inner {
    padding: 0 3.4666666667vw;
  }
}
.toppage-option__title {
  margin-bottom: 55px;
  color: #41326e;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.toppage-option__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-option__title {
  opacity: 1;
}
.is-animated .toppage-option__title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-option__title {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-option__title {
    margin-bottom: 9.0666666667vw;
  }
}
.toppage-option__thumbnails {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .toppage-option__thumbnails {
    margin-bottom: 9.0666666667vw;
    gap: 1.3333333333vw;
  }
}
.toppage-option__thumbnail {
  width: calc((100% - 16px) / 3);
}
@media screen and (max-width: 767px) {
  .toppage-option__thumbnail {
    width: calc((100% - 2.6666666667vw) / 3);
    height: 45.0666666667vw;
  }
  .toppage-option__thumbnail img {
    height: 100%;
    object-fit: cover;
  }
}
.toppage-option__desc {
  width: 340px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .toppage-option__desc {
    width: 100%;
    margin-top: 9.0666666667vw;
  }
}
.toppage-option__text {
  color: #847d73;
  margin-bottom: 55px;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.is-animated .toppage-option__text {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .toppage-option__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-option__text {
    margin-bottom: 9.0666666667vw;
    padding: 0 3.4666666667vw;
  }
}
.toppage-option__link {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.is-animated .toppage-option__link {
  opacity: 1;
}

.toppage-news {
  width: 100%;
  background-color: #f2f0e4;
  backdrop-filter: blur(30px);
  padding: 89px 0;
}
@media screen and (max-width: 767px) {
  .toppage-news {
    padding: 23.7333333333vw 3.4666666667vw;
    z-index: 10;
  }
}
.toppage-news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .toppage-news__inner {
    gap: 9.0666666667vw;
    padding: 0 5.6vw;
  }
}
.toppage-news__title {
  color: #41326e;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 1.2em;
  overflow: hidden;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.toppage-news__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-animated .toppage-news__title {
  opacity: 1;
}
.is-animated .toppage-news__title::before {
  height: 0;
}
@media screen and (max-width: 767px) {
  .toppage-news__title {
    font-size: 8.5333333333vw;
  }
}
.toppage-news .readMore {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: center;
  padding-top: 48px;
}
.toppage-news .readMore button {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  background: none;
  outline: none;
  border: none;
}
.toppage-news .readMore span {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  padding-bottom: 6px;
  border-bottom: 2px solid #0e588d;
}
.toppage-news .readMore span::before {
  display: inline-block;
  content: "READ MORE";
  color: #0e588d;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-feature-settings: "palt" on;
}
.toppage-news .readMore span svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.toppage-news.is-read .newsListItem {
  display: flex;
}
.toppage-news.is-read .readMore {
  background: none;
}
.toppage-news.is-read .readMore span::before {
  content: "CLOSE";
}
.toppage-news.is-read .readMore span svg {
  transform: rotate(0);
}
.toppage-news__list {
  width: 610px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 21px 0;
  border-top: 1px solid #d6d3c1;
  border-bottom: 1px solid #d6d3c1;
}
@media screen and (max-width: 767px) {
  .toppage-news__list {
    width: 100%;
    gap: 3.4666666667vw;
    padding: 3.4666666667vw 0;
  }
}
.toppage-news__item {
  display: none;
  width: 100%;
}
.toppage-news__item:nth-child(1), .toppage-news__item:nth-child(2), .toppage-news__item:nth-child(3) {
  display: block;
}
.toppage-news__item a {
  display: flex;
  align-items: baseline;
  width: 100%;
  gap: 34px;
  padding: 0;
  position: relative;
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .toppage-news__item a {
    padding-top: 1.3333333333vw;
    margin-top: 3.4666666667vw;
    flex-direction: column;
    gap: 0.8vw;
  }
}
.toppage-news__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d6d3c1;
  position: absolute;
  bottom: -21px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .toppage-news__item a::after {
    bottom: -3.4666666667vw;
  }
}
.toppage-news__item:first-of-type a {
  margin-top: 0;
}
.toppage-news__item:last-of-type a::after {
  display: none;
}
.toppage-news__item-title {
  color: #80796f;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-news__item-title {
    font-size: 3.4666666667vw;
  }
}
.toppage-news__item-date {
  color: #80796f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .toppage-news__item-date {
    font-size: 3.7333333333vw;
  }
}

.toppage-map {
  background-color: #ece9db;
  backdrop-filter: blur(10px);
  padding: 89px 34px;
}
@media screen and (max-width: 767px) {
  .toppage-map {
    padding: 23.7333333333vw 0;
    z-index: 10;
  }
}
.toppage-map__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1372px;
  gap: 55px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage-map__inner {
    display: block;
    gap: 0;
    padding: 0 3.4666666667vw;
  }
}
.toppage-map svg {
  display: block;
}
.toppage-map__access {
  width: calc((100% - 55px) / 2);
  flex-shrink: 0;
  padding: 55px 89px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .toppage-map__access {
    width: 100%;
    padding: 0 5.6vw;
    margin-bottom: 14.6666666667vw;
  }
}
.toppage-map__header {
  width: 100%;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .toppage-map__header {
    margin-bottom: 9.0666666667vw;
  }
}
.toppage-map__header h2 {
  width: 356px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .toppage-map__header h2 {
    width: 69.6vw;
    height: auto;
    margin: 0 auto;
  }
}
.toppage-map__header h2 span {
  display: block;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toppage-map__address {
  margin-bottom: 21px;
  color: #80796f;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-map__address {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-map__address {
    margin-bottom: 5.6vw;
  }
}
.toppage-map__access-title {
  margin-bottom: 8px;
  color: #6e695e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .toppage-map__access-title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-map__access-title {
    margin-bottom: 2.1333333333vw;
  }
}
.toppage-map__access-desc {
  margin-bottom: 21px;
  color: #80796f;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-map__access-desc {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-map__access-desc {
    margin-bottom: 5.6vw;
  }
}
.toppage-map__access-list {
  margin-bottom: 0;
  color: #80796f;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-map__access-list {
    font-size: 3.4666666667vw;
  }
}
.toppage-map__access-list dt {
  margin: 0;
  font-weight: 400;
}
.toppage-map__access-list dd {
  margin-bottom: 0;
}
.toppage-map__access-list dd:last-child {
  margin-bottom: 0;
}
.toppage-map__maps {
  position: relative;
  width: calc((100% - 55px) / 2);
  height: 658.5px;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .toppage-map__maps {
    width: 100%;
    height: 93.0666666667vw;
  }
}
.toppage-map__maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

svg {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: bottom;
}
svg rect,
svg path {
  shape-rendering: geometricPrecision;
}

body.is-eventNone * {
  pointer-events: none !important;
}

body:not(.page-contact) .grecaptcha-badge {
  display: none !important;
}

.splash {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: 10000;
  opacity: 1;
}
.splash.is-hidden {
  animation: fade-out 1s ease-out forwards;
  pointer-events: none;
}
.splash.is-hidden svg {
  animation: fade-out 0.5s ease-out forwards;
}
.splash__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  background: url(../images/common/splash_bg.jpg) center/cover no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 5s ease-out, transform 5s ease-out;
}
.is-loaded .splash__bg {
  opacity: 0.9;
  transform: scale(1.07);
}
.has-hash .splash__bg {
  opacity: 0;
}
.splash__lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13.8888888889vw;
  height: 100%;
  min-height: 20.8768267223dvh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.has-hash .splash__lottie {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .splash__lottie {
    width: 20.8768267223dvh;
  }
}

.inview {
  opacity: 0;
  transition: all 0.5s ease;
}
.noscript .inview, .inview.is-view {
  opacity: 1;
}

[data-js=accordion] {
  cursor: pointer;
}
[data-js=accordion] + * {
  display: none;
}

#main {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
}

.page-under main {
  color: #5e584d;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-under main {
    font-size: 3.4666666667vw;
  }
}

.page-contents {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 89px 0 144px;
}
@media screen and (max-width: 767px) {
  .page-contents {
    max-width: none;
    padding: 14.6666666667vw 6.9333333333vw;
  }
}
.page-contents > *:last-child {
  margin-bottom: 0;
}
.page-contents > *:last-child > *:last-child {
  margin-bottom: 0;
}
.page-contents.is-rooms, .page-contents.is-option, .page-contents.is-contact {
  max-width: none;
  padding: 0;
}
.page-contents.is-photo {
  background-color: #ece9db;
  max-width: none;
  padding: 89px 0;
}
@media screen and (max-width: 767px) {
  .page-contents.is-photo {
    padding: 14.6666666667vw 3.4666666667vw;
  }
}
.page-contents.is-reserve-check {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page-contents.is-reserve-check {
    padding: 0 3.4666666667vw 23.7333333333vw;
  }
}
.page-contents.is-404 {
  text-align: center;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page-contents.is-404 {
    padding: 0 6.9333333333vw 23.7333333333vw;
  }
}
.page-contents.is-404 p {
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .page-contents.is-404 p {
    margin-bottom: 9.0666666667vw;
    text-align: left;
  }
}

.lang {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #41326e;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .lang {
    font-size: 4.2666666667vw;
  }
}
body > .lang {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  transition: transform 1s cubic-bezier(0.25, 1.25, 0.5, 1);
  transform: translateY(100%);
}
@media screen and (max-width: 767px) {
  body > .lang {
    bottom: 8.2666666667vw;
    left: 3.4666666667vw;
  }
  body > .lang .lang__list {
    transform: translate(0, -100%);
    margin-bottom: 1.6vw;
  }
}
.lang__trigger {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 44px;
  background: #faf9f0;
  color: #41326e;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .lang__trigger {
    width: 17.3333333333vw;
    height: 11.7333333333vw;
    gap: 1.0666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .lang__trigger {
    transition: opacity ease-out 0.3s;
  }
  .lang__trigger:hover {
    opacity: 0.6;
  }
}
.lang__trigger.is-open + .lang__list {
  opacity: 1;
  pointer-events: auto;
}
.lang__trigger svg {
  width: 16px;
  height: 17px;
}
.lang__trigger svg path {
  fill: #41326e;
}
@media screen and (max-width: 767px) {
  .lang__trigger svg {
    width: 4.2666666667vw;
    height: 4.5333333333vw;
  }
}
.lang__trigger span {
  display: inline-block;
}
.lang__list {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  margin: 0;
  list-style-type: none;
  transform: translate(0, 100%);
  text-align: center;
  font-size: 0.92em;
  transition: opacity ease-in-out 0.3s;
  opacity: 0;
  pointer-events: none;
}
.lang__list li {
  width: 100%;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .lang__list li {
    margin-top: 0.5333333333vw;
  }
}
.lang__list li a {
  display: block;
  width: 100%;
  padding: 0.4em 0;
  background: #faf9f0;
  color: #41326e;
  text-align: center;
  transition: opacity ease-out 0.3s;
}
@media screen and (min-width: 767px) {
  .lang__list li a:hover {
    opacity: 0.6;
  }
}

.is-init > .lang {
  transform: translateY(0);
}

@media screen and (min-width: 767px) {
  .page-index > .lang .lang__trigger,
  .page-index > .lang .lang__list li a {
    color: #faf9f0;
    background-color: rgba(250, 249, 240, 0.2);
    backdrop-filter: blur(50px);
    transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
  }
  .page-index > .lang .lang__trigger svg path {
    fill: #faf9f0;
    transition: fill 0.3s ease-out;
  }
}
.header__has-color.page-index > .lang .lang__trigger,
.header__has-color.page-index > .lang .lang__list li a {
  color: #41326e;
  background-color: #faf9f0;
  backdrop-filter: blur(0);
}
.header__has-color.page-index > .lang .lang__trigger svg path {
  fill: #41326e;
}

.page-header {
  width: 100%;
  padding: 225px 40px 55px;
  gap: 21px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding: 39.7333333333vw 3.4666666667vw 9.0666666667vw;
    gap: 5.6vw;
  }
}
.page-header h1 {
  text-align: center;
  color: #41326e;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 11.4666666667vw;
  }
  .page-transaction-law .page-header h1, .page-404 .page-header h1 {
    font-size: 8.5333333333vw;
  }
}
.page-header p {
  text-align: center;
  margin-bottom: 0;
  color: #41326e;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-header p {
    font-size: 3.4666666667vw;
  }
}
.page-options .page-header p, .page-option .page-header p {
  color: #847d73;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-options .page-header p, .page-option .page-header p {
    font-size: 3.4666666667vw;
  }
}
.page-header.is-rooms {
  height: 65.625dvh;
  min-height: 630px;
  padding: 0;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .page-header.is-rooms {
    height: 100vw;
    min-height: auto;
  }
}
.page-header.is-rooms h1 {
  color: #faf9f0;
  padding: 0;
}
.page-options .page-header, .page-option .page-header, .page-contact .page-header {
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .page-options .page-header, .page-option .page-header {
    gap: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .page-contact .page-header {
    gap: 14.6666666667vw;
  }
}
.page-reserve-check .page-header {
  padding-top: 184px;
}
@media screen and (max-width: 767px) {
  .page-reserve-check .page-header {
    padding-top: 23.7333333333vw;
  }
}

.chartTitle {
  padding-top: 12px;
  margin-bottom: 20px;
  border-top: 2px solid #65615e;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" on;
  color: #3e3e39;
}

.section-title {
  color: #41326e;
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 8.5333333333vw;
  }
}

.headingS {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.page-contents h5 {
  margin-bottom: 21px;
  color: #41326e;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .page-contents h5 {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .page-contents h5 {
    margin-bottom: 3.4666666667vw;
    font-size: 4.8vw;
  }
}

.modal .headingS {
  margin-bottom: 0.5em;
}

.content-breadcrumb {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 21px 0;
  border-top: 1px solid #d6d3c1;
  border-bottom: 1px solid #d6d3c1;
}
@media screen and (max-width: 767px) {
  .content-breadcrumb {
    width: 62.1333333333vw;
    padding: 5.6vw 0;
  }
}
.content-breadcrumb ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .content-breadcrumb ul {
    gap: 5.6vw;
  }
  .content-breadcrumb ul li {
    width: 100%;
  }
}
.content-breadcrumb ul a {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .content-breadcrumb ul a {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .content-breadcrumb ul a {
    display: flex;
    justify-content: space-between;
    padding: 0 2.1333333333vw;
    width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .content-breadcrumb ul a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .content-breadcrumb ul a svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}

.wp-block-separator {
  margin: 55px 0;
}
@media screen and (max-width: 767px) {
  .wp-block-separator {
    margin: 9.0666666667vw 0;
  }
}

.wp-block-spacer {
  height: 55px !important;
}
@media screen and (max-width: 767px) {
  .wp-block-spacer {
    height: 9.0666666667vw !important;
  }
}

.wp-block-table,
table {
  margin-bottom: 0;
}
.wp-block-table + *:not(.wp-block-spacer),
table + *:not(.wp-block-spacer) {
  margin-top: 20px;
}
.wp-block-table td,
.wp-block-table th,
table td,
table th {
  border: none;
}
.wp-block-table a,
table a {
  text-decoration: underline;
}
.wp-block-table.is-style-regular,
table.is-style-regular {
  border-top: 1px solid #d6d3c1;
}
.wp-block-table.is-style-regular th,
.wp-block-table.is-style-regular td,
table.is-style-regular th,
table.is-style-regular td {
  padding: 34px 0 34px 32px;
  border-bottom: 1px solid #d6d3c1;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-regular th,
  .wp-block-table.is-style-regular td,
  table.is-style-regular th,
  table.is-style-regular td {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-regular th,
  .wp-block-table.is-style-regular td,
  table.is-style-regular th,
  table.is-style-regular td {
    padding: 5.6vw 0 5.6vw 5.6vw;
  }
}
.wp-block-table.is-style-regular td:first-child,
table.is-style-regular td:first-child {
  width: 200px;
  padding: 34px 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-regular td:first-child,
  table.is-style-regular td:first-child {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-regular td:first-child,
  table.is-style-regular td:first-child {
    width: 21.3333333333vw;
    padding: 5.6vw 0;
  }
  .page-transaction-law .wp-block-table.is-style-regular td:first-child,
  .page-transaction-law table.is-style-regular td:first-child {
    width: 26.6666666667vw;
  }
}
.wp-block-table .companyVisionCatch,
table .companyVisionCatch {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .wp-block-table .companyVisionCatch,
  table .companyVisionCatch {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table .companyVisionCatch,
  table .companyVisionCatch {
    margin-bottom: 5.6vw;
    font-size: 4.8vw;
  }
}

.wp-block-table.is-clause-table1 table {
  max-width: 600px;
  border: 1px solid #5e584d;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table {
    max-width: none;
    border: none;
    display: block;
  }
  .wp-block-table.is-clause-table1 table tbody {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
  }
}
.wp-block-table.is-clause-table1 table th,
.wp-block-table.is-clause-table1 table td {
  padding: 14px 10px;
  background: transparent;
  border-bottom: 1px solid #5e584d;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table th,
  .wp-block-table.is-clause-table1 table td {
    width: 100%;
    padding: 3.0666666667vw 2.6666666667vw;
    text-align: center;
    border-bottom: none;
  }
}
.wp-block-table.is-clause-table1 table td:first-child {
  width: 151px;
  background: transparent;
  text-align: center;
  border-right: 1px solid #5e584d;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table td:first-child {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table td:first-child {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #5e584d;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #5e584d;
  }
}
.wp-block-table.is-clause-table1 table tr:last-child th,
.wp-block-table.is-clause-table1 table tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table1 table tr:last-child th:not(:last-child),
  .wp-block-table.is-clause-table1 table tr:last-child td:not(:last-child) {
    border-bottom: 1px solid #5e584d;
  }
}
.wp-block-table.is-clause-table2 table {
  max-width: 600px;
  border: 1px solid #5e584d;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: initial;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table {
    max-width: none;
    display: flex;
  }
  .wp-block-table.is-clause-table2 table tbody tr,
  .wp-block-table.is-clause-table2 table thead tr {
    display: flex;
    flex-direction: column;
  }
}
.wp-block-table.is-clause-table2 table th,
.wp-block-table.is-clause-table2 table td {
  padding: 14px 10px;
  background: transparent;
  border-bottom: 1px solid #5e584d;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table th,
  .wp-block-table.is-clause-table2 table td {
    width: auto;
    padding: 3.0666666667vw 2.6666666667vw;
    text-align: center;
  }
}
.wp-block-table.is-clause-table2 table th:not(:first-child),
.wp-block-table.is-clause-table2 table td:not(:first-child) {
  border-left: 1px solid #5e584d;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table th:not(:first-child),
  .wp-block-table.is-clause-table2 table td:not(:first-child) {
    border-left: none;
  }
}
.wp-block-table.is-clause-table2 table thead {
  border-bottom: none;
}
.wp-block-table.is-clause-table2 table thead th {
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table thead th {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table thead th {
    width: 26.6666666667vw;
  }
  .wp-block-table.is-clause-table2 table thead th:last-child {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table tbody {
    border-left: 1px solid #5e584d;
    width: 100%;
  }
}
.wp-block-table.is-clause-table2 table tbody tr:last-child th,
.wp-block-table.is-clause-table2 table tbody tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-clause-table2 table tbody tr:last-child th:not(:last-child),
  .wp-block-table.is-clause-table2 table tbody tr:last-child td:not(:last-child) {
    border-bottom: 1px solid #5e584d;
  }
}

.page-contents ul > li + li,
.page-contents ol > li + li {
  margin-top: 1em;
}
.page-contents.is-clause > ol > li ol {
  list-style: none;
  margin-left: 0;
  padding-top: 0.5em;
}
.page-contents.is-clause > ol > li ol li {
  width: calc(100% + 1em);
  margin-left: -1em;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.page-contents.is-clause > ol > li ol li span {
  display: inline-block;
  width: 2.5em;
  text-indent: 0;
}
.page-contents .reserveCheckGroup {
  padding: 55px 89px;
  margin-bottom: 55px;
  text-align: center;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .page-contents .reserveCheckGroup {
    padding: 9.0666666667vw 3.4666666667vw;
    margin-bottom: 9.0666666667vw;
  }
}
.page-contents .reserveCheckGroup p {
  color: #5e584d;
  margin-bottom: 34px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-contents .reserveCheckGroup p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .page-contents .reserveCheckGroup p {
    margin-bottom: 5.6vw;
  }
}
.page-contents .reserveCheckGroup .wp-block-button__link {
  justify-content: center;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-contents .reserveCheckGroup .wp-block-button__link {
    font-size: 3.7333333333vw;
  }
}
.page-contents .attentionGroup {
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-contents .attentionGroup {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .page-contents .attentionGroup {
    padding: 0 3.4666666667vw;
  }
}
.page-contents .attentionGroup h5 {
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-contents .attentionGroup h5 {
    font-size: 3.4666666667vw;
  }
}

.faq__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    max-width: none;
    padding: 23.7333333333vw 3.4666666667vw;
  }
}
.faq__index {
  display: flex;
  flex-direction: column;
  margin: 55px auto 0;
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .faq__index {
    flex-direction: column-reverse;
    margin: 9.0666666667vw auto 0;
    gap: 9.0666666667vw;
  }
}
.faq__search-wrapper {
  max-width: 377px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #faf9f0;
  border: 1px solid #d6d3c1;
  border-radius: 6px;
  padding: 13px 21px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .faq__search-wrapper {
    max-width: 81.8666666667vw;
    padding: 3.4666666667vw 5.6vw;
    margin: 0 auto;
  }
}
.faq__search-wrapper svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .faq__search-wrapper svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.faq__search {
  max-width: 301px;
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
@media screen and (max-width: 767px) {
  .faq__search {
    max-width: 61.6vw;
  }
}
.faq__no-result {
  display: none;
  text-align: center;
  margin: 0;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__no-result {
    font-size: 3.7333333333vw;
  }
}
.faq__nav {
  width: 100%;
  padding: 21px 34px;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .faq__nav {
    border: none;
    padding: 0 9.0666666667vw;
    background: none;
  }
}
.faq__nav ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  list-style: none;
  gap: 13px 40px;
}
@media screen and (max-width: 767px) {
  .faq__nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2.1333333333vw;
  }
}
.faq__nav li {
  display: block;
  margin: 0 !important;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .faq__nav li {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__nav li {
    background-color: #ece9db;
  }
}
.faq__nav li a {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  color: #5e584d;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .faq__nav li a {
    display: flex;
    justify-content: space-between;
    padding: 3.4666666667vw 5.6vw;
  }
}
@media screen and (min-width: 767px) {
  .faq__nav li a:hover {
    opacity: 0.6;
    transition: opacity ease-out 0.3s;
  }
}
.faq__list {
  margin-bottom: 89px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    padding: 0 3.4666666667vw;
    margin-bottom: 14.6666666667vw;
  }
}
.faq__list:first-of-type {
  margin-top: 89px;
}
@media screen and (max-width: 767px) {
  .faq__list:first-of-type {
    margin-top: 14.6666666667vw;
  }
}
.faq__list:last-child {
  margin-bottom: 0;
}
.faq__list dl {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #d6d3c1;
  padding: 34px 0;
}
@media screen and (max-width: 767px) {
  .faq__list dl {
    padding: 5.6vw 3.4666666667vw;
  }
}
.faq__list dl dt {
  width: 100%;
  padding: 0 21px;
  transition: padding ease-out 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 13px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .faq__list dl dt {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__list dl dt {
    padding: 0;
    gap: 3.4666666667vw;
  }
}
.faq__list dl dt::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/svg/plus.svg) no-repeat;
  background-size: 32px 32px;
  flex-shrink: 0;
  transition: transform ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__list dl dt::after {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    background-size: 8.5333333333vw 8.5333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .faq__list dl dt:hover {
    padding-bottom: 12px;
  }
  .faq__list dl dt:hover::after {
    transform: rotate(-90deg);
  }
}
.faq__list dl dt.is-current {
  padding-bottom: 0;
}
.faq__list dl dt.is-current::after {
  background: url(../images/svg/minus.svg) no-repeat;
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .faq__list dl dt.is-current + dd {
    padding-bottom: 3.4666666667vw;
  }
}
.faq__list dl dd {
  padding: 34px 66px 0 82px;
  word-wrap: break-word;
  color: #6e695e;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__list dl dd {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__list dl dd {
    padding: 5.6vw 0 0 0;
  }
}
.faq__list dl dd > *:last-of-type {
  margin: 0;
}
.faq__list dl dd a {
  color: #41326e;
  text-decoration: underline;
}
.faq__list dl dd p + img {
  margin-top: 21px;
}
.faq__list dl dd img + p {
  margin-top: 21px;
}
.faq__category {
  padding-bottom: 34px;
  color: #5e584d;
  border-bottom: 1px solid #d6d3c1;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .faq__category {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__category {
    padding-bottom: 5.6vw;
  }
}
.faq__question {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #41326e;
}
@media screen and (max-width: 767px) {
  .faq__question {
    gap: 3.4666666667vw;
  }
}
.faq__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #faf9f0;
  color: #41326e;
  flex-shrink: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}

.wpcf7-form {
  padding: 144px 0;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .wpcf7-form {
    padding: 23.7333333333vw 6.9333333333vw;
  }
}
.wpcf7-form > ol {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 34px 0 55px;
  list-style: none;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form > ol {
    gap: 2.1333333333vw;
    margin: 5.6vw auto;
  }
}
.wpcf7-form > ol li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form > ol li {
    gap: 2.6666666667vw;
  }
}
.wpcf7-form > ol li:first-child p {
  color: #41326e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wpcf7-form > ol li:first-child p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form > ol li p {
  color: #6e695e;
  margin: 0;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpcf7-form > ol li p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form > ol li + li {
  margin: 0;
}
.wpcf7-form > ol li + li::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: center center no-repeat url(../images/svg/16/chevron-down-thin.svg);
  background-size: contain;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .wpcf7-form > ol li + li::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.wpcf7-form pre {
  width: 100%;
  height: 233px;
  padding: 34px;
  word-break: initial;
  white-space: pre-wrap;
  overflow-y: auto;
  background: #e5e2d3;
  border: 1px solid #d6d3c1;
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
  color: #5e584d;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpcf7-form pre {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form pre {
    height: 62.1333333333vw;
    padding: 5.6vw;
    border-radius: 1.6vw;
  }
}
.wpcf7-form .wpcf7-not-valid-tip {
  padding-top: 13px;
  color: #c40000;
}
.wpcf7-form .ajax-loader {
  position: absolute !important;
  left: 0;
  top: 0;
}
.wpcf7-form .privacyCheck {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .privacyCheck {
    margin-bottom: 9.0666666667vw;
  }
}
.wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form [type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
}
.wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label,
.wpcf7-form [type=checkbox] + .wpcf7-list-item-label {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  color: #5e584d;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label,
  .wpcf7-form [type=checkbox] + .wpcf7-list-item-label {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label,
  .wpcf7-form [type=checkbox] + .wpcf7-list-item-label {
    gap: 4.2666666667vw;
  }
}
.wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label::before,
.wpcf7-form [type=checkbox] + .wpcf7-list-item-label::before {
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #faf9f0;
  border: 1px solid #d6d3c1;
  transition: all ease 0.2s;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label::before,
  .wpcf7-form [type=checkbox] + .wpcf7-list-item-label::before {
    width: 6.4vw;
    height: 6.4vw;
    border-radius: 1.0666666667vw;
  }
}
.wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label::after,
.wpcf7-form [type=checkbox] + .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  left: 4px;
  width: 16px;
  height: 16px;
  background: center center no-repeat url(../images/svg/16/check.svg);
  background-size: contain;
  opacity: 0.1;
  transition: all ease 0.2s;
}
@media screen and (max-width: 767px) {
  .wpcf7-form [type=checkbox] + .wpcf7c-conf-hidden + .wpcf7-list-item-label::after,
  .wpcf7-form [type=checkbox] + .wpcf7-list-item-label::after {
    left: 1.0666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.wpcf7-form [type=checkbox]:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label::before,
.wpcf7-form [type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #41326e;
  border-color: #41326e;
}
.wpcf7-form [type=checkbox]:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label::after,
.wpcf7-form [type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-form [type=checkbox]:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label::before {
  border-color: transparent;
}
.wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: 0;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__privacy {
  display: none;
}
.wpcf7-form.custom-wpcf7c-confirmed > ol li:first-child p {
  color: #6e695e;
  opacity: 0.5;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpcf7-form.custom-wpcf7c-confirmed > ol li:first-child p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form.custom-wpcf7c-confirmed > ol li:nth-child(2) p {
  color: #41326e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wpcf7-form.custom-wpcf7c-confirmed > ol li:nth-child(2) p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form.submitting.confirmed .contact__thanks, .wpcf7-form.resetting .contact__thanks, .wpcf7-form.sent .contact__thanks {
  display: block;
  width: 100%;
}
.wpcf7-form.submitting.confirmed > ol li:first-child p, .wpcf7-form.resetting > ol li:first-child p, .wpcf7-form.sent > ol li:first-child p {
  opacity: 0.5;
  color: #6e695e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpcf7-form.submitting.confirmed > ol li:first-child p, .wpcf7-form.resetting > ol li:first-child p, .wpcf7-form.sent > ol li:first-child p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form.submitting.confirmed > ol li:nth-child(2) p, .wpcf7-form.resetting > ol li:nth-child(2) p, .wpcf7-form.sent > ol li:nth-child(2) p {
  opacity: 0.5;
}
.wpcf7-form.submitting.confirmed > ol li:nth-child(3) p, .wpcf7-form.resetting > ol li:nth-child(3) p, .wpcf7-form.sent > ol li:nth-child(3) p {
  color: #41326e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wpcf7-form.submitting.confirmed > ol li:nth-child(3) p, .wpcf7-form.resetting > ol li:nth-child(3) p, .wpcf7-form.sent > ol li:nth-child(3) p {
    font-size: 3.7333333333vw;
  }
}
.wpcf7-form.submitting.confirmed > *:not(ol):not(.contac__thanks):not(.section-title):not(.contact__thanks), .wpcf7-form.resetting > *:not(ol):not(.contac__thanks):not(.section-title):not(.contact__thanks), .wpcf7-form.sent > *:not(ol):not(.contac__thanks):not(.section-title):not(.contact__thanks) {
  display: none !important;
}

.contact__step01 {
  max-width: 640px;
  margin: 0 auto 55px;
  text-align: center;
  color: #5e584d;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__step01 {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__step01 {
    margin-bottom: 9.0666666667vw;
  }
}
.contact__form {
  max-width: 640px;
  margin: 0 auto 34px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-bottom: 5.6vw;
  }
}
.contact__form dt {
  margin-bottom: 5px;
  color: #5e584d;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__form dt {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__form dt {
    margin-bottom: 1.3333333333vw;
  }
}
.contact__form dt p {
  margin-bottom: 0;
}
.contact__form dt .red {
  display: inline-block;
  margin-left: 0.3em;
}
.contact__form dd {
  width: 100%;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .contact__form dd {
    margin-bottom: 5.6vw;
  }
}
.contact__form dd:last-child {
  margin-bottom: 0;
}
.contact__privacy {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    margin-bottom: 9.0666666667vw;
  }
}
.contact__submit {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  max-width: 804px;
  margin: 0 auto;
}
.contact__submit p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__submit p {
    flex-direction: column;
    gap: 3.2vw;
  }
}
.contact__submit .btn {
  width: 377px;
  padding: 13px 34px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  background-color: #41326e;
  color: #faf9f0;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__submit .btn {
    font-size: 3.7333333333vw;
  }
}
.contact__submit .btn.back, .contact__submit .btn.submit {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__submit .btn.back, .contact__submit .btn.submit {
    width: 100%;
  }
}
.contact__submit .btn.back {
  background-color: #faf9f0;
  color: #5e584d;
  border: 1px solid #d6d3c1;
}
.contact__submit .btn.back:hover {
  background-color: #f2f0e4;
  color: #5e584d !important;
}
.contact__submit .btn:hover {
  background-color: #5e584d;
}
@media screen and (max-width: 767px) {
  .contact__submit .btn {
    width: 100%;
    padding: 3.4666666667vw 9.0666666667vw;
  }
}
.contact__thanks {
  display: none;
  text-align: center;
}
.contact__thanks h4 {
  margin-bottom: 40px;
  color: #5e584d;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .contact__thanks h4 {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__thanks h4 {
    margin-bottom: 5.6vw;
  }
}
.contact__thanks p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__thanks p {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__thanks p {
    text-align-last: left;
  }
}

.postWrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 176px 40px 140px;
}
.postHeader {
  width: 100%;
  margin-bottom: 60px;
}
.postHeader time {
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-right: 24px;
}
.postHeader .cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 30px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #af8039;
  border: 1px solid #eee1ce;
  border-radius: 2px;
}
.postTitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 2.2;
  letter-spacing: 0.12em;
  color: #3e3a39;
}
.postMeta {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.postBody figure {
  margin: 1em 0 2em;
}
.postBody h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.postBody h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 2.2;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.postBody h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.postBody a {
  color: #0e588d;
  text-decoration: underline;
}

.navBelow {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0;
  margin-top: 60px;
  border-top: 1px solid #eee;
}
.navBelow .sep {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 20px;
  background: #eee;
}
.navBelow .navPrev,
.navBelow .navNext {
  width: 110px;
}
.navBelow .navPrev a svg {
  margin-right: 10px;
  transform: rotate(90deg);
}
.navBelow .navNext a svg {
  margin-left: 10px;
  transform: rotate(-90deg);
}
.navBelow a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border: 1px solid #d6d3c1;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.2em;
  font-feature-settings: "liga" off;
  color: #41326e;
}
.navBelow a:hover {
  color: #fff;
  background: #41326e;
  border-color: #41326e;
}
.navBelow a:hover svg path {
  stroke: #fff;
}

@media screen and (max-width: 767px) {
  .chartTitle {
    padding-top: 3.2vw;
    margin-bottom: 5.3333333333vw;
    font-size: 3.4666666667vw;
  }
  .headingS {
    font-size: 4.2666666667vw;
  }
  .wpcf7-form .wpcf7-not-valid-tip {
    padding-top: 2.6666666667vw;
  }
  .postWrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 33.0666666667vw 6.6666666667vw 32vw;
  }
  .postHeader {
    margin-bottom: 10.6666666667vw;
  }
  .postHeader time {
    font-size: 3.7333333333vw;
    margin-right: 3.2vw;
  }
  .postHeader .cat {
    min-width: 26.6666666667vw;
    height: 8vw;
    padding: 0 2.6666666667vw;
    font-size: 3.2vw;
    border-radius: 0.5333333333vw;
  }
  .postTitle {
    font-weight: 700;
    font-size: 4.8vw;
  }
  .postMeta {
    margin-bottom: 5.3333333333vw;
  }
  .postBody h2 {
    font-weight: 700;
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .postBody h3 {
    font-weight: 700;
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
  .postBody h4 {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .navBelow {
    padding: 10.6666666667vw 0 0;
    margin-top: 10.6666666667vw;
  }
  .navBelow .sep {
    height: 10.6666666667vw;
    margin: 0 5.3333333333vw;
    background: #eee;
  }
  .navBelow .navPrev,
  .navBelow .navNext {
    width: 29.3333333333vw;
  }
  .navBelow .navPrev a svg {
    margin-right: 2.6666666667vw;
  }
  .navBelow .navNext a svg {
    margin-left: 2.6666666667vw;
  }
  .navBelow a {
    height: 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.rooms__desc {
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .rooms__desc {
    padding: 23.7333333333vw 3.4666666667vw;
  }
}
.rooms__desc-inner {
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rooms__desc-inner {
    padding: 0 3.4666666667vw;
  }
}
.rooms__desc-inner > *:last-child {
  margin-bottom: 0;
}
.rooms__desc-inner div {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .rooms__desc-inner div {
    margin-bottom: 14.6666666667vw;
  }
}
.rooms__desc-inner p {
  color: #6e695e;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms__desc-inner p {
    font-size: 3.4666666667vw;
  }
}
.rooms__desc-inner p:last-child {
  margin-bottom: 0;
}
.rooms__desc-inner p.note {
  color: #80796f;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms__desc-inner p.note {
    font-size: 3.2vw;
  }
}
.rooms__section-title {
  margin: 0 auto 55px;
  color: #41326e;
  text-align: center;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .rooms__section-title {
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms__section-title {
    margin-bottom: 9.0666666667vw;
  }
}
.rooms__photo-gallery {
  padding: 89px 0;
  margin: 0 auto;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .rooms__photo-gallery {
    padding: 14.6666666667vw 3.4666666667vw;
  }
}
.rooms__detail {
  width: 100%;
  margin: 0 auto;
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .rooms__detail {
    padding: 23.7333333333vw 0;
  }
}
.rooms__detail .rooms__section-title {
  margin-bottom: 89px;
}
@media screen and (max-width: 767px) {
  .rooms__detail .rooms__section-title {
    margin-bottom: 9.0666666667vw;
  }
}
.rooms__detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .rooms__detail-inner {
    display: block;
    gap: 0;
    padding: 0 3.4666666667vw;
  }
}
.rooms__detail-nav {
  width: 247px;
  position: sticky;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .rooms__detail-nav {
    display: none;
  }
}
.rooms__detail-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.rooms__detail-nav a {
  display: flex;
  align-items: center;
  padding: 21px 0 21px 13px;
  gap: 13px;
  color: #6e695e;
  text-decoration: none;
  transition: color ease-out 0.3s;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms__detail-nav a {
    font-size: 3.7333333333vw;
  }
}
.rooms__detail-nav a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d6d3c1;
  transition: background-color ease-out 0.3s;
}
.rooms__detail-nav a:hover {
  color: #41326e;
}
.rooms__detail-nav a:hover::before {
  background-color: #41326e;
}
.rooms__detail-nav-item {
  border-top: 1px solid #d6d3c1;
  margin: 0 !important;
}
.rooms__detail-nav-item:last-of-type {
  border-bottom: 1px solid #d6d3c1;
}
.rooms__detail-nav-item.is-current a {
  color: #41326e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .rooms__detail-nav-item.is-current a {
    font-size: 3.7333333333vw;
  }
}
.rooms__detail-nav-item.is-current a::before {
  background-color: #41326e;
}
.rooms__detail-items {
  width: 745px;
}
@media screen and (max-width: 767px) {
  .rooms__detail-items {
    width: 100%;
  }
}
.rooms__detail-item {
  border-top: 1px solid #d6d3c1;
  padding: 21px 0 89px;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item {
    padding: 5.6vw 3.4666666667vw;
  }
}
.rooms__detail-item:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item:last-of-type {
    padding-bottom: 5.6vw;
    border-bottom: 1px solid #d6d3c1;
  }
}
.rooms__detail-item-title {
  color: #41326e;
  margin-bottom: 34px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 3.2vw;
    flex-wrap: nowrap;
  }
  .rooms__detail-item-title::after {
    content: "";
    display: block;
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    background: url(../images/svg/plus.svg) no-repeat;
    background-size: 8.5333333333vw 8.5333333333vw;
    flex-shrink: 0;
  }
  .rooms__detail-item-title.is-open::after {
    background: url(../images/svg/minus.svg) no-repeat;
  }
}
.rooms__detail-item-content {
  color: #80796f;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-content {
    padding-top: 9.0666666667vw;
  }
}
.rooms__detail-item-content > *:last-child {
  margin-bottom: 0;
}
.rooms__detail-item-content h4 {
  margin-bottom: 13px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-content h4 {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-content h4 {
    margin-bottom: 3.4666666667vw;
  }
}
.rooms__detail-item-content p + h4,
.rooms__detail-item-content ul + h4,
.rooms__detail-item-content img + h4 {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-content p + h4,
  .rooms__detail-item-content ul + h4,
  .rooms__detail-item-content img + h4 {
    margin-top: 9.0666666667vw;
  }
}
.rooms__detail-item-content img + img {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .rooms__detail-item-content img + img {
    margin-top: 3.4666666667vw;
  }
}
.rooms__detail-item-content ul {
  margin-left: 1.5em;
}
.rooms__detail-list {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 21px 20px;
}
@media screen and (max-width: 767px) {
  .rooms__detail-list {
    gap: 5.6vw 5.3333333333vw;
  }
}
.rooms__detail-list dt {
  color: #5e584d;
  width: 160px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .rooms__detail-list dt {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms__detail-list dt {
    width: 21.3333333333vw;
  }
}
.rooms__detail-list dd {
  color: #6e695e;
  width: calc(100% - 180px);
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms__detail-list dd {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms__detail-list dd {
    width: calc(100% - 26.6666666667vw);
  }
}
.rooms__detail-list dd .note {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms__detail-list dd .note {
    font-size: 3.2vw;
  }
}

.rooms-footer {
  padding: 89px 0;
  background-color: #ece9db;
}
@media screen and (max-width: 767px) {
  .rooms-footer {
    width: 100%;
    max-width: none;
    padding: 14.6666666667vw 3.4666666667vw;
  }
}
.rooms-footer__links {
  max-width: 1100px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rooms-footer__links {
    flex-direction: column;
    padding: 0 3.4666666667vw;
    gap: 9.0666666667vw;
  }
}
.rooms-footer__links-item {
  width: 50%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .rooms-footer__links-item {
    width: 100%;
    gap: 5.6vw;
  }
}
.rooms-footer__links-item:last-of-type {
  border-left: 1px solid #d6d3c1;
}
@media screen and (max-width: 767px) {
  .rooms-footer__links-item:last-of-type {
    padding-top: 9.0666666667vw;
    border-left: none;
    border-top: 1px solid #d6d3c1;
  }
}
.rooms-footer__links-title {
  color: #41326e;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .rooms-footer__links-title {
    font-size: 6.9333333333vw;
  }
}
.rooms-footer__links-desc {
  color: #847D73;
  display: inline-block;
  margin: 0;
  min-height: 4em;
  flex-shrink: 0;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .rooms-footer__links-desc {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .rooms-footer__links-desc {
    min-height: auto;
  }
}

.option__breadcrumb {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #d6d3c1;
  border-bottom: 1px solid #d6d3c1;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb {
    max-width: 62.1333333333vw;
    padding: 5.6vw 0;
  }
}
.option__breadcrumb ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul {
    flex-flow: column wrap;
    gap: 5.6vw;
    align-items: stretch;
  }
}
.option__breadcrumb ul li {
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul li {
    padding: 0 2.1333333333vw;
  }
}
.option__breadcrumb ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #41326e;
  transition: opacity ease-out 0.3s;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul li a {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .option__breadcrumb ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul li a {
    justify-content: space-between;
  }
}
.option__breadcrumb ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul li a span {
    gap: 2.1333333333vw;
  }
}
.option__breadcrumb ul li a svg {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .option__breadcrumb ul li a svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.option__category {
  padding: 89px 0;
}
@media screen and (max-width: 767px) {
  .option__category {
    padding: 14.6666666667vw 3.4666666667vw;
  }
}
.option__category:nth-of-type(even) {
  background-color: #ece9db;
}
.option__category:nth-of-type(even) .option__item {
  background-color: #e5e2d3;
}
.option__category:nth-of-type(even) .option__item .read-more__trigger {
  background-color: #e5e2d3;
}
.option__category-title {
  color: #41326e;
  margin-bottom: 55px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: the-seasons, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .option__category-title {
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .option__category-title {
    margin-bottom: 9.0666666667vw;
    gap: 1.3333333333vw;
  }
}
.option__category-title span {
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .option__category-title span {
    font-size: 3.7333333333vw;
  }
}
.option__item {
  background-color: #ece9db;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 55px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .option__item {
    margin-bottom: 9.0666666667vw;
  }
}
.option__item:last-of-type {
  margin-bottom: 0;
}
.option__item-inner {
  padding: 55px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 55px;
}
@media screen and (max-width: 767px) {
  .option__item-inner {
    padding: 14.6666666667vw 5.6vw;
    gap: 0;
  }
}
.option__item-inner:last-of-type {
  margin-bottom: 0;
}
.option__item-inner a {
  text-decoration: underline;
  word-break: break-all;
}
.option__slider {
  width: 470px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option__slider:not(.slick-initialized) .slick-slide {
  display: block;
}
@media screen and (max-width: 767px) {
  .option__slider {
    width: 100%;
  }
  .option__slider + .option__info {
    margin-top: 5.6vw;
  }
}
.option__slider .slick-list {
  z-index: 1;
}
.option__slider .slick-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  border: none;
  background-color: #faf9f0;
  z-index: 5;
  cursor: pointer;
  padding: 0;
  transition: all ease-out 0.3s;
}
.option__slider .slick-arrow:hover {
  background-color: #ece9db;
}
.option__slider .slick-arrow svg {
  width: 48px;
  height: 48px;
}
.option__slider .slick-prev {
  left: 0;
}
.option__slider .slick-next {
  right: 0;
}
.option__slide-img {
  width: 100%;
}
.option__slide-img img {
  width: 100%;
  height: 313px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .option__slide-img img {
    height: 54.4vw;
  }
}
.option__slide-img figcaption {
  display: block;
  z-index: 2;
  margin-top: 13px;
  color: #6e695e;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .option__slide-img figcaption {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .option__slide-img figcaption {
    margin-top: 2.1333333333vw;
  }
}
.option__slide-img i {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  z-index: 3;
  border-radius: 0 0 20px;
}
.option__slide-img i svg {
  width: 16px;
  height: 16px;
}
.option__slide-img i svg path {
  stroke: #41326e;
}
.option__title {
  color: #41326e;
  margin-bottom: 21px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-ymincho-std, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .option__title {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .option__title {
    font-size: 4.8vw;
    margin-bottom: 3.4666666667vw;
  }
}
.option__detail {
  width: 465px;
}
@media screen and (max-width: 767px) {
  .option__detail {
    width: 100%;
  }
}
.option__desc {
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .option__desc {
    margin-bottom: 5.6vw;
  }
}
.option__desc p {
  color: #5e584d;
  margin-bottom: 1em;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .option__desc p {
    font-size: 3.4666666667vw;
  }
}
.option__desc > *:last-child {
  margin-bottom: 0;
}
.option__info dl {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 13px;
  color: #5e584d;
}
@media screen and (max-width: 767px) {
  .option__info dl {
    margin-bottom: 3.4666666667vw;
  }
}
.option__info dl:last-of-type {
  margin-bottom: 21px;
}
.option__info dl dt {
  width: 100px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .option__info dl dt {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .option__info dl dt {
    width: 26.058%;
  }
}
.option__info dl dd {
  width: 345px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .option__info dl dd {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .option__info dl dd {
    width: 67.462%;
  }
}
.option__info dl dd a {
  color: #41326e;
  text-decoration: underline;
}
.option__web-link {
  margin-bottom: 21px;
}
.option__web-link .btn {
  padding: 8px 21px;
  gap: 4px;
  min-width: 134px;
  text-decoration: none;
}
.option__web-link .btn svg {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .option__web-link .btn {
    padding: 2.1333333333vw 5.6vw;
    min-width: 33.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .option__web-link {
    margin-bottom: 0;
  }
}

.read-more__section {
  width: 100%;
  padding: 0;
  color: #80796f;
  border-top: 1px solid #d6d3c1;
}
.read-more__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 71px;
  margin: 0;
  cursor: pointer;
  background-color: #ece9db;
  transition: opacity ease-out 0.3s;
}
.read-more__trigger:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .read-more__trigger {
    height: 17.0666666667vw;
  }
}
.read-more__trigger > span {
  display: inline-flex;
  flex-flow: row nowrap;
  align-content: center;
  align-items: center;
  justify-items: center;
  justify-content: center;
  color: #41326e;
}
.read-more__trigger > span span {
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .read-more__trigger > span span {
    font-size: 3.7333333333vw;
  }
}
.read-more__trigger > span span::before {
  display: inline;
  content: "Read More";
}
.read-more__trigger svg {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  margin-top: -2px;
  transform: rotate(180deg);
}
.read-more__trigger svg path {
  stroke: #41326e;
  transition: stroke ease-out 0.3s;
}
.is-open .read-more__trigger > span span::before {
  content: "Close";
}
.is-open .read-more__trigger svg {
  transform: rotate(0);
}
.read-more__content {
  display: none;
  padding: 89px 150px;
}
@media screen and (max-width: 767px) {
  .read-more__content {
    padding: 9.0666666667vw 5.6vw;
  }
}
.read-more__content a {
  color: #41326e;
  text-decoration: underline;
}
.read-more__content > *:last-of-type {
  margin-bottom: 0;
}
.read-more__blocks {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .read-more__blocks {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.read-more__blocks .read-more__block {
  width: calc((100% - 21px) / 2);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .read-more__blocks .read-more__block {
    width: 100%;
    margin-bottom: 9.0666666667vw;
  }
}
.read-more__block {
  width: 100%;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .read-more__block {
    margin-bottom: 5.6vw;
  }
}
.read-more__title {
  color: #41326e;
  margin-bottom: 13px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .read-more__title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .read-more__title {
    margin-bottom: 3.4666666667vw;
  }
}
.read-more__text {
  color: #5e584d;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .read-more__text {
    font-size: 3.4666666667vw;
  }
}
.read-more__text h4,
.read-more__text h5 {
  margin-bottom: 13px;
  color: #41326e;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .read-more__text h4,
  .read-more__text h5 {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .read-more__text h4,
  .read-more__text h5 {
    margin-bottom: 3.4666666667vw;
  }
}
.read-more__text > *:last-child {
  margin-bottom: 0;
}
.read-more__figure {
  width: 100%;
}
.read-more__figure img {
  max-width: none;
  width: 100%;
}
.read-more__figure figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .read-more__figure figcaption {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .read-more__figure figcaption {
    margin-top: 2.1333333333vw;
  }
}
.read-more__figure + .read-more__text,
.read-more__figure + .read-more__title {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .read-more__figure + .read-more__text,
  .read-more__figure + .read-more__title {
    margin-top: 3.4666666667vw;
  }
}

.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  align-content: center;
  cursor: pointer;
  color: #41326e;
  background-color: #faf9f0;
  text-decoration: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all ease-out 300ms;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  gap: 4px;
  border-radius: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-family: classico-urw, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .btn,
  .wp-block-button__link {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .btn,
  .wp-block-button__link {
    gap: 1.0666666667vw;
  }
}
.btn:visited,
.wp-block-button__link:visited {
  color: #41326e;
}
.btn svg,
.wp-block-button__link svg {
  display: block;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn,
.wp-block-button__link {
  padding: 13px 34px;
  min-width: 233px;
  justify-content: center;
  border: none;
}
@media screen and (max-width: 767px) {
  .btn,
  .wp-block-button__link {
    padding: 3.4666666667vw 9.0666666667vw;
    min-width: 62.1333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .btn:hover,
  .wp-block-button__link:hover {
    opacity: 0.6;
  }
}
.btn:active,
.wp-block-button__link:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn.is-next,
.wp-block-button__link.is-next {
  display: flex;
  flex-flow: row nowrap;
  padding-right: 0;
  padding-left: 0;
}
.btn.is-next span,
.wp-block-button__link.is-next span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
.btn.is-next::before, .btn.is-next::after,
.wp-block-button__link.is-next::before,
.wp-block-button__link.is-next::after {
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  width: 1.5em;
  min-width: 1.5em;
  content: "";
  text-align: center;
}
.btn[disabled], .btn.is-disabled,
.wp-block-button__link[disabled],
.wp-block-button__link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn.is-fullWidth,
.wp-block-button__link.is-fullWidth {
  display: flex;
  width: 100%;
}
.btn svg,
.wp-block-button__link svg {
  display: block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .btn svg,
  .wp-block-button__link svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn svg path,
.wp-block-button__link svg path {
  transition: all ease-out 300ms;
}
.btn svg.prev,
.btn img.prev,
.wp-block-button__link svg.prev,
.wp-block-button__link img.prev {
  position: absolute;
  top: 50%;
  left: 4vw;
  width: 6.4vw;
  margin-top: -3.2vw;
  transform: rotate(180deg);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 30px;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .modal {
    justify-content: flex-start;
    padding: 4.2666666667vw;
  }
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal.is-active .modal__container {
  transform: translate(0, 0);
}
.modal .delete {
  position: fixed;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  width: 60px;
  height: 60px;
  padding: 0;
  vertical-align: top;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  z-index: 100;
  background-color: #faf9f0;
  transition: background-color ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .modal .delete {
    width: 16vw;
    height: 16vw;
    gap: 4.2666666667vw;
  }
}
.modal .delete::before, .modal .delete::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: #5e584d;
  transition: transform ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .modal .delete::before, .modal .delete::after {
    width: 8.5333333333vw;
  }
}
.modal .delete::before {
  transform: rotate(30deg);
}
.modal .delete::after {
  transform: rotate(-30deg);
}
@media screen and (min-width: 767px) {
  .modal .delete:hover {
    background-color: #f2f0e4;
  }
  .modal .delete:hover::before {
    transform: rotate(15deg);
  }
  .modal .delete:hover::after {
    transform: rotate(-15deg);
  }
}
.modal__background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(34, 34, 34, 0.4);
}
.modal__container {
  width: 100%;
  max-width: 720px;
  transform: translate(0, -10%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .modal__container {
    max-width: 100%;
    height: 100%;
  }
}
.modalMovie .modal__container {
  max-width: 960px;
}
#modalFloorMap .modal__container {
  max-width: 1040px;
}
#modalNotBook .modal__container {
  max-width: 600px;
}
.modal__container .delete {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.modal__content {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 100px);
  max-width: 1240px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  padding: 40px;
  background: #faf9f0;
}
@media screen and (max-width: 767px) {
  .modal__content {
    max-height: none;
    height: 100%;
  }
}
.modal__content > *:last-child {
  margin-bottom: 0;
}
#modalNotBook .modal__content {
  font-weight: 700;
}
#modalNotBook .modal__content .headingS {
  font-weight: 700;
}
.modalMovie .modal__content {
  padding: 0;
}
.modalMovie .modal__content .video-container {
  margin-bottom: 0;
}
#modalFloorMap .modal__content {
  padding: 60px 40px 80px;
}
#modalFloorMap .modal__content .message-body {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.modal__content .btn {
  max-width: 240px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .modal__container .delete {
    top: 0;
    right: 0;
    width: 16vw;
    height: 16vw;
  }
  #modalFloorMap .modal__container {
    max-height: calc(100vh - 20vw);
  }
  .modal__content .btn {
    margin-top: 5.3333333333vw;
    max-width: 64vw;
  }
  #modalFloorMap .modal__content {
    padding: 6.6666666667vw 5.3333333333vw 9.6vw;
  }
  .modal #modalNotBook {
    padding-top: 0;
    justify-content: center;
  }
  .modal #modalNotBook .modal__content {
    font-size: 3.2vw;
  }
  .modal #modalNotBook .modal__content .headingS {
    margin-bottom: 1em;
  }
}
/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  max-width: 1020px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-grenier .pagination {
  padding: 30px 0 80px;
}
.pagination span,
.pagination a {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 2px;
  text-align: center;
  letter-spacing: 0;
  outline: none;
  text-decoration: none;
  color: #484643;
  background: transparent;
}
.page-grenier .pagination span,
.page-grenier .pagination a {
  background: #f9fbfd;
  border: 1px solid #f9fbfd;
}
.pagination span svg,
.pagination a svg {
  width: 15px;
  height: 15px;
  fill: transparent;
  vertical-align: bottom;
}
.pagination span.next,
.pagination a.next {
  background: none;
  border-color: transparent;
}
.pagination span.next:hover,
.pagination a.next:hover {
  color: #000;
  background: #ffe9c6;
}
.page-grenier .pagination span.next:hover,
.page-grenier .pagination a.next:hover {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}
.page-grenier .page-grenier .pagination span.next:hover,
.page-grenier .page-grenier .pagination a.next:hover {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}
.pagination span.prev,
.pagination a.prev {
  background: none;
}
.pagination span.prev svg,
.pagination a.prev svg {
  transform: rotate(180deg);
}
.pagination span.prev:hover,
.pagination a.prev:hover {
  color: #000;
  background: #ffe9c6;
}
.page-grenier .pagination span.prev:hover,
.page-grenier .pagination a.prev:hover {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}
.pagination span:hover,
.pagination a:hover {
  color: #000;
  background: #ffe9c6;
}
.page-grenier .pagination span:hover,
.page-grenier .pagination a:hover {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}
.pagination span.is-current,
.pagination a.is-current {
  background: #fbf0dc;
}
.pagination span.is-current:hover,
.pagination a.is-current:hover {
  opacity: 1;
}
.page-grenier .pagination span.is-current,
.page-grenier .pagination a.is-current {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}

@media screen and (max-width: 767px) {
  .pagination {
    padding: 5.3333333333vw 0;
  }
  .page-grenier .pagination {
    padding: 8vw 0 21.3333333333vw;
  }
  .pagination span,
  .pagination a {
    width: 11.4666666667vw;
    height: 11.4666666667vw;
    margin: 0 0.5333333333vw;
    font-size: 4.2666666667vw;
  }
  .pagination span svg,
  .pagination a svg {
    width: 4vw;
    height: 4vw;
  }
}
.photo-gallery {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: min(5%, 55px);
}
@media screen and (max-width: 767px) {
  .photo-gallery {
    width: 100%;
    flex-flow: column nowrap;
    gap: 9.0666666667vw;
  }
}
.photo-gallery__carousel {
  max-width: 744px;
  width: 67.6363636364%;
}
@media screen and (max-width: 767px) {
  .photo-gallery__carousel {
    width: 100%;
    max-width: none;
  }
}
.photo-gallery__carousel-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 496px;
  transition: all ease 0.3s;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .photo-gallery__carousel-inner {
    height: 62.1333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
.photo-gallery__carousel-inner .btn-prev,
.photo-gallery__carousel-inner .btn-next {
  position: absolute;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  border: none;
  padding: 10px;
  background: #faf9f0;
  z-index: 5;
  cursor: pointer;
  transition: all ease 0.6s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .photo-gallery__carousel-inner .btn-prev,
  .photo-gallery__carousel-inner .btn-next {
    padding: 2.6666666667vw;
  }
}
.photo-gallery__carousel-inner .btn-prev:hover,
.photo-gallery__carousel-inner .btn-next:hover {
  background-color: #ece9db;
}
.photo-gallery__carousel-inner .btn-prev svg,
.photo-gallery__carousel-inner .btn-next svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .photo-gallery__carousel-inner .btn-prev svg,
  .photo-gallery__carousel-inner .btn-next svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.photo-gallery__carousel-inner .btn-prev.is-disabled,
.photo-gallery__carousel-inner .btn-next.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.photo-gallery__carousel-inner .btn-prev {
  left: 10px;
}
.photo-gallery__carousel-inner .btn-next {
  right: 10px;
}
.photo-gallery__carousel-img-frame {
  display: block;
  width: 100%;
  height: 100%;
}
.photo-gallery__carousel-img-frame.is-remove {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.photo-gallery__carousel-img {
  display: block;
  width: 100%;
  height: 100%;
  background: center center no-repeat;
  background-size: cover;
  object-fit: cover;
  object-position: center;
}
.photo-gallery__caption {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: #80796f;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .photo-gallery__caption {
    font-size: 3.2vw;
  }
}
.photo-gallery__thumbnails {
  max-width: 301px;
  width: 27.3636363636%;
  height: 496px;
  padding: 0;
  position: relative;
  gap: min(2.6209677419%, 13px) min(4.3189368771%, 13px);
}
.photo-gallery__thumbnails::before, .photo-gallery__thumbnails::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity ease 0.3s;
}
.photo-gallery__thumbnails::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 84.9%);
  top: 0;
}
.photo-gallery__thumbnails::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 84.9%);
  bottom: 0;
}
.photo-gallery__thumbnails.is-top::before {
  opacity: 0;
}
.photo-gallery__thumbnails.is-bottom::after {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .photo-gallery__thumbnails {
    width: 100%;
    max-width: none;
    height: 57.8666666667vw;
  }
}
.photo-gallery__thumbnails-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  align-content: flex-start;
  max-width: 301px;
  width: 100%;
  height: 496px;
  padding: 0;
  list-style: none;
  margin: 0;
  overflow-y: scroll;
  gap: min(2.6209677419%, 13px) min(4.3189368771%, 13px);
}
@media screen and (max-width: 767px) {
  .photo-gallery__thumbnails-inner {
    width: 100%;
    max-width: none;
    height: 57.8666666667vw;
    gap: 2.1333333333vw;
  }
}
.photo-gallery__thumbnail {
  display: block;
  width: 47.8405315615%;
  max-width: 144px;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .photo-gallery__thumbnail {
    width: calc(25% - 2.1333333333vw);
    max-width: none;
  }
}
.photo-gallery__thumbnail:hover .photo-gallery__thumbnail-img::after {
  opacity: 1;
}
.photo-gallery__thumbnail-img {
  display: block;
  width: 100%;
  padding-top: 66%;
  background: center center no-repeat;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
}
.photo-gallery__thumbnail-img::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  border: 0 solid #41326e;
  background: rgba(255, 252, 250, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all ease-out 0.2s;
  box-sizing: border-box;
}
.photo-gallery__thumbnail-img.is-selected::after {
  opacity: 1;
  border-width: 2px;
}
.photo-gallery__thumbnail-img:has(video) {
  padding-top: 0;
  height: 100%;
}
.photo-gallery__thumbnail-img:has(video) video {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.photo-gallery__buttons {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  padding: 20px 20px 0 0;
  margin: 0;
  z-index: 1;
}
.photo-gallery__buttons .btn {
  border-radius: 0;
}
.photo-gallery__buttons .btn svg {
  margin-left: 10px;
}
.photo-gallery__buttons li {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
}
.photo-gallery__buttons li + li::before {
  display: block;
  content: "";
  width: 1px;
  height: 40px;
  background: #dedede;
  margin: 0 20px;
}

.toppage-booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #ece9db;
  padding: 44px 16px;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .toppage-booking {
    justify-content: center;
    gap: 5.3333333333vw;
    padding: 8.5333333333vw 4.2666666667vw;
  }
}

.toppage-booking__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .toppage-booking__inner {
    padding: 0 4.8vw;
  }
}

.toppage-booking__form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .toppage-booking__form {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.2666666667vw;
  }
}

.toppage-booking__fields {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .toppage-booking__fields {
    flex-direction: column;
    width: 100%;
    gap: 3.2vw;
  }
}

.toppage-booking__date,
.toppage-booking__guests {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .toppage-booking__date,
  .toppage-booking__guests {
    width: 100%;
    gap: 1.6vw;
  }
}
.toppage-booking__date label,
.toppage-booking__guests label {
  display: block;
  color: #5e584d;
  height: 22px;
  font-feature-settings: "palt" on;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking__date label,
  .toppage-booking__guests label {
    font-size: 3.4666666667vw;
  }
}
.toppage-booking__date label,
.toppage-booking__guests label {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .toppage-booking__date label,
  .toppage-booking__guests label {
    height: 5.8666666667vw;
    font-size: 3.7333333333vw;
  }
}

.toppage-booking__date-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  border: 1px solid #d6d3c1;
  border-radius: 6px;
  background-color: #faf9f0;
  padding: 8px 13px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .toppage-booking__date-field {
    gap: 0;
    height: 11.7333333333vw;
    border-radius: 1.6vw;
    padding: 2.1333333333vw 3.4666666667vw;
  }
}

input.toppage-booking__date-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  padding: 0;
  height: auto;
  color: #5e584d;
  cursor: pointer;
  font-feature-settings: "palt" on;
  line-height: 1.6;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  input.toppage-booking__date-input {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  input.toppage-booking__date-input {
    font-size: 4.2666666667vw;
    transform: scale(calc(14 / 16));
    transform-origin: left center;
    min-width: 68.2666666667vw;
  }
}
input.toppage-booking__date-input[readonly] {
  color: #5e584d;
}

.toppage-booking__date-field svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #5e584d;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .toppage-booking__date-field svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}

.toppage-booking__guests-selects {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .toppage-booking__guests-selects {
    gap: 1.0666666667vw;
    align-items: center;
  }
}

.toppage-booking__adults,
.toppage-booking__children {
  flex: 1;
  height: 44px;
  border: 1px solid #d6d3c1;
  border-radius: 6px;
  background-color: #faf9f0;
  color: #5e584d;
  padding: 8px 34px 8px 13px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%278%27%20height=%275%27%20viewBox=%270%200%208%205%27%3E%3Cpath%20d=%27M4%205L0%200h8z%27%20fill=%27%2341326E%27/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 8px 5px;
  font-feature-settings: "palt" on;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking__adults,
  .toppage-booking__children {
    font-size: 3.4666666667vw;
  }
}
.toppage-booking__adults,
.toppage-booking__children {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .toppage-booking__adults,
  .toppage-booking__children {
    height: 11.7333333333vw;
    border-radius: 1.6vw;
    padding: 2.1333333333vw 9.0666666667vw 2.1333333333vw 3.4666666667vw;
    font-size: 3.7333333333vw;
  }
}

.toppage-booking__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  flex-shrink: 0;
  height: 44px;
  border: none;
  border-radius: 6px;
  background-color: #41326e;
  color: #faf9f0;
  cursor: pointer;
  padding-top: 2px;
  white-space: nowrap;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking__submit {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-booking__submit {
    width: 100%;
    height: 11.7333333333vw;
    border-radius: 1.6vw;
    padding-top: 0.5333333333vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .toppage-booking__submit:hover {
    opacity: 0.6;
  }
}
.toppage-booking__submit:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.toppage-booking__error {
  color: #c40000;
  text-align: center;
  margin: 8px 0 0;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking__error {
    font-size: 3.2vw;
  }
}
.toppage-booking__error[hidden] {
  display: none;
}

.flatpickr-calendar.flatpickr-calendar {
  background: #faf9f0;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 492px;
}
.flatpickr-calendar.flatpickr-calendar::before, .flatpickr-calendar.flatpickr-calendar::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar.flatpickr-calendar {
    border-radius: 2.1333333333vw;
    padding: 3.4666666667vw;
  }
}

.flatpickr-calendar .flatpickr-months {
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar .flatpickr-months {
    padding: 3.7333333333vw 4.8vw;
  }
}
.flatpickr-calendar .flatpickr-months .flatpickr-month {
  position: static;
  height: auto;
  overflow: visible;
}

.flatpickr-calendar .flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  padding-top: 0;
  gap: 2px;
  position: static;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar .flatpickr-current-month {
    font-size: 4.2666666667vw;
    gap: 0.5333333333vw;
    height: 6.9333333333vw;
  }
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  order: -1;
  width: fit-content;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown {
  display: none;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper::after {
  content: "年";
  display: inline-block;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper:hover {
  background: transparent;
}
.flatpickr-calendar .flatpickr-current-month span.cur-month {
  order: 1;
  margin-left: 0;
  font-weight: 500;
}
.flatpickr-calendar .flatpickr-current-month span.cur-month:hover {
  background: transparent;
}
.flatpickr-calendar .flatpickr-current-month input.cur-year {
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  pointer-events: none;
  padding: 0;
  display: inline-block;
  width: 4.5ch;
  min-width: 4ch;
  max-width: 100%;
  height: 1lh;
}
@supports (field-sizing: content) {
  .flatpickr-calendar .flatpickr-current-month input.cur-year {
    field-sizing: content;
  }
}

html[lang=en] .flatpickr-calendar .flatpickr-current-month {
  gap: 0.5ch;
}
html[lang=en] .flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  order: 0;
}
html[lang=en] .flatpickr-calendar .flatpickr-current-month .numInputWrapper::after {
  content: none;
}
html[lang=en] .flatpickr-calendar .flatpickr-current-month span.cur-month {
  order: 0;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: #191919;
  fill: #191919;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 18px;
  width: 18px;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
  .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
    height: 4.8vw;
    width: 4.8vw;
  }
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
  color: #41326e;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #41326e;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: block;
  visibility: hidden;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  height: 100%;
  width: 100%;
}

.flatpickr-calendar .flatpickr-innerContainer {
  padding: 0 6px;
}

.flatpickr-calendar .flatpickr-weekdays {
  height: auto;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar .flatpickr-weekdays {
    padding: 1.6vw 0;
  }
}

.flatpickr-calendar span.flatpickr-weekday {
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #191919;
  height: auto;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar span.flatpickr-weekday {
    font-size: 3.4666666667vw;
  }
}

.flatpickr-calendar .flatpickr-days {
  width: 100%;
}

.flatpickr-calendar .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.flatpickr-calendar .flatpickr-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: auto;
  min-height: 55px;
  max-width: none;
  line-height: 1;
  border-radius: 0;
  color: #191919;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar .flatpickr-day {
    font-size: 4vw;
    gap: 0.8vw;
    min-height: 13.6vw;
  }
}
.flatpickr-calendar .flatpickr-day.selected {
  background-color: #312359 !important;
  border-color: #312359 !important;
  color: #fff;
  box-shadow: none;
}
.flatpickr-calendar .flatpickr-day.selected .flatpickr-day-price {
  color: #fff;
}

.flatpickr-day-price {
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #41326e;
  line-height: 1;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .flatpickr-day-price {
    font-size: 2.6666666667vw;
  }
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: rgba(49, 35, 89, 0.7) !important;
  border-color: rgba(49, 35, 89, 0.7) !important;
  box-shadow: none !important;
  border: none !important;
}

.flatpickr-day.startRange {
  border-radius: 12px 0 0 12px !important;
}
@media screen and (max-width: 767px) {
  .flatpickr-day.startRange {
    border-radius: 3.2vw 0 0 3.2vw;
  }
}

.flatpickr-day.startRange:not(:has(+ .endRange), :has(+ .inRange)) {
  border-radius: 12px !important;
}
@media screen and (max-width: 767px) {
  .flatpickr-day.startRange:not(:has(+ .endRange), :has(+ .inRange)) {
    border-radius: 3.2vw;
  }
}

.flatpickr-day.endRange {
  border-radius: 0 12px 12px 0 !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.inRange {
  color: #fff !important;
  box-shadow: none;
}
.flatpickr-day.startRange .flatpickr-day-price,
.flatpickr-day.endRange .flatpickr-day-price,
.flatpickr-day.selected.startRange .flatpickr-day-price,
.flatpickr-day.selected.endRange .flatpickr-day-price,
.flatpickr-day.inRange .flatpickr-day-price {
  color: #fff !important;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange {
  background: #312359 !important;
  border-color: #312359 !important;
}

.flatpickr-day.selected.endRange {
  border-radius: 0 12px 12px 0;
  box-shadow: none !important;
}
@media screen and (max-width: 767px) {
  .flatpickr-day.selected.endRange {
    border-radius: 0 3.2vw 3.2vw 0;
  }
}

.flatpickr-day.selected.startRange.endRange {
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .flatpickr-day.selected.startRange.endRange {
    border-radius: 3.2vw;
  }
}

.flatpickr-day.inRange {
  background: rgba(49, 35, 89, 0.7) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.flatpickr-calendar .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  background: #ebe9df;
  color: rgba(25, 25, 25, 0.4);
  cursor: not-allowed;
  border-color: transparent;
}
.flatpickr-calendar .flatpickr-day.flatpickr-disabled .flatpickr-day-price,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover .flatpickr-day-price {
  color: rgba(25, 25, 25, 0.4);
}

.flatpickr-calendar .flatpickr-day.is-checkout-only,
.flatpickr-calendar .flatpickr-day.is-checkout-only:hover {
  background: #ebe9df;
  color: rgba(25, 25, 25, 0.4);
  cursor: pointer;
  border-color: transparent;
}
.flatpickr-calendar .flatpickr-day.is-checkout-only .flatpickr-day-price,
.flatpickr-calendar .flatpickr-day.is-checkout-only:hover .flatpickr-day-price {
  color: rgba(25, 25, 25, 0.4);
}

.flatpickr-calendar .flatpickr-day.is-checkout-only.inRange {
  background: #ebe9df !important;
  color: rgba(25, 25, 25, 0.4) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.flatpickr-calendar .flatpickr-day.is-checkout-only.inRange .flatpickr-day-price {
  color: rgba(25, 25, 25, 0.4) !important;
}

.flatpickr-calendar .flatpickr-day.is-checkout-only.selected {
  background-color: #312359 !important;
  border-color: #312359 !important;
  color: #fff;
}
.flatpickr-calendar .flatpickr-day.is-checkout-only.selected .flatpickr-day-price {
  color: #fff;
}

.flatpickr-calendar.is-checkout-picking .flatpickr-day.is-checkout-only:not(.selected):not(.startRange):not(.endRange) {
  background: transparent;
  color: #191919;
}
.flatpickr-calendar.is-checkout-picking .flatpickr-day.is-checkout-only:not(.selected):not(.startRange):not(.endRange) .flatpickr-day-price {
  color: #41326e;
}
.flatpickr-calendar.is-checkout-picking .flatpickr-day.is-checkout-only:not(.selected):not(.startRange):not(.endRange):hover {
  background: rgba(49, 35, 89, 0.1);
  color: #191919;
  border-color: transparent;
}
.flatpickr-calendar.is-checkout-picking .flatpickr-day.is-checkout-only:not(.selected):not(.startRange):not(.endRange):hover .flatpickr-day-price {
  color: #41326e;
}

.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):not(.is-checkout-only),
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):not(.is-checkout-only) {
  color: rgba(25, 25, 25, 0.4);
  cursor: pointer;
}
.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):not(.is-checkout-only) .flatpickr-day-price,
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):not(.is-checkout-only) .flatpickr-day-price {
  color: rgba(65, 50, 110, 0.5);
}

.flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
  border-color: #41326e;
}
.flatpickr-day.today:not(.selected):not(.startRange):not(.endRange):hover {
  background: rgba(49, 35, 89, 0.1);
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected):not(.startRange):not(.endRange):not(.inRange) {
  background: rgba(49, 35, 89, 0.1);
  border-color: transparent;
}

.flatpickr-calendar-footer {
  padding: 14px 18px;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #5e584d;
  border-top: 1px solid #d6d3c1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .flatpickr-calendar-footer {
    text-align: center;
    font-size: 3.7333333333vw;
    padding: 3.4666666667vw;
  }
}

.flatpickr-calendar.is-loading .flatpickr-day-price {
  opacity: 0;
}

.toppage-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.toppage-booking-modal[hidden] {
  display: none;
}
.toppage-booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.4);
}
.toppage-booking-modal__container {
  position: relative;
  z-index: 1;
  background: #faf9f0;
  border-radius: 3.2vw;
  width: 100%;
  max-width: 106.6666666667vw;
  height: fit-content;
  max-height: calc(100vh - 13.3333333333vw);
  overflow-y: auto;
}
.toppage-booking-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid #d6d3c1;
  color: #191919;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__header {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__header {
    padding: 4vw 4.2666666667vw;
    font-size: 3.7333333333vw;
    font-weight: 500;
    line-height: 1.6;
  }
}
.toppage-booking-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #5e584d;
  display: flex;
  align-items: center;
}
.toppage-booking-modal__close svg {
  width: 6.4vw;
  height: 6.4vw;
}
.toppage-booking-modal__calendar .flatpickr-calendar {
  box-shadow: none;
  border: none;
  width: 100%;
  max-width: none;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__calendar .flatpickr-calendar {
    padding: 0;
  }
}
.toppage-booking-modal__calendar .flatpickr-calendar-footer {
  display: none;
}
.toppage-booking-modal__price-note {
  padding: 13px 16px;
  border-bottom: 1px solid #d6d3c1;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #5e584d;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__price-note {
    border-top: 1px solid #d6d3c1;
    border-bottom: none;
    font-size: 3.2vw;
    line-height: 1.4;
    padding: 3.4666666667vw 4.2666666667vw;
  }
}
.toppage-booking-modal__footer {
  padding: 0 16px 13px;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__footer {
    padding: 0 4.2666666667vw 3.7333333333vw;
    border-top: 1px solid #d6d3c1;
  }
}
.toppage-booking-modal__dates {
  display: flex;
  padding: 13px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__dates {
    padding: 3.2vw 0 3.7333333333vw;
  }
}
.toppage-booking-modal__date-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5333333333vw;
  align-items: center;
}
.toppage-booking-modal__date-item:first-child {
  border-right: 1px solid #d6d3c1;
}
.toppage-booking-modal__date-item > span:first-child {
  color: rgba(25, 25, 25, 0.4);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__date-item > span:first-child {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__date-item > span:first-child {
    font-size: 3.4666666667vw;
    line-height: 1.6;
  }
}
.toppage-booking-modal__date-value {
  color: #191919;
  font-feature-settings: "palt" on;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__date-value {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__date-value {
    font-size: 4.2666666667vw;
    font-weight: 500;
    line-height: 1.6;
  }
}
.toppage-booking-modal__apply {
  width: 100%;
  padding: 1.8666666667vw;
  border: none;
  border-radius: 1.6vw;
  background: #41326e;
  color: #faf9f0;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toppage-booking-modal__apply {
    font-size: 3.7333333333vw;
  }
}
.toppage-booking-modal__apply[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.red {
  color: #c40000 !important;
}

.has-text-align-center,
.is-center {
  text-align: center !important;
}

.has-text-align-right,
.is-right {
  text-align: right !important;
}

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

.wp-block-embed-youtube .wp-block-embed__wrapper,
.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  padding-top: 30px;
  margin-bottom: 1.5em;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Common Style
-----------------------------------*/
/* plugin style
-----------------------------------*/
/* View style
-----------------------------------*/
/* Components style
-----------------------------------*/
/* extension style
-----------------------------------*/

/*# sourceMappingURL=style.css.map */
