@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**ループ**/
@-webkit-keyframes loopLeft {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -2380px 0px;
  }
}
@-moz-keyframes loopLeft {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -2380px 0px;
  }
}
/**スピン**/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  max-height: 999999px;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a {
  outline: none;
  text-decoration: none !important;
  color: #676767 !important;
}

a:hover {
  color: #E4B667;
}

a:focus,
*:focus {
  outline: none;
}

img {
  display: block;
}

a img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a img:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a.color {
  color: #3b9ae0 !important;
}

iframe {
  margin: 0px auto;
  display: block;
}

@media screen and (min-width: 1171px) {
  i {
    margin: 0 5px 0 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  i {
    margin: 0 5px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  i {
    margin: 0 7px 0 0;
  }
}
@media screen and (max-width: 767px) {
  i {
    margin: 0 8px 0 0;
  }
}

svg {
  display: inline-block !important;
  position: relative;
  font-size: 0.8em !important;
  top: -1px;
}
@media screen and (min-width: 1171px) {
  svg {
    margin: 0 5px 0 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  svg {
    margin: 0 5px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  svg {
    margin: 0 7px 0 0;
  }
}
@media screen and (max-width: 767px) {
  svg {
    margin: 0 8px 0 0;
  }
}

strong {
  font-weight: bold;
}

em {
  font-weight: bold;
  color: #E4B667;
}

body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  font-family: "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
  color: #57707d;
}
@media screen and (min-width: 1171px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }
}
body#download {
  background: url(../images/bg.jpg) no-repeat fixed;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0 1px 3px #eee inset;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: 1px solid #E4B667;
  box-shadow: 0 1px 3px #ddd inset;
  box-shadow: 0 0 5px #f0d5a8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

button[type="submit"] {
  width: 30%;
  margin: 0 auto;
  padding: 15px 20px;
  border: 0;
  border-radius: 2px;
  display: inline-block;
  background: #16D488;
  text-align: center;
  cursor: pointer;
  color: #fff;
}

button[type="submit"]:hover {
  background: #E4B667;
}

select {
  margin: 0 5px 0 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: 0 1px 3px #eee inset;
  box-sizing: border-box;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
select option {
  font-family: "メイリオ", Meiryo, sans-serif;
}

select:focus {
  border: 1px solid #E4B667;
  box-shadow: 0 1px 3px #ddd inset;
  box-shadow: 0 0 5px #f0d5a8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

textarea {
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
}

@media screen and (min-width: 768px) and (max-width: 990px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
  .sp {
    display: none !important;
  }
}

span.err {
  color: red;
  background-color: yellow;
}

span.disclose {
  color: white;
  background-color: red;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 11px;
  margin-left: 5px;
}

.dragon-line {
  width: 100%;
  height: 170px;
  background: url(../images/dragon_line.png) repeat-x;
  position: fixed;
  display: none;
}

.wrapper {
  z-index: 10;
}
@media screen and (min-width: 1171px) {
  .wrapper {
    width: 1200px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper {
    width: 90%;
    margin: auto;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper {
    width: 100%;
    padding: 4em 0;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 4em 0;
  }
}
.wrapper .wrap-main {
  overflow: hidden;
  text-align: center;
  position: relative;
  color: #fff;
}
@media screen and (min-width: 1171px) {
  .wrapper .wrap-main {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper .wrap-main {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper .wrap-main {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrap-main {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1171px) {
  .wrapper .wrap-main .main-left {
    width: 50%;
    padding: 0 5.5em 0 0;
    float: left;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper .wrap-main .main-left {
    width: 50%;
    padding: 0 5.5em 0 0;
    float: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper .wrap-main .main-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrap-main .main-left {
    width: 100%;
  }
}
@media screen and (min-width: 1171px) {
  .wrapper .wrap-main .main-left h1 {
    margin: 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper .wrap-main .main-left h1 {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper .wrap-main .main-left h1 {
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrap-main .main-left h1 {
    margin: 0 0 1em;
  }
}
.wrapper .wrap-main .main-left h1 img {
  max-width: 90%;
  margin: 0 auto;
}
.wrapper .wrap-main .main-left .main-left-content {
  font-size: 1.4em;
}
@media screen and (min-width: 1171px) {
  .wrapper .wrap-main .main-left .main-left-content .description {
    padding: 2.5em 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper .wrap-main .main-left .main-left-content .description {
    padding: 2.5em 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper .wrap-main .main-left .main-left-content .description {
    padding: 1.5em 0 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrap-main .main-left .main-left-content .description {
    padding: 1.5em 0 0.5em;
  }
}
.wrapper .wrap-main .main-left .main-left-content .now {
  padding: 0.75em 1em;
  border: 1px solid #fff;
  font-weight: box-shadow;
  text-align: center;
}
.wrapper .wrap-main .main-left .main-left-content .app {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .wrap-main .main-left .main-left-content .app p {
  width: auto;
  margin: 0 1em 0 0;
  display: inline-block;
  float: left;
}
.wrapper .wrap-main .main-left .main-left-content .app p img {
  width: 100%;
}
.wrapper .wrap-main .main-left .main-left-content .app-img {
  width: 50%;
  margin: 2em auto;
}
.wrapper .wrap-main .main-left .main-left-content .app-img img {
  width: 100%;
}
@media screen and (min-width: 1171px) {
  .wrapper .wrap-main .main-right {
    width: 40%;
    padding: 0 0;
    float: right;
  }
}
@media screen and (min-width: 991px) and (max-width: 1170px) {
  .wrapper .wrap-main .main-right {
    width: 40%;
    padding: 0 0;
    float: right;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .wrapper .wrap-main .main-right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper .wrap-main .main-right {
    width: 100%;
  }
}
.wrapper .wrap-main .main-right img {
  width: 100%;
}

footer {
  margin: 50px 0 0;
}
footer p {
  padding: 10px 0;
  text-align: center;
  font-size: 0.9em;
}
