.link_item .link__img {
  overflow: hidden;
}

.link_item .link__img img {
  opacity: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.link_item .link__img .link__text {
  color: #121212;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.link_item:hover {
  text-decoration: none;
}

.link_item:hover .link__img img {
  opacity: 0.7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.link_item:hover .link__text {
  color: #6BBEE6;
}

html {
  font-size: 1vw;
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Robot', 'Noto Sans TC', sans-serif;
  color: #121212;
  background-color: #ccc;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 1em;
  margin: 8px;
  background: linear-gradient(120deg, #fff, #ddd);
  font-size: .875em;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.fix_aside .fx_item .in_wrap {
  padding: 15px;
}

.fix_aside .fx_item.is_primary {
  background: -webkit-gradient(linear, left top, right top, from(#966C58), to(#E6DE53));
  background: linear-gradient(90deg, #966C58, #E6DE53);
  color: #fff;
}

.fix_aside .fx_item.is_primary .in_wrap {
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}

.fix_aside .fx_item.js_scroll_top .in_wrap .ic {
  width: 16px;
  height: 16px;
  border: 1px solid;
  -webkit-transform: rotate(-45deg) translate(-30%, 20%);
          transform: rotate(-45deg) translate(-30%, 20%);
  border-color: #000 #000 transparent transparent;
}

.fix_aside .fx_item:hover {
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
  -webkit-box-shadow: 0 4px 5px 0 rgba(7, 5, 5, 0.19);
          box-shadow: 0 4px 5px 0 rgba(7, 5, 5, 0.19);
}

.pic_wrap {
  display: block;
  margin: 0 auto;
}

.pic_wrap img {
  width: 100%;
}

.p_desktop {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #6BBEE6;
  padding-bottom: 2vw;
}

.g_logo {
  position: relative;
  z-index: 3;
  height: 4em;
  background-color: #fff;
}

.g_logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 8em;
}

.g_kv {
  position: relative;
  margin-bottom: 2vw;
}

.g_kv .talking {
  position: absolute;
  left: 5%;
  top: 16%;
  font-size: 3.75em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.g_kv .talking div {
  letter-spacing: .1em;
}

.g_kv .talking div:first-child {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  margin-bottom: .3em;
}

.g_kv .talking b {
  color: #004097;
  text-shadow: 3px 3px 0 #fff;
  font-size: 2.2em;
  font-style: italic;
}

.g_kv .talking span {
  margin: 0 .5em;
  font-size: .5em;
}

.g_kv .title {
  position: absolute;
  left: 6%;
  top: 64%;
  color: #fff;
  font-size: 2em;
}

.g_kv .title .sub {
  letter-spacing: .06em;
}

.g_kv .title .tit {
  position: relative;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.8);
}

.g_kv .title .cta {
  position: absolute;
  left: calc(100% - .75em);
  bottom: -10px;
  width: 68.75%;
}

.g_kv .title .cta img {
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}

.g_kv .title .cta a:hover img {
  opacity: .7;
}

.g_main {
  margin-left: 3%;
  border-radius: 3vw 0 0 3vw;
  background: linear-gradient(transparent 15px, #fff 15px) 0 0/100% 16px;
  background-color: rgba(255, 251, 245, 0.8);
  font-size: 2.4em;
}

.cnt_intro .row_intro {
  padding-left: 4vw;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.cnt_intro .row_intro .banner {
  position: relative;
  bottom: 6px;
}

.cnt_intro .row_intro .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26em;
          flex: 0 1 26em;
  padding-left: 1em;
  padding-bottom: .5em;
  font-size: .75em;
  font-weight: 500;
  color: #666;
}

.cnt_intro .row_mission {
  padding: 2vw 4vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cnt_intro .row_mission .text {
  padding-left: 1em;
  font-size: .95em;
  font-weight: 500;
  line-height: 1.2;
}

.cnt_versus .type1,
.cnt_versus .type2,
.cnt_versus .type3,
.cnt_versus .type4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 32px);
          flex: 0 0 calc(50% - 32px);
}

.cnt_versus .type1 img,
.cnt_versus .type2 img,
.cnt_versus .type3 img,
.cnt_versus .type4 img {
  width: 100%;
}

.cnt_versus .type1 .tit,
.cnt_versus .type2 .tit {
  text-align: center;
  margin: 0 auto;
  width: 14em;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 1em;
}

.cnt_versus .type1 .tit {
  background-color: #966C58;
}

.cnt_versus .type2 .tit {
  background-color: #47A0C5;
}

.cnt_versus .dot_line {
  width: 12px;
  margin: 0 26px;
  background: radial-gradient(circle, rgba(102, 102, 102, 0.33) 4px, transparent 4px) 0 0/12px 20px;
}

.cnt_versus .add {
  margin: -3vw 4vw 3vw;
  text-align: center;
  color: #666;
  line-height: 1.2;
  text-align: center;
}

.cnt_versus .add .pic {
  width: 12rem;
  height: 6rem;
  background: url("img/back_banner.png") center/contain no-repeat;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cnt_versus .add .pic span {
  margin-bottom: .5em;
}

.cnt_versus .vs2 {
  padding: 0 2vw;
}

.cnt_versus .type3 .tit,
.cnt_versus .type4 .tit {
  padding: 1vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cnt_versus .type3 .text,
.cnt_versus .type4 .text {
  width: 15em;
  font-size: .85em;
  line-height: 1.1;
  padding-left: 1em;
}

.cnt_versus .type3 .text {
  color: #966C58;
}

.cnt_versus .type4 .text {
  color: #47A0C5;
}

.cnt_versus .tip {
  text-align: center;
}

.cnt_versus .tip a {
  display: inline-block;
  width: 10em;
  padding-top: 5px;
  padding-bottom: 7px;
  margin: 2vw auto;
  font-size: 20px;
  color: #004097;
  border: 1px solid #004097;
  background-color: rgba(0, 64, 151, 0);
  -webkit-transition: all 250ms;
  transition: all 250ms;
}

.cnt_versus .tip a:hover {
  text-decoration: none;
  background-color: rgba(0, 64, 151, 0.5);
  color: #fff;
}

.cnt_avoid {
  font-size: .9em;
}

.cnt_avoid .title {
  position: relative;
}

.cnt_avoid .title .tag {
  margin: 0 auto;
  width: 38rem;
  height: 7.6rem;
  background: url("img/avoid_title.png") center/contain no-repeat;
}

.cnt_avoid .title .text {
  position: absolute;
  left: 49%;
  top: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  font-size: 1em;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  color: #1F0404;
}

.cnt_avoid .content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 2vw;
  padding-bottom: 2vw;
}

.cnt_avoid .content .top {
  padding-top: 3vw;
  text-align: center;
}

.cnt_avoid .content .top .subt img {
  width: 20rem;
}

.cnt_avoid .content .top .tit {
  margin-top: .2em;
  color: #004097;
  font-weight: 700;
  line-height: 1.2;
}

.cnt_avoid .content .mid .item {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cnt_avoid .content .mid .icon {
  margin-right: 12px;
  width: 3rem;
  height: 1.5rem;
  background: url("img/pen.png") center/contain no-repeat;
}

.cnt_avoid .content .mid .wording {
  line-height: 1.2;
}

.cnt_avoid .content .mid .wording .sub {
  color: #666;
  font-size: .6em;
}

.cnt_avoid .content .mid .wording .tit {
  color: #121212;
  font-size: .875em;
  font-weight: 500;
}

.cnt_avoid .content .mid .wording .tit span {
  display: inline-block;
  vertical-align: middle;
  padding: 4px 10px;
  font-size: .4em;
  background-color: #E6CD2D;
  border-radius: 1em;
}

.cnt_avoid .content .cta {
  margin-top: 2rem;
  padding: 0 60px;
}

.cnt_avoid .content .cta img {
  width: 100%;
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}

.cnt_avoid .content .cta a:hover img {
  opacity: .7;
}

.cnt_avoid .calltoaction {
  padding-bottom: 2vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  background: url("img/avoid_pic.png") 0 0/contain no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cnt_avoid .calltoaction .cta {
  padding-top: 8vw;
  padding-left: 8rem;
}

.cnt_avoid .calltoaction .tit {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .625em;
}

.cnt_avoid .calltoaction .subt {
  font-size: .625em;
  color: #666;
  font-weight: 500;
}

.cnt_avoid .calltoaction .bttn {
  margin-top: 3rem;
  background-color: #E28087;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1em;
  padding: .2em .5em .3em;
  border-radius: 12px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cnt_avoid .calltoaction .bttn img {
  margin-left: 12px;
  max-width: 16px;
}

.cnt_avoid .calltoaction .bttn:hover {
  text-decoration: none;
  background-color: #004097;
}

.cnt_avoid .calltoaction .tip {
  margin-top: 0.25em;
  font-size: .625em;
}

.g_footer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 5vw;
  background-color: #004097;
  font-size: 16px;
  color: #fff;
}

.g_footer .d-md-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.g_footer .foot_top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.g_footer .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.g_footer .logo img {
  width: 200px;
}

.g_footer .social {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.g_footer .social .item {
  margin-left: 16px;
  display: inline-block;
}

.g_footer .social .item img {
  width: 48px;
}

.g_footer .foot_mid {
  margin: 30px 0;
}

.g_footer .foot_mid,
.g_footer .foot_bot {
  padding-left: 10px;
}

.case_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2vw 5vw 0;
}

.case_cta .item {
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  border: 1px solid #fff;
  background-color: rgba(0, 64, 151, 0);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.case_cta .item:hover {
  background-color: rgba(0, 64, 151, 0.9);
  text-decoration: none;
}

.case_cta .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.case_cta .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 240px;
          flex: 0 1 240px;
}

.case_cta .pic img {
  width: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.case_cta .wording {
  padding-left: 1em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.contBox {
  position: relative;
  background-color: #fff;
}

.contBox img {
  position: relative;
  max-width: 100%;
  height: auto;
}

.contBox__half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contBox__half img {
  position: relative;
  height: auto;
}

.contBox__half img:nth-child(1) {
  max-width: 48.75%;
}

.contBox__half img:nth-child(2) {
  max-width: 51.25%;
}

@media (max-width: 767px) {
  .p_mobile {
    padding-bottom: 20px;
    background-color: #6BBEE6;
  }
  .g_footer {
    margin-top: 0;
  }
  .g_footer .social {
    margin-top: 16px;
  }
  .g_footer .social .item {
    margin-left: 0;
    margin-right: 6px;
  }
  .case_cta .item {
    margin: 15px;
    padding: 20px 0;
    display: block;
    background-color: rgba(0, 64, 151, 0.9);
  }
  .case_cta .item .pic {
    width: 240px;
    margin: 0 auto;
  }
  .case_cta .item .wording {
    padding: 10px 1em;
    text-align: center;
    font-size: 28px;
  }
  .case_cta .item .wording br {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */