@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  line-height: 1.7;
  color: #111;
  font-family: 'Hiragino Kaku Gothic', 'ヒラギノ角ゴ ProN', Meiryo,Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.inner {
  max-width: 1200px;
  width: 95%;
  margin: auto;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.is_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sp-bl {
  display: none;
}

.pc-bl {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp-bl {
    display: block;
  }
  .pc-bl {
    display: none;
  }
  .inner {
    max-width: 560px;
    width: 90%;
    margin: auto;
  }
}
/*# sourceMappingURL=common.css.map */