@charset "utf-8";
:root {
  --color-secondary: #ff6600;
  --color-white: #fff;
  --color-black: #000;
  --color-pink: #e85298;
  --color-pink-light: #FFCCE4;
  --color-orange: #f8b300;
  --color-blue: #00a7ea;
  --color-blue-light: #A7E6FF;
  --color-yellow: #fff100;
  --color-lightGray: #f7f7f7;
  --color-bg-card: #f6f6f6;
  --font-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-enSans: "Montserrat", sans-serif;
  --font-enSerif: "Libre Caslon Text", serif;
  --font-jaSerif: "Noto Serif JP", serif;
}

.l-header__logo svg {
  transition: all 0.3s;
}
#l-body {
  margin-top: 0;
  padding-bottom: 0;
  font-family: var(--font-base);
}
.is-pages + #l-body {
  margin: 0;
}
#l-body * {
  box-sizing: border-box;
}
#l-body .l-body__content {
  max-width: auto;
  max-width: initial;
  margin-bottom: 0;
  padding: 0;
}
#l-body .l-body__main {
  position: relative;
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  ._pc-only {
    display: none;
  }
}
@media screen and (min-width: 840px) {
  ._sp-only {
    display: none;
  }
}
@media screen and (min-width: 375px) {
  ._sp-sm-only {
    display: none;
  }
}

#l-body .l-body__content span._indent {
  margin: 0 -5px;
}
html[lang="en"] #l-body .l-body__content span._indent,
html[lang="ko"] #l-body .l-body__content span._indent {
  margin: 0;
}

/* ここからコンテンツ */
.page-mv {
  padding: 20.5vw 0;
  display: flex;
  justify-content: center;
  position: relative;
  background: url("../images/bg-title-sp.svg") no-repeat center top / 100%;
}
@media screen and (min-width: 840px) {
  .page-mv {
    margin-top: 110px;
    padding: 0;
    background: url("../images/bg-title.svg") no-repeat center top / 1650px;
  }
}

.page-title {
  max-width: 550px;
  width: 65%;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  .page-title {
    max-width: 318px;
  }
}
.page-title img {
  width: 100%;
  height: auto;
  display: block;
}

.page-leadbox {
  padding-top: 56px;
  text-align: center;
}
.page-leadbox span {
  font-family: var(--font-enSerif);
}
.page-leadbox p {
  padding: 8px 0 48px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-base);
  line-height: 1.8;
}
.page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0 56px;
}
.page-nav li {
  list-style: none;
}
.page-nav a {
  box-sizing: border-box;
  width: 160px;
  height: 40px;
  padding-right: 6px;
  border-radius: 50px;
  border: 1px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--font-enSerif);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
}
.page-nav a:link,
.page-nav a:visited,
.page-nav a:hover,
.page-nav a:visited:hover,
.page-nav a:focus,
.page-nav a:visited:focus {
  color: inherit;
  text-decoration: none;
}
.page-nav span {
  position: relative;
  transform: translateY(1px);
}
.page-nav span::before,
.page-nav span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 12px;
  height: 15px;
  margin: auto;
  background: url("../images/nav-arrow.svg") no-repeat center center / 100% 100%;
  transition: all 0.4s;
}
.page-nav a span::after {
  transform: translateY(-400%);
}
@media (hover: hover) {
  .page-nav a:hover span::before {
    transform: translateY(400%);
  }
  .page-nav a:hover span::after {
    transform: translateY(0);
  }
}
@media screen and (min-width: 840px) {
  .page-leadbox {
    padding: 48px 20px 0;
  }
  .page-leadbox p {
    font-size: 18px;
  }
  .page-nav {
    gap: 20px;
    padding: 20px 0 88px;
  }
  .page-nav a {
    width: 200px;
    height: 52px;
    padding-right: 0;
    font-size: 20px;
  }
  .page-nav span {
    margin-left: -12px;
    transform: translateY(2px);
  }
  .page-nav span::before,
  .page-nav span::after {
    right: -16px;
    height: 14px;
  }
}


