@charset "UTF-8";
br.sp {
  display: none;
}
@media (max-width: 600px) {
  br.sp {
    display: block;
  }
}
br.pc {
  display: block;
}
@media (max-width: 600px) {
  br.pc {
    display: none;
  }
}

html, body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  overflow-x: hidden; /* 横スクロールを無効にする */
  line-height: 1.5;
  font-size: 16px;
  color: #000;
  background: #FCF9F2;
}
html.is-locked, body.is-locked {
  overflow: hidden;
}
html.is-drawer-open, body.is-drawer-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}

[id] {
  scroll-margin-top: 80px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.drawer-button {
  width: 48px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .drawer-button {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
.drawer-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.drawer-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(30deg);
}
.drawer-button.is-open span:nth-child(2) {
  opacity: 0;
}
.drawer-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
}

.footer {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 70px;
  padding-bottom: 60px;
  background: url("../img/footer/bg.svg") no-repeat center top/cover;
  color: #fff;
}
@media (max-width: 600px) {
  .footer {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
    padding-top: 10.6666666667vw;
    padding-bottom: 8vw;
  }
}

.footer-content {
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .footer-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}

.footer-info p {
  font-weight: 700;
}
.footer-info p:nth-of-type(1) {
  font-size: 17px;
}
.footer-info p:nth-of-type(2) {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.2;
}
.footer-info a {
  margin-top: 20px;
}
.footer-info a img {
  width: 70px;
  height: auto;
  display: block;
}

.footer-sns {
  display: flex;
  gap: 16px;
}
.footer-sns a {
  display: block;
}
.footer-sns a img {
  width: 25px;
  height: auto;
  display: block;
}

.footer-mail a {
  display: block;
}
.footer-mail a img {
  width: 160px;
  height: auto;
  display: block;
}

.footer-copyright {
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 700;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #FCF9F2;
  z-index: 99;
  transform: translateX(100%);
  transition: all 0.6s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer-content {
  max-width: fit-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
}
.drawer-content::before {
  content: "";
  position: absolute;
  width: 1139px;
  height: auto;
  aspect-ratio: 1139/677;
  background: url("../img/drawer/bg.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;
  z-index: -1;
}
.drawer-content::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 51px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/drawer/band.svg") no-repeat center center/cover;
  z-index: 1;
}

.drawer-logo img {
  width: 116px;
  height: auto;
  display: block;
}

.drawer-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.drawer-nav li a {
  font-size: 17px;
  font-weight: 600;
}

.drawer-nav-sns {
  margin-top: 60px;
  display: flex;
  gap: 20px;
}
.drawer-nav-sns li a {
  display: block;
}
.drawer-nav-sns li a img {
  width: 24px;
  height: auto;
  display: block;
}

.drawer-contact {
  margin-top: 28px;
}
.drawer-contact a {
  width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6E4039;
  color: #FFFFFF;
  font-size: 12px;
  gap: 9px;
  border-radius: 4px;
}
.drawer-contact a img {
  display: block;
}

.drawer-address {
  margin-top: 74px;
}
.drawer-address p {
  font-size: 14px;
  font-weight: 500;
}

.fv {
  padding-top: 160px;
  position: relative;
}
@media (max-width: 1100px) {
  .fv {
    padding-top: 260px;
  }
}
@media (max-width: 600px) {
  .fv {
    padding-top: 41.3333333333vw;
  }
}

.fv-content {
  max-width: fit-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.fv-content::before, .fv-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
}
.fv-content::before {
  width: 1342px;
  aspect-ratio: 1342/776;
  background: url("../img/page/top/fv/bg.svg") no-repeat center center/contain;
  transform: translate(-50%, -50%) translate(3px, 47px);
}
@media (max-width: 1100px) {
  .fv-content::before {
    aspect-ratio: 375/563;
    width: 648px;
    background: url("../img/page/top/fv/bg-sp.svg") no-repeat center center/contain;
    transform: translate(-50%, -50%) translate(3px, 8px);
  }
}
@media (max-width: 600px) {
  .fv-content::before {
    width: 100vw;
    transform: translate(-50%, -50%) translate(-2.9333333333vw, 2.4vw);
  }
}
.fv-content::after {
  width: 1035px;
  aspect-ratio: 1035/631;
  background: url("../img/page/top/fv/bg-deco.svg") no-repeat center center/contain;
  transform: translate(-50%, -50%) translate(-30px, 145px);
  z-index: 4;
}
@media (max-width: 1100px) {
  .fv-content::after {
    aspect-ratio: 344/554;
    width: 594px;
    background: url("../img/page/top/fv/bg-deco-sp.svg") no-repeat center center/contain;
    transform: translate(-50%, -50%) translate(-2px, 50px);
  }
}
@media (max-width: 600px) {
  .fv-content::after {
    width: 91.7333333333vw;
    transform: translate(-50%, -50%) translate(-0.5333333333vw, 8.8vw);
  }
}

.fv-title {
  position: relative;
  z-index: 2;
}
.fv-title img {
  width: 280px;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .fv-title img {
    width: 43.2vw;
  }
}

.fv-img-list {
  position: absolute;
  inset: 0;
}

.fv-img {
  position: absolute;
  z-index: 1;
}
.fv-img img {
  display: block;
  height: auto;
  width: 100%;
}
.fv-img.fv-img-1 {
  width: 256px;
  left: -280px;
  top: -93px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-1 {
    width: 185px;
    left: -223px;
    top: 40px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-1 {
    width: 28.5333333333vw;
    left: -32.5333333333vw;
    top: 6.4vw;
  }
}
.fv-img.fv-img-2 {
  width: 219px;
  right: -192px;
  top: -135px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-2 {
    width: 149px;
    top: 161px;
    right: -180px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-2 {
    width: 22.9333333333vw;
    right: -26.6666666667vw;
    top: 26.6666666667vw;
  }
}
.fv-img.fv-img-3 {
  width: 357px;
  left: -432px;
  top: 194px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-3 {
    width: 280px;
    left: -230px;
    top: 570px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-3 {
    width: 48.8vw;
    left: -36.5333333333vw;
    top: 89.6vw;
  }
}
.fv-img.fv-img-4 {
  width: 412px;
  top: 127px;
  right: -467px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-4 {
    width: 340px;
    top: -232px;
    right: 116px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-4 {
    width: 52.5333333333vw;
    top: -36vw;
    right: 19.4666666667vw;
  }
}
.fv-img.fv-img-5 {
  width: 250px;
  top: 456px;
  left: -325px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-5 {
    width: 190px;
    top: -80px;
    left: 282px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-5 {
    width: 29.3333333333vw;
    left: initial;
    right: -28.8vw;
    top: -12.5333333333vw;
  }
}
.fv-img.fv-img-6 {
  width: 271px;
  top: 460px;
  right: -354px;
}
@media (max-width: 1100px) {
  .fv-img.fv-img-6 {
    width: 247px;
    top: 520px;
    right: -210px;
  }
}
@media (max-width: 600px) {
  .fv-img.fv-img-6 {
    width: 38.1333333333vw;
    right: -32.5333333333vw;
    top: 80vw;
  }
}

.fv-lead .fv-lead-title {
  margin-top: 200px;
  color: #6E4039;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: block;
  text-align: center;
  max-width: fit-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1100px) {
  .fv-lead .fv-lead-title {
    margin-top: 350px;
  }
}
@media (max-width: 600px) {
  .fv-lead .fv-lead-title {
    margin-top: 66.6666666667vw;
    font-size: 4.8vw;
    line-height: 1.4;
  }
}
.fv-lead .fv-lead-title::before, .fv-lead .fv-lead-title::after {
  content: "";
  position: absolute;
  height: auto;
}
.fv-lead .fv-lead-title::before {
  width: 41px;
  aspect-ratio: 41/64;
  background: url("../img/page/top/fv/lead/deco-1.png") no-repeat center center/contain;
  left: -110px;
  bottom: -25px;
}
@media (max-width: 600px) {
  .fv-lead .fv-lead-title::before {
    width: 7.4666666667vw;
    bottom: 8.5333333333vw;
    left: -15.7333333333vw;
  }
}
.fv-lead .fv-lead-title::after {
  width: 107px;
  aspect-ratio: 107/78;
  background: url("../img/page/top/fv/lead/deco-2.svg") no-repeat center center/contain;
  right: -160px;
  bottom: -25;
}
@media (max-width: 600px) {
  .fv-lead .fv-lead-title::after {
    width: 17.6vw;
    right: -24vw;
    bottom: -4vw;
  }
}
.fv-lead .fv-lead-text {
  max-width: fit-content;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  margin-top: 27px;
  font-weight: 500;
}
.fv-lead .fv-lead-text span {
  display: block;
}
@media (max-width: 600px) {
  .fv-lead .fv-lead-text span {
    font-size: 3.7333333333vw;
  }
}
.fv-lead .fv-lead-text span:nth-of-type(2) {
  margin-top: 20px;
}
.fv-lead .fv-lead-text time {
  margin-top: 20px;
  display: block;
  font-size: 13px;
}
@media (max-width: 600px) {
  .fv-lead .fv-lead-text time {
    font-size: 2.9333333333vw;
  }
}

.fv-content::before, .fv-content::after {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fv-content.is-bg-show::before, .fv-content.is-bg-show::after {
  opacity: 1;
}

.fv-title,
.fv-img {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fv-title.is-show,
.fv-img.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-shops {
  margin-top: 260px;
  display: flex;
  flex-direction: column;
  gap: 250px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .home-shops {
    margin-top: 40vw;
    gap: 16vw;
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

.home-shop {
  max-width: 1120px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.home-shop.home-shop-morning .home-shop-title::before {
  width: 1380px;
  height: auto;
  aspect-ratio: 1380/212;
  background: url("../img/page/top/home-shop/morning/title-deco.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-morning .home-shop-title::before {
    background: url("../img/page/top/home-shop/morning/title-deco-sp.svg") no-repeat center center/contain;
    width: 120.2666666667vw;
    aspect-ratio: 451/156;
    top: -13.3333333333vw;
  }
}
.home-shop.home-shop-morning .home-shop-title img {
  width: 532px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-morning .home-shop-title img {
    width: 62.6666666667vw;
  }
}
.home-shop.home-shop-lunch .home-shop-title::before {
  width: 1396px;
  height: auto;
  aspect-ratio: 1396/251;
  background: url("../img/page/top/home-shop/lunch/title-deco.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-lunch .home-shop-title::before {
    background: url("../img/page/top/home-shop/lunch/title-deco-sp.svg") no-repeat center center/contain;
    width: 120.2666666667vw;
    aspect-ratio: 451/156;
    top: -13.3333333333vw;
  }
}
.home-shop.home-shop-lunch .home-shop-title img {
  width: 421px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-lunch .home-shop-title img {
    width: 65.3333333333vw;
  }
}
.home-shop.home-shop-gohoubi .home-shop-title::before {
  width: 1379px;
  height: auto;
  aspect-ratio: 1379/220;
  background: url("../img/page/top/home-shop/gohoubi/title-deco.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-gohoubi .home-shop-title::before {
    background: url("../img/page/top/home-shop/gohoubi/title-deco-sp.svg") no-repeat center center/contain;
    width: 120.2666666667vw;
    aspect-ratio: 451/156;
    top: -13.3333333333vw;
  }
}
.home-shop.home-shop-gohoubi .home-shop-title img {
  width: 421px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-gohoubi .home-shop-title img {
    width: 65.3333333333vw;
  }
}
.home-shop.home-shop-gohoubi .home-shop-title img {
  width: 411px;
}
@media (max-width: 600px) {
  .home-shop.home-shop-gohoubi .home-shop-title img {
    width: 50.4vw;
  }
}

.home-shop-title {
  text-align: center;
  position: relative;
}
.home-shop-title::before {
  content: "";
  position: absolute;
}
.home-shop-title img {
  display: inline-block;
  height: auto;
}

.home-shop-lead {
  margin-top: 44px;
  font-size: 18px;
  font-weight: 700;
  color: #6E4039;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .home-shop-lead {
    font-size: 2.9333333333vw;
  }
}

.home-shop-list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;
  row-gap: 69px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .home-shop-list {
    max-width: 700px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .home-shop-list {
    column-gap: 4vw;
    row-gap: 10.1333333333vw;
  }
}
.home-shop-list li {
  display: flex;
}

.home-shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.home-shop-img {
  border-radius: 4px;
}

.home-shop-card-title {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 600px) {
  .home-shop-card-title {
    margin-top: 2.6666666667vw;
    gap: 1.3333333333vw;
  }
}
.home-shop-card-title img {
  display: block;
  width: 70px;
  height: auto;
}
@media (max-width: 600px) {
  .home-shop-card-title img {
    width: 9.0666666667vw;
  }
}
.home-shop-card-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #6E4039;
  min-height: 90px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .home-shop-card-title h3 {
    min-height: 13.3333333333vw;
    font-size: 3.7333333333vw;
  }
}

.home-shop-card-name {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 700;
  margin-left: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
}
.home-shop-card-name br {
  display: none;
}
@media (max-width: 600px) {
  .home-shop-card-name br {
    display: block;
  }
}
@media (max-width: 600px) {
  .home-shop-card-name {
    font-size: 3.2vw;
    margin-left: 0;
    min-height: 8vw;
    margin-top: 0.8vw;
  }
}

.home-shop-card-text {
  margin-top: 10px;
  max-width: 323px;
  width: 100%;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .home-shop-card-text {
    font-size: 2.9333333333vw;
    letter-spacing: 0.06em;
    max-width: none;
    margin-left: 0;
    font-size: 2.9333333333vw;
    margin-top: 2.1333333333vw;
  }
}

.home-shop-link {
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .home-shop-link {
    padding-top: 5.3333333333vw;
  }
}
.home-shop-link.home-shop-link-morning a {
  background: #0097B1;
}
.home-shop-link.home-shop-link-lunch a {
  background: #CFA60A;
}
.home-shop-link.home-shop-link-gohoubi a {
  background: #ED7969;
}
.home-shop-link a {
  border-radius: 8px;
  color: #fff;
  margin-inline: auto;
  font-weight: 700;
  letter-spacing: 0;
  max-width: 210px;
  width: 100%;
  height: 54px;
  line-height: 54px;
  display: block;
  text-align: center;
}
@media (max-width: 600px) {
  .home-shop-link a {
    height: 6.4vw;
    line-height: 6.4vw;
    font-size: 2.4vw;
    max-width: 24.8vw;
  }
}

.sns {
  padding-top: 150px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .sns {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}

.sns-content {
  display: flex;
  flex-direction: column;
  gap: 94px;
  max-width: 780px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.sns-block.sns-block-instagram .sns-title img {
  width: 143px;
}
.sns-block.sns-block-tiktok .sns-title img {
  width: 101px;
}

.sns-title {
  text-align: center;
}
.sns-title img {
  display: inline-block;
  height: auto;
}

.sns-link {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  margin-left: auto;
  display: block;
  padding-right: 40px;
  width: fit-content;
  margin-top: -20px;
}
@media (max-width: 640px) {
  .sns-link {
    display: none;
  }
}
.sns-link::before {
  content: "";
  position: absolute;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/page/top/sns/link-arrow.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sns-link-sp {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  margin-left: auto;
  display: block;
  padding-right: 40px;
  width: fit-content;
  display: none;
  margin-top: 30px;
  max-width: fit-content;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .sns-link-sp {
    display: block;
    margin-top: 8vw;
    padding-right: 10.6666666667vw;
  }
}
@media (max-width: 600px) {
  .sns-link-sp {
    font-size: 3.2vw;
  }
}
.sns-link-sp::before {
  content: "";
  position: absolute;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/page/top/sns/link-arrow.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .sns-link-sp::before {
    width: 8vw;
  }
}

.sns-block-list {
  margin-top: 40px;
}

.sb-post-item-wrap {
  padding: 0 !important;
}

.shop {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 213px;
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  .shop {
    padding-top: 20.2666666667vw;
    padding-bottom: 26.6666666667vw;
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.shop.shop-morning .shop-title {
  position: relative;
}
.shop.shop-morning .shop-title::before {
  content: "";
  position: absolute;
  width: 1225px;
  height: auto;
  aspect-ratio: 1225/322;
  background: url("../img/page/template/morning/title-deco-1.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -130px;
}
@media (max-width: 600px) {
  .shop.shop-morning .shop-title::before {
    background: url("../img/page/template/morning/title-deco-sp.svg") no-repeat center center/contain;
    aspect-ratio: 515/150;
    width: 137.3333333333vw;
    left: 59%;
    top: -15.4666666667vw;
  }
}
.shop.shop-morning .shop-title::after {
  content: "";
  position: absolute;
  width: 1019px;
  height: auto;
  aspect-ratio: 1019/224;
  background: url("../img/page/template/morning/title-deco-2.svg") no-repeat center center/contain;
  left: 48%;
  transform: translateX(-50%);
  top: -74px;
}
@media (max-width: 600px) {
  .shop.shop-morning .shop-title::after {
    display: none;
  }
}
.shop.shop-morning .shop-title img {
  width: 550px;
}
@media (max-width: 600px) {
  .shop.shop-morning .shop-title img {
    width: 64.8vw;
  }
}
.shop.shop-lunch .shop-title {
  position: relative;
}
.shop.shop-lunch .shop-title::before {
  content: "";
  position: absolute;
  width: 1276px;
  height: auto;
  aspect-ratio: 1276/306;
  background: url("../img/page/template/lunch/title-deco-1.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -130px;
}
@media (max-width: 600px) {
  .shop.shop-lunch .shop-title::before {
    background: url("../img/page/template/lunch/title-deco-sp.svg") no-repeat center center/contain;
    aspect-ratio: 515/150;
    width: 137.3333333333vw;
    left: 59%;
    top: -15.4666666667vw;
  }
}
.shop.shop-lunch .shop-title::after {
  content: "";
  position: absolute;
  width: 1025px;
  height: auto;
  aspect-ratio: 1019/119;
  background: url("../img/page/template/lunch/title-deco-2.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: 48px;
}
@media (max-width: 600px) {
  .shop.shop-lunch .shop-title::after {
    display: none;
  }
}
.shop.shop-lunch .shop-title img {
  width: 556px;
}
@media (max-width: 600px) {
  .shop.shop-lunch .shop-title img {
    width: 65.3333333333vw;
  }
}
.shop.shop-gohoubi .shop-title {
  position: relative;
}
.shop.shop-gohoubi .shop-title::before {
  content: "";
  position: absolute;
  width: 1276px;
  height: auto;
  aspect-ratio: 1276/290;
  background: url("../img/page/template/gohoubi/title-deco-1.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -130px;
}
@media (max-width: 600px) {
  .shop.shop-gohoubi .shop-title::before {
    background: url("../img/page/template/gohoubi/title-deco-sp.svg") no-repeat center center/contain;
    aspect-ratio: 505/106;
    width: 134.6666666667vw;
    left: 59%;
    top: -15.4666666667vw;
  }
}
.shop.shop-gohoubi .shop-title::after {
  content: "";
  position: absolute;
  width: 926px;
  height: auto;
  aspect-ratio: 926/198;
  background: url("../img/page/template/gohoubi/title-deco-2.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  top: -46px;
}
@media (max-width: 600px) {
  .shop.shop-gohoubi .shop-title::after {
    display: none;
  }
}
.shop.shop-gohoubi .shop-title img {
  width: 550px;
}
@media (max-width: 600px) {
  .shop.shop-gohoubi .shop-title img {
    width: 64.8vw;
  }
}

.shop-title {
  text-align: center;
}
.shop-title img {
  display: inline-block;
}

.shop-lead {
  text-align: center;
  font-size: 20px;
  margin-top: 25px;
  font-weight: 700;
  color: #6E4039;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .shop-lead {
    font-size: 3.2vw;
    margin-top: 5.3333333333vw;
  }
}

.shop-list {
  margin-top: 77px;
  display: flex;
  flex-direction: column;
  gap: 240px;
  max-width: 665px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 600px) {
  .shop-list {
    margin-top: 10.6666666667vw;
    gap: 22.6666666667vw;
    max-width: 80vw;
  }
}
.shop-img img {
  width: 100%;
}

.shop-meta {
  padding-inline: 40px;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .shop-meta {
    margin-top: 3.4666666667vw;
    padding-inline: 2.6666666667vw;
  }
}

.shop-card-title {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 600px) {
  .shop-card-title {
    gap: 2.6666666667vw;
  }
}
.shop-card-title img {
  display: block;
  width: 85px;
  height: auto;
}
@media (max-width: 600px) {
  .shop-card-title img {
    width: 10.4vw;
  }
}
.shop-card-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #6E4039;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .shop-card-title h2 {
    font-size: 5.8666666667vw;
  }
}

.shop-card-name {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-top: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .shop-card-name {
    margin-top: 4.8vw;
    font-size: 3.7333333333vw;
  }
}

.shop-card-text {
  margin-top: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .shop-card-text {
    font-size: 3.2vw;
    line-height: 2;
  }
}

.shop-card-price {
  margin-top: 20px;
  font-weight: 700;
}
.shop-card-price span {
  font-size: 12px;
}

.shop-info {
  margin-top: 42px;
}
@media (max-width: 600px) {
  .shop-info {
    margin-top: 8vw;
  }
}

.shop-info-row {
  display: flex;
  min-height: 55px;
  border-bottom: 1px solid #999999;
}
@media (max-width: 600px) {
  .shop-info-row {
    min-height: 40px;
  }
}
.shop-info-row:first-of-type {
  border-top: 1px solid #999999;
}
.shop-info-row dt {
  flex: 0 0 109px;
  padding-left: 17px;
  background: #CEE6E3;
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 600px) {
  .shop-info-row dt {
    flex: 0 0 20.5333333333vw;
    padding-left: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.shop-info-row dd {
  display: flex;
  align-items: center;
  padding-left: 18px;
  padding-block: 15px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .shop-info-row dd {
    font-size: 3.4666666667vw;
    padding-left: 2.9333333333vw;
  }
}
.shop-info-row dd a {
  overflow-wrap: anywhere;
}

.shop-map {
  margin-top: 85px;
  width: 100%;
  aspect-ratio: 665/414;
  position: relative;
}
@media (max-width: 600px) {
  .shop-map {
    margin-top: 10.4vw;
    aspect-ratio: 300/385;
  }
}
.shop-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shop .shop-title,
.shop .shop-lead {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.shop .shop-title {
  position: relative;
  text-align: center;
}
.shop .shop-title::before, .shop .shop-title::after {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  pointer-events: none;
}
.shop .shop-title.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.shop .shop-title.is-inview + .shop-lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.shop .shop-title.is-inview::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.55s;
}
.shop .shop-title.is-inview::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.75s;
}