@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
a,
p,
h2,
h3 {
  color: #333;
}
img {
  width: 100%;
  vertical-align: bottom;
}
/* header */
:root {
  --background-navbar: rgba(255, 255, 255, 0.98);
}
header {
  background: var(--background-navbar);
  box-shadow: 5px 5px 5px rgba(124, 64, 64, 0.08);
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  .pc-nav {
    display: none;
  }
  /* ハンバーガーメニュー */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 60px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    li {
      border-top: 2px solid rgb(255, 210, 210);
      padding: 15px 0;
      margin: 0 54px;
      opacity: 0;
      transition: 0.5s;
    }
    a {
      text-decoration: none;
      font-family: "Kosugi Maru", sans-serif;
      font-weight: 500;
      letter-spacing: 2px;
      font-size: 16px;
      text-transform: capitalize;
      opacity: 0;
      transition: 0.5s;
    }
    .top:before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-osusume.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .shop::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-shop.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .event::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-event.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
    .access::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-access.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      vertical-align: middle;
      margin-right: 5px;
    }
  }
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .menu-btn {
    display: none;
  }
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(87, 87, 87, 0);
  }
  .navicon {
    background: rgb(255, 210, 210);
    border-radius: 50px;
    display: block;
    height: 4px;
    width: 33px;
    position: relative;
    top: 6px;
    left: 5px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgb(255, 210, 210);
    border-radius: 50px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before {
    top: 9px;
  }
  .navicon:after {
    bottom: 9px;
  }
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navtext {
    width: 100px;
    padding-top: 20px;
  }
  /* ハンバーガーメニュー閉じ */
}
/* ヘッダーレスポンシブ */
@media screen and (min-width: 767px) {
  header {
    .pc-nav {
      width: 100%;
      height: 80px;
      background-color: white;
      box-shadow: 5px 5px 5px rgba(124, 64, 64, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      .logo {
        width: 120px;
        padding-top: 10px;
        margin: 0 10px 0 40px;
      }
      nav {
        display: block;
        width: fit-content;
        ul {
          width: 100%;
          display: flex;
          margin-right: 40px;
          li {
            list-style: none;
            padding-right: 25px;
            a {
              align-items: center;
              text-decoration: none;
              font-family: "Kosugi Maru", sans-serif;
              font-size: large;
              font-weight: bold;
              white-space: nowrap;
            }
            a:hover {
              color: red;
              transition: all 0.3s;
            }
          }
        }
      }
    }
    .hum {
      display: none;
    }
  }
}

/* ヘッダーレスポンシブ閉じ */

/* main */
.sliderArea {
  overflow: hidden;
  margin-top: 80px;
}
.wrap {
  background-color: white;
  padding: 0 5%;

  .recommend {
    margin: 100px auto 0;
    h3 {
      text-align: center;
      font-family: "Kosugi Maru", sans-serif;
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 10px;
    }
    h3::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-osusume.png);
      background-repeat: no-repeat;
      width: 35px;
      height: 35px;
      background-size: contain;
      vertical-align: middle;
      margin-right: 5px;
    }
    .recommend-container {
      width: 100%;
      border-radius: 10px;
      background-color: rgb(255, 210, 210);
      box-shadow: inset 7px 7px 7px rgba(124, 64, 64, 0.08);
      padding: 10% 5%;
      .flex-item {
        background-color: white;
        padding: 10px;
        margin-bottom: 50px;
        a {
          display: block;
          color: black;
          text-decoration: none;
          p {
            font-size: 16px;
            padding: 10px 0;
            span {
              display: block;
              font-size: small;
              line-height: 1.5;
              margin-bottom: 10px;
            }
          }
        }
      }
    }
    .click-all {
      width: 200px;
      position: relative;
      margin: 0 auto;
      a {
        width: 100%;
        background-color: red;
        border-radius: 10px;
        color: white;
        font-family: "Kosugi Maru", sans-serif;
        text-align: center;
        padding: 20px 20px 20px 0;
        margin: 30px auto 0;
        display: block;
        text-decoration: none;
      }
      a:before {
        content: "";
        width: 18px;
        height: 18px;
        background: red;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: 20px;
        bottom: 0;
        margin: auto;
      }
      a:after {
        content: "";
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 26px;
        bottom: 0;
        margin: auto;
      }
    }
  }
  h2 {
    font-family: "Dongle", sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    line-height: 0.7;
    border-bottom: solid 10px red;
    margin: 100px 0 50px;
  }
  .gourmet {
    margin: 0 auto;
    h3 {
      text-align: center;
      font-family: "Kosugi Maru", sans-serif;
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 10px;
    }
    h3::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-shop.png);
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      background-size: contain;
      vertical-align: middle;
      padding-bottom: 10px;
      margin-right: 5px;
    }
    .gourmet-container {
      width: 100%;
      border-radius: 10px;
      background-color: rgb(255, 210, 210);
      box-shadow: inset 7px 7px 7px rgba(124, 64, 64, 0.08);
      padding: 10% 5%;
      .flex-item {
        background-color: white;
        padding: 10px;
        margin-bottom: 50px;
        a {
          display: block;
          color: black;
          text-decoration: none;
          p {
            font-size: 16px;
            padding: 10px 0;
            span {
              display: block;
              font-size: small;
              line-height: 1.5;
              margin-bottom: 10px;
            }
          }
        }
      }
    }
    .click-all {
      width: 200px;
      position: relative;
      margin: 0 auto;
      a {
        width: 100%;
        background-color: red;
        border-radius: 10px;
        color: white;
        font-family: "Kosugi Maru", sans-serif;
        text-align: center;
        padding: 20px 20px 20px 0;
        margin: 30px auto 0;
        display: block;
        text-decoration: none;
      }
      a:before {
        content: "";
        width: 18px;
        height: 18px;
        background: red;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: 20px;
        bottom: 0;
        margin: auto;
      }
      a:after {
        content: "";
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 26px;
        bottom: 0;
        margin: auto;
      }
    }
  }
  .event {
    margin: 100px auto 0;
    h3 {
      text-align: center;
      font-family: "Kosugi Maru", sans-serif;
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 10px;
    }
    h3::before {
      content: "";
      display: inline-block;
      background-image: url(../img/icon-event.png);
      width: 30px;
      height: 30px;
      background-size: contain;
      background-repeat: no-repeat;
      vertical-align: middle;
      margin-right: 5px;
    }
    .event-container {
      width: 100%;
      border-radius: 10px;
      background-color: rgb(255, 210, 210);
      box-shadow: inset 7px 7px 7px rgba(124, 64, 64, 0.08);
      padding: 10% 5%;
      .flex-item {
        background-color: white;
        padding: 10px;
        margin-bottom: 50px;
        a {
          display: block;
          color: black;
          text-decoration: none;
          p {
            font-size: 16px;
            padding: 10px 0;
            span {
              display: block;
              font-size: small;
              line-height: 1.5;
              margin-bottom: 10px;
            }
          }
        }
      }
    }
    .click-all {
      width: 200px;
      position: relative;
      margin: 0 auto;
      a {
        width: 100%;
        background-color: red;
        border-radius: 10px;
        color: white;
        font-family: "Kosugi Maru", sans-serif;
        text-align: center;
        padding: 20px 20px 20px 0;
        margin: 30px auto 0;
        display: block;
        text-decoration: none;
      }
      a:before {
        content: "";
        width: 18px;
        height: 18px;
        background: red;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: 20px;
        bottom: 0;
        margin: auto;
      }
      a:after {
        content: "";
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 26px;
        bottom: 0;
        margin: auto;
      }
    }
  }
  .access {
    margin-bottom: 50px;
    img {
      width: 120px;
      margin: 100px 0 50px;
    }
    .access-text {
      text-align: left;
      font-size: small;
      line-height: 1.7;
      margin: 100px 0 20px;
      dt {
        color: red;
        margin-bottom: 5px;
      }
      .jusho::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-access.png);
        width: 25px;
        height: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
        margin-right: 5px;
      }
      .kotu::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-kotu.png);
        width: 30px;
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
      }
      .time::before {
        content: "";
        display: inline-block;
        background-image: url(../img/icon-time.png);
        width: 27px;
        height: 27px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
        margin-right: 5px;
      }
      dd {
        color: #333;
        margin: 0 0 20px 10px;
      }
    }
    iframe {
      width: 100%;
      height: 30vh;
    }
  }
}
/* トップへ戻るボタン */
#page_top {
  width: 50px;
  height: 50px;
  position: sticky;
  left: 83%;
  bottom: 20px;
  background: red;
  opacity: 0.8;
  border-radius: 50%;
  margin-bottom: 20px;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* トップへ戻るボタン閉じ */

