/* 旧サイトの各パーツに直接書かれていた <style> をまとめたもの */

/* header */
.header_logo a {
  display: block;
  height: 100%;
}

.flex {
  display: flex;
  justify-content: space-around;
}

/* お問い合わせ CTA */
.com_infoBox .com_infoInner {
  display: flex;
  justify-content: space-around;
}

.cta_office-contact__box {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .com_infoBox .com_infoInner {
    display: block;
  }

  .cta_office-contact {
    margin-bottom: 20px;
  }
}

/* footer */
.office-contact_wrapper {
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .office-contact_wrapper {
    display: block;
  }

  .office-contact__box {
    text-align: center;
  }

  .w100 {
    width: 100% !important;
  }
}

/* 固定ページ本文（WordPress で追加するページ用） */
.page_contents img {
  max-width: 100%;
  height: auto;
}
