@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

body {
  background-color: #da3724;
}

.br {
  display: inline-block;
}

.wrapper {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: center;
}

/*ナビゲーション*/
.menu {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 30;
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.menu.hide {
  transform: translateY(-160%);
  transition: transform 0.4s ease;
}

.menu.show {
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.nav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding: 1rem 0;
  background-color: rgba(218, 55, 36, 0.9);
  align-items: center;
  font-weight: bold;
  z-index: 99;
}

.nav li a {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem .7rem;
  color: #fff;
  transition: .3s;
  letter-spacing: .2rem;
}

.nav li a:hover {
  text-shadow: 2px 2px 3px #333;
  color: yellow;
}

@media screen and (max-width: 1240px) {
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    z-index: 10;
    /* cursor: pointer; */
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 5px 0;
    transition: .4s;
    border-radius: 3px;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(218, 55, 36, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 5;
  }

  .nav {
    flex-direction: column;
    margin: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: rgba(218, 55, 36, 0.01);
  }

  .nav li {
    margin: 5px;
  }

  .nav li a {
    padding: 1.3rem 1rem;
  }

  .menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav li a:hover {
    text-shadow: none;
    color: #fff;
  }
}

/* フェードイン */
.inview {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 70px);
}

.inview.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* スライダー */
.slider {
  width: 100%;
  margin-top: 2rem;
}

.slider div {
  padding: 0;
}

.slider img {
  width: 100%;
  display: block;
  margin: 0;
}

/* 左から右に流すスライダーは反転 */
.slider.ltr {
  transform: scaleX(-1);
}

.slider.ltr .slick-slide img {
  transform: scaleX(-1); /* 画像だけ元に戻す */
}

/* メインビジュアル */
.mv {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .mv {
    margin-top: 0;
  }
}

/* 概要 */
#about {
  overflow: hidden;
}

.about_con {
  width: 70%;
  margin: 0 auto 2em;
  border: double 10px #333;
  padding: 3rem 1rem;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 7px #333;
  position: relative;
}

.about_con h2 {
  font-size: 3rem;
}

.gyoza {
  background: url(../img/gyo.png) no-repeat;
  background-size: contain;
  position: absolute;
  width: 250px;
  height: 250px;
  z-index: 2;
}

.top {
  top: 0;
  right: -13%;
  transform-origin: center bottom;
  animation: yurarig 3s linear infinite;
}

