@charset "UTF-8";

/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
}

/* bodyの初期スタイル調整 */
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: -apple-system,
BlinkMacSystemFont, "Helvetica Neue",
YuGothic, "ヒラギノ角ゴ ProN W3", "HiraginoKaku Gothic proN", Arial, "メイリオ", Meiryo, system-ui, sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
}

/* 初期スタイル調整 :/
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

h3 {
  color: #85a7cc;
  font-size: 14px;
  margin-bottom: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: justify;
}

address {
  font-style: normal;
}

a {
  color: #666;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

section {
  padding: 60px 0;
}

.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}

/* コンテンツを格納するスタイル */
.inner {
  padding: 0 15px;
  margin: 0 auto;
}

/* PC用のスタイル */
@media screen and (min-width:768px) {
  .inner {
    max-width: 900px;
  }
}

/* モバイルとPCでの表示に関するスタイル */
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}

/* PC用のスタイル */
@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}