@import url("scss/plugins/jquery-ui.css");
@import url("scss/plugins/nice-select.css");
@import url("font/style.css");
@import url("../styles/css/reset.css");
@import url("../styles/css/component.css");
@font-face {
  font-family: "icomoon";
  src: url("./font/fonts/icomoon.eot?20230215");
  src: url("./font/fonts/icomoon.woff?20230215") format("woff"), url("./font/fonts/icomoon.woff2?20230215") format("woff"), url("./font/fonts/icomoon.ttf?20230215") format("truetype"), url("./font/fonts/icomoon.svg?20230215") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fw100 {
  font-weight: 100;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

.fontSub {
  font-family: "Saira Semi Condensed";
}

.FormBlockListCont input, .FormBlockListCont select, .FormBlockListCont textarea {
  background: transparent;
  outline: none;
  border: none;
}

.fakeHidden {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  font-size: 0;
}

@keyframes opacity1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html.hidden {
  overflow: hidden;
}

body {
  background: #FFFFFF;
  font-family: "Noto Sans TC";
  overflow-x: hidden;
}

/**Header**/
header {
  background: #FFFFFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 1s;
  padding: 16px 25px;
}
@media screen and (min-width: 768px) {
  header {
    padding: 28px 30px;
  }
}
@media screen and (min-width: 1180px) {
  header {
    padding: 28px 160px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  header {
    padding: 28px 100px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  header {
    padding: 28px 30px;
  }
}
header.active {
  animation: 0.8s opacity1 forwards;
}
header .headerLogo {
  color: #000000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
header span {
  display: block;
}
header .headerLogoImg {
  width: 130px;
  margin: 0 10px 0 0;
}
@media screen and (min-width: 768px) {
  header .headerLogoImg {
    width: 170px;
    margin: 0 20px 0 0;
  }
}
header .headerLogoTxt {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 -4px;
}
@media screen and (min-width: 768px) {
  header .headerLogoTxt {
    font-size: 24px;
  }
}
header .headerMenuBtn {
  overflow: hidden;
  cursor: pointer;
  width: 40px;
}
header .headerMenuBtn img {
  transition: all 0.5s;
}
header .headerMenuBtn.active img:first-child {
  width: 0;
  opacity: 0;
  height: 0;
}
header .headerMenuBtn.active img:last-child {
  width: inherit;
  opacity: 1;
}
header .headerMenuBtn.default img:last-child {
  width: 0;
  opacity: 0;
  height: 0;
}

/**Menu**/
.headerListBox {
  background-image: url("static/common/menuBg.webp");
  background-position: bottom;
  background-size: 100% auto;
  position: fixed;
  top: -101%;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: top 0.5s;
  min-height: calc(100vh - 72px);
}
@media screen and (min-width: 768px) {
  .headerListBox {
    min-height: unset;
    background: unset;
    position: unset;
    top: unset;
    left: unset;
    z-index: unset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.headerListBox.active {
  box-shadow: 3px 3px 50px 0 rgba(0, 0, 0, 0.3);
  animation: menuShadow 0.5s 0.4s forwards;
  top: 72px;
}
.headerListBox.active .menuListIcon {
  animation: 1s 0.3s menuICon forwards;
}
@keyframes menuShadow {
  to {
    z-index: 1000;
  }
}
.headerListBox .menuList {
  border-bottom: 1px solid #DAF2D9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 37px;
}
@media screen and (min-width: 768px) {
  .headerListBox .menuList {
    border-bottom: unset;
    position: relative;
    display: block;
    align-items: unset;
    justify-content: unset;
    width: -moz-fit-content;
    width: fit-content;
    transition: all 0.5s;
    padding: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .headerListBox .menuList:not(:last-child) {
    margin: 0 60px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .headerListBox .menuList:not(:last-child)::after {
    background: #CCCCCC;
    border-radius: 999rem;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    z-index: 1;
    width: 5px;
    height: 5px;
  }
}
.headerListBox .menuList .menuListTitle {
  color: #000000;
  transition: all 0.3s;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .headerListBox .menuList:hover .menuListTitle, .headerListBox .menuList.active .menuListTitle {
    color: #00B254;
  }
}
.headerListBox .menuList .menuListIcon {
  width: 27px;
}
@keyframes menuICon {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .headerListBox .menuList .menuListIcon {
    display: none;
  }
}

/**Index**/
.indexBox {
  background-repeat: repeat;
  background-size: auto;
}
.indexBox .indexCarouselBox {
  position: relative;
  cursor: grab;
  margin: 72px 0 0;
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox {
    margin: 90px 0 0 0;
  }
}
.indexBox .indexCarouselBox .indexCarouselWord {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  pointer-events: none;
  top: 80px;
}
@media screen and (max-width: 374px) {
  .indexBox .indexCarouselBox .indexCarouselWord {
    top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox .indexCarouselWord {
    top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .indexBox .indexCarouselBox .indexCarouselWord {
    top: 150px;
  }
}
.indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordTopic {
  color: #FFFFFF;
  background: #00A94F;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999rem;
  font-family: "Saira Semi Condensed";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.35px;
  padding: 4px 30.5px;
  margin: 0 auto 28px;
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordTopic {
    margin: 0 auto 26px;
  }
}
.indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordSlogan {
  color: #FFFFFF;
  font-family: "Saira Semi Condensed";
  font-weight: 600;
  font-size: 50px;
  max-width: 325px;
  line-height: 48px;
  margin: 0 auto 7px;
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordSlogan {
    max-width: 315px;
  }
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordSlogan {
    font-size: 70px;
    max-width: 700px;
    line-height: 80px;
    margin: 0 auto 9px;
  }
}
@media screen and (min-width: 991px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordSlogan {
    font-size: 78px;
    line-height: 78px;
    max-width: 820px;
  }
}
@media screen and (min-width: 1024px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordSlogan {
    font-size: 78px;
  }
}
.indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordTitle {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 28px;
  margin: 0;
}
@media screen and (min-width: 991px) {
  .indexBox .indexCarouselBox .indexCarouselWord .indexCarouselWordTitle {
    font-size: 40px;
  }
}
.indexBox .indexCarouselBox .indexCarousel {
  position: relative;
  width: 100%;
  margin: 0;
}
.indexBox .indexCarouselBox .indexCarousel .owl-stage-outer .owl-stage .owl-item {
  width: 100%;
}
.indexBox .indexCarouselBox .indexCarousel .owl-stage-outer .owl-stage .owl-item img {
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-stage-outer .owl-stage .owl-item img {
    width: auto;
    height: 550px;
    min-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-stage-outer .owl-stage .owl-item img {
    min-height: 700px;
    height: 700px;
    min-width: 100%;
    width: auto;
  }
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  animation: owlDot 1.1s forwards;
  max-width: calc(100% - 40px);
  top: 360px;
}
@keyframes owlDot {
  from {
    transform: translate(-50%, 10%);
  }
  to {
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 374px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-dots {
    top: 340px;
  }
}
@media screen and (min-width: 768px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-dots {
    top: 430px;
  }
}
@media screen and (min-width: 991px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-dots {
    top: 490px;
  }
}
@media screen and (min-width: 1024px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-dots {
    top: 490px;
  }
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot {
  transition: all 0.3s;
  transform-origin: center;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot:not(:last-child) {
  margin: 0 30px 0 0;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot::after {
  transition: width 0.7s;
  background: linear-gradient(to right, #FFFFFF, transparent);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  width: 1px;
  left: 0;
  z-index: 1;
  height: 2px;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot span {
  color: #FFFFFF;
  opacity: 0.5;
  font-family: "Saira Semi Condensed";
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.35px;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot.active {
  position: relative;
  margin: 0 105px 0 0;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot.active span {
  opacity: 1;
}
.indexBox .indexCarouselBox .indexCarousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  left: calc(100% + 15px);
  width: 70px;
}
@media screen and (min-width: 991px) {
  .indexBox .indexCarouselBox .indexCarousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    left: 60px;
    width: calc(100% - 120px);
  }
  .indexBox .indexCarouselBox .indexCarousel .owl-nav button {
    background: rgba(255, 255, 255, 0.3);
    text-align: center;
    border-radius: 999rem;
    transition: all 0.3s;
    pointer-events: initial;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .indexBox .indexCarouselBox .indexCarousel .owl-nav button:hover {
    background: #FFFFFF;
  }
  .indexBox .indexCarouselBox .indexCarousel .owl-nav button span {
    color: #FFFFFF;
    font-size: 26px;
  }
  .indexBox .indexCarouselBox .indexCarousel .owl-nav button:hover span {
    color: #00A94F;
  }
}
.indexBox .indexServiceBox {
  position: relative;
  z-index: 5;
  transform: translateY(-70px);
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox {
    padding: 0;
  }
}
@media screen and (min-width: 1180px) {
  .indexBox .indexServiceBox {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.indexBox .indexServiceBox .indexServiceBtn {
  background: linear-gradient(135deg, #00BBDB, #0090EF);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 335px;
  height: 235px;
  border-radius: 6px;
}
@media screen and (max-width: 374px) {
  .indexBox .indexServiceBox .indexServiceBtn {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox .indexServiceBtn {
    margin: 0 auto;
    width: 400px;
  }
}
@media screen and (min-width: 991px) {
  .indexBox .indexServiceBox .indexServiceBtn {
    height: 300px;
    width: 480px;
  }
}
@media screen and (min-width: 1180px) {
  .indexBox .indexServiceBox .indexServiceBtn {
    margin: 0;
  }
}
.indexBox .indexServiceBox .indexServiceBtn.repair {
  background: linear-gradient(135deg, #00B254, #00803C);
}
.indexBox .indexServiceBox .indexServiceBtn:not(:last-child) {
  margin: 0 auto 25px;
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox .indexServiceBtn:not(:last-child) {
    margin: 0 auto 25px;
  }
}
@media screen and (min-width: 1180px) {
  .indexBox .indexServiceBox .indexServiceBtn:not(:last-child) {
    margin: 0 30px 0 0;
  }
}
.indexBox .indexServiceBox .indexServiceBtn:hover {
  transform: translate(0, -10px);
  box-shadow: 0 15px 15px -6px rgba(0, 0, 0, 0.3);
}
.indexBox .indexServiceBox .indexServiceBtn span {
  display: block;
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnBg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 156px;
}
@media screen and (max-width: 374px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnBg {
    width: 130px;
  }
}
.indexBox .indexServiceBox .indexServiceBtn.repair .indexServiceBtnBg {
  right: -18px;
  bottom: -21px;
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord {
  position: absolute;
  height: 100%;
  overflow-x: hidden;
  z-index: 1;
  top: 30px;
  left: 40px;
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord {
    top: 30px;
    left: 40px;
  }
}
@media screen and (min-width: 991px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord {
    top: 55px;
    left: 60px;
  }
}
@media screen and (min-width: 1180px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord {
    top: 50px;
  }
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordTitle {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordTitle {
    font-size: 28px;
  }
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordBrief {
  color: #FFFFFF;
  opacity: 0.6;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.35px;
  margin: 10px 0 44px;
}
@media screen and (min-width: 768px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordBrief {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.35px;
    margin: 10px 0 44px;
  }
}
@media screen and (min-width: 991px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordBrief {
    margin: 10px 0 58px;
  }
}
@media screen and (min-width: 1180px) {
  .indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordBrief {
    margin: 10px 0 60px;
  }
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordGo {
  width: 45px;
  position: relative;
}
.indexBox .indexServiceBox .indexServiceBtn .indexServiceBtnWord .indexServiceBtnWordGo::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: calc(50% + 4px);
  left: 19px;
  border-radius: 999rem;
  width: 40px;
  height: 40px;
}
.indexBox .indexServiceBox .indexServiceBtn:hover .indexServiceBtnWordGo img {
  transition: all 0.5s;
  transform: translateX(10px);
}

/**Main**/
.OuterBox {
  padding: 72px 0 0 0;
}
@media screen and (min-width: 768px) {
  .OuterBox {
    padding: 90px 0 0 0;
  }
}
.OuterBox .TopicBox {
  width: 100%;
  position: relative;
}
.OuterBox .TopicBox .TopicBg {
  overflow: hidden;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicBg {
    height: 360px;
  }
}
.OuterBox .TopicBox .TopicBg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.OuterBox .TopicBox .TopicPath {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  top: 10px;
  left: 25px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicPath {
    top: 30px;
    left: 30px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .OuterBox .TopicBox .TopicPath {
    left: 160px;
  }
}
.OuterBox .TopicBox .TopicPath .TopicPathHome {
  color: #B2B2B2;
}
.OuterBox .TopicBox .TopicPath .TopicPathLine {
  color: #B2B2B2;
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicPath .TopicPathLine {
    margin: 0 15px;
  }
}
.OuterBox .TopicBox .TopicPath .TopicPathNow {
  color: #FFFFFF;
}
.OuterBox .TopicBox.msg .TopicPathNow {
  color: #006630;
}
.OuterBox .TopicBox .TopicWordBox {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  top: calc(50% - 10px);
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicWordBox {
    top: calc(50% - 10px);
  }
}
.OuterBox .TopicBox .TopicWordBox .TopicWord {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicWordBox .TopicWord {
    font-size: 40px;
    margin: 0 0 14px;
  }
}
.OuterBox .TopicBox .TopicWordBox .TopicWordDecro {
  background: #FFFFFF;
  margin: 0 auto;
  animation: opacity1 1s forwards;
  width: 24px;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .OuterBox .TopicBox .TopicWordBox .TopicWordDecro {
    width: 40px;
    height: 2px;
  }
}
.OuterBox .MainBox {
  padding: 35px 25px 55px;
  min-height: calc(100vh - 552px);
}
@media screen and (min-width: 768px) {
  .OuterBox .MainBox {
    margin: 0 auto;
    width: 700px;
    padding: 80px 60px 110px;
    min-height: 244px;
  }
}
@media screen and (min-width: 1024px) {
  .OuterBox .MainBox {
    width: 900px;
  }
}
@media screen and (min-width: 1180px) {
  .OuterBox .MainBox {
    width: 1400px;
  }
}
@media screen and (min-width: 1520px) {
  .OuterBox .MainBox {
    width: 1400px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  .OuterBox .MainBox {
    width: 1200px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .OuterBox .MainBox {
    width: 1000px;
  }
}
.OuterBox .MainBox.msg {
  background-image: url("static/common/msgBg0.webp");
  min-height: 500px;
  background-position: bottom left;
  background-size: auto;
}
@media screen and (min-width: 768px) {
  .OuterBox .MainBox.msg {
    background-position: bottom left;
    background-size: cover;
    width: 100%;
    min-height: calc(100vh - 384px);
  }
}
@media screen and (min-width: 1024px) {
  .OuterBox .MainBox.msg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (min-width: 1180px) {
  .OuterBox .MainBox.msg {
    min-height: 800px;
  }
}

/**Msg**/
.msgBox {
  background: #FFFFFF;
  position: relative;
  border-radius: 10px;
  padding: 0 30px;
  margin: 50px 0 0;
}
@media screen and (min-width: 768px) {
  .msgBox {
    padding: 0 60px;
    margin: 0 auto;
    width: 620px;
    border-radius: 10px;
  }
}
.msgBox::after {
  background: #000000;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
  bottom: -14px;
  height: 3px;
  filter: blur(10px);
}
.msgBox .msgCont {
  border-bottom: 1px solid #C4F3DA;
  text-align: center;
  padding: 30px 0 18px;
}
@media screen and (min-width: 768px) {
  .msgBox .msgCont {
    text-align: center;
    padding: 60px 0 36px;
  }
}
.msgBox .msgCont .msgIcon {
  border: 5px solid #99C2AC;
  background: linear-gradient(135deg, #00A94F, #006630);
  border-radius: 999rem;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  line-height: 60px;
}
@media screen and (min-width: 768px) {
  .msgBox .msgCont .msgIcon {
    border: 7px solid #99C2AC;
    width: 94px;
    height: 94px;
    line-height: 90px;
  }
}
.msgBox .msgCont .msgIcon span {
  color: #FFFFFF;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .msgBox .msgCont .msgIcon span {
    font-size: 22px;
  }
}
.msgBox .msgCont .msgTitle {
  font-weight: 700;
  font-size: 24px;
  margin: 12px 0 15px;
}
@media screen and (min-width: 768px) {
  .msgBox .msgCont .msgTitle {
    font-size: 28px;
    margin: 12px 0 15px;
  }
}
.msgBox .msgBtnBox {
  padding: 20px 0 35px;
}
@media screen and (min-width: 768px) {
  .msgBox .msgBtnBox {
    padding: 39px 0 70px;
  }
}
.msgBox .msgBtnBox .msgBtn {
  background: #333333;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s;
  border-radius: 5px;
  width: 145px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .msgBox .msgBtnBox .msgBtn {
    border-radius: 8px;
    padding: 18px 0;
    width: 200px;
  }
}
.msgBox .msgBtnBox .msgBtn:hover {
  background: #00A94F;
  transform: opacity 0.3s;
}

/**Privacy**/
@media screen and (min-width: 768px) {
  .privacyBox.OuterBox .MainBox {
    width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .privacyBox.OuterBox .MainBox {
    width: 800px;
  }
}
@media screen and (min-width: 1180px) {
  .privacyBox.OuterBox .MainBox {
    width: 1300px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  .privacyBox.OuterBox .MainBox {
    width: 1100px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .privacyBox.OuterBox .MainBox {
    width: 900px;
  }
}
.privacyBox .privacyTermsBox .privacyTermsBlock:not(:last-child) {
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .privacyBox .privacyTermsBox .privacyTermsBlock:not(:last-child) {
    margin: 0 0 50px;
  }
}
.privacyBox .privacyTermsBox .privacyTermsBlock:first-child {
  margin: 0 0 40px;
}
.privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsTitle {
  color: #006630;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.35px;
  line-height: 24px;
  margin: 0 0 17px;
}
@media screen and (min-width: 768px) {
  .privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsTitle {
    font-size: 24px;
    margin: 0 0 27px;
  }
}
.privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsText {
  line-height: 30px;
  letter-spacing: 0.35px;
}
.privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsText.foreword {
  font-size: 18px;
  line-height: 32px;
}
.privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsText.item {
  position: relative;
  padding: 0 0 0 20px;
}
.privacyBox .privacyTermsBox .privacyTermsBlock .privacyTermsText.item::after {
  background: #006630;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  border-radius: 999rem;
  width: 6px;
  height: 6px;
}
.privacyBox .privacyTermsBox .privacyTermsBlock:first-child .privacyTermsText {
  line-height: 32px;
}

@media screen and (min-width: 768px) {
  .registerokBox.OuterBox .MainBox {
    padding: 94.5px 60px;
  }
}

/**Faq**/
@media screen and (min-width: 768px) {
  .faqBox.OuterBox .MainBox {
    padding: 80px 0 110px;
  }
}
.faqBox .faqListBox {
  width: 100%;
}
.faqBox .faqListBox .faqList {
  border: 1px solid #E5E5E5;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
  cursor: pointer;
}
.faqBox .faqListBox .faqList:not(:last-child) {
  margin: 0 0 15px;
}
.faqBox .faqListBox .faqList:hover {
  transform: translateY(-5px);
}
.faqBox .faqListBox .faqList::after {
  background: #006630;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  top: 0;
  width: 0;
  transition: width 0.5s;
  height: 1px;
}
.faqBox .faqListBox .faqList .faqListLine {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  padding: 15px 16px;
}
.faqBox .faqListBox .faqList .faqListLine.a {
  color: #006630;
}
.faqBox .faqListBox .faqList .faqListLine .faqListLineTitle {
  font-family: "Saira Semi Condensed";
  font-size: 32px;
  line-height: 30px;
  margin: 0 15px 0 0;
}
.faqBox .faqListBox .faqList .faqListLine .faqListLineContent {
  font-size: 16px;
  margin: 0 5px 0 0;
}
.faqBox .faqListBox .faqList .faqListLine .faqListQIcon {
  color: #CCCCCC;
  transition: all 0.5s;
  margin: 0 0 0 auto;
  font-size: 24px;
}
@media screen and (min-width: 1180px) {
  .faqBox .faqListBox .faqList .faqListLine .faqListQIcon {
    font-size: 34px;
  }
}
.faqBox .faqListBox .faqList.active::after {
  width: 100%;
}
.faqBox .faqListBox .faqList.active .faqListQIcon {
  color: #006630;
  transform: rotate(-180deg);
}
.faqBox .faqListBox .faqList.active .faqListAOuter {
  border-top: 1px solid #E5E5E5;
}
.faqBox .faqListBox .faqList .faqListAOuter {
  background: #F6FAF8;
  display: none;
}
.faqBox .faqListBox .faqList .faqListAOuter .faqListAImg {
  padding: 0 16px 60px 50px;
}
.faqBox .faqListBox .faqList .faqListAOuter .faqListAImg img {
  max-width: 100%;
  width: auto;
}

/**Form**/
.FormForeword {
  letter-spacing: 0.35px;
  line-height: 28px;
  font-size: 16px;
  margin: 0 0 50px;
}
@media screen and (min-width: 768px) {
  .FormForeword {
    line-height: 26px;
    font-size: 16px;
    margin: 0 0 45px;
  }
}
.FormForeword .FormForewordList:not(:last-child) {
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .FormForeword .FormForewordList:not(:last-child) {
    margin: 0 0 30px;
  }
}
.FormForeword .FormForewordList p {
  margin: 0;
}

.FormBlockBox {
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox {
    margin: 0 0 35px;
  }
}
.FormBlockBox .FormBlock:not(:last-child) {
  margin: 0 0 55px;
}
.FormBlockBox .FormBlock .FormBlockTopic {
  color: #006630;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.35px;
  line-height: 30px;
  padding: 0 0 20px;
  margin: 0 0 25px;
}
.FormBlockBox .FormBlock .FormBlockTopic::after {
  background: #006630;
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  width: 100px;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList {
    width: calc((100% - 20px) / 2);
    margin: 0 0 12px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList:not(:last-child) {
  margin: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList.address {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList:not(:nth-child(2n)) {
    margin: 0 20px 12px 0;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList.nomarginr {
    margin-right: unset;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle {
  line-height: 30px;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle {
    margin: 0 0 4px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle label {
  cursor: pointer;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle label:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle label:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle input[type=radio] {
  border: 1px solid #CCCCCC;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 999rem;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle input[type=radio]:checked {
  border: 1px solid #00A94F;
  position: relative;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle input[type=radio]:checked::after {
  background: #00A94F;
  border-radius: 999rem;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 11px;
  height: 11px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle .FormExampleBox {
  position: relative;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle .FormExampleBox .FormExampleImg {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  display: none;
  transition: all 0.5s;
  width: 250px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListTitle .FormExampleBox:hover .FormExampleImg {
  display: block;
  opacity: 1;
  z-index: 1;
  animation: 0.8s opacity1;
  top: 34px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont textarea, .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListFakeLine, .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text],
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number],
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email] {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont textarea, .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListFakeLine, .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text],
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number],
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email] {
    border-radius: 4px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont {
  position: relative;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text],
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number],
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email] {
  width: 100%;
  padding: 19px 18px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text],
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number],
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email] {
    padding: 17.5px 0 17.5px 18px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].subFont,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].subFont,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].subFont {
  padding: 16px 18px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].subFont,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].subFont,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].subFont {
    padding: 14px 18px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text]::placeholder,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number]::placeholder,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email]::placeholder {
  color: #808080;
  font-size: 16px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].addresscode,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].addresscode,
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].addresscode {
  margin: 0 0 15px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].addresscode {
    margin: 0 20px 0 0;
    width: 105px;
  }
}
@media screen and (min-width: 1180px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].addresscode {
    margin: 0 20px 0 0;
    width: 145px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].addresscode,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].addresscode {
    width: 111px;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].address {
    width: calc(100% - 125px);
  }
}
@media screen and (min-width: 1180px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].address {
    width: calc(100% - 650px);
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=text].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=number].address,
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=email].address {
    width: calc(100% - 549.5px);
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont select.plugins {
  color: transparent;
  border: transparent;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div {
  position: relative;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.city {
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.city {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.city {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1180px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.city {
    width: 230px;
    margin: 0 10px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.city {
    width: 197px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.country {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.country {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 1180px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.country {
    margin: 0;
    width: 235px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont div.country {
    width: 201px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon {
  background: #E5E5E5;
  color: #4D4D4D;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 17.5px;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon {
    padding: 13px 17.5px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon.cloud {
  padding: 13px 13.24px;
}
@media screen and (min-width: 768px) {
  .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon.cloud {
    padding: 17.5px 17.5px;
    font-size: 14px;
  }
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon + input, .FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon + .FormBlockListFakeLine {
  width: calc(100% - 55px);
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  border-left: unset;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListIcon + input:focus {
  border-left: unset;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont .FormBlockListFakeLine {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  border-left: unset;
  padding: 14px 0 14px 20px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont input[type=file] {
  color: #777777;
  cursor: pointer;
  width: 100%;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont textarea {
  width: 100%;
  min-height: 165px;
  padding: 20px 18px;
}
.FormBlockBox .FormBlock .FormBlockCont .FormBlockList .FormBlockListCont textarea::placeholder {
  color: #808080;
  font-size: 16px;
}

.FormNoticeBox {
  background: #F2F2F2;
  border-radius: 5px;
  padding: 22px 20px;
  margin: 0 0 35px;
}
@media screen and (min-width: 768px) {
  .FormNoticeBox {
    padding: 36px 40px;
    margin: 0 0 12px;
  }
}
.FormNoticeBox .FormNoticeBlock:not(:last-child) {
  margin: 0 0 50px;
}
.FormNoticeBox .FormNoticeBlock .FormNoticeTitle {
  color: #006630;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 26px;
}
@media screen and (min-width: 768px) {
  .FormNoticeBox .FormNoticeBlock .FormNoticeTitle {
    margin: 0 0 5px;
  }
}
.FormNoticeBox .FormNoticeBlock .FormNoticeItemBox {
  letter-spacing: 0.35px;
  line-height: 26px;
}
@media screen and (min-width: 768px) {
  .FormNoticeBox .FormNoticeBlock .FormNoticeImg0 {
    margin-top: 26px;
    width: 910px;
  }
}

.FormAgreeBox {
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 0 36px;
  margin: 0 0 60px;
}
@media screen and (min-width: 768px) {
  .FormAgreeBox {
    font-size: 18px;
    padding: 0 0 12px;
  }
}
.FormAgreeBox input {
  border: 1px solid #CCCCCC;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 374px) {
  .FormAgreeBox input {
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
  }
}
.FormAgreeBox input:checked {
  background: #00A94F;
  border: 1px solid #00A94F;
  position: relative;
}
.FormAgreeBox input:checked::after {
  border-color: #FFFFFF;
  content: " ";
  position: absolute;
  display: inline-block;
  overflow: hidden;
  border-style: solid;
  -webkit-transform: rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 50%;
  z-index: 1;
  top: calc(50% - 1px);
  width: 8px;
  height: 4px;
  border-width: 0 0 2px 2px;
}
@media screen and (max-width: 374px) {
  .FormAgreeBox input:checked::after::after {
    width: 6px;
    height: 3px;
  }
}
.FormAgreeBox label {
  cursor: pointer;
  letter-spacing: 0.35px;
}
@media screen and (max-width: 374px) {
  .FormAgreeBox label {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .FormAgreeBox label {
    line-height: 65px;
  }
}
.FormAgreeBox label a {
  display: inline-block;
  transition: all 0.3s;
}
.FormAgreeBox label a:hover {
  filter: brightness(0.8);
}

.FormBtnBox {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .FormBtnBox {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.FormBtnBox button {
  border: unset;
  outline: unset;
  font-family: "Noto Sans TC";
  font-size: 16px;
}
.FormBtnBox .FormBtn {
  background: #333333;
  color: #FFFFFF;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
  padding: 18px 0;
}
@media screen and (min-width: 768px) {
  .FormBtnBox .FormBtn {
    width: 425px;
  }
}
.FormBtnBox .FormBtn.cancel {
  background: #808080;
}
.FormBtnBox .FormBtn:not(:last-child) {
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .FormBtnBox .FormBtn:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
.FormBtnBox .FormBtn:hover {
  background: #00A94F;
}
@media screen and (min-width: 768px) {
  .FormBtnBox .FormBtn:hover {
    opacity: 0.9;
  }
}

/**Repair**/
/**Register**/
.repairBox.OuterBox,
.registerBox.OuterBox {
  background: #F7F7F7;
}
@media screen and (min-width: 1180px) {
  .repairBox.OuterBox,
  .registerBox.OuterBox {
    padding: 90px 0 70px;
  }
}
.repairBox.OuterBox .MainBox,
.registerBox.OuterBox .MainBox {
  background: #FFFFFF;
  margin: 0 auto;
  border-radius: 10px;
  width: calc(100% - 40px);
  transform: translateY(-30px);
}
@media screen and (max-width: 374px) {
  .repairBox.OuterBox .MainBox,
  .registerBox.OuterBox .MainBox {
    padding: 35px 10px 55px;
    border-radius: 10px;
    width: calc(100% - 30px);
  }
}
@media screen and (min-width: 1180px) {
  .repairBox.OuterBox .MainBox,
  .registerBox.OuterBox .MainBox {
    width: 1400px;
    border-radius: 13px;
    transform: translateY(-50px);
    padding: 40px 60px 80px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  .repairBox.OuterBox .MainBox,
  .registerBox.OuterBox .MainBox {
    width: 1200px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .repairBox.OuterBox .MainBox,
  .registerBox.OuterBox .MainBox {
    width: 1000px;
  }
}

.repairInfoBox {
  border: 5px solid #E8E8E8;
  background: #FFFFFF;
  width: 100%;
  padding: 25px 20px;
}
@media screen and (min-width: 768px) {
  .repairInfoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    width: 500px;
  }
}
@media screen and (min-width: 991px) {
  .repairInfoBox {
    padding: 30px 20px;
    width: 580px;
  }
}
.repairInfoBox .repairInfoBlock {
  letter-spacing: 0.35px;
  line-height: 30px;
}
.repairInfoBox .repairInfoBlock:not(:last-child) {
  border-bottom: 1px solid #E8E8E8;
  padding: 0 0 30px;
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .repairInfoBox .repairInfoBlock:not(:last-child) {
    border-right: 1px solid #E8E8E8;
    border-bottom: unset;
    padding: 0 40px 0 0;
    margin: 0 40px 0 0;
  }
}
.repairInfoBox .repairInfoBlock .repairInfoBlockWord {
  color: #006630;
  transition: all 0.3s;
  font-family: "Saira Semi Condensed";
  font-weight: 500;
  font-size: 20px;
  word-break: break-all;
}
@media screen and (min-width: 991px) {
  .repairInfoBox .repairInfoBlock .repairInfoBlockWord {
    font-size: 28px;
  }
}
.repairInfoBox .repairInfoBlock .repairInfoBlockWord:hover {
  color: #00A94F;
}

/**Footer**/
footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst a::after {
  background: #959595;
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  z-index: 1;
  left: -16px;
  width: 1px;
  height: 16px;
}

footer {
  background-image: url("static/common/footerBg1.webp");
  background-size: auto 100%;
  text-align: center;
  padding: 58px 12.8vw;
}
@media screen and (max-width: 374px) {
  footer {
    padding: 58px 7.8vw;
  }
}
@media screen and (min-width: 1180px) {
  footer {
    background-image: url("static/common/footerBg0.webp");
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 160px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  footer {
    padding: 40px 100px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  footer {
    padding: 40px 30px;
  }
}
footer .footerLogo {
  width: 130px;
  margin: 0 auto 14px;
}
@media screen and (min-width: 1180px) {
  footer .footerLogo {
    width: 160px;
    margin: 0 60px 0 0;
  }
}
footer .footerInfoBox .footerInfCp {
  font-size: 16px;
  letter-spacing: 0.35px;
  line-height: 30px;
  margin: 0 0 14px;
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfCp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 12px;
    line-height: 14px;
  }
}
footer .footerInfoBox .footerInfCp a {
  color: #FFFFFF;
  transition: all 0.3s;
}
footer .footerInfoBox .footerInfCp a:not(:last-child) {
  position: relative;
  margin: 0 32px 0 0;
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfCp a:not(:last-child)::after {
    background: #FFFFFF;
    content: "";
    display: block;
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    z-index: 1;
    right: -16px;
    width: 1px;
    height: 16px;
  }
}
footer .footerInfoBox .footerInfCp a:hover {
  opacity: 0.7;
}
footer .footerInfoBox .footerInfoCopyright {
  line-height: 26px;
  font-size: 16px;
  letter-spacing: 0.35px;
}
footer .footerInfoBox .footerInfoCopyright, footer .footerInfoBox .footerInfoCopyright a {
  color: #959595;
  transition: all 0.3s;
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfoCopyright {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    line-height: 25px;
    font-size: 15px;
  }
}
footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst {
  margin: 0 0 12px;
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst {
    position: relative;
    margin: 0 32px 0 0;
  }
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst::after {
    background: #959595;
    content: "";
    display: block;
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    z-index: 1;
    right: -16px;
    width: 1px;
    height: 16px;
  }
}
footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst div, footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst a {
  display: inline-block;
}
footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst a {
  position: relative;
  margin: 0 0 0 32px;
}
@media screen and (min-width: 1180px) {
  footer .footerInfoBox .footerInfoCopyright .footerInfoCopyrightFirst a::after {
    background: #959595;
    content: "";
    display: block;
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    z-index: 1;
    left: -16px;
    width: 1px;
    height: 16px;
  }
}
footer .footerInfoBox .footerInfoCopyright a:hover {
  color: #FFFFFF;
}
@media screen and (min-width: 1180px) {
  footer .footerTelBox {
    text-align: left;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1180px) {
  footer .footerTelBox .footerTelTitle {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1180px) {
  footer .footerTelBox .footerTelNum {
    color: #FFFFFF;
    transition: all 0.3s;
    font-family: "Saira Semi Condensed";
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
  }
  footer .footerTelBox .footerTelNum:hover {
    color: #959595;
  }
}

.goTop {
  background: #666666;
  color: #FFFFFF;
  position: fixed;
  text-align: center;
  cursor: pointer;
  border-radius: 999rem;
  z-index: 99;
  opacity: 0;
  transition: all 0.3s;
  bottom: 40px;
  right: 15px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .goTop {
    right: 35px;
  }
}
.goTop:hover {
  filter: brightness(1.2);
}
.goTop.active {
  opacity: 1;
}

.cookiesBox {
  background: rgba(0, 66, 30, 0.9);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 40px 20px;
  visibility: hidden;
}
@media screen and (min-width: 1180px) {
  .cookiesBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 210px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1519px) {
  .cookiesBox {
    padding: 40px 100px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1359px) {
  .cookiesBox {
    padding: 40px 30px;
  }
}
.cookiesBox .cookiesNotice {
  font-size: 20px;
  margin: 0 0 30px;
}
.cookiesBox .cookiesNotice, .cookiesBox .cookiesNotice a {
  color: #FFFFFF;
}
@media screen and (min-width: 1180px) {
  .cookiesBox .cookiesNotice {
    margin: 0;
  }
}
.cookiesBox .cookiesNotice a {
  text-decoration: underline;
  display: inline-block;
  transition: all 0.3s;
}
.cookiesBox .cookiesNotice a:hover {
  opacity: 0.7;
}
.cookiesBox .cookiesBtn {
  color: #FFFFFF;
  background: #00A94F;
  cursor: pointer;
  display: block;
  border: unset;
  transition: all 0.3s;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999rem;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  width: 200px;
  padding: 8px 0;
}
@media screen and (min-width: 1180px) {
  .cookiesBox .cookiesBtn {
    margin: 0;
  }
}
.cookiesBox .cookiesBtn:hover {
  opacity: 0.8;
}

.ui-widget {
  padding: 0;
  transform: translateY(-2px);
}
.ui-widget .ui-widget-header {
  padding: 3px 0 0;
}
.ui-widget .ui-widget-header .ui-corner-all {
  height: auto;
  width: auto;
  cursor: pointer;
  transform: translateY(-50%);
  top: calc(50% + 3px);
  font-size: 12px;
}
.ui-widget .ui-widget-header .ui-corner-all.ui-datepicker-prev {
  left: 15px;
}
.ui-widget .ui-widget-header .ui-corner-all.ui-datepicker-prev .ui-icon {
  background-image: url("static/common/dateArrowL.webp");
}
.ui-widget .ui-widget-header .ui-corner-all.ui-datepicker-next {
  right: 15px;
}
.ui-widget .ui-widget-header .ui-corner-all.ui-datepicker-next .ui-icon {
  background-image: url("static/common/dateArrowR.webp");
}
.ui-widget .ui-widget-header .ui-corner-all span {
  background-position: center;
}

/**HttpCode**/
.codeBox {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.codeBox .codeCont {
  color: #FFFFFF;
  padding: 0 20px;
}
.codeBox .codeCont .codeNumber {
  font-family: "Saira Semi Condensed";
  font-size: 240px;
  line-height: 240px;
  margin: 0 0 15px;
}
@media screen and (max-width: 570px) {
  .codeBox .codeCont .codeNumber {
    font-size: 210px;
    line-height: 210px;
  }
}
@media screen and (max-width: 414px) {
  .codeBox .codeCont .codeNumber {
    font-size: 170px;
    line-height: 170px;
  }
}
@media screen and (max-width: 314px) {
  .codeBox .codeCont .codeNumber {
    font-size: 150px;
    line-height: 150px;
  }
}
@media screen and (max-width: 280px) {
  .codeBox .codeCont .codeNumber {
    font-size: 130px;
    line-height: 130px;
  }
}
.codeBox .codeCont .codeTitle {
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
}
@media screen and (max-width: 570px) {
  .codeBox .codeCont .codeTitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 414px) {
  .codeBox .codeCont .codeTitle {
    font-size: 26px;
  }
}
.codeBox .codeCont .codeText {
  margin: 19px 0 37px;
}
@media screen and (max-width: 570px) {
  .codeBox .codeCont .codeText {
    font-size: 14px;
    margin: 15px 0 37px;
  }
}
.codeBox .codeCont .codeBtn {
  color: #FFFFFF;
  background: rgba(0, 178, 84, 0.8);
  border-radius: 999rem;
  transition: all 0.3s;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  font-weight: 500;
  min-width: 150px;
  padding: 13px 0;
}
.codeBox .codeCont .codeBtn:hover {
  background: #00B254;
}
.codeBox .codeBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.codeBox .codeBg img {
  height: 100%;
  object-fit: cover;
}

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