@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;600&display=swap");
/* adobe 英文字體_Kohinoor */
@import url("https://use.typekit.net/hjz1jbr.css");
/*750rem*/
:root {
  --remBasicSize: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  height: 100%;
}

.wrapper {
  margin: 0 auto;
  overflow: hidden;
}

/*-------------------------

           bg

-------------------------*/
.wrapper .bg {
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 100vw;
  min-height: 100vh;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .wrapper .bg {
    background-size: 120%;
  }
}

/* ----------------------------------------------------
    initial html5 reset
---------------------------------------------------- */
html,
body,
div,
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,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
audio,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
summary,
time,
video {
  border: 0;
  outline: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
blockquote {
  display: block;
}

nav ul {
  list-style: none;
}

ol {
  list-style: none;
}

ul {
  list-style: none;
}

ul ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

mark {
  background: none;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input[type=submit],
input[type=button],
button {
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
}

input,
select,
a img {
  vertical-align: middle;
}

/*-------------------------

            a

-------------------------*/
a,
button {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

a:focus,
button:focus {
  outline: none;
  text-decoration: none;
}

/*-------------------------

          page內頁共用

  -------------------------*/
#pages {
  padding-top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #pages {
    padding-top: calc(0 * var(--remBasicSize));
  }
}

/*-------------------------
          head共用
  -------------------------*/
.page_head_title {
  width: 100%;
  height: calc(23.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .page_head_title {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(25.25 * var(--remBasicSize));
  }
}
.page_head_title .inner_pages {
  position: relative;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(23.125 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .page_head_title .inner_pages {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.page_head_title .inner_pages .dec_area {
  position: relative;
  margin: 0 auto;
  width: calc(58.75 * var(--remBasicSize));
  height: calc(9.9375 * var(--remBasicSize));
  top: calc(5 * var(--remBasicSize));
  background: url(../images/head/head_bg.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .page_head_title .inner_pages .dec_area {
    width: calc(46.875 * var(--remBasicSize));
    top: calc(6.25 * var(--remBasicSize));
    background-size: 115%;
  }
}
.page_head_title .inner_pages .head_h3 {
  position: relative;
  margin: 0 auto;
  width: calc(9.875 * var(--remBasicSize));
  height: calc(0.71875 * var(--remBasicSize));
  top: calc(11.25 * var(--remBasicSize));
  background: url(../images/head/head_h3.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .page_head_title .inner_pages .head_h3 {
    width: calc(14.22 * var(--remBasicSize));
    height: calc(1.035 * var(--remBasicSize));
  }
}
.page_head_title .inner_pages .red_line {
  position: relative;
  margin: 0 auto;
  width: calc(0.25 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  top: calc(12.5 * var(--remBasicSize));
  background-color: #c93400;
  transform-origin: top center;
  animation: redLineGrow 2s ease-out infinite;
}
@keyframes redLineGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.page_head_title .inner_pages .head_kv_l {
  position: absolute;
  margin: 0 auto;
  width: calc(16.0625 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  top: calc(1.25 * var(--remBasicSize));
  left: calc(4.375 * var(--remBasicSize));
  background: url(../images/head/head_kv_l.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .page_head_title .inner_pages .head_kv_l {
    width: calc(15 * var(--remBasicSize));
    height: calc(10.875 * var(--remBasicSize));
    left: calc(0 * var(--remBasicSize));
  }
}
.page_head_title .inner_pages .head_kv_r {
  position: absolute;
  margin: 0 auto;
  width: calc(16.0625 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  top: calc(1.25 * var(--remBasicSize));
  right: calc(4.375 * var(--remBasicSize));
  background: url(../images/head/head_kv_r.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .page_head_title .inner_pages .head_kv_r {
    width: calc(15 * var(--remBasicSize));
    height: calc(10.875 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}

/*--- team ---*/
#pages .team .page_head_title .inner_pages h1 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  text-indent: -999999px;
  top: calc(-1.5625 * var(--remBasicSize));
  width: calc(21.53125 * var(--remBasicSize));
  height: calc(2.3125 * var(--remBasicSize));
  background: url(../images/team/h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  #pages .team .page_head_title .inner_pages h1 {
    top: calc(-0.625 * var(--remBasicSize));
  }
}

#pages .team .page_head_title .inner_pages h2 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  top: calc(-2.5 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: calc(0.125 * var(--remBasicSize));
  color: #fff;
}
@media screen and (max-width: 750px) {
  #pages .team .page_head_title .inner_pages h2 {
    top: calc(-1.25 * var(--remBasicSize));
  }
}

/*--- info ---*/
#pages .info .page_head_title .inner_pages h1 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  text-indent: -999999px;
  top: calc(-1.5625 * var(--remBasicSize));
  width: calc(21.53125 * var(--remBasicSize));
  height: calc(2.3125 * var(--remBasicSize));
  background: url(../images/info/h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  #pages .info .page_head_title .inner_pages h1 {
    top: calc(-0.625 * var(--remBasicSize));
  }
}

#pages .info .page_head_title .inner_pages h2 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  top: calc(-2.5 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: calc(0.125 * var(--remBasicSize));
  color: #fff;
}
@media screen and (max-width: 750px) {
  #pages .info .page_head_title .inner_pages h2 {
    top: calc(-1.25 * var(--remBasicSize));
  }
}

/*--- racekit ---*/
#pages .racekit .page_head_title .inner_pages h1 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  text-indent: -999999px;
  top: calc(-1.5625 * var(--remBasicSize));
  width: calc(21.53125 * var(--remBasicSize));
  height: calc(2.3125 * var(--remBasicSize));
  background: url(../images/racekit/h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  #pages .racekit .page_head_title .inner_pages h1 {
    top: calc(-0.625 * var(--remBasicSize));
  }
}

#pages .racekit .page_head_title .inner_pages h2 {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  text-align: center;
  top: calc(-2.5 * var(--remBasicSize));
  font-size: calc(2 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: calc(0.125 * var(--remBasicSize));
  color: #fff;
}
@media screen and (max-width: 750px) {
  #pages .racekit .page_head_title .inner_pages h2 {
    top: calc(-1.25 * var(--remBasicSize));
  }
}

/*-------------------------

        立即報名按鈕

-------------------------*/
.fixed_area {
  position: fixed;
  display: block;
  right: calc(0 * var(--remBasicSize));
  bottom: calc(1.25 * var(--remBasicSize));
  z-index: 77;
  width: calc(6.8125 * var(--remBasicSize));
  height: calc(21.25 * var(--remBasicSize));
}

.fixed-team-btn {
  position: relative;
  display: block;
  right: calc(0 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  padding: calc(0.625 * var(--remBasicSize)) calc(1.25 * var(--remBasicSize));
  -webkit-text-decoration: block;
          text-decoration: block;
  z-index: 77;
  width: calc(6.8125 * var(--remBasicSize));
  height: calc(8.09375 * var(--remBasicSize));
  background: url(../images/menu/fix_btn_1.png) no-repeat center bottom/contain;
  overflow: visible;
}

.fixed-run-btn {
  position: fixed;
  display: block;
  right: calc(0 * var(--remBasicSize));
  bottom: calc(1.25 * var(--remBasicSize));
  padding: calc(0.625 * var(--remBasicSize)) calc(1.25 * var(--remBasicSize));
  -webkit-text-decoration: block;
          text-decoration: block;
  z-index: 77;
  width: calc(5.6875 * var(--remBasicSize));
  height: calc(12.375 * var(--remBasicSize));
  background: url(../images/menu/fix_btn_2.png) no-repeat center bottom/contain;
  overflow: visible;
}

/* 手機 (小於 750px) 時，固定在底部中央 */
@media screen and (max-width: 750px) {
  .fixed_area {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(1.25 * var(--remBasicSize));
    width: calc(39.75 * var(--remBasicSize));
    height: calc(6.25 * var(--remBasicSize));
  }
  .fixed-team-btn {
    position: absolute;
    left: calc(0 * var(--remBasicSize));
    bottom: calc(0 * var(--remBasicSize));
    width: calc(19.875 * var(--remBasicSize));
    height: calc(6.25 * var(--remBasicSize));
    background: url(../images/menu/fix_btn_1_m.png) no-repeat center bottom/contain;
  }
  .fixed-run-btn {
    position: absolute;
    right: calc(0 * var(--remBasicSize));
    bottom: calc(0 * var(--remBasicSize));
    width: calc(19.875 * var(--remBasicSize));
    height: calc(6.25 * var(--remBasicSize));
    background: url(../images/menu/fix_btn_2_m.png) no-repeat center bottom/contain;
  }
}
/*-------------------------
        fix buttons
-------------------------*/
.fix {
  position: fixed;
  z-index: 110;
  right: 3%;
  bottom: 7%;
  width: calc(6.65625 * var(--remBasicSize));
  height: calc(16.375 * var(--remBasicSize));
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.fix a {
  position: relative;
  width: calc(7.65625 * var(--remBasicSize));
}
.fix .fix-btn01 {
  width: calc(8.65625 * var(--remBasicSize));
  height: calc(16.375 * var(--remBasicSize));
  position: relative;
  background: url(../images/menu/fix2.png) no-repeat center bottom/contain;
}
.fix .fix-arr {
  width: calc(4.65625 * var(--remBasicSize));
  height: calc(1.375 * var(--remBasicSize));
  position: relative;
  top: calc(0.625 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  background: url(../images/menu/fix-arr.png) no-repeat center bottom/contain;
  animation: fix-arr 1s linear infinite alternate;
}

@keyframes fix-arr {
  50% {
    left: calc(2.5 * var(--remBasicSize));
  }
}
@media screen and (max-width: 750px) {
  .fix {
    position: fixed;
    z-index: 110;
    right: 11%;
    bottom: 0%;
    width: calc(36.90625 * var(--remBasicSize));
    height: calc(10.75 * var(--remBasicSize));
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .fix a {
    position: relative;
    width: calc(36.90625 * var(--remBasicSize));
    display: flex;
  }
  .fix .fix-btn01 {
    width: calc(36.90625 * var(--remBasicSize));
    height: calc(10.75 * var(--remBasicSize));
    position: relative;
    background: url(../images/menu/fix-m2.png) no-repeat center bottom/contain;
  }
  .fix .fix-arr {
    display: none;
  }
}
/*-------------------------
        漢 堡
-------------------------*/
.ellerun-menu {
  position: relative;
  z-index: 999;
  transition: all linear 0.2s;
  position: fixed;
  top: 0;
  width: 100%;
}

@keyframes ellerun-menu-fix {
  0% {
    transform: translateY(-55px);
  }
  100% {
    transform: translateY(0);
  }
}
/* only mobile */
@media screen and (max-width: 750px) {
  .burger {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
    cursor: pointer;
    display: block;
    width: 15%;
    height: 6%;
    background-color: #fff;
  }
  .burger span {
    position: absolute;
    left: 24%;
    display: block;
    width: 55%;
    height: calc(0.1875 * var(--remBasicSize));
    background: #000;
    opacity: 1;
    transform: rotate(0deg);
    transition: ease-in-out 0.25s;
  }
  .burger:hover span {
    background: #000;
  }
  .burger span:nth-child(1) {
    top: 37%;
  }
  .burger span:nth-child(2) {
    top: 51%;
  }
  .burger span:nth-child(3) {
    top: 65%;
  }
  .burger.open span:nth-child(1) {
    top: 50%;
    transform: rotate(155deg);
  }
  .burger.open span:nth-child(2) {
    display: none;
  }
  .burger.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-155deg);
  }
}
/*-------------------------
        選 單
-------------------------*/
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .overlay ul li a.menu-item {
    font-size: calc(0.875 * var(--remBasicSize));
  }
}
@media screen and (min-width: 1201px) {
  .overlay ul li a.menu-item {
    font-size: calc(1.125 * var(--remBasicSize));
  }
}
@media screen and (min-width: 751px) {
  .overlay {
    width: 100%;
    height: calc(2.8125 * var(--remBasicSize));
    background-color: #fff;
  }
  .overlay nav {
    width: 100vw;
    height: 100%;
    text-align: center;
  }
  .overlay ul {
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    overflow: hidden;
  }
  .overlay ul li {
    position: relative;
  }
  .overlay ul li:last-child .logo {
    display: none;
  }
  .overlay ul li a.menu-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2.6vw;
    text-decoration: none;
    font-family: "kohinoor-bangla", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    color: #000;
    transition: all 0.2s ease-in-out;
  }
  .overlay ul li a.menu-item p {
    transform: translateY(0);
    transition: all 0.1s linear;
  }
  .overlay ul li a.menu-item span {
    position: absolute;
    top: 0;
    display: inline-block;
    min-width: calc(3.125 * var(--remBasicSize));
    height: calc(3.4375 * var(--remBasicSize));
    transform: translateY(calc(-3.4375 * var(--remBasicSize)));
    transition: all 0.1s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }
  .overlay ul li a.menu-item:hover {
    transition: all 0.2s ease-in-out;
  }
  .overlay ul li a.menu-item:hover p {
    transform: translateY(calc(3.4375 * var(--remBasicSize)));
    transition: all 0.2s linear;
  }
  .overlay ul li a.menu-item:hover span {
    transform: translateY(0);
    transition: all 0.2s linear;
    color: #0076bf;
  }
  .overlay ul li a.menu-item.lock {
    color: #000;
  }
  .overlay ul li .lock:before {
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 10;
    display: block;
    content: "";
    width: 78px;
    height: 25px;
    background: url(../images/menu/comingsoon.png) center no-repeat;
    background-size: 100%;
  }
  .overlay ul li a.menu-item.lock:hover p {
    transform: translateY(0);
  }
  .overlay ul li a.menu-item.lock:hover span {
    transform: translateY(calc(-3.4375 * var(--remBasicSize)));
  }
}
/*社群icon*/
.overlay ul li.share-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 2%;
}

.overlay ul li.share-box .share {
  position: relative;
  z-index: 10;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 14px 4%;
  padding: 0 1vw;
}

.overlay ul li.share-box .share:nth-child(1) {
  background: url(../images/menu/share-ig.png) no-repeat center/contain;
}

.overlay ul li.share-box .share:hover:nth-child(1) {
  background: url(../images/menu/share-ig-h.png) no-repeat center/contain;
}

.overlay ul li.share-box .share:nth-child(2) {
  background: url(../images/menu/share-fb.png) no-repeat center/contain;
}

.overlay ul li.share-box .share:hover:nth-child(2) {
  background: url(../images/menu/share-fb-h.png) no-repeat center/contain;
}

.overlay ul li.share-box .share:nth-child(3) {
  background: url(../images/menu/share-line.png) no-repeat center/contain;
}

.overlay ul li.share-box .share:hover:nth-child(3) {
  background: url(../images/menu/share-line-h.png) no-repeat center/contain;
}

@media screen and (max-width: 750px) {
  .overlay {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e92da;
    padding: 0 10%;
    box-sizing: border-box;
  }
  .overlay nav {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .overlay ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
  }
  .overlay ul li {
    display: block;
    backface-visibility: hidden;
    border-bottom: 0.5px solid #000;
    display: flex;
    align-items: center;
  }
  .overlay ul li:nth-child(n+6) {
    border-bottom: 1px solid transparent;
  }
  .overlay ul li a.menu-item {
    width: 100%;
    min-height: 7vh;
    padding: 2.5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: "Noto Sans TC", sans-serif;
    text-decoration: none;
    transition: color 0.2s;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
  }
  .overlay ul li a.menu-item p,
  .overlay ul li a.menu-item span {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    color: #000;
  }
  .overlay ul li a.menu-item p {
    font-size: calc(1.375 * var(--remBasicSize));
    font-family: "kohinoor-bangla", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
  }
  .overlay ul li a.menu-item span {
    font-size: calc(2 * var(--remBasicSize));
    font-weight: 400;
    line-height: 1.2em;
  }
  .overlay ul li a.menu-item.lock {
    position: relative;
  }
  .overlay ul li a.menu-item.lock p,
  .overlay ul li a.menu-item.lock span {
    color: #000;
  }
  .overlay ul li a.menu-item:hover, .overlay ul li a.menu-item:focus {
    background-color: transparent;
  }
  .overlay ul li:last-child .logo {
    width: 100%;
    height: 100px;
    background: url(../images/menu/menu_ellerun_logo.png) center/contain no-repeat;
    margin-top: calc(1.25 * var(--remBasicSize));
  }
  .overlay ul li .lock:before {
    position: absolute;
    top: calc(4.125 * var(--remBasicSize));
    z-index: 10;
    display: block;
    content: "";
    width: calc(20.625 * var(--remBasicSize));
    height: calc(5.625 * var(--remBasicSize));
    background: url(../images/menu/comingsoon_m.png) center no-repeat;
    background-size: 50%;
  }
  .overlay ul li:hover, .overlay ul li:focus, .overlay ul li:active {
    background-color: transparent;
  }
  .overlay ul li:hover:last-child, .overlay ul li:focus:last-child, .overlay ul li:active:last-child {
    background-color: transparent;
  }
  /* 開關 */
  .overlay-scale {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  }
  .overlay-scale.open {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s, opacity 0.4s;
  }
  .overlay ul li.share-box {
    padding: 5%;
  }
  .overlay ul li.share-box .share {
    width: calc(5 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    margin: 0 2%;
  }
  .overlay ul li.share-box .share:nth-child(1) {
    background: url(../images/menu/social_ig.png) no-repeat center/contain;
  }
  .overlay ul li.share-box .share:nth-child(1):hover {
    background: url(../images/menu/share-ig_w.png) no-repeat center/contain;
  }
  .overlay ul li.share-box .share:nth-child(2) {
    background: url(../images/menu/social_fb.png) no-repeat center/contain;
  }
  .overlay ul li.share-box .share:nth-child(2):hover {
    background: url(../images/menu/share-fb_w.png) no-repeat center/contain;
  }
  .overlay ul li.share-box .share:nth-child(3) {
    background: url(../images/menu/social_line.png) no-repeat center/contain;
  }
  .overlay ul li.share-box .share:nth-child(3):hover {
    background: url(../images/menu/share-line_w.png) no-repeat center/contain;
  }
}
/*------------------------- footer -------------------------*/
footer {
  width: 100%;
  height: 70px;
  margin: 0px;
  overflow: hidden;
  text-align: center;
  background-color: black; /*-- footer background-color can exchange --*/
}

footer.hearst {
  height: 80px;
  overflow: auto;
}

footer.mobile {
  height: 70px;
}

footer a,
footer a:link {
  text-decoration: none;
}

.copyright {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 9px;
  line-height: 28px;
  color: gray; /*color can exchange*/
}

footer.hearst .copyright {
  margin-top: -22px;
}

footer .logo {
  line-height: 70px;
  margin-right: 5px;
  vertical-align: middle;
}

footer.mobile .logo.icon-bazaar-logo, footer.hearst .logo.icon-bazaar-logo {
  margin-right: 3px;
}

/*-- footer logo-color can exchange --*/
footer .logo.icon-elle-logo {
  color: #db0029;
}

footer .logo.icon-cosmo-logo, footer .logo.icon-cosmocom-logo {
  color: #f8199d;
}

footer .logo.icon-bazaar-logo {
  color: white;
}

/*-------------------------

        sponsor

-------------------------*/
.money {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .money {
    padding: 10%;
  }
}
@media screen and (max-width: 750px) {
  .money .inner2 {
    width: 100%;
  }
}
.money .inner2 .money-box {
  width: 901px;
  min-height: 150px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
}
@media screen and (max-width: 750px) {
  .money .inner2 .money-box {
    width: 100%;
  }
}
.money .inner2 .money-box a {
  position: relative;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
}
.money .inner2 .money-box a.s-logo {
  width: 150px;
  height: 150px;
  background-size: 100%;
}
@media screen and (max-width: 750px) {
  .money .inner2 .money-box a.s-logo {
    width: 33.3333%;
    height: calc(12.5 * var(--remBasicSize));
  }
}
.money .inner2 .money-box a.double-logo {
  width: 450px;
  height: 150px;
  background-size: 100%;
}
@media screen and (max-width: 750px) {
  .money .inner2 .money-box a.double-logo {
    width: 100%;
    height: calc(12.5 * var(--remBasicSize));
    background-size: 100%;
  }
}

/* 主辦單位 協辦單位 贊助單位*/
.organiser,
.co_organiser,
.sponsor-t,
.sponsor-pw {
  position: relative;
  z-index: 5;
}

.organiser:before,
.co_organiser:before,
.sponsor-t:before,
.sponsor-pw:before {
  position: absolute;
  left: calc(-0.625 * var(--remBasicSize));
  top: calc(-0.3125 * var(--remBasicSize));
  display: block;
  width: calc(5 * var(--remBasicSize));
  text-align: center;
  color: #000;
  background-color: #fff;
  font-size: 0.87em;
  letter-spacing: 0.1em;
  padding: 0 calc(0.3125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .organiser:before,
  .co_organiser:before,
  .sponsor-t:before,
  .sponsor-pw:before {
    width: calc(8.125 * var(--remBasicSize));
    top: calc(-0.9375 * var(--remBasicSize));
    font-size: 0.8em;
  }
}

.organiser:before {
  content: "主辦單位";
}

.co_organiser:before {
  content: "執行單位";
}

.sponsor-t:before {
  content: "合作夥伴";
}

.sponsor-pw:before {
  content: "視覺設計";
}

/*-------------------------

          footer

-------------------------*/
footer {
  position: relative;
  padding-bottom: 30px;
  background-color: white;
  margin-top: -1px;
  height: 55px;
  box-sizing: content-box;
}
@media screen and (max-width: 750px) {
  footer {
    width: 100%;
    height: 95px;
  }
}
footer .logo.icon-elle-logo {
  color: #000;
  margin-right: 16px;
  font-size: calc(2 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  footer .logo.icon-elle-logo {
    width: 100%;
    margin-right: 0;
    font-size: calc(3.75 * var(--remBasicSize));
    line-height: 50px;
  }
}
footer .copyright {
  color: #000;
}
@media screen and (max-width: 750px) {
  footer .copyright {
    display: none;
  }
}

/*-------------------------

        footer_dec

-------------------------*/
.footer_dec {
  z-index: 2;
  position: relative;
  width: 100%;
  height: calc(12.1875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .footer_dec {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.footer_dec .inner {
  position: relative;
  width: calc(68.75 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer_dec .inner {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.footer_dec .inner .footer_dec_pic {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(34.1875 * var(--remBasicSize));
  height: calc(8.3125 * var(--remBasicSize));
  top: calc(3.4375 * var(--remBasicSize));
  background: url(../images/footer_dec.png) center/contain no-repeat;
}

/*-------------------------
        影片
-------------------------*/
#mvzone {
  width: calc(53.125 * var(--remBasicSize));
  height: auto;
  margin: 0 auto;
  background-color: #fff;
  /*---------- 大影片 ----------*/
}
@media screen and (max-width: 750px) {
  #mvzone {
    width: calc(46.875 * var(--remBasicSize));
  }
}
#mvzone .mv_box {
  width: 100vw;
  height: auto;
  /*小縮圖*/
}
#mvzone .mv_box .slider-for {
  position: absolute;
  width: calc(53.125 * var(--remBasicSize));
  height: calc(29.9375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-for {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(26.4375 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-for:before {
  position: absolute;
  top: 0;
  z-index: 2;
  content: "";
  display: block;
  width: calc(53.125 * var(--remBasicSize));
  height: calc(29.9375 * var(--remBasicSize));
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-for:before {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(26.4375 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-for iframe {
  width: 100%;
}
#mvzone .mv_box .slider-nav {
  position: relative;
  z-index: 3;
  top: calc(31.875 * var(--remBasicSize));
  left: 0px;
  width: calc(53.125 * var(--remBasicSize));
  height: calc(9.6875 * var(--remBasicSize));
  /* arrow */
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav {
    top: calc(30 * var(--remBasicSize));
    width: calc(46.875 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-nav .slick-current {
  position: relative;
}
#mvzone .mv_box .slider-nav .slick-current:before {
  position: absolute;
  top: 0;
  content: "";
  width: calc(11.5625 * var(--remBasicSize));
  height: calc(6.25 * var(--remBasicSize));
  border: solid 5px #000;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav .slick-current:before {
    width: calc(10.125 * var(--remBasicSize));
    height: calc(5.625 * var(--remBasicSize));
    border: solid 3px #000;
  }
}
#mvzone .mv_box .slider-nav .mv_nav_img {
  width: calc(12.1875 * var(--remBasicSize));
  height: calc(6.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav .mv_nav_img {
    width: calc(10.75 * var(--remBasicSize));
    height: calc(6.0625 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-nav > div {
  position: relative;
  width: calc(38.75 * var(--remBasicSize));
  height: calc(7.625 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav > div {
    width: calc(35.625 * var(--remBasicSize));
    left: calc(0.5625 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-nav > div:before {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: calc(12.1875 * var(--remBasicSize));
  height: calc(1.5625 * var(--remBasicSize));
  background: url(../images/index/video/dot_shadow.png) center no-repeat;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav > div:before {
    width: calc(10.75 * var(--remBasicSize));
    height: calc(6.0625 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-nav .slick-prev,
#mvzone .mv_box .slider-nav .slick-next {
  position: absolute;
  z-index: 9;
  top: calc(3.4375 * var(--remBasicSize));
  width: calc(5.1875 * var(--remBasicSize));
  height: calc(5.1875 * var(--remBasicSize));
  border-radius: calc(3.125 * var(--remBasicSize));
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav .slick-prev,
  #mvzone .mv_box .slider-nav .slick-next {
    top: calc(3.125 * var(--remBasicSize));
    width: calc(4.5625 * var(--remBasicSize));
    height: calc(4.5625 * var(--remBasicSize));
  }
}
#mvzone .mv_box .slider-nav .slick-prev:hover,
#mvzone .mv_box .slider-nav .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#mvzone .mv_box .slider-nav .slick-prev {
  left: calc(0.3125 * var(--remBasicSize));
  background-color: #c93400;
  background-image: url(../images/index/video/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 26px;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav .slick-prev {
    background-size: 20px 16px;
  }
}
#mvzone .mv_box .slider-nav .slick-prev::before {
  content: none;
}
#mvzone .mv_box .slider-nav .slick-next {
  right: calc(-5 * var(--remBasicSize));
  transform: rotate(-180deg);
  transform-origin: left calc(1.25 * var(--remBasicSize));
  background-color: #c93400;
  background-image: url(../images/index/video/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 26px;
}
@media screen and (max-width: 750px) {
  #mvzone .mv_box .slider-nav .slick-next {
    right: calc(-4.375 * var(--remBasicSize));
    background-size: 20px 16px;
  }
}
#mvzone .mv_box .slider-nav .slick-next:before {
  content: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
  .slick-prev {
    left: 0;
  }

  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
  }

  .slick-prev:before {
    content: "←";
  }

  [dir="rtl"] .slick-prev:before {
    content: "→";
  }

  .slick-next {
    right: -25px;
  }

  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
  }

  .slick-next:before {
    content: "→";
  }

  [dir="rtl"] .slick-next:before {
    content: "←";
  }
  */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.wrapper {
  background-color: #0076bf;
}

/*-------------------------
        倒數計時-位置
-------------------------*/
.kv .box {
  position: absolute;
  margin: 0 auto;
  bottom: 1.0785824345vh;
  right: 0vw;
}
@media screen and (max-width: 750px) {
  .kv .box {
    top: calc(45 * var(--remBasicSize));
    right: auto;
    left: calc(18.75 * var(--remBasicSize));
  }
}

/*-------------------------
        倒數計時
-------------------------*/
.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.countdown-container {
  width: 15.625vw;
  height: 7.7041602465vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  border: calc(0.0625 * var(--remBasicSize)) #fff solid;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
}
@media screen and (max-width: 750px) {
  .countdown-container {
    width: calc(16.25 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
  }
}

.time {
  position: relative;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding-top: 1.2326656394vh;
  font-family: "kohinoor-bangla", sans-serif;
  font-weight: 400;
}

.count {
  text-align: center;
  font-size: 3.3898305085vh;
  letter-spacing: 0.02em;
  margin: 0 1.2326656394vh;
  font-family: "kohinoor-bangla", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 750px) {
  .time {
    padding-top: calc(0.5625 * var(--remBasicSize));
  }
  .count {
    font-size: calc(2.0625 * var(--remBasicSize));
    margin: 0 calc(0.75 * var(--remBasicSize));
  }
}
/* 英文小字 ['DAYS', 'HOURS', 'MIN', 'SEC'] */
.time .label {
  display: block;
  position: absolute;
  bottom: 1.0785824345vh;
  width: 100%;
  font-size: 1.3867488444vh;
  text-align: center;
  font-family: "kohinoor-bangla", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dis {
  display: none;
}

@media screen and (max-width: 750px) {
  .time .label {
    bottom: calc(0.625 * var(--remBasicSize));
    font-size: calc(1.0625 * var(--remBasicSize));
  }
}
/*-------------------------

           kv

-------------------------*/
.kv {
  width: 100vw;
  height: 100vh;
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .kv {
    height: calc(68.75 * var(--remBasicSize));
  }
}
.kv .inner {
  position: relative;
  width: 88.28125vw;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .kv .inner {
    margin-top: calc(0 * var(--remBasicSize));
    width: calc(46.875 * var(--remBasicSize));
    height: calc(81.25 * var(--remBasicSize));
  }
}
.kv .inner .location {
  position: absolute;
  width: 1.2109375vw;
  height: 28.2742681048vh;
  top: 24.6533127889vh;
  left: 7.8125vw;
  background: url(../images/index/kv/location.png) center/contain no-repeat;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .kv .inner .location {
    width: calc(1.875 * var(--remBasicSize));
    height: calc(19.375 * var(--remBasicSize));
    top: calc(23.75 * var(--remBasicSize));
    left: auto;
    right: calc(3 * var(--remBasicSize));
  }
}
.kv .inner .title_area {
  position: absolute;
  width: 31.25vw;
  height: 33.8983050847vh;
  bottom: 7.7041602465vh;
  left: 7.8125vw;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area {
    position: absolute;
    top: calc(8.75 * var(--remBasicSize));
    left: 50%;
    right: auto;
    width: calc(40.625 * var(--remBasicSize));
    max-width: calc(40.625 * var(--remBasicSize));
    height: calc(58.125 * var(--remBasicSize));
    transform: translateX(-50%);
  }
}
.kv .inner .title_area .date_area {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 15px;
  position: absolute;
  width: 14.84375vw;
  top: 0vh;
  left: -0.390625vw;
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area .date_area {
    width: calc(8.125 * var(--remBasicSize));
    height: calc(6.25 * var(--remBasicSize));
    top: calc(8.125 * var(--remBasicSize));
    left: auto;
    right: calc(0 * var(--remBasicSize));
  }
}
.kv .inner .title_area .date_area .date_2026 {
  position: relative;
  width: 5.4296875vw;
  height: 3.8520801233vh;
  top: auto;
  left: auto;
  background: url(../images/index/kv/2026.png) left center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area .date_area .date_2026 {
    position: absolute;
    width: calc(4.375 * var(--remBasicSize));
    height: calc(2.8125 * var(--remBasicSize));
    top: 0;
    right: 0;
  }
}
.kv .inner .title_area .date_area .date_516 {
  position: relative;
  width: 7.3828125vw;
  height: 7.0107858243vh;
  top: auto;
  left: auto;
  background: url(../images/index/kv/516.png) left center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area .date_area .date_516 {
    position: absolute;
    width: calc(5.3125 * var(--remBasicSize));
    height: calc(3.6875 * var(--remBasicSize));
    bottom: 0;
    right: 0;
  }
}
.kv .inner .title_area .slogan_area {
  position: relative;
  width: 31.25vw;
  height: 26.1941448382vh;
  top: 8.4745762712vh;
  left: 0vw;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area .slogan_area {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(43.4375 * var(--remBasicSize));
    height: calc(4.375 * var(--remBasicSize));
    display: flex;
    justify-content: space-around;
  }
}
.kv .inner .title_area .slogan_area .together,
.kv .inner .title_area .slogan_area .for,
.kv .inner .title_area .slogan_area .more {
  position: relative;
  left: 0vw;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}
.kv .inner .title_area .slogan_area .together {
  width: 23.8671875vw;
  width: 23.8671875vw;
  height: 7.4730354391vh;
  left: -0.390625vw;
  background-image: url(../images/index/kv/together.png);
}
.kv .inner .title_area .slogan_area .for {
  width: 8.515625vw;
  height: 7.4730354391vh;
  top: 0.7704160247vh;
  background-image: url(../images/index/kv/for.png);
}
.kv .inner .title_area .slogan_area .more {
  width: 14.1796875vw;
  height: 7.4730354391vh;
  top: 1.5408320493vh;
  background-image: url(../images/index/kv/more.png);
}
@media screen and (max-width: 750px) {
  .kv .inner .title_area .slogan_area .together,
  .kv .inner .title_area .slogan_area .for,
  .kv .inner .title_area .slogan_area .more {
    margin: calc(0.625 * var(--remBasicSize));
  }
  .kv .inner .title_area .slogan_area .together {
    width: calc(17.1875 * var(--remBasicSize));
    height: auto;
    top: 0px;
  }
  .kv .inner .title_area .slogan_area .for {
    width: calc(6.125 * var(--remBasicSize));
    height: auto;
    top: 0px;
  }
  .kv .inner .title_area .slogan_area .more {
    width: calc(10.1875 * var(--remBasicSize));
    height: auto;
    top: 0px;
  }
}
.kv .inner .kv_dec {
  position: relative;
  margin: 0 auto;
  width: 78.125vw;
  height: 140.8320493066vh;
  top: -10.7858243451vh;
  left: -23.1124807396vh;
  background: url(../images/animation.png) center/contain no-repeat;
  transform-origin: bottom center;
}
@media screen and (max-width: 750px) {
  .kv .inner .kv_dec {
    width: calc(62.5 * var(--remBasicSize));
    height: calc(68.75 * var(--remBasicSize));
    top: calc(-0.625 * var(--remBasicSize));
    left: calc(-14.0625 * var(--remBasicSize));
    background: url(../images/animation.png) center/contain no-repeat;
  }
}
@keyframes playfulSwing {
  0% {
    transform: rotate(-2deg);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
    opacity: 1;
  }
  50% {
    transform: rotate(-2deg);
  }
  70% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0));
    opacity: 0.9;
  }
}
.kv .inner .ellerun_logo {
  position: absolute;
  margin: 0 auto;
  width: 15vw;
  height: 39.7534668721vh;
  top: 18.4899845917vh;
  right: 14.0625vw;
  background: url(../images/index/kv/logo.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .kv .inner .ellerun_logo {
    width: calc(14.25 * var(--remBasicSize));
    height: calc(19.125 * var(--remBasicSize));
    top: calc(41.25 * var(--remBasicSize));
    right: auto;
    left: calc(4.375 * var(--remBasicSize));
  }
}
@keyframes auraPulse {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
    opacity: 1;
  }
  100% {
    /* 影子向外擴張並變透明 */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0));
    opacity: 0.9;
  }
}

/*-------------------------

           about

-------------------------*/
.about {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(68.75 * var(--remBasicSize));
  margin-bottom: calc(4.6875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .about {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(91.25 * var(--remBasicSize));
    margin-bottom: calc(9.375 * var(--remBasicSize));
  }
}
.about .inner {
  position: relative;
  width: calc(80 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .about .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(91.25 * var(--remBasicSize));
  }
}
.about .inner .together_for_more {
  position: absolute;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  height: calc(29.1875 * var(--remBasicSize));
  top: calc(5.625 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/index/about/together_for_more.png) center/contain no-repeat;
  transform-origin: bottom center;
  animation: gentleSwing 8s ease-in-out infinite;
}
@media screen and (max-width: 750px) {
  .about .inner .together_for_more {
    top: calc(0 * var(--remBasicSize));
    width: calc(83.75 * var(--remBasicSize));
    height: calc(29.1875 * var(--remBasicSize));
    left: calc(-18.75 * var(--remBasicSize));
  }
}
@keyframes gentleSwing {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
.about .inner .about_area {
  position: relative;
  margin: 0 auto;
  width: calc(74.0625 * var(--remBasicSize));
  min-height: calc(59.1875 * var(--remBasicSize));
  top: calc(5.625 * var(--remBasicSize));
  background: url(../images/index/about/circle.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .about .inner .about_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(71.875 * var(--remBasicSize));
    top: calc(0.625 * var(--remBasicSize));
    background: url(../images/index/about/circle_m.png) center/contain no-repeat;
  }
}
.about .inner .about_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(8.75 * var(--remBasicSize));
  width: calc(28.15625 * var(--remBasicSize));
  height: calc(6.59375 * var(--remBasicSize));
  background: url(../images/index/about/h1.png) center/contain no-repeat;
}
.about .inner .about_area p.txt {
  position: relative;
  margin: 0 auto;
  top: calc(10.625 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .about .inner .about_area p.txt {
    top: calc(11.25 * var(--remBasicSize));
    width: calc(39.0625 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.about .inner .about_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .about .inner .about_area p.txt span {
    display: inline-block;
  }
}
.about .inner .about_area .date {
  position: relative;
  margin: 0 auto;
  width: calc(25.09375 * var(--remBasicSize));
  height: calc(6.25 * var(--remBasicSize));
  top: calc(13.125 * var(--remBasicSize));
  background: url(../images/index/about/date.png) center/contain no-repeat;
}
.about .inner .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(43.75 * var(--remBasicSize));
  transform: translateX(-50%);
  width: calc(20 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  background-color: #c93400;
  color: #fff;
  text-decoration: none;
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: 0.07em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .about .inner .btn_run {
    top: calc(52.5 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.about .inner .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.about .inner .btn_run:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.about .inner .kv_dec_l {
  position: absolute;
  margin: 0 auto;
  width: calc(26.875 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
  top: calc(45 * var(--remBasicSize));
  left: calc(1.5625 * var(--remBasicSize));
  z-index: 3;
  background: url(../images/index/about/kv_dec_l.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .about .inner .kv_dec_l {
    top: calc(58.125 * var(--remBasicSize));
    left: calc(-5.9375 * var(--remBasicSize));
  }
}
.about .inner .kv_dec_r {
  position: absolute;
  margin: 0 auto;
  width: calc(26.875 * var(--remBasicSize));
  height: calc(19.5 * var(--remBasicSize));
  top: calc(45 * var(--remBasicSize));
  right: calc(1.5625 * var(--remBasicSize));
  z-index: 3;
  background: url(../images/index/about/kv_dec_r.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .about .inner .kv_dec_r {
    top: calc(70 * var(--remBasicSize));
    right: calc(2.5 * var(--remBasicSize));
  }
}
.about .wave {
  position: absolute;
  margin: 0 auto;
  width: calc(160 * var(--remBasicSize));
  height: calc(11.125 * var(--remBasicSize));
  top: calc(56.875 * var(--remBasicSize));
  background: url(../images/index/about/wave.png) center/contain no-repeat;
  animation: wave 6s infinite;
}
@media screen and (max-width: 750px) {
  .about .wave {
    top: calc(61.25 * var(--remBasicSize));
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(155px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 750px) {
  @keyframes wave {
    0% {
      transform: translateX(-400px);
    }
    50% {
      transform: translateX(-500px);
    }
    100% {
      transform: translateX(-400px);
    }
  }
}

/*-------------------------

           info

-------------------------*/
.info {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(29.375 * var(--remBasicSize));
  margin-bottom: calc(9.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(37.5 * var(--remBasicSize));
  }
}
.info .inner {
  position: relative;
  width: calc(80 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .info .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(37.5 * var(--remBasicSize));
  }
}
.info .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(12.5 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(17.5 * var(--remBasicSize));
  }
}
.info .inner .title_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  text-align: center;
  color: #fff;
  font-size: calc(3.125 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .info .inner .title_area .big_title {
    font-size: calc(3.875 * var(--remBasicSize));
  }
}
.info .inner .title_area p.txt {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .info .inner .title_area p.txt {
    top: calc(1.875 * var(--remBasicSize));
    width: calc(39.0625 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.info .inner .title_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .info .inner .title_area p.txt span {
    display: inline-block;
  }
}
.info .inner .info_k {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(74.0625 * var(--remBasicSize));
  height: calc(14.4375 * var(--remBasicSize));
  top: calc(0.625 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/index/info/info_k.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .info .inner .info_k {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(14.625 * var(--remBasicSize));
    background-size: cover;
  }
}
.info .inner .btn_info {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(12.1875 * var(--remBasicSize));
  transform: translateX(-50%);
  width: calc(20 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  background-color: #c93400;
  color: #fff;
  text-decoration: none;
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: 0.07em;
  transition: all 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .info .inner .btn_info {
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.info .inner .btn_info .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.info .inner .btn_info:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/*-------------------------

        highlight

-------------------------*/
.highlight {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(37.5 * var(--remBasicSize));
  margin-bottom: calc(4.6875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .highlight {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(63.75 * var(--remBasicSize));
    margin-bottom: calc(9.375 * var(--remBasicSize));
  }
}
.highlight .inner {
  position: relative;
  width: calc(80 * var(--remBasicSize));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .highlight .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(63.75 * var(--remBasicSize));
  }
}
.highlight .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  min-height: calc(3.75 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .highlight .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.highlight .inner .title_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  text-align: center;
  color: #fff;
  font-size: calc(3.125 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .highlight .inner .title_area .big_title {
    font-size: calc(3.875 * var(--remBasicSize));
  }
}
.highlight .inner .btn_area {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(80 * var(--remBasicSize));
  height: calc(32.5 * var(--remBasicSize));
  top: calc(0.625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_area {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(59.375 * var(--remBasicSize));
  }
}
.highlight .inner .btn_racekit {
  position: absolute;
  display: block;
  top: calc(12.1875 * var(--remBasicSize));
  left: calc(2.5 * var(--remBasicSize));
  width: calc(22.4375 * var(--remBasicSize));
  height: calc(17.84375 * var(--remBasicSize));
  background: url(../images/index/highlight/racekit.png) center/contain no-repeat;
  transition: all 0.3s ease;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_racekit {
    top: calc(25.625 * var(--remBasicSize));
    left: calc(-1.875 * var(--remBasicSize));
  }
}
.highlight .inner .btn_racekit .arrow {
  position: relative;
  top: calc(13.125 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(1.90625 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/arr.png) center/contain no-repeat;
  animation: arrowMoving 1s infinite;
}
.highlight .inner .btn_racekit:hover {
  top: calc(12.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_racekit:hover {
    top: calc(24.375 * var(--remBasicSize));
    right: calc(7.8125 * var(--remBasicSize));
  }
}
.highlight .inner .btn_racekit .comingsoon {
  position: relative;
  top: calc(12.5 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(10.3125 * var(--remBasicSize));
  height: calc(2.8125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/comingsoon.png) center/contain no-repeat;
}
.highlight .inner .btn_team {
  position: absolute;
  display: block;
  top: calc(2.8125 * var(--remBasicSize));
  left: calc(32.5 * var(--remBasicSize));
  width: calc(22.5 * var(--remBasicSize));
  height: calc(18.03125 * var(--remBasicSize));
  background: url(../images/index/highlight/team.png) center/contain no-repeat;
  transition: all 0.3s ease;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_team {
    top: calc(5.3125 * var(--remBasicSize));
    left: calc(23.125 * var(--remBasicSize));
  }
}
.highlight .inner .btn_team .arrow {
  position: relative;
  top: calc(13.125 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(1.90625 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/arr.png) center/contain no-repeat;
  animation: arrowMoving 1s infinite;
}
.highlight .inner .btn_team:hover {
  top: calc(3.4375 * var(--remBasicSize));
}
.highlight .inner .btn_team .comingsoon {
  position: relative;
  top: calc(12.5 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(10.3125 * var(--remBasicSize));
  height: calc(2.8125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/comingsoon.png) center/contain no-repeat;
}
.highlight .inner .btn_market {
  position: absolute;
  display: block;
  top: calc(12.1875 * var(--remBasicSize));
  right: calc(2.5 * var(--remBasicSize));
  width: calc(21.875 * var(--remBasicSize));
  height: calc(18.6875 * var(--remBasicSize));
  background: url(../images/index/highlight/market.png) center/contain no-repeat;
  transition: all 0.3s ease;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_market {
    top: calc(39.0625 * var(--remBasicSize));
    right: calc(7.8125 * var(--remBasicSize));
  }
}
.highlight .inner .btn_market .arrow {
  position: relative;
  top: calc(13.125 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(1.90625 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/arr.png) center/contain no-repeat;
  animation: arrowMoving 1s infinite;
}
.highlight .inner .btn_market:hover {
  top: calc(12.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .highlight .inner .btn_market:hover {
    top: calc(37.5 * var(--remBasicSize));
    right: calc(7.8125 * var(--remBasicSize));
  }
}
.highlight .inner .btn_market .comingsoon {
  position: relative;
  top: calc(13.75 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
  width: calc(10.3125 * var(--remBasicSize));
  height: calc(2.8125 * var(--remBasicSize));
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  background: url(../images/index/highlight/comingsoon.png) center/contain no-repeat;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.highlight .inner .kv_dec {
  position: absolute;
  margin: 0 auto;
  text-align: center;
  width: calc(43.375 * var(--remBasicSize));
  height: calc(31.5 * var(--remBasicSize));
  top: calc(4.375 * var(--remBasicSize));
  left: calc(3.125 * var(--remBasicSize));
  z-index: 1;
  background: url(../images/index/highlight/kv_dec.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .highlight .inner .kv_dec {
    width: calc(51.5 * var(--remBasicSize));
    height: calc(37.4375 * var(--remBasicSize));
    top: calc(9.375 * var(--remBasicSize));
    left: calc(-5.3125 * var(--remBasicSize));
  }
}

/*-------------------------

           video

-------------------------*/
.video {
  position: relative;
  width: 100%;
  height: calc(41.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .video {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(43.75 * var(--remBasicSize));
  }
}
.video .inner {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .video .inner {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.video .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  min-height: calc(10 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .video .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(15 * var(--remBasicSize));
  }
}
.video .inner .title_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(30.84375 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  text-align: center;
  background: url(../images/index/video/title.png) center/contain no-repeat;
  animation: auraPulse 3s infinite;
}
@media screen and (max-width: 750px) {
  .video .inner .title_area .big_title {
    background: url(../images/index/video/title_m.png) center/contain no-repeat;
  }
}
.video .inner .title_area p.txt {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .video .inner .title_area p.txt {
    top: calc(1.875 * var(--remBasicSize));
    width: calc(39.0625 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.video .inner .title_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .video .inner .title_area p.txt span {
    display: inline-block;
  }
}
.video .inner .videobox {
  position: relative;
  margin: 0 auto;
  width: calc(53.0625 * var(--remBasicSize));
  height: calc(30.125 * var(--remBasicSize));
  border: 5px #2f59a1 solid;
}
@media screen and (max-width: 750px) {
  .video .inner .videobox {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(26.875 * var(--remBasicSize));
  }
}/*# sourceMappingURL=index.css.map */