@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;
}

.pagekv {
  position: relative;
}
.pagekv::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-green), var(--color-blue));
}
.pagekv picture {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.pagekv img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.pagekv__text {
  text-align: center;
  font-size: 24px;
  font-family: var(--font);
  font-weight: bold;
  padding: 10px;
}
.pagekv__text p {
  font-size: 16px;
  font-weight: normal;
}
@media (min-width: 996px) {
  .pagekv__box {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
  }
  .pagekv__text {
    color: #ffffff;
    text-shadow: #666 2px 2px 10px;
    font-size: 50px;
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    text-align: center;
    padding-bottom: 0;
  }
  .pagekv p {
    text-shadow: #000 2px 2px 8px;
  }
}
@media (min-width: 1930px) {
  .pagekv__text {
    max-width: 1600px;
    padding: 0;
  }
}

.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-300);
}
.pagination button.active:hover {
  color: #222;
}

.case {
  background: #eee;
  padding: 40px 0;
}
@media (min-width: 996px) {
  .case {
    padding: 80px 0;
  }
}
.case__tab {
  position: sticky;
  z-index: 10;
  top: 58px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}
.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;
  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;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: #efefef 0 10px 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;
}
