@charset "UTF-8";
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
html {
  font-size: 62.5%;
}

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

body {
  color: #131313;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
}
body.no_scroll {
  overflow: hidden;
}

.pcBr {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pcBr {
    display: block;
  }
}

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

.karakara {
  padding: 100px 4.8% 200px;
}
@media screen and (min-width: 1024px) {
  .karakara {
    padding: 200px 0;
    display: block;
  }
}
.karakara__content {
  border-radius: 20px;
  background-repeat: repeat;
  background-size: contain;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 233, 212, 0.9)), to(rgba(244, 233, 212, 0.9))), url(../images/washi-pattern-01.jpg);
  background-image: linear-gradient(rgba(244, 233, 212, 0.9), rgba(244, 233, 212, 0.9)), url(../images/washi-pattern-01.jpg);
  padding: 40px 4.8% 40px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .karakara__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90vw;
    padding: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .karakara__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80vw;
    padding: 80px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
    margin: 0 auto;
  }
}
.karakara__img {
  width: 72%;
  max-width: 270px;
  opacity: 0;
}
.karakara__img.zoomIn {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-perspective: 1000;
          perspective: 1000;
}
@media screen and (min-width: 1024px) {
  .karakara__img {
    max-width: 272px;
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .karakara__detail {
    width: 32.5vw;
  }
}
.karakara__ttl {
  font-family: "Klee One", serif;
  display: block;
  margin-top: 20px;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 1024px) {
  .karakara__ttl {
    font-family: "Klee One", serif;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.43;
    letter-spacing: 3.84px;
    text-align: left;
    margin-top: 0;
  }
}
.karakara__txt {
  display: block;
  text-align: left;
  margin-top: 40px;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 1024px) {
  .karakara__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
    margin-top: 20px;
  }
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #131313;
  z-index: 9999999;
  text-align: center;
}

/*========= 画面遷移のためのCSS ===============*/
body {
  background: #131313;
}

body.appear {
  background: #f1f3f4;
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #131313;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #131313; /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container__nonTop {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container__nonTop {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リンクの形状*/
#page-top 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: #131313;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #f1f3f4;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bgchange {
  0% {
    background-image: url(../images/top_backgroundSp01.png);
  }
  30% {
    background-image: url(../images/bg_rSp.png);
  }
  75% {
    background-image: url(../images/bg_spaceSp.png);
  }
  100% {
    background-image: url(../images/top_backgroundSp01.png);
  }
}
@keyframes bgchange {
  0% {
    background-image: url(../images/top_backgroundSp01.png);
  }
  30% {
    background-image: url(../images/bg_rSp.png);
  }
  75% {
    background-image: url(../images/bg_spaceSp.png);
  }
  100% {
    background-image: url(../images/top_backgroundSp01.png);
  }
}
.imageSwitchAnimation {
  -webkit-animation: image-switch-animation 12s infinite;
          animation: image-switch-animation 12s infinite;
}

