html,
body {
  position: relative;
  background-color: #fff;
  z-index: 99999;
}
html::before,
body::before {
  content: "";
  position: absolute;
  z-index: -9999;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../images/bg_icon.png"), url("../images/bg.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: auto 45%, auto 100%;
  background-position: right bottom, right bottom;
  background-attachment: fixed, fixed;
}
@media screen and (min-width: 1024px) {
  html::before,
  body::before {
    background-size: auto 55%, 1920px auto;
  }
}
@media screen and (min-width: 1920px) {
  html::before,
  body::before {
    background-size: auto 55%, cover;
  }
}

header .logo {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  header .logo {
    max-width: 600px;
    margin: 80px auto;
  }
}
header img {
  width: 100%;
  filter: drop-shadow(1px 2px 3px #000);
}
@media screen and (min-width: 768px) {
  header img {
    filter: drop-shadow(2px 4px 6px #000);
  }
}

main .box-table {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 10px 10px 10px 10px;
}
main .title {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 50px;
  color: #ffb61e;
}
main .title:first-child {
  margin-top: 0;
}
main .title .title_remark {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  color: #60d5ed;
}
main .info_box {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
main .apply_wrap {
  margin: 80px auto;
}
main .apply_wrap .apply_box {
  display: flex;
  justify-content: center;
}
main .apply_wrap .apply_box .apply_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  background-color: #ce0b44;
  border: solid 2px #fff;
  box-sizing: border-box;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: #683714 1px 1px 2px;
}
main .contact_info_wrap {
  display: flex;
  margin: 0px auto 0;
}
@media screen and (min-width: 768px) {
  main .contact_info_wrap .area-table {
    display: flex;
  }
}
main .contact_info_wrap .contact_info {
  text-align: center;
  color: #fff;
  text-shadow: #000 1px 1px 2px;
  padding: 50px 5px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 200px;
}
@media screen and (min-width: 768px) {
  main .contact_info_wrap .contact_info {
    display: flex;
    padding: 50px 15px;
    font-size: 18px;
    font-size: 1.125rem;
    text-align-last: left;
  }
}

footer {
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
  color: #2d2b2a;
  padding: 8px 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4em;
}
footer span {
  display: inline-block;
}/*# sourceMappingURL=main.css.map */