/* スライドショーレスポンシブ */
@media screen and (min-width: 767px) {
  .sliderArea {
    overflow: hidden;
    .sliderWide {
      max-width: 100%;
      margin: 0 auto;
    }
    .slick-arrow {
      opacity: 0;
      transition-duration: 0.3s;
    }
    .sliderWide:hover .slick-arrow {
      opacity: 1;
    }
  }
  .slider {
    width: 50%;
    min-width: 700px;
    margin: 0 auto;
    padding: 0;
  }
  .slider .slick-list {
    overflow: visible;
  }
  .slider .slick-slide {
    padding: 0 10px;
    opacity: 0.5;
    transition-duration: 0.3s;
  }
  .slider .slick-slide.slick-current {
    opacity: 1;
  }
  .slider .slick-slide a {
    display: block;
  }
  .slider .slick-slide a:hover {
    display: block;
    opacity: 0.5;
  }
  .slider img {
    height: auto;
    width: 100%;
  }
  .slick-prev,
  .slick-next {
    position: relative;
    z-index: 999;
  }
  .slick-dots {
    bottom: -33px;
  }
}
/* スライドショーレスポンシブ閉じ */

/* mainレスポンシブ */
@media screen and (min-width: 767px) {
  .wrap {
    padding: 0 15%;
    .recommend {
      margin: 150px auto 0;
      h3 {
        color: black;
        text-align: center;
        font-weight: bold;
        font-size: 25px;
        padding: 50px 0 0;
        margin-bottom: 20px;
      }
      h3::before {
        content: "";
        display: inline-block;
        width: 50px;
        height: 50px;
        background-size: contain;
        vertical-align: middle;
        margin-right: 10px;
      }
      .recommend-container {
        width: 100%;
        border-radius: 20px;
        background-color: rgb(255, 210, 210);
        padding: 7%;
        .flex-box {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          justify-content: center;
          gap: 5vh;
          .flex-item {
            width: 100%;
            background-color: white;
            padding: 10px;
            margin: 0;
            a {
              display: block;
              color: black;
              text-decoration: none;
              p {
                font-size: 16px;
                padding: 10px 0;
                span {
                  display: block;
                  font-size: small;
                  line-height: 1.5;
                  margin-bottom: 10px;
                }
              }
            }
          }
        }
      }
      .click-all {
        width: 250px;
        margin: 0 auto;
        position: relative;
        a {
          width: 100%;
          border: solid 1px black;
          border-radius: 10px;
          color: black;
          background-color: white;
          text-decoration: none;
          font-size: 20px;
          letter-spacing: 1.5px;
          text-align: center;
          padding: 12px;
          margin: 30px auto 0;
          -webkit-transition: all 0.5s;
          transition: all 0.5s;
        }
        a:before {
          content: "";
          width: 25px;
          height: 25px;
          background: red;
          border-radius: 50%;
          position: absolute;
          top: 0;
          right: 17px;
          bottom: 0;
          margin: auto;
        }
        a:after {
          content: "";
          width: 6px;
          height: 6px;
          border: 0;
          border-top: solid 2px #fff;
          border-right: solid 2px #fff;
          transform: rotate(45deg);
          position: absolute;
          top: 0;
          right: 26px;
          bottom: 0;
          margin: auto;
        }
        a:hover {
          color: white;
          background-color: red;
          border: 1px red;
        }
      }
    }
    h2 {
      text-align: center;
      font-weight: bold;
      font-size: 70px;
      border-bottom: solid 20px red;
      margin: 150px 0 80px;
    }
    .gourmet {
      margin: 100px auto 200px;
      h3 {
        text-align: center;
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 20px;
      }
      h3::before {
        content: "";
        display: inline-block;
        width: 45px;
        height: 45px;
        background-size: contain;
        vertical-align: middle;
        margin-right: 10px;
      }
      .gourmet-container {
        width: 100%;
        border-radius: 20px;
        background-color: rgb(255, 210, 210);
        padding: 7%;
        .flex-box {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
          justify-content: center;
          gap: 0 3vh;
          .flex-item {
            width: 100%;
            background-color: white;
            padding: 10px;
            a {
              display: block;
              color: black;
              text-decoration: none;
              p {
                font-size: 16px;
                padding: 10px 0;
                span {
                  display: block;
                  font-size: small;
                  line-height: 1.5;
                  margin-bottom: 10px;
                }
              }
            }
          }
        }
        .click-img {
          img {
            display: block;
            width: 70%;
            margin: 0 auto;
          }
        }
      }
      .click-all {
        width: 250px;
        margin: 0 auto;
        position: relative;
        a {
          width: 100%;
          border: solid 1px black;
          border-radius: 10px;
          color: black;
          background-color: white;
          text-decoration: none;
          font-size: 20px;
          letter-spacing: 1.5px;
          text-align: center;
          padding: 12px;
          margin: 30px auto 0;
          -webkit-transition: all 0.5s;
          transition: all 0.5s;
        }
        a:before {
          content: "";
          width: 25px;
          height: 25px;
          background: red;
          border-radius: 50%;
          position: absolute;
          top: 0;
          right: 17px;
          bottom: 0;
          margin: auto;
        }
        a:after {
          content: "";
          width: 6px;
          height: 6px;
          border: 0;
          border-top: solid 2px #fff;
          border-right: solid 2px #fff;
          transform: rotate(45deg);
          position: absolute;
          top: 0;
          right: 26px;
          bottom: 0;
          margin: auto;
        }
        a:hover {
          color: white;
          background-color: red;
          border: 1px red;
        }
      }
    }
    .event {
      margin: 100px auto;
      h3 {
        text-align: center;
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 20px;
      }
      h3::before {
        content: "";
        display: inline-block;
        width: 40px;
        height: 40px;
        background-size: contain;
        vertical-align: middle;
        padding-bottom: 10px;
        margin-right: 10px;
      }
      .event-container {
        width: 100%;
        border-radius: 20px;
        background-color: rgb(255, 210, 210);
        padding: 7%;
        .flex-box {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
          justify-content: center;
          gap: 0 3vh;
          .flex-item {
            width: 100%;
            background-color: white;
            padding: 10px;
            a {
              display: block;
              color: black;
              text-decoration: none;
              p {
                font-size: 16px;
                padding: 10px 0;
                span {
                  display: block;
                  font-size: small;
                  line-height: 1.5;
                  margin-bottom: 10px;
                }
              }
            }
          }
        }
        .click-img {
          img {
            display: block;
            width: 70%;
            margin: 0 auto;
          }
        }
      }
      .click-all {
        width: 250px;
        margin: 0 auto;
        position: relative;
        a {
          width: 100%;
          border: solid 1px black;
          border-radius: 10px;
          color: black;
          background-color: white;
          text-decoration: none;
          font-size: 20px;
          letter-spacing: 1.5px;
          text-align: center;
          padding: 12px;
          margin: 30px auto 0;
          -webkit-transition: all 0.5s;
          transition: all 0.5s;
        }
        a:before {
          content: "";
          width: 25px;
          height: 25px;
          background: red;
          border-radius: 50%;
          position: absolute;
          top: 0;
          right: 17px;
          bottom: 0;
          margin: auto;
        }
        a:after {
          content: "";
          width: 6px;
          height: 6px;
          border: 0;
          border-top: solid 2px #fff;
          border-right: solid 2px #fff;
          transform: rotate(45deg);
          position: absolute;
          top: 0;
          right: 26px;
          bottom: 0;
          margin: auto;
        }
        a:hover {
          color: white;
          background-color: red;
          border: 1px red;
        }
      }
    }
    .access {
      margin: 150px 0 100px;
      img {
        width: 150px;
        margin: 100px 0 50px;
      }
      .flex-box {
        display: flex;
        justify-content: space-between;
        gap: 5vh;
        .access-text {
          text-align: left;
          font-size: large;
          line-height: 1.7;
          margin: 0;
          dt {
            margin-bottom: 10px;
          }
          dd {
            margin-bottom: 30px;
          }
        }
        iframe {
          width: 50%;
          height: auto;
          border: solid 1px black;
        }
      }
    }
  }
  #page_top {
    width: 90px;
    height: 90px;
    right: 30px;
    bottom: 30px;
    background: red;
    opacity: 0.8;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f102";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after {
    content: "トップ";
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}
/* mainレスポンシブ閉じ */

