/* 共通 */
:root {
  --main-font: "TheImpressionist", serif;
  /* --noto-font: "Noto Sans JP", sans-serif; */
  --sub-font: "Parisienne", cursive;
  --noto-font: "Noto Serif", serif;
  --base-font-size: 16px;
  --heading-font-size: 2rem;
  --main-color: #B59B9B;
  --main-blue: #1F233A;
  --main-gray: #D9D9D9;
  --font-gray: #4E4E4E;
}

.footer-container {
  max-width: 128rem;
  background-color: #1F233A;
  padding: 3rem 0 1rem;
}

.footer-logo {
  font-size: 2rem;
  color: #ffffff;
  font-family: var(--main-font);
  text-align: center;
  font-weight: 300;
  margin: 0 0 3rem;
}

.footer-policy {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
  margin: 0 0 3rem;
  cursor: pointer;
}

.footer-policy a {
  color: #ffffff;
  cursor: pointer;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.sns-links a img {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  display: block;
}



.sns-text {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
  margin: 0 0 7rem;
}

.tel-contact {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
  display: block;
  margin: 0 0 2rem;
  cursor: pointer;
}

.tel-contact a {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
  display: block;
  /* margin: 0 0 5rem; */
  pointer-events: none;
  cursor: default;
  color: inherit;
}

.mail-text a {
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
  display: block;
  margin: 0 0 5rem;
  cursor: pointer;
}

.copy-right {
  font-size: 1.2rem;
  color: #ffffff;
  font-family: var(--noto-font);
  text-align: center;
  font-weight: 300;
}


/* ここからスマホ版・SP版 */
@media screen and (max-width: 699.98px) {

  /* 画面幅が699.98px以下のデバイスに適用するスタイル */
  .footer-container {
    width: 37.5rem;
    padding: 5rem 0 3rem;
  }

  .sns-text {
    font-size: 1.1rem;
    text-align: left;
    width: 30rem;
    margin: 0 auto 3rem;
  }

  .tel-contact {
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }

  .tel-contact a {
    font-size: 1.4rem;
  }

  .mail-text a {
    font-size: 1.4rem;
  }

  .copy-right {
    font-size: 1rem;
  }

}