@charset "UTF-8";

:root {
  /* 封面 */
  --cover-button: hsl(0, 0%, 100%, 20%);
  --cover-button-hover: hsl(0, 0%, 100%, 80%);
  --cover-border: #fff;

  /* 文字斜度 */
  --slogan-text: rotate(0deg);
  /* 陰影 */
  --slogan-shadow: rgba(128, 0, 255, 0.6);
  --slogan-translateY: translateY(-70%);

  /* 人物 */
  --figure-mobile-width: 150%;
  --figure-mobile-bottom: 100px;

  /* 推薦 */
  --work-border: #fff;
  --work-background: #212427;
  --work-content-background: #40454a;

  /* 推薦 按鈕 */
  --work-button-color: #134170;
  --work-button-background: #fff;
  --work-button-border: #fff;

  /* 其他作品 */
  --other-works-button: #fff;
  --other-works-text: #134170;
}

/* 各項目共通
-------------------------------------------------- */
html {
  font-size: clamp(14px, 62.5%, 18px);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  color: #fff;
  font-family: "Noto Sans SC", "Noto Sans TC", "Noto Sans JP", "Noto Sans KR",
    "Noto Sans Thai", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "SimSun", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  overflow-x: hidden;
}

body a {
  display: block;
  cursor: pointer;
}

body img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

img[src="//tsyndicate.com/api/v1/retargeting/set/5e3fd925-d368-4240-a08f-04240f9a4d0b"]
{
  display: none !important;
}

main {
  display: block;
  padding-bottom: 26.6666666667vw;
}

main::before,
main::after {
  position: fixed;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: -1;
}

main::after {
  background: url(../img/cover/all_bg.webp);
  background-size: cover;
  background-position: center;

  
}

@media screen and (min-width: 769px) {
  main {
    padding-bottom: 300px;
  }
}

/* pc改行用 */
.br-pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .br-pc {
    display: block;
  }
}

/* ヘッダー
-------------------------------------------------- */
header {
  position: relative;
  z-index: 100;
}

.lp-logo {
  position: absolute;
  top: 3.6vw;
  left: 5.4666666667vw;
  z-index: 10;
}

@media screen and (min-width: 769px) {
  .lp-logo {
    top: 27px;
    left: 41px;
  }
}

.lp-logo img {
  width: 18.5333333333vw;
  max-width: 139px;
}

/* フッター
-------------------------------------------------- */
.lp_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 10;
  background: #111 !important;
}

.lp_footer small {
  margin-right: 2.13333vw;
}

@media screen and (min-width: 769px) {
  .lp_footer small {
    margin-right: 12px;
  }
}

.lp_footer small :last-of-type {
  margin-right: 0;
}

.lp_footer .lp_pagetop {
  display: flex;
  position: fixed;
  right: 20px; /* 直接顯示，不需要 hover 效果 */
  bottom: 20px;
  z-index: 10000; /* 確保按鈕在最上層，高於所有其他元素 */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* 簡化過渡效果 */
  overflow: visible; /* 允許完全顯示 */
}

.lp_footer .lp_pagetop:hover {
  transform: scale(1.05); /* hover 時稍微放大 */
}

.lp_footer .lp_pagetop .scroll {
  display: block;
  transition: transform 0.2s ease;
}

.lp_footer .lp_pagetop img {
  width: 100px; /* 桌面版按鈕尺寸 */
  height: auto;
}

.lp_footer .lp_pagetop .scroll:hover {
  transform: scale(1.1); /* 懸停時放大效果 */
}

.lp_footer .lp_pagetop .scroll:active {
  transform: scale(0.95); /* 點擊時縮小效果 */
}

@media screen and (max-width: 1400px) {
  .lp_footer .lp_pagetop {
    bottom: 20px; /* 保持與基礎設定一致 */
  }
}

