@charset "UTF-8";
/* --------------------------------------------------------

 page-lpgas.css

---------------------------------------------------------*/

/* safty
--------------------------------------------------------*/
.red-box .definition-list {
  padding: 1rem 0 0;
}
.highlight {
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.313rem;
}

.location {
  margin-bottom: 2.5rem;
}
.location-label {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.313rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid;
}
.location-fbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  text-align: center;
}
.location-box {
  width: calc(50% - 2rem);
}
.location-box p {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.location-box p span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .location-box {
    width: 100%;
  }
}


/* miconmeter
--------------------------------------------------------*/
.restore-box {
  padding: 1rem 1.25rem;
  margin-bottom: 3.75rem;
  border: 2px solid var(--pale-blue);
  border-radius: 1rem;
  background: var(--white);
  position: relative;
}
.restore-box:not(:last-child)::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 2rem;
  background: var(--sub);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  top:  calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
}
.restore-heading {
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 0.313rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid;
}
.restore-fbox {
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 5%;
  padding: 1rem 0;
  margin: 0 auto;
}
.restore-img {
  max-width: 22.5rem;
}
.restore-text {
  width: calc(100% - calc(22.5rem + 5%));
}
.contact.restore-box {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  border-color: var(--main);
}
.contact-heading {
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 600;
}
.contact a {
  color: var(--main);
  font-size: 3.125rem;
  font-weight: 700;
}
.contact .icon-phone {
  width: 1.8rem;
}

.request-items {
  list-style-type: none;
  padding: 1rem 0;
}
.request-items li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pale-blue);
}
.request-items .remarks {
  color: var(--main);
  font-size: 0.813rem;
}
@media screen and (max-width: 767px) {
  .restore-text {
    width: 100%;
  }
  .contact a {
    font-size: 10vw;
  }
  .request-items .remarks {
    display: block;
    padding-left: 2.6rem;
  }
}


/* Moving
--------------------------------------------------------*/
.moving-note {
  padding: 0.25rem 1.25rem;
  border-radius: 1rem;
  background: var(--pale-blue);
}
.moving-note dt {
  font-weight: 600;
  padding-top: 1rem;
}
.moving-note dt::before {
  content: "■";
}
.moving-note dd {
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--white);
}
.moving-note dd:last-of-type {
  border-bottom: none;
}