.none {
  display: none;
}
.h-30px{height:30px}.head02{font-size:15px;font-weight:700}@media (max-width: 47.99em){.head02{font-size:12px}}#side[data-astro-cid-2zxliehc]{display:none!important}#contents[data-astro-cid-2zxliehc]{width:auto!important;float:none!important}.modal__overlay{z-index:500}header{z-index:10}.header-drawer__button{z-index:400}.c-hamburger-nav{z-index:30}video{width:100%}.head01{font-size:20px}@media (max-width: 47.99em){.head01{font-size:12px;font-weight:700}}.voice{background:#eff2fa;padding:10px 42px 42px}@media (max-width: 47.99em){.voice{padding:20px}}.voice .head{display:flex;justify-content:center;align-items:center;text-align:center;font-size:18px;color:#0d0057;letter-spacing:1.4px;gap:5px;margin-bottom:30px;margin-top:30px;font-weight:700}@media (max-width: 47.99em){.voice .head{margin-bottom:20px;margin-top:20px;font-size:15px}}.voice .group{display:flex;justify-content:center;align-items:center;flex-direction:column;gap:30px}.voice .box{background:#fff;padding:32px;display:flex;justify-content:center;align-items:center;gap:29px}@media (max-width: 47.99em){.voice .box{padding:13px 25px;gap:11px}}.voice .box .img{flex-shrink:0}@media (max-width: 47.99em){.voice .box .img{width:50px}}.voice .box .text{font-size:15px}

.main-head {
  position: relative;
  display: grid;
  height: 90px;
  overflow: hidden;

  @media (max-width: 768px) {
    height: 60px;
    border-radius: 0;
  }

  .bg {
    border-radius: 10px;
    grid-area: 1/1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    z-index: 1;

    @media (max-width: 768px) {
      border-radius: 0;
    }
  }

  .inner {
    grid-area: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 2;

    h2 {
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.2em;
      line-height: 1;

      @media (max-width: 768px) {
        font-size: 16px;
        letter-spacing: 0.1em;
      }
    }

    img {
      width: 60px;

      @media (max-width: 768px) {
        width: 50px;
      }
    }
  }

  &.__detail {
    margin-top: -80px;
  }
}

.sp-full {
  @media (max-width: 768px) {
    margin: 0 calc(50% - 50vw);
    width: 100%;
  }
}

.point-list {
  counter-reset: num;

  li {
    margin-top: 50px;
    counter-increment: num;

    .head {
      position: relative;
      width: 80px;
      margin: 0 auto;

      img {
        width: 100%;
      }

      p {
        position: absolute;
        top: 10%;
        left: 15%;
        &::before {
          content: counter(num, decimal-leading-zero);
          font-weight: 700;
          color: #2f2665;
          font-size: 30px;
        }
      }
    }

    h3 {
      text-align: center;
      color: #2f2665;
      font-size: 20px;
      margin-top: 20px;
      letter-spacing: 0.1em;

      @media (max-width: 768px) {
        font-size: 16px;
        margin-top: 10px;
      }
    }

    .inner {
      margin-top: 20px;
      display: grid;
      grid-template-columns: 0.45fr 0.55fr;
      gap: 20px;

      @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 10px;
      }

      p {
        letter-spacing: 0.1em;
      }
    }
  }

  &.__detail {
    .inner {
      display: block;
      p {
        margin-top: 20px;
      }
    }
  }
}

.link__button {
  background: #2f2665;
  color: #fff;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  max-width: 300px;
  border-radius: 8px;
  height: 50px;
  margin: 0 auto;
  margin-top: 80px;

  @media (max-width: 768px) {
    margin-top: 40px;
  }

  &::before {
    content: "";
  }

  &::after {
    margin-left: auto;
    margin-right: 10px;
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' d='m10 17l5-5l-5-5' stroke-width='1'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.info__content {
  margin-top: 100px;

  .balloon {
    position: relative;
    border-radius: 10px;
    background: #e4edf5;
    padding: 30px;

    @media (max-width: 768px) {
      padding: 20px;
    }

    h3,
    p {
      position: relative;
      z-index: 2;
    }

    h3 {
      text-align: center;
      font-size: 20px;
      letter-spacing: 0.1em;
    }

    p {
      margin-top: 10px;
      letter-spacing: 0.1em;

      @media (max-width: 768px) {
        margin-top: 5px;
      }
    }

    .balloon__bg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      z-index: 1;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e4edf5' d='M12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E");
    }

    .balloon__item {
      position: absolute;
      right: 0;
      bottom: -30px;
      left: 0;
      margin: auto;
      z-index: 1;
    }
  }

  .item {
    width: 400px;
    margin: 0 auto;
    display: block;
    margin-top: 30px;

    @media (max-width: 768px) {
      width: 300px;
    }
  }
}

