@charset "UTF-8"; /**/
/*
## メニュー
*/
.menu-box {
  margin-bottom: var(--m-l);
  border-radius: var(--m-xxs);
  background: #fff;
  box-shadow: 0 30px 60px color-mix(in srgb, currentcolor 10%, transparent);
  color: #0668ae;
  background: color-mix(in srgb, currentcolor 15%, transparent);
  padding: clamp(1.2rem, 4vw, 5rem);
}

.menu-box .wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 3rem;
  position: relative;
}

.menu-img {
  grid-column: 1 / 2;
  aspect-ratio: 5 / 6;
  z-index: 1;
  margin: calc(clamp(1.2rem, 4vw, 5rem) * -1);
  margin-right: initial;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.contents .menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
  border-top-right-radius: initial;
}

.menu-img figcaption {
  position: absolute;
  top: 5%;
  left: 5%;
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
  transform: rotate(-7deg);
  font-family: var(--f-hand);
  text-shadow: 0 0 3px #fff;
}

.menu-img figcaption::before, .menu-img figcaption::after {
  content: "";
  width: 1px;
  align-self: stretch;
  transform-origin: left bottom;
  background-color: currentColor;
  margin-right: 5px;
  opacity: 0.5;
}

.menu-img figcaption::before {
  transform: rotate(-25deg);
}

.menu-img figcaption::after {
  transform: rotate(25deg);
}

.menu-intro {
  grid-column: 2 / -1;
  grid-row: 1 / 2;
  z-index: 2;
  position: relative;
}

.balloon {
  position: relative;
  padding: 0.3rem 0.6rem;
  border: 2px solid currentColor;
  font-size: var(--f-s);
  font-weight: bold;
  line-height: 1.5;
  background: #fff;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.balloon::before, .balloon:after {
  position: absolute;
  transform: rotate(-45deg);
  content: "";
}

.balloon::before {
  border: 7px solid transparent;
  border-bottom-color: currentColor;
  border-left-color: currentColor;
  border-radius: 0 0 0 3px;
  bottom: -7px;
  left: 30px;
}

.balloon::after {
  border: 5px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  border-radius: 0 0 0 2px;
  bottom: -5px;
  left: 32px;
}

.title.menu-title {
  font-size: var(--f-xl);
  font-weight: var(--w-b);
  line-height: 1.3;
}

.title.menu-title small {
  display: block;
  /* font-weight: normal; */
}

.menu-box .catch {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  line-height: 1.8;
  margin: var(--m-l) 0 var(--m-r);
}

.recommend {
  margin-bottom: var(--m-r);
  margin-top: var(--m-l);
}

.recommend dt {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: var(--m-s);
}

.recommend .list {
  background: rgb(255 255 255 / 50%);
  padding: 1rem;
  border-radius: 0.5rem;
  padding-bottom: var(--m-r);
  gap: var(--m-xs);
  display: flex;
  flex-direction: column;
  font-size: var(--f-s);
}

.recommend .list li {
  line-height: 1.3;
  display: flex;
  align-items: baseline;
}

.menu-detail {
  grid-column: 2 / -1;
  grid-row: 2 / 3;
}

.section-menu .def {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  width: fit-content;
  border-left: 1px solid currentColor;
  padding-left: var(--m-s);
  gap: 1rem 1.5rem;
  margin-top: var(--m-r);
  line-height: 1;
  width: 100%;
  margin-left: var(--m-xxs);
  margin-bottom: var(--m-l);
}

.section-menu .def.block {
  display: block;
}

.section-menu .def dt {
  font-weight: var(--w-b);
}

.section-menu .def small {
  vertical-align: bottom;
}

.menu-detail .lead {
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 87, 205, 0.3);
  text-decoration-thickness: 0.4em;
  text-underline-offset: -0.1em;
  text-decoration-skip-ink: none;
  display: block;
  line-height: 1.6;
  font-weight: var(--w-b);
  margin-bottom: var(--m-l);
  margin-top: var(--m-xs);
  text-align: center;
}

