/* 初期設定、共通クラス */
@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;
}

.font-white {
  color: white;
}

.font-blue {
  color : #3BBEFF;
}

.font-gray {
  color: #ababab;
}

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

.bg-blue {
  background-color: #3BBEFF;
}

.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;
  }
}

/* フッター */
footer {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  color: #FFFFFF;
  background-color: #1080c8;
  background: linear-gradient(-76deg, #1298d4 28%, #1f68bc 72%);
}

footer img {
  width: 204px;
  vertical-align: bottom;
}

footer p {
  margin-top: 20px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 12px;
  }

  footer img {
    width: 167px;
  }
}
