/* CSS Document */

/*-------------------------
    変数定義
-------------------------*/
:root {
  --font-family: "Inter", "Noto Sans JP", sans-serif;
  --font-futura: "futura-pt", sans-serif;
  --round: 100vh;
  --main-color: #004346;
}

/*-------------------------
    全体設定
-------------------------*/
body {
  background-color: #f9f9f9;
  font-family: var(--font-family);
}
body * {
  line-height: 1;
  letter-spacing: 0.05em;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}
/*-------------------------
    画像
-------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*-------------------------
    重要事項調査依頼
    --------------------------*/
.chukai-container {
  margin-top: 10rem;
  margin-bottom: 5rem;
}
.chukai-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.chukai-wrapper h2 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 5px solid var(--main-color);
}
.chukai-wrapper h3 {
  display: block;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}
.chukai-wrapper p {
  font-size: 14px;
  line-height: 1.6;
}
.chukai-wrapper a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .chukai-container {
    margin-top: 7rem;
    margin-bottom: 3rem;
  }

  .chukai-wrapper h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
