@import "https://storage-asset.msi.com/frontend/css/common-creation-font.css";
:root {
  --MSIBodyFont: -apple-system, BlinkMacSystemFont, "Segoe UI","Noto Sans TC", "Microsoft JhengHei", "Meiryo UI", Helvetica, Arial, sans-serif;
  --body-font-size: var(--text-md);
  /*font size*/
  --title-xl: 24px;
  --title-lg: 22px;
  --title-md: 20px;
  --title-sm: 18px;
  --title-xs: 16px;
  --text-xl: 20px;
  --text-lg: 18px;
  --text-md: 17px;
  --text-sm: 16px;
  --text-xs: 15px;
  --note-lg: 16px;
  --note-xl: 14px;
  --note-md: 13px;
  --note-sm: 12px;
  --link-xl: 20px;
  --link-lg: 18px;
  --link-md: 17px;
  --link-sm: 16px;
  --line-xs: 14px;
  --line-height-xl: 2;
  --line-height-lg: 1.8;
  --line-height-md: 1.5;
  --line-height-xs: 1.3;
  --line-height-list: 1.8;
  --line-height-article: 1.8;
}
@media (min-width: 992px) {
  :root {
    --title-xl: 36px;
    --title-lg: 26px;
  }
}
@media (min-width: 1930px) {
  :root {
    --title-md: 22px;
    --title-sm: 20px;
    --title-xs: 17px;
    --text-lg: 19px;
    --text-md: 18px;
    --text-sm: 17px;
    --text-xs: 16px;
    --note-lg: 17px;
    --note-xl: 15px;
    --note-md: 14px;
    --note-sm: 13px;
    --link-lg: 19px;
    --link-md: 18px;
    --link-sm: 17px;
    --line-xs: 16px;
  }
}

html:lang(ja-JP) body,
html:lang(JP) body {
  --MSIBodyFont: -apple-system, BlinkMacSystemFont, "Meiryo UI", "Yu Gothic", "Segoe UI", Arial, sans-serif;
}

html:lang(zh-TW) body,
html:lang(zh-CN) body,
html:lang(ja-JP) body,
html:lang(JP) body,
html:lang(ko-KR) body {
  --title-md: 22px;
  --text-md: 18px;
}
@media (min-width: 1930px) {
  html:lang(zh-TW) body,
  html:lang(zh-CN) body,
  html:lang(ja-JP) body,
  html:lang(JP) body,
  html:lang(ko-KR) body {
    --title-md: 26px;
    --text-md: 20px;
  }
}

:root {
  --color-black: #000;
  --color-white: #ffffff;
  --color-error: var(--color-red-400);
  --color-gray-100: #fafafa;
  --color-gray-200: #ececec;
  --color-gray-300: #cccccc;
  --color-gray-400: #808080;
  --color-gray-500: #7c7b7b;
  --color-gray-600: #696969;
  --color-gray-700: #333333;
  --color-gray-800: #222222;
  --color-gray-900: #1a1a1a;
  --color-gold-400: #9a8555;
  --color-red-300: #e92c2c;
  --color-red-400: #ea2023;
  --color-red-500: #fe0000;
  --color-red-600: #cc0000;
  --color-green-300: #92b457;
  --color-green-400: #86b000;
  --color-green-500: #82BC00;
  --color-gaming: var(--color-red-500);
  --color-cc: var(--color-gold-400);
  --color-bp: var(--color-gold-400);
  --color-amd: var(--color-green-400);
  --color-alpha: var(--color-green-300);
  --color-ws: var(--color-green-500);
  --body-bgcolor: var(--color-white);
  --body-text-color: var(--color-gray-700);
}

* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  appearance: none;
}

