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

/*--- market ---*/
#pages .market .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/market/h1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  #pages .market .page_head_title .inner_pages h1 {
    top: calc(-0.625 * var(--remBasicSize));
  }
}

#pages .market .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 .market .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 {
  /*---------- 大影片 ----------*/
}
#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 {
  /*小縮圖*/
}
#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));
}
@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 {
  /* arrow */
}
#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;
}

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

        market_info

-------------------------*/
.market_info {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(13.75 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .market_info {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(18.75 * var(--remBasicSize));
    margin-bottom: calc(1.875 * var(--remBasicSize));
  }
}
.market_info .inner {
  position: relative;
  width: calc(80 * var(--remBasicSize));
  margin: 0 auto;
  align-items: center;
  gap: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .market_info .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(18.75 * var(--remBasicSize));
    flex-direction: column;
  }
}
.market_info .inner .txt_area {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  min-height: calc(13.75 * var(--remBasicSize));
  top: calc(2.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .market_info .inner .txt_area {
    width: calc(39.25 * var(--remBasicSize));
    min-height: calc(18.75 * var(--remBasicSize));
    top: calc(3.125 * var(--remBasicSize));
  }
}
.market_info .inner .txt_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  text-align: center;
  color: #fff;
  font-size: calc(2.125 * var(--remBasicSize));
  line-height: calc(3 * var(--remBasicSize));
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .market_info .inner .txt_area .big_title {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.market_info .inner .txt_area p.txt {
  position: relative;
  width: calc(80 * var(--remBasicSize));
  top: calc(1.875 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  font-weight: 300;
}
.market_info .inner .txt_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .market_info .inner .txt_area p.txt {
    width: calc(39.25 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
    font-weight: 400;
  }
  .market_info .inner .txt_area p.txt span {
    display: none;
  }
}

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

          k_ourse

-------------------------*/
.k_ourse {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: calc(62.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(62.5 * var(--remBasicSize));
  }
}
.k_ourse .inner {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(80 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(62.5 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_area {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(68.75 * 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(46.875 * var(--remBasicSize));
  }
}
.k_ourse .inner {
  /* 隱藏 radio */
}
.k_ourse .inner .tab_ctrl {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.k_ourse .inner {
  /* tab bar */
}
.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(46.875 * var(--remBasicSize));
    padding: 0 calc(1 * var(--remBasicSize)) calc(1 * 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;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar_line {
    left: calc(1 * var(--remBasicSize));
    right: calc(1 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_tabbar_active {
  position: absolute;
  bottom: 0;
  height: calc(0.625 * var(--remBasicSize));
  width: calc((100% - calc(3.5 * var(--remBasicSize))) / 3);
  left: calc(1.75 * var(--remBasicSize));
  background: #c93400;
  transition: transform 0.35s ease;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_tabbar_active {
    width: calc((100% - calc(2 * var(--remBasicSize))) / 3);
    left: calc(1 * var(--remBasicSize));
  }
}
.k_ourse .inner {
  /* active indicator position */
}
.k_ourse .inner #tab1:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(0%);
}
.k_ourse .inner #tab2:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(100%);
}
.k_ourse .inner #tab3:checked ~ .route_tabbar .route_tabbar_active {
  transform: translateX(200%);
}
.k_ourse .inner {
  /* panels */
}
.k_ourse .inner .route_panels {
  width: 100%;
  max-width: calc(80 * var(--remBasicSize));
  margin: calc(1.25 * var(--remBasicSize)) auto 0;
  padding: 0 calc(1.25 * var(--remBasicSize));
}
.k_ourse .inner .route_panel2 {
  width: 100%;
  max-width: calc(68.75 * var(--remBasicSize));
  margin: calc(1.25 * var(--remBasicSize)) auto 0;
  padding: 0 calc(1.25 * var(--remBasicSize));
}
.k_ourse .inner .route_panel {
  display: none;
}
.k_ourse .inner #tab1:checked ~ .route_panels .tab1_area {
  display: block;
}
.k_ourse .inner #tab2:checked ~ .route_panels .tab2_area {
  display: block;
}
.k_ourse .inner #tab3:checked ~ .route_panels .tab3_area {
  display: block;
}
.k_ourse .inner .route_card {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: calc(0 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card {
    justify-content: space-around;
    padding: calc(3.125 * var(--remBasicSize)) calc(0 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize)) calc(0 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_card .market_group {
  width: 49.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: calc(5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group {
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
  }
}
.k_ourse .inner .route_card .market_group .market_img {
  width: calc(20.9375 * var(--remBasicSize));
  height: calc(20.9375 * var(--remBasicSize));
  display: block;
  background: #1e92da;
  padding-top: calc(1.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_img {
    display: block;
    margin: 0 auto;
  }
}
.k_ourse .inner .route_card .market_group .market_img img {
  width: calc(17.1875 * var(--remBasicSize));
  height: calc(17.1875 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
}
.k_ourse .inner .route_card .market_group .market_info {
  position: relative;
  width: calc(10.625 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
  margin-right: calc(0.625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info {
    width: calc(20.625 * var(--remBasicSize));
    margin: auto;
    margin-top: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.k_ourse .inner .route_card .market_group .market_info .market_logo {
  width: calc(5.1875 * var(--remBasicSize));
  height: calc(5.1875 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
  margin-bottom: calc(0.75 * var(--remBasicSize));
  margin-top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info .market_logo {
    width: calc(5.1875 * var(--remBasicSize));
    height: calc(5.1875 * var(--remBasicSize));
    margin-top: calc(-2.8125 * var(--remBasicSize));
    margin-bottom: auto;
    margin-bottom: calc(0.9375 * var(--remBasicSize));
    position: relative;
    display: flex;
    align-content: flex-start;
  }
}
.k_ourse .inner .route_card .market_group .market_info .market_logo img {
  width: 100%;
}
.k_ourse .inner .route_card .market_group .market_info h3 {
  font-size: calc(1.3125 * var(--remBasicSize));
  letter-spacing: calc(0.03125 * var(--remBasicSize));
  color: #fff;
  text-align: center;
  font-weight: 400;
  line-height: calc(1.8125 * var(--remBasicSize));
  margin: 0;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info h3 {
    font-size: calc(1.625 * var(--remBasicSize));
    display: block;
    margin: 0 auto;
    margin-top: calc(0 * var(--remBasicSize));
    text-align: center;
    font-weight: 400;
    line-height: calc(2.375 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_card .market_group .market_info .line {
  width: calc(4.25 * var(--remBasicSize));
  height: calc(0.1875 * var(--remBasicSize));
  display: block;
  margin: calc(0.625 * var(--remBasicSize)) auto;
  background-color: #c93400;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info .line {
    width: calc(4.25 * var(--remBasicSize));
    height: calc(0.1875 * var(--remBasicSize));
    margin: calc(0.75 * var(--remBasicSize)) auto;
  }
}
.k_ourse .inner .route_card .market_group .market_info p {
  font-size: calc(1 * var(--remBasicSize));
  letter-spacing: calc(0.0625 * var(--remBasicSize));
  line-height: calc(1.5 * var(--remBasicSize));
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin: 0 0 calc(1.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info p {
    font-size: calc(1.5 * var(--remBasicSize));
    letter-spacing: calc(0.0625 * var(--remBasicSize));
    line-height: calc(2.25 * var(--remBasicSize));
    margin: 0;
  }
}
.k_ourse .inner .route_card .market_group .market_info p span.block {
  display: block;
}
.k_ourse .inner .route_card .market_group .market_info .market_btn_more {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: calc(1.75 * var(--remBasicSize));
  width: calc(6.875 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  background-color: #c93400;
  color: #fff;
  font-size: calc(1 * var(--remBasicSize));
  letter-spacing: calc(0.0625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .k_ourse .inner .route_card .market_group .market_info .market_btn_more {
    margin-top: calc(0.9375 * var(--remBasicSize));
    width: calc(8.125 * var(--remBasicSize));
    height: calc(2.6875 * var(--remBasicSize));
    line-height: calc(2.6875 * var(--remBasicSize));
    font-size: calc(1.25 * var(--remBasicSize));
  }
}
.k_ourse .inner .route_card .market_group .market_info .market_btn_more:hover {
  background-color: #e94509;
}

/*-------------------------
          lightbox
-------------------------*/
/* ---------------------
          共用
---------------------- */
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

.modal {
  overflow: hidden;
  position: fixed;
  z-index: 1050;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.8549019608);
}
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal .modal-dialog {
  position: relative;
  top: calc(3.125 * var(--remBasicSize));
  margin: 0 auto;
}
.modal .modal-dialog .close {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  right: 0;
  top: calc(-3.125 * var(--remBasicSize));
  width: calc(3.125 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  background: #c93400;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .modal .modal-dialog .close {
    top: calc(-4.375 * var(--remBasicSize));
    right: 0;
    width: calc(4.375 * var(--remBasicSize));
    height: calc(4.375 * var(--remBasicSize));
  }
}
.modal .modal-dialog .close:hover {
  background: #e94509;
}
.modal .modal-dialog .close:before {
  position: absolute;
  content: "";
  z-index: 2;
  top: 48%;
  left: 11%;
  display: block;
  width: calc(2.5 * var(--remBasicSize));
  height: calc(0.375 * var(--remBasicSize));
  background: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .modal .modal-dialog .close:before {
    width: calc(3.375 * var(--remBasicSize));
    left: 12%;
  }
}
.modal .modal-dialog .close:after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 48%;
  left: 11%;
  display: block;
  width: calc(2.5 * var(--remBasicSize));
  height: calc(0.375 * var(--remBasicSize));
  background: #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .modal .modal-dialog .close:after {
    width: calc(3.375 * var(--remBasicSize));
    left: 12%;
  }
}
.modal .modal-content {
  position: relative;
  border-radius: 0px;
  outline: 0;
  width: calc(62.125 * var(--remBasicSize));
  min-height: calc(35 * var(--remBasicSize));
  margin: 0 auto;
  background: #0076bf;
  top: calc(3.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content {
    width: calc(43.75 * var(--remBasicSize));
    display: block;
    margin: 0 auto;
    top: calc(7.5 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body {
  position: relative;
  padding-left: calc(4.625 * var(--remBasicSize));
  padding-right: calc(4.625 * var(--remBasicSize));
  padding-bottom: calc(3.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body {
    padding-bottom: calc(0.9375 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r {
    flex-direction: column;
    padding-bottom: calc(1.25 * var(--remBasicSize));
    margin-bottom: calc(2.5 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .pop_img {
  margin-top: calc(4.8125 * var(--remBasicSize));
  position: relative;
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .pop_img {
    margin-top: calc(6.25 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .pop_img img {
  width: calc(25.875 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .pop_img img {
    width: calc(29.75 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .pop_img .logo_market {
  width: calc(8.75 * var(--remBasicSize));
  height: calc(8.75 * var(--remBasicSize));
  position: absolute;
  top: calc(-3.875 * var(--remBasicSize));
  left: calc(-2.875 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .pop_img .logo_market {
    top: calc(-3.4375 * var(--remBasicSize));
    left: calc(-0.625 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .pop_img .logo_market img {
  width: 100%;
}
.modal .modal-content .modal-body .flex_r .pop_info {
  width: calc(25.375 * var(--remBasicSize));
  margin-top: calc(3.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .pop_info {
    width: 100%;
    margin-top: calc(-0.625 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .pop_info span {
  display: block;
}
.modal .modal-content .modal-body .flex_r h3 {
  font-size: calc(1.5 * var(--remBasicSize));
  color: #fff;
  text-align: left;
  font-weight: 400;
  margin-top: calc(3.875 * var(--remBasicSize));
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r h3 {
    font-size: calc(2.25 * var(--remBasicSize));
    margin-top: calc(2.75 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .line {
  width: 100%;
  height: calc(0.1875 * var(--remBasicSize));
  display: flex;
  margin-left: auto;
  background: #c93400;
  position: relative;
  margin-top: calc(1.25 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .line {
    width: 100%;
    margin-top: calc(1.875 * var(--remBasicSize));
    margin-bottom: calc(1.25 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r p {
  color: #fff;
  font-size: calc(1 * var(--remBasicSize));
  line-height: calc(2 * var(--remBasicSize));
  font-weight: 300;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r p {
    font-size: calc(1.625 * var(--remBasicSize));
    line-height: calc(3 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .market_btn_more {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: calc(1.75 * var(--remBasicSize));
  margin-left: 0;
  width: calc(6.875 * var(--remBasicSize));
  height: calc(2.25 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  background-color: #c93400;
  color: #fff;
  font-size: calc(1 * var(--remBasicSize));
  letter-spacing: calc(0.0625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .modal .modal-content .modal-body .flex_r .market_btn_more {
    margin-top: calc(1.25 * var(--remBasicSize));
    width: calc(12.5 * var(--remBasicSize));
    height: calc(4.125 * var(--remBasicSize));
    line-height: calc(4.125 * var(--remBasicSize));
    font-size: calc(1.25 * var(--remBasicSize));
  }
}
.modal .modal-content .modal-body .flex_r .market_btn_more:hover {
  background-color: #e94509;
}
.modal .modal-backdrop {
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
}
.modal .modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal .modal-backdrop.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal .modal-scrollbar-measure {
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
}

.desktop-image {
  display: block;
}

.mobile-image {
  display: none;
}

@media only screen and (max-width: 768px) {
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
  }
}
[data-aos=bike_group] {
  transform: translateX(calc(0 * var(--remBasicSize)));
}
[data-aos=bike_group].aos-animate {
  transform: translateX(calc(13.75 * var(--remBasicSize)));
}

[data-aos=iris] {
  transform: translateX(calc(3.125 * var(--remBasicSize)));
  opacity: 0;
}
[data-aos=iris].aos-animate {
  transform: translateX(calc(0 * var(--remBasicSize)));
  opacity: 1;
}/*# sourceMappingURL=market.css.map */