@charset "UTF-8";
@import "reset.css";

* {
  font-family: "Microsoft JhengHei", sans-serif;
  line-height: 1;
}

body {
  background: url(../img/bg.jpg) center no-repeat;
  background-size: cover;
}

* {
  color: #3c3c3c;
}

a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}

a::hvoer {
  opacity: 0.7;
}

*::-webkit-input-placeholder{
color: #EB7A77;
}
*:-moz-placeholder {
color: #EB7A77;
}
*:-ms-input-placeholder {
/* IE10 */
color: #EB7A77;
}
textarea::-webkit-input-placeholder {
color: #3c3c3c;
}
textarea:-moz-placeholder {
color: #3c3c3c;
}
select option {
  color: #3c3c3c;
}
select.required, select.required option:first-child{
  color: #EB7A77;
}

.title {
  width: 100%;
  font-size: 72px;
  font-weight: normal;
}

.title span {
  color: #1e3979;
}

.title ~ h5 {
  width: 100%;
  display: block;
  font-size: 48px;
  font-weight: normal;
  padding-top: 10px;
  margin-bottom: 50px;
}

.title,
.title ~ h5 {
  border-left: 1px solid #3c3c3c;
  padding-left: 40px;
}

.title.center,
.title.center ~ h5 {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.subSeo {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 100px;
  letter-spacing: 5px
}

.subSeo span{
  display: inline-block;
}

.head1st {
  margin: 0 auto !important;
  padding-top: 240px !important;
}

.raceBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/race.svg) center no-repeat;
  background-size: cover;
  opacity: 0.1;
}

/***header***/
header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
}

header ul {
  width: calc(100% - 100px);
  text-align: right;
}

header ul li {
  display: inline-block;
  margin: 0 -2px;
  vertical-align: top;
}

