.service-area--gas table th {
  text-align: center;
  padding: 20px 5px;
}

.service-area--gas table tbody th {
  width: 20%;
}

.region-title {
  font-size: 2.4rem;
  position: relative;
  font-weight: bold;
  padding-bottom: 20px;
}

.region-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  transform: translateX(-50%);
  left: 50%;
}

.region-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background: linear-gradient(to right, var(--primary) 0%, #4E87D8 100%);
  z-index: 2;
}

.emergency-flow {
  display: flex;
  justify-content: center;
  gap: 2%;
}

.emergency-flow__step {
  width: 33%;
  padding: 30px 10px;
  border: 1px solid var(--border-color);
  text-align: center;
  border-radius: 5px;
}

.emergency-flow__title {
  font-size: 2.8rem;
  font-family: var(--font-family-en);
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 500;
}

.emergency-flow__image {
  max-height: 178px;
  object-fit: contain;
  margin-bottom: 20px;
  height: 14vw;
}

.emergency-flow__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

table.emergency-contact:last-child {
  margin-bottom: 0;
}

.emergency-contact td,
.emergency-contact th {
  padding: 25px 30px;
}

.emergency-contact__header th {
  text-align: center;
  background: #D4E5F9;
  font-size: 2.0rem;
  color: var(--primary);
}

.emergency-contact__header th span {
  display: block;
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 5px;
}

.emergency-contact__wrapper {
  display: flex;
  align-items: center;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: space-between;
}

.emergency-contact__label {
  margin: 0;
  font-weight: bold;
  max-width: 55%;
}

.emergency-contact__label span {
  display: block;
  font-weight: normal;
  font-size: 1.4rem;
}

.emergency-contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  text-align: right;
}

@media (max-width: 1024px) {
  .emergency-contact td,
  .emergency-contact th {
    padding: 25px 15px;
  }

  .emergency-contact__header th {
    text-align: left;
    font-size: 1.8rem;
  }

  .emergency-contact__wrapper {
    gap: .5em;
    justify-content: start;
    flex-flow: column;
    text-align: left;
  }

  .emergency-contact__label {
    max-width: 100%;
    width: 100%;
  }

  .emergency-contact__info {
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-area--gas table tbody td {
    padding: 20px 15px;
  }

  .emergency-flow {
    flex-flow: column;
    gap: 15px;
  }

  .emergency-flow__step {
    width: 100%;
    padding: 25px 10px;
    border-radius: 5px;
  }

  .emergency-flow__image {
    height: auto;
  }
}