/* footer */
footer {
  width: 100%;
  background-color: #333;
  padding: 3% 5%;
  margin: 0 auto;
  a,
  p {
    color: white;
    font-size: small;
    text-decoration: none;
  }
  .shop-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: "Dongle", sans-serif;
    font-size: 40px;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
  }
  .shop-name::before,
  .shop-name::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
  }
  .shop-name::before {
    margin-right: 0.5em;
  }
  .shop-name::after {
    margin-left: 0.5em;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
    li {
      list-style: none;
    }
    .sns {
      display: flex;
      gap: 10px;
      img {
        width: 40px;
        height: 40px;
      }
      .youtube {
        border: 2px solid white;
        border-radius: 10px;
        padding: 3px;
      }
    }
  }
  .copy {
    color: white;
    text-align: center;
    padding: 50px 0 10px;
  }
}
/* footerレスポンシブ */
@media screen and (min-width: 767px) {
  footer {
    width: 100%;
    background-color: #333;
    padding: 3% 15%;
    margin: 0 auto;
    a,
    p {
      color: white;
      font-size: large;
      text-decoration: none;
    }
    .shop-name {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      font-family: "Dongle", sans-serif;
      font-size: 70px;
      text-align: center;
      padding: 20px 0;
      margin: 0 auto;
    }
    .shop-name::before,
    .shop-name::after {
      display: block;
      content: "";
      width: 100%;
      height: 2px;
      background-color: white;
    }
    .shop-name::before {
      margin-right: 0.3em;
    }
    .shop-name::after {
      margin-left: 0.3em;
    }
    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 20px;
      li {
        margin-bottom: 10px;
        a:hover {
          opacity: 0.5;
          transition: 0.3s;
        }
      }
      .sns {
        display: flex;
        gap: 20px;
        img {
          width: 70px;
          height: 70px;
        }
        .youtube {
          border: 4px solid white;
          border-radius: 20px;
          padding: 3px;
        }
      }
    }
    .copy {
      color: white;
    }
  }
}
/* footerレスポンシブ閉じ */