.how-to-eat {
  margin-top: 100px;

  .head {
    h3 {
      text-align: center;
      color: #2f2665;
      font-size: 20px;
      margin: 15px 0;
      line-height: 1;
    }
  }

  .inner {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 30px;
    margin-top: 30px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }

  .bg {
    margin-top: 30px;
  }

  &.__detail {
    .inner {
      display: block;
    }

    h4 {
      text-align: center;
      color: #2f2665;
      margin-bottom: 20px;
      margin-top: 50px;
    }
    h5 {
      text-align: center;
      color: #2f2665;
      margin-bottom: 10px;
      margin-top: 50px;
    }
    h6 {
      text-align: center;
      color: #2f2665;
      margin-bottom: 10px;
      margin-top: 50px;
      border-bottom: #2f2665 2px solid;
    }

    span {
      display: inline-block;
    }

    p {
      border-radius: 10px;
      background: rgba(228, 237, 245, 0.5);
      padding: 30px;
    }
  }
}

.voice__content {
  padding: 30px;
  border-radius: 10px;
  background: #ebebeb;
  margin-top: 100px;
  box-sizing: border-box;

  @media (max-width: 768px) {
    margin-top: 0;
    padding-top: 50px;
  }

  .head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    h3 {
      color: #2f2665;
      font-size: 25px;
      font-weight: 500;
      line-height: 1;
    }
  }

  ul {
    display: grid;
    gap: 20px;
    margin-top: 30px;

    li {
      background: #fff;
      padding: 20px 30px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 30px;

      @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 10px;

        img {
          margin: 0 auto;
          width: 100px;
        }
      }

      .text {
        display: flex;
        flex-direction: column;

        p {
          @media (max-width: 768px) {
            order: 2;
          }
        }

        span {
          margin-top: auto;
          margin-left: auto;

          @media (max-width: 768px) {
            order: 1;
            margin: 0 auto;
            margin-bottom: 10px;
          }
        }
      }
    }
  }

  &.__detail {
    li {
      grid-template-columns: 1fr;
      gap: 10px;

      img {
        margin: 0 auto;
        width: 100px;
      }

      .text {
        p {
          order: 2;
        }

        span {
          order: 1;
          margin: 0 auto;
          margin-bottom: 10px;
        }
      }
    }
  }
}

.about-item {
  display: grid;
  grid-template-areas:
    "a b"
    "a c"
    "a d"
    "a e";
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);

  @media (max-width: 768px) {
    grid-template-areas:
      "b"
      "c"
      "a"
      "d"
      "e";
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    box-shadow: none;
  }

  picture {
    grid-area: a;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px 0px 0px 20px;

      @media (max-width: 768px) {
        border-radius: 0px;
      }
    }
  }

  .top {
    grid-area: b;
    border-radius: 0px 20px 0px 0px;
    overflow: hidden;

    img {
      width: 100%;
    }

    @media (max-width: 768px) {
      border-radius: 0px;
    }
  }
  .bottom {
    grid-area: e;
    border-radius: 0px 0px 20px 0px;
    overflow: hidden;

    img {
      width: 100%;
    }

    @media (max-width: 768px) {
      border-radius: 0px;
    }
  }

  h3 {
    grid-area: c;
    text-align: center;
    border-bottom: #2f2665 2px solid;
    margin: 30px 30px 0;
    font-size: 20px;
    letter-spacing: 0.1em;

    @media (max-width: 768px) {
      border-bottom: none;
    }
  }

  p {
    grid-area: d;
    margin: 10px 30px 30px;

    @media (max-width: 768px) {
      margin: 10px 5px 30px;
    }
  }
}

.shop-detail__wrapper {
  max-width: 560px;
  background: red;
}

.caution__content {
  margin-top: 100px;

  @media (max-width: 768px) {
    margin-top: 50px;
  }

  h3 {
    color: #2f2665;
    display: grid;
    place-items: center;
    background: #dbe5ee;
    height: 60px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1;
  }
  p {
    margin-top: 5px;
  }
}

.spec__content {
  margin-top: 100px;

  @media (max-width: 768px) {
    margin-top: 50px;
  }

  h3 {
    color: #2f2665;
    display: grid;
    place-items: center;
    background: #dbe5ee;
    height: 60px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1;
  }
  dl {
    margin-top: 5px;
  }
}

.spec__content {
	dl {
		margin-top: 10px;
	}
}