body {
  font-family: var(--MSIBodyFont);
  font-size: var(--text-lg);
  color: var(--color-gray-800);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
body img {
  max-width: 100%;
}
body picture {
  display: block;
}

.msi__container {
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 0 25px;
}
@media (min-width: 1930px) {
  .msi__container {
    max-width: 1600px;
    padding: 0;
  }
}

.common-title {
  font-size: 28px;
  font-weight: bold;
  padding: 25px 0 15px;
  line-height: 1.4;
}
.common-title--blue {
  color: #209CB5;
}
.common-title--green {
  color: #80BA34;
}
.common-title--white {
  color: #fff;
}
@media (min-width: 996px) {
  .common-title {
    font-size: 36px;
  }
}
.common-summary {
  font-size: 20px;
}
.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: var(--link-sm);
  padding: 20px 25px;
  transition: 0.5s all ease;
}
.common-btn::after {
  content: "";
  width: 25px;
  height: 20px;
  background: url("../images/btn-arrow.png") center right no-repeat;
  margin-left: 15px;
  transition: 0.5s all ease;
}
.common-btn:hover {
  padding: 20px 15px;
}
.common-btn:hover::after {
  width: 50px;
}
.common-btn--green {
  background: #80BA34;
}
.common-btn--green:hover {
  background: #209CB5;
}
.common-btn--blue {
  background: #209CB5;
}
.common-btn--blue:hover {
  background: #80BA34;
}

.toolBar-form {
  position: fixed;
  z-index: 701;
  bottom: 100px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  background: #80BA34;
  cursor: pointer;
}
.toolBar-form:hover::before {
  width: 100%;
  height: 200%;
}
.toolBar-form span {
  display: none;
  writing-mode: vertical-rl;
  letter-spacing: 5px;
  padding: 15px;
  font-size: 16px;
  position: relative;
}
.toolBar-form i {
  font-size: 24px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .toolBar-form {
    width: auto;
    height: auto;
    bottom: auto;
    top: 25%;
    right: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding-bottom: 5px;
  }
  .toolBar-form::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: #209CB5;
    transition: 0.5s all ease;
  }
  .toolBar-form span {
    display: block;
  }
}
.toolBar-gotop {
  display: none;
  position: fixed;
  z-index: 701;
  bottom: 50px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #DCDDDD;
  color: #595757;
  font-size: 30px;
  cursor: pointer;
}
.toolBar-gotop i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toolBar-gotop:hover {
  background: #209CB5;
  color: #fff;
}
@media (min-width: 996px) {
  .toolBar-gotop {
    width: 50px;
    height: 50px;
    border-radius: 20px;
  }
}

