@keyframes shakingY {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-4px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  font-family: Roboto, "Noto Sans TC", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}
html.noScroll {
  position: fixed;
  width: 100%;
  height: 100%;
}
html:not(.noScroll) {
  overflow-x: hidden;
}
html:not(.noScroll) body {
  position: relative;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
body.normal {
  display: flex;
  flex-direction: column;
}

input, textarea, select {
  outline: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.DefaultA {
  display: block;
  text-decoration: none;
}

.DefaultImg {
  display: block;
  max-width: 100%;
  height: auto;
}

.DefaultButton {
  display: block;
  border: unset;
  cursor: pointer;
}

.headerBox {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9995;
}

.headerLogo {
  width: 45px;
}
@media screen and (min-width: 768px) {
  .headerLogo {
    width: 55px;
  }
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
}
@media screen and (min-width: 768px) {
  .headerInner {
    padding: 5px 54px;
  }
}

.headerNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1200px) {
  .headerNav {
    margin: 0 100px 0 0;
  }
}
@media screen and (min-width: 1700px) {
  .headerNav {
    margin: 0 400px 0 0;
  }
}

.headerNavItem {
  color: #7F7F7F;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .headerNavItem {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .headerNavItem:hover {
    color: #4e4e4e;
  }
}
.headerNavItem:not(:last-child) {
  padding: 0 13px 0 0;
  margin: 0 13px 0 0;
}
.headerNavItem:not(:last-child)::after {
  background: #7F7F7F;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% + 0px);
  transform: translateY(-50%);
  width: 2px;
  height: 25px;
}
.headerNavItem.login {
  color: #6EB2FB;
}
@media screen and (min-width: 1200px) {
  .headerNavItem.login:hover {
    color: #48a0fd;
  }
}

.PopupBox {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.25s 0.7s ease;
  pointer-events: none;
}
.PopupBox.active {
  transition: all 0.2s ease-in-out;
  pointer-events: auto;
  opacity: 1;
  z-index: 9999;
}
.PopupBox.active .PopupCase {
  opacity: 1;
  transform: scale(1);
}

.PopupCase {
  background: #FFFFFF;
  transition: opacity 0.25s 0.2s ease, transform 0.3s 0.3s ease;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  text-align: center;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.5);
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 350px;
  max-height: 90%;
  padding: 10px 20px 55px;
}

.PopupTitle {
  color: #666666;
  border-bottom: 1px solid #E2E2E2;
  font-size: 20px;
  font-weight: 700;
  padding: 0 5px 10px;
  margin: 0 0 25px;
}
@media screen and (min-width: 768px) {
  .PopupTitle {
    font-size: 24px;
  }
}

.PopupPara {
  margin: 0 0 53px;
}
@media screen and (min-width: 768px) {
  .PopupPara {
    font-size: 18px;
  }
}

.PopupBtn1 {
  color: #FFFFFF;
  background: linear-gradient(to right, #92C5FC, #6DB2F9);
  position: relative;
  overflow: hidden;
  border-radius: 999rem;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 40px);
  padding: 8px 5px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .PopupBtn1 {
    font-size: 18px;
  }
}
.PopupBtn1::after {
  background: #6DB2F9;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s ease;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .PopupBtn1:hover::after {
    opacity: 1;
  }
}
.PopupBtn1 .text {
  position: relative;
  z-index: 2;
}

.MainBox {
  width: 100%;
  flex: 1;
}

.Container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .Container {
    padding: 0 40px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .Container {
    padding: 0 50px;
    max-width: 1726px;
  }
}

.mainCarouselBox {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .mainCarouselBox {
    height: 400px;
  }
}
.mainCarouselBox:not(.access) {
  padding: 55px 0 0;
}
@media screen and (min-width: 768px) {
  .mainCarouselBox:not(.access) {
    padding: 65px 0 0;
  }
}

.mainCarousel {
  width: 100%;
  height: 100%;
}
.mainCarousel .owl-stage-outer {
  height: 100%;
}
.mainCarousel .owl-stage {
  height: 100%;
}
.mainCarousel .owl-item {
  height: 100%;
}
.mainCarousel .owl-dots {
  margin: 0 0 -8px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  bottom: 5px;
}
@media screen and (min-width: 1200px) {
  .mainCarousel .owl-dots {
    bottom: 17px;
  }
}
.mainCarousel .owl-dots .owl-dot {
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .mainCarousel .owl-dots .owl-dot:hover span {
    background: #00FFF6;
  }
}
.mainCarousel .owl-dots .owl-dot.active span {
  background: #00FFF6;
}
.mainCarousel .owl-dots .owl-dot span {
  background: #FFFFFF;
  margin: 0;
}
.mainCarousel .owl-dots .owl-dot:not(:last-child) {
  margin-right: 10px;
}

