@charset "utf-8";

/* === reset === */
* {
  margin: 0;
  padding: 0;
}

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

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  text-underline-offset: 0.15em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  outline: none;
}

*:focus {
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* common */
html {
  font-size: clamp(14px, 1.5vw, 18px);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.sp-br {
  display: none;
}

.tb-br {
  display: none;
}

@media screen and (max-width:768px) {
  html {
    font-size: clamp(12px, 2vw, 16px);
  }

  .tb-br {
    display: inline;
  }
}

@media screen and (max-width:576px) {
  html {
    font-size: clamp(10px, 3vw, 14px);
  }

  .sp-br {
    display: inline;
  }
}

/* header */
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 998;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 220, 220, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 10000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6f91, #ffd166);
  border-radius: 50%;
  transition: 0.3s;
}

.openbtn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.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;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* main */
main {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
}

h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "Chewy", system-ui;
  letter-spacing: 0.1rem;
  color: #FF6F91;
  font-size: 3em;
  text-shadow:
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff;
  text-align: center;
}

.sns_main {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateX(-50%) translateY(-200%);
}

@media screen and (max-width:576px) {
  .sns_main {
    top: 65%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    text-align: center;
  }
}

/* about */
#about {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background:
    linear-gradient(135deg, #FF2E72, #FF6F91, #FF99B9, #FFD6E5),
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.8), transparent 40%),
    radial-gradient(circle at 75% 70%, #FF1E8E, transparent 50%);
  background-blend-mode: screen;
  padding: 10dvh 0 10dvh;
  position: relative;
  z-index: 0;
}

#about::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/back.webp);
  z-index: -1;
  background-size: cover;
  opacity: 0.6;
}

.about_textbox {
  width: 50%;
  margin: 3%;
}

.about_textbox h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-family: "ads-corydance", sans-serif;
  text-shadow: 1px 1px 3px #000;
}

.about_textbox h3 {
  font-family: "Chewy", system-ui;
  letter-spacing: 0.1rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow:
    2px 0 black,
    -2px 0 black,
    0 2px black,
    0 -2px black,
    2px 2px black,
    -2px -2px black,
    2px -2px black,
    -2px 2px black;
}

.about_textbox h3 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about_textbox h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.4em;
  background: #ffff33;
  z-index: -1;
}

.about_textbox h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

.about_textbox p {
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

.about_img {
  width: 50%;
  text-align: center;
}

.about_img img {
  width: 80%;
}

@media screen and (max-width:576px) {
  .about_img {
    display: none;
  }

  .about_textbox {
    width: 80%;
    position: relative;
    z-index: 1;
  }

  .about_textbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/about.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    opacity: 0.9;
  }

  .about_textbox h2,
  .about_textbox h4,
  .about_textbox p {
    color: #fff;
    text-shadow: 1px 1px 1px #000;
  }
}



/* menu */
#menu {
  width: 100%;
  text-align: center;
}

#menu h2 {
  padding: 3rem 0;
  font-family: "Chewy", system-ui;
  font-size: 5rem;
  text-shadow:
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff;
}

.slick-box {
  width: 80%;
  margin: 0 auto;
}

.slick-item {
  width: 100%;
  height: 60dvh;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle at right, #FF6F91 0%, #FFB347 50%, #FFD3B5 100%);
  border-radius: 30px;
}

.item-2,
.item-4,
.item-6,
.item-8 {
  flex-direction: row-reverse;
}

.item-4,
.item-5,
.item-6 {
  background: radial-gradient(circle at left, #7AC943 0%, #A9E34B 50%, #D4F17F 80%, #FFFFFF 100%);
}

.item-7,
.item-8,
.item-9 {
  background: radial-gradient(circle at center,
      #FFF7AE 0%,
      #FFD93D 35%,
      #FFB347 70%,
      #FF9A3C 100%)
}

.menu_text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transform: rotate(-10deg);
}

.item-2 .menu_text,
.item-4 .menu_text,
.item-6 .menu_text,
.item-8 .menu_text {
  transform: rotate(10deg);
}

.menu_name {
  color: #000;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-shadow:
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff;
}

.menu_price {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin-top: 1rem;
}

.menu_about {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  margin-top: 1rem;
}

.menu_price span {
  font-size: 1.5rem;
  font-weight: 800;
}

.slick-item figure {
  width: 45%;
}

.menu_btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: #ffcc00;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.menu_btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
}

.menu_btn:hover::after {
  transform: rotate(45deg) scale(1);
}

.menu_btn:hover {
  background: #ffd633;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:768px) {
  .slick-item {
    height: 50dvh;
  }
}

@media screen and (max-width:576px) {
  .slick-item {
    height: 50dvh;
    flex-direction: column;
  }

  #menu .slick-item figure {
    height: 40%;
    margin-top: 2rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #menu .slick-item figure img {
    height: 100%;
  }

  #menu .menu_text {
    transform: rotate(0);
    width: 80%;
    height: 60%;
  }
}

