
/*========================*/
/* カスタムクラス定義 */
/*========================*/
.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

/*========================*/
/* フレームクラス定義     */
/*========================*/
/* BODY定義 */
body {
  margin: auto;
  text-align: center;
  background-color: #FAFDFF;
  min-width: 320px;
  font-family: verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* ページヘッダ領域 */
.header {
  height: 8px;
  background-color: #1464b9;
}
.inner-body {
  padding-right: 40px;
  padding-left: 40px;
}
<!-- 本文領域 -->
.logo {
  display: block;
}
.logoimg {
  margin-top: 64px;
  width: 240px;
  height: 48px;
}
.info{
  margin-top: 64px;
}
.info-headline {
  font-size: 19px;
  font-weight: bold;
  color: #1464B9;
  margin-top: 64px;
}
.info-text {
  margin-top: 24px;
  color: #242424;
  line-height: 1.4;
}
<!-- 本文詳細領域 -->
.info-detail {
  margin-top: 64px;
}
.info-detail-headline {
  margin-top: 64px;
  font-weight: bold;
  line-height: 1.4;
}
.info-detail-text {
  margin-top: 8px;
  line-height: 1.4;
}