@keyframes yurarig {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

.fot {
  bottom: -13%;
  left: -13%;
  transform-origin: center bottom;
  animation: yuralef 3.5s linear infinite;
}

@keyframes yuralef {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.about_box {
  margin-top: 3rem;
  line-height: 1.7;
}

.about_item {
  margin-bottom: 3rem;
}

.about_item h3 {
  margin: 2rem auto;
  padding: 1rem 2rem;
  border-radius: 45px;
  background-color: rgb(243, 243, 43);
  color: #333;
  width: 70%;
  font-size: 1.6rem;
}

.about_item p {
  font-size: 1.5rem;
  font-weight: bold;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 3px #da3724;
  background-color: #da3724;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.4s;
}

.button:hover {
  background-color: #333;
  box-shadow: 0 0 0 3px #333;
}

.smal {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about_con {
    width: 100%;
    padding: 1rem;
  }

  .about_con h2 {
    font-size: 2rem;
  }

  .about_item h3 {
    font-size: 1.1rem;
    margin: 1rem auto;
    padding: 1rem;
  }

  .smal {
    font-size: 0.8rem;
  }

  .about_item p {
    font-size: 1rem;
  }

  .gyoza {
    width: 150px;
    height: 150px;
  }

  .fot {
    bottom: -16%;
  }

  .button:hover {
    box-shadow: 0 0 0 3px #da3724;
    background-color: #da3724;
  }
}

/* 吹き出し */
.huki_con {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  margin-bottom: -6%;
}

.huki img {
  width: 100%;
  margin-bottom: -6%;
}

.huki.show {
  animation: popUp 1s ease-in-out forwards;
}

@keyframes popUp{
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}


.beel {
  text-align: right;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
}

@media (max-width: 768px) {
  /* 吹き出し */
  .huki_con {
    padding: 1rem;
    margin-bottom: -18%;
  }

  .beel {
    text-align: center;
  }
}

/* 店舗情報 */
.shop_item {
  margin: 3rem 0;
  padding: 1rem;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 3px #333;
}

.back {
  background-color: rgb(243, 243, 43);
  padding: 1rem 1rem 3rem;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #333;
}

.shop-title {
  font-size: 1.8rem;
  margin: 0 auto 3rem;
  padding: 1.5rem 1rem;
  text-align: center;
  background: #fff;
  color: #333;
  border: double 10px #333;
  width: 80%;
  border-radius: 15px;
}

.shop-title span {
  font-size: 1.2rem;
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  border-radius: 30px;
}

.shop-title::before {
  content: '';
  width: 130px;
  height: 3px;
  background: #333;
  z-index: 9999;
  background: url(../img/nami.png);
}

.card_box {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  align-items: stretch;
}

.card {
  width: calc(100% / 2 - 40px);
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  height: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  border: 2px solid #333;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 40px);
}

.card_textbox {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card_textbox h4 {
  color: #da3724;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1rem 0 2rem;
}

.desc {
  margin: 2rem 0;
  font-size: 1.1rem;
}

.price {
  font-weight: bold;
  font-size: 1.3rem;
  margin: auto 0 1rem;
}

.card_imgframe {
  width: 100%;
  padding-top: 56.25%;
  box-sizing: border-box;
  border-radius: 7px 7px 0 0;
}

.hokkaido_01 {
  background: url(../img/shop/hokkaido_01.jpg) no-repeat top;
  background-size: cover;
}

.hokkaido_02 {
  background: url(../img/shop/hokkaido_02.jpg) no-repeat center;
  background-size: contain;
}

.miyagi_01 {
  background: url(../img/shop/miyagi_01.jpg) no-repeat top;
  background-size: cover;
}

.miyagi_02 {
  background: url(../img/shop/miyagi_02.jpg) no-repeat center;
  background-size: cover;
}

.tochi_01 {
  background: url(../img/shop/tochi_01.jpg) no-repeat center;
  background-size: cover;
}

.ibaraki {
  background: url(../img/shop/ibaraki.jpg) no-repeat center;
  background-size: cover;
}

.saitama_01 {
  background: url(../img/shop/saitama_01.jpg) no-repeat center;
  background-size: cover;
}

.saitama_02 {
  background: url(../img/shop/saitama_02.jpg) no-repeat center;
  background-size: cover;
}

.tokyo_01 {
  background: url(../img/shop/tokyo_01.jpg) no-repeat center;
  background-size: cover;
}

.tokyo_02 {
  background: url(../img/shop/tokyo_02.jpg) no-repeat center;
  background-size: cover;
}

.yokohama_01 {
  background: url(../img/shop/yokohama_01.jpg) no-repeat center;
  background-size: cover;
}

.yokohama_02 {
  background: url(../img/shop/yokohama_02.jpg) no-repeat center;
  background-size: contain;
}

.shizuoka_01 {
  background: url(../img/shop/shizuoka_01.jpg) no-repeat center;
  background-size: cover;
}

.shiga_01 {
  background: url(../img/shop/shiga_01.jpg) no-repeat center;
  background-size: cover;
}

.hyougo_01 {
  background: url(../img/shop/hyougo_01.jpg) no-repeat center;
  background-size: cover;
}

/* デザート */
#dessert {
  margin-top: 5rem;
}

.dessert_title {
  position: relative;
  width: 70%;
  margin: 0 auto;
  padding: 4rem 1rem;
  background-color: rgb(243, 243, 43);
  color: #333;
  font-weight: bold;
  font-size: 1.2rem;
  border: double #333 10px;
  border-radius: 7px;
}

.dessert_title::after{
  position: absolute;
  content: '';
  top: 105%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #333;
  width: 0;
  height: 0;
}

#dessert .card {
  background-color: rgb(240, 224, 250);
}

.kurume_01 {
  background: url(../img/dess/kurume_01.jpg) no-repeat center;
  background-size: cover;
}

.kurume_02 {
  background: url(../img/dess/kurume_02.jpg) no-repeat center;
  background-size: cover;
}

.nosu {
  background: url(../img/dess/nosu.jpg) no-repeat center;
  background-size: cover;
}

.uji {
  background: url(../img/dess/uji.jpg) no-repeat center;
  background-size: cover;
}

.kyoto_01 {
  background: url(../img/dess/kyoto_01.jpg) no-repeat center;
  background-size: cover;
}

.kyoto_02 {
  background: url(../img/dess/kyoto_02.jpg) no-repeat center;
  background-size: cover;
}

@media (max-width: 768px) {
  /* 店舗情報 */

  .back {
    padding: 1rem 0.5rem 3rem;
  }

  .card_box {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .shop_item {
    padding: 0.5rem;
  }

  .desc {
    font-size: 1rem;
  }

  .shop-title {
    margin: 1.8rem 0 2rem;
    width: 100%;
    font-size: 1.5rem;
  }

  .shop-title span {
    font-size: 1.1rem;
  }

  .dessert_title {
    width: 100%;
    font-size: 1rem;
    padding: 2rem 1rem;
  }
}

/* フッター */
#footer {
  background-color: #fff;
}

.fot_wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.chu {
  margin: 2rem 0;
  padding: 2rem 0;
  font-size: 1.5rem;
}

.spon {
  margin-top: 3rem;
}

.spon img {
  width: 230px;
}

.spon_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.spon_item,.inquiry {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .chu {
    font-size: 1.1rem;
  }
}