@media screen and (max-width: 768px) {
  .lp_footer .lp_pagetop {
    right: 15px; /* 手機版直接顯示，不需要 hover 效果 */
    bottom: 15px;
    display: flex !important; /* 手機版顯示，使用 !important 確保優先級 */
    margin-right: 10px; /* 手機版避免被捲軸遮擋 */
  }
  .lp_footer .lp_pagetop:hover {
    right: 15px; /* 手機版 hover 時保持原位 */
  }

  .lp_footer .lp_pagetop img {
    width: 80px; /* 手機版縮小按鈕尺寸 */
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .lp_footer .lp_pagetop {
    display: flex !important; /* 桌面版也顯示，使用 !important 確保優先級 */
  }
}

*/

/* 見出し
-------------------------------------------------- */
.c-headline {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 26.6666666667vw;
  margin-bottom: 13.3333333333vw;
}

@media screen and (min-width: 300px) {
  .c-headline {
    text-align: center;
    font-weight: 900;
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 650px) {
  .c-headline {
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    margin-top: 50px;
    margin-bottom: 0;
  }
}

.c-headline.type-02 {
  font-size: 18px;
  font-weight: 900;
  margin-top: 0vw;
  margin-bottom: 3vw;
}

.c-headline.type-03 {
  font-size: 28px;
  font-weight: 900;
  margin-top: 20vw;
  margin-bottom: 6.6666666667vw;
}

@media screen and (min-width: 769px) {
  .c-headline.type-03 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.c-headline.type-initial br {
  display: none;
}

@media screen and (max-width: 1180px) {
  .c-headline.type-initial br {
    display: block;
  }
}

.c-headline.type-02 br {
  display: none;
}

@media screen and (max-width: 1180px) {
  .c-headline.type-02 br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .c-headline.type-02 {
    font-size: 14px;
  }
}

/* type-hero
-------------------------------------------------- */
.type-hero {
  position: relative;
  background: #000 url(../img/cover/bg.webp) no-repeat left / cover;
  background-position: center 35%;
  width: 100%;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
}

@media screen and (min-width: 770px) {
  .type-hero {
    background-position: left top;
    background-size: cover;
  }
}

@media screen and (min-width: 925px) {
  .type-hero {
    background: #000 url(../img/cover/bg.webp) no-repeat left / cover;
    background-position: left top;
    background-size: cover;
  }
}

.type-hero::before {
  position: absolute;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4990371148) 64%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 40vh;
  width: 100vw;
  bottom: 0vw;
}

@media screen and (min-width: 769px) {
  .type-hero::before {
    display: none;
  }
}

.type-hero h1 {
  position: absolute;
  background: url(../img/cover/game_logo.webp) no-repeat right center / contain;
  width: 40%;
  min-width: 500px;
  aspect-ratio: 500 / 519;
  max-height: 25vh;
  height: auto;
  color: transparent;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 1;
}

/* 遊戲LOGO RWD 響應式設計 */
@media screen and (max-width: 480px) {
  .type-hero h1 {
    width: 80%;
    min-width: 300px;
    max-height: 20vh;
    right: 10%;
  }
}

@media screen and (max-width: 375px) {
  .type-hero h1 {
    width: 85%;
    min-width: 262px;
    max-height: 18vh;
    right: 7.5%;
    top: 5%;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .type-hero h1 {
    width: 70%;
    min-width: 350px;
    max-height: 22vh;
    right: 15%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .type-hero h1 {
    width: 50%;
    min-width: 400px;
    max-height: 23vh;
    right: 5%;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .type-hero h1 {
    width: 45%;
    min-width: 450px;
    max-height: 24vh;
    right: 2%;
  }
}

@media screen and (min-width: 1441px) {
  .type-hero h1 {
    width: 40%;
    min-width: 500px;
    max-height: 25vh;
    right: 0;
  }
}

@media screen and (min-width: 769px) {
  .type-hero .text-wrap {
    padding-top: 500px;
    margin-right: 50px;
  }
}

@media screen and (min-width: 1281px) {
  .type-hero .text-wrap {
    margin-right: 150px;
  }
}

.type-hero .hero-dlc-container {
  position: absolute;
  bottom: -20%;
  right: 50%;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  width: 95%;
  min-height: 400px; /* 設定最小高度 */
}

@media screen and (min-width: 1025px) {
  .type-hero .hero-dlc-container {
    bottom: 2%;
    right: 20px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    height: 410px;
    min-height: 400px; /* 確保最小高度 */
    max-width: 620px;
  }
}

@media screen and (min-width: 1601px) {
  .type-hero .hero-dlc-container {
    bottom: 2%;
    right: 20px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    height: 560px;
    min-height: 400px; /* 確保最小高度 */
    max-width: 890px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-title {
  position: absolute;
  top: -23%;
  left: -20%;
  width: 123.2%;
  aspect-ratio: 875/347;
  background-size: 100% 100%;
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container .hero-dlc-title {
    top: -26%;
    aspect-ratio: 733/286;
    background-size: 100% 100%;
  }
}

.type-hero .hero-dlc-container .hero-dlc-contents {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
  background-image: url("../img/cover/hero.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-around !important;
  position: relative !important;
}

.slogan {
  position: absolute;
  top: 0;
  transform: translateY(-50%) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slogan p {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  transform: var(--slogan-text);

  text-shadow: 4px 0 6px var(--slogan-shadow), -4px 0 6px var(--slogan-shadow),
    0 4px 6px var(--slogan-shadow), 0 -4px 6px var(--slogan-shadow),
    4px 4px 6px var(--slogan-shadow), -4px 4px 6px var(--slogan-shadow),
    4px -4px 6px var(--slogan-shadow), -4px -4px 6px var(--slogan-shadow);
}

.type-hero .hero-dlc-container h2 {
  position: absolute;
  top: 36%;
  left: 10%;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  font-size: clamp(14px, 7.5vw, 100px);
  text-align: center;
  font-weight: 900;
  line-height: 0.6em;
}

.type-hero .hero-dlc-container h2 span {
  margin-left: 1em;
  font-size: clamp(14px, 4.2vw, 100px);
  font-weight: 900;
}

@media screen and (min-width: 500px) {
  .type-hero .hero-dlc-container h2 {
    font-size: 40px;
  }

  .type-hero .hero-dlc-container h2 span {
    font-size: 21px;
  }
}

@media screen and (min-width: 1281px) {
  .type-hero .hero-dlc-container h2 {
    font-size: 50px;
  }

  .type-hero .hero-dlc-container h2 span {
    font-size: 28px;
  }
}

.type-hero .hero-dlc-container h3 {
  position: absolute;
  top: 31%;
  left: 37%;
  font-size: clamp(14px, 3vw, 100px);
  line-height: 1.5em;
  font-weight: 900;
}

@media screen and (min-width: 500px) {
  .type-hero .hero-dlc-container h3 {
    font-size: clamp(14px, 1.5rem, 100px);
  }
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container h3 {
    font-size: 14px;
  }
}

@media screen and (min-width: 1281px) {
  .type-hero .hero-dlc-container h3 {
    font-size: 18px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-pic {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

@media screen and (max-width: 1600px) {
  .type-hero .hero-dlc-container .hero-dlc-pic {
    padding-top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .type-hero .hero-dlc-container .hero-dlc-pic {
    padding-top: 20px;
  }

  .type-hero .hero-dlc-container .hero-dlc-pic img {
    max-width: 500px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-pic img {
  width: 80%;
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container .hero-dlc-pic {
    width: 100%;
    max-width: unset;
  }
}

@media screen and (min-width: 1281px) {
  .type-hero .hero-dlc-container .hero-dlc-pic {
    width: 100%;
  }
}

.type-hero .hero-dlc-container .hero-dlc-btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 8px 0;
  max-width: 350px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1026px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container {
    gap: 36px;
    padding: 0 20px;
    max-width: none;
  }
}

.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn {
  width: 45%;
}

.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a {
  width: 100%;
  height: 132px;
  position: relative;
  overflow: visible;
}

@media screen and (max-width: 1600px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a {
    height: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a {
    height: 54px;
  }
}

/* 按鈕圖片基本樣式 - 防止JavaScript覆蓋 */
.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a img,
.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .DLPlayBox,
.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .BuyPoints {
  width: 66px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none !important;
  height: auto !important;
  position: static !important;
  float: none !important;
  clear: none !important;
  /* 防止JavaScript覆蓋的額外保護 */
  clip: auto !important;
  clip-path: none !important;
  transform: none !important;
  filter: none !important;
  mask: none !important;
  mask-image: none !important;
  -webkit-mask: none !important;
  -webkit-mask-image: none !important;
}

/* 彈窗狀態下的圖片強制顯示 */
body.modal-open
  .type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  img,
body.modal-open
  .type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .DLPlayBox,
body.modal-open
  .type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .BuyPoints {
  width: 66px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none !important;
  height: auto !important;
  position: static !important;
  float: none !important;
  clear: none !important;
  /* 防止JavaScript覆蓋的額外保護 */
  clip: auto !important;
  clip-path: none !important;
  transform: none !important;
  filter: none !important;
  mask: none !important;
  mask-image: none !important;
  -webkit-mask: none !important;
  -webkit-mask-image: none !important;
  /* 彈窗狀態下的額外保護 */
  z-index: 9999 !important;
  pointer-events: auto !important;
}

@media screen and (max-width: 1600px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a img,
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox,
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    width: 40px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* 防止JavaScript覆蓋的額外保護 */
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a img,
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox,
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    width: 25px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* 防止JavaScript覆蓋的額外保護 */
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* DLPlayBox 按鈕圖片 - 淡紫色光暈效果 */
.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .DLPlayBox {
  filter: drop-shadow(0 0 10px rgba(147, 112, 219, 0.6))
    drop-shadow(0 0 20px rgba(147, 112, 219, 0.4))
    drop-shadow(0 0 30px rgba(147, 112, 219, 0.2));
  width: 66px;
  height: auto;
  display: block;
}

/* BuyPoints 按鈕圖片位置 */
.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .BuyPoints {
  position: absolute;
  left: 20px;
  width: 66px;
  height: auto;
  display: block;
}

/* 平板版 RWD (1024px以下) */
@media screen and (max-width: 1024px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    left: 10px;
    width: 50px;
  }

  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox {
    position: relative;
    left: 0;
    width: 50px;
  }
}

/* 手機版 RWD (768px以下) */
@media screen and (max-width: 768px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    left: 8px;
    width: 40px;
  }

  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox {
    width: 40px;
  }
}

/* 小手機版 RWD (480px以下) */
@media screen and (max-width: 480px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    left: 5px;
    width: 35px;
  }

  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox {
    width: 35px;
  }
}

@media screen and (max-width: 1024px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .DLPlayBox {
    filter: drop-shadow(0 0 8px rgba(147, 112, 219, 0.6))
      drop-shadow(0 0 16px rgba(147, 112, 219, 0.4))
      drop-shadow(0 0 24px rgba(147, 112, 219, 0.2));
  }
}

/* BuyPoints 按鈕圖片位置 */
.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  a
  .BuyPoints {
  position: absolute;
  left: 20px;
}

@media screen and (max-width: 1024px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    a
    .BuyPoints {
    left: 10px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 1px 1px 4px rgba(0, 0, 0);
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1600px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a p {
    font-size: 28px;
  }
}

@media screen and (max-width: 1024px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn a p {
    font-size: 16px;
  }
}

.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  .hero-dlc-btn-title {
  font-size: clamp(14px, 3.6vw, 100px);
  font-weight: 900;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .type-hero
    .hero-dlc-container
    .hero-dlc-btn-container
    .hero-dlc-btn
    .hero-dlc-btn-title {
    font-size: 18px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn .lp-btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  font-size: 18px !important;
  font-weight: bold !important;
  color: #fff !important;
  background: var(--cover-button) !important;
  border: 2px solid var(--cover-border) !important;
  border-radius: 15px !important;
  text-decoration: none !important;
  transition: background 0.3s, border 0.3s, color 0.3s !important;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.type-hero
  .hero-dlc-container
  .hero-dlc-btn-container
  .hero-dlc-btn
  .lp-btn:hover {
  background: var(--cover-button-hover) !important;
}

@media screen and (min-width: 1281px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn .lp-btn {
    font-size: 40px;
    border-radius: 15px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn .note {
  font-size: 0.9rem;
}

@media screen and (min-width: 500px) {
  .type-hero .hero-dlc-container .hero-dlc-btn-container .hero-dlc-btn .note {
    font-size: 14px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-anchor-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 3.9vw 0;
  background: #1d1a1a;
  background-size: 96px 74px;
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container .hero-dlc-anchor-link a {
    padding: 20px 0;
    background-size: 162px 124px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-anchor-link .hero-dlc-btn-text {
  width: 11.7vw;
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container .hero-dlc-anchor-link .hero-dlc-btn-text {
    width: 77px;
  }
}

.type-hero .hero-dlc-container .hero-dlc-anchor-link .hero-dlc-btn-arrow {
  width: 4.5vw;
}

@media screen and (min-width: 769px) {
  .type-hero .hero-dlc-container .hero-dlc-anchor-link .hero-dlc-btn-arrow {
    width: 30px;
  }
}

/* type-dlc
-------------------------------------------------- */
@media screen and (min-width: 769px) {
  .type-dlc h2 .sp {
    display: none;
  }
}

.type-dlc .dlc-movie {
  margin: 0 auto;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.type-dlc .dlc-movie video {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .type-dlc .ss-head .sp {
    display: none;
  }
}

.type-dlc .ss-desc .sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .type-dlc .ss-desc .sp {
    display: block;
  }
}

/* type-works
-------------------------------------------------- */
.works-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 1060px;
}

@media screen and (min-width: 769px) {
  .works-inner {
    flex-direction: row;
    padding: 0 30px;
  }
}

.works-inner .works-box {
  margin: 0 auto;
  width: 86vw;
  background: var(--work-background);
  border: solid 1px var(--work-border);
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box {
    margin: 0;
    width: calc(50% - 20px);
  }
}

.works-inner .works-box h3 {
  padding: 20px 0;
  font-size: clamp(14px, 4.2vw, 100px);
  font-weight: 900;
  text-align: left;
  padding-left: 18px;
  background-color: #b13b64;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box h3 {
    font-size: 24px;
  }
}

.works-inner .works-box .works-title {
  height: 68px;
  padding: 20px 20px 0;
  font-size: clamp(14px, 2.7vw, 100%);
  font-weight: 900;
  line-height: 1.2em;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-title {
    font-size: 20px;
  }
}

.works-inner .works-box .works-title1 {
  height: 68px;
  padding: 20px 20px 0;
  font-size: clamp(14px, 2.7vw, 100%);
  font-weight: 900;
  line-height: 1.2em;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-title1 {
    font-size: 18px;
  }
}

.works-inner .works-box .works-price {
  padding: 0 20px 10px;
  font-size: clamp(14px, 2.7vw, 100px);
  font-weight: 900;
  box-sizing: border-box;
}

.works-inner .works-box .works-price strong {
  margin: 0 0.2em;
  font-size: clamp(14px, 4.4vw, 100px);
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-price {
    font-size: 15px;
  }

  .works-inner .works-box .works-price strong {
    font-size: 24px;
  }
}

.works-inner .works-box .works-spec {
  padding: 20px;
  background: var(--work-content-background);
  box-sizing: border-box;
}

.works-inner .works-box .works-spec .spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.works-inner .works-box .works-spec .spec-list .spec-item {
  display: flex;
  align-items: flex-start;
  /*font-size: 3.38vw;*/
  line-height: 1.1;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-spec .spec-list .spec-item {
    font-size: 14px;
  }
}

.works-inner .works-box .works-spec .spec-list .spec-item .name {
  min-width: 100px;
}

.works-inner .works-box .works-btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  gap: 20px;
  padding: 20px 0 15px;
}

.works-inner .works-box .works-btn-container .works-btn {
  width: 43.75%;
  display: flex;
  justify-content: center;
}

.works-inner .works-box .works-btn-container .works-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: clamp(14px, 2.7vw, 100px);
  font-weight: 600;
  color: #b13b64;
  background: var(--work-button-background);
  border: 2px solid var(--work-button-border);
  border-radius: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.works-btn-warning {
  padding: 0 20px 15px;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .works-btn-warning {
    bottom: 0px;
  }
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-btn-container .works-btn a {
    font-size: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .works-inner .works-box .works-btn-container .works-btn a {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .works-inner .works-box .works-btn-container .works-btn a {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .works-inner .works-box .works-btn-container .works-btn a {
    font-size: 22px;
  }
}
.works-inner .works-box .works-btn-container .works-btn.btn-detail a {
  background: var(--work-button-background);
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  .works-inner .works-box .works-btn-container .works-btn a {
    transition: opacity 0.3s ease;
  }

  .works-inner .works-box .works-btn-container .works-btn a:hover {
    opacity: 0.7;
  }

  .works-inner .works-box .works-btn-container .works-btn.btn-detail a:hover {
    opacity: 0.7;
  }
}

.works-inner .works-box .note {
  padding: 0 20px 15px;
  font-size: 14px;
}

.footer-scroll {
  width: 150px;
  float: right;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-scroll:hover {
  opacity: 1;
}

.DLPlayBox-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* 封面 人物圖 */
.cover-chara {
  position: absolute;
  width: calc(100% - 890px);
  max-height: 100vh;
  bottom: 0;
  max-width: 1200px;
}

@media screen and (max-width: 1600px) {
  .cover-chara {
    width: calc(100% - 620px);
  }
}

@media screen and (max-width: 1024px) {
  .cover-chara {
    width: 100%;
    max-height: 100vh;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 230px;
  }
}

@media screen and (max-width: 768px) {
  .cover-chara {
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 230px;
  }
}

/* 封面 人物圖 */

/* 封面 如何使用DLPlayBox 按鈕 */
.DLPlayBox-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .DLPlayBox-button {
    padding-top: 20px;
  }
}

.DLPlayBox-button-a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.DLPlayBox-button-title {
  max-width: 517px;
  animation: floatUpDown 2s ease-in-out infinite;
}

@media screen and (max-width: 1600px) {
  .DLPlayBox-button-title {
    max-width: 350px;
  }
}

.DLPlayBox-button-icon {
  width: 23.86px;
  transition: transform 0.3s ease;
}

.DLPlayBox-button-a:hover .DLPlayBox-button-icon {
  transform: translateY(8px);
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* 封面 如何使用DLPlayBox 按鈕 */

/* DL Play Box 是什麼? */
.DLPlayBox-what {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.DLPlayBox-what p {
  width: 1080px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 20px;
}

.DLPlayBox-what p br {
  display: none;
}

.DLPlayBox-what-span {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #ff0000;
  text-underline-offset: 8px;
  text-decoration-thickness: 5px;
}

@media screen and (max-width: 768px) {
  .DLPlayBox-what-span {
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
    line-height: 1.5;
  }
}

.DLPlayBox-images {
  width: calc(100% - 40px);
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  padding: 0 20px;
}

.DLPlayBox-images img {
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 1080px) {
  .DLPlayBox-images {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
    max-width: 640px;
  }

  .slogan p {
    font-size: clamp(25px, 3.546vw + 11.7px, 50px);
  }
}

@media screen and (max-width: 1600px) {
  .slogan p {
    font-size: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .slogan {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    transform: var(--slogan-translateY) !important;
  }

  .slogan p {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) var(--slogan-text);
  }

  .DLPlayBox-button-title {
    width: 210px;
  }
}

@media screen and (max-width: 600px) {
  .slogan p {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .DLPlayBox-what p {
    font-size: 24px;
    text-align: center;
  }

  .DLPlayBox-what p br {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .slogan {
    top: 0px;
  }
}

@media screen and (max-width: 400px) {
  .DLPlayBox-what p {
    font-size: 24px;
  }

  .DLPlayBox-what p br {
    display: block;
  }

  .DLPlayBox-images {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* DL Play Box 是什麼? */

/* 如何使用DL Play Box */
.DLPlayBox-use {
  width: calc(100% - 40px);
  max-width: 1300px;
  padding: 0 20px;
  display: flex;
  gap: 45px;
}

@media screen and (max-width: 1230px) {
  .DLPlayBox-use {
    flex-direction: column;
    align-items: center;
  }
}

.DLPlayBox-use-img {
  width: 100%;
  max-width: 453px;
}

.DLPlayBox-use-img img {
  width: 100%;
}

.DLPlayBox-use-text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 1230px) {
  .DLPlayBox-use-text-center {
    width: auto;
  }
}

.DLPlayBox-use-text .title {
  font-size: 40px;
  font-weight: bold;
}

.DLPlayBox-use-text .text {
  max-width: 700px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 15px;
}

.DLPlayBox-use-game {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 45px;
  padding-left: 40px;
}

@media screen and (max-width: 1300px) {
  .DLPlayBox-use-game {
    padding-left: 0;
  }
}

.DLPlayBox-use-game a {
  max-width: 450px;
  background-color: #fff;
  color: #134170;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 58px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 650px) {
  .DLPlayBox-use-game a {
    padding: 5px 20px;
  }

  .DLPlayBox-use-text .title {
    font-size: 24px;
  }

  .DLPlayBox-use-text .text {
    font-size: 20px;
  }

  .DLPlayBox-use-game a {
    font-size: 20px;
    height: 50px;
  }
}

.DLPlayBox-use-game a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.DLPlayBox-use-game a img {
  width: 20px;
}

.DLPlayBox-use-app {
  display: flex;
  gap: 40px;
  padding-top: 35px;
}

.DLPlayBox-use-app .download {
  width: 266px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.DLPlayBox-use-app .download .QRcode {
  width: 130px;
}

@media screen and (max-width: 620px) {
  .DLPlayBox-use-app {
    gap: 20px;
  }

  .DLPlayBox-use-app .download {
    width: 100%;
  }

  .DLPlayBox-use-app .download .QRcode {
    display: none;
  }
}

.DLPlayBox-use-app .download a img {
  transition: opacity 0.3s ease;
}

.DLPlayBox-use-app .download a:hover img {
  opacity: 0.7;
}

/* 如何使用DL Play Box */

/* 其他作品 */
.other-works {
  width: 100%;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-works a {
  width: 100%;
  max-width: 330px;
  padding: 20px;
  margin: 0 50px;
  background-color: var(--other-works-button);
  font-size: 36px;
  font-weight: 900;
  color: var(--other-works-text);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 20px;
  transition: all 0.3s;
}

.other-works a:hover {
  opacity: 0.7;
}

.other-works a img {
  width: 24px;
}
/* 其他作品 */
