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

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

        info_event

-------------------------*/
.info_event {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(18 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_event {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(19.375 * var(--remBasicSize));
  }
}
.info_event .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(62.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_event .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(19.375 * var(--remBasicSize));
  }
}
.info_event .inner .event_info {
  position: relative;
  margin: 0 auto;
  width: calc(41.09375 * var(--remBasicSize));
  height: calc(11.59375 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  background: url(../images/info/event/event_info.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .info_event .inner .event_info {
    width: calc(43.75 * var(--remBasicSize));
    height: calc(12.34375 * var(--remBasicSize));
  }
}
.info_event .inner .event_info span {
  position: absolute;
  width: calc(0.0625 * var(--remBasicSize));
  height: calc(0.0625 * var(--remBasicSize));
  padding: 0;
  margin: calc(-0.0625 * var(--remBasicSize));
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

        info_apply

-------------------------*/
.info_apply {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(35.375 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(87.5 * var(--remBasicSize));
  }
}
.info_apply .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(80 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(87.5 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area {
  position: absolute;
  width: calc(42.8125 * var(--remBasicSize));
  height: calc(35.375 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  left: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area {
    position: relative;
    margin: 0 auto;
    width: calc(42.8125 * var(--remBasicSize));
    height: calc(46.875 * var(--remBasicSize));
    top: calc(0 * var(--remBasicSize));
    left: calc(0 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .together {
  position: relative;
  margin: 0 auto;
  width: calc(28.3125 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  left: calc(1.5625 * var(--remBasicSize));
  background: url(../images/info/apply/together.png) center/contain no-repeat;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area .together {
    left: calc(0 * var(--remBasicSize));
    background-size: 80%;
    margin-bottom: calc(1.875 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .signup_card {
  position: relative;
  background-color: #fff;
  width: calc(42.5 * var(--remBasicSize));
  min-height: calc(29.1875 * var(--remBasicSize));
  padding: calc(1.875 * var(--remBasicSize)) calc(5.625 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(2.5 * var(--remBasicSize));
  overflow: hidden;
  padding-bottom: calc(2.75 * var(--remBasicSize));
  border-radius: calc(7.5 * var(--remBasicSize)) 0 0 0;
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area .signup_card {
    width: calc(42.5 * var(--remBasicSize));
    min-height: calc(52.5 * var(--remBasicSize));
    padding: calc(1.875 * var(--remBasicSize)) calc(3.125 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(3.125 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .big_title {
  margin: 0 0 calc(1.875 * var(--remBasicSize));
  text-align: center;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area .big_title {
    position: relative;
    left: calc(0 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .h3 {
  margin-bottom: calc(1.25 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area .h3 {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .signup_link {
  position: relative;
  top: calc(-0.25 * var(--remBasicSize));
  color: #0b57ff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: calc(0.1875 * var(--remBasicSize));
}
.info_apply .inner .apply_area .signup_link:hover {
  opacity: 0.85;
}
.info_apply .inner .apply_area .signup_list {
  margin: 0;
  padding-left: calc(1.75 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  color: #000;
  list-style: decimal;
}
@media screen and (max-width: 750px) {
  .info_apply .inner .apply_area .signup_list {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.info_apply .inner .apply_area .signup_list li {
  margin: 0 0 calc(0.625 * var(--remBasicSize));
  font-weight: 300;
  text-align: justify;
}
.info_apply .inner .apply_area .red_bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(0.875 * var(--remBasicSize));
  background-color: #c93400;
}
.info_apply .inner .pic_area {
  position: absolute;
  width: calc(42.8125 * var(--remBasicSize));
  height: calc(35.375 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  right: calc(0.9375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply .inner .pic_area {
    position: relative;
    margin: 0 auto;
    width: calc(42.8125 * var(--remBasicSize));
    height: calc(31.25 * var(--remBasicSize));
    top: calc(9.0625 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}
.info_apply .inner .pic_area .pic {
  position: relative;
  margin: 0 auto;
  width: calc(34.375 * var(--remBasicSize));
  height: calc(29.1875 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  background: url(../images/info/apply/pic.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .info_apply .inner .pic_area .pic {
    width: calc(37.5 * var(--remBasicSize));
    height: calc(31.25 * var(--remBasicSize));
    top: calc(0 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}
.info_apply .inner .pic_area .formore {
  position: relative;
  margin: 0 auto;
  width: calc(28.375 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  right: calc(-2.5 * var(--remBasicSize));
  background: url(../images/info/apply/formore.png) center/contain no-repeat;
  margin-top: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .info_apply .inner .pic_area .formore {
    position: absolute;
    top: calc(13.75 * var(--remBasicSize));
    right: calc(28.875 * var(--remBasicSize));
    background-size: 80%;
    transform: rotate(90deg);
  }
}

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

          group

-------------------------*/
.parallax {
  position: relative;
  top: calc(0 * var(--remBasicSize));
  width: 100%;
  height: calc(55.3125 * var(--remBasicSize));
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .parallax {
    height: calc(65.75 * var(--remBasicSize));
  }
}
.parallax .parallax_bg {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 140%;
  background: url(../images/info/group/bg.jpg) center/cover no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.group_content {
  position: relative;
  margin: 0 auto;
  top: calc(6.25 * var(--remBasicSize));
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(42.5 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .group_content {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(49.6875 * var(--remBasicSize));
  }
}
.group_content .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(9.8125 * var(--remBasicSize));
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .group_content .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(9.0625 * var(--remBasicSize));
  }
}
.group_content .title_area .ellerun_together {
  position: relative;
  margin: 0 auto;
  width: calc(56.40625 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  background: url(../images/info/group/ellerun_together.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .group_content .title_area .ellerun_together {
    width: calc(46.875 * var(--remBasicSize));
    background-size: 80%;
  }
}
.group_content .title_area .big_title {
  position: relative;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .group_content .title_area .big_title {
    top: calc(0.625 * var(--remBasicSize));
  }
}
.group_content .group_form {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(29.59375 * var(--remBasicSize));
  background: url(../images/info/group/group_form.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .group_content .group_form {
    width: calc(43.75 * var(--remBasicSize));
    height: calc(38.1875 * var(--remBasicSize));
    background: url(../images/info/group/group_form_m.png) center/cover no-repeat;
  }
}
.group_content .group_form .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(22.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;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .group_content .group_form .btn_run {
    top: calc(30 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.group_content .group_form .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.group_content .group_form .btn_run:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

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

          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(10.625 * var(--remBasicSize));
  }
}
.k_ourse .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(80 * var(--remBasicSize));
  /* 隱藏 radio */
  /* tab bar */
  /* active indicator position */
  /* panels */
  /* white card */
}
@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 .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(18.125 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(18.125 * var(--remBasicSize));
  }
}
.k_ourse .inner .title_area .course {
  position: relative;
  margin: 0 auto;
  width: calc(21.625 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  left: calc(6.25 * var(--remBasicSize));
  background: url(../images/info/k_ourse/course.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .title_area .course {
    background-size: 80%;
    left: calc(7.5 * var(--remBasicSize));
  }
}
.k_ourse .inner .title_area .big_title {
  position: absolute;
  top: calc(0.625 * var(--remBasicSize));
  left: calc(15.625 * var(--remBasicSize));
  text-align: center;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .title_area .big_title {
    left: calc(7.8125 * var(--remBasicSize));
  }
}
.k_ourse .inner .title_area .details {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  width: calc(21.03125 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  background: url(../images/info/k_ourse/details.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .title_area .details {
    background-size: 80%;
    top: calc(0.625 * var(--remBasicSize));
  }
}
.k_ourse .inner .title_area .header_kv_l {
  position: absolute;
  margin: 0 auto;
  top: calc(5.625 * var(--remBasicSize));
  left: calc(8.125 * var(--remBasicSize));
  width: calc(16.0625 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  background: url(../images/info/k_ourse/header_kv_l.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .title_area .header_kv_l {
    top: calc(5.625 * var(--remBasicSize));
    left: calc(0.3125 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_area {
  position: relative;
  margin: 0 auto;
  top: calc(5.625 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  padding: calc(1.625 * var(--remBasicSize)) 0 calc(2.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_area {
    width: calc(43.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tab_ctrl {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.k_ourse .inner .route_tabbar {
  position: relative;
  width: calc(46.875 * var(--remBasicSize));
  max-width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  padding: 0 calc(1.75 * var(--remBasicSize)) calc(1.125 * var(--remBasicSize));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: calc(1.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar {
    width: calc(43.75 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tab {
  position: relative;
  flex: 1 1 0;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.k_ourse .inner .route_tab .route_tab_k {
  display: block;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.k_ourse .inner .route_tab .route_tab_t {
  display: block;
  margin-top: calc(0.375 * var(--remBasicSize));
  font-size: calc(2.25 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
.k_ourse .inner .route_tabbar_line {
  position: absolute;
  left: calc(1.75 * var(--remBasicSize));
  right: calc(1.75 * var(--remBasicSize));
  bottom: calc(0 * var(--remBasicSize));
  height: 1px;
  background: #fff;
}
.k_ourse .inner .route_tabbar_active {
  position: absolute;
  bottom: 0;
  height: calc(0.625 * var(--remBasicSize));
  width: calc((100% - calc(3.5 * var(--remBasicSize))) / 4);
  left: calc(1.75 * var(--remBasicSize));
  background: #c93400;
  transition: transform 0.35s ease;
}
.k_ourse .inner #tab35:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(0%);
}
.k_ourse .inner #tab10:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(100%);
}
.k_ourse .inner #tab21e:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(200%);
}
.k_ourse .inner #tab21r: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));
}
.k_ourse .inner .route_panel {
  display: none;
}
.k_ourse .inner #tab35:checked ~ .route_panels .p35 {
  display: block;
}
.k_ourse .inner #tab10:checked ~ .route_panels .p10 {
  display: block;
}
.k_ourse .inner #tab21e:checked ~ .route_panels .p21e {
  display: block;
}
.k_ourse .inner #tab21r:checked ~ .route_panels .p21r {
  display: block;
}
.k_ourse .inner .route_card {
  background: #fff;
  padding: calc(2.125 * var(--remBasicSize)) calc(2.125 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize));
  box-shadow: 0 calc(0.5 * var(--remBasicSize)) calc(1.5 * var(--remBasicSize)) rgba(0, 0, 0, 0.18);
}
.k_ourse .inner .route_text {
  margin: 0 calc(3.125 * var(--remBasicSize)) calc(1.25 * var(--remBasicSize)) calc(3.125 * var(--remBasicSize));
  text-align: justify;
  font-weight: 300;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.01em;
}
.k_ourse .inner .route_text span {
  font-weight: 500;
  display: block;
}
.k_ourse .inner .route_text span:nth-of-type(1) {
  color: #0076bf;
}
.k_ourse .inner .route_text span:nth-of-type(2) {
  color: #000;
}
.k_ourse .inner .route_text span:nth-of-type(3) {
  color: #c93400;
}
.k_ourse .inner .route_map {
  margin: 0 auto;
  border: calc(0.1875 * var(--remBasicSize)) solid #c93400;
  background: #fff;
}
.k_ourse .inner .route_map img {
  width: 100%;
  height: auto;
  display: block;
}
.k_ourse .inner .route_btn {
  margin: 0 auto;
  width: 100%;
  background: #c93400;
  border: none;
  color: #fff;
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: calc(0.625 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(0.875 * var(--remBasicSize));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.k_ourse .inner .route_btn:hover {
  filter: brightness(1.06) contrast(1.05);
}
.k_ourse .inner .route_btn__plus {
  display: inline-block;
  font-size: calc(2.5 * var(--remBasicSize));
  line-height: 1;
}
@media (max-width: 768px) {
  .k_ourse .inner .route_tabbar {
    padding: 0 calc(1 * var(--remBasicSize)) calc(1 * var(--remBasicSize));
  }
  .k_ourse .inner .route_tabbar_line {
    left: calc(1 * var(--remBasicSize));
    right: calc(1 * var(--remBasicSize));
  }
  .k_ourse .inner .route_tabbar_active {
    width: calc((100% - calc(2 * var(--remBasicSize))) / 4);
    left: calc(1 * var(--remBasicSize));
  }
  .k_ourse .inner .route_tab .route_tab_k {
    font-size: calc(3.125 * var(--remBasicSize));
  }
  .k_ourse .inner .route_tab .route_tab_t {
    font-size: calc(2.25 * var(--remBasicSize));
  }
  .k_ourse .inner .route_panels {
    padding: 0 calc(1 * var(--remBasicSize));
  }
  .k_ourse .inner .route_card {
    padding: calc(1.875 * var(--remBasicSize)) calc(1.125 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize)) calc(1.125 * var(--remBasicSize));
  }
  .k_ourse .inner .route_text {
    font-size: calc(1.75 * var(--remBasicSize));
  }
  .k_ourse .inner .route_btn {
    font-size: calc(1.75 * var(--remBasicSize));
    padding: calc(0.875 * var(--remBasicSize)) calc(0.875 * var(--remBasicSize));
  }
  .k_ourse .inner .route_btn__plus {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}

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

        rundown

-------------------------*/
.rundown {
  position: relative;
  width: 100%;
  min-height: calc(74.375 * var(--remBasicSize));
  background-color: #1e92da;
}
@media screen and (max-width: 750px) {
  .rundown {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(91.875 * var(--remBasicSize));
  }
}
.rundown .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(71.875 * var(--remBasicSize));
  /*--- 行程表 ---*/
}
@media screen and (max-width: 750px) {
  .rundown .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(91.875 * var(--remBasicSize));
  }
}
.rundown .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  height: calc(10 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .rundown .inner .title_area {
    min-height: calc(11.25 * var(--remBasicSize));
  }
}
.rundown .inner .title_area .rundown_text {
  position: relative;
  margin: 0 auto;
  width: calc(29.4375 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  background: url(../images/info/rundown/rundown.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .rundown .inner .title_area .rundown_text {
    background-size: 80%;
  }
}
.rundown .inner .title_area .big_title {
  position: relative;
  top: calc(0.625 * var(--remBasicSize));
  text-align: center;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
}
.rundown .inner .class_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(39.375 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
  top: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .rundown .inner .class_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(61.25 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.rundown .inner .class_area .schedule_wrap {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
}
.rundown .inner .class_area .schedule_scroll {
  width: calc(46.875 * var(--remBasicSize));
}
.rundown .inner .class_area .schedule_table {
  width: 100%;
  min-width: calc(46.875 * var(--remBasicSize));
  border-collapse: collapse;
  background-color: #fff;
  color: #000;
}
.rundown .inner .class_area .schedule_table th,
.rundown .inner .class_area .schedule_table td {
  border: 1px solid #1e92da;
  padding: calc(0.9375 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  vertical-align: middle;
}
.rundown .inner .class_area .schedule_table thead th {
  background-color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: calc(0.625 * var(--remBasicSize)) calc(0.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .rundown .inner .class_area .schedule_table thead th {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.rundown .inner .class_area .schedule_table .col_stage {
  width: calc(12.5 * var(--remBasicSize));
  color: #fff;
}
.rundown .inner .class_area .schedule_table .col_topic {
  width: auto;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .rundown .inner .class_area .schedule_table .col_stage {
    width: calc(2.125 * var(--remBasicSize));
  }
  .rundown .inner .class_area .schedule_table .col_topic {
    width: calc(26.25 * var(--remBasicSize));
  }
}
.rundown .inner .class_area .schedule_table .stage {
  text-align: center;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .rundown .inner .class_area .schedule_table .stage {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.rundown .inner .class_area .schedule_table .topic {
  text-align: left;
}
.rundown .inner .class_area .schedule_table .topic .topic_desc {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.5;
  color: #3a3a3a;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .rundown .inner .class_area .schedule_table .topic .topic_desc {
    font-size: calc(1.625 * var(--remBasicSize));
    line-height: 1.4;
    letter-spacing: 0em;
  }
}

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

        traffic

-------------------------*/
.traffic {
  position: relative;
  width: 100%;
  min-height: calc(143.75 * var(--remBasicSize));
  margin-bottom: calc(6.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(186.25 * var(--remBasicSize));
    margin-bottom: calc(10.625 * var(--remBasicSize));
  }
}
.traffic .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(143.75 * var(--remBasicSize));
  /*--- 會場接駁車 ---*/
  /*--- 大眾運輸 ---*/
  /* 左側 icon 區 */
  /* 右側文字區 */
  /*--- 自行開車 ---*/
  /* 四格共用 */
  /* 左欄：icon + 標題 */
  /* 右欄：文字內容 */
  /* 第二列：加藍色橫線（分隔上下兩排） */
  /* icon */
  /* 左側標題 */
  /* 右側列表 */
  /* 紅色備註 */
}
@media screen and (max-width: 750px) {
  .traffic .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(186.25 * var(--remBasicSize));
  }
}
.traffic .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(18.125 * var(--remBasicSize));
  top: calc(6.25 * var(--remBasicSize));
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(18.125 * var(--remBasicSize));
  }
}
.traffic .inner .title_area .traffic_text {
  position: relative;
  margin: 0 auto;
  width: calc(21.40625 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  left: calc(11.25 * var(--remBasicSize));
  background: url(../images/info/traffic/traffic.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .traffic .inner .title_area .traffic_text {
    background-size: 80%;
  }
}
.traffic .inner .title_area .big_title {
  position: absolute;
  top: calc(0.625 * var(--remBasicSize));
  left: calc(20.625 * var(--remBasicSize));
  text-align: center;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 750px) {
  .traffic .inner .title_area .big_title {
    left: calc(12.5 * var(--remBasicSize));
  }
}
.traffic .inner .title_area .information {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  left: calc(-4.375 * var(--remBasicSize));
  width: calc(37.9375 * var(--remBasicSize));
  height: calc(4.5625 * var(--remBasicSize));
  background: url(../images/info/traffic/information.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .traffic .inner .title_area .information {
    background-size: 80%;
    top: calc(0.625 * var(--remBasicSize));
  }
}
.traffic .inner .title_area .header_kv_l {
  position: absolute;
  margin: 0 auto;
  top: calc(6.875 * var(--remBasicSize));
  right: calc(4.375 * var(--remBasicSize));
  width: calc(16.0625 * var(--remBasicSize));
  height: calc(11.6875 * var(--remBasicSize));
  background: url(../images/info/traffic/header_kv_l.png) center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .traffic .inner .title_area .header_kv_l {
    top: calc(5.625 * var(--remBasicSize));
    right: calc(0.3125 * var(--remBasicSize));
  }
}
.traffic .inner .class_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(18.75 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
  top: calc(3.125 * var(--remBasicSize));
  /*--- 行程表 ---*/
  /* =========================
        欄寬設定（重點在這）
    ========================= */
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(18.75 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .title_h2 {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: calc(2 * var(--remBasicSize));
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .title_h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-0.625 * var(--remBasicSize));
  width: 100%;
  height: calc(0.375 * var(--remBasicSize));
  background-color: #c93400;
}
.traffic .inner .class_area .benefits_section {
  width: 100%;
  max-width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .benefits_section {
    width: calc(43.75 * var(--remBasicSize));
    max-width: calc(43.75 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.traffic .inner .class_area .benefits_list li {
  position: relative;
  padding-left: calc(1.375 * var(--remBasicSize));
  text-align: justify;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .benefits_list li .text-bold {
  font-weight: 500;
}
.traffic .inner .class_area .benefits_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.625 * var(--remBasicSize));
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  border-radius: 50%;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .benefits_list li::before {
    top: calc(1.125 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .table_wrap {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
.traffic .inner .class_area .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}
.traffic .inner .class_area .table th,
.traffic .inner .class_area .table td {
  padding: calc(1.125 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  text-align: center;
  vertical-align: middle;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.2;
  border-right: 1px solid #1e92da;
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .table th,
  .traffic .inner .class_area .table td {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .table thead th {
  background-color: #000;
  color: #fff;
  font-weight: 400;
}
.traffic .inner .class_area .table tbody td {
  color: #111;
  font-weight: 300;
  border-top: 1px solid #1e92da;
}
.traffic .inner .class_area .col-type {
  width: calc(6.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-type {
    width: calc(6.25 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .col-leg {
  width: calc(7.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-leg {
    width: calc(6.25 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .col-time {
  width: calc(9.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-time {
    width: calc(9.375 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .col-on {
  width: calc(11.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-on {
    width: calc(7.5 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .col-off {
  width: calc(11.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-off {
    width: calc(6.25 * var(--remBasicSize));
  }
}
.traffic .inner .class_area .col-duration {
  width: calc(7.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .class_area .col-duration {
    width: calc(7.5 * var(--remBasicSize));
  }
}
.traffic .inner .traffic_item {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #fff;
  margin-top: calc(1.875 * var(--remBasicSize));
  margin-bottom: calc(1.875 * var(--remBasicSize));
}
.traffic .inner .traffic_item_icon {
  width: calc(8.125 * var(--remBasicSize));
  padding: calc(1.25 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.traffic .inner .traffic_item_icon img {
  width: calc(1.875 * var(--remBasicSize));
  height: auto;
  margin-bottom: calc(0.5 * var(--remBasicSize));
}
.traffic .inner .traffic_item_icon span {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 750px) {
  .traffic .inner .traffic_item_icon span {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.traffic .inner .traffic_item_content {
  flex: 1;
  padding: calc(1.25 * var(--remBasicSize)) calc(1.75 * var(--remBasicSize));
  border-left: 1px solid #1e92da;
}
.traffic .inner .traffic_item_content ul {
  margin: 0;
  padding-left: calc(1.25 * var(--remBasicSize));
  list-style-type: disc;
}
.traffic .inner .traffic_item_content li {
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  font-weight: 300;
  text-align: justify;
  color: #000;
}
@media screen and (max-width: 750px) {
  .traffic .inner .traffic_item_content li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.traffic .inner .traffic_grid {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  background: #fff;
  margin-top: calc(1.875 * var(--remBasicSize));
  display: grid;
  grid-template-columns: calc(8.125 * var(--remBasicSize)) 1fr;
  grid-auto-rows: auto;
}
.traffic .inner .traffic_grid__cell {
  padding: calc(1.375 * var(--remBasicSize)) calc(1.625 * var(--remBasicSize));
}
.traffic .inner .traffic_grid__cell--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #1e92da;
}
.traffic .inner .traffic_grid__cell--content {
  display: flex;
  align-items: center;
}
.traffic .inner .traffic_grid__cell:nth-child(n+3) {
  border-top: 1px solid #1e92da;
}
.traffic .inner .traffic_icon {
  width: calc(2.5 * var(--remBasicSize));
  height: auto;
  display: block;
  margin-bottom: calc(0.625 * var(--remBasicSize));
}
.traffic .inner .traffic_label {
  margin: 0;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  color: #111;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .traffic .inner .traffic_label {
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: 1.5;
  }
}
.traffic .inner .traffic_list {
  margin: 0;
  padding-left: calc(1.375 * var(--remBasicSize));
  list-style-type: disc;
  text-align: justify;
}
.traffic .inner .traffic_list li {
  font-weight: 300;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  color: #111;
}
.traffic .inner .traffic_list li + li {
  margin-top: calc(0.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .traffic .inner .traffic_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.traffic .inner .traffic_note {
  display: inline;
  color: #c93400;
  font-weight: 400;
}

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

          notice

-------------------------*/
.notice {
  position: relative;
  width: 100%;
  min-height: calc(60.625 * var(--remBasicSize));
  background-color: #1e92da;
}
@media screen and (max-width: 750px) {
  .notice {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(86.875 * var(--remBasicSize));
  }
}
.notice .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(60.625 * var(--remBasicSize));
  /*------------------
        表單區塊
  -------------------*/
}
@media screen and (max-width: 750px) {
  .notice .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(86.875 * var(--remBasicSize));
  }
}
.notice .inner .notice_box {
  position: relative;
  top: calc(6.25 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
  background: #fff;
  text-align: justify;
  font-weight: 300;
  /* 黑色標題列 */
  /* 右側可捲動內容區 */
  /* 每個章節區塊 */
  /* 藍色章節標題 */
  /* 主層 1. 2. 3. */
  /* 每一個主項目的小標題（粗體） */
  /* 子層（1）（2）（3） */
  /* 子層（a）（b）（c） */
  /* 一般段落（你 HTML 有用到 notice_p） */
  /* 一般 ul（若你後續有用到 notice_ul） */
  /* 表格容器 */
  /* 表格本體 */
  /* 紅色備註 */
  /* 連結樣式（如果文件內有超連結） */
  /* 讓表格內的 <br> 看起來自然 */
  /* 手機：滿版，不橫向捲動 */
}
.notice .inner .notice_box .notice_head {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: calc(1.5 * var(--remBasicSize));
  line-height: 1.2;
  padding: calc(1.125 * var(--remBasicSize)) calc(1 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_body {
  height: calc(43.75 * var(--remBasicSize)); /* 視窗高度要更高就改這裡 */
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(1.125 * var(--remBasicSize)) calc(1.375 * var(--remBasicSize)) calc(1.75 * var(--remBasicSize));
  /* scrollbar (WebKit) */
}
.notice .inner .notice_box .notice_body::-webkit-scrollbar {
  width: calc(0.625 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
}
.notice .inner .notice_box .notice_body::-webkit-scrollbar-thumb {
  background: #d35400;
  border-radius: calc(0.625 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_section {
  position: relative;
  margin-bottom: calc(1.125 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_section_title {
  background: #0076bf;
  color: #fff;
  font-size: calc(1.25 * var(--remBasicSize));
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: calc(0.625 * var(--remBasicSize)) calc(0.875 * var(--remBasicSize));
  margin: calc(0.375 * var(--remBasicSize)) 0 calc(0.875 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_ol {
  margin: 0;
  padding-left: calc(1.375 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_ol > li {
  margin: 0 0 calc(1 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_item_title {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: calc(0.375 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.4;
  background-color: #eaeaea;
}
.notice .inner .notice_box .notice_alpha_title {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: calc(0.375 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.4;
}
.notice .inner .notice_box .notice_ol_sub {
  margin: calc(0.375 * var(--remBasicSize)) 0 0;
  padding-left: 0;
  list-style: none;
  counter-reset: sub;
}
.notice .inner .notice_box .notice_ol_sub > li {
  counter-increment: sub;
  position: relative;
  margin: 0 0 calc(0.5 * var(--remBasicSize));
  padding-left: calc(2.25 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: 1.8;
  color: #000;
}
.notice .inner .notice_box .notice_ol_sub > li::before {
  content: "(" counter(sub) ")";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 300;
}
.notice .inner .notice_box .notice_ol_sub_abc {
  margin: calc(0.375 * var(--remBasicSize)) 0 0;
  padding-left: 0;
  list-style: none;
  counter-reset: sub;
}
.notice .inner .notice_box .notice_ol_sub_abc > li {
  counter-increment: sub;
  position: relative;
  margin: 0 0 calc(0.5 * var(--remBasicSize));
  padding-left: calc(2.25 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: 1.8;
  color: #000;
}
.notice .inner .notice_box .notice_ol_sub_abc > li::before {
  content: counter(sub, lower-alpha) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 300;
}
.notice .inner .notice_box .notice_p {
  margin: 0 0 calc(0.875 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: 1.9;
  color: #000;
  letter-spacing: 0.01em;
}
.notice .inner .notice_box .notice_p br {
  content: "";
  display: block;
  margin-bottom: calc(0.625 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_ul {
  margin: 0;
  padding-left: calc(1.375 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_ul li {
  margin: 0 0 calc(0.5 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: 1.8;
  color: #111;
}
.notice .inner .notice_box .notice_table_wrap {
  margin: calc(0.875 * var(--remBasicSize)) 0 calc(1 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  /* 表格藍色抬頭列 */
  /* 其他列淡藍底 */
}
.notice .inner .notice_box .notice_table th,
.notice .inner .notice_box .notice_table td {
  text-align: center;
  vertical-align: middle;
  padding: calc(0.75 * var(--remBasicSize)) calc(0.5 * var(--remBasicSize));
  font-size: calc(0.9375 * var(--remBasicSize));
  line-height: 1.5;
  border-right: 1px solid #0076bf;
  border-bottom: 1px solid #0076bf;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.notice .inner .notice_box .notice_table th {
  font-weight: 600;
}
.notice .inner .notice_box .notice_table tr:last-child th,
.notice .inner .notice_box .notice_table tr:last-child td {
  border-bottom: none;
}
.notice .inner .notice_box .notice_table th:last-child,
.notice .inner .notice_box .notice_table td:last-child {
  border-right: none;
}
.notice .inner .notice_box .notice_table .is-head th,
.notice .inner .notice_box .notice_table .is-head td {
  background: #1e92da;
  color: #fff;
  font-weight: 500;
}
.notice .inner .notice_box .notice_table tr:not(.is-head) th,
.notice .inner .notice_box .notice_table tr:not(.is-head) td {
  background: #edf7ff;
  color: #000;
  font-weight: 400;
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] {
  --col1: auto;
  --col2: auto;
  --col3: auto;
  --col4: auto;
  --col5: auto;
  --col6: auto;
  /* 套用欄寬：同時作用在 th / td */
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(1) {
  width: var(--col1);
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(2) {
  width: var(--col2);
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(3) {
  width: var(--col3);
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(4) {
  width: var(--col4);
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(5) {
  width: var(--col5);
}
.notice .inner .notice_box .notice_table[aria-label=郵寄費用表] :is(th, td):nth-child(6) {
  width: var(--col6);
}
.notice .inner .notice_box .notice_table[aria-label=寄物開放時間與地點] {
  --col1: calc(11.25 * var(--remBasicSize));
  --col2: calc(9.375 * var(--remBasicSize));
  --col3: calc(8.125 * var(--remBasicSize));
  --col4: auto;
  /* 套用欄寬：同時作用在 th / td */
}
.notice .inner .notice_box .notice_table[aria-label=寄物開放時間與地點] :is(th, td):nth-child(1) {
  width: var(--col1);
}
.notice .inner .notice_box .notice_table[aria-label=寄物開放時間與地點] :is(th, td):nth-child(2) {
  width: var(--col2);
}
.notice .inner .notice_box .notice_table[aria-label=寄物開放時間與地點] :is(th, td):nth-child(3) {
  width: var(--col3);
}
.notice .inner .notice_box .notice_table[aria-label=寄物開放時間與地點] :is(th, td):nth-child(4) {
  width: var(--col4);
  text-align: justify;
}
.notice .inner .notice_box .notice_table[aria-label=退費階段表] {
  --col1: calc(6.25 * var(--remBasicSize));
  --col2: calc(8.125 * var(--remBasicSize));
  --col3: calc(17.5 * var(--remBasicSize));
  --col4: auto;
  /* 套用欄寬：同時作用在 th / td */
}
.notice .inner .notice_box .notice_table[aria-label=退費階段表] :is(th, td):nth-child(1) {
  width: var(--col1);
}
.notice .inner .notice_box .notice_table[aria-label=退費階段表] :is(th, td):nth-child(2) {
  width: var(--col2);
}
.notice .inner .notice_box .notice_table[aria-label=退費階段表] :is(th, td):nth-child(3) {
  width: var(--col3);
  text-align: left;
}
.notice .inner .notice_box .notice_table[aria-label=退費階段表] :is(th, td):nth-child(4) {
  width: var(--col4);
  text-align: left;
}
.notice .inner .notice_box .notice_note {
  margin: calc(0.625 * var(--remBasicSize)) 0 0;
  color: #c93400;
  font-size: calc(0.9375 * var(--remBasicSize));
  line-height: 1.7;
}
.notice .inner .notice_box .notice_body a {
  color: #0076bf;
  text-decoration: underline;
  text-underline-offset: calc(0.1875 * var(--remBasicSize));
  position: relative;
  top: calc(-0.3125 * var(--remBasicSize));
}
.notice .inner .notice_box .notice_body a:hover {
  filter: brightness(1.05) contrast(1.05);
}
.notice .inner .notice_box .notice_table br {
  content: "";
  display: block;
  margin-bottom: calc(0.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .notice .inner .notice_box .notice_head {
    font-size: calc(1.875 * var(--remBasicSize));
    padding: calc(1 * var(--remBasicSize)) calc(0.75 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_body {
    height: calc(68.75 * var(--remBasicSize));
    padding: calc(1 * var(--remBasicSize)) calc(1 * var(--remBasicSize)) calc(1.375 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_body::-webkit-scrollbar {
    width: calc(0.5 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_section_title {
    font-size: calc(1.625 * var(--remBasicSize));
    padding: calc(0.625 * var(--remBasicSize)) calc(0.75 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_item_title {
    font-size: calc(1.625 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_ol_sub > li,
  .notice .inner .notice_box .notice_ol_sub_abc > li,
  .notice .inner .notice_box .notice_p,
  .notice .inner .notice_box .notice_ul li {
    font-size: calc(1.5 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_ol_sub > li::before {
    left: calc(-0.3125 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_table th,
  .notice .inner .notice_box .notice_table td {
    font-size: calc(1.5 * var(--remBasicSize));
    padding: calc(0.625 * var(--remBasicSize)) calc(0.375 * var(--remBasicSize));
  }
  .notice .inner .notice_box .notice_note {
    font-size: calc(1.5 * var(--remBasicSize));
  }
}

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

/* 背景底色 */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 118, 191, 0.95);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.in {
  opacity: 1;
}

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

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

/* ----------------------------
        彈出內容
----------------------------- */
.style-box .modal-dialog {
  width: 100%;
  margin: 0 auto;
  padding: calc(2.5 * var(--remBasicSize)) 0 calc(2.5 * var(--remBasicSize)) 0;
}
@media screen and (max-width: 750px) {
  .style-box .modal-dialog {
    padding: calc(6.25 * var(--remBasicSize)) 0 calc(2.5 * var(--remBasicSize)) 0;
  }
}

.style-box .modal-body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 200px;
}
@media screen and (max-width: 750px) {
  .style-box .modal-body {
    margin-bottom: 80px;
  }
}

/* ---------------
       彈出內容
------------------ */
.info_map_pop {
  position: relative;
  margin: 0 auto;
  width: calc(37.5 * var(--remBasicSize));
  max-width: calc(100% - calc(2.5 * var(--remBasicSize)));
  background-color: #fff;
  border-radius: calc(3.75 * var(--remBasicSize));
  padding-bottom: calc(5 * var(--remBasicSize));
  /* 路線圖 */
}
@media (max-width: 768px) {
  .info_map_pop {
    border-radius: calc(2.5 * var(--remBasicSize));
    padding-bottom: calc(5 * var(--remBasicSize));
  }
}
.info_map_pop .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(3.125 * var(--remBasicSize));
  width: calc(26.75 * var(--remBasicSize));
  height: calc(6.9375 * var(--remBasicSize));
}
.info_map_pop .big_title img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 750px) {
  .info_map_pop .big_title {
    top: calc(3.125 * var(--remBasicSize));
  }
}
.info_map_pop .route_text {
  margin: calc(5 * var(--remBasicSize)) calc(3.125 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize));
  text-align: justify;
  font-weight: 300;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.01em;
}
@media (max-width: 750px) {
  .info_map_pop .route_text {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.info_map_pop .route_text span {
  display: block;
  font-weight: 500;
}
.info_map_pop .route_text span:nth-of-type(1) {
  color: #0076bf;
}
.info_map_pop .route_text span:nth-of-type(2) {
  color: #000;
}
.info_map_pop .route_text span:nth-of-type(3) {
  color: #c93400;
}
.info_map_pop .route_map {
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  max-width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .info_map_pop .route_map {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.info_map_pop .route_map img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: calc(6.25 * var(--remBasicSize));
  transform: scale(1.5);
  transform-origin: top center;
  border: calc(0.5 * var(--remBasicSize)) solid #1e92da;
}
@media (max-width: 750px) {
  .info_map_pop .route_map img {
    position: relative;
    margin: 0 auto;
    width: calc(46.875 * var(--remBasicSize));
    margin-bottom: calc(3.125 * var(--remBasicSize));
    transform: scale(1);
  }
}

/* ----------------
      關閉按鈕
------------------- */
.style-box .close {
  position: fixed;
  right: calc(1.875 * var(--remBasicSize));
  top: calc(1.875 * var(--remBasicSize));
  z-index: 1050;
  width: calc(3.125 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  background: url(../images/close.png) no-repeat center/cover;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.style-box .close:hover {
  transform: rotate(90deg);
}/*# sourceMappingURL=info.css.map */