/* ===== Footer（スクリーンショット準拠） ===== */

.lp-footer {
  background: #ffffff;
  width: 100%;
}

.lp-footer__inner {
  width: 100%;
  padding: 60px 0 0 0;
}

.lp-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 0 40px 60px 40px;
}

/* === 左側：エントランス画像 === */
.lp-footer__image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 0;
}

.lp-footer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* === 右側：コンテンツ === */
.lp-footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0;
}

/* クリニック名 */
.lp-footer__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #1A1A1A;
  margin: 0 0 8px 0;
  border-bottom: 2px solid #1A1A1A;
  padding-bottom: 12px;
}

/* 住所・電話番号セクション */
.lp-footer__info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer__info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}

.lp-footer__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #1A1A1A;
  padding-top: 2px;
}

.lp-footer__value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #3d3d3d;
}

.lp-footer__tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-footer__tel:hover {
  color: #017AC6;
}

.lp-footer__tel-hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  line-height: 1.6;
}

/* 診療時間表 */
.lp-footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer__timetable {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
  background: #ffffff;
  border: none;
}

.lp-footer__timetable thead {
  background: #2c4a7c;
  color: #ffffff;
}

.lp-footer__timetable th,
.lp-footer__timetable td {
  padding: 12px 8px;
  text-align: center;
  border: none;
  font-size: 14px;
  line-height: 1.4;
}

.lp-footer__timetable thead th {
  font-weight: 700;
  border: none;
}

.lp-footer__th-label {
  text-align: center;
  font-weight: 700;
}

.lp-footer__th-time {
  background: #f8f8f8;
  font-weight: 700;
  text-align: center;
  color: #1A1A1A;
}

.lp-footer__mark {
  font-size: 16px;
  font-weight: 700;
}

.lp-footer__mark--circle {
  color: #2c4a7c;
}

.lp-footer__mark--triangle {
  color: #2c4a7c;
}

.lp-footer__mark--star {
  color: #2c4a7c;
}

.lp-footer__mark--square {
  color: #2c4a7c;
}

/* 診療時間の注釈 */
.lp-footer__schedule-notes {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #3d3d3d;
}

.lp-footer__schedule-notes p {
  margin: 0;
}

/* サブタイトル */
.lp-footer__subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  display: inline-block;
}

/* アクセス情報 */
.lp-footer__access-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #3d3d3d;
}

.lp-footer__access-info p {
  margin: 0;
}

.lp-footer__access-info strong {
  font-weight: 700;
  color: #1A1A1A;
}

/* Googleマップ */
.lp-footer__map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
}

.lp-footer__map {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0;
  display: block;
}

/* コピーライト */
.lp-copyright {
  background: #1A1A1A;
  padding: 20px 0;
  text-align: center;
}

.lp-copyright p {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .lp-footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 40px 20px;
  }

  .lp-footer__image {
    min-height: 400px;
  }

  .lp-footer__title {
    font-size: 24px;
  }

  .lp-footer__info-row {
    grid-template-columns: 90px 1fr;
  }

  .lp-footer__map-container {
    padding: 0 20px 40px 20px;
  }

  .lp-footer__map {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .lp-footer__inner {
    padding: 40px 0 0 0;
  }

  .lp-footer__container {
    padding: 0 16px 30px 16px;
  }

  .lp-footer__image {
    min-height: 300px;
  }

  .lp-footer__title {
    font-size: 20px;
  }

  .lp-footer__info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lp-footer__label {
    font-size: 13px;
  }

  .lp-footer__value {
    font-size: 14px;
  }

  .lp-footer__tel {
    font-size: 18px;
  }

  .lp-footer__tel-hours {
    font-size: 11px;
  }

  .lp-footer__timetable th,
  .lp-footer__timetable td {
    padding: 8px 4px;
    font-size: 12px;
  }

  .lp-footer__mark {
    font-size: 14px;
  }

  .lp-footer__schedule-notes {
    font-size: 11px;
  }

  .lp-footer__map-container {
    padding: 0 16px 30px 16px;
  }

  .lp-footer__map {
    height: 280px;
  }
}