@-webkit-keyframes image-switch-animation {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  35% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  35% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.openInfo__ttl,
.concept__txt,
.menu__name01,
.menu__name02 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (min-width: 1024px) {
  .reservation__ttl,
  .nav__item {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .reservation__ttl {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.bg {
  background-image: url(../images/background.png);
  background-attachment: fixed;
  text-align: center;
}
.bg__bottom {
  margin: -10px 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg__bottom {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .bg__bottom {
    display: none;
  }
}
.bg__top {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg__top {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .bg__top {
    display: none;
  }
}
.bg__bottomPc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg__bottomPc {
    display: block;
    margin: -10px 0 20px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .bg__bottomPc {
    display: block;
    margin: -10px 0 20px;
    width: 100%;
  }
}
.bg__topPc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg__topPc {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .bg__topPc {
    display: block;
    width: 100%;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomInBg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes zoomInBg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
}
@-webkit-keyframes goUp {
  100% {
    top: -80%;
  }
}
@keyframes goUp {
  100% {
    top: -80%;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loop-slide {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes bgloop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0px;
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      background-position: -10px 0px;
    }
  }
}
@keyframes bgloop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0px;
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      background-position: -10px 0px;
    }
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  @-webkit-keyframes bgloop {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
  @keyframes bgloop {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
}
@-webkit-keyframes bgloop_top {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -100px 0px;
  }
}
@keyframes bgloop_top {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -100px 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  @-webkit-keyframes bgloop_top {
    0% {
      background-position: 0px 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
  @keyframes bgloop_top {
    0% {
      background-position: 0px 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
}
@media screen and (min-width: 1024px) {
  @-webkit-keyframes bgloop_top {
    0% {
      background-position: 0px 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
  @keyframes bgloop_top {
    0% {
      background-position: 0px 0;
    }
    100% {
      background-position: -100px 0px;
    }
  }
}
@-webkit-keyframes bgzoom {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0px;
    @media screen and (min-width: 1024px) {
      background-position: -10px 0px;
    }
  }
}
@keyframes bgzoom {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0px;
    @media screen and (min-width: 1024px) {
      background-position: -10px 0px;
    }
  }
}
@-webkit-keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  90% {
    width: 24%;
    opacity: 1;
  }
  100% {
    width: 24%;
    opacity: 0;
  }
}
@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  90% {
    width: 24%;
    opacity: 1;
  }
  100% {
    width: 24%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong01_2 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 1;
  }
  90% {
    width: 20%;
    opacity: 1;
  }
  100% {
    width: 20%;
    opacity: 0;
  }
}
@keyframes arrowlong01_2 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 1;
  }
  90% {
    width: 20%;
    opacity: 1;
  }
  100% {
    width: 20%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong01_3 {
  0% {
    width: 0%;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 0;
  }
  90% {
    width: 30%;
    opacity: 1;
  }
  100% {
    width: 30%;
    opacity: 0;
  }
}
@keyframes arrowlong01_3 {
  0% {
    width: 0%;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 0;
  }
  90% {
    width: 30%;
    opacity: 1;
  }
  100% {
    width: 30%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong02 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 84%;
    opacity: 1;
  }
  100% {
    left: 84%;
    opacity: 0;
  }
}
@keyframes arrowlong02 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 84%;
    opacity: 1;
  }
  100% {
    left: 84%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong02_2 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82%;
    opacity: 1;
  }
  100% {
    left: 82%;
    opacity: 0;
  }
}
@keyframes arrowlong02_2 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82%;
    opacity: 1;
  }
  100% {
    left: 82%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong02_3 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82.5%;
    opacity: 1;
  }
  100% {
    left: 82.5%;
    opacity: 0;
  }
}
@keyframes arrowlong02_3 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82.5%;
    opacity: 1;
  }
  100% {
    left: 82.5%;
    opacity: 0;
  }
}
@-webkit-keyframes arrowlong02_4 {
  0% {
    left: 75%;
    opacity: 0;
  }
  30% {
    left: 75%;
    opacity: 0;
  }
  90% {
    left: 87%;
    opacity: 1;
  }
  100% {
    left: 87%;
    opacity: 0;
  }
}
@keyframes arrowlong02_4 {
  0% {
    left: 75%;
    opacity: 0;
  }
  30% {
    left: 75%;
    opacity: 0;
  }
  90% {
    left: 87%;
    opacity: 1;
  }
  100% {
    left: 87%;
    opacity: 0;
  }
}
@-webkit-keyframes arrow01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 1;
  }
  90% {
    width: 15%;
    opacity: 1;
  }
  100% {
    width: 15%;
    opacity: 0;
  }
}
@keyframes arrow01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0%;
    opacity: 1;
  }
  90% {
    width: 15%;
    opacity: 1;
  }
  100% {
    width: 15%;
    opacity: 0;
  }
}
@-webkit-keyframes arrow02 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 81%;
    opacity: 1;
  }
  100% {
    left: 81%;
    opacity: 0;
  }
}
@keyframes arrow02 {
  0% {
    left: 70%;
    opacity: 0;
  }
  30% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 81%;
    opacity: 1;
  }
  100% {
    left: 81%;
    opacity: 0;
  }
}
@-webkit-keyframes arrow02_1 {
  0% {
    left: 70%;
    opacity: 0;
  }
  20% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 84%;
    opacity: 1;
  }
  100% {
    left: 84%;
    opacity: 0;
  }
}
@keyframes arrow02_1 {
  0% {
    left: 70%;
    opacity: 0;
  }
  20% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 84%;
    opacity: 1;
  }
  100% {
    left: 84%;
    opacity: 0;
  }
}
@-webkit-keyframes arrow02_2 {
  0% {
    left: 70%;
    opacity: 0;
  }
  25% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82.5%;
    opacity: 1;
  }
  100% {
    left: 82.5%;
    opacity: 0;
  }
}
@keyframes arrow02_2 {
  0% {
    left: 70%;
    opacity: 0;
  }
  25% {
    left: 70%;
    opacity: 0;
  }
  90% {
    left: 82.5%;
    opacity: 1;
  }
  100% {
    left: 82.5%;
    opacity: 0;
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-60vw);
            transform: translateY(-60vw);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-60vw);
            transform: translateY(-60vw);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header {
  text-align: center;
  height: 90px;
  width: 100%;
  top: 0;
  z-index: 50;
  position: absolute;
}
.header.HeightMin {
  position: fixed;
  z-index: 100;
  height: 90px;
  width: 100vw;
  background-image: none;
  background: rgba(19, 19, 19, 0.9);
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
@media screen and (min-width: 1024px) {
  .header.HeightMin {
    height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    height: auto;
    width: 100vw;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .header__top {
    display: block;
    -webkit-box-pack: none;
        -ms-flex-pack: none;
            justify-content: none;
    padding: 20px;
  }
}
.header__logo {
  width: 150px;
  position: relative;
  display: inline-block;
}
.header__logo.HeightMin {
  margin-top: 0;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header__logo.HeightMin {
    margin-top: 0;
    width: 150px;
    position: absolute;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo.HeightMin {
    margin-top: 0;
    width: 150px;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header__logo {
    width: 200px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 250px;
    display: block;
    margin: 20px auto 0;
    z-index: 1;
  }
}

.nav {
  background: rgba(19, 19, 19, 0.9);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 1024px) {
  .nav {
    -webkit-transform: translate(0);
            transform: translate(0);
    background-color: transparent;
    z-index: auto;
    height: auto;
    position: absolute;
  }
}
.nav__header {
  padding: 20px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .nav__header {
    display: none;
  }
}
.nav__close {
  max-width: 49.6px;
}
.nav__logo {
  width: 150px;
}
.nav__listTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .nav__listTop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 30px 20.7% 0 20.7%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .nav__listTop.HeightMin {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 40px;
    height: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px 0 0;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 30px 20.7% 0 14.7%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .nav__list.HeightMin {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 40px;
    height: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px 0 0;
  }
}
.nav__list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .nav__list01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.5vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 14.6vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.nav__list01.HeightMin {
  width: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .nav__list01.HeightMin {
    gap: 40px;
  }
}
.nav__list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .nav__list02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.5vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 8.6vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .nav__list02.HeightMin {
    width: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .nav__list02.HeightMin {
    gap: 40px;
  }
}
.nav__item {
  display: block;
  margin: 0 auto;
  color: #f1f3f4;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.nav__item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #f1f3f4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  .nav__item::after {
    left: 120%;
    width: 1.5px;
    height: 100%;
    bottom: 0;
  }
}
.nav__item:hover {
  color: #f1f3f4;
}
.nav__item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 1024px) {
  .nav__item {
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: 1.28px;
    font-weight: 400;
  }
  .nav__item.HeightMin {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1.4rem;
    color: #f1f3f4;
  }
  .nav__item.HeightMin::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0%;
    width: 100%;
    height: 1.5px;
    background: #f1f3f4;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    z-index: 50;
  }
  .nav__item.HeightMin:hover {
    color: #f1f3f4;
  }
  .nav__item.HeightMin:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.openbtn {
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 50px;
  z-index: 60;
}
@media screen and (min-width: 1024px) {
  .openbtn {
    display: none;
  }
}
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background: #f1f3f4;
  width: 55%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
  width: 55%;
  background: #f1f3f4;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(30deg);
          transform: translateY(-6px) rotate(30deg);
  width: 55%;
  background: #f1f3f4;
}

.shopInfo {
  margin: 0 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .shopInfo {
    display: none;
  }
}
.shopInfo__tel {
  color: #f1f3f4;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 1.6px;
}
.shopInfo__adress, .shopInfo__time {
  color: #f1f3f4;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 1.12px;
}

.articleHeader {
  width: 100%;
  height: calc(var(--vh, 1vh) * 60);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .articleHeader {
    height: calc(var(--vh, 1vh) * 70);
  }
}
.articleHeader::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.articleHeader__topic {
  color: #f1f3f4;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 250px;
}
@media screen and (min-width: 1024px) {
  .articleHeader__topic {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 0.71;
    letter-spacing: 8px;
    width: auto;
    top: 60%;
  }
}

.scrolldown1 {
  position: absolute;
  left: 49%;
  bottom: 10px;
  height: 50px;
}

.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #f1f3f4;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 20px;
  background: #f1f3f4;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 18px 10px 18px;
  background-repeat: repeat;
  background-size: contain;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 66, 32, 0.75)), to(rgba(223, 66, 32, 0.75))), url(../images/cloth.jpg);
  background-image: linear-gradient(rgba(223, 66, 32, 0.75), rgba(223, 66, 32, 0.75)), url(../images/cloth.jpg);
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .footer {
    padding: 20px 0 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 20px 0 5px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 20px 0 5px;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4vw 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4vw 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4vw 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__shopInfo {
    max-width: 530px;
  }
}
.footer__logo {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .footer__logo {
    width: 150px;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__logo {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    margin: 0;
  }
}
.footer__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__txt {
    gap: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__txt {
    gap: 0;
    margin-top: 20px;
  }
}
.footer__tel {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1024px) {
  .footer__tel {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 4.32px;
  }
}
.footer__adress, .footer__access {
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__adress, .footer__access {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__adress, .footer__access {
    line-height: 1.7;
    letter-spacing: 1.92px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__adress {
    margin-top: 10px;
  }
}

.footerSns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .footerSns {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footerSns {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .footerSns {
    margin-top: 10px;
  }
}
.footerSns__x {
  width: 25px;
  height: 26px;
}
.footerSns__instagram {
  width: 26px;
  height: 26px;
}
.footerSns a {
  line-height: 1;
}

.asaina__map {
  display: block;
  width: 303px;
  height: 224px;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .asaina__map {
    width: 200px;
    height: 232px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .asaina__map {
    width: 242px;
    height: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .asaina__map {
    width: 342px;
    height: 230px;
  }
}

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

.articleHeader::before {
  background-image: url(../images/top_sSp.webp);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader::before {
    background-image: url(../images/bg_spaceT.webp);
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader::before {
    background-image: url(../images/bg_space.webp);
  }
}

.space {
  background-repeat: repeat;
  background-size: contain;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 233, 212, 0.9)), to(rgba(244, 233, 212, 0.9))), url(../images/washi-pattern-01.jpg);
  background-image: linear-gradient(rgba(244, 233, 212, 0.9), rgba(244, 233, 212, 0.9)), url(../images/washi-pattern-01.jpg);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .space {
    padding-bottom: 150px;
  }
}

.topic__box {
  width: 100%;
  padding: 80px 4.8%;
  position: relative;
}
.topic__box::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 280px;
  background-image: url(../images/top/circle_orSp.png);
  background-size: cover;
  top: 60px;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .topic__box::after {
    background-image: url(../images/circle_under.png);
    width: 167px;
    height: 165px;
    top: 70px;
    left: -80px;
  }
}
@media screen and (min-width: 1024px) {
  .topic__box::after {
    background-image: url(../images/circle_under.png);
    width: 167px;
    height: 165px;
    top: 70px;
    left: -80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .topic__box {
    padding: 100px 0;
    text-align: left;
    width: 723px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .topic__box {
    padding: 120px 0;
    text-align: left;
    width: 924px;
    margin: 0 auto;
  }
}
.topic__ttl {
  display: block;
  color: #131313;
  text-align: left;
  font-family: "Klee One", serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 2.88px;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .topic__ttl {
    font-family: "Klee One", serif;
    font-size: 4.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 5.28px;
    margin-top: 20px;
  }
}
.topic__txt {
  display: block;
  margin-top: 40px;
  color: #131313;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 1024px) {
  .topic__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
  }
}

.seat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  padding-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  .seat {
    gap: 100px;
  }
}
.seat__item01, .seat__item02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 9.6% 66px;
  background-image: url(../images/top/food_bgSp.png);
  background-size: cover;
  background-position: center;
  gap: 30px;
  overflow: hidden;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .seat__item01, .seat__item02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 45px 40px 55px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background-image: url(../images/seat_bg.png);
    background-size: cover;
    width: 723px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .seat__item01, .seat__item02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 50px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background-image: url(../images/seat_bg.png);
    width: 924px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .seat__item02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.seat__detail {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .seat__detail {
    width: 361px;
    height: 215px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .seat__detail {
    width: 361px;
    height: 272px;
    margin-right: 0;
  }
}
.seat__concept {
  font-family: "Klee One", serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 2.88px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .seat__concept {
    font-size: 2.8rem;
    line-height: 1.7;
    letter-spacing: 3.36px;
    font-weight: 600;
    width: 361px;
    height: 96px;
  }
}
.seat__ttl {
  text-align: left;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  font-weight: 500;
  width: 100%;
  margin-top: 30px;
  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;
}
.seat__ttl::before, .seat__ttl::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #131313;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .seat__ttl::before, .seat__ttl::after {
    width: 18.6vw;
  }
}
@media screen and (min-width: 1024px) {
  .seat__ttl {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 1.92px;
  }
}
.seat__txt {
  display: block;
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .seat__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
    text-align: left;
  }
}
.seat__counter01 {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .seat__counter01 {
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .seat__counter01 {
    width: 416px;
    height: 297px;
    margin: 0;
  }
}
.seat__image {
  display: block;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .seat__image {
    margin: 0;
    width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .seat__image {
    margin: 0;
    width: 416px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .seat__table01, .seat__table02, .seat__table03 {
    width: 350px;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .seat__table01, .seat__table02, .seat__table03 {
    width: 416px;
    height: 297px;
    position: relative;
  }
}
.seat__table02, .seat__table03, .seat__counter02 {
  display: none;
}

.slick-slider {
  width: 81.7vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .slick-slider {
    width: 350px;
  }
}

.bg__topPc--img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .bg__topPc--img {
    display: block;
    margin-top: 235px;
  }
}

.bg__bottomPc--img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .bg__bottomPc--img {
    display: block;
  }
}

.whiteBox {
  display: none;
}
@media screen and (min-width: 1024px) {
  .whiteBox {
    display: block;
    width: 100%;
    height: 260px;
    background-color: #f1f3f4;
  }
}

.photo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .photo {
    display: block;
    position: relative;
    width: 924px;
    height: 260px;
    margin: 0 auto;
  }
}
.photo__item {
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .photo__01 {
    position: absolute;
    width: 440px;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .photo__02 {
    position: absolute;
    width: 410px;
    top: -200px;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .photo__03 {
    position: absolute;
    width: 300px;
    top: 180px;
    right: 5vw;
  }
}/*# sourceMappingURL=space.css.map */