.header {
  position: fixed;
  z-index: 100;
  width: 100vw;
  top: 0;
  left: 0;
  background: #fff;
}
@media (min-width: 996px) {
  .header {
    position: relative;
  }
}
.header .noShow {
  display: none;
}
.headerBar {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 701;
  background: #80BA34;
  color: #ffffff;
  text-align: center;
  padding: 10px 0 20px;
}
.headerBar a, .headerBar button {
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}
.headerBar a:hover, .headerBar button:hover {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .headerBar {
    position: relative;
    display: block;
    padding: 10px 0;
  }
  .headerBar .msi__container {
    display: flex;
    justify-content: space-between;
  }
}
.header__langBtn button {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-family: var(--MSIBodyFont);
  background: none;
  cursor: pointer;
}
.header__langBtn button span {
  padding: 0 5px;
}
.header__langBtn button:hover {
  text-decoration: none;
}
.header__langBtn button:hover span {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .header__langBtn {
    order: 2;
  }
  .header__langBtn button {
    padding: 0;
  }
}
.header__relatedLinks {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.header__relatedLinks li {
  margin-right: 10px;
}
.header__relatedLinks li:last-child {
  margin-right: 0;
}
.header__relatedLinks a {
  padding: 15px;
}
.header__relatedLinks i {
  font-size: 85%;
  margin-right: 6px;
}
@media (min-width: 996px) {
  .header__relatedLinks {
    margin: 0;
  }
  .header__relatedLinks a {
    padding: 10px;
  }
}
.headerNav {
  text-align: center;
  position: relative;
}
.headerNav a {
  color: var(--color-gray-800);
}
.headerNav.on .header__logo {
  box-shadow: #eee 0 10px 10px;
}
@media (min-width: 996px) {
  .headerNav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1930px) {
  .headerNav {
    max-width: 1600px;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: #ccc 1px solid;
}
.header__logo img {
  width: auto;
  height: 25px;
  margin-top: 8px;
}
@media (min-width: 996px) {
  .header__logo {
    border-bottom: none;
    width: auto;
    height: auto;
  }
  .header__logo img {
    height: 40px;
  }
}
.header__btnNav {
  position: absolute;
  z-index: 50;
  left: 25px;
  top: 20px;
}
.header__btnNav i {
  transition: all 0.3s ease;
}
@media (min-width: 996px) {
  .header__btnNav {
    display: none;
  }
}
.header__mainNav {
  display: none;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: calc(100vh - 60px);
  padding: 25px 0;
  text-align: left;
  background: #fff;
  font-weight: bold;
}
.header__mainNav li {
  padding: 15px 25px;
}
.header__mainNav li i {
  display: none;
}
@media (min-width: 996px) {
  .header__mainNav {
    display: block;
    position: relative;
    height: auto;
    background: none;
    padding: 0;
  }
  .header__mainNav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header__mainNav li {
    padding: 0;
    margin-right: 55px;
  }
  .header__mainNav li:last-child {
    margin-right: 0;
  }
  .header__mainNav li i {
    display: inline-block;
    font-size: 30px;
  }
  .header__mainNav li span {
    display: none;
  }
  .header__mainNav li.wtb a {
    padding: 20px 0;
  }
  .header__mainNav li.wtb a:hover::before {
    display: none;
  }
  .header__mainNav a {
    display: block;
    padding: 25px 0;
    font-size: 18px;
    position: relative;
  }
  .header__mainNav a:hover, .header__mainNav a.active {
    color: #80BA34;
  }
  .header__mainNav a:hover::before, .header__mainNav a.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #80BA34;
  }
}

.langMenu {
  display: none;
}
.langMenu__body {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}
.langMenu__body a {
  display: block;
  flex: 1;
  text-align: center;
  padding: 10px 15px;
}
.langMenu__close, .langMenu h2 {
  display: none;
}
@media (min-width: 996px) {
  .langMenu {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
  }
  .langMenu__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    background: #ffffff;
    color: var(--color-gray-800);
    text-align: center;
    padding: 30px 50px 50px;
    box-shadow: #eee 0 0 30px;
  }
  .langMenu__inner h2 {
    text-align: center;
  }
  .langMenu__inner a {
    color: var(--color-gray-800);
    border: #ccc 1px solid;
    margin-top: 10px;
  }
  .langMenu__inner a:hover {
    background: #209CB5;
    color: #fff;
    text-decoration: none;
  }
  .langMenu__body, .langMenu__close, .langMenu h2 {
    display: block;
  }
  .langMenu__close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .langMenu__close i {
    color: var(--color-gray-800);
    font-size: 30px;
  }
  .langMenu__close:hover i {
    color: #80BA34;
  }
}

