html, body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/************** お問い合わせ **************/
.contactSection {
  width: 100%;
  height: 28vh;
  position: relative;
  background-color: #fff;
}

.sectionTitle {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

.contactImg {
  width: 100%;
  height: 190px;
  background-image: url(/images/contactImg.jpeg);
  background-size: cover;
  margin-top: 33px;
}

.contactText {
  color: #fff;
  white-space: pre-line; /* 改行を維持 */
  text-align: center;
  padding-top: 15px;
}

.contactBtnBox {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contactBtn {
  width: 150px;
  height: 50px;
  margin-top: 20px;
  border: 1.5px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 50px; /* 上下中央（heightと同じ値） */
}

/* PCサイズ時のスタイル */
@media (min-width: 768px) {
  .contactText {
    padding-top: 30px;
  }
}


/************** フッター **************/
footer {
  width: 100%;
  height: 33vh;
  padding: 50px 0px;
  background-color: #fff;
}

.footer1, .footer3 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}

.campanyLogo {
  width: 140px;
  height: 30px;
  background-image: url(/images/companyLogoYoko.png);
  background-size: cover;
}

.footerText {
  text-align: center;
  white-space: pre-line; /* 改行を維持 */
  font-size: 12px;
}

.footerSNSContent {
  width: 30px;
  height: 30px;
  background-image: url(/images/InstagramIcon.jpg);
  background-size: cover;
}

.footerCopyright {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
}