*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #2f2a24;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.section-wave {
  position: absolute;
  display: block;
  width: 980px;
  height: 436px;
  opacity: var(--section-wave-opacity, 1);
  pointer-events: none;
  z-index: 1;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-wave__path {
  transform-box: fill-box;
}

.section-wave--bottom-left {
  left: -130px;
  bottom: -70px;
  --section-wave-opacity: 0.72;
  --section-wave-path-shift-x: -270px;
  --section-wave-path-scale-x: 1.36;
}

.section-wave--bottom-left svg {
  transform: rotate(180deg);
  transform-origin: center;
}

.section-wave--bottom-left .section-wave__path {
  transform-origin: left center;
  transform: translateX(var(--section-wave-path-shift-x)) scaleX(var(--section-wave-path-scale-x));
}

.section-wave--top-right {
  top: -70px;
  right: -90px;
}

.top-visual {
  position: relative;
  height: 690px;
  min-height: 690px;
  background: #ffffff;
  overflow: hidden;
}

.top-visual__pink-fixed {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.top-visual__pink-shape {
  width: 100%;
  height: 100%;
}

.top-visual__pink-shape path {
  fill: #d74f75;
}

@media (min-width: 1200px) {
  .top-visual__pink-fixed {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1200px;
    height: 100%;
    transform: translateX(-50%);
  }

  .top-visual::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(50% + 600px);
    background: #d74f75;
    z-index: 0;
    pointer-events: none;
  }
}

.sec-header {
  position: relative;
  height: 65px;
  background: transparent;
  z-index: 20;
}

.sec-header__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 65px;
  padding: 8px 0 6px;
}

.sec-header__brand {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #121212;
  flex-shrink: 0;
}

.sec-header__brand a {
  display: inline-block;
}

.sec-header__brand-sub {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.1;
  color: #3f3f3f;
}

.sec-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}

.sec-header__toggle {
  display: none;
}

.sec-header__menu,
.sec-header__sns,
.sec-header__lang {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 30px;
}

.sec-header__menu a,
.sec-header__sns a,
.sec-header__lang a {
  font-size: 13px;
  white-space: nowrap;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0d0d0d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sec-header__lang {
  margin-left: 4px;
  gap: 6px;
}

.sec-header__lang li + li::before {
  content: "/";
  margin-right: 6px;
  color: rgba(13, 13, 13, 0.45);
}

.sec-header__lang a {
  opacity: 0.52;
  transition: opacity 0.2s ease;
}

.sec-header__lang a:hover {
  opacity: 1;
}

.sec-header__lang a.is-current {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  pointer-events: none;
}

.sec-header__icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.sec-header__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0d0d0d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sec-hero {
  position: relative;
  min-height: calc(770px - 86px);
  background: transparent;
  z-index: 10;
}

.sec-hero::before {
  content: none;
}

.sec-hero__inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
}

.sec-hero__copy {
  position: absolute;
  left: 0;
  top: 126px;
  width: min(57%, 700px);
  color: #222222;
}

