@charset "UTF-8";
/* CSS Document */
/* リセットCSS（基本要素の余白や装飾を初期化） */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, menu, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: center;
}
/* HTML5要素のデフォルト表示設定 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
/*バニシングポイント*/
@media screen and (min-width: 1000px) {
  .vanish-pc {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .vanish-tl {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .vanish-sp {
    display: none !important;
  }
}
/* 基本設定 */
body {
  line-height: 1.5;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
   background-color:#F7F8F9;
}
header {
  height: 80px;
}
footer {
  background-color: #1F232B;
  font-size: 15px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
}
/* リストのスタイル除去 */
ol, ul {
  list-style: none;
}
/* 引用符のリセット */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 画像を幅80%表示（中央寄せ） */
img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 見出し設定 */
h1 {
  margin-bottom: 0.5em;
}
h2 {
  font-size: 3em;
  margin: 2em 0;
  text-align: center;
	color:#1F232B
}
h3 {
  font-size: 2em;
  margin-bottom: 3em;
  text-align: center;
  font-weight: 400;
}
p {
	font-size:18px;
  line-height: 2em;
color: #666666;
}
@media screen and (max-width:767px) {
  header {
    height: 60px;
  }
img {
  width: 100%;
}
  /* 見出し設定 */
  h2 {
    font-size: 1.6em;
    margin-bottom: 1.4em;
    line-height: 1.8em;
  }
  h3 {
    font-size: 2em;
    margin-bottom: 5em;
    text-align: center;
    font-weight: 400;
  }
  p {
    font-size: 1em;
    line-height: 2em
  }
}