/*-------------------------------------------
お見積り依頼・お問い合わせリンクセクション
-------------------------------------------*/
.sec-contact-nav {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #000;

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 10px;
    transform: translate(0, -1px);
    background-color: #ccc;
    opacity: 1;
    z-index: 10;
  }
}
.sec-contact-nav__inner {
  padding: 40px 20px 50px;
  max-width: calc(100vw - 40px);
  /* width: 100%; */
  margin: 0 auto;
}
.sec-contact-nav__header {
  margin: 0 0 20px 0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.3rem;
  white-space: wrap;
  text-align: left;
  color: var(--sub-bg-color);
}
.sec-contact-nav__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.sec-contact-nav__link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 10px;
  width: 100%;
  height: 150px;
}
.sec-contact-nav__link-container-header {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-font-color);
  text-align: center;
  letter-spacing: 0.2rem;
}
.sec-contact-nav__link--tel {
  padding: 0 15px 0 15px;
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--sub-bg-color);

  &::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
}
.sec-contact-nav__link-container-sub-header {
  margin: 0;
  padding: 10px 0 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.0;
  color: var(--main-font-color);
}
.sec-contact-nav__link--mail {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  height: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  line-height: 0.6;
  color: #fff;
  background-color: var(--sub-bg-color);
}

/* pc */
@media screen and (min-width: 768px) {
  .sec-contact-nav {
    &::after {
      height: 20px;
    }
  }
  .sec-contact-nav__inner {
    padding: 75px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .sec-contact-nav__header {
    margin: 0 0 45px 0;
    font-size: 3.5rem;
    text-align: center;
  }
  .sec-contact-nav__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .sec-contact-nav__link-container {
    gap: 10px;
    width: 470px;
    height: 187px;
  }
  .sec-contact-nav__link-container-header {
    font-size: 2.2rem;
  }
  .sec-contact-nav__link--tel {
    font-size: 4.0rem;

    &::after {
      bottom: -10px;
    }
  }
  .sec-contact-nav__link-container-sub-header {
    padding: 20px 0 0 0;
    font-size: 1.6rem;
  }
  .sec-contact-nav__link--mail {
    gap: 10px;
    width: 340px;
    height: 60px;
    font-size: 2.2rem;
  }
}