.sec-hero__headline {
  margin: 0 0 50px;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.sec-hero__logo-wrap {
  text-align: center;
  margin-bottom: 0;
}

.sec-hero__logo {
  width: 230px;
  margin: 0 auto;
}

.sec-hero__logo-sub {
  margin: 4px 0 0;
  font-size: 34px;
  line-height: 1;
}

.sec-hero__since {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.sec-hero__lead {
  margin: 50px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #3a3a3a;
}

.sec-hero__visual {
  position: absolute;
  right: 26px;
  bottom: 58px;
  width: min(42%, 500px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 4;
}

.sec-hero__status {
  position: absolute;
  top: -66px;
  left: 50%;
  margin: 0;
  display: inline-block;
  width: max-content;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow:
    2px 0 0 #d74f75,
    -2px 0 0 #d74f75,
    0 2px 0 #d74f75,
    0 -2px 0 #d74f75,
    1.4px 1.4px 0 #d74f75,
    -1.4px 1.4px 0 #d74f75,
    1.4px -1.4px 0 #d74f75,
    -1.4px -1.4px 0 #d74f75;
  transform: translateX(-50%) rotate(-7deg);
  z-index: 5;
}

.sec-hero__visual img {
  width: min(100%, 390px);
  position: relative;
  z-index: 4;
}

@media (max-width: 1120px) {
  .sec-hero__copy {
    top: 130px;
    width: min(56%, 620px);
  }

  .sec-hero__logo {
    width: 320px;
  }

  .sec-hero__logo-sub {
    font-size: 30px;
  }

  .sec-hero__since {
    font-size: 13px;
  }

  .sec-hero__lead {
    font-size: 13px;
  }

  .sec-hero__status {
    font-size: 19px;
    top: -70px;
  }

  .sec-hero__visual img {
    width: min(100%, 360px);
  }
}

@media (max-width: 900px) {
  .top-visual {
    height: auto;
    min-height: 0;
  }

  .sec-header {
    z-index: 40;
  }

  .sec-header__inner {
    align-items: center;
    min-height: 65px;
    padding-top: 8px;
    padding-bottom: 6px;
  }

  .sec-header__brand {
    font-size: 22px;
  }

  .sec-header__brand-sub {
    font-size: 9px;
  }

  .sec-header__toggle {
    margin-left: auto;
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  .sec-header__toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentcolor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .sec-header__nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(247, 241, 232, 0.85);
    border-top: 1px solid #ddcfbc;
    border-bottom: 1px solid #ddcfbc;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  }

  .sec-header.is-open .sec-header__nav {
    display: flex;
  }

  .sec-header__menu,
  .sec-header__sns,
  .sec-header__lang {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .sec-header__sns {
    padding-top: 10px;
    border-top: 1px solid #ddcfbc;
  }

  .sec-header__lang {
    margin-left: 0;
    gap: 6px;
  }

  .sec-header__lang li + li::before {
    margin-right: 6px;
  }

  .sec-header__menu a,
  .sec-header__sns a,
  .sec-header__lang a {
    font-size: 13px;
  }

  .sec-header.is-open .sec-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .sec-header.is-open .sec-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .sec-header.is-open .sec-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sec-hero {
    min-height: 640px;
  }

  .sec-hero__copy {
    position: relative;
    top: auto;
    width: min(86%, 560px);
    padding-top: 24px;
  }

  .sec-hero__logo {
    width: 230px;
  }

  .sec-hero__logo-sub {
    font-size: 24px;
  }

  .sec-hero__since {
    font-size: 14px;
    margin-top: 12px;
  }

  .sec-hero__lead {
    font-size: 13px;
    line-height: 1.7;
  }

  .sec-hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 36px;
  }

  .sec-hero__status {
    position: static;
    white-space: normal;
    margin: 0 0 8px;
    text-align: center;
    font-size: 19px;
    transform: rotate(-6deg);
  }
}

@media (max-width: 560px) {
  .sec-header__inner {
    gap: 8px;
  }

  .sec-header__brand {
    font-size: 22px;
  }

  .sec-header__brand-sub {
    font-size: 9px;
  }

  .sec-hero {
    min-height: 590px;
  }

  .sec-hero__copy {
    width: 100%;
  }

  .sec-hero__logo-sub {
    font-size: 20px;
  }

  .sec-hero__since {
    font-size: 14px;
  }

  .sec-hero__lead {
    font-size: 12px;
    line-height: 1.7;
  }

  .sec-hero__status {
    font-size: 19px;
  }

  .sec-hero__visual img {
    width: min(96%, 340px);
  }
}

.section-heading {
  margin: 0 auto 100px;
  text-align: center;
}

.section-heading__sub {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e45f84;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #101010;
}

.section-heading--light .section-heading__title {
  color: #ffffff;
}

.section-heading--light .section-heading__sub {
  color: #e45f84;
}

.sec-about {
  position: relative;
  overflow: hidden;
  background: #f4efe8;
  padding: 170px 0 150px;
}

.sec-about .container {
  position: relative;
  z-index: 2;
}

.sec-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.sec-about__image-wrap {
  margin: 0;
}

.sec-about__image-wrap img {
  display: block;
  width: 100%;
  border-radius: 48px;
}

.sec-about__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #333333;
}

.sec-about__body p + p {
  margin-top: 20px;
}

.sec-about__body .sec-about__tags {
  margin-top: 22px;
  color: #d74f75;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.sec-about__cheers {
  position: absolute;
  left: 12px;
  bottom: -100px;
  width: 54px;
}

.sec-menu {
  background: #ffffff;
  padding: 170px 0;
}

.sec-menu .section-heading {
  margin-bottom: 80px;
}

.sec-menu__lead {
  margin: 0 auto 80px;
  max-width: 760px;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
  color: #4a4a4a;
}

.sec-menu__boards {
  display: grid;
  gap: 56px;
}

.menu-board {
  margin: 0 auto;
  width: min(100%, 1020px);
  padding: 38px 62px 28px;
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 22%) 0%, rgb(0 0 0 / 18%) 100%),
    url("/assets/img/review-card-base.png") center / cover no-repeat;
  font-family: "Chalkboard SE", "Comic Sans MS", "Hiragino Maru Gothic ProN", "Zen Kaku Gothic New", sans-serif;
}

.menu-board__title {
  margin: 20px 0 0;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.menu-board__title::after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin: 12px auto 0;
  background: rgb(255 255 255 / 74%);
  border-radius: 999px;
}

.menu-board__desc {
  margin: 35px 0 50px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: rgb(255 255 255 / 86%);
}

.menu-board__content {
  margin-top: 26px;
  display: grid;
  align-items: center;
  gap: 32px;
}

.menu-board__content--drinks {
  grid-template-columns: minmax(0, 1fr) 198px;
}

.menu-board__content--foods {
  grid-template-columns: 230px minmax(0, 1fr);
}

.menu-board__menu-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
}