header ul li a {
  font-size: 20px;
  padding: 60px 15px 10px 15px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

header ul li a:hover {
  background-color: #3c3c3c;
  color: #fff;
}

header h1.logo {
  position: absolute;
  top: 0;
  left: 50px;
  z-index: 100;
  height: 90px;
}

header h1.logo a {
  height: 90px;
  padding: 0;
}

header h1.logo a {
  transition: opacity 0.2s ease-in-out;
}

header h1.logo a:hover {
  opacity: 0.7;
}

header h1.logo a,
header h1.logo a img {
  display: block;
  height: calc(100% - 5px);
  width: auto;
  top: 2.5px;
}

header h1.logo a:hover {
  background-color: transparent;
}

header .nav {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
  display: none;
  background: url(../img/navIcon.svg) center no-repeat;
  background-size: 35px auto;
}

/***banner***/
.banner {
  width: 100%;
  min-height: 100vh;
}

.bannerInner {
  display: flex;
  flex-wrap: wrap;
  width: calc(95% - 50px);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  top: 90px;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
}

.bannerPic,
.bannerWord {
  width: 45%;
}

.bannerPic {
  text-align: center;
}

.bannerPic .slogan {
  margin-bottom: 50px;
}
.bannerPic .shake {
  display: inline;
  width: auto;
  height: 30px;
  min-width: 0;
  margin-right: 10px;
  animation-name: shake;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
@keyframes shake {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.bannerPic p {
  font-size: 36px;
  line-height: 1.2;
  font-weight: bold;
}

.bannerPic img {
  width: 60%;
  min-width: 400px;
  margin: 30px auto 0 auto;
}

.bannerWord p {
  font-size: 28px;
  line-height: 1.5;
}

.bannerWord a {
  color: #1e3979;
  transition: opacity 0.2s ease-in-out;
  display: inline;
}

.bannerWord a:hvoer {
  opacity: 0.7;
}

.bannerTitle {
  font-size: 56px !important;
  color: #1e3979;
}

.bannerInner .arrow {
  width: 100%;
  margin: 80px auto 30px auto;
}

.bannerInner .arrow img {
  width: 50px;
  margin: 0 auto;
  animation-name: arrowMove;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes arrowMove {
  from {
    top: -20px;
    opacity: 1;
  }

  to {
    top: 10px;
    opacity: 0;
  }
}

/***contact***/
.contact {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 150px;
}

.infoArea ol {
  list-style: none;
}

.infoArea ol {
  margin-bottom: 20px;
  width: 95%;
  margin: 0 auto;
}

.infoArea ol li img {
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.infoArea a {
  display: inline;
  font-size: 20px;
  transition: opacity 0.2s ease-in-out;
  margin-bottom: 10px;
  line-height: 25px;
}

.infoArea a:hover {
  opacity: 0.7;
}

.infoArea p,
.formArea form p {
  font-size: 28px;
  border-bottom: 1px solid #3c3c3c;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.infoArea,
.formArea {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.infoArea.block2,
.formArea.block2 {
  width: 45%;
}

.formArea form > input,
.formArea form > select,
.formArea form > textarea {
  width: calc(100% - 50px);
  display: block;
  border: 1px #c3c3c3 solid;
  border-radius: 30px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-bottom: 30px;
}

.formArea form > select {
  width: calc(100% - 10px);
}

.formArea form > textarea {
  min-height: 250px;
  margin-top: 30px;
}

.formArea form .checkBox {
  font-size: 20px;
}

.formArea form .checkBox span {
  display: inline-block;
  margin: 10px 30px 10px 0;
}

.formArea form .checkBox span input[type="checkbox"] {
  width: 20px;
  height: 20px;
  vertical-align: top;
  margin-right: 5px;
}

.formArea form .button {
  display: block;
  text-align: center;
  margin-top: 30px;
}

.formArea form .button input {
  display: inline-block;
  margin: 0 20px;
  padding: 10px 0;
  font-size: 20px;
  width: 100px;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.formArea form .button input:hover {
  background-color: #c3c3c3;
  color: #fff;
}

.submitFin{
  width: 100%;
  text-align: center;
  font-size: 24px;
}

/***stepArea***/
.stepArea {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 150px auto;
}

.stepArea .line {
  width: 1px;
  background-color: #3c3c3c;
  top: 60px;
}

.porcessArea,
.dataArea {
  width: 45%;
  max-width: 700px;
  overflow: hidden;
}

.porcessArea.blueBox ol li,
.dataArea.blueBox > div {
  background-color: #234982;
  border: 3px solid #fdd121;
  border-radius: 30px;
}

.porcessArea ol {
  width: 100%;
  margin: 0 auto;
  list-style: none;
}

.porcessArea ol li {
  width: calc(80% - 6px);
  color: #fff;
  text-align: center;
  padding: 50px 10%;
  font-size: 36px;
  line-height: 1.5;
  margin: 0 0 100px 0;
}

.porcessArea ol li span {
  display: inline-block;
  color: #fff;
}

.porcessArea ol li:after {
  content: "";
  position: absolute;
  background: url(../img/arrowRed.svg) center no-repeat;
  background-size: contain;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  left: calc(50% - 25px);
  bottom: -75px;
}

.porcessArea ol li:last-child:after {
  display: none;
}

.dataArea > div {
  margin-bottom: 50px;
  width: calc(80% - 6px);
  padding: 60px 10%;
}

.dataArea > div > h5 {
  color: #fff;
  font-size: 48px;
  font-weight: normal;
  border-bottom: 1.5px #fff solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dataArea > div ol li {
  width: calc(100% - 20px);
  color: #fff;
  list-style-position: inside;
  font-size: 36px;
  margin: 20px auto;
}

/***snsFixed***/
.snsFixed {
  position: fixed;
  right: 2.5%;
  bottom: 30px;
  width: 30px;
}

.snsFixed a {
  transition: opacity 0.7 ease-in-out;
  margin: 30px auto;
}

.snsFixed a:hover {
  opacity: 0.7;
}

.snsLine {
  width: 1px;
  height: 30px;
  background-color: #3c3c3c;
  margin: 0 auto;
}

/***footer***/
.footerLogo {
  text-align: center;
  border-top: 1px solid #3c3c3c;
  width: 80%;
  margin: 150px auto 0 auto;
  padding: 10px 0;
}

.footerLogo p {
  margin: 5px auto;
}
.footerLogo p:nth-last-child(2) {
  margin-top: 20px;
}
.footerLogo p span{
  display: inline-block;
}

.footerLogo img {
  max-width: 250px;
  width: 70%;
  margin: 20px auto;
}

.footerLogo p a {
  color: #1e3979;
}

.footerLogo p a:hover {
  opacity: 0.7;
}

#copyright {
  text-align: center;
  font-size: 10px;
  padding: 10px 0;
}

@media only screen and (max-width: 1400px) {
  .bannerWord p {
    font-size: 24px;
  }

  .bannerTitle {
    font-size: 36px !important;
  }
}

@media only screen and (max-width: 1000px) {
  .bannerWord p {
    font-size: 20px;
  }

  .bannerTitle {
    font-size: 32px !important;
  }
}

@media only screen and (max-width: 770px) {
  .title {
    font-size: 48px;
  }

  .title ~ h5 {
    font-size: 36px;
  }

  .title,
  .title ~ h5 {
    padding-left: 20px;
  }

  .subSeo {
    font-size: 24px;
  }

  .head1st {
    padding-top: 120px !important;
  }

  /***head***/
  header h1.logo {
    position: relative;
    margin: 0 auto;
    height: 70px;
    left: 0;
    text-align: center;
  }

  header h1.logo a {
    display: inline-block;
  }

  header h1.logo a img {
    margin: 0 auto;
  }

  header .nav {
    display: block;
  }

  header ul {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.85);
    padding-top: 180px !important;
  }

  header ul li {
    display: block;
    width: 100%;
    text-align: center;
  }

  header ul li a {
    padding: 20px 0;
  }

  .bannerPic,
  .bannerWord {
    width: 100%;
  }
  .bannerPic .shake {
    margin-bottom: 0;
  }
  .bannerPic img {
    margin-bottom: 30px;
  }

  .bannerWord {
    max-width: 400px;
    margin: 0 auto;
  }

  .bannerWord .bannerTitle {
    text-align: center;
  }

  .porcessArea,
  .dataArea {
    width: 100%;
    margin: 0 auto;
  }

  .dataArea {
    margin-top: 50px;
  }

  .stepArea .line {
    display: none;
  }

  .dataArea > div > h5 {
    font-size: 36px;
  }

  .porcessArea ol li,
  .dataArea > div ol li {
    font-size: 24px;
  }

  .infoArea {
    margin-bottom: 100px;
  }

  .infoArea.block2,
  .formArea.block2 {
    width: 100%;
  }
  .footerLogo p span{
    display: block;
    opacity: 0;
    pointer-events: none;
    margin-top: -10px;
  }
}

@media only screen and (max-width: 499px) {
  header h1.logo {
    position: relative;
    margin: 0 auto;
    height: 60px;
    left: 0;
    text-align: left;
  }

  header h1.logo a img {
    margin: 0 auto 0 5px;
  }

  header .nav {
    width: 60px;
    height: 60px;
  }
  .bannerPic .shake {
    height: 24px;
  }
  .bannerPic p {
    font-size: 28px;
  }

  .bannerPic img {
    min-width: 0;
    width: 100%;
  }

  .formArea form .button input {
    margin: 0 10px;
  }
}

.showInLeft li {
  left: -150%;
  opacity: 0;
}

.showInRight div {
  right: -150%;
  opacity: 0;
}

/***data***/
.dataAreaIn {
  width: 100%;
}

.dataAreaInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.dataBox {
  width: 45%;
  background-color: #fff;
  border: 1px solid #1e3979;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.dataBox h5 {
  width: 100px;
  background-color: #1e3979;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 48px;
  padding: 100px 0;
  font-weight: normal;
  line-height: 1.5;
}

.dataBox ol {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: calc(100% - 180px);
  font-size: 20px;
  padding: 0 40px;
}

.dataBox ol li {
  display: block;
  width: 100%;
  line-height: 2;
}

@media only screen and (max-width: 1000px) {
  .dataBox {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 499px) {
  .dataBox h5 {
    width: 100%;
    line-height: 1;
    padding: 25px 0;
    font-size: 36px;
  }

  .dataBox h5 br {
    display: none;
  }

  .dataBox ol {
    width: calc(100% - 40px);
    padding: 50px 20px;
  }
}

/***porcess***/
.porcessAreaIn {
  width: 100%;
}

.porcessAreaInner {
  width: 100%;
  max-width: 1400px;
}

.porcessAreaInner ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.porcessAreaInner ol li {
  width: calc(45% - 20px);
  text-align: center;
  border: 1px solid #1e3979;
  background-color: #fff;
  border-radius: 30px;
  font-size: 24px;
  padding: 35px 10px;
  margin-bottom: 30px;
}

.porcessAreaInner ol li a {
  display: inline;
  color: #1e3979;
}

.porcessAreaInner ol li img {
  width: auto;
  height: 150px;
  margin: 0 auto 30px auto;
}

.porcessAreaInner ol li em {
  position: absolute;
  font-size: 48px;
  top: 5px;
  left: 15px;
  font-style: normal;
}

@media only screen and (max-width: 1000px) {
  .porcessAreaInner ol li img {
    height: 100px;
  }
}

@media only screen and (max-width: 770px) {
  .porcessAreaInner ol li {
    width: calc(100% - 20px);
  }
}

.upToDown {
  top: -30px;
  opacity: 0;
}
