/* PC header ----------------------------------------------------------- */
.PC_wrap {
  position: relative;
  min-width: 1200px !important;
  min-height: 100vh;
  height: 100%;
}

/*  head trg button  */
.Hbtn.Ctrg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 80px;
  height: 36px;
  padding: 0 16px 0 10px;
  background: #009dff;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}
.Hbtn.Ctrg .IcSVG {
  width: 22px;
  height: 22px;
  color: #fff;
}

/*  top game  */
.sec_topbox {
  margin: 34px 0 10px;
  --ui-topgm-Gbg-01: linear-gradient(
    134deg,
    #ceae92 0%,
    #ceae92 70px,
    #d3ddeb 70px,
    #d3ddeb calc(100% - 70px),
    #ceae92 calc(100% - 70px),
    #ceae92 100%
  );
  --ui-topgm-polygon: 6% 0, 94% 0, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0 94%,
    0 6%;
}
.topgm_lnk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 30px;
  width: 100%;
}
.topgm_lnk .item_tgm {
  height: 540px;
  padding: 8px;
  background: var(--ui-topgm-Gbg-01);
  transition: transform 0.4s ease, filter 0.4s ease;
  will-change: transform, filter;
  clip-path: polygon(var(--ui-topgm-polygon));
}
.topgm_lnk .item_tgm .tgm_box {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  background: #eff7ff;
  box-shadow: inset 0 0 1px #000;
  text-align: center;
  clip-path: polygon(var(--ui-topgm-polygon));
}
.topgm_lnk .item_tgm .tgm_box .tg_img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.topgm_lnk .item_tgm .tgm_box .tg_img .tg_model {
  position: absolute;
  top: 20px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 8px 12px #000000cc);
  z-index: 1;
}
.topgm_lnk .item_tgm .tgm_box .tg_img .tg_bg {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.3s ease;
  filter: grayscale(100%);
}
.topgm_lnk .item_tgm .tgm_box .tg_info {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  margin-bottom: 10px;
  z-index: 1;
}
.topgm_lnk .item_tgm .tgm_box .tg_info h2 {
  line-height: 1.2;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -4px;
  filter: drop-shadow(1px 1px 1px #2f2215);
}
.topgm_lnk .item_tgm .tgm_box .tg_info h4 {
  line-height: 1.2;
  margin: 0;
  color: #917153;
  font-size: 20px;
}
.topgm_lnk .item_tgm .tgm_box .tg_info .tg_exp {
  line-height: 1.4;
  margin-top: 8px;
  color: #506877;
  font-size: 15px;
  word-break: break-word;
}
.topgm_lnk .item_tgm:hover {
  transform: translateY(-15px);
}
.topgm_lnk .item_tgm:hover .tgm_box .tg_img .tg_bg {
  filter: blur(2px);
  transform: scale(1.1);
}
.topgm_lnk .item_tgm:hover .tgm_box .tg_img .tg_model {
  animation: tg_model 2s infinite ease;
}

@keyframes tg_model {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/*  cont_list  */
.cont_list {
  --item-radius: 12px;
  --thumb-height: 100%;
  --ui-topgm-Gbg-01: linear-gradient(
    134deg,
    #ceae92 0%,
    #ceae92 70px,
    #d3ddeb 70px,
    #d3ddeb calc(100% - 70px),
    #ceae92 100%
  );
  --ui-topgm-polygon: 6% 0, 94% 0, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0 94%,
    0 6%;
}
.cont_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.cont_list li {
  overflow: hidden;
  padding: 6px;
  background: var(--ui-topgm-Gbg-01);
  box-shadow: 4px 4px 6px #00000066;
  transition: transform 0.3s ease;
  will-change: transform;
  clip-path: polygon(var(--ui-topgm-polygon));
}
.cont_list .cont_item {
  position: relative;
  overflow: hidden;
  padding: 1px;
  background: #fff;
  clip-path: polygon(var(--ui-topgm-polygon));
}
.cont_list .cont_item .thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 6 / 8;
  clip-path: polygon(var(--ui-topgm-polygon));
}
.cont_list .cont_item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cont_list .cont_item .info {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  height: 64px;
  padding: 12px 10px;
  border-top: 1px solid #0000001a;
  background: #1e1912;
  transition: height 0.3s ease, background 0.3s ease;
  pointer-events: none;
}
.cont_list .cont_item .info .Ttit {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: font-size 0.3s ease, text-shadow 0.3s ease;
}
.cont_list .cont_item .info .Tsub {
  color: #ffffff80;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: font-size 0.3s ease, text-shadow 0.3s ease;
}
.cont_list .cont_item .info .cv_btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 12px 20px;
  margin-top: 10px;
  border-top: 1px solid var(--ui-header-Bbtn-02);
  background: #917760;
  border-bottom: 1px solid #000;
  color: #fff;
  font-size: 16px;
  text-shadow: #00000066 0px 1px 2px;
  transform: translateY(15px) scale(1);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform, opacity;
  border-radius: calc(var(--item-radius) / 2);
}

