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

.section-concept::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-concept > .container {
  position: relative;
  z-index: 1;
}

/* SP: 左揃え（デフォルト） */
.section-concept .section-en {
  text-align: left;
}

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

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

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

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

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

.section-concept 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-concept 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;
}

/* PC: 中央揃え */
@media (min-width: 1024px) {
  .section-concept .section-en {
    text-align: center;
  }

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

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

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

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

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

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

.section-chef::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-chef > .container {
  position: relative;
  z-index: 1;
}

.chef-grid {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

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

.chef-grid > div:first-child > p:not(.section-en) {
  font-family: var(--title-font);
  font-weight: var(--base-weight2);
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-sub);
  opacity: 0.9;
  margin-bottom: 0;
}

.chef-grid > div:nth-child(2) > img {
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 32px auto 0;
  object-fit: contain;
}

.chef-card {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 20px;
  margin-top: 16px;
  border-radius: 2px;
}

.chef-card p:first-child {
  font-family: var(--base-font);
  font-size: 11px;
  color: var(--color-sub);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.chef-card h3 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: var(--base-weight3);
  color: var(--color-white);
  margin-bottom: 6px;
}

.chef-card p:nth-child(3) {
  font-family: var(--base-font);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-sub);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(161, 123, 64, 0.3);
}

.chef-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chef-card ul li {
  font-family: var(--base-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.chef-card ul li:last-child {
  margin-bottom: 0;
}

.chef-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-sub);
}

.section-chef hr {
  border: none;
  border-top: 1px solid var(--color-sub);
  width: 60px;
  margin: 40px 0;
}

.chef-grid > div:last-child > p {
  font-family: var(--base-font);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.chef-grid > div:last-child > p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 60px;
    align-items: start;
  }

  .chef-grid > div:first-child {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .chef-grid > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    min-height: 640px;
  }

  .chef-grid > div:last-child {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .chef-grid > div:nth-child(2) > img {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: min(100%, 460px);
    height: auto;
    max-width: none;
    margin: 0;
  }

  .chef-card {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: min(100%, 460px);
    padding: 24px;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    column-gap: 24px;
    align-items: center;
  }

  .chef-card p:first-child,
  .chef-card h3,
  .chef-card p:nth-child(3) {
    grid-column: 1;
  }

  .chef-card p:nth-child(3) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .chef-card ul {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .section-chef h2 {
    margin-bottom: 28px;
  }

  .chef-grid > div:first-child > p:not(.section-en) {
    font-size: 18px;
  }

  .chef-grid > div:last-child > p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .chef-grid > div:last-child > p:last-child {
    margin-bottom: 0;
  }
}

/* ===== OUR COMMITMENT ===== */
.section-commitment {
  background-color: var(--color-main);
  color: var(--color-white);
}

.section-commitment .section-en {
  margin-bottom: 16px;
}

.commitment-title {
  margin-bottom: 60px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.commitment-card {
  border-top: 1px solid rgba(161, 123, 64, 0.5);
  padding: 40px 0;
}

.commitment-card:last-child {
  border-bottom: 1px solid rgba(161, 123, 64, 0.5);
}

.commitment-number {
  font-family: var(--title-font);
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.commitment-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 24px;
  border: 1px solid rgba(161, 123, 64, 0.6);
}

.commitment-card h3 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: var(--base-weight3);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-white);
}

.commitment-card p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 1024px) {
  .commitment-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .commitment-card {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(161, 123, 64, 0.5);
    padding: 0 32px;
  }

  .commitment-card:last-child {
    border-bottom: none;
    border-right: 1px solid rgba(161, 123, 64, 0.5);
  }

  .commitment-card h3 {
    font-size: 24px;
  }
}

/* ===== INTERIOR ===== */
.section-interior {
  position: relative;
  background-color: var(--color-main);
  background-image: url('images/interior-bg.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}

.section-interior::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

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

.section-interior h2 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.section-interior p {
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  max-width: 560px;
}

@media (min-width: 1024px) {
  .section-interior p {
    max-width: 760px;
  }
}

@media (max-width: 1023px) {
  .section-interior {
    min-height: 50vh;
  }

  .section-interior p {
    font-size: 16px;
  }
}
