* {
  box-sizing: border-box;
}

/*=============================================
* body
*=============================================*/
body {
  color: #000;
  font-family: 'Noto Sans JP';
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1.24px;
  font-weight: 200;
  background: #fff;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  text-align: justify;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.77;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --app-height: 100%;
  }
  html.open,
  body.menu-open {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
  }
}

/*=============================================
* <main>
*=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bxs {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

a:hover {
  text-decoration: none;
}

a, img {
  transition: 0.3s all ease-in-out;
}

.object-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

.pattern01 {
  background-image: url("../img/shared/pattern01.jpg");
  background-size: 90vw;
}

.pattern02 {
  background-image: url("../img/shared/pattern02.jpg");
  background-size: 60vw;
}

.pattern03 {
  background: url("../img/shared/pattern03.jpg") repeat;
  background-size: 11.7vw;
}

@media only screen and (min-width: 768px) {
  .pattern01 {
    background-size: 655px;
  }
  .pattern02 {
    background-size: auto;
  }
  .pattern03 {
    background-size: 10.4vw;
  }
}

@media only screen and (min-width: 1280px) {
  .pattern03 {
    background-size: auto;
  }
}

/*=============================================
* <header>
*=============================================*/
body.nav--opened,
body.nav--opened *,
body.nav--opened *:hover,
body.nav--opened *:focus,
body.nav--opened *:active {
  /*    cursor: none !important;*/
  touch-action: none !important;
  pointer-events: none !important;
}

body.nav--opened .hamburger,
body.nav--opened #menu-toggle,
body.nav--opened #menu-toggle *,
body.nav--opened .nav-fixed,
body.nav--opened .nav-fixed * {
  touch-action: auto !important;
  pointer-events: visible !important;
}

.nav--opened {
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: none !important;
  pointer-events: none !important;
}

.nav--opened .nav-fixed,
.nav--opened #menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  overflow: auto;
}

header {
  height: 64px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background: #fff;
  padding: 10px 16px 0;
  font-weight: 500;
}

header .wrap {
  padding: 0 !important;
  position: static;
}

header .logo {
  width: 94px;
}

header .hamburger {
  width: 64px;
  height: 64px;
  background-image: url("../img/shared/icon_home.png");
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: 50%;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  transition: 0.1s all ease;
}

header .hamburger.is-active {
  background-image: url("../img/shared/close.png");
  background-size: 16px;
}

@media only screen and (min-width: 768px) {
  header {
    height: 100px;
    background: #bdc9b5;
    padding: 15px 10px;
  }
  header .logo {
    width: 129px;
  }
  header .hamburger {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  header {
    padding: 1.3vw 0.8vw;
    height: 8.5vw;
  }
}

.has-nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 64px;
  right: 0;
  bottom: 0;
  padding: 0 4.3vw;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 9;
}

.menu-toggle .wrap {
  background: rgba(189, 200, 181, 0.9);
  border-radius: 0 0 11.7vw 11.7vw;
  padding: 2.4vw 6.9vw 9.6vw 8vw !important;
}

.menu-toggle nav {
  font-size: 3.7vw;
  line-height: 4vw;
  text-align: center;
}

.menu-toggle nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 8vw;
  row-gap: 4vw;
}

.menu-toggle nav ul li {
  border: 1px solid #BDC8B5;
}

.menu-toggle nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: #B39A7F;
  height: 9.1vw;
}

.menu-toggle nav ul li a small {
  color: #878787;
  font-size: 2.9vw;
  font-weight: 500;
  letter-spacing: 1px;
}

.menu-toggle nav ul li dl {
  border: 1px solid #BDC8B5;
}

