.section-header {
  background-image: url("../assets/textures/washi.jpg");
  padding: 1.5rem;
  text-align: center;
}

.page-title {
  font-size: 2.125rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  margin: 0;
}

/* 店舗情報セクション */
.store-section {
  letter-spacing: 0.1em;
}

.store-header {
  text-align: center;
}

.store-section .logo-image {
  height: 3.5rem;
  width: auto;
}

.store-section .logo-text-image {
  height: 1.75rem;
  width: auto;
}

.store-content {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
  justify-content: center;
  margin: 5rem 0;
}

.store-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: fit-content;
  max-width: 50 * var(--vw);
  flex-shrink: 1;
  min-width: 0;
}

.store-image {
  width: 100%;
  max-width: 28.125rem;
  height: 21.875rem;
  object-fit: cover;
  border-radius: 4px;
}

.store-details {
  flex-shrink: 0;
  width: fit-content;
  max-width: 28.125rem;
  padding: 0 1.5rem;
}

.store-name {
  margin-bottom: 0.3125rem;
}

.store-type {
  margin-bottom: 1.875rem;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.contact-phone {
  font-size: clamp(1.25rem, 3 * var(--vw), 1.5rem);
  font-weight: bold;
  color: white;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  background-color: #a8181e;
  padding: clamp(0.75rem, 2 * var(--vw), 1rem) clamp(1.5rem, 4 * var(--vw), 2rem);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: clamp(15rem, 45 * var(--vw), 17.5rem);
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 3rem;
}

.contact-phone:hover {
  background-color: #8a1318;
}

.contact-phone img {
  width: 1.5rem;
  height: auto;
}

.store-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.875rem auto;
  max-width: 28.125rem;
}

.store-info-table tr {
  border-bottom: 1px dashed #7d7d7d;
}

.store-info-table td {
  padding: 0.75rem 0;
  font-size: 1rem;
  line-height: 2;
}

.store-info-table .info-label {
  width: 7.5rem;
  vertical-align: top;
}

.store-info-table .info-value {
  padding-left: 1.25rem;
}

.note {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 28.125rem;
}

.note li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.5rem;
}

/* アクセスセクション */
.section-header.access {
  margin: 3.75rem 0;
}

.map-container {
  margin-bottom: 2.5rem;
}

.access-info {
  text-align: center;
  margin-bottom: 5rem;
}

.address {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.train-icon {
  margin-bottom: 1rem;
}

.access-details p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* 駐車場セクション */
.section-header.parking {
  margin: 3.75rem 0 0 0;
}

.parking-section {
  margin-bottom: 5rem;
}

.parking-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  padding: 2.5rem 0;
}

.parking-image {
  width: 28.125rem;
  height: 21.875rem;
  border-radius: 4px;
  overflow: hidden;
}

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

.parking-description {
  text-align: center;
}

.parking-description p {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 800px) {
  .page-title {
    font-size: 1.75rem;
  }

  /* 店舗情報セクション */
  .store-content {
    flex-direction: column;
    gap: 2rem;
    margin: 1.875rem 0;
  }

  .store-image {
    width: 100%;
    height: 15rem;
    border-radius: 0px;
  }

  .store-details {
    width: 100%;
    min-width: 100%;
    padding: 0;
  }

  .store-interior-box {
    /* Windowsで横スクロールバーを出さないように */
    overflow-x: clip;
  }

  .store-interior-fullwidth {
    margin: 2rem 0;
    width: 100 * var(--vw);
    margin-left: calc(-50 * var(--vw) + 50%);
    margin-right: calc(-50 * var(--vw) + 50%);
  }

  .store-interior-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
  }

  .note {
    font-size: 0.9375rem;
  }

  .note li {
    list-style: none;
    position: relative;
    padding-left: 0.75rem;
  }

  .note li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: inherit;
  }

  /* アクセスセクション */
  .access-info {
    margin-bottom: 4rem;
  }
  .section-header.access {
    margin: 1.875rem 0;
  }

  .map-container iframe {
    height: 300px;
  }

  /* 駐車場セクション */
  .section-header.parking {
    margin: 1.875rem 0;
  }

  .parking-image {
    width: 100%;
    max-width: 22.5rem;
    height: 17.5rem;
  }

  .parking-description p {
    text-align: start;
  }
}
