@charset "UTF-8";

/**/
.footer{
  width: 100%;
  /*min-height: 365px;*/
  color: var(--color-white);
  background: linear-gradient(90deg, #135589, #002361, #00213B);
  padding: 32px 0;
}
.footer__inner{
  display: flex;
  justify-content: center;
  width: calc(100% - var(--margin-h-pc)*2);
  max-width: var(--max-width-pc);
  background-color: var(--color-white);
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .footer{
    padding: 24px 0;
  }
  .footer__inner{
    width: calc(100% - 16px * 2);
    max-width: none;
    display: block;
    padding: 32px 8px 18px;
  }
}


.footer__info{
  width: calc(100% - 448px);
  max-width: calc(50% - 96px);
}
.footer__info-logo{
  /* width: 160px; */
  /* height: 54px; */
  width: 240px;
  aspect-ratio: 400/80;
  margin-bottom: 8px;
  background-position: center;
  background-size: cover;
}
.footer__info-logo > p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 1024px) {
  .footer__info{
    width: 100%;
    max-width: none;
  }
}


.footer__links{
  width: 464px;
  padding-top: 20px;
}
.footer__contact{
  display: flex;
  width: 448px;
  aspect-ratio: 448/109;
  border-radius: 7px;
  box-shadow: 0px 0px 14px 0px #135589;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.footer__contact-inner{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 30px 23px 30px 18px;
}
.footer__contact-title{
  display: inline-block;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
}
.footer__contact-text{
  width: 189px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.6px;
  margin: 0 16px;
}
.footer__contact-circle{
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  background-color: var(--color-indigoblue);
  background-repeat: no-repeat;
  background-position: center;
}
.footer__privacy,
.footer__about{
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.48px;
}
.footer__privacy{
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footer__links{
    width: 100%;
  }
  .footer__contact{
    width: 100%;
  }

}

.footer__sp-contact-space{
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer__links > :first-child{
    display: none;
  }
  .footer__sp-contact-space{
    display: block;
    max-width: 345px;
    /* margin-bottom: 40px; */
    margin: 0 auto 40px;
  }
  .footer__sp-contact{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    box-shadow: 0px 0px 14px 0px #135589;
    padding: 16px 22px;
  }
  .footer__sp-contact-title{
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .footer__sp-contact-text{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
  .footer__sp-contact-circle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-indigoblue);
  }

}