.footer {
  position: relative;
  z-index: 500;
  background: #fff;
}
.footer__box {
  position: relative;
}
.footerNav {
  padding: 25px 0;
}
@media (min-width: 996px) {
  .footerNav {
    padding: 40px 0 50px;
  }
}
.footerNav span {
  position: relative;
  display: block;
  padding: 10px;
  border-bottom: var(--color-gray-300) 1px solid;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 20px;
}
@media (min-width: 996px) {
  .footerNav span {
    border: none;
  }
}
.footerNav .icon-msi-down {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 996px) {
  .footerNav .icon-msi-down {
    display: none;
  }
}
.footerNav ul ul {
  padding: 10px;
  display: none;
}
.footerNav ul ul a {
  display: block;
  padding: 10px;
  color: var(--color-gray-800);
  font-size: 15px;
}
.footerNav ul ul a:hover {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .footerNav ul {
    display: flex;
  }
  .footerNav ul li {
    flex: 0 0 200px;
  }
  .footerNav ul ul {
    display: block;
  }
  .footerNav ul ul a {
    padding: 5px 0;
  }
}
.footer__community {
  text-align: center;
}
.footer__community a {
  color: var(--color-gray-700);
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #D9D9D9;
  font-size: 24px;
  margin: 5px;
}
.footer__community a:hover {
  background: #209CB5;
  color: #fff;
}
@media (min-width: 996px) {
  .footer__community {
    position: absolute;
    right: 0;
    top: 50px;
  }
}
.footer__links {
  background: #D9D9D9;
  font-size: 13px;
  text-align: center;
  padding: 25px 0;
  margin-top: 30px;
}
.footer__links a {
  display: inline-block;
  color: var(--color-gray-700);
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__links li {
  display: inline-block;
  margin-left: 15px;
}
.footer__links li:first-child {
  margin-left: 0;
}
@media (min-width: 996px) {
  .footer__links {
    padding: 15px 0 15px;
  }
  .footer__links li {
    margin-left: 40px;
  }
}
.footer__copyright {
  color: var(--color-gray-700);
  padding-top: 15px;
}
@media (min-width: 996px) {
  .footer__copyright {
    order: 1;
    padding-top: 0;
  }
}
@media (min-width: 996px) {
  .footer__box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__box2 ul {
    order: 2;
  }
}

.breadCrumbs {
  position: relative;
  z-index: 50;
  background: #80BA34;
  font-size: 14px;
  color: #eeeeee;
  padding: 10px 0;
}
.breadCrumbs a {
  color: #eeeeee;
}
.breadCrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.breadCrumbs i {
  padding: 0 10px;
}
.breadCrumbs span {
  color: #fff;
}
.breadCrumbs.sp {
  margin-top: 50px;
}
@media (min-width: 996px) {
  .breadCrumbs.sp {
    margin-top: 90px;
  }
}

.pagination {
  text-align: center;
  padding: 20px 10px 60px;
  display: flex;
  justify-content: center;
}
.pagination button {
  background: none;
  font-size: 13px;
  width: 30px;
  height: 30px;
  border: #ccc 1px solid;
  border-radius: 3px;
  margin: 0 5px;
  cursor: pointer;
}
.pagination button:hover {
  background: #209CB5;
  color: #fff;
}
.pagination button.active {
  background: var(--color-gray-200);
}
.pagination button.active:hover {
  color: #222;
}

.kv {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.kv picture {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.kv img {
  width: 100%;
  max-width: 100%;
}
.kv__text {
  text-align: center;
  padding: 0 25px;
  text-align: center;
  text-shadow: #fff 1px 1px 3px;
}
.kv__text h1 {
  font-size: 24px;
  font-family: var(--font);
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}
.kv__text span {
  position: relative;
}
.kv__text span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}
.kv__text p {
  font-size: 16px;
  font-weight: normal;
}
@media (min-width: 996px) {
  .kv {
    height: 310px;
    overflow: hidden;
    margin-top: 0;
  }
  .kv img {
    transform: scale(1.4) translateY(20px);
  }
  .kv__box {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .kv__text {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding-bottom: 0;
    color: #222;
  }
  .kv__text h1 {
    font-size: 36px;
  }
  .kv__text span::after {
    display: none;
  }
  .kv__text p {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .kv img {
    transform: scale(1) translateY(0px);
  }
}
@media (min-width: 1930px) {
  .kv__text {
    max-width: 1600px;
    padding: 0;
  }
  .kv img {
    transform: scale(1) translateY(-80px);
  }
}

.case {
  line-height: 1.8;
}
@media (min-width: 996px) {
  .case {
    padding-bottom: 20px;
  }
}
.case__tab {
  position: sticky;
  z-index: 10;
  top: 58px;
  text-align: center;
  font-size: 16px;
}
.case__tab-title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #209CB5;
  border-bottom: #209CB5 5px solid;
  background: #fff;
  cursor: pointer;
}
.case__tab-title.active + ul {
  cursor: pointer;
  display: block;
}
.case__tab ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #209CB5;
  padding: 10px 0;
  color: #fff;
  width: 100%;
}
.case__tab li {
  padding: 5px;
}
.case__tab li a {
  color: #fff;
}
@media (min-width: 996px) {
  .case__tab {
    position: relative;
    top: 0;
  }
  .case__tab-title {
    display: none;
  }
  .case__tab ul {
    display: block;
    background: none;
    position: relative;
    color: #222;
  }
  .case__tab li {
    display: inline-block;
    position: relative;
    padding: 15px 0;
    margin: 0 20px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.9;
  }
  .case__tab li:hover {
    color: #80BA34;
  }
  .case__tab li.active {
    color: #80BA34;
  }
  .case__tab li.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: #80BA34;
  }
}
.case__box {
  padding-bottom: 25px;
}
@media (min-width: 996px) {
  .case__box {
    display: flex;
    flex-wrap: wrap;
  }
}
.caseCard {
  position: relative;
  background: var(--color-gray-100);
  margin-top: 20px;
}
@media (min-width: 996px) {
  .caseCard {
    display: inline-flex;
    flex-direction: column;
    width: calc(33.3333333333% - 30px);
    margin: 15px;
  }
}
.caseCard__imgbox {
  position: relative;
}
.caseCard__img img {
  position: relative;
  width: 100%;
  vertical-align: bottom;
}
.caseCard__img img:last-child {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.caseCard__img img.active {
  z-index: 2;
}
.caseCard__button {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 15px;
}
@media (min-width: 996px) {
  .caseCard__button {
    position: absolute;
    z-index: 5;
    bottom: 15px;
    right: 15px;
    padding: 0;
  }
}
.caseCard__button button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 10px;
  margin-left: 10px;
  font-size: 0;
  background: #ccc;
}
.caseCard__button button.active, .caseCard__button button:hover {
  background: #209CB5;
}
@media (min-width: 996px) {
  .caseCard__button button {
    width: 20px;
    height: 20px;
    border-radius: 20px;
  }
}
.caseCard__textBox {
  padding: 5px 25px 25px;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 996px) {
  .caseCard__textBox {
    padding: 25px;
  }
}
.caseCard__textBox h2 {
  font-size: var(--title-md);
  color: #80BA34;
}
.caseCard__textBox h5 {
  margin-top: 15px;
  font-size: 17px;
  padding-bottom: 8px;
}
.caseCard__textBox h5:first-child {
  margin-top: 0;
}
.caseCard__textBox p {
  padding-bottom: 15px;
}
.caseCard__textBox p:last-child {
  padding-bottom: 0;
}
.caseCard__textBox ul {
  padding-bottom: 15px;
}
.caseCard__textBox ul li {
  display: flex;
  padding-left: 15px;
}
.caseCard__textBox ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #209CB5;
}
.caseCard .location {
  color: var(--color-gray-400);
  font-size: var(--note-lg);
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.caseCard .location i {
  color: #209CB5;
  margin-right: 3px;
}
.caseCard-showmore {
  position: relative;
  width: 100%;
  cursor: pointer;
  outline: none;
  padding: 25px 15px 15px;
  margin-top: -10px;
  background: none;
  color: #000;
}
.caseCard-showmore:hover {
  color: #209CB5;
}
.caseCard-showmore::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("../images//case/more-bg.png") top center no-repeat ;
  background-size: cover;
}
.caseCard-showmore i {
  position: relative;
  z-index: 2;
}
