@charset "UTF-8";
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.delay11 {
  transition-delay: 1.1s !important;
}

.delay12 {
  transition-delay: 1.2s !important;
}

.delay13 {
  transition-delay: 1.3s !important;
}

.delay14 {
  transition-delay: 1.4s !important;
}

.delay15 {
  transition-delay: 1.5s !important;
}

.delay16 {
  transition-delay: 1.6s !important;
}

.delay17 {
  transition-delay: 1.7s !important;
}

.delay18 {
  transition-delay: 1.8s !important;
}

.delay19 {
  transition-delay: 1.9s !important;
}

.delay20 {
  transition-delay: 2s !important;
}

.delay21 {
  transition-delay: 2.1s !important;
}

.delay22 {
  transition-delay: 2.2s !important;
}

.delay23 {
  transition-delay: 2.3s !important;
}

.delay24 {
  transition-delay: 2.4s !important;
}

/* スクロール時のアニメーション */
.laser {
  position: relative;
  overflow: hidden;
}
.laser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 3s ease;
  transition: all 3s ease;
}
.laser .hide {
  opacity: 0;
  transition: all 3s ease;
  transition-delay: 1s !important;
}
.laser.inview-on::after {
  left: 100%;
}
.laser.inview-on .hide {
  opacity: 1;
}