/* goods */
.scroll_container {
  height: 400vh;
}

.horizontal_scroll {
  position: absolute;
  top: 0;
  height: 100%;
  width: 400vw;
  will-change: transform;
  display: flex;
  justify-content: space-between;
}

.scroll_contents {
  height: 100%;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.scroll_contents::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/back.webp);
  z-index: -1;
  background-size: cover;
  opacity: 0.6;
}

.sticky_wrap {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}

.red {
  background:
    linear-gradient(135deg, #ff4d8a, #ff90e8, #ffd166),
    radial-gradient(circle at 25% 35%, #fff59d, transparent 45%),
    radial-gradient(circle at 75% 65%, #80deea, transparent 45%);
  background-blend-mode: screen;
}

.yellow {
  background:
    linear-gradient(135deg, #ffd166, #fff59d, #ffe082),
    radial-gradient(circle at 25% 35%, #ff90e8, transparent 45%),
    radial-gradient(circle at 75% 65%, #80deea, transparent 45%);
  background-blend-mode: screen;

}

.green {
  background:
    linear-gradient(135deg, #6ee7b7, #a7f3d0, #d9f99d),
    radial-gradient(circle at 20% 30%, #ff90e8, transparent 45%),
    radial-gradient(circle at 80% 70%, #4fc3f7, transparent 45%);
  background-blend-mode: screen;

}

.blue {
  background:
    linear-gradient(135deg, #4fc3f7, #81d4fa, #b3e5fc),
    radial-gradient(circle at 25% 35%, #ffb3e6, transparent 45%),
    radial-gradient(circle at 75% 65%, #fff59d, transparent 45%);
  background-blend-mode: screen;
}

.left {
  margin-top: 3rem;
  font-size: 5rem;
}

.left_arrow {
  font-size: 4rem;
  font-family: "Chewy", system-ui;
}

.left_text {
  margin: 0 4rem;
  font-size: 2.5rem;
  text-align: center;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 0.1rem;
  text-shadow:
    0 0 5px rgb(199, 125, 255),
    0 0 5px rgb(199, 125, 255),
    0 0 5px rgb(199, 125, 255),
    0 0 5px rgb(199, 125, 255),
    0 0 5px rgb(199, 125, 255),
    0 0 5px rgb(199, 125, 255);
}

.scroll_contents h2 {
  margin: 2rem 0 2rem;
  font-size: 3rem;
  font-family: "Chewy", system-ui;
  letter-spacing: 0.1rem;
}

.goods_flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
}

.goods_box {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.goods_box img {
  width: 40%;
  border-radius: 10%;
}

.goods_text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}

.goods_text h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.goods_text p:nth-child(2) {
  margin-bottom: 0.5rem;
  text-align: left;
}

.goods_text p:nth-child(3) {
  width: 100%;
  text-align: right;
  font-weight: 600;
}

.goods_text p:nth-child(3) span {
  font-size: 0.8rem;
}

@media screen and (max-width:768px) {
  .scroll_container {
    height: auto;
  }

  .horizontal_scroll {
    position: relative;
    height: auto;
    flex-direction: column;
  }

  .sticky_wrap {
    position: relative;
    overflow: visible;
    height: auto;
  }

  .left_arrow {
    display: none;
  }

  .red {
    padding-bottom: 2rem;
  }

  .goods_box {
    width: 100%;
  }

  .goods_text h3 {
    font-size: 1.8rem;
    width: 8em;
  }

  .goods_text p {
    font-size: 1.3rem;
  }
}

/* access */
#access {
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 5rem;
}

#access h2 {
  padding: 3rem 3rem 3rem 5rem;
  font-size: 3rem;
  color: #fff;
}

.access_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.map {
  width: 40%;
}

.map iframe {
  width: 100%;
  border-radius: 5%;
}

.access_info {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sns {
  margin-bottom: 2rem;
}

.sns a {
  display: inline-block;
}

.sns a:hover i {
  transform: scale(1.2);
  color: #FFB6C1;
}

.sns a i {
  font-size: 3rem;
  color: #fff;
  text-shadow:
    0 0 5px #FF6F91,
    0 0 5px #FF6F91,
    0 0 5px #FF6F91,
    0 0 5px #FF6F91,
    0 0 5px #FF6F91;
  transition: 0.3s;
}

.access_info table tr {
  text-align: left;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 5px #000;
  width: 100%;
}

.access_info table tr th {
  padding-right: 2rem;
  padding-bottom: 3rem;
}

.access_info table tr td {
  padding-bottom: 3rem;
}

@media screen and (max-width:576px) {
  .access_box {
    flex-direction: column;
    justify-content: center;
  }

  .map {
    height: 40dvh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .map iframe {
    width: auto;
    height: 100%;
    margin-bottom: 6rem;
    margin-top: 2rem;
  }

  .access_info {
    width: 80%;
  }
}

/* footer */
footer {
  height: 5rem;
  background-color: #FFB347;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer p {
  color: #fff;
}