
#bottom_contactBox {
  position: relative;
  z-index: 10;
  &::before {
    background: url("../../img/common/bg_contact.jpg") center center no-repeat;
    background-size: cover;
    position: absolute;
    content: "";
    z-index: -1;
  }

  .bottom_contactInner {
    align-items: center;
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding: 9rem 4rem 7rem;
    width: 100%;
  }

  .contact_title {
    text-align: center;
    width: 100%;

    p {
      font-size: 2rem;
      font-weight: bold;
    }
  }

  .contact_cont {
    text-align: center;
    margin-top: 1.8rem;

    p {
      line-height: 2;
    }
  }

  

  @media screen and (max-width: 767px) {
    .contact_title {
      p {
        font-size: 18px;
      }
    }

    .contact_cont {
      p {
        font-size: 16px;
      } 
    }
  }
}

.contact_link {
  margin-top: 3rem;
  &.is-right {
    a {
      margin:0 0 0 auto;
    }
  }
  a {
    background: #fff;
    border: 1px solid #000;
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 35.5rem;
    margin: 0 auto;
    width: 100%;

    span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;

      &::before {
        content: '';
        background: url("../../img/common/icon_mail.png") center center no-repeat;
        display: block;
        height: 18px;
        width: 23px;
        margin-right: 1.5rem;
      }
    }
  }
  @media screen and (max-width: 767px) {
    margin-top: 30px;

    a {
      span {
        padding: 1.5rem 1rem;
      }
    }
  }
}