.voice {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.voice figure {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-basis: 150px;
}

.voice img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.voice .text.balloon {
  border: 1px solid currentColor;
  border-radius: 0.5rem;
}

.voice .text.balloon:before, .voice .text.balloon:after {
  transform: rotate(45deg);
}

.voice .text.balloon::before {
  border: 5px solid transparent;
  border-bottom-color: currentColor;
  border-left-color: currentColor;
  border-radius: 0 0 0 2px;
  bottom: 23px;
  left: -5px;
}

.voice .text.balloon::after {
  border: 4px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  border-radius: 0 0 0 1px;
  bottom: 24px;
  left: -4px;
}

.note {
  grid-column: 1 / -1;
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
}

.menu-closing {
  grid-column: 2 / -1;
  grid-row: 3 / 4;
  margin-bottom: var(--m-m);
}

.menu-closing figure {
  margin-bottom: var(--m-r);
}

.menu-closing figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 2.5;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
  border-radius: var(--m-xxs);
}

.menu-closing .closing-text p {
  display: block;
  font-size: var(--f-m);
  font-weight: var(--w-b);
  line-height: 1.5;
  position: relative;
  text-align: center;
}

.u-button {
  margin-top: 3rem;
}

.section-menu .box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-radius: var(--m-xs);
  margin-bottom: var(--m-l);
  align-items: flex-start;
}

.section-menu .box figure {
  grid-column: span 7;
  aspect-ratio: 6 / 3;
  overflow: hidden;
}

.section-open figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-open .text_box {
  grid-column: span 5;
}

.section-menu .menu-box:nth-child(1) {
  color: #D8669B;
}

.section-menu .menu-box:nth-child(2) {
  color: #DB669B;
}

.section-menu .menu-box:nth-child(3) {
  color: #905CAB;
}

.section-menu .menu-box:nth-child(4) {
  color: #119a76;
}

.section-menu .box .text_box {
  flex: 1;
}

.section-menu .box .text_box h3.title {
  font-weight: var(--w-b);
  font-size: var(--f-l);
  line-height: 1.3;
  border: 2px solid currentColor;
  padding: 0.4rem 0.7rem;
  width: fit-content;
  background: #fff;
}

.section-menu .box .text_box h5.title {
  font-weight: var(--w-b);
  margin: var(--m-m) 0 var(--m-xs);
}

.section-menu .box .text_box .list {
  font-size: var(--f-s);
  margin: var(--m-xs) 0;
}

.section-menu .box .text_box .list li: :before {
  content: "\e187";
  font-family: var(--f-icon);
  margin: 0 0.5rem;
  vertical-align: bottom;
}

.section-menu .u-button {
  background-color: currentColor;
  color: currentColor;
  margin-top: var(--m-r);
}

.section-menu .u-button strong {
  color: #fff;
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-weight: normal;
}

.section-menu .u-button:hover strong {
  color: currentColor;
}

.menu-note {
  text-decoration-line: underline;
  text-decoration-color: rgb(255 209 87 / 30%);
  text-decoration-thickness: 0.3em;
  text-underline-offset: -0.1em;
  text-decoration-skip-ink: none;
  text-align: center;
  margin: 0 auto;
  font-size: var(--f-r);
  grid-column: -1 / 1;
}

.menu-note .title {
  font-size: var(--f-l);
  font-weight: var(--w-b);
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
  .menu-box .wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .menu-img {
    margin-right: calc(clamp(1.2rem, 4vw, 5rem) * -1);
  }

  .contents .menu-img img {
    border-top-right-radius: var(--m-xxs);
  }

  .menu-intro {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0;
  }

  .menu-detail {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .section-menu .def dd small {
    display: block;
    line-height: 2;
  }

  .voice {
    flex-direction: column;
    text-align: center;
  }

  .voice figure {
    order: 1;
  }

  .voice .text.balloon::before, .voice .text.balloon::after {
    transform: translateX(-50%) rotate(-45deg);
    left: 50%;
    top: calc(100% - 4px);
  }

  .menu-closing {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .menu-closing figure img {
    aspect-ratio: 4 / 3;
  }

  .note {
    grid-column: 1 / -1;
    font-size: 1em;
  }

  .section-menu .box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-menu .box figure {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .section-menu .box .text_box h3.title {
    font-size: 1.2rem;
  }
}
