@charset "utf-8";

/*デフォルトCSSの削除
---------------------------------------------------------------------------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align:baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section { 
  display:block;
}

html {
    overflow-x: hidden;
}
    
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  max-width: 100vw;
  margin: 0;
  font: 12px/1 "メイリオ","Meiryo","ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
  line-height: 1.6;
  font-size: 15px;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

body {
    background-color: #f3f3f3;
}

.main {
    margin-bottom: 50px;
}

/*全体の設定
---------------------------------------------------------------------------*/
body , html {
    height: 100%;
}

/*非表示の設定
---------------------------------------------------------------------------*/
.off {
    display: none !important;
}

/*フロートの設定
---------------------------------------------------------------------------*/
.floatleft {
    float: left;
}

.floatright {
    float: right;
}

/*フロート解除の設定
---------------------------------------------------------------------------*/
.wrap {
    overflow: hidden;
}

/*コンテンツの設定
---------------------------------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* マージン・パディングの設定
---------------------------------------------------------------------------*/
.mt10 {
    margin-top: 10px;
}

.ml15 {
    margin-left: 15px;
}

.mb50 {
    margin-bottom: 50px;
}

.ml60 {
    margin-left: 60px;
}

.pt58 {
    padding-top: 58px;
}

.pt300 {
    padding-top: 300px;
}