@charset "UTF-8";

.contents-Block:not(:first-of-type) {
  margin-top: 50px;
}

.contents-Block>h4 {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 10px;
  font-size: min(5vw, 22px);
}

.contents-Block>h4::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #d1e7f2, #f6decc);
}

.contents-Block p {
  font-size: 15px;
  line-height: 1.8;
}

.contents-Block p:not(:first-child) {
  margin-top: 1em;
}

.contents-Block p+ul {
  margin-top: 1em;
}

.land-Img {
  align-items: flex-start;
  gap: 50px;
}

.land-Img>li {
  position: relative;
}

.land-Img>li p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: min(5vw, 25px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 0 10px #162a5f, 0 0 5px #162a5f;
  transform: translate(-50%, -50%);
}

.contact-List {
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin-top: 1em;
}

.contact-List>li {
  align-items: center;
  gap: 10px;
}

.contact-List .icon {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #ee7701;
}

.contact-List .icon p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  transform: translate(-50%, -50%);
}

.contact-List .tel-Num {
  font-size: min(8vw, 40px);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0em;
  line-height: 1;
}

.contact-List .tel-Num+p {
  margin-top: 5px;
  font-size: 14px;
}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 820px) {
  .contents-Block p {
    font-size: 14px;
  }

  .land-Img {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-List {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}