@charset "UTF-8";
*,
*::before,
*::after {
  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%;
       text-size-adjust: 100%;
}

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

iframe {
  vertical-align: middle;
}

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

a {
  text-decoration: none;
}

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

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

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  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: 100%;
    width: 100%;
    margin: auto;
  }
}
/*------------------------------------------------

c-body

-------------------------------------------------*/
.c-body {
  position: relative;
}

/*------------------------------------------------

c-bg

-------------------------------------------------*/
.c-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/fix-bg.jpg) no-repeat center center/cover;
  z-index: -1;
}

/*------------------------------------------------

c-fixbtn

-------------------------------------------------*/
.c-fixbtn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}/*# sourceMappingURL=common.css.map */