.marquee {
  overflow: hidden;
  width: 100%;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.marquee-list {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  margin: 0;
  animation: marquee var(--marquee-duration, 10s) linear infinite;
}
.marquee-item {
  position: relative;
  flex-shrink: 0;
  padding-inline: 8px 20px;
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, transparent calc(50% - 0.75px), var(--color-orange) calc(50% - 0.75px), var(--color-orange) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}
.marquee-item:nth-child(even)::after {
  background: linear-gradient(135deg, transparent calc(50% - 0.75px), var(--color-blue) calc(50% - 0.75px), var(--color-blue) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}
.marquee-item span {
  font-family: var(--font-enSerif);
}
.marquee-item span:nth-child(2) {
  font-family: var(--font-jaSerif);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gourmet-section {
  background: url("../images/bg-line-sp.svg") repeat center -66vw / 100%;
}
.sweets-section {
  background: url("../images/bg-line2-sp.svg") repeat center top / 100%;
}
.gourmet-section::after,
.sweets-section::after {
  content: "";
  display: block;
  clear: both;
}

h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 56px;
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-enSerif);
  line-height: 1;
  text-align: center;
}
.page-leadbox span,
h3 span:first-child {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
}
.page-leadbox span::before,
h3 span:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 12px;
  height: 15px;
  background: url("../images/deco-l.svg") no-repeat center center / 100% 100%;
}
.page-leadbox span::after,
h3 span:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 12px;
  height: 15px;
  transform: rotate(180deg);
  background: url("../images/deco-l.svg") no-repeat center center / 100% 100%;
}
h3 span + span {
  position: relative;
  text-transform: uppercase;
}
h3 span + span::before {
  content: "／";
  position: absolute;
  top: 0;
  left: -1.2em;
  font-size: 0.9em;
}
h3 span + span::after {
  content: "／";
  position: absolute;
  top: 0;
  right: -1.2em;
  font-size: 0.9em;
}
.menu-list {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 56px;
  z-index: 10;
}
.menu-item {
  padding: 90px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.menu-item:first-child {
  padding-top: 70px;
}
@media screen and (min-width: 840px) {
  .gourmet-section {
    background-image: url("../images/bg-line.svg");
    background-size: 1440px;
    background-position-y: -115px;
  }
  .sweets-section {
    background-image: url("../images/bg-line2.svg");
    background-size: 1440px;
    background-position-y: -700px;
  }
  h3 {
    padding-top: 80px;
    font-size: 32px;
  }
  .menu-list {
    padding: 20px 20px 700px;
  }
  .menu-item {
    float: left;
    display: flex;
    width: 50%;
    padding: 90px 2.9% 90px 0;
  }
  .menu-item:first-child {
    padding-top: 90px;
  }
  .menu-item:nth-child(2) {
    margin-top: 190px;
  }
  .menu-item:nth-child(even) {
    float: right;
    padding-right: 0;
    padding-left: 2.9%;
  }
  .menu-item:nth-child(n + 3) {
    padding-top: 10px;
  }
}


.menu-shop {
  position: relative;
  width: 100%;
  max-width: 516px;
}
.menu-shop > p {
  position: absolute;
  top: -22px;
  right: 8px;
  width: 100%;
  text-align: right;
}
.menu-shop > p .menu-no {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-family: var(--font-enSerif);
  font-style: italic;
  line-height: 1;
  text-align: right;
}
.menu-shop > p .menu-no::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10px 0 0 0;
  background: var(--color-white);
  opacity: 0.75;
}
.menu-shop > p .menu-no > span {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 10px;
  font-weight: 400;
}
.menu-shop > p .menu-no .r-2 {
  right: -2px;
}

