/* ===== SEAT ===== */
.section-seat {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
}

.section-seat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../common/images/back01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.section-seat > .container {
  position: relative;
  z-index: 1;
}

.section-seat .section-en,
.section-seat h2 {
  text-align: left;
}

.section-seat h2 {
  margin: 0 0 32px;
}

.section-seat p:not(.section-en) {
  font-family: var(--title-font);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
  max-width: 880px;
}

@media (min-width: 1024px) {
  .section-seat .section-en,
  .section-seat h2,
  .section-seat p:not(.section-en) {
    text-align: center;
  }

  .section-seat p:not(.section-en) {
    font-size: 18px;
    margin: 0 auto;
  }
}

/* ===== PRIVATE ROOM ===== */
.section-room {
  position: relative;
  background-color: var(--color-bg-sub);
  overflow: hidden;
}

.section-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../common/images/back02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.section-room > .container {
  position: relative;
  z-index: 1;
}

.section-room h2 {
  margin: 0 0 24px;
}

.section-room > .container > div:first-of-type {
  margin-bottom: 40px;
}

.section-room > .container > div:first-of-type p {
  font-family: var(--title-font);
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 12px;
}

.section-room > .container > div:first-of-type p:last-child {
  margin-bottom: 0;
}

.seat-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.seat-gallery article {
  position: relative;
}

.seat-gallery figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(161, 123, 64, 0.42);
  overflow: hidden;
}

.seat-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.seat-gallery h3 {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  min-height: 48px;
  margin: 0;
  padding: 8px 0;
  background-color: rgba(26, 26, 26, 0.86);
  font-family: var(--base-font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.seat-gallery h3 span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(161, 123, 64, 0.72);
  color: var(--color-sub);
  font-weight: var(--base-weight2);
}

.seat-gallery h3 span:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px 8px 22px;
  color: var(--color-white);
  font-weight: var(--base-weight);
  white-space: nowrap;
}

.seat-gallery p {
  font-size: 15px;
  line-height: 1.8;
  margin: 14px 4px 0;
}

.seat-gallery .has-badge::before {
  content: "掘り\Aごたつ";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(161, 123, 64, 0.92);
  color: var(--color-white);
  font-size: 12px;
  font-weight: var(--base-weight2);
  line-height: 1.3;
  text-align: center;
  white-space: pre;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .seat-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-room .section-en,
  .section-room h2,
  .section-room > .container > div:first-of-type {
    text-align: center;
  }

  .section-room > .container > div:first-of-type {
    margin-bottom: 56px;
  }

  .section-room > .container > div:first-of-type p {
    font-size: 18px;
  }

  .seat-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ===== TABLE / PARTY ===== */
.section-table {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
}

.section-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../common/images/back01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.section-table > .container {
  position: relative;
  z-index: 1;
}

.section-party {
  position: relative;
  background-color: var(--color-bg-sub);
  overflow: hidden;
}

.section-party::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../common/images/back02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.section-party > .container {
  position: relative;
  z-index: 1;
}

.section-table > .container > div,
.section-party > .container > div {
  margin-bottom: 32px;
}

.section-table h2,
.section-party h2 {
  margin: 0 0 20px;
}

.section-table > .container > div p:not(.section-en),
.section-party > .container > p {
  font-family: var(--title-font);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

.seat-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background-color: var(--color-bg);
  border: 1px solid rgba(161, 123, 64, 0.28);
}

.section-table .seat-feature {
  background-color: var(--color-bg-sub);
}

.seat-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.seat-feature > div {
  padding: 28px 24px;
}

.seat-feature h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.seat-feature p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.seat-feature p:first-of-type {
  color: var(--color-sub);
  font-weight: var(--base-weight2);
}

.seat-feature p:last-child {
  margin-bottom: 0;
}

.section-party > .container > p {
  margin: 32px 0 24px;
}

@media (min-width: 1024px) {
  .section-table > .container > div,
  .section-party > .container > div,
  .section-party > .container > p {
    text-align: center;
  }

  .section-table > .container > div p:not(.section-en),
  .section-party > .container > p {
    font-size: 18px;
  }

  .seat-feature {
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
  }

  .section-party .seat-feature {
    grid-template-columns: 1fr 1.35fr;
  }

  .section-party .seat-feature img {
    grid-column: 2;
  }

  .section-party .seat-feature > div {
    grid-column: 1;
    grid-row: 1;
  }

  .seat-feature > div {
    padding: 48px;
  }

  .seat-feature h3 {
    font-size: 28px;
  }
}
