@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) * 100);
  position: relative;
}
.articleHeader__image1, .articleHeader__image2, .articleHeader__image3 {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
}
.articleHeader__image1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  background-image: url(../images/top_Sp01.webp);
  background-position: center center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader__image1 {
    background-image: url(../images/top_backgroundT01.webp);
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__image1 {
    background-image: url(../images/top_backgroundPc03.png);
  }
}
.articleHeader__image2 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  background-image: url(../images/top/so-ki_tSp.webp);
  background-position: center center;
}
@media screen and (min-width: 1024px) {
  .articleHeader__image2 {
    background-image: url(../images/top/so-ki_top.webp);
  }
}
.articleHeader__image3 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
  background-image: url(../images/top_sSp.webp);
  background-position: top center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader__image3 {
    background-image: url(../images/bg_spaceT.webp);
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__image3 {
    background-image: url(../images/bg_space.webp);
  }
}
.articleHeader__topic {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 9px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  color: #f1f3f4;
  position: absolute;
  top: 18%;
  right: 7%;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader__topic {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 14px;
    top: auto;
    bottom: 15%;
    text-align: left;
    right: auto;
    left: 0%;
    padding: 20px 90px 20px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__topic {
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 2;
    letter-spacing: 14px;
    height: 130px;
    top: auto;
    bottom: 15%;
    text-align: left;
    right: auto;
    left: 0%;
    padding: 20px 90px 20px 60px;
  }
}
.articleHeader__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  gap: 10px;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .articleHeader__bottom {
    bottom: 20px;
    right: 20px;
    gap: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.articleHeader__bottom::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 44px;
  background-color: #f1f3f4;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 1024px) {
  .articleHeader__bottom::after {
    display: none;
  }
}
.articleHeader__btn {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  color: #f1f3f4;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.6px;
  padding: 10px 40px 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
.articleHeader__btn::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 65%;
  width: 25%;
  height: 1px;
  background: #f1f3f4;
  -webkit-animation: arrowlong01 2s ease infinite;
          animation: arrowlong01 2s ease infinite;
  opacity: 0;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .articleHeader__btn::before {
    -webkit-animation: arrowlong01_2 2s ease infinite;
            animation: arrowlong01_2 2s ease infinite;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader__btn::before {
    -webkit-animation: arrowlong01_2 2s ease infinite;
            animation: arrowlong01_2 2s ease infinite;
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__btn::before {
    left: 72%;
    -webkit-animation: arrowlong01_2 2s ease infinite;
            animation: arrowlong01_2 2s ease infinite;
  }
}
.articleHeader__btn::after {
  content: "";
  position: absolute;
  bottom: 45%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f1f3f4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: arrowlong02 2s ease infinite;
          animation: arrowlong02 2s ease infinite;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .articleHeader__btn::after {
    -webkit-animation: arrowlong02_2 2s ease infinite;
            animation: arrowlong02_2 2s ease infinite;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .articleHeader__btn::after {
    -webkit-animation: arrowlong02_3 2s ease infinite;
            animation: arrowlong02_3 2s ease infinite;
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__btn::after {
    -webkit-animation: arrowlong02_4 2s ease infinite;
            animation: arrowlong02_4 2s ease infinite;
    bottom: 44%;
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader__btn {
    border: 0.5px solid #f1f3f4;
    font-size: 1.4rem;
    letter-spacing: 1.12px;
    font-weight: 400;
    width: 212px;
    height: auto;
    padding: 10px 50px 10px 15px;
  }
  .articleHeader__btn::after {
    right: 5%;
  }
}

.articleHeader__topic01 span {
  opacity: 0;
}

.articleHeader__topic01.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

.openInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 10px 0px 0px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 0;
  bottom: 76px;
  opacity: 0.9;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .openInfo {
    width: 340px;
  }
}
@media screen and (min-width: 1024px) {
  .openInfo {
    bottom: 100px;
  }
}
.openInfo__ttl {
  color: #f1f3f4;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 3px;
}
@media screen and (min-width: 1024px) {
  .openInfo__ttl {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 3px;
  }
}
.openInfo__content {
  width: 310px;
  max-width: 85vw;
}
.openInfo__calendar {
  margin: 0 10px 0 0;
}
.openInfo__txtbox {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin: 5px 10px 5px 0;
}
.openInfo__txt {
  width: 100%;
}
.openInfo__txt li {
  color: #f1f3f4;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.57;
  letter-spacing: 2px;
}

.slick-slider {
  overflow: hidden;
}

.scrolldown1 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .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;
  }
}
.concept {
  width: 100%;
  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);
}
.concept__ttl {
  display: block;
}
.concept__txt {
  color: #131313;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3;
  letter-spacing: 7px;
  margin: -10px auto 0;
  padding: 160px 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .concept__txt {
    line-height: 3;
    letter-spacing: 8px;
    font-size: 2rem;
    padding: 120px 0;
  }
}
@media screen and (min-width: 1024px) {
  .concept__txt {
    line-height: 3;
    letter-spacing: 8px;
    font-size: 2.4rem;
    padding: 210px 0 80px;
  }
}
.concept__image {
  position: relative;
  width: 100%;
  height: 800px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .concept__image {
    width: 768px;
    height: 650px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .concept__image {
    width: 1024px;
    height: 900px;
    margin: 0 auto;
  }
}
.concept__image01 {
  position: absolute;
  width: 250px;
  right: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .concept__image01 {
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .concept__image01 {
    width: 380px;
    top: 0;
  }
}
.concept__image02 {
  position: absolute;
  width: 270px;
  top: 250px;
  left: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .concept__image02 {
    width: 370px;
    top: 150px;
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .concept__image02 {
    width: 450px;
    top: 200px;
    left: 0;
  }
}
.concept__image03 {
  position: absolute;
  width: 220px;
  top: 530px;
  right: 10%;
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .concept__image03 {
    width: 250px;
    top: 320px;
    right: 13%;
  }
}
@media screen and (min-width: 1024px) {
  .concept__image03 {
    width: 300px;
    top: 450px;
    right: 180px;
  }
}

.cloud {
  position: relative;
}
.cloud__01 {
  position: absolute;
  top: -540px;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__01 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__01 {
    display: none;
  }
}
.cloud__02 {
  position: absolute;
  top: -340px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__02 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__02 {
    display: none;
  }
}
.cloud__03 {
  position: absolute;
  top: -140px;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__03 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__03 {
    display: none;
  }
}
.cloud__04 {
  position: absolute;
  left: 18px;
  top: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__04 {
    top: 50px;
    left: 45%;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__04 {
    top: 100px;
    left: 45%;
    width: 300px;
  }
}
.cloud__05 {
  position: absolute;
  top: 350px;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__05 {
    top: 300px;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__05 {
    top: 400px;
    width: 300px;
  }
}
.cloud__06 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__06 {
    display: block;
    top: 400px;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__06 {
    display: block;
    top: 550px;
    width: 300px;
  }
}
.cloud__07 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__07 {
    position: absolute;
    display: block;
    top: -500px;
    right: 0;
    width: 33.7vw;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__07 {
    position: absolute;
    display: block;
    top: -570px;
    right: 0;
    width: 33.7vw;
  }
}
.cloud__08 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__08 {
    position: absolute;
    display: block;
    top: -180px;
    width: 32.2vw;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__08 {
    position: absolute;
    display: block;
    top: -180px;
    width: 32.2vw;
  }
}
.cloud__09 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__09 {
    position: absolute;
    display: block;
    top: -250px;
    right: 0;
    width: 17.4vw;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__09 {
    position: absolute;
    display: block;
    top: -250px;
    right: 0;
    width: 17.4vw;
  }
}
.cloud__10 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cloud__10 {
    position: absolute;
    display: block;
    top: -300px;
    width: 11.38vw;
  }
}
@media screen and (min-width: 1024px) {
  .cloud__10 {
    position: absolute;
    display: block;
    top: -300px;
    width: 11.38vw;
  }
}

.about {
  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);
}
.about__content {
  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);
  opacity: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__content {
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .about__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about__content::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 280px;
  background-image: url(../images/top/circle_wSp.png);
  background-size: cover;
  left: 0;
  top: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__content::after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .about__content::after {
    display: none;
  }
}
.about__detail {
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__detail {
    padding: 80px 14.7% 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .about__detail {
    padding: 120px 0 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about__ttl {
  color: var(--white, #F1F3F4);
  font-family: "Klee One", serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 4.2px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about__ttl {
    font-size: 4.8rem;
    line-height: 1.45;
    letter-spacing: 6.4px;
  }
}
.about__box {
  padding: 100px 4.8% 40px;
  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: 768px) and (max-width: 1023px) {
  .about__box {
    padding: 0;
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background-color: transparent;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .about__box {
    padding: 0;
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background-color: transparent;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1024px;
    position: relative;
  }
}
.about__boxttl {
  color: #f1f3f4;
  font-family: "Klee One", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
}
@media screen and (min-width: 1024px) {
  .about__boxttl {
    font-size: 2.4rem;
    line-height: 2;
    letter-spacing: 7.5px;
  }
}
.about__txt01, .about__txt02 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
  color: #f1f3f4;
}
@media screen and (min-width: 1024px) {
  .about__txt01, .about__txt02 {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
    line-height: 1.5;
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__txt02 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .about__txt02 {
    margin-top: 20px;
  }
}
.about__imgBox {
  text-align: end;
}
.about__map {
  width: 95%;
  margin: 0 auto 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__map {
    position: absolute;
    width: 300px;
    margin: 0;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .about__map {
    position: absolute;
    width: 40vw;
    max-width: 500px;
    margin: 0;
    min-width: 300px;
    top: 0;
    right: 0;
  }
}

.bg__top--concept,
.bg__topPc--concept {
  background-image: none;
}

.food {
  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-bottom: 54px;
  position: relative;
  margin-top: -10px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .food {
    padding-bottom: 160px;
  }
}
.food__bgSp {
  position: absolute;
  width: 150px;
  height: 280px;
  left: 0;
  top: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__bgSp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .food__bgSp {
    display: none;
  }
}
.food__bg {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__bg {
    display: block;
    position: absolute;
    width: 24.65vw;
    height: 37.5vw;
    left: 0;
    top: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .food__bg {
    display: block;
    position: absolute;
    width: 24.65vw;
    height: 37.5vw;
    left: 0;
    top: 120px;
  }
}
.food__ttlbox {
  padding-left: 4.2%;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__ttlbox {
    padding-left: 14.7%;
  }
}
@media screen and (min-width: 1024px) {
  .food__ttlbox {
    padding-left: 0;
    max-width: 1016px;
    width: 70.5vw;
    margin: 0 auto;
  }
}
.food__ttl01 {
  color: #df4220;
  font-family: "Klee One";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: 3.2px;
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .food__ttl01 {
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 6.4px;
    padding-top: 120px;
  }
}
.food__ttl02 {
  color: #df4220;
  font-family: "Klee One", serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 1024px) {
  .food__ttl02 {
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 6.4px;
  }
}
.food__list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__list {
    margin: 60px 9.7% 0;
  }
}
@media screen and (min-width: 1024px) {
  .food__list {
    margin: 104px auto 0;
    max-width: 70.5vw;
  }
}
.food__item01 {
  opacity: 0;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .food__item01 {
    width: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__item01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 50px;
    background-image: url(../images/top/food_bg.png);
    background-size: cover;
    padding: 40px 50px 50px;
  }
}
@media screen and (min-width: 1024px) {
  .food__item01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url(../images/top/food_bg.png);
    background-size: cover;
    padding: 80px;
  }
}
.food__item02 {
  margin-top: 80px;
  opacity: 0;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .food__item02 {
    width: 70%;
    margin-left: 30%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__item02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 50px;
    background-image: url(../images/top/food_bg.png);
    background-size: cover;
    padding: 40px 50px 50px;
  }
}
@media screen and (min-width: 1024px) {
  .food__item02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 60px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url(../images/top/food_bg.png);
    background-size: cover;
    padding: 80px;
  }
}
.food__img01Pc, .food__img02Pc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__img01Pc, .food__img02Pc {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .food__img01Pc, .food__img02Pc {
    display: block;
    width: 400px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__img01Sp, .food__img02Sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .food__img01Sp, .food__img02Sp {
    display: none;
  }
}
.food__name {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  text-align: right;
}
.food__detail01, .food__detail02 {
  margin-top: 20px;
  background-image: url(../images/top/food_bgSp.png);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0 100px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__detail01, .food__detail02 {
    background-image: none;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .food__detail01, .food__detail02 {
    background-image: none;
    padding: 0;
    margin-top: 0;
  }
}
.food__detail01::after, .food__detail02::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.food__detail01::after {
  background-image: url(../images/top/Amami.svg);
  width: 180px;
  height: 48px;
  right: 50%;
  top: 70px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__detail01::after {
    top: -10px;
  }
}
@media screen and (min-width: 1024px) {
  .food__detail01::after {
    top: -15px;
    width: 194px;
    height: 85px;
  }
}
.food__detail02::after {
  background-image: url(../images/top/Okinawa.svg);
  width: 187px;
  height: 48px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__detail02::after {
    top: -10px;
  }
}
@media screen and (min-width: 1024px) {
  .food__detail02::after {
    width: 256px;
    height: 50px;
    top: -15px;
  }
}
.food__category {
  color: #131313;
  font-family: "Klee One", serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 6.4px;
  text-align: center;
}
.food__txt {
  display: block;
  margin: 30px 4.8% 0;
  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: 768px) and (max-width: 1023px) {
  .food__txt {
    margin: 10px 0 0;
    text-align: left;
    width: 29.8vw;
  }
}
@media screen and (min-width: 1024px) {
  .food__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
    width: 29.8vw;
    max-width: 500px;
    text-align: left;
    margin: 40px auto 0;
  }
}
.food__logobox {
  text-align: right;
  width: 100%;
}
.food__okinawa {
  max-width: 194px;
  margin: 16px 18px 0 0;
}
.food__bgBox {
  position: relative;
}
.food__bg02 {
  position: absolute;
  width: 80%;
  right: 0;
  top: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__bg02 {
    width: 35vw;
    height: 37.5vw;
    top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .food__bg02 {
    width: 35vw;
    height: 37.5vw;
    top: 70px;
  }
}
.food .slider {
  margin-top: 120px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .food .slider {
    margin-top: 160px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__carousel:nth-child(odd) {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
}
@media screen and (min-width: 1024px) {
  .food__carousel:nth-child(odd) {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .food__album {
    width: 200px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .food__album {
    width: 24.3vw;
    border-radius: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .slick-track {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .slick-track {
    height: 500px;
  }
}

@media screen and (min-width: 1024px) {
  .slick-list {
    height: 26.4vw;
  }
}

.articleHeader__topic01 span {
  opacity: 0;
}

.food__ttl01.appeartext span {
  -webkit-animation: text_anime_on 3s ease-out forwards;
          animation: text_anime_on 3s ease-out forwards;
  -webkit-perspective: 1000;
          perspective: 1000;
}

.btn {
  display: block;
  width: 220px;
  padding: 10px 0px 10px 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 30px;
  background: var(--orange, #DF4220);
  position: relative;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.28px;
  color: #f1f3f4;
  margin: 80px auto 0;
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 45%;
  left: 70%;
  width: 15%;
  height: 1px;
  background: #f1f3f4;
  -webkit-animation: arrow01 2s ease infinite;
          animation: arrow01 2s ease infinite;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .btn::before {
    left: 72%;
  }
}
.btn::after {
  content: "";
  position: absolute;
  bottom: 39%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f1f3f4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: arrow02 2s ease infinite;
          animation: arrow02 2s ease infinite;
}
@media screen and (min-width: 1024px) {
  .btn::after {
    left: 72%;
    -webkit-animation: arrow02_1 2s ease infinite;
            animation: arrow02_1 2s ease infinite;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .btn {
    display: block;
    width: 344px;
    padding: 15px 0px 15px 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    border-radius: 30px;
    background: var(--orange, #DF4220);
    position: relative;
    font-size: 1.6rem;
    width: 300px;
    line-height: 1.3;
    letter-spacing: 2.4px;
    margin-top: 40px;
    padding: 15px 0px 15px 70px;
  }
}
@media screen and (min-width: 1024px) {
  .btn {
    display: block;
    width: 344px;
    padding: 15px 0px 15px 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    border-radius: 30px;
    background: var(--orange, #DF4220);
    position: relative;
    width: 300px;
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: 2.4px;
    margin-top: 80px;
    padding: 15px 0px 15px 70px;
  }
}

.boxbox {
  height: 500px;
}

.slick-slide {
  height: auto;
}

.bg__top--about,
.bg__topPc--about {
  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);
}

.sns {
  z-index: 1;
  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);
}
.sns__content {
  padding: 80px 0 120px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sns__content {
    padding: 120px 0 120px;
  }
}
@media screen and (min-width: 1024px) {
  .sns__content {
    padding: 120px 0 120px;
  }
}
.sns__logo {
  width: 138px;
  display: block;
  margin: 40px auto 20px;
}
@media screen and (min-width: 1024px) {
  .sns__logo {
    width: 276px;
    margin: 70px auto 30px;
  }
}
.sns__ttl {
  text-align: center;
  color: #131313;
  text-align: center;
  font-family: "Klee One", serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.88px;
}
@media screen and (min-width: 1024px) {
  .sns__ttl {
    font-size: 3.2rem;
    letter-spacing: 4.8px;
  }
}
.sns__box {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sns__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .sns__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sns__notice {
  display: block;
  margin: 15px 4.8%;
  color: #131313;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .sns__notice {
    letter-spacing: 1.12px;
  }
}
.sns__txt {
  display: block;
  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;
  margin: 10px auto;
  color: #131313;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .sns__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.92px;
    font-size: 1.4rem;
    margin: 15px auto;
    line-height: 1.5;
  }
}

.x {
  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;
  margin-top: 40px;
  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);
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .x {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .x {
    margin-top: 0;
    height: 300px;
  }
}
.x__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  padding: 5px 20px 5px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #f1f3f4;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .x__btn {
    width: 270px;
    padding: 10px 20px 10px 50px;
    border-radius: 30px;
    font-size: 1.6rem;
    letter-spacing: 1.92px;
  }
}
.x__icon {
  width: 20px;
}

.instagram {
  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;
  background: rgba(241, 243, 244, 0.5);
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .instagram {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .instagram {
    margin-top: 0;
    height: 300px;
  }
}
.instagram__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  padding: 5px 20px 5px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 30px;
  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);
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .instagram__btn {
    width: 270px;
    padding: 10px 20px 10px 50px;
    border-radius: 30px;
    font-size: 1.6rem;
    letter-spacing: 1.92px;
  }
}
.instagram__icon {
  width: 20px;
}

.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;
  }
}

#loading01 {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: fixed;
  z-index: 999;
  background-color: #131313;
}

#loading02 {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: fixed;
  z-index: 888;
  background-color: #131313;
}

#loading03 {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #f1f3f4;
  z-index: 777;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: fixed;
}

/* end of loading */
.loaded {
  display: none;
}

/* fade in container */
.container {
  display: none;
}

.container.open {
  display: block;
}

.loading01__content {
  width: 150px;
  height: 50.75px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .loading01__content {
    width: 250px;
    height: 84.25px;
  }
}

.loading01__img {
  display: block;
  width: 150px;
  height: 50.75px;
}
@media screen and (min-width: 1024px) {
  .loading01__img {
    width: 250px;
    height: 84.25px;
  }
}

.loading02__box {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .loading02__box {
    width: 300px;
    height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .loading02__box {
    width: 350px;
    height: 130px;
  }
}

.loading02__content {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 9px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  color: #f1f3f4;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .loading02__content {
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .loading02__content {
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.6;
    letter-spacing: 14px;
  }
}

.loading02__content span {
  opacity: 0;
}

.loading02__content.appeartext span {
  -webkit-animation: text_anime_on 5s ease-out forwards;
          animation: text_anime_on 5s ease-out forwards;
}

/* Loading背景画面設定　*/
#splashing {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 555;
  display: none;
}

/*週*/
.fc-col-header-cell {
  background: #B8B8B8;
  color: #131313;
  font-weight: 500;
}

/*日付*/
.fc-daygrid-day {
  background: #f1f3f4;
  color: #131313;
}

/*日曜*/
.fc-daygrid-day.fc-day-sun {
  background: #f1f3f4;
  color: #ee827c;
}

.fc-col-header-cell-cushion, .fc-daygrid-day-number, .fc-event {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

.fc .fc-toolbar-title {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  color: #f1f3f4;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin: 5px 0 5px;
}

.fc .fc-scrollgrid-section {
  font-size: 1.4rem;
  background-color: #f1f3f4;
}

.fc-direction-ltr {
  background-color: none;
}

.fc .fc-daygrid-day-frame {
  height: 70px;
}

.fc .fc-daygrid-day-number {
  padding: 0 4px 0 0;
}

.fc .fc-button-primary {
  background-color: transparent;
  border-color: transparent;
  color: #f1f3f4;
}

.fc .fc-button {
  padding: 2px 4px 6px 4px;
}

.fc table {
  font-size: 1.2rem;
}

.fc .fc-daygrid-day-top {
  height: 18px;
}

.fc-theme-standard td, .fc-theme-standard th {
  border: 0.5px solid rgba(0, 0, 0, 0.5);
}

.fc-theme-standard .fc-scrollgrid {
  border: none;
}

.fc .fc-scrollgrid-section {
  font-family: "Noto Serif JP", serif;
}/*# sourceMappingURL=top.css.map */