@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Poppins:ital,wght@0,400;0,600;0,700;1,600&display=swap");
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;
}

@keyframes arrow-translateX {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes arrow-translateY-result {
  0% {
    -moz-transform: rotate(-90deg) translateX(-3px);
    -ms-transform: rotate(-90deg) translateX(-3px);
    -webkit-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
  }
  50% {
    -moz-transform: rotate(-90deg) translateX(0px);
    -ms-transform: rotate(-90deg) translateX(0px);
    -webkit-transform: rotate(-90deg) translateX(0px);
    transform: rotate(-90deg) translateX(0px);
  }
  100% {
    -moz-transform: rotate(-90deg) translateX(-3px);
    -ms-transform: rotate(-90deg) translateX(-3px);
    -webkit-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
  }
}
html, body {
  position: relative;
  width: 100%;
  color: #333;
  font-size: 20px;
  font-family: 'Poppins', 'Noto Sans TC', '思源黑體', '微軟正黑體', sans-serif;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}

.wrap {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .container {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}

html, body, header, nav, footer, h1, h2, h3, h4, h5, p, div, span, a, input, button, ul, li, canvas, img {
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: none;
}

img {
  display: block;
}

input[type=text], input[type=email], input[type=tel], textarea {
  border: 0px solid #000;
  border-radius: 0;
  background: #fff;
  height: 30px;
  width: 100%;
  display: block;
  font-size: 0.9rem;
  font-family: 'Poppins', 'Noto Sans TC', '微軟正黑體', sans-serif;
  padding-left: 5px;
  outline: none;
  border-radius: 4px;
}

textarea {
  height: 200px;
}
@media only screen and (max-width: 768px) {
  textarea {
    width: 98%;
    height: 150px;
  }
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=radio] + label,
input[type=checkbox] + label {
  cursor: pointer;
}
input[type=radio]:checked + .radiobox:after, input[type=radio]:checked + .checkbox:after,
input[type=checkbox]:checked + .radiobox:after,
input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
}

::-webkit-input-placeholder {
  /* Chrome, Safari */
  color: #b1b1b1;
  font-size: 0.7rem;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #b1b1b1;
  font-size: 0.7rem;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #b1b1b1;
  opacity: 1;
  font-size: 0.7rem;
}

.checkbox {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 4px;
  margin-right: 5px;
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:after {
  position: absolute;
  display: block;
  content: '';
  height: 10px;
  width: 6px;
  border-bottom: 2px solid #666;
  border-right: 2px solid #666;
  border-radius: 1px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 4px;
  top: 0px;
  opacity: 0;
  transition: .2s ease-out;
}

header {
  position: relative;
  width: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 0.8rem;
  padding: 30px 0;
  transition: position .3s;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header.fixed {
  position: fixed;
  background: rgba(51, 51, 51, 0.5);
  padding: 10px 0;
}
header.white ul li:not(:last-child) a:after {
  background: #000;
}
header ul {
  display: flex;
  flex-direction: row;
  flex-grow: 2;
  align-items: center;
  justify-content: flex-end;
  margin: 0 5%;
}
header ul li {
  padding: 0 10px;
  height: 100%;
  align-items: center;
}
header ul li.kr {
  margin-left: 20px;
  position: relative;
}
header ul li.kr:hover:before {
  opacity: 1;
  -moz-transform: scale(1) translate(-50%, -50%);
  -ms-transform: scale(1) translate(-50%, -50%);
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
header ul li.kr:hover span {
  color: #333;
}
header ul li.kr:before {
  position: absolute;
  display: block;
  content: '';
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0;
  -moz-transform: scale(0.8) translate(-50%, -50%);
  -ms-transform: scale(0.8) translate(-50%, -50%);
  -webkit-transform: scale(0.8) translate(-50%, -50%);
  transform: scale(0.8) translate(-50%, -50%);
  transition: .3s;
  transform-origin: center;
  left: 50%;
  top: 50%;
}
header ul li.kr span {
  position: relative;
  display: block;
}
header ul li.hide {
  display: none;
}
header ul li.active a:before {
  position: absolute;
  display: block;
  content: '';
  z-index: -1;
  width: 100%;
  height: 5px;
  background: #FFCF5A;
  bottom: 0;
  left: 0;
}
header ul li:not(.kr):hover a span {
  transform: translateY(-2px);
}
header ul li:not(:last-child) a:after {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 60%;
  background: #fff;
  right: -10px;
}
header ul a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
header ul a span {
  transition: .2s ease-in;
}
header .mobile-menu {
  position: absolute;
  display: none;
  right: 40px;
  width: 40px;
  height: 23px;
  border-radius: 4px;
}
header .mobile-menu .hamburger {
  position: relative;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .mobile-menu .hamburger:before, header .mobile-menu .hamburger:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  transition: .3s;
}
header .mobile-menu .hamburger:after {
  bottom: 0;
}
header .mobile-menu.black .hamburger:before, header .mobile-menu.black .hamburger:after {
  background: #000;
}
header .mobile-menu.black span {
  background: #000;
}
header .mobile-menu.clicked {
  cursor: pointer;
}
header .mobile-menu.clicked span {
  width: 0;
}
header .mobile-menu.clicked .hamburger:before {
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
header .mobile-menu.clicked .hamburger:after {
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .mobile-menu span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  left: 50%;
  top: 50%;
  transition: width .5s;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 950px) {
  header ul {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 10px 0px;
  }
  header.white {
    padding: 10px 0px 20px;
  }
  header .mobile-menu {
    right: 0px;
    top: 10px;
  }
}

footer {
  background: #333;
  color: #fff;
  padding: 60px 0;
}
footer .container {
  max-width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .container:after {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
footer .logo {
  width: 170px;
  margin-bottom: 10px;
}
footer .content-1 {
  font-size: 0.7rem;
  line-height: 1.4rem;
}
footer .content-1 .address-chi {
  margin-top: 20px;
}
footer .content-1 .address-en {
  margin-bottom: 20px;
}
footer .content-2 p {
  margin-bottom: 10px;
}
footer .content-2 ul {
  font-size: 0.7rem;
  line-height: 1.4rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 30px 0;
    text-align: center;
  }
  footer .logo {
    margin: 0 auto 20px;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container:after {
    width: 90%;
    height: 1px;
    top: 47%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  footer .content-1 {
    line-height: 1rem;
  }
  footer .content-2 {
    margin-top: 40px;
  }
}

.logo {
  display: block;
  width: 22.5%;
  max-width: 270px;
  min-width: 180px;
  flex-grow: 1;
}
@media only screen and (max-width: 768px) {
  .logo {
    width: 18%;
    max-width: 180px;
    min-width: 160px;
    margin-top: 10px;
  }
}

.br {
  display: none;
}
@media only screen and (max-width: 768px) {
  .br {
    display: block;
  }
}

br.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

br.mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.mobile {
    display: block;
  }
}

.scroll-top {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #aaa;
  z-index: 99;
  cursor: pointer;
}
.scroll-top span {
  position: relative;
  display: block;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.scroll-top span:before {
  position: absolute;
  display: block;
  content: '';
  width: 50%;
  height: 2px;
  background: #aaa;
  top: 45%;
  left: 3px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.scroll-top span:after {
  position: absolute;
  display: block;
  content: '';
  width: 50%;
  height: 2px;
  background: #aaa;
  top: 45%;
  right: 3px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .scroll-top {
    width: 40px;
    height: 40px;
  }
}

a:link, a:visited, a:active, a:hover {
  color: #fff;
  text-decoration: none;
}

.section {
  width: 100%;
  padding: 60px 0;
}
.section.show h4, .section.show h5 {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.section h4 {
  color: #c50030;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  transition: opacity .3s .3s ease-in, transform .3s .5s ease-in;
}
.section h5 {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.2rem;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  transition: opacity .3s .3s ease-in, transform .3s .5s ease-in;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section h4 {
    margin-bottom: 15px;
  }
}

.intro {
  position: relative;
  color: #fff;
  background: #000;
  padding: 0;
  min-width: 0px;
  height: 70vh;
  overflow: hidden;
}
.intro .text-container {
  position: absolute;
  height: 100%;
  z-index: 2;
  left: 50%;
  top: 0%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.intro h3 {
  position: absolute;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  left: 0%;
  top: 35%;
}
.intro h3 span {
  display: block;
}
.intro h2 {
  position: absolute;
  bottom: 40px;
  right: 0%;
  display: flex;
  flex-direction: column;
}
.intro h2 .en {
  display: block;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 200;
  font-style: italic;
}
.intro h2 .chi {
  display: block;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.intro h2 .name {
  width: 190px;
  padding-top: 8%;
  background: url("../img/logo-noarrow.svg") center/contain no-repeat;
  font-size: 0;
  margin-left: 7px;
}
.intro h2 .icon {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/icon-arrow.svg") center/contain no-repeat;
  margin-left: 3px;
}
@media only screen and (max-width: 768px) {
  .intro {
    height: 40vh;
  }
  .intro .text-container {
    top: unset;
    bottom: 0;
    height: 35%;
    z-index: 2;
  }
  .intro h3 {
    font-size: 1rem;
    display: none;
    top: 35%;
    left: 0;
  }
  .intro h2 {
    width: 95%;
    bottom: 20px;
    right: unset;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .intro h2 .en {
    font-size: 0.9rem;
  }
  .intro h2 .chi {
    font-size: 0.9rem;
  }
  .intro h2 .name {
    width: 120px;
    padding-top: 5%;
  }
  .intro h2 .icon {
    width: 24px;
    height: 24px;
  }
}

.video-player-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  top: 0;
}

.video-player-container {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-player#videoPlayer {
  position: absolute;
  width: 150%;
  height: 150%;
  left: 50%;
  top: 50%;
  margin: 0;
  border: none;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s linear;
}
.video-player#videoPlayer.hide {
  opacity: 0;
}
@media only screen and (min-width: 1681px) {
  .video-player#videoPlayer {
    width: 170%;
    height: 170%;
  }
}
@media only screen and (max-width: 950px) {
  .video-player#videoPlayer {
    width: 170%;
    height: 170%;
  }
}
@media only screen and (max-width: 768px) {
  .video-player#videoPlayer {
    width: 170%;
    height: 170%;
    top: 35%;
  }
}

.form-loading {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: 10px;
  background: transparent;
}
.form-loading.show {
  display: block;
}
.form-loading.show .loading-circle {
  animation: spin 1s infinite linear;
}
.form-loading p {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.form-loading .loading-circle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  left: 0;
  top: 0;
  border: 5px solid rgba(197, 0, 48, 0.2);
  border-top-color: #c50030;
}

@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.section-feature .feature-content {
  display: flex;
  flex-direction: row;
  margin: 80px 0 60px;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  transition: opacity .3s .3s ease-in, transform .3s .5s ease-in;
}
.section-feature .feature-block {
  margin: 0 2%;
}
.section-feature .icon {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}
.section-feature .title {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
}
.section-feature .text {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.section-feature .learn-more {
  display: flex;
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.section-feature .learn-more:hover {
  cursor: pointer;
}
.section-feature .learn-more:hover .arrow {
  animation: arrow-translateX 1s ease-in-out infinite;
}
.section-feature .learn-more:hover p {
  color: #c50030;
}
.section-feature .learn-more p {
  margin-right: 5px;
}
.section-feature .learn-more .arrow {
  display: block;
  width: 20px;
  height: 22px;
  background: url("../img/icon-arrow.svg") center/contain no-repeat;
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  transition: .3s ease-in;
}
.section-feature.show .feature-content {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .section-feature .feature-content {
    margin: 40px 0 0px;
    flex-direction: column;
  }
  .section-feature .feature-block {
    display: flex;
    flex-direction: row;
    margin: 0;
  }
  .section-feature .feature-block:not(:last-child) {
    margin-bottom: 30px;
  }
  .section-feature .icon {
    flex: 1;
    max-width: 100px;
  }
  .section-feature .text-block {
    flex: 2;
  }
  .section-feature .title {
    margin: 10px 0;
    text-align: left;
    font-weight: 600;
  }
  .section-feature .text {
    line-height: 1.3rem;
  }
}

.section-options {
  background-color: #f2f2f2;
}
.section-options .container {
  background: url("../img/bg-options.svg") center top/65% auto no-repeat;
}
.section-options .options-content {
  display: flex;
  flex-direction: row;
  padding: 100px 20px 30px;
}
.section-options .option-block {
  position: relative;
  width: calc(100% / 4);
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
.section-options .options-1 {
  transition: opacity .3s .5s ease-in, transform .3s .5s ease-in;
}
.section-options .options-2 {
  margin-top: 100px;
  transition: opacity .3s 1s ease-in, transform .3s 1s ease-in;
}
.section-options .options-3 {
  margin-top: 200px;
  transition: opacity .3s 1.5s ease-in, transform .3s 1.5s ease-in;
}
.section-options .options-4 {
  margin-top: 300px;
  transition: opacity .3s 2s ease-in, transform .3s 2s ease-in;
}
.section-options .title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section-options .number {
  display: inline-block;
  color: #c50030;
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 5px;
}
.section-options .text {
  font-size: 1rem;
  font-weight: 600;
}
.section-options ul.option-items {
  margin-top: 15px;
  margin-left: 25px;
}
.section-options .item {
  display: block;
  font-size: 0.8rem;
  line-height: 1.5rem;
}
.section-options.show .option-block {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .section-options .container {
    background: none;
  }
  .section-options .options-content {
    padding: 20px 0px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .section-options .option-block {
    position: relative;
    display: flex;
    flex: 1;
    flex-basis: calc((100% - 40px) / 2);
    flex-direction: column;
    background: #fff;
    margin: 20px 10px;
    height: 220px;
    border-radius: 10px;
    text-align: center;
    padding: 15px 10px;
  }
  .section-options .options-1 {
    margin-top: 0;
  }
  .section-options .options-2 {
    margin-top: 0px;
  }
  .section-options .options-3 {
    margin-top: 0px;
  }
  .section-options .options-4 {
    margin-top: 0px;
  }
  .section-options .title {
    font-size: 0.9rem;
    flex-direction: column;
    margin-bottom: 10px;
    line-height: 1.2rem;
  }
  .section-options .number {
    margin-bottom: 5px;
  }
  .section-options ul.option-items {
    text-align: center;
    margin: 0;
  }
  .section-options .item {
    line-height: 1.2rem;
  }
}

.section-flow.show .flow-block {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.section-flow a {
  color: #333;
  text-decoration: underline;
}
.section-flow h5 {
  line-height: 1.5rem;
}
.section-flow h5 .icon-mail {
  display: inline-block;
  vertical-align: top;
  width: 20px;
  margin: 5px 5px 0;
}
.section-flow .flow-content {
  display: flex;
  flex-direction: row;
  margin: 40px auto 0;
  justify-content: space-between;
}
.section-flow .flow-block {
  width: calc((100% - 140px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
.section-flow .flow-1 {
  transition: opacity .3s .5s ease-in, transform .3s .5s ease-in;
}
.section-flow .flow-2 {
  transition: opacity .3s 1s ease-in, transform .3s 1s ease-in;
}
.section-flow .flow-3 {
  transition: opacity .3s 1.5s ease-in, transform .3s 1.5s ease-in;
}
.section-flow .flow-4 {
  transition: opacity .3s 2s ease-in, transform .3s 2s ease-in;
}
.section-flow .icon {
  order: 1;
  border-radius: 50%;
  background: #333;
  padding: 2%;
  width: 100%;
  max-width: 190px;
  max-height: 190px;
}
.section-flow .icon img {
  display: block;
  width: 100%;
  height: auto;
}
.section-flow .flow-1 .icon img {
  padding: 5px 0 0 5px;
}
.section-flow .flow-2 .icon img {
  padding: 5px 0 0 5px;
}
.section-flow .text-block {
  order: 2;
}
.section-flow .title {
  font-size: 1rem;
  font-weight: 600;
  margin: 15px 0 10px;
  padding-left: 5px;
  text-align: center;
}
.section-flow .time {
  font-size: 0.7rem;
  color: #e4002d;
  text-align: center;
}
.section-flow ul.flow-items {
  margin-top: 15px;
  padding-left: 5px;
}
.section-flow .item {
  display: block;
  font-size: 0.8rem;
  line-height: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .section-flow .flow-content {
    display: flex;
    width: 95%;
    flex-direction: column;
    margin: 40px auto 0;
  }
  .section-flow .flow-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .section-flow .flow-block:not(:last-child) {
    margin-bottom: 30px;
  }
  .section-flow .icon {
    order: 1;
    flex: 1;
    flex-basis: 25%;
    margin-right: 4%;
  }
  .section-flow .text-block {
    flex-basis: 70%;
  }
  .section-flow .title {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
  }
  .section-flow .time {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
  }
  .section-flow ul.flow-items {
    margin-top: 5px;
  }
  .section-flow .item {
    line-height: 1rem;
  }
}

.section-results {
  background-color: #f2f2f2;
}
.section-results.show .result-block {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.section-results .container {
  background: url("../img/bg-global.svg") center/contain no-repeat;
}
.section-results h4 {
  margin-bottom: 30px;
}
.section-results .result-contents {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.section-results .result-block {
  margin: 50px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
.section-results .result-1 {
  transition: opacity .3s .5s ease-in, transform .3s .5s ease-in;
}
.section-results .result-2 {
  transition: opacity .3s 1s ease-in, transform .3s 1s ease-in;
}
.section-results .result-3 {
  transition: opacity .3s 1.5s ease-in, transform .3s 1.5s ease-in;
}
.section-results .title {
  font-size: 1rem;
  font-weight: 600;
  flex-grow: 2;
  flex-shrink: 1;
  flex-basis: 100%;
  margin-bottom: 10px;
}
.section-results .number {
  font-size: 5rem;
  font-weight: 500;
}
.section-results .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
  justify-content: flex-end;
}
.section-results .arrow {
  position: relative;
  display: block;
  max-width: 40px;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  animation: arrow-translateY-result 1s ease-in-out infinite;
}
.section-results .arrow img {
  width: 100%;
  height: auto;
}
.section-results .unit {
  display: block;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .section-results .result-block {
    margin: 0px auto 20px;
  }
  .section-results .result-block:last-child {
    margin: 0px auto 20px;
  }
  .section-results .title {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  .section-results .number {
    font-size: 2.6rem;
  }
  .section-results .text {
    margin-left: 5px;
  }
  .section-results .arrow {
    width: 20px;
  }
  .section-results .unit {
    font-size: 0.7rem;
    margin-top: 5px;
  }
}

.section-portfolio.show .portfolio-block, .section-portfolio.show .more-block {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.section-portfolio .container {
  display: flex;
  flex-direction: column;
}
.section-portfolio .portfolio-block {
  padding: 20px 0 10px;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  transition: opacity .3s .3s ease-in, transform .3s .5s ease-in;
}
.section-portfolio .portfolio-slider {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.section-portfolio .portfolio-slider .project-block {
  position: relative;
  width: calc((100% - 45px) / 3);
  margin-right: 15px;
}
.section-portfolio .portfolio-slider .project-block .pic-block {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.section-portfolio .portfolio-slider .project-block .pic-block:before {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.section-portfolio .portfolio-slider .project-block .project-pic {
  position: relative;
  display: block;
  z-index: 1;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-portfolio .portfolio-slider .project-block .project-pic img {
  position: relative;
  width: 100%;
  height: auto;
}
.section-portfolio .portfolio-slider .project-block .platforms {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 70px;
  right: 10px;
  top: 10px;
}
.section-portfolio .portfolio-slider .project-block .platforms span {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 2px;
}
.section-portfolio .portfolio-slider .project-block .platforms span:nth-child(2) {
  display: block;
}
.section-portfolio .portfolio-slider .project-block .platforms .p-wadiz {
  background-image: url("../img/icons/wadiz.svg");
}
.section-portfolio .portfolio-slider .project-block .platforms .p-makuake {
  background-image: url("../img/icons/makuake.svg");
}
.section-portfolio .portfolio-slider .project-block .platforms .p-zeczec {
  background-image: url("../img/icons/zeczec.svg");
}
.section-portfolio .portfolio-slider .project-block .platforms .p-kickstarter {
  background-image: url("../img/icons/kickstarter.svg");
}
.section-portfolio .portfolio-slider .project-block .text-block {
  margin: 15px 0 20px;
  padding: 0 10px;
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.section-portfolio .portfolio-slider .project-block .project-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.section-portfolio .portfolio-slider .project-block .project-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c50030;
  margin-bottom: 10px;
}
.section-portfolio .portfolio-slider .project-block .project-description-1 {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-portfolio .portfolio-slider .project-block .project-description-2 {
  font-size: 0.7rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.section-portfolio .portfolio-slider .project-block .project-description-2 .des-1 {
  display: block;
  border-radius: 30px;
  border: 1px solid #acacac;
  padding: 0px 10px;
  color: #666;
}
.section-portfolio .portfolio-slider .project-block .project-description-2 .des-1:not(:last-child) {
  margin-right: 5px;
}
.section-portfolio .slick-dots {
  position: relative;
  display: block;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.section-portfolio .slick-dots li {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa;
}
.section-portfolio .slick-dots li:not(:last-child) {
  margin-right: 5px;
}
.section-portfolio .slick-dots li.slick-active {
  background: #666;
}
.section-portfolio .slick-dots li button {
  font-size: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: none;
}
.section-portfolio .slick-arrow {
  position: absolute;
  display: block;
  width: 30px;
  height: 50px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section-portfolio .slick-arrow:hover {
  cursor: pointer;
}
.section-portfolio .slick-arrow span {
  display: block;
  width: 100%;
  height: 100%;
}
.section-portfolio .slick-arrow span:before, .section-portfolio .slick-arrow span:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background: #aaa;
  top: 50%;
  transform-origin: center left;
}
.section-portfolio .slick-arrow span:before {
  -moz-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}
.section-portfolio .slick-arrow span:after {
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.section-portfolio .slick-arrow.slider-prev {
  left: 0;
}
.section-portfolio .slick-arrow.slider-next {
  right: 0;
}
.section-portfolio .slick-arrow.slider-next span {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.section-portfolio .more-block {
  text-align: right;
  opacity: 0;
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  transition: opacity .3s .3s ease-in, transform .3s .5s ease-in;
}
.section-portfolio .btn-portfolio-more {
  display: inline-block;
  color: #333;
  margin: 0 auto;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 0;
}
.section-portfolio .btn-portfolio-more:hover span.arrow {
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.section-portfolio .btn-portfolio-more:hover span.text::after {
  width: 100%;
}
.section-portfolio .btn-portfolio-more span.text {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 3px;
  font-size: 1rem;
}
.section-portfolio .btn-portfolio-more span.text:after {
  position: absolute;
  display: block;
  content: '';
  width: 0%;
  height: 1px;
  background: #333;
  left: 0;
  bottom: -5px;
  transition: width .3s ease-in;
}
.section-portfolio .btn-portfolio-more span.arrow {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background: url("../img/icon-arrow.svg") center/contain no-repeat;
  width: 20px;
  height: 20px;
  transition: transform .2s .3s ease-in;
}
@media only screen and (max-width: 768px) {
  .section-portfolio h4 {
    order: 1;
  }
  .section-portfolio .portfolio-block {
    order: 3;
    padding: 10px 0 10px;
  }
  .section-portfolio .portfolio-slider .project-block {
    margin-right: 0;
  }
  .section-portfolio .more-block {
    order: 2;
  }
  .section-portfolio .btn-portfolio-more {
    padding: 0 10px;
  }
  .section-portfolio .btn-portfolio-more span.arrow {
    width: 15px;
    height: 15px;
  }
}

.section-partners {
  display: none;
}

.section-contact {
  background-color: #f2f2f2;
}
.section-contact .title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section-contact .icon {
  width: 70px;
  margin-right: 10px;
}
.section-contact .line1 {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.section-contact .line2 {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}
.section-contact .form-block {
  width: 70%;
  min-width: 500px;
  margin: 50px auto;
  font-size: 0.8rem;
}
.section-contact .form-row, .section-contact .form-row-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
  line-height: 1rem;
}
.section-contact .form-row label, .section-contact .form-row-checkbox label {
  cursor: pointer;
}
.section-contact .form-row-checkbox {
  flex-direction: column;
}
.section-contact .row-block {
  width: 100%;
}
.section-contact .row-block:nth-of-type(1) {
  margin-right: 20px;
}
.section-contact .form-nation {
  display: flex;
  flex-direction: row;
}
.section-contact .check-block {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.section-contact .label-field {
  display: block;
  margin-bottom: 10px;
}
.section-contact textarea {
  resize: none;
  overflow-y: auto;
}
.section-contact .hint {
  display: block;
  font-size: 0.7rem;
  margin-top: 5px;
  color: #c50030;
}
@media only screen and (max-width: 768px) {
  .section-contact .icon {
    width: 45px;
  }
  .section-contact .line1 {
    font-size: 1.1rem;
  }
  .section-contact .line2 {
    font-size: 1.4rem;
  }
  .section-contact .form-block {
    width: 100%;
    min-width: 0;
    margin: 40px auto 0;
  }
  .section-contact .form-row {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .section-contact .row-block {
    margin-bottom: 20px;
  }
  .section-contact .label-field {
    margin-bottom: 5px;
  }
  .section-contact #formSubmit {
    margin: 20px auto 10px;
  }
}

#formSubmit {
  margin: 40px auto 20px;
  background: #fff;
  border: 1px solid #333;
  text-align: center;
  padding: 10px 30px;
  border-radius: 4px;
  transition: .3s;
}
#formSubmit:hover {
  border: 1px solid #333;
  cursor: pointer;
  background: #f2f2f2;
}

.lightbox-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 900;
}

.lightbox-wrap {
  width: 80%;
  max-width: 900px;
  position: fixed;
  font-weight: 400;
  font-style: normal;
  color: #2C2C2C;
  background: #fff;
  border-radius: 20px;
  font-size: 20px;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 901;
}
.lightbox-wrap.cross .banner {
  margin-bottom: 15px;
}
.lightbox-wrap.cross h3 {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
}
.lightbox-wrap.cross h3 strong {
  font-weight: 600;
}
.lightbox-wrap.cross h3 span {
  color: #c50030;
}
.lightbox-wrap.cross .block-content {
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 1.5rem;
  text-align: center;
  padding-bottom: 20px;
}
.lightbox-wrap.cross .block-content .text-1 {
  text-align: center;
}
.lightbox-wrap.cross .block-content .text-1 span {
  position: relative;
}
.lightbox-wrap.cross .block-content .text-1 span:before {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: #FFCF5A;
  z-index: -1;
}
.lightbox-wrap.cross .block-content .text-2 {
  font-size: 0.8rem;
  line-height: 1.2rem;
  margin: 15px 0 20px;
}
.lightbox-wrap.cross .block-content .text-2 .small {
  font-size: 0.7rem;
  display: block;
}
.lightbox-wrap.cross .lightbox-btn {
  display: inline-block;
  background: #c50030;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #c50030;
}
.lightbox-wrap.cross .lightbox-btn:hover {
  background: #fff;
  color: #c50030;
  border: 1px solid #c50030;
}
.lightbox-wrap.seminar {
  border-radius: 0;
  padding: 1%;
}
.lightbox-wrap.seminar .lightbox-close {
  right: 20px;
  top: 20px;
}
.lightbox-wrap.ces .lightbox-container {
  padding: 4% 6%;
  background: url("https://setoworks.cafe24.com/img/ces_popup/bg.png") center top/contain no-repeat;
}
.lightbox-wrap.ces .lightbox-container .lightbox-close {
  right: 20px;
  top: 20px;
}

.lightbox-container {
  position: relative;
  width: 100%;
  background-color: #fff;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.lightbox-container img {
  width: 100%;
  height: auto;
  border: 0;
}
.lightbox-container .lightbox-close {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  right: -15px;
  top: -15px;
  background: #fff;
}
.lightbox-container .lightbox-close:hover {
  cursor: pointer;
}
.lightbox-container .lightbox-close span {
  position: relative;
  display: block;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lightbox-container .lightbox-close span:before, .lightbox-container .lightbox-close span:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  top: 50%;
  left: 50%;
  border-radius: 10px;
}
.lightbox-container .lightbox-close span:before {
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightbox-container .lightbox-close span:after {
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

@media only screen and (max-width: 991px) {
  br.pc {
    display: none;
  }

  .lightbox-container .lightbox-close {
    width: 30px;
    height: 30px;
    right: -10px;
    top: -10px;
  }

  .lightbox-wrap {
    width: 90%;
    font-size: 14px;
  }
}
@keyframes bounce {
  45% {
    transform: translate3d(20%, -20%, 0);
    opacity: 0;
  }
  60% {
    transform: translate3d(-20%, 20%, 0);
    opacity: 0;
  }
  85% {
    transform: translate3d(-20%, 20%, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0%, 0%, 0);
    opacity: 1;
  }
}
