/* ===== SCENE メインコンセプト ===== */
.section-scene {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
}

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

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

.section-scene .section-en {
  text-align: left;
}

.section-scene h2 {
  text-align: left;
  margin: 0 0 32px;
}

.section-scene figure {
  max-width: 1100px;
  margin: 0 auto 32px;
}

.section-scene figure::before,
.section-scene figure::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(161, 123, 64, 0.3);
}

.section-scene figure::before {
  margin-bottom: 24px;
}

.section-scene figure::after {
  margin-top: 24px;
}

.section-scene figure img {
  display: block;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.section-scene p:not(.section-en) {
  font-family: var(--title-font);
  font-size: 17px;
  line-height: 1.9;
  text-align: left;
  margin: 0 auto 24px;
  max-width: 800px;
}

.section-scene p:not(.section-en):last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .section-scene .section-en {
    text-align: center;
  }

  .section-scene h2 {
    text-align: center;
    margin-bottom: 48px;
  }

  .section-scene figure {
    margin-bottom: 48px;
  }

  .section-scene figure::before {
    margin-bottom: 32px;
  }

  .section-scene figure::after {
    margin-top: 32px;
  }

  .section-scene p:not(.section-en) {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
  }
}

/* ===== USAGE SCENES 4カード ===== */
.section-scenes {
  position: relative;
  background-color: var(--color-bg-sub);
  overflow: hidden;
}

.section-scenes::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.65;
  pointer-events: none;
  z-index: 0;
}

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

.scenes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.scenes-grid article {
  background-color: var(--color-bg);
  overflow: hidden;
}

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

.scenes-grid article h3 {
  font-size: 20px;
  font-weight: var(--base-weight3);
  line-height: 1.4;
  margin: 20px 20px 10px;
}

.scenes-grid article p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0 20px 20px;
}

@media (min-width: 768px) {
  .scenes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .scenes-grid {
    gap: 40px;
    margin-top: 60px;
  }

  .scenes-grid article h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
  }

  .scenes-grid article p {
    font-size: 16px;
    margin: 0 24px 24px;
  }
}

/* ===== お席・コースのご案内 ===== */
.section-guide {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
  text-align: center;
}

.section-guide::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.2;
  pointer-events: none;
  z-index: 0;
}

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

.section-guide h2 {
  margin-bottom: 24px;
}

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

.section-guide > .container > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

@media (min-width: 768px) {
  .section-guide > .container > div {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section-guide p:not(.section-en) {
    font-size: 18px;
  }
}
