@charset "UTF-8";
* {
  box-sizing: border-box;
}

.wrap {
  display: block;
}
@media screen and (min-width: 1120px) {
  .wrap {
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin: 0 auto;
    background-color: #D04A1E;
  }
}

.side-menu {
  display: none;
}
@media screen and (min-width: 1120px) {
  .side-menu {
    min-width: 320px;
    text-align: center;
    display: block;
    background-color: #D04A1E;
    height: 100vh;
    font-size: 2rem;
    color: #FFF;
    font-weight: 500;
    position: sticky;
    top: 0px;
  }
  .side-menu ul {
    margin: 50px 0px;
    list-style: none;
  }
  .side-menu li {
    line-height: 100%;
    margin-bottom: 30px;
  }
}

.side-menu__image img {
  height: 50vh;
  margin-top: 40px;
}

.side-menu__instagram {
  margin-bottom: 40px;
}
.side-menu__instagram img {
  width: 30px;
}

small {
  font-size: 14px;
  font-weight: 300;
}

.side {
  width: 100%;
}
@media screen and (min-width: 1120px) {
  .side {
    background-image: url("../img/bg-tile.png");
    background-repeat: repeat;
    background-color: #FFE8E0;
  }
}

.top__sp {
  background-color: #D04A1E;
  width: 100%;
  min-height: 70vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
}
.top__sp img {
  margin-top: 70px;
  max-width: 200px;
}
@media screen and (min-width: 500px) {
  .top__sp img {
    width: 250px;
  }
}
@media screen and (min-width: 1120px) {
  .top__sp {
    display: none;
  }
}

.scroll-down {
  height: 30vh;
  text-align: center;
  color: #FFF;
}
.scroll-down p {
  padding: 15px 0px;
}

.scroll-down__line {
  width: 1px;
  height: 40px;
  background: #fff;
  animation: scroll-Down__line 1.4s ease infinite;
  margin: 0 auto;
}

@keyframes scroll-Down__line {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  45% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  55% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
.top__sp__wave {
  width: 100%;
}
@media screen and (min-width: 1120px) {
  .top__sp__wave {
    display: none;
  }
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 50px;
  max-height: 50px;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 15s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.top__pc img {
  height: 0px;
}
@media screen and (min-width: 1120px) {
  .top__pc img {
    height: 25px;
  }
}

.top__pc__main {
  display: none;
}
@media screen and (min-width: 1120px) {
  .top__pc__main {
    display: block;
    background-image: url("../img/background3.jpg");
    background-size: cover;
    width: 100%;
    height: 88vh;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    overflow: hidden;
    position: relative;
    animation: img_anime 16s ease infinite;
  }
}

/*========= waveを描画するエリア設定 ===============*/
canvas {
  display: none;
}
@media screen and (min-width: 1120px) {
  canvas {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

/*========= waveを描画するエリア設定 ===============*/
.circle_btn {
  position: relative;
  z-index: 999;
  font-size: 16px;
  /* padding: 1em; */
  padding: 5px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  margin-right: 30px;
}

.circle_btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  border-radius: 100vh;
  background: #EFCA0A; /* 背景色 */
  width: 3em; /* 丸の横幅 */
  height: 3em; /* 丸の高さ */
  transition: all 0.3s ease;
}

.circle_btn span {
  position: relative;
  font-weight: 700; /* 文字の太さ */
  letter-spacing: 0.05em; /* 文字間隔 */
  color: #510002; /* 文字色 */
}

.circle_btn svg {
  position: relative;
  top: -1px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #510002; /* 矢印の色 */
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

/* マウスオーバーした際のデザイン */
.circle_btn:hover:before {
  width: calc(100% + 1em);
}

.circle_btn:hover svg {
  transform: translateX(0);
}

.circle_btn:active {
  transform: scale(0.95);
}

.top__desc {
  margin: 20px 0px 50px 0px;
  text-align: center;
}
.top__desc h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (min-width: 1120px) {
  .top__desc {
    margin: 25px 0px 35px 0px;
  }
  .top__desc h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 100%;
  }
}

.top__shop-data {
  display: block;
  padding: 0px 15px;
  text-align: center;
  margin: 0 auto;
}
.top__shop-data li {
  text-align: left;
}
@media screen and (min-width: 800px) {
  .top__shop-data {
    display: flex;
    justify-content: center;
    padding: 0px 30px;
  }
}
@media screen and (min-width: 1120px) {
  .top__shop-data {
    display: flex;
    padding: 0px 30px;
  }
}

.top__shop-data__map iframe {
  width: 300px;
  height: 100%;
}
@media screen and (min-width: 800px) {
  .top__shop-data__map iframe {
    width: 50vw;
    height: 100%;
  }
}
@media screen and (min-width: 1120px) {
  .top__shop-data__map iframe {
    width: 500px;
    height: 100%;
  }
}

.top__shop-data__text {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 25px 0px 40px 25px;
}
.top__shop-data__text ul {
  text-align: left;
  display: inline-block;
}
.top__shop-data__text h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.top__shop-data__text h2::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 16px;
  background-image: url("../img/deco-l.png");
  background-size: contain;
  margin: 0px 10px 0px 0px;
}
.top__shop-data__text h2::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 16px;
  background-image: url("../img/deco-r.png");
  background-size: contain;
  margin: 0px 0px 0px 10px;
}
@media screen and (min-width: 376px) {
  .top__shop-data__text {
    margin: 0 auto;
    padding: 0px 15px;
  }
  .top__shop-data__text h2 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1120px) {
  .top__shop-data__text {
    font-size: 1.6rem;
    padding: 0;
    margin: 0px 109px 0px 50px;
    font-weight: 400;
  }
  .top__shop-data__text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0px 0px 15px 0px;
  }
}