.cont_list li:hover {
  transform: translateY(-10px);
}
.cont_list .cont_item:hover .info {
  height: calc(var(--thumb-height) * 0.4);
  border-top: 1px solid #0000001a;
  background: #1e1912c4;
}
.cont_list .cont_item:hover .info .Ttit {
  font-size: 20px;
  text-shadow: 0 0 2px #000;
  font-weight: 700;
  color: #d9bda5;
}
.cont_list .cont_item:hover .info .Tsub {
  font-size: 14px;
  text-shadow: 0 0 2px #000;
}
.cont_list .cont_item:hover .info .cv_btn {
  display: inline-flex;
  box-shadow: 0 2px 2px #00000066;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: cv_btn 0.6s ease-in-out infinite alternate;
}

@keyframes cv_btn {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/*  main board  */
.sec_Mboard {
  margin: 34px 0 10px;
}
.Mboard_wrap {
  --Mbdr-hg: 48px;
  --ui-Mboard-bg-01: linear-gradient(184deg, #d3ddeb 0%, #d3ddeb 100%);
  --ui-Mboard-polygon: 5% 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0 95%,
    0 5%;
}
.Mboard_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 20px;
  width: 100%;
}
.Mboard_wrap .Mboard {
  padding: 6px;
  background: var(--ui-Mboard-bg-01);
  clip-path: polygon(var(--ui-Mboard-polygon));
}
.Mboard_wrap .Mboard .Mbrd_box {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(var(--ui-Mboard-polygon));
}

.Mbrd_box .mbd_head {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 10px;
  padding: 0 15px;
  background: linear-gradient(180deg, #fff 0%, #c1d3eb 100%);
}
.Mbrd_box .mbd_head img {
  width: 26px;
  height: 26px;
}
.Mbrd_box .mbd_head .th3 {
  color: #506877;
  font-size: 18px;
  font-weight: 700;
}

.Mbrd_box .mbd_body {
  height: calc(var(--Mbdr-hg) * 6);
  padding: 10px 14px;
  background: linear-gradient(180deg, #fff 0%, #e4effe 60%);
  box-shadow: 0 -1px 0 #a2b9d8;
}
.Mbrd_box .mbd_body .swiper {
  overflow: hidden;
  height: 100%;
}
.Mbrd_box .mbd_body .swiper .swiper-slide {
  display: flex;
  align-items: center;
  height: var(--Mbdr-hg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
.Mbrd_box .mbd_body .swiper .mbd_item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.Mbrd_box .mbd_body .swiper .mbd_item > span {
  flex: 0 0 auto;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  transform: translateZ(0);
}
.Mbrd_box .mbd_body .swiper .mbd_item .text {
  flex: 1 1 auto;
  text-align: left;
}
.Mbrd_box .mbd_body .swiper .mbd_item .name {
  padding: 0 6px;
  color: #506877;
}
.Mbrd_box .mbd_body .swiper .mbd_item .date {
  color: #506877;
  font-size: 14px;
}
.Mbrd_box .mbd_body .swiper .mbd_item .money {
  flex: 1 1 auto;
  color: #506877;
  text-align: right;
}

.Mbrd_box .mbd_body .swiper .mbd_item .icon {
  min-width: 40px;
  padding: 5px 5px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_dep {
  background: #bb9e84;
  color: #fff;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_wdr {
  background: #bb9e84;
  color: #fff;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_num {
  background: #506877;
  color: #fff;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_num1 {
  background: #789b27;
  color: #fff;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_num2 {
  background: #27859b;
  color: #fff;
}
.Mbrd_box .mbd_body .swiper .mbd_item .icon.ic_num3 {
  background: #9b4627;
  color: #fff;
}
