@charset "utf-8";

.contacts {
  margin-top: 220px;
}

.contacts_item + .contacts_item {
  margin-top: 110px;
}

.contacts_item {
  position: relative;
}

.contacts_item::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 0;
  width: calc(100% - 10.5%);
  min-width: 1200px;
  height: 1px;
  background: #707070;
}

.contacts_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 72px;
  padding-left: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.contacts_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 7.2rem;
  color: #60471E;
  line-height: 1;
}

.contacts_wrap:first-of-type::before {
  content: '\f095';
}

.contacts_wrap:last-of-type::before {
  content: '\f0e0';
}

.contacts_title {
  font-size: 3.6rem;
  color: #60471E;
}

.contacts_tel {
  font-weight: 500;
  font-size: 4.8rem;
}

.contacts_reception {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .contacts {
    margin-top: 75px;
  }

  .contacts_item::before {
    top: -20px;
    left: 0;
    width: calc(100% - 30px);
    min-width: auto;
    margin: auto;
  }

  .contacts_wrap {
    padding-left: 0;
  }

  .contacts_wrap:first-of-type::before,
  .contacts_wrap:last-of-type::before {
    content: none;
  }

  .contacts_title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 2.8rem;
  }

  .contacts_title::before {
    position: relative;
    top: 0;
    left: 0;
    width: 54px;
    height: 55px;
    margin-right: 16px;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    font-size: 5.4rem;
    color: #60471E;
    line-height: 1;
  }

  .contacts_item:first-of-type .contacts_title::before {
    content: '\f095';
  }

  .contacts_item:last-of-type .contacts_title::before {
    content: '\f0e0';
  }

  .contacts_tel {
    margin-bottom: 15px;
  }

  .contacts_reception {
    font-size: 1.6rem;
  }
}