/* 初期設定、共通クラス */
@import url('https://fonts.googleapis.com/css?family=Lato:400,400i');

body {
  font-family: "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, Roboto, "Lato", sans-serif;
  font-weight: 500;
  margin: 0;
}

a {
  text-decoration: none;
  color: #0096DC;
  font-weight: bold;
}

.font-white {
  color: white;
}

.font-blue {
  color : #0096DC;
}

.font-gray {
  color: #ababab;
}

.bg-white {
  background-color: white;
}

.bg-blue {
  background-color: #0096DC;
}

.bg-light-blue {
  background-color: #dbedfc;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.table-display {
  display: table;
}

.middle-text-cell {
  display: table-cell;
  vertical-align: middle;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.lg-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.font-link {
  color: #1682c9;
}

.font-link:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }

  .lg-container {
    padding: 0 10px;
  }
}

@media screen and (min-width: 768px) {
  .sp-br {
    display: none;
  }
}