/* fade in */
.fade-in {
  opacity: 0;
  transition: all 1s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in up */
.fade-in-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-up {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in left */
.fade-in-left {
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in-left.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-left {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in right */
.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in-right.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-right {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.popup-anime {
  opacity: 0;
}
.popup-anime.inview-on {
  animation: popup 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.poyopoyo.inview-on {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.smooth-left {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.smooth-left.inview-on {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

* {
  -webkit-tap-highlight-color: transparent;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, tr, th, td, form, figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

em {
  font-style: normal;
}

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

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th, td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
}

input, textarea, select {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

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

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

html:not(.mobile) a[href^="tel:"] {
  pointer-events: none;
}

:root {
  font-size: 66.6666666667px;
}
@media screen and (max-width: 1920px) and (min-width: 601px) {
  :root {
    font-size: 4.7348484848vw;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    font-size: 6.25vw;
  }
}
@media screen and (max-width: 600px) {
  :root {
    font-size: 13.3333333333vw;
  }
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #3d3323;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  font-size: 0.3rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  body {
    background: #fff;
  }
}

#wrap {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr;
  max-width: 1920px;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  #wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #wrap {
    display: block;
    height: auto;
  }
}

.wrap {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
  .sp {
    display: unset;
  }
}
@media screen and (hover: hover) {
  .hov {
    transition: opacity 0.3s;
  }
  @supports (filter: brightness(100%)) {
    .hov {
      transition-property: filter;
    }
  }
  .hov:hover {
    opacity: 0.8;
  }
  @supports (filter: brightness(100%)) {
    .hov:hover {
      filter: brightness(110%);
      opacity: 1;
    }
  }
}

.pcHeader {
  box-sizing: border-box;
  position: relative;
  background: url(../imgs/pcHeader_bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .pcHeader {
    display: none;
  }
}
.pcHeader .siteTitle {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 3rem;
}
@media screen and (max-width: 600px) {
  .pcHeader .siteTitle {
    width: 3rem;
  }
}
.pcHeader .menu_wrap {
  width: 5.2rem;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu_wrap {
    width: 5.5rem;
  }
}
@media screen and (max-height: 600px) {
  .pcHeader .menu_wrap {
    width: 4.3rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .pcHeader .menu_wrap {
    position: static;
    margin: 2.5rem auto 0;
    transform: none;
  }
}
.pcHeader .menu_wrap .mainttl {
  max-width: 400px;
  margin: 0 auto;
}
.pcHeader .menu_wrap .frame {
  position: relative;
  margin-top: 0.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.pcHeader .menu_wrap .frame .frame_img {
  width: 100%;
}
.pcHeader .menu_wrap .frame .illust {
  position: absolute;
  top: -0.85rem;
  left: 0.2rem;
  width: 0.7rem;
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu_wrap .frame .illust {
    top: -0.73rem;
  }
}
.pcHeader .menu_wrap .frame .menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
@media screen and (max-height: 600px) {
  .pcHeader .menu_wrap .frame .menu {
    padding: 0 0.3rem;
  }
}
.pcHeader .menu li a {
  font-weight: 600;
  font-size: 0.24rem;
  position: relative;
  padding: 0.18rem 0.15rem;
  display: block;
  transition: all 0.3s ease;
}
.pcHeader .menu li a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu li a {
    font-size: clamp(16px, 0.95vw, 18px);
    padding: 0.15rem 0.12rem;
  }
}
@media screen and (max-height: 600px) {
  .pcHeader .menu li a {
    font-size: 10px;
    padding: 0.14rem 0.12rem;
  }
}
.pcHeader .menu li a:after {
  content: "";
  position: absolute;
  top: 0.35rem;
  right: 0;
  width: 0.15rem;
  height: 0.1rem;
  background: url(../imgs/pcHeader_arrow.webp) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu li a:after {
    width: 0.12rem;
    height: 0.08rem;
    top: 0.32rem;
  }
}
.pcHeader .menu li:nth-child(n+2) {
  background-image: repeating-linear-gradient(90deg, #c9c5bf, #c9c5bf 2px, transparent 2px, transparent 7px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
.pcHeader .menu .point a span {
  font-size: 0.22rem;
  display: block;
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu .point a span {
    font-size: 80%;
  }
}
.pcHeader .menu .point a:after {
  top: 0.65rem;
}
@media screen and (min-width: 1500px) {
  .pcHeader .menu .point a:after {
    top: 0.52rem;
  }
}

@media screen and (min-width: 601px) {
  .mainColumn {
    background: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
    border-left: 1px solid;
    border-right: 1px solid;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  }
  .mainColumn::-webkit-scrollbar {
    width: pcSize(0.2);
  }
  .mainColumn::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .mainColumn::-webkit-scrollbar-thumb {
    background-color: #514d47;
    border-radius: pcSize(0.1);
  }
}

.siteTitle--sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .siteTitle--sp {
    display: block;
    padding: 0.2rem;
    width: 2.8rem;
    position: relative;
    z-index: 1;
    text-align: left;
  }
}

.gHeader {
  display: none;
}
@media screen and (max-width: 600px) {
  .gHeader {
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    width: 100%;
    padding: 0.2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
  }
}
.gHeader .siteTitle {
  width: 2.8rem;
  position: relative;
  z-index: 10;
}
.gHeader .gNav .btn--menu {
  position: relative;
  z-index: 10;
  width: 1rem;
}
.gHeader .gNav .btn--menu img {
  display: block;
  position: absolute;
  width: 1rem;
  transition: all 0.3s ease;
}
.gHeader .gNav .btn--menu .btn_close {
  opacity: 0;
}
.gHeader .gNav.active .btn--menu .btn_open {
  opacity: 0;
}
.gHeader .gNav.active .btn--menu .btn_close {
  opacity: 1;
}
.gHeader .gNav.active .navigation {
  right: 0;
}
.gHeader .gNav .navigation {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  padding: 1.5rem 0.5rem 1rem;
  box-sizing: border-box;
  background: #d4ebe7 no-repeat;
  background-image: url(../imgs/pcHeader_bg.webp);
  background-size: cover;
  transition: all 0.4s ease;
  overflow-y: scroll;
}
.gHeader .gNav .navigation .list li a {
  font-weight: 600;
  font-size: 0.32rem;
  position: relative;
  padding: 0.35rem 0.2rem;
  display: block;
}
.gHeader .gNav .navigation .list li a:after {
  content: "";
  position: absolute;
  top: 0.54rem;
  right: 0.2rem;
  width: 0.2rem;
  height: 0.14rem;
  background: url(../imgs/pcHeader_arrow.webp) no-repeat;
  background-size: contain;
}
.gHeader .gNav .navigation .list li:nth-child(n+2) {
  background-image: repeating-linear-gradient(90deg, #c9c5bf, #c9c5bf 2px, transparent 2px, transparent 7px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
.gHeader .gNav .navigation .list .point a span {
  font-size: 0.28rem;
  display: block;
}
.gHeader .gNav .navigation .list .point a:after {
  top: 0.95rem;
}
.gHeader .gNav .navigation .btn_wrap {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.3rem;
}
.gHeader .gNav .navigation .btn_wrap .btn a {
  margin: 0 auto;
  display: block;
  color: #fff;
  font-size: 0.34rem;
  text-align: center;
  padding: 0.4rem 0;
  border-radius: 5px;
}
.gHeader .gNav .navigation .btn_wrap .btn a.request {
  background: #ba6e50;
  box-shadow: 0 5px 0 #ab5b3f;
}
.gHeader .gNav .navigation .btn_wrap .btn a.reserve {
  background: #679fab;
  box-shadow: 0 5px 0 #558d9a;
}

.main .anchor {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .main .anchor {
    top: -1.2rem;
  }
}

.gFooter {
  margin: 0.8rem 0 0;
  padding: 0 0 0.5rem;
}
@media screen and (min-width: 601px) {
  .gFooter {
    padding: 0 0 1.1rem;
  }
}
.gFooter .logo {
  width: 2.5rem;
  margin: 0 auto;
}
.gFooter .copyright {
  margin-top: 0.3rem;
  font-size: 0.2rem;
  line-height: 1;
  text-align: center;
}

#page-top {
  position: fixed;
  bottom: 0.2rem;
  right: 0.2rem;
  width: 1rem;
  z-index: 99;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
}

.pcSide {
  box-sizing: border-box;
  position: relative;
  background: url(../imgs/pcSide_bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .pcSide {
    display: none;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .pcSide {
    position: absolute;
    top: 13rem;
    left: 2.5rem;
    background: none;
  }
}
.pcSide .qr {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 2.5rem;
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .pcSide .qr {
    position: static;
    transform: none;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .pcSide .illust {
    display: none;
  }
}
.pcSide .illust.--01 {
  position: absolute;
  bottom: 2.7rem;
  right: 1.5rem;
  width: 2.8rem;
}
.pcSide .illust.--02 {
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 3.2rem;
}
.pcSide .scrolldown {
  position: absolute;
  bottom: 0;
  left: -0.01rem;
  width: 0.5rem;
}
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .pcSide .scrolldown {
    display: none;
  }
}

.mfp-bg {
  z-index: 9142;
}

.mfp-wrap {
  z-index: 9143;
}/*# sourceMappingURL=common.css.map */