.mainCarouselItem {
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .mainCarouselItem img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.mainCarouselAppBox {
  color: #FFFFFF;
  text-shadow: -1px -1px 0 #4D64B3, 1px -1px 0 #4D64B3, -1px 1px 0 #4D64B3, 1px 1px 0 #4D64B3;
  position: absolute;
  text-align: center;
  max-width: 132px;
  right: 52px;
  bottom: 8px;
  z-index: 50;
}
@media screen and (max-width: 991px) {
  .mainCarouselAppBox {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mainCarouselAppTxt {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .mainCarouselAppTxt {
    font-size: 24px;
  }
}

.idxH1 {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
}

.idxBlock {
  padding: 40px 0;
}
.idxBlock.style1 {
  background: #FBFAFA;
}

.idxBlockTopic {
  color: #393E41;
  position: relative;
  margin: 0 0 32px;
  padding: 0 0 0 22px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .idxBlockTopic {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .idxBlockTopic {
    font-size: 24px;
  }
}
.idxBlockTopic::after {
  background: #66B3FF;
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 35px;
  top: -2px;
  left: 0;
}

.idxBlockKind {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .idxBlockKind {
    font-size: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .idxBlockKind {
    font-size: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.idxBlockKindItem {
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .idxBlockKindItem:hover .idxBlockKindItemDescription {
    top: 0;
  }
}

.idxBlockKindItemPic {
  aspect-ratio: 2/3;
}
.idxBlockKindItemPic img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.idxBlockKindItemInfo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.idxBlockKindItemTitle, .idxBlockKindItemDescription {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .idxBlockKindItemTitle, .idxBlockKindItemDescription {
    position: absolute;
    left: 0;
  }
}

.idxBlockKindItemTitle {
  background: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  padding: 9px;
}
@media screen and (min-width: 1200px) {
  .idxBlockKindItemTitle {
    bottom: 0;
  }
}

.idxBlockKindItemDescription {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .idxBlockKindItemDescription {
    padding: 15px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .idxBlockKindItemDescription {
    transition: top 0.4s ease-in-out;
    top: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .idxBlockIntro {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .idxBlockIntro.reverse .idxBlockPicBox {
    order: 2;
  }
}
@media screen and (min-width: 1200px) {
  .idxBlockIntro.reverse .idxBlockInfoBox {
    order: 1;
  }
}

@media screen and (max-width: 1199px) {
  .idxBlockPicBox {
    width: fit-content;
    margin: 0 auto 30px;
  }
}

@media screen and (min-width: 1200px) {
  .idxBlockInfoBox {
    flex: 1;
    padding: 16px 0 0;
  }
}

.idxBlockInfo {
  color: #7C7C7C;
}

.idxBlockInfoTitle {
  color: #626262;
  font-size: 18px;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .idxBlockInfoTitle {
    font-size: 20px;
  }
}

.idxBlockInfoPara, .idxBlockInfoList {
  margin: 0;
  font-weight: 700;
  line-height: 2.3;
}

.idxBlockInfoListBox {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .idxCompanyPicBox {
    max-width: 759px;
    width: 49%;
  }
}

@media screen and (min-width: 1200px) {
  .idxCompanyInfoBox {
    margin: 0 6% 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .idxWarningBlock {
    padding: 75px 0;
  }
}

@media screen and (min-width: 1200px) {
  .idxWarningPicBox {
    margin: 0 calc(3% + 8px) 0 0;
    max-width: 759px;
    width: 49%;
  }
}
.idxWarningPicBox img {
  margin: 0 auto;
}

.serviceBtn {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 60px;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .serviceBtn {
    right: 40px;
    bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .serviceBtn {
    right: 65px;
    bottom: 40px;
    width: 115px;
  }
  .serviceBtn:hover {
    animation: shakingY 0.8s ease-out;
  }
}

.footerBox {
  background: #393E41;
  color: #FFFFFF;
  width: 100%;
}

.footerInner {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .footerInner {
    display: flex;
    align-items: flex-start;
  }
}
.footerInner:not(.nologin) {
  padding: 9px 20px 114px;
}
.footerInner.nologin {
  text-align: center;
  justify-content: center;
  padding: 16px 20px 34px;
}
.footerInner.nologin .footerBlock {
  margin: 0 auto;
  max-width: 400px;
}
.footerInner.nologin .footerBlockTitle::after {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .footerBlock {
    flex: 1;
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .footerBlock:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .footerBlock:not(:last-child) {
    margin: 0 100px 0 0;
  }
}
@media screen and (min-width: 1700px) {
  .footerBlock:not(:last-child) {
    margin: 0 200px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footerBlock:not(:last-child) {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .footerBlock.info .footerBlockTitle {
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footerBlock.app .footerBlockTitle {
    margin: 0 0 36px;
  }
}

.footerBlockTitle {
  position: relative;
  font-weight: 700;
  padding: 5px 0;
  margin: 0 0 15px;
}
@media screen and (min-width: 768px) {
  .footerBlockTitle {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .footerBlockTitle {
    font-size: 24px;
  }
}
.footerBlockTitle::after {
  background: #676767;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: calc(100% - 97px);
  height: 2px;
}

@media screen and (min-width: 1200px) {
  .footerInfo {
    font-size: 18px;
  }
}
.footerInfo:not(:last-child) {
  margin: 0 0 15px;
}
.footerInfo a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 1200px) {
  .footerInfo a:hover {
    opacity: 0.6;
  }
}

.footerAppBox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .footerAppBox {
    padding: 0 0 0 11px;
  }
}

.footerApp {
  width: fit-content;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .footerApp {
    padding: 5px 0;
  }
}
@media screen and (max-width: 575px) {
  .footerApp {
    padding: 5px 0;
  }
}
.footerApp:not(:last-child) {
  margin-right: 9px;
}

.footerFirstLogin {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  text-align: center;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 20px 15px;
}

.AccessBox {
  margin: 0 auto;
  max-width: calc(100% - 40px);
  padding: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .AccessBox {
    max-width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1200px) {
  .AccessBox {
    max-width: 1000px;
  }
}

.AccessTopicBox {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .AccessTopicBox {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .AccessTopicBox {
    padding: 0 20px;
  }
}

.AccessTopicLogo {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  width: 40px;
}
@media screen and (min-width: 375px) {
  .AccessTopicLogo {
    width: 55px;
  }
}
@media screen and (min-width: 768px) {
  .AccessTopicLogo {
    left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .AccessTopicLogo {
    left: 0;
    width: 65px;
  }
}

.AccessTopic {
  color: #666666;
  margin: 0;
  padding: 34px 0;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .AccessTopic {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .AccessTopic {
    font-size: 36px;
  }
}

.AccessFormBox {
  background: #FFFFFF;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.AccessFormInner {
  margin: 0 auto;
  padding: 20px 20px 40px;
  max-width: 340px;
}

.AccessBlockBox {
  margin: 0 0 44px;
}

.AccessBlock {
  position: relative;
  z-index: 100;
}
.AccessBlock:not(:last-child) {
  margin: 0 0 25px;
}
.AccessBlock:not(.error) .AccessBlockError {
  display: none;
}

.AccessBlockTitle {
  color: #666666;
  display: block;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .AccessBlockTitle {
    font-size: 18px;
  }
}
.AccessBlockTitle .notice {
  color: #999999;
  font-size: 12px;
}

.AccessBlockFake {
  border: 1px solid #D5D5D5;
  background: #F7F7F7;
  border-radius: 5px;
  padding: 10px 15px;
}

.AccessBlockIpt {
  color: #666666;
  background: transparent;
  border: unset;
  outline: unset;
  width: 100%;
  font-size: 14px;
}
.AccessBlockIpt::placeholder {
  color: #A2A2A2;
  font-size: inherit;
}

.AccessBlockError, .AccessError {
  color: #F45454;
  font-size: 14px;
  padding: 0 15px;
}

.AccessError {
  text-align: center;
  margin: 0 0 10px;
}
.AccessError:not(.error) {
  display: none;
}

.AccessBlockPopupBox {
  background: #FFFFFF;
  color: #929292;
  position: absolute;
  overflow: hidden;
  transition: all 0.2s ease;
  z-index: 101;
  border-radius: 15px;
  left: 0;
  top: 100%;
  width: 100%;
  font-size: 14px;
}
.AccessBlockPopupBox:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.AccessBlockPopupTopicBox {
  border-bottom: 1px solid #929292;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.AccessBlockPopupClose {
  background: transparent;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1200px) {
  .AccessBlockPopupClose:hover {
    transform: rotate(90deg);
  }
}

.AccessBlockPopupContScroll {
  max-height: 304px;
  padding: 0 20px 24px;
}

.AccessBlockPopupItem {
  border-bottom: 1px solid #929292;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 14px 0 6px;
}
@media screen and (min-width: 1200px) {
  .AccessBlockPopupItem:hover {
    opacity: 0.6;
  }
}

.AccessBlockPopupItemTit {
  flex: 1;
  margin: 0 5px 0 0;
}

.AccessBlockPopupItemVal {
  flex-shrink: 0;
}

.AccessFormBtn {
  color: #FFFFFF;
  background: linear-gradient(to right, #69B1FB, #2161AB);
  position: relative;
  overflow: hidden;
  border-radius: 999rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  width: calc(100% - 30px);
  padding: 8px 5px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .AccessFormBtn {
    font-size: 18px;
  }
}
.AccessFormBtn::after {
  background: #2161AB;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s ease;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .AccessFormBtn:not(.disable):hover::after {
    opacity: 1;
  }
}
.AccessFormBtn .text {
  position: relative;
  z-index: 2;
}
.AccessFormBtn.disable {
  background: gray;
  cursor: not-allowed;
}
.AccessFormBtn.none {
  display: none;
}

.loginPhoneBlock {
  z-index: 101;
}

.registerFrontBtn {
  margin: 0 0 30px;
}
.registerFrontBtn + .AccessBlockError {
  margin: -20px 0 15px;
}

.registerPhoneBlock {
  z-index: 101;
}
.registerPhoneBlock .AccessBlockPopupBox {
  top: calc(100% - 50px);
}
@media screen and (min-width: 1200px) {
  .registerPhoneBlock .AccessBlockPopupBox {
    top: calc(100% - 70px);
  }
}

/*# sourceMappingURL=style.css.map */
