@charset "utf-8";

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/

html {
  color: #333;
  background: #fff;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  word-break: break-all;
}

/* IE10以降 游ゴシック文字ずれ対応 */

@media all and (-ms-high-contrast: none) {
  html {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic;
  }
}

body {
  background: #fff;
  margin: 0;
}

.btn-flat-border {
  display: inline-block;
  padding: 0.2em 1em;
  text-decoration: none;
  color: #337df0;
  border: solid 2px #337df0;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #337df0;
  color: white;
  cursor: pointer;
}
-------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------
  clearfix
------------------------------------------------------------------------------*/
.clearfix:after,
.inner-block:after {
  clear: both;
  content: "";
  display: block;
  height: 0px;
  font-size: 0;
  visibility: hidden;
}