.menu-board__item {
  margin: 0 0 25px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
}

.menu-board__item-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.menu-board__item-meta {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: #e48ca7;
  font-weight: 700;
  grid-column: 1 / 2;
}

.menu-board__item-price {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
}

.menu-board__illust {
  display: block;
  width: 100%;
  height: auto;
}

.menu-board__illust--right {
  justify-self: end;
}

.menu-board__illust--left {
  justify-self: start;
}

.menu-board__note {
  margin: 22px 0 20px;
  text-align: center;
  font-size: 10px;
  line-height: 1.55;
  color: rgb(255 255 255 / 68%);
}

.sec-staff {
  position: relative;
  overflow: hidden;
  background: #f4efe8;
  padding: 170px 0;
}

.sec-staff .container {
  position: relative;
  z-index: 3;
}

.sec-staff .section-heading {
  margin-bottom: 96px;
}

.section-wave--staff-top {
  right: -120px;
  top: -74px;
  opacity: 0.78;
}

.section-wave--staff-bottom {
  left: -170px;
  bottom: -94px;
  --section-wave-opacity: 0.72;
  --section-wave-path-shift-x: -250px;
  --section-wave-path-scale-x: 1.3;
}

.sec-staff__grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 500px);
  justify-content: center;
  align-items: center;
  gap: 68px;
  max-width: 998px;
  margin: 0 auto;
}

.staff-profile__visual {
  position: relative;
  width: min(100%, 430px);
  margin: 0;
}

.staff-profile__image {
  display: block;
  width: 100%;
  height: auto;
}

.staff-profile__badge {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px 6px;
  background: #ffffff;
  color: #e45f78;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 700;
  box-shadow: 0 18px 30px rgb(112 78 50 / 8%);
}

.staff-profile__content {
  max-width: 500px;
}

.staff-profile__name {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.staff-profile__text {
  margin: 18px 0 0;
  color: #262626;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
  text-wrap: pretty;
}

.sec-inside {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 170px 0 150px;
}

.sec-inside .section-heading {
  margin-bottom: 80px;
}

.inside-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.inside-gallery__track {
  --inside-gallery-item-width: 286px;
  --inside-gallery-item-height: 370px;
  --inside-gallery-gap: 16px;
  --inside-gallery-loop-count: 10;
  display: flex;
  gap: var(--inside-gallery-gap);
  width: max-content;
  padding: 0 10px;
  margin: 0;
  list-style: none;
  animation: inside-gallery-slide 52s linear infinite;
  will-change: transform;
}

.inside-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  flex: 0 0 var(--inside-gallery-item-width);
  width: var(--inside-gallery-item-width);
  height: var(--inside-gallery-item-height);
}

.inside-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes inside-gallery-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--inside-gallery-loop-count) * (var(--inside-gallery-item-width) + var(--inside-gallery-gap))));
  }
}

@media (prefers-reduced-motion: reduce) {
  .inside-gallery__track {
    animation: none;
    transform: translateX(0);
  }
}

