<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* reset */

html, body {
  line-height: 2;
  font-size: 14px;
}
a {
  cursor: pointer;
  color: #52B0C4;
}


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

/* responsive */
.imgResponsive {
  max-width: 100%;
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .hidden-pc {
    display: block;
  }
  .hidden-sp {
    display: none;
  }
  img {
    max-width: 100%;
  }
}

/* style */
.textCenter {
  text-align: center;
}



/* # styles for PC */

.user_wrapper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 40px;
}



/* ## fixed footer  */
.content_footer {
  margin-bottom: 70px;
}

.footer_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer_buttons_inner {
  max-width: 960px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
.footer_buttons_button {
  display: block;
  width: 50%;
}


/* # styles for SP */

@media screen and (max-width: 768px) {

  html, body {
    font-size: 18px;
  }
  .user_wrapper {
    width: 100vw;
  }

  /* ## fixed footer  */
  .content_footer {
    margin-bottom: 8vw;
  }

  .footer_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .footer_buttons_inner {
    width: 100vw;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
  }
</pre></body></html>