/* 作成者名  坂井*/
:root {
  /* font-weight */
  --thin: 100;
  --extralight: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extrabold: 800;
  --black: 900;
}

/* 使用カラー */
:root {
  --black: #000;
  --navy: #1d4763;
  --red: #b40019;
  --skyblue: #7ac8d0;
  --pink: #f9cebf;
}

/* お問い合わせセクション */
.contact_area {
  width: 100%;
  height: 31.9rem;
  background-color: #fdf7f2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact h2 {
  font-size: 5.7rem;
  font-family: var(--NotoSans);
  color: var(--navy);
  font-weight: var(--medium);
  letter-spacing: 0;
  line-height: 5.9rem;
}

.contact p {
  font-size: 1.8rem;
  font-family: var(--NotoSans);
  font-weight: var(--medium);
  color: var(--navy);
  letter-spacing: 0;
  line-height: 5.9rem;
}

.contact {
  position: relative;
}

.contact_button button {
  width: 9.3rem;
  height: 4.202rem;
  color: #ffffff;
  background-color: var(--red);
  border-radius: 3.1rem;
  position: absolute;
  top: 8.2rem;
  left: 25.7rem;
  padding-right: 5.2rem;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--NotoSans);
  cursor: pointer;
}

.f_bottom {
  width: 100%;
  height: 22rem;
  background-color: var(--navy);
  /* display: flex; */
  justify-content: center;
  /* align-items: center; */
  text-align: center;
  padding: 5rem;
}

.f_icon_flex {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
}

.f_icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.f_icon_img {
  object-fit: contain;
}

.footer_copy{
  font-size: 1.4rem;
  color: #fff;
  margin-top: 2.5rem;
}

@media screen and (max-width: 699.98px) {
  .contact_area {
    text-align: start;
  }

  .contact h2 {
    font-size: 4.8rem;
  }

  .contact p {
    font-size: 1.6rem;
  }

  .contact_button button {
    top: 7rem;
    left: 12.5rem;
  }

  .f_bottom {
    /* height: 8rem; */
  }

  .f_icon_flex {
    gap: 1.2rem;
  }

  .f_icon {
    width: 3rem;
    height: 3rem;
  }


}