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

/*-------------------------
        影片
-------------------------*/
#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;
}

.inner_pages {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .inner_pages {
    width: calc(46.875 * var(--remBasicSize));
  }
}

html {
  scroll-behavior: smooth;
}

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

          k_ourse

-------------------------*/
.k_ourse {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: calc(66.25 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(66.25 * var(--remBasicSize));
    margin-bottom: calc(4.375 * var(--remBasicSize));
  }
}
.k_ourse .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(80 * var(--remBasicSize));
  /* 隱藏 radio */
  /* Tab bar */
  /* 佔位元素：JS 會動態塞高度 */
  /* Tab 本體 */
  /* 文字 */
  /* 固定層級：越左越上（永遠保持） */
  /* Active：永遠置頂（但仍會被白線壓過） */
  /* 原本 active bar 不用 */
  /* active indicator position */
  /* panels */
  /*----------------------

            內容區

  ----------------------*/
}
@media screen and (max-width: 750px) {
  .k_ourse .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(66.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_area {
  position: relative;
  margin: 0 auto;
  top: calc(4.375 * var(--remBasicSize));
  width: calc(68.75 * var(--remBasicSize));
  padding: calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(2.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_area {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tab_ctrl {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.k_ourse .inner .route_tabbar {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: calc(6.25 * var(--remBasicSize));
  isolation: isolate;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar {
    padding: 0 calc(1 * var(--remBasicSize)) calc(0 * var(--remBasicSize));
    height: calc(6.9375 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tabbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #0b88c3;
  box-shadow: 0 calc(0.5 * var(--remBasicSize)) calc(1.125 * var(--remBasicSize)) rgba(0, 0, 0, 0.25);
}
.k_ourse .inner .route_tabbar_spacer {
  height: 0;
}
.k_ourse .inner .route_tabbar_area {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  width: calc(49.375 * var(--remBasicSize));
  height: calc(6.25 * var(--remBasicSize));
  isolation: isolate;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar_area {
    height: calc(6.9375 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tabbar_line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(0.0625 * var(--remBasicSize));
  background: #fff;
  z-index: 999;
  pointer-events: none;
}
.k_ourse .inner .route_tab {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(0.3125 * var(--remBasicSize));
  height: 100%;
  padding: calc(0.75 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize)) calc(0.75 * var(--remBasicSize));
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  background: #1e92da;
  /* 只有左上圓角 */
  border-radius: calc(5.3125 * var(--remBasicSize)) 0 0 0;
  /* 疊層感陰影 */
  box-shadow: 0 calc(0 * var(--remBasicSize)) calc(1.125 * var(--remBasicSize)) rgba(0, 0, 0, 0.25);
  /* 疊在一起：後面的往左蓋住前面的右邊 */
}
.k_ourse .inner .route_tab:not(:first-child) {
  margin-left: calc(-0.625 * var(--remBasicSize));
}
.k_ourse .inner .route_tab:hover {
  filter: brightness(1.05);
}
.k_ourse .inner .route_tab_k {
  font-size: calc(2.4375 * var(--remBasicSize));
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tab_k {
    font-size: calc(2.8125 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tab_t {
  font-size: calc(1.75 * var(--remBasicSize));
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tab_t {
    font-size: calc(2 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tabbar .route_tab:nth-child(1) {
  z-index: 40;
}
.k_ourse .inner .route_tabbar .route_tab:nth-child(2) {
  z-index: 30;
}
.k_ourse .inner .route_tabbar .route_tab:nth-child(3) {
  z-index: 20;
}
.k_ourse .inner .route_tabbar .route_tab:nth-child(4) {
  z-index: 10;
}
.k_ourse .inner #tab21r:checked ~ .route_tabbar .route_tab[for=tab21r],
.k_ourse .inner #tab21e:checked ~ .route_tabbar .route_tab[for=tab21e],
.k_ourse .inner #tab10:checked ~ .route_tabbar .route_tab[for=tab10],
.k_ourse .inner #tab35:checked ~ .route_tabbar .route_tab[for=tab35] {
  background: #c93400;
  z-index: 999;
}
.k_ourse .inner .route_tabbar_active {
  display: none;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar_active {
    width: calc((100% - calc(2 * var(--remBasicSize))) / 4);
    left: calc(1 * var(--remBasicSize));
  }
}
.k_ourse .inner #tab21r:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(0%);
}
.k_ourse .inner #tab21e:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(100%);
}
.k_ourse .inner #tab10:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(200%);
}
.k_ourse .inner #tab35:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(300%);
}
.k_ourse .inner .route_panels {
  width: 100%;
  max-width: calc(80 * var(--remBasicSize));
  margin: calc(1.625 * var(--remBasicSize)) auto 0;
  padding: 0 calc(1.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_panels {
    padding: 0 calc(1 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_panel {
  display: none;
}
.k_ourse .inner #tab21r:checked ~ .route_panels .p21r {
  display: block;
}
.k_ourse .inner #tab21e:checked ~ .route_panels .p21e {
  display: block;
}
.k_ourse .inner #tab10:checked ~ .route_panels .p10 {
  display: block;
}
.k_ourse .inner #tab35:checked ~ .route_panels .p35 {
  display: block;
}
.k_ourse .inner .info_area {
  padding: calc(2.125 * var(--remBasicSize)) calc(2.125 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize));
  /*---------------
        跑衣們
  ---------------*/
  /*---------------
        官方小物
  ---------------*/
  /*---------------
       贊助好禮
  ---------------*/
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area {
    padding: calc(1.875 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize)) calc(0 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area {
  width: 100%;
  padding: calc(1.75 * var(--remBasicSize)) calc(2.125 * var(--remBasicSize)) calc(1.375 * var(--remBasicSize));
  color: #fff;
  /* 右側按鈕 */
  /* 下方：報名禮 */
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area {
    padding: calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_top {
    gap: calc(0.3125 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_left {
  display: flex;
  align-items: baseline;
  gap: calc(1.125 * var(--remBasicSize));
  min-width: 0;
}
.k_ourse .inner .info_area .title_area .signup_pricebar_km {
  font-size: calc(3.125 * var(--remBasicSize));
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_km {
    font-size: calc(3.5625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_name {
  font-size: calc(1.75 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.05;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_name {
    font-size: calc(2 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_dash {
  width: calc(3.125 * var(--remBasicSize));
  height: calc(0.125 * var(--remBasicSize));
  background: rgba(0, 0, 0, 0.7);
  border-radius: calc(6.1875 * var(--remBasicSize));
  transform: translateY(calc(-0.625 * var(--remBasicSize)));
  flex: 0 0 auto;
}
.k_ourse .inner .info_area .title_area .signup_pricebar_price {
  font-size: calc(1.75 * var(--remBasicSize));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_price {
    font-size: calc(2 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(9.375 * var(--remBasicSize));
  height: calc(2.6875 * var(--remBasicSize));
  background: #c93400;
  color: #fff;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.k_ourse .inner .info_area .title_area .signup_pricebar_btn:hover {
  filter: brightness(1.05);
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_btn {
    width: calc(11.875 * var(--remBasicSize));
    height: calc(3.4375 * var(--remBasicSize));
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_btn_arrow {
  position: relative;
  left: calc(0.3125 * var(--remBasicSize));
  font-size: calc(0.625 * var(--remBasicSize));
  transform: translateY(calc(0.0625 * var(--remBasicSize)));
  animation: kv-signup_pricebar_btn_arrow 1s linear infinite alternate;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_btn_arrow {
    font-size: calc(1 * var(--remBasicSize));
  }
}
@keyframes kv-signup_pricebar_btn_arrow {
  50% {
    left: calc(0.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_gift {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(1.125 * var(--remBasicSize));
  margin-top: calc(0.9375 * var(--remBasicSize));
  padding-top: calc(0.9375 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
.k_ourse .inner .info_area .title_area .signup_pricebar_gift::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(0 * var(--remBasicSize));
  height: calc(0.0625 * var(--remBasicSize));
  background: #c93400;
}
.k_ourse .inner .info_area .title_area .signup_pricebar_gift_mark {
  width: calc(1.25 * var(--remBasicSize));
  height: calc(2.5 * var(--remBasicSize));
  background: #c93400;
  flex: 0 0 auto;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_gift_mark {
    width: calc(1.375 * var(--remBasicSize));
    height: calc(3.125 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_gift_h1 {
  font-size: calc(1.375 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_gift_h1 {
    font-size: calc(2 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .title_area .signup_pricebar_gift_text {
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .title_area .signup_pricebar_gift_text {
    font-size: calc(1.5 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice {
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  margin-bottom: calc(2.8125 * var(--remBasicSize));
  /* 兩欄排版 */
  /* 每一欄 */
  /* Slider 外框 */
  /* 每張圖 */
  /* Slick slider 箭頭 */
  /* Slick dots */
  /* 標題與 Size Guide */
  /* 內文 */
  /* 右欄紅色註記 */
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice {
    position: relative;
    width: 100%;
  }
}
.k_ourse .inner .info_area .gift_choice .gift_choice_title {
  margin: calc(0 * var(--remBasicSize)) auto calc(1.625 * var(--remBasicSize));
  max-width: calc(46.875 * var(--remBasicSize));
  font-size: calc(1.25 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_choice_title {
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_choice_title span {
  display: none;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_choice_title span {
    display: block;
  }
}
.k_ourse .inner .info_area .gift_choice .gift_choice_title .highlight {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: calc(0.25 * var(--remBasicSize));
  text-decoration-color: #e56464;
  text-underline-offset: calc(-0.125 * var(--remBasicSize));
  display: inline;
  align-items: center;
}
.k_ourse .inner .info_area .gift_choice .gift_choice_grid {
  max-width: calc(45 * var(--remBasicSize));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_choice_grid {
    position: relative;
    gap: calc(0 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_card {
  margin: 0 auto;
  text-align: center;
  width: calc(20.625 * var(--remBasicSize));
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_card {
    width: calc(21.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_slider {
  width: calc(20.625 * var(--remBasicSize));
  height: calc(15.625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_slider {
    width: calc(21.25 * var(--remBasicSize));
    height: calc(15.9375 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_slider_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.k_ourse .inner .info_area .gift_choice .gift_slider_item img {
  width: calc(20.625 * var(--remBasicSize));
  height: calc(15.625 * var(--remBasicSize));
  display: block;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_slider_item img {
    width: 100%;
    height: auto;
  }
}
.k_ourse .inner .info_area .gift_choice .slick-prev,
.k_ourse .inner .info_area .gift_choice .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 108%;
  display: block;
  width: calc(1.8125 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 4;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-prev,
  .k_ourse .inner .info_area .gift_choice .slick-next {
    top: 113%;
    width: calc(2.5375 * var(--remBasicSize));
    height: calc(2.14375 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-prev {
  left: calc(6.25 * var(--remBasicSize));
  background: url(../images/racekit/arr_l.png) no-repeat center top/contain;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-prev {
    left: calc(4.375 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-prev:before {
  content: "";
}
.k_ourse .inner .info_area .gift_choice .slick-next {
  right: calc(6.25 * var(--remBasicSize));
  background: url(../images/racekit/arr_r.png) no-repeat center top/contain;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-next {
    right: calc(4.375 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-next:before {
  content: "";
}
.k_ourse .inner .info_area .gift_choice .slick-prev:hover, .k_ourse .inner .info_area .gift_choice .slick-next:hover {
  filter: brightness(1.2);
}
.k_ourse .inner .info_area .gift_choice .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}
.k_ourse .inner .info_area .gift_choice .slick-dots {
  position: absolute;
  bottom: calc(-1.25 * var(--remBasicSize));
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-dots {
    bottom: calc(-2.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  margin: 0 calc(0.1875 * var(--remBasicSize));
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-dots li {
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  padding: calc(0.1875 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-dots li button {
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-dots li button:before {
  font-family: "slick";
  font-size: calc(1.25 * var(--remBasicSize));
  line-height: calc(1.25 * var(--remBasicSize));
  position: absolute;
  top: 0;
  left: 0;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  content: "•";
  text-align: center;
  opacity: 0.5;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .slick-dots li button:before {
    font-size: calc(1.625 * var(--remBasicSize));
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.k_ourse .inner .info_area .gift_choice .gift_name {
  margin: calc(3.125 * var(--remBasicSize)) 0 calc(0.625 * var(--remBasicSize));
  font-size: calc(1.25 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  text-align: center;
  color: #fff;
}
.k_ourse .inner .info_area .gift_choice .gift_name span {
  display: none;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_name span {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_name {
    margin: calc(4.375 * var(--remBasicSize)) 0 calc(0.625 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
    line-height: 1.3em;
  }
}
.k_ourse .inner .info_area .gift_choice .gift_size {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: calc(0.875 * var(--remBasicSize));
  font-weight: 300;
  color: #000;
  text-decoration: underline;
  text-underline-offset: calc(0.375 * var(--remBasicSize));
  margin-bottom: calc(1.125 * var(--remBasicSize));
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_size {
    font-size: calc(1.5 * var(--remBasicSize));
    margin-top: calc(0.3125 * var(--remBasicSize));
    margin-bottom: calc(1.5625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_desc {
  margin: 0;
  width: calc(20.625 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  text-align: justify;
  color: #000;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_desc {
    width: calc(21.25 * var(--remBasicSize));
    padding: calc(0.625 * var(--remBasicSize));
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .gift_choice .gift_note {
  margin: calc(0.625 * var(--remBasicSize)) 0 0;
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  color: #e56464;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .gift_choice .gift_note {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .official_pd {
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  margin-bottom: calc(2.8125 * var(--remBasicSize));
  /* 商品列：改成 flex，確保 1~3 個都置中 */
  /* 每一張卡片 */
  /* 每張圖 */
  /* 標題 */
  /* 內文 */
  /* 註記 */
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd {
    position: relative;
    width: 100%;
  }
}
.k_ourse .inner .info_area .official_pd .gift_choice_grid {
  max-width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_choice_grid {
    gap: calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .official_pd .gift_card {
  width: calc(14.375 * var(--remBasicSize));
  margin: 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_card {
    width: calc((100% - calc(1.25 * var(--remBasicSize))) / 2);
    max-width: calc(18.75 * var(--remBasicSize));
    margin: 0 calc(1.25 * var(--remBasicSize)) calc(2.5 * var(--remBasicSize)) calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .official_pd .gift_slider_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.k_ourse .inner .info_area .official_pd .gift_slider_item img {
  width: calc(14.375 * var(--remBasicSize));
  height: calc(14.375 * var(--remBasicSize));
  display: block;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_slider_item img {
    width: calc(18.75 * var(--remBasicSize));
    height: calc(18.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .official_pd .gift_name {
  margin: calc(0.625 * var(--remBasicSize)) 0 calc(0.625 * var(--remBasicSize));
  font-size: calc(1.25 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  text-align: center;
  color: #fff;
}
.k_ourse .inner .info_area .official_pd .gift_name span {
  display: none;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_name span {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_name {
    margin: calc(0.9375 * var(--remBasicSize)) 0 calc(0.625 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
    line-height: 1.3em;
  }
}
.k_ourse .inner .info_area .official_pd .gift_desc {
  margin: 0;
  width: calc(14.375 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  text-align: justify;
  color: #000;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_desc {
    width: 100%;
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .official_pd .gift_note {
  margin: calc(0.625 * var(--remBasicSize)) 0 0;
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  color: #e56464;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .info_area .official_pd .gift_note {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .sponsor_gifts {
  width: 100%;
  padding: calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize));
  /* 列表：桌機 5 欄、手機 3 欄（flex 置中版） */
  /* 桌機：一列 5 個 */
  /* 手機：一列 3 個 */
  /* 白色圖框 */
  /* 文字區 */
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_inner {
  width: calc(54.0625 * var(--remBasicSize));
  margin: 0 auto;
}
@media (max-width: 750px) {
  .k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_inner {
    width: calc(43.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: calc(2.1875 * var(--remBasicSize));
  -moz-column-gap: calc(0.9375 * var(--remBasicSize));
       column-gap: calc(0.9375 * var(--remBasicSize));
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_list > li {
  flex: 0 0 calc((100% - calc(0.9375 * var(--remBasicSize)) * 4) / 5);
  max-width: calc((100% - calc(0.9375 * var(--remBasicSize)) * 4) / 5);
}
@media (max-width: 750px) {
  .k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_list > li {
    flex: 0 0 calc((100% - calc(0.9375 * var(--remBasicSize)) * 2) / 3);
    max-width: calc((100% - calc(0.9375 * var(--remBasicSize)) * 2) / 3);
  }
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_item {
  text-align: center;
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_img {
  width: 100%;
  height: calc(10.3125 * var(--remBasicSize));
  display: flex;
  align-items: center;
  justify-content: center;
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 750px) {
  .k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_img {
    height: calc(13.9375 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_txt {
  padding-top: calc(0.625 * var(--remBasicSize));
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_brand {
  margin: 0 0 calc(0.375 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  color: #000;
}
@media (max-width: 750px) {
  .k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_brand {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_name {
  margin: 0 0 calc(0.375 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  color: #000;
}
@media (max-width: 750px) {
  .k_ourse .inner .info_area .sponsor_gifts .sponsor_gifts_name {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}

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

            加購

-------------------------*/
.add_to_cart {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: calc(47.5 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
  background-color: #1e92da;
  /*---------------
        官方小物
  ---------------*/
}
@media screen and (max-width: 750px) {
  .add_to_cart {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(90.9375 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.add_to_cart .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(6.875 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  text-align: center;
}
@media screen and (max-width: 750px) {
  .add_to_cart .title_area {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(15.625 * var(--remBasicSize));
  }
}
.add_to_cart .title_area .add_to_cart_h1 {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(49.5 * var(--remBasicSize));
  height: calc(2.875 * var(--remBasicSize));
  background: url(../images/racekit/add_to_cart_h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .add_to_cart .title_area .add_to_cart_h1 {
    width: calc(24.59375 * var(--remBasicSize));
    height: calc(6.21875 * var(--remBasicSize));
    background: url(../images/racekit/add_to_cart_h1_m.png) center/contain no-repeat;
  }
}
.add_to_cart .title_area .add_to_cart_h2 {
  position: relative;
  margin: 0 auto;
  top: calc(2.5 * var(--remBasicSize));
  width: calc(49.5 * var(--remBasicSize));
  height: calc(2.875 * var(--remBasicSize));
  font-size: calc(1.25 * var(--remBasicSize));
  text-align: center;
}
.add_to_cart .title_area .add_to_cart_h2 span {
  display: none;
}
@media screen and (max-width: 750px) {
  .add_to_cart .title_area .add_to_cart_h2 {
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
  .add_to_cart .title_area .add_to_cart_h2 span {
    display: block;
  }
}
.add_to_cart .official_pd {
  position: relative;
  width: 100%;
  top: calc(9.375 * var(--remBasicSize));
  padding: calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize));
  /* 列表：桌機 5 欄、手機 3 欄 */
  /* 白色圖框 */
  /* 文字區 */
  /* 右欄紅色註記 */
}
.add_to_cart .official_pd .sponsor_gifts_inner {
  width: calc(54.0625 * var(--remBasicSize));
  margin: 0 auto;
}
@media (max-width: 750px) {
  .add_to_cart .official_pd .sponsor_gifts_inner {
    width: calc(43.75 * var(--remBasicSize));
  }
}
.add_to_cart .official_pd .sponsor_gifts_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: calc(0.9375 * var(--remBasicSize));
       column-gap: calc(0.9375 * var(--remBasicSize));
  row-gap: calc(2.1875 * var(--remBasicSize));
}
@media (max-width: 750px) {
  .add_to_cart .official_pd .sponsor_gifts_list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: calc(0.9375 * var(--remBasicSize));
         column-gap: calc(0.9375 * var(--remBasicSize));
    row-gap: calc(2.1875 * var(--remBasicSize));
  }
}
.add_to_cart .official_pd .sponsor_gifts_item {
  text-align: center;
}
.add_to_cart .official_pd .sponsor_gifts_img {
  width: 100%;
  height: calc(10.3125 * var(--remBasicSize));
  display: flex;
  align-items: center;
  justify-content: center;
}
.add_to_cart .official_pd .sponsor_gifts_img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 750px) {
  .add_to_cart .official_pd .sponsor_gifts_img {
    height: calc(13.9375 * var(--remBasicSize));
  }
}
.add_to_cart .official_pd .sponsor_gifts_txt {
  padding-top: calc(0.625 * var(--remBasicSize));
}
.add_to_cart .official_pd .sponsor_gifts_brand {
  margin: 0 0 calc(0.375 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  color: #fff;
}
@media (max-width: 750px) {
  .add_to_cart .official_pd .sponsor_gifts_brand {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.add_to_cart .official_pd .sponsor_gifts_name {
  margin: 0 0 calc(0.375 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  color: #000;
}
@media (max-width: 750px) {
  .add_to_cart .official_pd .sponsor_gifts_name {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.add_to_cart .official_pd .gift_note {
  margin: calc(0.625 * var(--remBasicSize)) 0 0;
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  color: #a82b2b;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .add_to_cart .official_pd .gift_note {
    font-size: calc(1.625 * var(--remBasicSize));
  }
}
.add_to_cart .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(37.5 * 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) {
  .add_to_cart .btn_run {
    top: calc(79.375 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.add_to_cart .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.add_to_cart .btn_run:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

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

          ecert

-------------------------*/
.ecert {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: calc(44.6875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .ecert {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(55.625 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.ecert .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(31.25 * var(--remBasicSize));
  text-align: center;
  /* 右欄紅色註記 */
}
@media screen and (max-width: 750px) {
  .ecert .title_area {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(46.875 * var(--remBasicSize));
  }
}
.ecert .title_area .title_ecert {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(33.8125 * var(--remBasicSize));
  height: calc(11.625 * var(--remBasicSize));
  background: url(../images/racekit/ecert/title_ecert.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .title_ecert {
    left: calc(4.375 * var(--remBasicSize));
    width: calc(23.0625 * var(--remBasicSize));
    height: calc(24.0625 * var(--remBasicSize));
    background: url(../images/racekit/ecert/title_ecert_m.png) center/contain no-repeat;
  }
}
.ecert .title_area .title_together {
  position: absolute;
  margin: 0 auto;
  top: calc(7.8125 * var(--remBasicSize));
  right: calc(11.25 * var(--remBasicSize));
  width: calc(5.125 * var(--remBasicSize));
  height: calc(2.75 * var(--remBasicSize));
  background: url(../images/racekit/ecert/title_together.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .title_together {
    top: calc(7.1875 * var(--remBasicSize));
    right: calc(6.875 * var(--remBasicSize));
    width: calc(6.28125 * var(--remBasicSize));
    height: calc(3.375 * var(--remBasicSize));
    background: url(../images/racekit/ecert/title_together_m.png) center/contain no-repeat;
  }
}
.ecert .title_area .title_kv_l {
  position: absolute;
  margin: 0 auto;
  top: calc(18.75 * var(--remBasicSize));
  left: calc(1.25 * var(--remBasicSize));
  width: calc(16.0625 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  background: url(../images/racekit/ecert/title_kv_l.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .title_kv_l {
    top: calc(9.375 * var(--remBasicSize));
    left: calc(3.75 * var(--remBasicSize));
  }
}
.ecert .title_area .title_h2 {
  position: relative;
  margin: 0 auto;
  top: calc(1.875 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(3.75 * var(--remBasicSize));
  font-size: calc(3.125 * var(--remBasicSize));
  text-align: center;
}
.ecert .title_area .title_h1 {
  position: relative;
  margin: 0 auto;
  top: calc(2.5 * var(--remBasicSize));
  width: calc(37.875 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  background: url(../images/racekit/ecert/title_h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .title_h1 {
    top: calc(3.125 * var(--remBasicSize));
  }
}
.ecert .title_area .title_p {
  position: relative;
  margin: 0 auto;
  top: calc(3.75 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(5 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .title_p {
    top: calc(6.25 * var(--remBasicSize));
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.ecert .title_area .gift_note {
  position: relative;
  margin: 0 auto;
  top: calc(3.75 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  font-weight: 500;
  color: #e56464;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .ecert .title_area .gift_note {
    font-size: calc(1.625 * var(--remBasicSize));
    top: calc(7.5 * var(--remBasicSize));
  }
}
.ecert .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(34.375 * 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;
  /* =========================
        Coming Soon 狀態
    ========================= */
}
@media screen and (max-width: 750px) {
  .ecert .btn_run {
    top: calc(50 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.ecert .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.ecert .btn_run:hover {
  background-color: #e32f2f;
}
.ecert .btn_run.is-disabled {
  background-color: #9e9e9e;
  color: rgba(255, 255, 255, 0.85);
  cursor: not-allowed;
  pointer-events: none;
  letter-spacing: 0.1em;
  font-weight: 400;
  box-shadow: none;
}
.ecert .btn_run.is-disabled .arrow {
  display: none;
}
.ecert .btn_run.is-disabled:hover {
  background-color: #9e9e9e;
}

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

         lightbox

-------------------------*/
/* ---------------------
           共用
---------------------- */
.modal {
  background-color: transparent;
}

/*背景底色*/
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.9);
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

.modal .modal-content {
  position: relative;
  background-color: transparent;
  border-radius: 0px;
  outline: 0;
}

/* ---------------------
        內容
---------------------- */
.style-box .modal-dialog {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /*    align-items: center;*/
}

.style-box .modal-body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0;
}

/* 關閉按鈕-X */
.style-box .close {
  position: absolute;
  right: calc(0 * var(--remBasicSize));
  top: calc(-0.3125 * var(--remBasicSize));
  z-index: 10;
  font-size: calc(3.75 * var(--remBasicSize));
  color: #000;
  font-family: "Noto Sans TC";
  font-weight: 100;
  text-shadow: none;
  background-color: transparent;
  opacity: 1;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}

.style-box .close:hover {
  opacity: 1;
  transform: rotate(90deg);
  transform-origin: center;
  transition: all ease-in-out 0.5s;
}

@media screen and (max-width: 750px) {
  .style-box .close {
    font-size: calc(5 * var(--remBasicSize));
  }
}
/* 風格路跑上衣Size表 */
.cloth_size .modal-content {
  width: calc(37.5 * var(--remBasicSize));
  margin: 0 auto;
  background: transparent;
}

.cloth_size .modal-content .modal-body {
  width: calc(26.25 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
  background: #fff;
  margin-top: calc(9.375 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
  position: relative;
  padding: 0 0 calc(1.25 * var(--remBasicSize)) 0;
}

.cloth_size .modal-content .pop_size {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: row;
  padding-left: calc(1.25 * var(--remBasicSize));
  margin-bottom: calc(1.125 * var(--remBasicSize));
}

.cloth_size .modal-content .pop_size div:first-child {
  background: #2f59a1;
  width: calc(4.8125 * var(--remBasicSize));
  height: calc(6.6875 * var(--remBasicSize));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cloth_size .modal-content .pop_size div:nth-child(2) {
  margin: calc(1.25 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize)) 0;
}

.cloth_size .modal-content .pop_size div:nth-child(2) img {
  width: calc(4.375 * var(--remBasicSize));
}

.cloth_size .modal-content .pop_size div h3 {
  font-size: calc(1.75 * var(--remBasicSize));
  font-weight: 600;
  padding-top: calc(2.8125 * var(--remBasicSize));
}

.cloth_size .modal-content .pop_size div h3 span {
  display: block;
  width: 100%;
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 400;
  margin-bottom: calc(0.3125 * var(--remBasicSize));
}

@media screen and (max-width: 750px) {
  .cloth_size .modal-content .modal-body {
    width: 100%;
  }
  .cloth_size .modal-content .pop_size div:first-child {
    width: 110px;
    height: calc(10.3125 * var(--remBasicSize));
  }
  .cloth_size .modal-content .pop_size div:first-child img {
    width: 60%;
  }
  .cloth_size .modal-content .pop_size div:nth-child(2) {
    margin: calc(1.25 * var(--remBasicSize));
  }
  .cloth_size .modal-content .pop_size div:nth-child(2) img {
    width: calc(7.5 * var(--remBasicSize));
  }
  .cloth_size .modal-content .pop_size div h3 {
    font-size: calc(2.5 * var(--remBasicSize));
    padding-top: calc(5 * var(--remBasicSize));
  }
  .cloth_size .modal-content .pop_size div h3 span {
    font-size: calc(2.125 * var(--remBasicSize));
    margin-bottom: calc(0.3125 * var(--remBasicSize));
  }
}
.cloth_size .modal-content .size_box {
  width: calc(23.75 * var(--remBasicSize));
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #fff;
  margin: 0 auto;
  font-size: calc(1.5 * var(--remBasicSize));
  line-height: calc(3.625 * var(--remBasicSize));
  text-align: center;
  border-top: calc(0.0625 * var(--remBasicSize)) solid #bfbfbf;
  border-right: calc(0.0625 * var(--remBasicSize)) solid #bfbfbf;
  border-left: calc(0.0625 * var(--remBasicSize)) solid #bfbfbf;
}

.cloth_size .modal-content .size_box .txt_grey {
  color: #999;
}

.cloth_size .modal-content .size_box .txt_blue {
  color: #2f59a1;
}

.cloth_size .modal-content .size_box .border_l {
  border-left: 0;
}

.cloth_size .modal-content .size_box div {
  width: 33.3333%;
  border-left: calc(0.0625 * var(--remBasicSize)) solid #bfbfbf;
  border-bottom: calc(0.0625 * var(--remBasicSize)) solid #bfbfbf;
}

.cloth_size .modal-content .size_box div.bg_grey {
  background-color: #f3f3f3;
}

@media screen and (max-width: 750px) {
  .cloth_size .modal-content .size_box {
    width: 95%;
    font-size: calc(1.875 * var(--remBasicSize));
    line-height: calc(5.5 * var(--remBasicSize));
  }
}/*# sourceMappingURL=racekit.css.map */