.top__shop-data__address {
  padding-bottom: 20px;
  line-height: 180%;
}
@media screen and (min-width: 1120px) {
  .top__shop-data__address {
    line-height: 150%;
    padding-bottom: 5px;
    white-space: nowrap;
  }
}

.top__shop-data__tel {
  padding-bottom: 30px;
}
@media screen and (min-width: 1120px) {
  .top__shop-data__tel {
    padding-bottom: 20px;
  }
}

.top__shop-data__station {
  line-height: 180%;
  padding-bottom: 30px;
}
@media screen and (min-width: 1120px) {
  .top__shop-data__station {
    line-height: 150%;
    padding-bottom: 20px;
  }
}

.top__shop-data__data {
  line-height: 180%;
}
@media screen and (min-width: 1120px) {
  .top__shop-data__data {
    line-height: 150%;
  }
}

.top__instagram {
  text-align: center;
  margin: 0px 25px 0px 25px;
  padding-bottom: 154px;
}
.top__instagram h2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 800px) {
  .top__instagram {
    margin: 30px 30px 154px 30px;
  }
}
@media screen and (min-width: 1120px) {
  .top__instagram {
    margin: 80px 30px 50px 30px;
    padding-bottom: 0;
  }
  .top__instagram h2 {
    font-weight: 600;
  }
}

.top__instagram__logo {
  width: 30px;
  margin: 30px 0px 10px 0px;
}
@media screen and (min-width: 1120px) {
  .top__instagram__logo {
    display: none;
  }
}

#instagram-feed {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#instagram-feed img {
  width: 100px;
}
@media screen and (min-width: 800px) {
  #instagram-feed img {
    width: 125px;
  }
}
@media screen and (min-width: 900px) {
  #instagram-feed img {
    width: 150px;
  }
}
@media screen and (min-width: 1120px) {
  #instagram-feed {
    max-width: 1300px;
  }
  #instagram-feed img {
    width: 200px;
  }
}/*# sourceMappingURL=top.css.map */