/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}

@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}

@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}

@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  background: transparent;
  font-family: "line-rg";
  color: #333;
}

.background {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9dc54), to(#e69c37));
  background: linear-gradient(#f9dc54 0%, #e69c37 100%);
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

.background::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/common/background_before.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

main {
  padding: 0 45px;
}

.content {
  max-width: 1000px;
  margin: auto;
  background: transparent;
}

.content .inner {
  padding: 0 30px;
}

img {
  width: 100%;
}

@media (max-width: 767px) {
  main {
    padding: 0;
  }
  .content .inner {
    padding: 0 20px;
  }
}

/* ---------------------------------------------------------
    site_logo
--------------------------------------------------------- */
.site_logo {
  position: fixed;
  z-index: 10;
  top: 30px;
  left: 35px;
  width: 275px;
}

.site_logo .image {
  width: 100%;
}

@media (max-width: 1099px) {
  .site_logo {
    position: fixed;
    top: 30px;
    left: 35px;
    width: 165px;
  }
}

@media (max-width: 428px) {
  .site_logo {
    top: 10px;
    left: 20px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  padding: 20px 0;
  margin-top: 130px;
  background: #fff;
}

.footer .copy {
  font-size: 12px;
  text-align: center;
  color: #333;
}

@media (max-width: 767px) {
  .footer {
    padding: 15px 0;
    margin-top: 85px;
  }
}

.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}
/*# sourceMappingURL=common.css.map */