@charset "UTF-8";
/* reset css */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Varela&display=swap");
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
section,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
  padding-left: 0;
  line-height: initial;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
}

img {
  max-width: 100%;
}

* {
  font-family: "noto sans tc", sans-serif;
}

p,
span {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
h1 {
  font-size: 2.5rem;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 992px) {
  h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.75rem;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 992px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 992px) {
  h4 {
    font-size: 1.125rem;
  }
}
h5 {
  font-size: 1.125rem;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 992px) {
  h5 {
    font-size: 1rem;
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.625rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes arrowAttention {
  0%, 70% {
    transform: translateY(0);
  }
  76% {
    transform: translateY(0.875rem);
  }
  82% {
    transform: translateY(0);
  }
  88% {
    transform: translateY(0.625rem);
  }
  94%, 100% {
    transform: translateY(0);
  }
}
@keyframes next-card {
  0% {
    transform: translateX(5rem) scale(0.8) translateX(2.5rem);
  }
  100% {
    transform: translateX(0) scale(1) translateX(0rem);
  }
}
@keyframes next-before {
  0% {
    height: 100%;
    background-color: #ffffff;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  50% {
    background-color: #f4f4f4;
    left: calc(-5rem - 3%);
    transform: translate(0%, -50%);
  }
  100% {
    height: 28.75rem;
    transform: translate(0%, -50%);
  }
}
@keyframes next-after {
  0% {
    right: 50%;
    transform: translate(50%, -50%);
    z-index: -2;
  }
  100% {
    right: -5rem;
    transform: translate(0%, -50%);
  }
}
@keyframes prev-card {
  0% {
    transform: translateX(-5rem) scale(0.8) translateX(-2.5rem);
  }
  100% {
    transform: translateX(0) scale(1) translateX(0rem);
  }
}
@keyframes prev-before {
  0% {
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
  }
  100% {
    left: -5rem;
    transform: translate(0%, -50%);
  }
}
@keyframes prev-after {
  0% {
    height: 100%;
    background-color: #ffffff;
    right: 50%;
    transform: translate(50%, -50%);
  }
  50% {
    background-color: #f4f4f4;
    right: calc(-5rem - 3%);
    transform: translate(0%, -50%);
  }
  100% {
    height: 28.75rem;
    transform: translate(0%, -50%);
  }
}
html {
  width: 100svw;
  overflow-x: hidden;
}

body {
  background-color: #000000;
  color: #ffffff;
  width: 100svw;
  overflow-x: hidden;
}

/* 反白選取樣式 */
::-moz-selection {
  background-color: rgba(163, 102, 245, 0.8);
  color: #ffffff;
}

::selection {
  background-color: rgba(163, 102, 245, 0.8);
  color: #ffffff;
}

/* 捲軸樣式 */
::-webkit-scrollbar {
  width: 0.3125rem;
  background-color: #000000;
  border-radius: 6.25rem 6.25rem 6.25rem 6.25rem;
}

::-webkit-scrollbar-thumb {
  width: 0.3125rem;
  background-color: #626262;
  border-radius: 6.25rem 6.25rem 6.25rem 6.25rem;
}

/* 按鈕樣式 */
button {
  color: #ffffff;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}
button {
  border-radius: 6.25rem 6.25rem 6.25rem 6.25rem;
  padding: 1rem 2.25rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
button.btn-funonePrimary, button.btn-funoneSecondary {
  border: 0.0625rem solid transparent;
  transition: border 0.2s;
}
@media (hover: hover) {
  button.btn-funonePrimary:hover, button.btn-funoneSecondary:hover {
    border-color: #ffffff;
  }
}
button.btn-funonePrimary {
  background-color: #000000;
}
button.btn-funoneSecondary {
  background-color: #a366f5;
}
button.btn-gashPrimary {
  background-color: #e72d6a;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  button.btn-gashPrimary:hover {
    background-color: #df215f;
  }
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
@media (hover: hover) {
  button:disabled:hover {
    border-color: transparent;
  }
}

/* 連結樣式 */
a {
  color: #e72d6a;
  text-decoration: underline;
  transition: color 0.2s;
}
@media (hover: hover) {
  a:hover {
    color: #df215f;
  }
}

ol {
  padding-left: 1.25rem;
}

.canvas {
  overflow: hidden;
}

.keyvision {
  background-color: #e72d6a;
  width: 100svw;
  min-height: 100svh;
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: 6.25rem;
}
.keyvision #confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.keyvision header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  max-width: 80rem;
  box-sizing: content-box;
  margin: auto;
}
.keyvision header img {
  max-height: 100%;
}
.keyvision .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 80rem;
  margin: auto;
  max-height: 100%;
}
.keyvision .container .info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.keyvision .container .info .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.keyvision .container .info .title [data-animation-path*=Slogan] {
  max-width: 34.375rem;
  aspect-ratio: 11/2;
}
.keyvision .container .info .awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.keyvision .container .info .awards img {
  max-width: 16.625rem;
  animation: floating 4s infinite ease-in-out;
}
.keyvision .container .info .awards img:first-child {
  animation-delay: 0s;
}
.keyvision .container .info .awards img:last-child {
  animation-delay: 0.8s;
  animation-duration: 4.5s;
}
.keyvision .container .info .more {
  width: 4.5rem;
  height: 4.5rem;
  margin: auto;
  padding: 0;
}
.keyvision .container .info .more img {
  width: 2rem;
  height: 2rem;
  display: block;
  animation: arrowAttention 3s ease-in-out infinite;
}
@media (hover: hover) {
  .keyvision .container .info .more img:hover {
    animation-play-state: paused;
  }
}
.keyvision .container .kv {
  position: relative;
}
.keyvision .container .kv [data-animation-path*=kv] {
  position: relative;
  max-width: 37.5rem;
  aspect-ratio: 9/10;
  z-index: 0;
}
.keyvision .container .kv img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.keyvision .marquee {
  display: flex;
  align-items: baseline;
  width: 110%;
  padding: 1.25rem 0;
  overflow: hidden;
  background-color: #ffffff;
  color: #313131;
  transform-origin: right center;
  transform: rotate(3deg);
  position: absolute;
  top: 100%;
  left: -5%;
  z-index: 2;
}
.keyvision .marquee .content {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  animation: marqueeLeft 30s linear infinite;
  gap: 1.25rem;
  padding-right: 1.25rem;
}
.keyvision .marquee .content > h2 {
  display: inline-block;
  font-size: 2rem;
  line-height: 120%;
  font-weight: 900;
}
.keyvision .marquee .content > h2::before {
  content: url("../img/keyvision/Star.svg");
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 1.25rem;
  display: inline-block;
  transform: translateY(-0.25rem);
}
.keyvision::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 110%;
  height: 2vw;
  background-color: #000000;
  z-index: 0;
  pointer-events: none;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.dummies {
  max-width: 80rem;
  margin: 4rem auto;
}
.dummies .topic {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.dummies .topic .info ul {
  margin-bottom: 1rem;
}
.dummies .topic .info ul li {
  display: flex;
  gap: 1rem;
}
.dummies .topic .info ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.dummies .topic .info ul li span {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}
.dummies .topic .info ul li span {
  display: flex;
}
.dummies .topic .info ul li span + span:before {
  content: "|";
  color: #626262;
  font-size: 1.375rem;
  margin-right: 1rem;
}
.dummies .topic .info ul li span:first-child {
  min-width: fit-content;
}
.dummies .topic .info p {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
.dummies .topic .info p {
  color: #959595;
}
.dummies .items {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}
.dummies .items li {
  flex: 1;
  text-align: center;
}
.dummies .items li img[src*=item01] {
  max-width: 18.75rem;
}
.dummies .items li .item-img {
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0rem 0rem;
  aspect-ratio: 5/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dummies .items li .item-name {
  overflow: hidden;
  border-radius: 0rem 0rem 1.25rem 1.25rem;
  background-color: #ffffff;
  color: #191919;
  padding: 1.25rem 0rem;
  display: block;
}
.dummies .items li:nth-child(1) .item-img {
  background-image: url("../img/item01-bg.jpg");
}
.dummies .items li:nth-child(2) .item-img {
  background-image: url("../img/item02-bg.jpg");
}
.dummies .items li:nth-child(3) .item-img {
  background-image: url("../img/item03-bg.jpg");
}
.dummies .items li:first-child {
  position: relative;
}
.dummies .items li:first-child img {
  position: absolute;
  right: 0;
  top: -15%;
}

.exchange {
  max-width: 80rem;
  margin: auto;
  padding: 2.5rem 0rem;
}
.exchange .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.exchange .title::before, .exchange .title::after {
  content: url("../img/crossStar-light.svg");
}
.exchange .container {
  background-color: #8433f1;
  border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  padding: 1.75rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  width: fit-content;
  max-width: 54.375rem;
  margin: auto;
  position: relative;
}
.exchange .container .content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.exchange .container .content div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.exchange .container .content div p {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
.exchange .container .content div img {
  width: 7.5rem;
}
.exchange .container .btn {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 1rem;
  background-image: url("../img/devider-h.svg");
  background-repeat: repeat-y;
  padding: 0rem 0rem 0rem 2rem;
}
.exchange .container .btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}
.exchange .container .btn button {
  line-height: 1;
}
.exchange .container [data-animation-path*=point] {
  position: absolute;
  top: -2.25rem;
  left: -1.125rem;
  max-width: 4.375rem;
  aspect-ratio: 1/1;
  transform: translateZ(0) rotate(-18deg);
}
.exchange .container [data-animation-path*=eye] {
  position: absolute;
  top: -2.25rem;
  right: 20%;
  max-width: 4rem;
  aspect-ratio: 1/1;
  transform: translateZ(0);
}

.events {
  margin-top: 4.25rem;
  position: relative;
  color: #000000;
  width: calc(100svw - 0.3125rem);
}
.events .container {
  background-image: url("../img/events-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 4rem calc((100svw - 80rem) / 2);
  overflow: hidden;
  border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 50rem;
}
.events .container h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.events .container h2::before, .events .container h2::after {
  content: url("../img/crossStar-dark.svg");
}
.events .container .tab-header {
  display: flex;
  gap: 2rem;
  width: 46.875rem;
  margin: 0rem auto;
  align-items: center;
  justify-content: center;
}
.events .container .tab-header li {
  flex: 1;
  text-align: center;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  border: 0.125rem solid #000000;
  box-shadow: 0.25rem 0.25rem 0rem 0rem #000000;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 700;
}
.events .container .tab-header li.active {
  pointer-events: none;
}
.events .container .tab-header li:nth-child(1) {
  background-color: #8da5ff;
}
.events .container .tab-header li:nth-child(2) {
  background-color: #ffb760;
}
.events .container .tab-header li:nth-child(3) {
  background-color: #dfadff;
}
.events .container .tab-wrapper {
  position: relative;
}
.events .container .tab-wrapper .tab-panel {
  position: relative;
  display: none;
  margin: 0rem auto;
  width: 50rem;
}
.events .container .tab-wrapper .tab-panel .card {
  width: 100%;
  border: 0.125rem solid #000000;
  background-color: #ffffff;
  border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.events .container .tab-wrapper .tab-panel .card h4 {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.events .container .tab-wrapper .tab-panel .card h4 span {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 700;
}
.events .container .tab-wrapper .tab-panel .card h4 span {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  flex-shrink: 0;
}
.events .container .tab-wrapper .tab-panel .card ul > li {
  display: flex;
  gap: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card ul > li span {
  margin-bottom: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card ul > li span.topic:has(+ *)::after {
  content: "|";
}
.events .container .tab-wrapper .tab-panel .card ul > li .imgs {
  display: flex;
  gap: 1.5rem;
}
.events .container .tab-wrapper .tab-panel .card span {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}
.events .container .tab-wrapper .tab-panel .card span.topic {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: fit-content;
  height: fit-content;
  margin-bottom: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card span.topic::before {
  content: "";
  background-image: url("../img/crossStar-dark.svg");
  width: 0.875rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
}
.events .container .tab-wrapper .tab-panel .card span.topic + span {
  margin-bottom: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card span.note {
  display: inline-block;
  color: #959595;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
.events .container .tab-wrapper .tab-panel .card .awards {
  display: flex;
  gap: 1.5rem;
}
.events .container .tab-wrapper .tab-panel .card .img [src*=award] {
  width: 9.5rem;
}
.events .container .tab-wrapper .tab-panel .card button {
  width: fit-content;
  margin: 0rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
}
.events .container .tab-wrapper .tab-panel .card .rooc {
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  background-color: #f4f4f4;
  padding: 1rem;
  position: relative;
}
.events .container .tab-wrapper .tab-panel .card .rooc p {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 700;
}
.events .container .tab-wrapper .tab-panel .card .rooc p {
  margin-bottom: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card .rooc ul {
  padding-left: 0.5rem;
}
.events .container .tab-wrapper .tab-panel .card .rooc .ro {
  background-color: #ffffff;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}
.events .container .tab-wrapper .tab-panel .card .rooc::after {
  content: "";
  background-image: url("../img/FamilyMart.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12.5rem;
  height: 10rem;
  position: absolute;
  right: 2.5rem;
  top: -6.25rem;
}
.events .container .tab-wrapper .tab-panel:nth-child(1) .card h4 span {
  background-color: #8da5ff;
}
.events .container .tab-wrapper .tab-panel:nth-child(1) .card img[src*=pc] {
  display: inline;
}
.events .container .tab-wrapper .tab-panel:nth-child(1) .card img[src*=mobile] {
  display: none;
}
.events .container .tab-wrapper .tab-panel:nth-child(2) .card h4 span {
  background-color: #ffb760;
}
.events .container .tab-wrapper .tab-panel:nth-child(3) .card h4 span {
  background-color: #dfadff;
}
.events .container .tab-wrapper .tab-panel.active {
  display: block;
}
.events .container .tab-wrapper .tab-panel.active .card {
  opacity: 1;
}
.events .container .tab-wrapper .tab-panel::before, .events .container .tab-wrapper .tab-panel::after {
  content: "";
  height: 28.75rem;
  width: 50rem;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  background-color: #f4f4f4;
  border: 0.125rem solid #000000;
  border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  z-index: 0;
}
.events .container .tab-wrapper .tab-panel::before {
  left: -5rem;
}
.events .container .tab-wrapper .tab-panel::after {
  right: -5rem;
}
.events .container .tab-wrapper .tab-panel.next-in .card {
  animation: next-card 0.4s ease-in backwards;
}
.events .container .tab-wrapper .tab-panel.next-in::before {
  animation: next-before 0.5s ease-in-out backwards;
}
.events .container .tab-wrapper .tab-panel.next-in::after {
  animation: next-after 0.5s 0.1s ease-in-out backwards;
}
.events .container .tab-wrapper .tab-panel.prev-in .card {
  animation: prev-card 0.4s ease-in backwards;
}
.events .container .tab-wrapper .tab-panel.prev-in::before {
  animation: prev-before 0.5s 0.1s ease-in-out backwards;
}
.events .container .tab-wrapper .tab-panel.prev-in::after {
  animation: prev-after 0.5s ease-in-out backwards;
}
.events .note18 {
  color: #ffb760;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
.events .note18 {
  margin: 0.75rem;
  text-align: center;
}
.events::after {
  content: "";
  position: absolute;
  width: 9.375rem;
  aspect-ratio: 1/1;
  background-image: url("../img/Badge.svg");
  background-size: contain;
  background-position: center;
  top: 0;
  right: calc((100svw - 80rem) / 2);
  transform: translateY(-50%);
  animation: badge-rotate 15s linear both infinite;
}
@keyframes badge-rotate {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.notice {
  width: 100svw;
  max-width: 80rem;
  margin: auto;
  padding: 4rem 0rem;
}
.notice h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.notice h2::before, .notice h2::after {
  content: url("../img/crossStar-light.svg");
}
.notice ol {
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}
footer {
  padding: 2rem calc((100svw - 80rem) / 2);
  box-sizing: content-box;
  margin: auto;
  display: flex;
  gap: 1.5rem;
  border-top: 0.0625rem solid #313131;
}
footer .info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}
footer .info .logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
footer .info .logo img[src*=GASHLogo] {
  height: 1.5rem;
}
footer .info .logo img[src*=ic_round-close] {
  height: 1.25rem;
}
footer .info .logo img[src*=FunOneLogo] {
  height: 1.875rem;
}
footer .info copyright {
  font-size: 0.75rem;
  line-height: 150%;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .info copyright {
    line-height: 120%;
  }
}
footer .info copyright {
  color: #959595;
}
footer img[src*=pg15] {
  height: 2.5rem;
}

/* 直式裝置 */
@media (orientation: portrait) {
  .keyvision .container {
    display: block;
    padding: 0 1.25rem;
  }
  .keyvision .container .info {
    gap: 0.75rem;
  }
  .keyvision .container .info .title {
    gap: 1rem;
    margin: 0 auto;
  }
  .keyvision .container .kv {
    width: fit-content;
    margin: 1rem auto 0;
  }
}
/* 筆電 993 ~ 1280 */
@media (max-width: 1280px) {
  .keyvision {
    padding: 0rem 1.25rem 5rem;
  }
  .dummies {
    padding: 1.25rem;
  }
  .dummies .items li:first-child img {
    max-width: 70%;
  }
  .events .container {
    padding: 4rem 1.25rem;
  }
  .events::after {
    width: 6.25rem;
    right: 2.5rem;
  }
  .notice {
    padding: 4rem 1.25rem;
  }
  footer {
    padding: 2rem;
  }
}
/* 平板 769 ~ 992 */
@media (max-width: 992px) {
  .keyvision {
    padding: 0 0 5rem;
  }
  .keyvision header {
    padding: 1rem 1.25rem;
    box-sizing: border-box;
    gap: 0.625rem;
  }
  .keyvision .container {
    display: block;
    padding: 0 1.25rem;
  }
  .keyvision .container .info {
    gap: 0.75rem;
  }
  .keyvision .container .info .title {
    gap: 1rem;
    margin: 0 auto;
  }
  .keyvision .container .kv {
    width: fit-content;
    margin: 1rem auto 0;
  }
  .dummies {
    padding: 1.25rem;
  }
  .dummies .topic {
    flex-direction: column;
  }
  .dummies .items li:first-child img {
    width: 70%;
    top: -15%;
  }
  .exchange {
    margin: 1.25rem;
  }
  .exchange .container .btn button {
    min-width: fit-content;
  }
  .exchange .container [data-animation-path*=eye] {
    right: 1.5rem;
  }
  .events {
    width: 100svw;
  }
  .events .container {
    overflow: visible;
    background-size: 125rem;
    background-position: top center;
  }
  .events .container .tab-header {
    max-width: 100%;
    position: sticky;
    top: 0.5rem;
  }
  .events .container .tab-header.sticky, .events .container .tab-header.sticky-bottom {
    right: 1.25rem;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    max-width: 46.875rem;
    z-index: 2;
  }
  .events .container .tab-header.sticky {
    position: fixed;
    top: 1.25rem;
    bottom: auto;
  }
  .events .container .tab-header.sticky-bottom {
    position: absolute;
    top: auto;
    bottom: 6.25rem;
  }
  .events .container .tab-wrapper .tab-panel {
    max-width: 100%;
  }
  .events .container .tab-wrapper .tab-panel .card {
    padding: 2.5rem 1.25rem;
  }
  .events .container .tab-wrapper .tab-panel .card h4 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  .events .container .tab-wrapper .tab-panel::before, .events .container .tab-wrapper .tab-panel::after {
    display: none;
  }
  .events .container .tab-wrapper .tab-panel.next-in .card, .events .container .tab-wrapper .tab-panel.prev-in .card {
    animation: none;
  }
  footer {
    padding: 2rem 1.25rem;
  }
}
/* 手機 0 ~ 768 */
@media (max-width: 768px) {
  .keyvision header {
    height: 3.25rem;
  }
  .keyvision .container .info .title {
    max-width: 18.75rem;
  }
  .keyvision .container .info .title [src*=Group] {
    max-height: 2.25rem;
  }
  .keyvision .container .info img {
    max-width: 18.75rem;
  }
  .keyvision .container .info .awards {
    gap: 1.5rem;
  }
  .keyvision .container .info .awards img {
    max-width: 9.375rem;
  }
  .keyvision .container .info .more {
    width: 2.75rem;
    height: 2.75rem;
  }
  .keyvision .container .info .more img {
    width: 1.125rem;
    height: 1.125rem;
  }
  .keyvision .container .kv {
    margin-top: 1.75rem;
    max-width: 31.25rem;
  }
  .keyvision .marquee {
    padding: 0.75rem 0;
  }
  .keyvision .marquee .content {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }
  .keyvision .marquee .content > h2 {
    font-size: 1.25rem;
  }
  .keyvision .marquee .content > h2::before {
    margin-right: 0.75rem;
    transform: scale(0.6);
  }
  .dummies .topic .info ul li {
    gap: 0.5rem;
  }
  .dummies .topic .info ul li span + span:before {
    margin-right: 0.5rem;
  }
  .dummies .items {
    flex-direction: column;
  }
  .exchange .title img {
    height: 1.5rem;
  }
  .exchange .container {
    padding: 4rem 1.25rem 1.25rem;
    flex-direction: column;
  }
  .exchange .container [data-animation-path*=point] {
    top: -1.5rem;
  }
  .exchange .container [data-animation-path*=eye] {
    top: -1.25rem;
  }
  .exchange .container .content div {
    flex-direction: column;
  }
  .exchange .container .content div p {
    order: 2;
  }
  .exchange .container .content div img {
    order: 1;
    width: 11.25rem;
  }
  .exchange .container .btn {
    width: 100%;
    background-image: url("../img/devider-v.svg");
    background-repeat: repeat-x;
    padding: 2rem 0rem 0rem 0rem;
  }
  .exchange .container .btn button {
    width: 100%;
  }
  .exchange .container::before {
    top: -1.5rem;
  }
  .exchange .container::after {
    top: -0.875rem;
    right: 8%;
  }
  .events .container {
    position: relative;
    background-image: url("../img/events-bg_mobile.jpg");
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #e72d6a;
  }
  .events .container .tab-wrapper .tab-panel .card ul > li {
    flex-direction: column;
    gap: 0rem;
  }
  .events .container .tab-wrapper .tab-panel .card ul > li span {
    margin-bottom: 0 !important;
  }
  .events .container .tab-wrapper .tab-panel .card ul > li .imgs {
    gap: 0.5rem;
  }
  .events .container .tab-wrapper .tab-panel .card ul > li .imgs .img {
    width: auto;
    max-width: calc((100% - 0.5rem) / 2);
  }
  .events .container .tab-wrapper .tab-panel .card ul > li:not(:last-child) {
    margin-bottom: 1.75rem;
  }
  .events .container .tab-wrapper .tab-panel .card span.topic:has(+ *)::after {
    display: none;
  }
  .events .container .tab-wrapper .tab-panel .card .awards {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .events .container .tab-wrapper .tab-panel .card .img {
    max-width: calc((100% - 0.5rem) / 2);
  }
  .events .container .tab-wrapper .tab-panel .card .img [src*=award05] {
    margin: 0 auto;
  }
  .events .container .tab-wrapper .tab-panel .card .rooc p {
    margin-bottom: 1.75rem;
  }
  .events .container .tab-wrapper .tab-panel .card .rooc .ro {
    text-align: center;
  }
  .events .container .tab-wrapper .tab-panel .card .rooc .ro a {
    display: inline-block;
  }
  .events .container .tab-wrapper .tab-panel .card .rooc::after {
    display: none;
  }
  .events .container .tab-wrapper .tab-panel:nth-child(1) .card img[src*=pc] {
    display: none;
  }
  .events .container .tab-wrapper .tab-panel:nth-child(1) .card img[src*=mobile] {
    display: inline;
  }
  .events::after {
    width: 5rem;
  }
  .notice {
    padding: 2.5rem 1.25rem;
  }
  footer .info .logo {
    gap: 0.875rem;
  }
  footer .info .logo img[src*=GASHLogo] {
    height: 1rem;
  }
  footer .info .logo img[src*=ic_round-close] {
    height: 0.875rem;
  }
  footer .info .logo img[src*=FunOneLogo] {
    height: 1.25rem;
  }
}