* {
  /* outline: solid 2px red; */
}

.contact-header {
  width: 100%;
  height: 50px;
  padding: 20px 0px 20px 0px;
  background-color: white;

  img{
    height: 50px;
    position: absolute;
    left: 40px;
  }
}

.main {
  background-color: #FFFCCC;
  padding-top: 10%;
  font-family: Zen Kaku Gothic Antique;

  .page-title {
    padding: 20px;
    text-align: center;
  }

  p {
    font-size: 18px;
  }
}

.contact-footer {
  background-color: #FFFCCC;
  width: 100%;
  padding-top: 10%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  bottom: 0;

  .footer-bg {
    margin: 0 auto;

    img {
      width: 100%;
      max-width: 1920px;
      position: relative;
      bottom: 0;
    }
  }

  .footer-logo {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 60%;

    @media screen and (max-width:960px) {
      width: 100%;
      position: absolute;
      display: flex;
      justify-content: center;
      top: 35%;
      }

    img {
      width: 26%;
      height: auto;
    }
  }

  .footer-text {
    width: 100%;
    height: 80px;
    position: absolute;
    text-align: center;
    bottom: 60px;

    @media screen and (max-width:960px) {
      width: 100%;
      height: 80px;
      position: absolute;
      text-align: center;
      bottom: 80px;
    }
  }
}