.menu-shopname {
  width: calc(100% - 16px);
  margin-inline: auto;
  padding-top: 48px;
  font-weight: 500;
  text-align: center;
  border-top: 2px solid var(--color-black);
  background: var(--color-bg-card);
}
.menu-shopname a {
  color: var(--color-black);
  text-decoration: none;
  margin-bottom: 32px;
  display: inline-block;
  transition: all 0.2s;
}
@media (hover: hover) {
  .menu-shopname a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.menu-shopname .-jp {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
}
/* .menu-shopname .-en {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-enSans);
  text-transform: uppercase;
} */
.menu-floor {
  display: inline-block;
  height: 22px;
  padding-inline: 8px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  background: var(--color-white);
  overflow: hidden;
}
@media screen and (min-width: 840px) {
  .menu-shop {
    margin-left: auto;
  }
  .menu-shop > p {
    top: -26px;
    right: 16px;
  }
  .menu-shop > p .menu-no {
    font-size: 32px;
  }
  .menu-shop > p .menu-no::before {
    top: -12px;
  }
  .menu-shop > p .menu-no > span {
    top: -13px;
    font-size: 13px;
  }
  .menu-item:nth-child(even) .menu-shop {
    margin-left: 0;
    margin-right: auto;
  }
  .menu-shopname {
    width: calc(100% - 32px);
  }
  /* .menu-shopname .-jp {
    font-size: 20px;
  } */
  /* .menu-shopname .-en {
    font-size: 14px;
  } */
}

.menu-textbox {
  width: calc(100% - 16px);
  margin: 0 auto;
  padding: 0 16px 20px;
  background: var(--color-bg-card);
}
.menu-info {
  padding-bottom: 20px;
  line-height: 1.8;
}

.menu-name {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding-block: 32px 8px;
  font-size: 20px;
  font-weight: 500;
}
.menu-name span {
  display: inline-block;
  padding-inline: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 50px;
  background: var(--color-yellow);
}
@media screen and (min-width: 840px) {
  .menu-textbox {
    width: calc(100% - 32px);
  }
  .menu-name {
    gap: 10px 15px;
    padding-block: 50px 20px;
    font-size: 24px;
  }
  .menu-name span {
    font-size: 14px;
  }
}

.menu-name .-fs {
  font-size: 16px;
}

.menu-price {
  position: relative;
  padding-bottom: 20px;
  font-family: var(--font-enSans);
  font-size: 16px;
  font-weight: 500;
}
.menu-price ul li::after {
  content: "";
  display: block;
  clear: both;
}
.menu-price ul li > span:first-child {
  float: left;
  line-height: 36px;
}
.menu-price ul li > span + span {
  float: right;
}
/* .menu-price::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px), repeating-linear-gradient(180deg, #000000, #000000 4px, transparent 4px, transparent 8px), repeating-linear-gradient(90deg, #000000, #000000 4px, transparent 4px, transparent 8px), repeating-linear-gradient(180deg, #000000, #000000 4px, transparent 4px, transparent 8px);
  background-position: left top, right top, left -2px bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, calc(100% * 8) 2px, 2px 100%;
} */

.menu-price .-small,
.menu-price .-tax {
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
}
.menu-price .-small {
  font-size: 14px;
}
.menu-price .-tax {
  margin-left: -0.2em;
}

.menu-point {
  font-size: 18px;
  font-family: var(--font-jaSerif);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.menu-detail {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
.menu-detail span{
  display: block;
  margin-top: calc(16px * 1.8);
  font-size: 14px;
}

@media screen and (min-width: 840px) {
  .menu-price {
    font-size: 20px;
  }
  .menu-price .-tax {
    font-size: 14px;
  }
  .menu-point {
    font-size: 20px;
  }
}

.menu-imglink {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  position: relative;
}
.menu-imglink::before,
.menu-imglink::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.menu-image-outer {
  position: relative;
}
.menu-image-outer .limited {
  position: absolute;
  top: -5.6em;
  right: 30px;
  z-index: 10;
  height: fit-content;
  padding-inline: 15px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 50px;
  background: var(--color-pink);
}
.menu-image-outer .limited::before,
.menu-image-outer .limited::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 4px;
  height: 4px;
  margin: auto;
  border-radius: 50%;
  background: var(--color-pink-light);
}
.menu-image-outer .limited.time::before,
.menu-image-outer .limited.time::after {
  background: var(--color-blue-light);
}
.menu-image-outer .limited::before {
  inset: 6px 0 auto 0;
}
.menu-image-outer .limited::after {
  inset: auto 0 6px 0;
}

.menu-image-outer .limited.time {
  top: -1.9em;
  background: var(--color-blue);
}
.menu-image {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 7px solid var(--color-yellow);
}
.menu-item:nth-child(even) .menu-image {
  border-bottom-color: var(--color-blue);
}
.menu-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}
@media (hover: hover) {
  .menu-imglink:hover .menu-image img {
    transform: scale(1.1);
  }
}

.menu-note {
  padding: 72px 0;
}
.menu-note-list {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.menu-note-item {
  font-size: 13px;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 840px) {
  .menu-image-outer .limited {
    right: 40px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 20px;
  }
  .menu-note-list {
    width: fit-content;
    padding: 0 20px;
  }
  .menu-note-item {
    line-height: 1.8;
  }
}

/*-----------------------------------
pagetop
-----------------------------------*/
.l-pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 100;
  width: fit-content;
  height: 36px;
  font-size: 12px;
  color: var(--color-black);
  transition: opacity 0.2s;
}
@media screen and (min-width: 769px) {
  .l-pagetop {
    right: 40px;
    height: 36px;
  }
}
.l-pagetop span {
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
}
.l-pagetop span::before,
.l-pagetop span::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 13px;
  height: 16px;
  margin: 0 auto;
  background: url("../images/btn-arrow.svg") no-repeat center center / 100% 100%;
  transition: all 0.4s;
}
.l-pagetop span::before {
  top: 0;
}
.l-pagetop span::after {
  top: 200%;
}

@media screen and (min-width: 769px) {
  .l-pagetop::after {
    width: 18px;
    height: 18px;
  }
}

@media (hover: hover) {
  .l-pagetop:hover span::before {
    top: -200%;
  }
  .l-pagetop:hover span::after {
    top: 0;
  }
}

.l-pagetop.-fixed {
  position: absolute;
  bottom: 30px;
}