.menu-toggle nav ul li dl dt {
  background: #fff;
  color: #B39A7F;
  height: 9.1vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-toggle nav ul li dl dd a {
  color: #BDC8B5;
  border-top: 1px solid #BDC8B5;
  letter-spacing: 0;
}

.menu-toggle nav ul .reserve {
  border: none;
}

.menu-toggle nav ul .reserve dl {
  border-color: #A71B1B;
}

.menu-toggle nav ul .reserve dl dt {
  background: #A71B1B;
  color: #fff;
}

.menu-toggle nav ul .reserve dl dd a {
  border-color: #A71B1B;
  color: #A71B1B;
}

@media only screen and (min-width: 768px) {
  .menu-toggle {
    opacity: 1;
    visibility: visible;
    position: static;
    width: auto;
    top: auto;
    right: auto;
    bottom: auto;
    padding: 0px;
  }
  .menu-toggle .wrap {
    max-width: none;
    background: transparent;
    border-radius: 0;
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-toggle nav {
    font-size: 20px;
    line-height: 55px;
    text-align: center;
  }
  .menu-toggle nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
  }
  .menu-toggle nav ul li {
    width: 116px;
    border: none;
  }
  .menu-toggle nav ul li a {
    height: auto;
  }
  .menu-toggle nav ul li a:hover {
    background: #B39A7F;
    color: #fff;
  }
  .menu-toggle nav ul li dl {
    border: none;
    position: relative;
    padding: 7px 0;
  }
  .menu-toggle nav ul li dl dt {
    height: auto;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  .menu-toggle nav ul li dl dd {
    background: #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: 63px;
    transition: 0.3s all ease;
    opacity: 0;
    visibility: hidden;
  }
  .menu-toggle nav ul li dl dd a {
    border: 1px solid #BDC8B5;
  }
  .menu-toggle nav ul li dl dd a:hover {
    background: #BDC8B5;
    color: #fff;
  }
  .menu-toggle nav ul li dl dd a.long {
    font-size: 15px;
  }
  .menu-toggle nav ul li dl:hover dt {
    background: #B39A7F;
    color: #fff;
  }
  .menu-toggle nav ul li dl:hover dd {
    opacity: 1;
    visibility: visible;
  }
  .menu-toggle nav ul li + li {
    margin-left: 15px;
  }
  .menu-toggle nav ul .room {
    order: 1;
  }
  .menu-toggle nav ul .rules {
    order: 2;
  }
  .menu-toggle nav ul .qa {
    order: 3;
  }
  .menu-toggle nav ul .contact {
    order: 4;
  }
  .menu-toggle nav ul .tiktok {
    order: 5;
  }
  .menu-toggle nav ul .insta {
    order: 6;
    width: 137px;
  }
  .menu-toggle nav ul .reserve {
    order: 7;
    width: 205px;
  }
  .menu-toggle nav ul .reserve dl dt {
    border: 1px solid #A71B1B;
  }
  .menu-toggle nav ul .reserve dl dd a:hover {
    background: #A71B1B;
    color: #fff;
  }
  .menu-toggle nav ul .reserve dl:hover dt {
    background: #fff;
    color: #A71B1B;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .menu-toggle .logo {
    width: 10.9vw;
  }
  .menu-toggle .logo img {
    width: 100%;
    height: auto;
  }
  .menu-toggle nav {
    font-size: 1.7vw;
    line-height: 4.7vw;
  }
  .menu-toggle nav ul li {
    width: 9.8vw;
  }
  .menu-toggle nav ul li dl dd {
    top: 5.3vw;
  }
  .menu-toggle nav ul li dl dd a.long {
    font-size: 1.2vw;
  }
  .menu-toggle nav ul li + li {
    margin-left: 1.1vw;
  }
  .menu-toggle nav ul .insta {
    width: 11.6vw;
  }
  .menu-toggle nav ul .reserve {
    width: 17.4vw;
  }
}

section {
  padding-top: 64px;
}

@media screen and (min-width: 768px) {
  section {
    padding-top: 100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  section {
    padding-top: 8.5vw;
  }
}

.h2-common-child {
  width: 30vw;
  height: 12.5vw;
  margin: 0 auto 2.4vw;
  background-image: url("../img/child/h2_bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  color: #585857;
  text-align: center;
  padding-top: 1vw;
  font-size: 3vw;
  line-height: 1.77;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .h2-common-child {
    width: 321px;
    height: 132px;
    margin: 0 auto 44px;
    padding-top: 20px;
    font-size: 24px;
    letter-spacing: 0.28em;
  }
}

/*=============================================
* <footer>
*=============================================*/
footer {
  background: #bdc9b5;
  color: #fff;
  padding: 4vw 0;
  font-weight: 200;
}

footer .col1 .logo {
  width: 73.1vw;
  margin: 0 auto 2.4vw;
}

footer .col1 .social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.7vw;
}

footer .col1 .social li {
  width: 8vw;
  margin: 0 4.8vw;
}

footer .col1 .social li img {
  width: 100%;
  height: auto;
}

footer .col2 {
  padding: 0 4.8vw;
}

footer .col2 .gmap {
  height: 62.4vw;
  margin: 0 auto 3.2vw;
  position: relative;
}

footer .col2 .gmap iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

footer .col2 .txt-info {
  line-height: 1.2;
  padding-left: 2vw;
  margin-bottom: 9.3vw;
}

footer .col2 .txt-info dl dd {
  padding-left: 15px;
}

footer .col3 {
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

footer .col3 .link {
  margin-bottom: 6vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

footer .col3 .link li + li {
  margin-left: 3vw;
}

footer .col3 address {
  font-weight: 200;
}

@media screen and (max-width: 370px) {
  footer .col2 {
    padding: 0 3vw;
  }
}

@media screen and (min-width: 768px) {
  footer {
    padding: 5.1vw 2vw 2.5vw;
  }
  footer .col1 {
    width: 44.4vw;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.8vw;
  }
  footer .col1 .logo {
    width: 23.8vw;
    margin: 0;
  }
  footer .col1 .logo img {
    width: 100%;
    height: auto;
  }
  footer .col1 .social {
    width: 10.8vw;
    justify-content: space-between;
    margin-bottom: 0;
  }
  footer .col1 .social li {
    width: 2.8vw;
    margin: 0;
  }
  footer .col2 {
    width: 46.6vw;
    float: right;
    padding: 0;
    justify-content: space-between;
  }
  footer .col2 .gmap {
    width: 26.2vw;
    height: 19.6vw;
    margin: 0;
  }
  footer .col2 .txt-info {
    width: 19.2vw;
    font-size: 1.5vw;
    padding-left: 0;
    margin-bottom: 0;
  }
  footer .col2 .txt-info dl dd {
    padding-left: 0;
  }
  footer .col2 .txt-info dl + dl {
    margin-top: 2.0vw;
  }
  footer .col3 {
    width: 44.4vw;
    float: left;
    font-size: 1.6vw;
    line-height: 2.2vw;
    letter-spacing: 1.24px;
    font-family: 'Noto Sans JP';
  }
  footer .col3 .link {
    margin-bottom: 0;
    justify-content: space-between;
  }
  footer .col3 .link li + li {
    margin-left: 0;
  }
  footer .col3 .link a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1280px) {
  footer {
    padding: 65px 30px 32px;
  }
  footer .col1 {
    width: 568px;
    margin-bottom: 48px;
  }
  footer .col1 .logo {
    width: 305px;
  }
  footer .col1 .social {
    width: 138px;
  }
  footer .col1 .social li {
    width: 36px;
  }
  footer .col1 .social li a:hover {
    opacity: 0.8;
  }
  footer .col2 {
    width: 597px;
  }
  footer .col2 .gmap {
    width: 335px;
    height: 251px;
  }
  footer .col2 .txt-info {
    width: 246px;
    font-size: 19px;
  }
  footer .col2 .txt-info dl + dl {
    margin-top: 25px;
  }
  footer .col3 {
    width: 568px;
    font-size: 20px;
    line-height: 29px;
  }
}

/*=============================================
* .socialbuttons
*=============================================*/
/*=============================================
* copyright
*=============================================*/
.db {
  display: block;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

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

.jcc {
  justify-content: center;
}

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

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .df-pc {
    display: flex;
  }
}

/* --------------------------------------------------------------------- */
/* ef */
/* --------------------------------------------------------------------- */
@keyframes move1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}

@keyframes move2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18%);
  }
}

@keyframes move3 {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes move4 {
  from {
    transform: translateY(-27%);
  }
  to {
    transform: translateY(-19%);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.3s;
}

.nav--opened #ft-fixed {
  opacity: 0;
  visibility: hidden;
}