.sec-inside__stars {
  position: absolute;
  right: 52px;
  bottom: 32px;
  width: 242px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.sec-voices {
  position: relative;
  overflow: hidden;
  background: #f4f2ef;
  padding: 170px 0 150px;
}

.sec-voices .container {
  position: relative;
  z-index: 3;
}

.sec-voices .section-heading {
  margin-bottom: 80px;
}

.section-wave--voices-bottom {
  left: -240px;
  bottom: -146px;
  --section-wave-opacity: 0.66;
  --section-wave-path-shift-x: -242px;
  --section-wave-path-scale-x: 1.24;
}

.sec-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.voice-card img {
  display: block;
  width: 100%;
  height: auto;
}

.sec-access {
  position: relative;
  background: #ffffff;
  padding: 170px 0 150px;
}

.sec-access .section-heading {
  margin-bottom: 80px;
}

.sec-access__label {
  margin: 0 0 24px;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #303030;
  font-weight: 700;
}

.sec-access__grid {
  display: grid;
}

.sec-access__grid--info {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 34px;
}

.sec-access__block--route {
  margin-top: 48px;
}

.sec-access__grid--route {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 46px;
}

.access-item {
  margin: 0;
}

.access-item dt {
  margin: 0 0 6px;
  color: #c88b52;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.access-item dd {
  margin: 0;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.access-item__tel {
  color: inherit;
  text-decoration: none;
}

.access-item__tel:hover {
  text-decoration: underline;
}

.sec-access__map {
  margin: 60px 0 0;
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
}

.sec-access__map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 530;
  border: 0;
}

.sec-first-visit {
  position: relative;
  overflow: hidden;
  background: #f2e9df;
  padding: 100px 0 84px;
}

.sec-first-visit .container {
  position: relative;
  z-index: 2;
}

.sec-first-visit__title {
  margin: 0;
  text-align: center;
  color: #0f0f0f;
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.sec-first-visit__intro {
  position: relative;
  width: 100%;
  min-height: 170px;
}

.sec-first-visit__body {
  margin: 58px 0 0;
  width: 100%;
  padding-right: 300px;
  color: #3f5648;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

.sec-first-visit__body p {
  margin: 0;
}

.sec-first-visit__body p + p {
  margin-top: 26px;
}

.sec-first-visit__music {
  margin: 52px 0 0;
  width: 100%;
  color: #141414;
}

.sec-first-visit__music-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.sec-first-visit__music-link {
  margin: 18px 0 0;
  color: #3f5648;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.sec-first-visit__illust {
  position: absolute;
  right: 76px;
  top: 0;
  width: 216px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.site-footer {
  background: #e7eee9;
}

.site-footer__main {
  padding: 38px 0 36px;
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__brand {
  min-width: 320px;
}

.site-footer__title {
  margin: 0;
  color: #101010;
  font-size:  18px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.site-footer__lead {
  margin: 14px 0 0;
  color: #1f1f1f;
  font-size:  14px;
  line-height: 1.5;
  font-weight: 500;
}

.site-footer__sns {
  margin: 0 0 3px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__sns a,
.site-footer__sns-text {
  color: #0f0f0f;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.site-footer__icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.site-footer__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0f0f0f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__copyright {
  margin: 0;
  padding: 9px 16px 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  background: #da516f;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .section-heading {
    margin-bottom: 64px;
  }

  .section-heading__sub {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .section-heading__title {
    font-size: 44px;
  }

  .sec-about {
    padding-top: 90px;
    padding-bottom: 88px;
  }

  .sec-about__grid {
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    gap: 42px;
  }

  .sec-about__image-wrap img {
    border-radius: 38px;
  }

  .sec-about__body p {
    font-size: 15px;
  }

  .sec-menu {
    padding: 140px 0;
  }

  .sec-menu .section-heading {
    margin-bottom: 68px;
  }

  .sec-menu__lead {
    margin-bottom: 68px;
  }

  .menu-board {
    width: min(100%, 980px);
    padding: 34px 46px 26px;
  }

  .menu-board__title {
    font-size: 40px;
  }

  .menu-board__item-name {
    font-size: 20px;
  }

  .menu-board__item-price {
    font-size: 18px;
  }

  .sec-staff {
    padding: 140px 0;
  }

  .sec-staff .section-heading {
    margin-bottom: 76px;
  }

  .sec-staff__grid {
    grid-template-columns: minmax(300px, 392px) minmax(0, 460px);
    gap: 52px;
  }

  .staff-profile__visual {
    width: min(100%, 396px);
  }

  .staff-profile__badge {
    font-size: 18px;
  }

  .staff-profile__name {
    font-size: 23px;
  }

  .staff-profile__text {
    font-size: 15px;
  }

  .sec-inside {
    padding: 140px 0 128px;
  }

  .sec-inside .section-heading {
    margin-bottom: 64px;
  }

  .inside-gallery__track {
    --inside-gallery-item-width: 252px;
    --inside-gallery-item-height: 330px;
    --inside-gallery-gap: 14px;
  }

  .sec-inside__stars {
    right: 36px;
    bottom: 26px;
    width: 216px;
  }

  .sec-voices {
    padding: 140px 0 130px;
  }

  .sec-voices .section-heading {
    margin-bottom: 64px;
  }

  .sec-voices__grid {
    gap: 14px;
  }

  .sec-access {
    padding: 140px 0 128px;
  }

  .sec-access .section-heading {
    margin-bottom: 64px;
  }

  .sec-access__label {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .sec-access__grid--info {
    gap: 20px 24px;
  }

  .sec-access__grid--route {
    gap: 20px 26px;
  }

  .access-item dt {
    font-size: 18px;
  }

  .access-item dd {
    font-size: 13px;
  }

  .sec-access__map {
    margin-top: 50px;
  }

  .sec-first-visit {
    padding: 90px 0 74px;
  }

  .sec-first-visit__title {
    font-size: 44px;
  }

  .sec-first-visit__intro {
    width: 100%;
    min-height: 206px;
  }

  .sec-first-visit__body {
    margin-top: 48px;
    width: 100%;
    padding-right: 250px;
    font-size: 15px;
  }

  .sec-first-visit__music {
    margin-top: 40px;
    width: 100%;
  }

  .sec-first-visit__music-title {
    font-size: 24px;
  }

  .sec-first-visit__music-link {
    font-size: 17px;
  }

  .sec-first-visit__illust {
    right: 44px;
    top: 0;
    width: 194px;
  }

  .site-footer__sns {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .section-wave {
    width: 760px;
    height: 338px;
  }

  .section-wave--bottom-left {
    left: -150px;
    bottom: -84px;
    --section-wave-path-shift-x: -240px;
    --section-wave-path-scale-x: 1.3;
  }

  .section-wave--top-right {
    right: -130px;
    top: -84px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading__sub {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .section-heading__title {
    font-size: 34px;
  }

  .sec-about {
    padding: 68px 0 72px;
  }

  .sec-about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec-about__image-wrap {
    width: 100%;
    max-width: 540px;
    justify-self: center;
  }

  .sec-about__body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .sec-about__body p + p {
    margin-top: 16px;
  }

  .sec-about__body .sec-about__tags {
    margin-top: 18px;
    font-size: 11px;
  }

  .sec-about__cheers {
    left: 8px;
    bottom: -34px;
    width: 46px;
  }

  .sec-menu {
    padding: 110px 0;
  }

  .sec-menu .section-heading {
    margin-bottom: 54px;
  }

  .sec-menu__lead {
    margin-bottom: 54px;
    font-size: 12px;
    line-height: 1.8;
  }

  .sec-menu__boards {
    gap: 34px;
  }

  .menu-board {
    border-radius: 26px;
    padding: 30px 24px 22px;
  }

  .menu-board__title {
    font-size: 34px;
  }

  .menu-board__title::after {
    width: 108px;
    margin-top: 10px;
  }

  .menu-board__desc {
    font-size: 12px;
    margin-top: 14px;
  }

  .menu-board__content {
    margin-top: 20px;
    gap: 18px;
  }

  .menu-board__content--drinks,
  .menu-board__content--foods {
    grid-template-columns: 1fr;
  }

  .menu-board__content--drinks .menu-board__illust--right {
    order: -1;
  }

  .menu-board__menu-grid {
    gap: 10px 18px;
  }

  .menu-board__item-name {
    font-size: 20px;
  }

  .menu-board__item-meta {
    font-size: 11px;
  }

  .menu-board__item-price {
    font-size: 18px;
  }

  .menu-board__illust {
    width: min(220px, 70%);
    margin-inline: auto;
    margin-bottom: 10px;
  }

  .menu-board__note {
    margin-top: 16px;
  }

  .sec-staff {
    padding: 110px 0;
  }

  .sec-staff .section-heading {
    margin-bottom: 50px;
  }

  .section-wave--staff-top {
    right: -170px;
    top: -98px;
  }

  .section-wave--staff-bottom {
    left: -230px;
    bottom: -126px;
    --section-wave-path-shift-x: -220px;
    --section-wave-path-scale-x: 1.24;
  }

  .sec-staff__grid {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 34px;
  }

  .staff-profile__visual {
    width: min(100%, 340px);
  }

  .staff-profile__badge {
    right: -2px;
    bottom: 8px;
    min-height: 38px;
    padding: 7px 14px 5px;
    font-size: 16px;
  }

  .staff-profile__name {
    font-size: 22px;
  }

  .staff-profile__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.85;
  }

  .sec-inside {
    padding: 110px 0 98px;
  }

  .sec-inside .section-heading {
    margin-bottom: 50px;
  }

  .inside-gallery__track {
    --inside-gallery-item-width: 228px;
    --inside-gallery-item-height: 300px;
    --inside-gallery-gap: 12px;
  }

  .sec-inside__stars {
    right: 24px;
    bottom: 20px;
    width: 190px;
  }

  .sec-voices {
    padding: 110px 0 96px;
  }

  .sec-voices .section-heading {
    margin-bottom: 50px;
  }

  .section-wave--voices-bottom {
    left: -270px;
    bottom: -152px;
    --section-wave-path-shift-x: -228px;
    --section-wave-path-scale-x: 1.2;
  }

  .sec-voices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sec-access {
    padding: 110px 0 96px;
  }

  .sec-access .section-heading {
    margin-bottom: 50px;
  }

  .sec-access__label {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .sec-access__grid--info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .sec-access__block--route {
    margin-top: 36px;
  }

  .sec-access__grid--route {
    gap: 16px 20px;
  }

  .access-item dt {
    font-size: 17px;
  }

  .access-item dd {
    font-size: 12px;
    line-height: 1.75;
  }

  .sec-access__map {
    margin-top: 42px;
  }

  .sec-first-visit {
    padding: 74px 0 64px;
  }

  .sec-first-visit__title {
    font-size: 34px;
  }

  .sec-first-visit__intro {
    width: 100%;
    min-height: 176px;
  }

  .sec-first-visit__body {
    margin-top: 38px;
    width: 100%;
    padding-right: 210px;
    font-size: 14px;
    line-height: 1.8;
  }

  .sec-first-visit__music {
    margin-top: 30px;
    width: 100%;
  }

  .sec-first-visit__music-title {
    font-size: 21px;
  }

  .sec-first-visit__music-link {
    font-size: 16px;
  }

  .sec-first-visit__body p + p {
    margin-top: 18px;
  }

  .sec-first-visit__illust {
    right: 22px;
    top: 0;
    width: 164px;
  }

  .site-footer__main {
    padding: 30px 0 28px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer__brand {
    min-width: 0;
  }

  .site-footer__lead {
    margin-top: 10px;
  }

  .site-footer__sns {
    gap: 16px;
    flex-wrap: wrap;
  }

}

@media (max-width: 560px) {
  .section-wave {
    width: 600px;
    height: 267px;
  }

  .section-wave--bottom-left {
    left: -130px;
    bottom: -72px;
    --section-wave-path-shift-x: -210px;
    --section-wave-path-scale-x: 1.24;
  }

  .section-wave--top-right {
    right: -120px;
    top: -72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading__sub {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .section-heading__title {
    font-size: 30px;
  }

  .sec-about {
    padding: 58px 0 60px;
  }

  .sec-about__grid {
    gap: 24px;
  }

  .sec-about__image-wrap img {
    border-radius: 30px;
  }

  .sec-about__body p {
    font-size: 13px;
    line-height: 1.85;
  }

  .sec-about__body .sec-about__tags {
    font-size: 10px;
    line-height: 1.7;
  }

  .sec-about__cheers {
    width: 40px;
    left: 2px;
    bottom: -26px;
  }

  .sec-menu {
    padding: 84px 0;
  }

  .sec-menu .section-heading {
    margin-bottom: 42px;
  }

  .sec-menu__lead {
    margin-bottom: 42px;
    font-size: 11px;
    line-height: 1.8;
  }

  .menu-board {
    border-radius: 22px;
    padding: 24px 16px 18px;
  }

  .menu-board__title {
    font-size: 30px;
  }

  .menu-board__title::after {
    width: 92px;
    height: 2px;
    margin-top: 8px;
  }

  .menu-board__desc {
    font-size: 11px;
    line-height: 1.65;
  }

  .menu-board__menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-board__item-name {
    font-size: 20px;
  }

  .menu-board__item-meta {
    font-size: 10px;
  }

  .menu-board__item-price {
    font-size: 18px;
  }

  .menu-board__note {
    font-size: 9px;
    line-height: 1.5;
  }

  .sec-staff {
    padding: 84px 0;
  }

  .sec-staff .section-heading {
    margin-bottom: 42px;
  }

  .section-wave--staff-top {
    right: -180px;
    top: -102px;
  }

  .section-wave--staff-bottom {
    left: -190px;
    bottom: -106px;
    --section-wave-path-shift-x: -192px;
    --section-wave-path-scale-x: 1.16;
  }

  .sec-staff__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 440px;
  }

  .staff-profile__visual {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .staff-profile__badge {
    right: -10px;
    bottom: 6px;
    min-height: 34px;
    padding: 6px 12px 4px;
    font-size: 14px;
  }

  .staff-profile__content {
    max-width: none;
  }

  .staff-profile__name {
    font-size: 20px;
  }

  .staff-profile__text {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
  }

  .sec-inside {
    padding: 84px 0 74px;
  }

  .sec-inside .section-heading {
    margin-bottom: 42px;
  }

  .inside-gallery__track {
    --inside-gallery-item-width: 188px;
    --inside-gallery-item-height: 246px;
    --inside-gallery-gap: 10px;
    animation-duration: 22s;
  }

  .inside-gallery__item {
    border-radius: 20px;
  }

  .sec-inside__stars {
    right: 12px;
    bottom: 14px;
    width: 152px;
  }

  .sec-voices {
    padding: 84px 0 70px;
  }

  .sec-voices .section-heading {
    margin-bottom: 42px;
  }

  .section-wave--voices-bottom {
    left: -238px;
    bottom: -128px;
    --section-wave-path-shift-x: -194px;
    --section-wave-path-scale-x: 1.12;
  }

  .sec-voices__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 388px;
    margin-inline: auto;
  }

  .sec-access {
    padding: 84px 0 70px;
  }

  .sec-access .section-heading {
    margin-bottom: 42px;
  }

  .sec-access__label {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .sec-access__grid--info,
  .sec-access__grid--route {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sec-access__block--route {
    margin-top: 28px;
  }

  .access-item dt {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .access-item dd {
    font-size: 12px;
    line-height: 1.7;
  }

  .sec-access__map {
    margin-top: 32px;
    border-radius: 6px;
  }

  .sec-first-visit {
    padding: 56px 0 120px;
  }

  .sec-first-visit__title {
    font-size: 30px;
  }

  .sec-first-visit__body {
    margin-top: 28px;
    width: 100%;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.75;
  }

  .sec-first-visit__intro {
    min-height: 0;
  }

  .sec-first-visit__music {
    margin-top: 22px;
    width: 100%;
  }

  .sec-first-visit__music-title {
    font-size: 20px;
  }

  .sec-first-visit__music-link {
    margin-top: 14px;
    font-size: 15px;
  }

  .sec-first-visit__body p + p {
    margin-top: 14px;
  }

  .sec-first-visit__illust {
    position: static;
    display: block;
    margin: 18px auto 0;
    width: 136px;
  }

  .site-footer__main {
    padding: 22px 0 20px;
  }

  .site-footer__lead {
    margin-top: 8px;
  }

  .site-footer__sns {
    margin-bottom: 0;
    gap: 12px;
  }

  .site-footer__sns a,
  .site-footer__sns-text {
    gap: 4px;
  }

  .site-footer__icon {
    width: 12px;
    height: 12px;
  }

  .site-footer__copyright {
    padding-top: 8px;
    padding-bottom: 7px;
  }
}
