@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes arrow {
  0% {
    right: 37px;
  }
  30% {
    right: 22px;
  }
  90% {
    right: 22px;
  }
  100% {
    right: 37px;
  }
}
@keyframes arrow {
  0% {
    right: 37px;
  }
  30% {
    right: 22px;
  }
  90% {
    right: 22px;
  }
  100% {
    right: 37px;
  }
}
.fade_in01 {
  -webkit-animation: fadein 1s 0.3s forwards;
          animation: fadein 1s 0.3s forwards;
}

.fade_in02 {
  -webkit-animation: fadein 1.8s 1s forwards;
          animation: fadein 1.8s 1s forwards;
}

.fade_in03 {
  -webkit-animation: fadein 0.6s 1s forwards;
          animation: fadein 0.6s 1s forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
}
.ext_lr {
  -webkit-animation: extendright 0.5s 0.3s forwards;
          animation: extendright 0.5s 0.3s forwards;
}

.ext_lr2 {
  -webkit-animation: extendright 0.5s 0.7s forwards;
          animation: extendright 0.5s 0.7s forwards;
}

.ext_lr3 {
  -webkit-animation: extendright 0.5s 1.1s forwards;
          animation: extendright 0.5s 1.1s forwards;
}

.ext_lr0 {
  -webkit-animation: extendright 0.5s 11s forwards;
          animation: extendright 0.5s 11s forwards;
}

/*左から右に伸びる*/
@-webkit-keyframes extendright {
  0% {
    clip-path: inset(100% 100% 0 0 round 0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
@keyframes extendright {
  0% {
    clip-path: inset(100% 100% 0 0 round 0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0 round 0);
    opacity: 1;
  }
}
html {
  scroll-padding-top: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  color: #E5E5E5;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.5;
  background-color: #D5DEE3;
  background-image: url(../img/common/bg.webp);
}

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

img {
  width: 100%;
}

.header {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-transition: background-color 0s;
  transition: background-color 0s;
}
@media print, screen and (max-width: 1023.9px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
@media print, screen and (min-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
.header__logo {
  width: 170px;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    width: 125px;
  }
}

.header__bottom {
  /*
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;*/
  padding: 17px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__bottom::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media print, screen and (max-width: 1023.9px) {
  .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 10px;
  }
}
.header__bottom.-active {
  display: none;
}
.header__nav {
  margin-left: auto;
  padding: 11px 20px 10px;
}
@media print, screen and (min-width: 1024px) {
  .header__nav {
    padding-right: 60px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav {
    width: 100%;
    display: none;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav .header__button {
    width: 100%;
    margin-top: 20px;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
.header__nav-list .sub {
  position: absolute;
  text-align: left;
  top: 20px;
  left: -90px;
  padding: 18px 0 0 0;
  display: none;
  z-index: 10;
}
.header__nav-list .sub.-active {
  display: block;
}
.header__nav-list .sub__inner {
  padding: 15px;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: background-color 0s;
  transition: background-color 0s;
}
.header__nav-list .sub__inner li {
  width: 48.5%;
  margin-bottom: 5px;
}
.header__nav-list .sub__inner li a {
  width: 100%;
  padding: 6px 7px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: left;
}
.header__nav-list .sub__inner li a span {
  font-size: 9px;
  font-family: "Cormorant Garamond", serif;
}
.header__nav-list .sub__inner li a:after {
  content: url(../img/common/h-a.svg) !important;
  position: absolute;
  top: 6px;
  right: 6px;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none;
          transform: none;
  height: auto;
  background: none;
  width: auto;
}

.header__nav-item {
  position: relative;
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav-item:nth-child(2n+1)::before {
    display: none;
  }
}
.header__nav-item.-first {
  position: relative;
  display: block;
  cursor: pointer;
}
.header__nav-item.-first:after {
  content: none;
}
.header__nav-link {
  display: block;
  text-align: center;
  line-height: 1.2;
  color: #ac9674;
  letter-spacing: 0.1em;
  font-size: 13px;
  padding: 0 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__nav-link.-none {
  cursor: default;
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav-link {
    font-size: 13px;
  }
}
.header__nav-link span {
  display: block;
  font-size: 11.5px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav-link span {
    font-size: 11px;
    margin-top: 5px;
  }
}
.header__nav-link:hover {
  color: #e7cda5;
}
@media print, screen and (min-width: 1024px) {
  .header__nav-link:hover:before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.header__nav-link:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -6px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #FFF;
}
.header__nav-link.active:before {
  content: none;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -6px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000;
}

.-soon .header__nav-link {
  pointer-events: none;
  opacity: 0.4;
  position: relative;
}

.-first .header__nav-link:after {
  content: none;
}

.sub .header__nav-link {
  position: relative;
}
.sub .header__nav-link:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 1px;
}
.sub .header__nav-link.active:before {
  content: none;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.hamburger__in {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: -1;
}
.hamburger__in.-active {
  visibility: visible;
  opacity: 1;
  height: 100vh;
  background: #FFF;
  z-index: 100;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__in.-active .hamburger__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100vh;
  }
}

.hamburger__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 0;
  }
}
.hamburger__inner .hLeft {
  width: 50%;
  background: url(../img/common/nav-bg.webp);
  background-size: cover;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hLeft {
    display: none;
  }
}
.hamburger__inner .hLeft h1 {
  width: 50%;
}
.hamburger__inner .hRight {
  width: 50%;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 6% 0 6%;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight {
    width: 100%;
  }
}
.hamburger__inner .hRight__ul {
  width: 47%;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul {
    width: 100%;
  }
  .hamburger__inner .hRight__ul .-main {
    display: block !important;
    font-size: 11px;
  }
  .hamburger__inner .hRight__ul .-main span {
    font-size: 9px;
  }
  .hamburger__inner .hRight__ul .-main:after {
    content: url(../img/common/ar.svg);
    margin-left: 10px;
    padding-bottom: 3px;
    position: absolute;
    top: 14px;
    right: 2%;
  }
  .hamburger__inner .hRight__ul .-main.-afnone:after {
    content: none;
  }
}
.hamburger__inner .hRight__ul .sub {
  width: 100%;
  opacity: 0;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  visibility: hidden;
  height: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .sub {
    width: 100%;
  }
}
.hamburger__inner .hRight__ul .sub__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .sub__inner {
    margin-bottom: 10px;
  }
}
.hamburger__inner .hRight__ul .sub__inner li {
  width: 49.2%;
  margin-bottom: 4px;
}
.hamburger__inner .hRight__ul .sub__inner li a {
  padding: 10px 0;
  background: #f8f7f5;
  text-align: center;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .sub__inner li a {
    padding: 6px 0 4px;
    font-size: 11px;
  }
  .hamburger__inner .hRight__ul .sub__inner li a span {
    font-size: 10px;
  }
}
.hamburger__inner .hRight__ul .header__nav-item {
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.hamburger__inner .hRight__ul .header__nav-item a {
  text-align: left;
  padding: 20px 0;
  color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .header__nav-item a {
    padding: 7px 0 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hamburger__inner .hRight__ul .header__nav-item a:hover {
  opacity: 0.5;
}
.hamburger__inner .hRight__ul .header__nav-item a span {
  font-family: "Cormorant Garamond", serif;
  display: block;
  margin: 3px;
  color: #707070;
}
.hamburger__inner .hRight__ul .header__nav-item.-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.hamburger__inner .hRight__ul .header__nav-item.-first:after {
  content: url(../img/common/pl.svg);
  margin-left: 10px;
  padding-bottom: 3px;
  position: absolute;
  top: 20px;
  right: 54%;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .header__nav-item.-first:after {
    content: url(../img/common/pl.svg);
    margin-left: 10px;
    padding-bottom: 3px;
    position: absolute;
    top: 10px;
    right: 2%;
  }
}
.hamburger__inner .hRight__ul .header__nav-item.-first.-active:after {
  content: url(../img/common/mi.svg);
  margin-left: 10px;
  padding-bottom: 3px;
  position: absolute;
  top: 20px;
  right: 54%;
}
.hamburger__inner .hRight__ul .header__nav-item.-first.-active .sub {
  height: 310px;
  visibility: visible;
  opacity: 1;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .header__nav-item.-first.-active .sub {
    height: 250px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__inner .hRight__ul .header__nav-item.-first.-active:after {
    content: url(../img/common/mi.svg);
    margin-left: 10px;
    padding-bottom: 3px;
    position: absolute;
    top: 10px;
    right: 2%;
  }
}

.jpen {
  padding: 12px 10px 0 0px;
  position: fixed;
  top: 17px;
  right: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .jpen {
    top: 6px;
    right: 35px;
  }
}
.jpen::before {
  content: none;
  display: block;
  width: 1px;
  height: 80%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.-active .header__nav-item.jpen::before {
  content: "";
}
.-active .header__nav-link:before {
  content: none;
  background: #4c4948;
}

.sp-fixed-header {
  display: none;
}
@media print, screen and (max-width: 1023.9px) {
  .sp-fixed-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 10;
  }
}

.sp-fixed-header__menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-fixed-header__menu li {
  background: #ddd;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sp-fixed-header__menu li + li {
  border-left: 1px solid #999;
}

.sp-fixed-header__button {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ddd;
  height: 53px;
  font-size: 12px;
}
.sp-fixed-header__button img {
  width: 23px;
}
.sp-fixed-header__button.-map img {
  width: 54px;
}
.sp-fixed-header__button.-bl {
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(#888));
  background: linear-gradient(0deg, #000 0%, #888 100%);
  color: #fff;
}
.sp-fixed-header__button.-bl img {
  width: 48px;
}
.sp-fixed-header__button.-gold {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(93, 69, 12)), to(rgb(182, 139, 57)));
  background: linear-gradient(0deg, rgb(93, 69, 12) 0%, rgb(182, 139, 57) 100%);
  color: #fff;
}
.sp-fixed-header__button.-gold img {
  width: 65px;
}
.sp-fixed-header__button.-red {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(105, 2, 0)), to(rgb(200, 46, 25)));
  background: linear-gradient(0deg, rgb(105, 2, 0) 0%, rgb(200, 46, 25) 100%);
  color: #fff;
}
.sp-fixed-header__button.-red img {
  width: 60px;
}

.hamburger__out {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 101;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__out {
    top: 9px;
    right: 10px;
  }
}

.hamburger {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  z-index: 100;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  top: 15px;
  -webkit-transform: translateX(-50%) rotate(30deg);
          transform: translateX(-50%) rotate(30deg);
}
.hamburger.active span:nth-child(2) {
  top: 15px;
  -webkit-transform: translateX(-50%) rotate(-30deg);
          transform: translateX(-50%) rotate(-30deg);
  width: 30px;
  left: 50%;
}

.fix__btn {
  position: fixed;
  bottom: 3%;
  right: 1.3%;
  opacity: 0;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  z-index: 10;
}
.fix__btn.-active {
  opacity: 1;
}
.fix__btn a {
  background: #726149;
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  padding: 25px 11px 20px;
  text-align: center;
  font-size: clamp(0.8125rem, 0.5933rem + 0.3425vw, 1rem);
  line-height: 1.7;
  letter-spacing: 4px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.fix__btn a:hover {
  background: #FFF;
  color: #726149;
}
.fix__btn a span {
  font-family: "EB Garamond", serif;
  font-size: 85%;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.reserveBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  z-index: 10;
}
@media print, screen and (max-width: 1023.9px) {
  .reserveBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 92%;
    left: 4%;
    right: 4%;
    bottom: 2%;
  }
}
.reserveBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #86c2ec;
  color: #FFF;
  font-size: 16px;
  position: relative;
  height: 50px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: 1px solid #86c2ec;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (max-width: 1023.9px) {
  .reserveBtn a {
    width: 47.5%;
    font-size: 13px;
  }
}
.reserveBtn a.-active {
  opacity: 1;
  visibility: visible;
}
.reserveBtn a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.reserveBtn a:hover {
  background: #FFF;
  color: #86c2ec;
}
.reserveBtn a:hover:after {
  content: "";
  border-top: 1px solid #86c2ec;
  border-right: 1px solid #86c2ec;
}
.reserveBtn a.-check {
  background: #FFF;
  color: #86c2ec;
}
@media print, screen and (min-width: 1024px) {
  .reserveBtn a.-check {
    display: none;
  }
}

.pageTop {
  position: absolute;
  top: 30px;
  right: 1%;
  -webkit-transition: 0.35s all;
  transition: 0.35s all;
  z-index: 10;
}
@media print, screen and (max-width: 1023.9px) {
  .pageTop {
    right: 10px;
    top: 40px;
  }
}
.pageTop a {
  position: relative;
  display: block;
  padding-top: 20px;
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  width: 64px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pageTop a:before {
  content: "";
  background: #707070;
  width: 30px;
  height: 1px;
  -webkit-transform: translateX(0%) rotate(-45deg);
          transform: translateX(0%) rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
}
.pageTop a:after {
  content: "";
  background: #707070;
  width: 30px;
  height: 1px;
  -webkit-transform: translateX(0%) rotate(45deg);
          transform: translateX(0%) rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
}
.pageTop a span {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 6px;
}
.pageTop a:hover span {
  -webkit-transform: translateX(0%) rotate(90deg);
          transform: translateX(0%) rotate(90deg);
  padding-top: 0px;
  padding-left: 20px;
}
.pageTop a:before {
  content: "";
  background: #FFF;
  width: 30px;
  height: 1px;
  -webkit-transform: translateX(0%) rotate(-45deg);
          transform: translateX(0%) rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pageTop a:after {
  content: "";
  background: #FFF;
  width: 30px;
  height: 1px;
  -webkit-transform: translateX(0%) rotate(45deg);
          transform: translateX(0%) rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pageTop a:hover {
  opacity: 1 !important;
}
.pageTop a:hover:before {
  content: "";
  -webkit-transform: translateX(21%) rotate(-45deg);
          transform: translateX(21%) rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
}
.pageTop a:hover:after {
  content: "";
  -webkit-transform: translateX(-21%) rotate(45deg);
          transform: translateX(-21%) rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .pageTop a span {
    -webkit-transform: translateX(0%) rotate(90deg);
            transform: translateX(0%) rotate(90deg);
    padding-top: 0px;
    padding-left: 20px;
  }
  .pageTop a:before {
    content: "";
    background: #707070;
    width: 30px;
    height: 1px;
    -webkit-transform: translateX(21%) rotate(-45deg);
            transform: translateX(21%) rotate(-45deg);
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .pageTop a:after {
    content: "";
    background: #707070;
    width: 30px;
    height: 1px;
    -webkit-transform: translateX(-21%) rotate(45deg);
            transform: translateX(-21%) rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.footer {
  position: relative;
  width: 100vw;
  font-size: 13px;
  padding: 90px 100px 30px;
  background: #1e2330;
  color: #E5E5E5;
  z-index: 2;
}
@media print, screen and (max-width: 1023.9px) {
  .footer {
    padding: 60px 25px 50px;
    font-size: 12px;
  }
}
.footer a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer a:hover {
  opacity: 0.6;
}
.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .leftArea {
  width: 30%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .leftArea {
    width: 100%;
    margin-bottom: 70px;
  }
}
.footer .leftArea h1 {
  width: 240px;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer h1 {
    width: 50%;
    margin: 30px auto;
  }
}
.footer .leftArea__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .leftArea__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .leftArea__flex .txt-02 {
  margin-left: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .leftArea__flex .txt-02 {
    margin-left: 0;
  }
}
.footer .menuArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 32%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .menuArea {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .menuArea__left {
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .menuArea__left {
    width: 100%;
    margin-bottom: 60px;
  }
}
.footer .txt-01 {
  line-height: 2;
}
.footer .txt-02 {
  margin-top: 30px;
  font-size: 14px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .txt-02 {
    font-size: 13px;
    margin-top: 5px;
  }
}
.footer .txt-02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Cormorant Garamond", serif;
}
.footer .txt-02 span {
  width: 15px;
  display: block;
  margin-left: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .txt-02 span {
    width: 12px;
    margin-left: 7px;
  }
}
.footer .f-ttl {
  font-size: 17px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-ttl {
    margin-bottom: 30px;
  }
}
.footer .f-menu {
  font-size: 13px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .f-menu.-n2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer .f-menu.-n2 li {
    width: auto;
    margin-right: 30px;
  }
  .footer .f-menu.-n2 li a {
    border: none;
  }
  .footer .f-menu.-n2 li a:after {
    content: none;
  }
}
.footer .f-menu .sub {
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  border-bottom: 1px solid #333;
}
.footer .f-menu .sub.-active {
  opacity: 1;
  height: 190px;
  visibility: visible;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .sub.-active {
    height: 170px;
  }
}
.footer .f-menu .sub.-active .sub__inner {
  margin-top: 10px;
  padding-left: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .sub.-active .sub__inner {
    margin-bottom: 10px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu li {
    width: 100%;
    margin-bottom: 0;
  }
}
.footer .f-menu li.-soon a {
  pointer-events: none;
  opacity: 0.5;
}
.footer .f-menu li.-first {
  cursor: pointer;
}
.footer .f-menu li.-first .footer__link:after {
  content: url(../img/common/pl.svg);
}
.footer .f-menu li.-first.-active .footer__link:after {
  content: url(../img/common/mi.svg);
}
.footer .f-menu .footer__link {
  position: relative;
  width: 100%;
  display: block;
  border-bottom: 1px solid #444;
  padding: 10px 0;
}
.footer .f-menu .footer__link:after {
  content: url(../img/common/ar.svg);
  margin-left: 10px;
  padding-bottom: 3px;
  position: absolute;
  top: 14px;
  right: 2%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .footer__link {
    width: 100%;
    border-bottom: 1px solid #494d56;
    margin-bottom: 0;
    padding: 13px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .f-menu .footer__link:after {
    content: url(../img/common/f-a.svg);
    margin-left: auto;
    padding-right: 10px;
  }
}
.footer .f-menu .sub li {
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .sub li {
    margin: 0;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .sub a {
    border: none;
    padding: 5px;
  }
}
.footer .f-menu .sub__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .f-menu .sub__inner li {
  width: 43.2%;
  margin-bottom: 4px;
}
.footer .f-menu .footer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 6px 0;
  text-align: center;
  font-size: 13px;
}
.footer .f-menu .footer__nav-link span {
  font-size: 11px;
  font-family: "Cormorant Garamond", serif;
  margin-left: 14px;
  color: #74777c;
}
.footer .f-menu .footer__nav-link:before {
  content: url(../img/common/ar-w.svg);
  margin-right: 12px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .f-menu .footer__nav-link {
    padding: 6px 0 4px;
    font-size: 11px;
  }
  .footer .f-menu .footer__nav-link span {
    font-size: 10px;
    font-family: "Cormorant Garamond", serif;
  }
}
.footer .copyright {
  text-align: center;
  font-size: 13px;
  font-family: "Cormorant Garamond", serif;
  margin-top: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer .copyright {
    margin-top: 0px;
    font-size: 10px;
  }
}

.reserveArea {
  background-color: #171B24;
  background-image: url(../img/common/res-bg.webp);
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0 130px;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1023.9px) {
  .reserveArea {
    background-image: url(../img/common/res-bg-sp.webp);
    padding: 70px 0 80px;
  }
}
.reserveArea .contents-wrap {
  max-width: 1000px;
}
.reserveArea .resH4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reserveArea .resH4:before {
  content: url(../img/common/i-res.svg);
  margin-right: 5px;
}
@media print, screen and (max-width: 1023.9px) {
  .reserveArea .resH4 {
    font-size: 23px;
  }
  .reserveArea .resH4:before {
    content: url(../img/common/i-res-sp.svg);
    margin-right: 5px;
  }
}

sup {
  font-size: 10px;
  -webkit-transform: translate(-18px, -15px);
          transform: translate(-18px, -15px);
  display: inline-block;
  width: 0;
}
@media print, screen and (max-width: 1023.9px) {
  sup {
    -webkit-transform: translate(-18px, -10px);
            transform: translate(-18px, -10px);
  }
}

.img-basic {
  position: relative;
}
.img-basic.-bg {
  background: #c6bfb7;
}
.img-basic figcaption {
  text-align: right;
  margin-top: 5px;
  font-size: 12px;
}
@media print, screen and (max-width: 1023.9px) {
  .img-basic figcaption {
    font-size: 10px;
    letter-spacing: 0;
  }
}
.img-basic figcaption.-white {
  color: #fff;
}
.img-basic figcaption.-has_mr {
  margin-right: 10px;
}
.img-basic figcaption.-tal {
  text-align: left;
}
@media print, screen and (min-width: 1024px) {
  .img-basic figcaption.-tal.-left {
    padding-left: 10px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .img-basic figcaption.-tal {
    text-align: right;
  }
  .img-basic figcaption.-tal.-left {
    text-align: left;
    padding: 0 15px;
  }
}

.img-basic__inner {
  position: relative;
  display: block;
}

.img-basic__caption {
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}
@media print, screen and (max-width: 1023.9px) {
  .img-basic__caption {
    font-size: 10px;
    padding: 2px 5px;
  }
}

@media print, screen and (min-width: 1024px) {
  .hide-at-pc {
    display: none !important;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .hide-at-sp {
    display: none !important;
  }
}

.contents-wrap {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .contents-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.contents-wrap.-large {
  max-width: 1200px;
}

.child-mv__headingArea {
  padding-left: 3%;
}
.child-mv__headingArea.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (max-width: 1023.9px) {
  .child-mv__headingArea.-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.child-mv__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
  color: #6C573B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.child-mv__heading:after {
  content: "";
  width: 153px;
  height: 1px;
  background: #6C573B;
  margin-left: 15px;
  margin-top: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .child-mv__heading {
    font-size: 47px;
    letter-spacing: 2px;
    white-space: nowrap;
  }
}

.child-mv {
  position: relative;
  -webkit-animation: fadeIn 1s ease-out 0s forwards;
          animation: fadeIn 1s ease-out 0s forwards;
  opacity: 0;
  width: 94%;
  margin: 60px auto 0;
}
@media print, screen and (max-width: 1023.9px) {
  .child-mv {
    margin-top: 30px;
  }
}

.pageCap {
  padding: 100px 0 100px;
  background: #FFF;
  color: #000;
  font-size: 12px;
  letter-spacing: 0;
}
.pageCap.-nomb {
  padding-bottom: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .pageCap {
    font-size: 10px;
    padding: 50px 0 50px;
  }
}

.rootMv {
  aspect-ratio: 16/8.8;
  overflow: hidden;
}
.rootMv iframe {
  width: 100%;
  height: 100%;
}

.acMv {
  max-width: 1200px;
  margin: 180px auto 100px;
  border: 1px solid #ccc;
}
@media print, screen and (max-width: 1023.9px) {
  .acMv {
    margin: 50px auto -8px;
  }
}