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

* {
  box-sizing: border-box;
}

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

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

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

           bg

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

/* ----------------------------------------------------
    initial html5 reset
---------------------------------------------------- */
html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
audio,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
summary,
time,
video {
  border: 0;
  outline: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ol {
  list-style: none;
}

ul {
  list-style: none;
}

ul ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

mark {
  background: none;
}

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

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

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

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

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

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

            a

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

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

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

          page內頁共用

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

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

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

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

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

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

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

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

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

        立即報名按鈕

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer.mobile {
  height: 70px;
}

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

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

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

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

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

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

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

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

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

        sponsor

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

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

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

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

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

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

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

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

          footer

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

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

        footer_dec

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

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

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

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

        team_about

-------------------------*/
.team_about {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: calc(39.0625 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_about {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(86.25 * var(--remBasicSize));
    margin-bottom: calc(10.625 * var(--remBasicSize));
  }
}
.team_about .inner {
  position: relative;
  width: calc(62.5 * var(--remBasicSize));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: calc(1.25 * var(--remBasicSize));
  /* Slick slider 箭頭 */
  /* Slick dots */
}
@media screen and (max-width: 750px) {
  .team_about .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(71.25 * var(--remBasicSize));
    flex-direction: column;
  }
}
.team_about .inner .txt_area {
  position: relative;
  margin: 0 auto;
  width: calc(30.625 * var(--remBasicSize));
  min-height: calc(28.4375 * var(--remBasicSize));
  top: calc(2.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_about .inner .txt_area {
    width: calc(39.25 * var(--remBasicSize));
    min-height: calc(37.5 * var(--remBasicSize));
    top: calc(13.75 * var(--remBasicSize));
  }
}
.team_about .inner .txt_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  text-align: left;
  color: #fff;
  font-size: calc(2.125 * var(--remBasicSize));
  line-height: calc(3 * var(--remBasicSize));
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .team_about .inner .txt_area .big_title {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.team_about .inner .txt_area p.txt {
  position: relative;
  width: calc(28.75 * var(--remBasicSize));
  top: calc(1.875 * var(--remBasicSize));
  text-align: justify;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  font-weight: 300;
}
.team_about .inner .txt_area p.txt span {
  background-color: #54b0e9;
}
@media screen and (max-width: 750px) {
  .team_about .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;
  }
}
.team_about .inner .pic_area {
  position: relative;
  margin: 0 auto;
  width: calc(26.875 * var(--remBasicSize));
  min-height: calc(26.875 * var(--remBasicSize));
  top: calc(2.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_about .inner .pic_area {
    width: calc(34.375 * var(--remBasicSize));
    min-height: calc(34.375 * var(--remBasicSize));
  }
}
.team_about .inner .slider_item {
  position: relative;
  margin: 0 auto;
  width: calc(26.875 * var(--remBasicSize));
  height: calc(26.875 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_about .inner .slider_item {
    width: calc(34.375 * var(--remBasicSize));
    min-height: calc(34.375 * var(--remBasicSize));
  }
}
.team_about .inner .slick-prev,
.team_about .inner .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 108%;
  display: block;
  width: calc(1.8125 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 4;
}
@media screen and (max-width: 750px) {
  .team_about .inner .slick-prev,
  .team_about .inner .slick-next {
    width: calc(2.5375 * var(--remBasicSize));
    height: calc(2.14375 * var(--remBasicSize));
  }
}
.team_about .inner .slick-prev {
  left: calc(7.5 * var(--remBasicSize));
  background: url(../images/team/about/arr_l.png) no-repeat center top/contain;
}
.team_about .inner .slick-prev:before {
  content: "";
}
.team_about .inner .slick-next {
  right: calc(7.5 * var(--remBasicSize));
  background: url(../images/team/about/arr_r.png) no-repeat center top/contain;
}
.team_about .inner .slick-next:before {
  content: "";
}
.team_about .inner .slick-prev:hover, .team_about .inner .slick-next:hover {
  filter: brightness(1.2);
}
.team_about .inner .slick-dotted.slick-slider {
  margin-bottom: calc(0 * var(--remBasicSize));
}
.team_about .inner .slick-dots {
  position: absolute;
  bottom: calc(-2.1875 * var(--remBasicSize));
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .team_about .inner .slick-dots {
    bottom: calc(-3.4375 * var(--remBasicSize));
  }
}
.team_about .inner .slick-dots li {
  position: relative;
  display: inline-block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  margin: 0 calc(0.1875 * var(--remBasicSize));
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .team_about .inner .slick-dots li {
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.team_about .inner .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  padding: calc(0.1875 * var(--remBasicSize));
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
@media screen and (max-width: 750px) {
  .team_about .inner .slick-dots li button {
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.team_about .inner .slick-dots li button:before {
  font-family: "slick";
  font-size: calc(1.25 * var(--remBasicSize));
  line-height: calc(1.25 * var(--remBasicSize));
  position: absolute;
  top: 0;
  left: 0;
  width: calc(0.625 * var(--remBasicSize));
  height: calc(0.625 * var(--remBasicSize));
  content: "•";
  text-align: center;
  opacity: 1;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 750px) {
  .team_about .inner .slick-dots li button:before {
    font-size: calc(1.625 * var(--remBasicSize));
    width: calc(1.25 * var(--remBasicSize));
    height: calc(1.25 * var(--remBasicSize));
  }
}
.team_about .inner .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ee8198;
}
.team_about .inner .ellerun_team_logo1 {
  position: absolute;
  width: calc(9.125 * var(--remBasicSize));
  height: calc(7.8125 * var(--remBasicSize));
  top: calc(-5.125 * var(--remBasicSize));
  right: calc(-0.625 * var(--remBasicSize));
  background: url(../images/team/about/ellerun_team_logo1.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .team_about .inner .ellerun_team_logo1 {
    top: calc(-4.375 * var(--remBasicSize));
  }
}
.team_about .inner .ellerun_team_logo2 {
  position: absolute;
  width: calc(20.9375 * var(--remBasicSize));
  height: calc(17.875 * var(--remBasicSize));
  top: calc(18.4375 * var(--remBasicSize));
  left: calc(-46.875 * var(--remBasicSize));
  background: url(../images/team/about/ellerun_team_logo2.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .team_about .inner .ellerun_team_logo2 {
    top: calc(-20.625 * var(--remBasicSize));
    left: calc(-3.75 * var(--remBasicSize));
  }
}

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

        team_vide

-------------------------*/
.team_vide {
  position: relative;
  width: 100%;
  height: calc(48.75 * var(--remBasicSize));
  margin-bottom: calc(9.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_vide {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(35.625 * var(--remBasicSize));
  }
}
.team_vide .inner {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  height: calc(48.75 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_vide .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(35.625 * var(--remBasicSize));
  }
}
.team_vide .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  min-height: calc(7.1875 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_vide .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(6.25 * var(--remBasicSize));
    margin-bottom: calc(3.125 * var(--remBasicSize));
  }
}
.team_vide .inner .title_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(37.1875 * var(--remBasicSize));
  height: calc(2.4375 * var(--remBasicSize));
  background: url(../images/team/video/title.png) center/contain no-repeat;
}
.team_vide .inner .title_area .h2 {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  color: #fc6c0f;
  font-size: calc(2.25 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .team_vide .inner .title_area .h2 {
    font-size: calc(2 * var(--remBasicSize));
  }
}
.team_vide .inner .videbox {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
@media screen and (max-width: 750px) {
  .team_vide .inner .videbox {
    width: 100%;
  }
}
.team_vide .inner .videbox iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

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

      team_info_menu

-------------------------*/
.team_info_menu {
  position: relative;
  width: 100%;
  height: calc(16.5625 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .team_info_menu {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(18.125 * var(--remBasicSize));
  }
}
.team_info_menu .inner {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  height: calc(47.8125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_info_menu .inner {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(18.125 * var(--remBasicSize));
  }
}
.team_info_menu .inner .title_area {
  position: relative;
  margin: 0 auto;
  width: calc(80 * var(--remBasicSize));
  min-height: calc(7.1875 * var(--remBasicSize));
  top: calc(0 * var(--remBasicSize));
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .team_info_menu .inner .title_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(6.25 * var(--remBasicSize));
    margin-bottom: calc(3.125 * var(--remBasicSize));
  }
}
.team_info_menu .inner .title_area .big_title {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(63.25 * var(--remBasicSize));
  height: calc(10.6875 * var(--remBasicSize));
  background: url(../images/team/info/title.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .team_info_menu .inner .title_area .big_title {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.team_info_menu .inner .btn_group {
  position: relative;
  display: flex;
  justify-content: center;
  gap: calc(1 * var(--remBasicSize));
  top: calc(-2.5 * var(--remBasicSize));
}
.team_info_menu .inner .btn_group .btn_elite,
.team_info_menu .inner .btn_group .btn_chill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(24.25 * var(--remBasicSize));
  height: calc(10.375 * var(--remBasicSize));
  background: url(../images/team/info/menu_bg.png) center/contain no-repeat;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.team_info_menu .inner .btn_group .btn_elite:hover,
.team_info_menu .inner .btn_group .btn_chill:hover {
  filter: brightness(1.08) contrast(1.25);
}
.team_info_menu .inner .btn_group h1 {
  margin: 0;
  color: #fff;
  font-size: calc(2.25 * var(--remBasicSize));
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.team_info_menu .inner .btn_group h2 {
  margin: calc(0.25 * var(--remBasicSize)) 0 0;
  color: #000;
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}
.team_info_menu .inner .btn_group h3 {
  margin: calc(0.5 * var(--remBasicSize)) 0 0;
  color: #fff;
  font-size: calc(1.5 * var(--remBasicSize));
  font-family: "kohinoor-bangla", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: calc(0.375 * var(--remBasicSize));
}
.team_info_menu .inner .btn_group h3 span {
  display: inline-block;
  width: calc(1.875 * var(--remBasicSize));
  height: calc(1.53125 * var(--remBasicSize));
  background: url(../images/team/info/arr.png) center/contain no-repeat;
  animation: arrowFloat 0.6s ease-in-out infinite;
}
@keyframes arrowFloat {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(calc(0.25 * var(--remBasicSize)));
  }
  100% {
    transform: translateX(0);
  }
}

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

          視差滾動

-------------------------*/
.parallax {
  position: relative;
  top: calc(-3.125 * var(--remBasicSize));
  width: 100%;
  height: calc(30 * var(--remBasicSize));
  overflow: hidden;
  z-index: 1;
}
.parallax .parallax_bg {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 140%;
  background: url(../images/team/info/bg_pic.jpg) center/cover no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.parallax_content {
  position: relative;
  margin: 0 auto;
  top: calc(-9.375 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(8.75 * var(--remBasicSize));
  z-index: 2;
}
.parallax_content .h2 {
  position: relative;
  margin: 0 auto;
  width: calc(27.21875 * var(--remBasicSize));
  height: calc(1.9375 * var(--remBasicSize));
  background: url(../images/team/info/h2.png) center/cover no-repeat;
}
.parallax_content .red_line {
  position: relative;
  margin: 0 auto;
  width: calc(0.25 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  top: calc(2.125 * 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;
  }
}

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

          菁英強化班

-------------------------*/
.target_section_elite {
  position: relative;
  width: 100%;
  min-height: calc(250 * var(--remBasicSize));
  scroll-margin-top: calc(5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(400 * var(--remBasicSize));
    margin-bottom: calc(9.375 * var(--remBasicSize));
  }
}
.target_section_elite .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(250 * var(--remBasicSize));
  background-color: #fff;
  border-radius: calc(7.5 * var(--remBasicSize));
  /*--- 標題說明 ---*/
  /*--- 特色亮點 ---*/
  /*--- 教練 ---*/
  /*--- 課程好禮 ---*/
  /*--- CLASS PLAN ---*/
  /*--- 立即報名 ---*/
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(400 * var(--remBasicSize));
    border-radius: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .title_area {
  position: relative;
  margin: 0 auto;
  top: calc(2.5 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(15.625 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .title_area {
    min-height: calc(21.875 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .title_area .dec_flag {
  position: absolute;
  margin: 0 auto;
  top: calc(-4.375 * var(--remBasicSize));
  right: calc(6.25 * var(--remBasicSize));
  width: calc(8.0625 * var(--remBasicSize));
  height: calc(7.75 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/team/info/flag.png) center/contain no-repeat;
}
.target_section_elite .inner .title_area .big_title {
  position: relative;
  display: inline-block;
  z-index: 1;
  align-items: center;
  color: #fc6c0f;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.target_section_elite .inner .title_area .big_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(23.75 * var(--remBasicSize));
  bottom: 30%;
  height: calc(0.875 * var(--remBasicSize));
  background-color: #ffd6bb;
  z-index: -1;
}
.target_section_elite .inner .title_area p.txt {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .title_area p.txt {
    top: calc(1.875 * var(--remBasicSize));
    width: calc(39.0625 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.target_section_elite .inner .title_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .title_area p.txt span {
    display: inline-block;
  }
}
.target_section_elite .inner .highlights_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(42.5 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(74.375 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .highlights_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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .highlights_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: #fc6c0f;
}
.target_section_elite .inner .highlights_area .highlights {
  position: relative;
  margin: 0 auto calc(1.25 * var(--remBasicSize));
  width: calc(50 * var(--remBasicSize));
  min-height: calc(37.5 * var(--remBasicSize));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: calc(1.25 * var(--remBasicSize));
       column-gap: calc(1.25 * var(--remBasicSize));
  row-gap: calc(1.5625 * var(--remBasicSize));
  /* ---------- 上排：大的 ---------- */
  /* ---------- 下排：小的 ---------- */
  /* individual backgrounds */
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area .highlights {
    width: calc(46.875 * var(--remBasicSize));
  }
}
.target_section_elite .inner .highlights_area .highlights .highlights_1,
.target_section_elite .inner .highlights_area .highlights .highlights_2 {
  width: calc(19.6875 * var(--remBasicSize));
  height: calc(19.25 * var(--remBasicSize));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area .highlights .highlights_1,
  .target_section_elite .inner .highlights_area .highlights .highlights_2 {
    width: calc(21.5625 * var(--remBasicSize));
    height: calc(29.40625 * var(--remBasicSize));
  }
}
.target_section_elite .inner .highlights_area .highlights .highlights_3,
.target_section_elite .inner .highlights_area .highlights .highlights_4,
.target_section_elite .inner .highlights_area .highlights .highlights_5 {
  width: calc(15 * var(--remBasicSize));
  height: calc(15.8125 * var(--remBasicSize));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area .highlights .highlights_3,
  .target_section_elite .inner .highlights_area .highlights .highlights_4,
  .target_section_elite .inner .highlights_area .highlights .highlights_5 {
    width: calc(43.71875 * var(--remBasicSize));
    height: calc(11.15625 * var(--remBasicSize));
  }
}
.target_section_elite .inner .highlights_area .highlights .highlights_1 {
  background-image: url(../images/team/info/highlights_1.png);
}
.target_section_elite .inner .highlights_area .highlights .highlights_2 {
  background-image: url(../images/team/info/highlights_2.png);
}
.target_section_elite .inner .highlights_area .highlights .highlights_3 {
  background-image: url(../images/team/info/highlights_3.png);
}
.target_section_elite .inner .highlights_area .highlights .highlights_4 {
  background-image: url(../images/team/info/highlights_4.png);
}
.target_section_elite .inner .highlights_area .highlights .highlights_5 {
  background-image: url(../images/team/info/highlights_5.png);
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .highlights_area .highlights .highlights_1 {
    background-image: url(../images/team/info/highlights_1_m.png);
  }
  .target_section_elite .inner .highlights_area .highlights .highlights_2 {
    background-image: url(../images/team/info/highlights_2_m.png);
  }
  .target_section_elite .inner .highlights_area .highlights .highlights_3 {
    background-image: url(../images/team/info/highlights_3_m.png);
  }
  .target_section_elite .inner .highlights_area .highlights .highlights_4 {
    background-image: url(../images/team/info/highlights_4_m.png);
  }
  .target_section_elite .inner .highlights_area .highlights .highlights_5 {
    background-image: url(../images/team/info/highlights_5_m.png);
  }
}
.target_section_elite .inner .coach_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(35.625 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(61.25 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .title_area {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(11.5625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .title_area {
    right: calc(2.5 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .title_area .h1 {
  position: absolute;
  top: calc(4.0625 * var(--remBasicSize));
  right: calc(4.375 * var(--remBasicSize));
  font-size: calc(2.8125 * var(--remBasicSize));
  color: #fc6c0f;
}
.target_section_elite .inner .coach_area .title_area .h2 {
  position: absolute;
  top: calc(8.125 * var(--remBasicSize));
  right: calc(6.25 * var(--remBasicSize));
  font-size: calc(1.75 * var(--remBasicSize));
  color: #000;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .title_area .h2 {
    font-size: calc(2.25 * var(--remBasicSize));
    right: calc(8.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .title_area .ellerunteam_dec {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  right: calc(0 * var(--remBasicSize));
  width: calc(13.4375 * var(--remBasicSize));
  height: calc(6.34375 * var(--remBasicSize));
  background: url(../images/team/info/ellerunteam_dec.png) center/contain no-repeat;
}
.target_section_elite .inner .coach_area .title_area .dec_kv_l {
  position: absolute;
  margin: 0 auto;
  display: block;
  top: calc(3.125 * var(--remBasicSize));
  right: calc(21.875 * var(--remBasicSize));
  width: calc(10.9375 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background: url(../images/team/info/dec_kv_l.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .title_area .dec_kv_l {
    display: none;
  }
}
.target_section_elite .inner .coach_area .title_area .social_buttons {
  display: flex;
  justify-content: center;
  position: absolute;
  top: calc(8.125 * var(--remBasicSize));
  right: calc(0.875 * var(--remBasicSize));
  gap: calc(0.625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .title_area .social_buttons {
    right: calc(1.5625 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .title_area .social_btn {
  width: calc(2.0625 * var(--remBasicSize));
  height: calc(2.0625 * var(--remBasicSize));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .title_area .social_btn {
    width: calc(2.8125 * var(--remBasicSize));
    height: calc(2.8125 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .title_area .social_btn:hover {
  transform: translateY(calc(-0.125 * var(--remBasicSize)));
}
.target_section_elite .inner .coach_area .title_area .social_btn.ig {
  background: url(../images/team/info/btn_ig.png) center/contain no-repeat;
}
.target_section_elite .inner .coach_area .title_area .social_btn.fb {
  background: url(../images/team/info/btn_fb.png) center/contain no-repeat;
}
.target_section_elite .inner .coach_area .coach_pic {
  position: absolute;
  margin: 0 auto;
  top: calc(5.5 * var(--remBasicSize));
  left: calc(7.5 * var(--remBasicSize));
  width: calc(29.15625 * var(--remBasicSize));
  height: calc(26.9375 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/team/info/coach_pic_ir.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .coach_pic {
    top: calc(5 * var(--remBasicSize));
    left: calc(3.125 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .coach_info_area {
  position: absolute;
  top: calc(13.25 * var(--remBasicSize));
  right: calc(7.5 * var(--remBasicSize));
  width: calc(23.125 * var(--remBasicSize));
  min-height: calc(15.625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .coach_info_area {
    position: relative;
    margin: 0 auto;
    width: calc(39.25 * var(--remBasicSize));
    min-height: calc(21.875 * var(--remBasicSize));
    top: calc(21.875 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .coach_info_area .big_title {
  font-size: calc(1.25 * var(--remBasicSize));
  line-height: calc(1.625 * var(--remBasicSize));
  color: #fff;
  font-weight: 400;
  text-align: left;
  margin-bottom: calc(0.625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .coach_info_area .big_title {
    font-size: calc(2 * var(--remBasicSize));
    line-height: calc(2.9375 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .coach_info_area p.txt {
  width: calc(21.875 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: calc(1.75 * var(--remBasicSize));
  color: #000;
  font-weight: 300;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .coach_info_area p.txt {
    width: calc(39.25 * var(--remBasicSize));
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
    letter-spacing: calc(0.0625 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .coach_info_area .dec_kv_r {
  position: absolute;
  margin: 0 auto;
  top: calc(14.375 * var(--remBasicSize));
  right: calc(7.5 * var(--remBasicSize));
  width: calc(10.9375 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background: url(../images/team/info/dec_kv_r.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .coach_info_area .dec_kv_r {
    top: calc(-18.75 * var(--remBasicSize));
    right: calc(-1.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .coach_area .orange_section {
  position: absolute;
  display: block;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(17.9375 * var(--remBasicSize));
  overflow: hidden;
  background-color: #fc6c0f;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .coach_area .orange_section {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(45.3125 * var(--remBasicSize));
    background-color: transparent;
    top: calc(16.25 * var(--remBasicSize));
    background: url(../images/team/info/elite_bg_m.png) center/contain no-repeat;
  }
}
.target_section_elite .inner .gift_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(36.25 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .gift_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(42.5 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .gift_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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .gift_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .gift_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: #fc6c0f;
}
.target_section_elite .inner .gift_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) {
  .target_section_elite .inner .gift_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .gift_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_elite .inner .gift_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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .gift_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .gift_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;
}
.target_section_elite .inner .gift_area .gift_list {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(11.25 * var(--remBasicSize));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
}
.target_section_elite .inner .gift_area .gift {
  width: calc(11.25 * var(--remBasicSize));
  height: calc(11.25 * var(--remBasicSize));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.target_section_elite .inner .gift_area .gift:nth-child(1) {
  background-image: url(../images/team/info/gift_elite_1.png);
}
.target_section_elite .inner .gift_area .gift:nth-child(2) {
  background-image: url(../images/team/info/gift_elite_2.png);
}
.target_section_elite .inner .gift_area .gift:nth-child(3) {
  background-image: url(../images/team/info/gift_elite_3.png);
}
.target_section_elite .inner .gift_area .gift:nth-child(4) {
  background-image: url(../images/team/info/gift_elite_4.png);
}
.target_section_elite .inner .class_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(42.5 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
  /*--- 行程表 ---*/
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(42.5 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_elite .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: #fc6c0f;
}
.target_section_elite .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) {
  .target_section_elite .inner .class_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_elite .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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .benefits_list li .text-bold {
  font-weight: 600;
}
.target_section_elite .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;
}
.target_section_elite .inner .class_area .schedule_wrap {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
}
.target_section_elite .inner .class_area .schedule_scroll {
  width: calc(46.875 * var(--remBasicSize));
}
.target_section_elite .inner .class_area .schedule_table {
  width: 100%;
  min-width: calc(46.875 * var(--remBasicSize));
  border-collapse: collapse;
  background-color: #fff7f1;
  color: #000;
}
.target_section_elite .inner .class_area .schedule_table th,
.target_section_elite .inner .class_area .schedule_table td {
  border: 1px solid #fc6c0f;
  padding: calc(0.9375 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  vertical-align: middle;
}
.target_section_elite .inner .class_area .schedule_table thead th {
  background-color: #ffd6bb;
  font-size: calc(1.125 * var(--remBasicSize));
  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) {
  .target_section_elite .inner .class_area .schedule_table thead th {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .schedule_table .col_stage {
  width: calc(4.6875 * var(--remBasicSize));
}
.target_section_elite .inner .class_area .schedule_table .col_date {
  width: calc(4.6875 * var(--remBasicSize));
}
.target_section_elite .inner .class_area .schedule_table .col_place {
  width: calc(6.875 * var(--remBasicSize));
}
.target_section_elite .inner .class_area .schedule_table .col_topic {
  width: auto;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .schedule_table .col_stage {
    width: calc(6.25 * var(--remBasicSize));
  }
  .target_section_elite .inner .class_area .schedule_table .col_date {
    width: calc(5.625 * var(--remBasicSize));
  }
  .target_section_elite .inner .class_area .schedule_table .col_place {
    width: calc(9 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .schedule_table .stage {
  text-align: center;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .schedule_table .stage {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .schedule_table .date,
.target_section_elite .inner .class_area .schedule_table .place {
  text-align: center;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .schedule_table .date,
  .target_section_elite .inner .class_area .schedule_table .place {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .class_area .schedule_table .topic {
  text-align: left;
}
.target_section_elite .inner .class_area .schedule_table .topic .topic_title {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  line-height: 1;
  margin: 0 0 calc(0.625 * var(--remBasicSize));
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .schedule_table .topic .topic_title {
    font-size: calc(1.75 * var(--remBasicSize));
    letter-spacing: 0em;
  }
}
.target_section_elite .inner .class_area .schedule_table .topic .topic_desc {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.65;
  color: #3a3a3a;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .class_area .schedule_table .topic .topic_desc {
    font-size: calc(1.625 * var(--remBasicSize));
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.target_section_elite .inner .join_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(28.75 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .join_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(40.625 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .join_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_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: #fc6c0f;
}
.target_section_elite .inner .join_area .title_h3 {
  position: relative;
  display: block;
  color: #fc6c0f;
  font-size: calc(2.8125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .join_area .title_h3 {
    font-size: calc(2.375 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_area .title_h4 {
  position: relative;
  display: block;
  color: #000;
  width: calc(46.875 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .join_area .title_h4 {
    margin: 0 auto;
    font-size: calc(1.75 * var(--remBasicSize));
    width: calc(39.25 * var(--remBasicSize));
    margin-bottom: calc(1.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_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) {
  .target_section_elite .inner .join_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_elite .inner .join_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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_elite .inner .join_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_area .benefits_list li .text-bold {
  font-weight: 600;
}
.target_section_elite .inner .join_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;
}
.target_section_elite .inner .join_area .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(20.625 * 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) {
  .target_section_elite .inner .join_area .btn_run {
    top: calc(33.125 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.target_section_elite .inner .join_area .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.target_section_elite .inner .join_area .btn_run:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

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

      週末 Chill 練班

-------------------------*/
.target_section_chill {
  position: relative;
  width: 100%;
  min-height: calc(187.5 * var(--remBasicSize));
  scroll-margin-top: calc(5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(275 * var(--remBasicSize));
  }
}
.target_section_chill .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(187.5 * var(--remBasicSize));
  background-color: #fff;
  border-radius: calc(7.5 * var(--remBasicSize));
  /*--- 標題說明 ---*/
  /*--- 教練 ---*/
  /*--- 助教 ---*/
  /*--- 課程好禮 ---*/
  /*--- CLASS PLAN ---*/
  /*--- 立即報名 ---*/
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(275 * var(--remBasicSize));
    border-radius: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .title_area {
  position: relative;
  margin: 0 auto;
  top: calc(2.5 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(15.625 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .title_area {
    min-height: calc(21.875 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .title_area .dec_flag {
  position: absolute;
  margin: 0 auto;
  top: calc(-4.375 * var(--remBasicSize));
  left: calc(3.75 * var(--remBasicSize));
  width: calc(8.0625 * var(--remBasicSize));
  height: calc(7.75 * var(--remBasicSize));
  z-index: 2;
  transform: scaleX(-1);
  background: url(../images/team/info/flag.png) center/contain no-repeat;
}
.target_section_chill .inner .title_area .big_title {
  position: relative;
  display: inline-block;
  z-index: 1;
  align-items: center;
  color: #fc6c0f;
  font-size: calc(3.125 * var(--remBasicSize));
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.target_section_chill .inner .title_area .big_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(28.0625 * var(--remBasicSize));
  bottom: 30%;
  height: calc(0.875 * var(--remBasicSize));
  background-color: #ffd6bb;
  z-index: -1;
}
.target_section_chill .inner .title_area p.txt {
  position: relative;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  text-align: center;
  color: #000;
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: calc(2.0625 * var(--remBasicSize));
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .title_area p.txt {
    top: calc(1.875 * var(--remBasicSize));
    width: calc(39.0625 * var(--remBasicSize));
    text-align: justify;
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
  }
}
.target_section_chill .inner .title_area p.txt span {
  display: block;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .title_area p.txt span {
    display: inline-block;
  }
}
.target_section_chill .inner .coach_area {
  position: relative;
  margin: 0 auto;
  width: calc(68.75 * var(--remBasicSize));
  min-height: calc(31.25 * var(--remBasicSize));
  margin-bottom: calc(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(61.25 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .title_area {
  position: relative;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(11.5625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .title_area {
    top: calc(0.625 * var(--remBasicSize));
    min-height: calc(18.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .title_area .h1 {
  position: absolute;
  top: calc(4.0625 * var(--remBasicSize));
  right: calc(10 * var(--remBasicSize));
  font-size: calc(2.8125 * var(--remBasicSize));
  color: #fc6c0f;
}
.target_section_chill .inner .coach_area .title_area .h2 {
  position: absolute;
  top: calc(8.125 * var(--remBasicSize));
  right: calc(6.25 * var(--remBasicSize));
  font-size: calc(1.75 * var(--remBasicSize));
  color: #000;
}
.target_section_chill .inner .coach_area .title_area .h2 span {
  display: none;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .title_area .h2 {
    top: calc(7.5 * var(--remBasicSize));
    font-size: calc(2.25 * var(--remBasicSize));
    right: calc(3.75 * var(--remBasicSize));
    text-align: left;
    line-height: calc(2.75 * var(--remBasicSize));
  }
  .target_section_chill .inner .coach_area .title_area .h2 span {
    display: block;
  }
}
.target_section_chill .inner .coach_area .title_area .ellerunteam_dec {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  right: calc(6.25 * var(--remBasicSize));
  width: calc(13.4375 * var(--remBasicSize));
  height: calc(6.34375 * var(--remBasicSize));
  background: url(../images/team/info/ellerunteam_dec.png) center/contain no-repeat;
}
.target_section_chill .inner .coach_area .title_area .dec_kv_l {
  position: absolute;
  margin: 0 auto;
  display: block;
  top: calc(26.25 * var(--remBasicSize));
  right: calc(7.5 * var(--remBasicSize));
  width: calc(10.9375 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background: url(../images/team/info/dec_kv_l.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .title_area .dec_kv_l {
    top: calc(18.75 * var(--remBasicSize));
    right: calc(5 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .title_area .social_buttons {
  display: flex;
  justify-content: center;
  position: absolute;
  top: calc(8.125 * var(--remBasicSize));
  right: calc(0.875 * var(--remBasicSize));
  gap: calc(0.625 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .title_area .social_buttons {
    top: calc(14.375 * var(--remBasicSize));
    right: calc(18.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .title_area .social_btn {
  width: calc(2.0625 * var(--remBasicSize));
  height: calc(2.0625 * var(--remBasicSize));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .title_area .social_btn {
    width: calc(2.8125 * var(--remBasicSize));
    height: calc(2.8125 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .title_area .social_btn:hover {
  transform: translateY(calc(-0.125 * var(--remBasicSize)));
}
.target_section_chill .inner .coach_area .title_area .social_btn.ig {
  background: url(../images/team/info/btn_ig.png) center/contain no-repeat;
}
.target_section_chill .inner .coach_area .title_area .social_btn.fb {
  background: url(../images/team/info/btn_fb.png) center/contain no-repeat;
}
.target_section_chill .inner .coach_area .coach_pic {
  position: absolute;
  margin: 0 auto;
  top: calc(5.5 * var(--remBasicSize));
  left: calc(7.5 * var(--remBasicSize));
  width: calc(16.75 * var(--remBasicSize));
  height: calc(20.09375 * var(--remBasicSize));
  z-index: 2;
  background: url(../images/team/info/coach_pic_edison.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .coach_pic {
    top: calc(8.75 * var(--remBasicSize));
    left: calc(3.125 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .coach_info_area {
  position: absolute;
  top: calc(13.25 * var(--remBasicSize));
  right: calc(13.75 * var(--remBasicSize));
  width: calc(28.75 * var(--remBasicSize));
  min-height: calc(13.75 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .coach_info_area {
    position: relative;
    margin: 0 auto;
    width: calc(39.25 * var(--remBasicSize));
    min-height: calc(21.875 * var(--remBasicSize));
    top: calc(11.875 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .coach_info_area p.txt {
  width: calc(28.75 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: calc(1.75 * var(--remBasicSize));
  color: #000;
  font-weight: 300;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .coach_info_area p.txt {
    width: calc(39.25 * var(--remBasicSize));
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
    letter-spacing: calc(0.0625 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .coach_info_area .dec_kv_r {
  position: absolute;
  margin: 0 auto;
  top: calc(-16.25 * var(--remBasicSize));
  right: calc(-9.375 * var(--remBasicSize));
  width: calc(10.9375 * var(--remBasicSize));
  height: calc(7.9375 * var(--remBasicSize));
  background: url(../images/team/info/dec_kv_r.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .coach_info_area .dec_kv_r {
    top: calc(29.375 * var(--remBasicSize));
    right: calc(-1.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .coach_area .orange_section {
  position: absolute;
  display: block;
  width: calc(68.75 * var(--remBasicSize));
  height: calc(17.9375 * var(--remBasicSize));
  overflow: hidden;
  background-color: #fc6c0f;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .coach_area .orange_section {
    width: calc(46.875 * var(--remBasicSize));
    height: calc(45.3125 * var(--remBasicSize));
    background-color: transparent;
    top: calc(17.5 * var(--remBasicSize));
    background: url(../images/team/info/elite_bg_m.png) center/contain no-repeat;
    transform: scaleX(-1);
  }
}
.target_section_chill .inner .assi_coach_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(21.875 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(51.25 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .title_area {
  position: absolute;
  margin: 0 auto;
  top: calc(0 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(11.5625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area {
    top: calc(0.625 * var(--remBasicSize));
    min-height: calc(18.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .title_area .h2 {
  position: absolute;
  top: calc(1.25 * var(--remBasicSize));
  right: calc(5.625 * var(--remBasicSize));
  font-size: calc(1.75 * var(--remBasicSize));
  color: #000;
}
.target_section_chill .inner .assi_coach_area .title_area .h2 span {
  display: none;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area .h2 {
    top: calc(7.5 * var(--remBasicSize));
    font-size: calc(2.25 * var(--remBasicSize));
    right: calc(6.875 * var(--remBasicSize));
    text-align: left;
    line-height: calc(2.75 * var(--remBasicSize));
  }
  .target_section_chill .inner .assi_coach_area .title_area .h2 span {
    display: block;
  }
}
.target_section_chill .inner .assi_coach_area .title_area .social_buttons {
  display: flex;
  justify-content: center;
  position: absolute;
  top: calc(16.625 * var(--remBasicSize));
  left: calc(12.25 * var(--remBasicSize));
  gap: calc(0.625 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area .social_buttons {
    top: calc(14.375 * var(--remBasicSize));
    right: calc(10 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .title_area .social_btn {
  width: calc(2.0625 * var(--remBasicSize));
  height: calc(2.0625 * var(--remBasicSize));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area .social_btn {
    width: calc(2.8125 * var(--remBasicSize));
    height: calc(2.8125 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .title_area .social_btn:hover {
  transform: translateY(calc(-0.125 * var(--remBasicSize)));
}
.target_section_chill .inner .assi_coach_area .title_area .social_btn.ig {
  background: url(../images/team/info/btn_ig.png) center/contain no-repeat;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area .social_btn.ig {
    filter: brightness(0) invert(0);
  }
}
.target_section_chill .inner .assi_coach_area .title_area .social_btn.fb {
  background: url(../images/team/info/btn_fb.png) center/contain no-repeat;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .title_area .social_btn.fb {
    filter: brightness(0) invert(0);
  }
}
.target_section_chill .inner .assi_coach_area .coach_pic {
  position: absolute;
  margin: 0 auto;
  top: calc(1.25 * var(--remBasicSize));
  left: calc(1.25 * var(--remBasicSize));
  width: calc(16.5625 * var(--remBasicSize));
  height: calc(18.125 * var(--remBasicSize));
  z-index: 1;
  background: url(../images/team/info/coach_pic_kiki.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .coach_pic {
    top: calc(0 * var(--remBasicSize));
    left: calc(2.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .coach_info_area {
  position: absolute;
  top: calc(5 * var(--remBasicSize));
  right: calc(3.75 * var(--remBasicSize));
  width: calc(23.75 * var(--remBasicSize));
  min-height: calc(13.75 * var(--remBasicSize));
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .coach_info_area {
    position: relative;
    margin: 0 auto;
    width: calc(35.625 * var(--remBasicSize));
    min-height: calc(21.875 * var(--remBasicSize));
    top: calc(21.875 * var(--remBasicSize));
    right: calc(0 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .coach_info_area p.txt {
  width: calc(23.75 * var(--remBasicSize));
  font-size: calc(1 * var(--remBasicSize));
  line-height: calc(1.75 * var(--remBasicSize));
  color: #000;
  font-weight: 300;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .coach_info_area p.txt {
    width: calc(35.625 * var(--remBasicSize));
    font-size: calc(1.75 * var(--remBasicSize));
    line-height: calc(2.625 * var(--remBasicSize));
    letter-spacing: calc(0.0625 * var(--remBasicSize));
  }
}
.target_section_chill .inner .assi_coach_area .orange_section {
  position: absolute;
  display: block;
  top: calc(3.75 * var(--remBasicSize));
  width: calc(46.875 * var(--remBasicSize));
  height: calc(17.9375 * var(--remBasicSize));
  overflow: hidden;
  background-color: #fc6c0f;
  border-radius: 0 calc(7.5 * var(--remBasicSize)) 0 calc(7.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .assi_coach_area .orange_section {
    width: calc(41.25 * var(--remBasicSize));
    height: calc(30.3125 * var(--remBasicSize));
    top: calc(20 * var(--remBasicSize));
    left: 50%;
    transform: translateX(-50%);
  }
}
.target_section_chill .inner .gift_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(26.25 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .gift_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(31.875 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .gift_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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .gift_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .gift_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: #fc6c0f;
}
.target_section_chill .inner .gift_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) {
  .target_section_chill .inner .gift_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .gift_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_chill .inner .gift_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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .gift_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .gift_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;
}
.target_section_chill .inner .gift_area .gift_list {
  width: calc(46.875 * var(--remBasicSize));
  height: calc(11.25 * var(--remBasicSize));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
}
.target_section_chill .inner .gift_area .gift {
  width: calc(11.25 * var(--remBasicSize));
  height: calc(11.25 * var(--remBasicSize));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.target_section_chill .inner .gift_area .gift:nth-child(1) {
  background-image: url(../images/team/info/gift_elite_1.png);
}
.target_section_chill .inner .gift_area .gift:nth-child(2) {
  background-image: url(../images/team/info/gift_elite_2.png);
}
.target_section_chill .inner .gift_area .gift:nth-child(3) {
  background-image: url(../images/team/info/gift_elite_3.png);
}
.target_section_chill .inner .gift_area .gift:nth-child(4) {
  background-image: url(../images/team/info/gift_elite_4.png);
}
.target_section_chill .inner .class_area {
  position: relative;
  margin: 0 auto;
  width: calc(50 * var(--remBasicSize));
  min-height: calc(39.375 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
  /*--- 行程表 ---*/
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(61.25 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.target_section_chill .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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_chill .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: #fc6c0f;
}
.target_section_chill .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) {
  .target_section_chill .inner .class_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_chill .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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .benefits_list li .text-bold {
  font-weight: 600;
}
.target_section_chill .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;
}
.target_section_chill .inner .class_area .schedule_wrap {
  width: calc(46.875 * var(--remBasicSize));
  margin: 0 auto;
}
.target_section_chill .inner .class_area .schedule_scroll {
  width: calc(46.875 * var(--remBasicSize));
}
.target_section_chill .inner .class_area .schedule_table {
  width: 100%;
  min-width: calc(46.875 * var(--remBasicSize));
  border-collapse: collapse;
  background-color: #fff7f1;
  color: #000;
}
.target_section_chill .inner .class_area .schedule_table th,
.target_section_chill .inner .class_area .schedule_table td {
  border: 1px solid #fc6c0f;
  padding: calc(0.9375 * var(--remBasicSize)) calc(0.625 * var(--remBasicSize));
  vertical-align: middle;
}
.target_section_chill .inner .class_area .schedule_table thead th {
  background-color: #ffd6bb;
  font-size: calc(1.125 * var(--remBasicSize));
  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) {
  .target_section_chill .inner .class_area .schedule_table thead th {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .schedule_table .col_stage {
  width: calc(7.5 * var(--remBasicSize));
}
.target_section_chill .inner .class_area .schedule_table .col_place {
  width: calc(7.5 * var(--remBasicSize));
}
.target_section_chill .inner .class_area .schedule_table .col_topic {
  width: auto;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .schedule_table .col_stage {
    width: calc(6.25 * var(--remBasicSize));
  }
  .target_section_chill .inner .class_area .schedule_table .col_place {
    width: calc(9 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .schedule_table .stage {
  text-align: center;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .schedule_table .stage {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .schedule_table .place {
  text-align: center;
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .schedule_table .place {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .class_area .schedule_table .topic {
  text-align: left;
}
.target_section_chill .inner .class_area .schedule_table .topic .topic_title {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 600;
  line-height: 1;
  margin: 0 0 calc(0.625 * var(--remBasicSize));
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .schedule_table .topic .topic_title {
    font-size: calc(1.75 * var(--remBasicSize));
    letter-spacing: 0em;
  }
}
.target_section_chill .inner .class_area .schedule_table .topic .topic_desc {
  font-size: calc(1.125 * var(--remBasicSize));
  font-weight: 300;
  line-height: 1.65;
  color: #3a3a3a;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .class_area .schedule_table .topic .topic_desc {
    font-size: calc(1.625 * var(--remBasicSize));
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.target_section_chill .inner .join_area {
  position: relative;
  margin: 0 auto;
  width: calc(46.875 * var(--remBasicSize));
  min-height: calc(28.75 * var(--remBasicSize));
  margin-bottom: calc(4.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .join_area {
    width: calc(46.875 * var(--remBasicSize));
    min-height: calc(40.625 * var(--remBasicSize));
    margin-bottom: calc(6.25 * var(--remBasicSize));
    top: calc(-6.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_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(3.125 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .join_area .title_h2 {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_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: #fc6c0f;
}
.target_section_chill .inner .join_area .title_h3 {
  position: relative;
  display: block;
  color: #fc6c0f;
  font-size: calc(2.8125 * var(--remBasicSize));
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .join_area .title_h3 {
    font-size: calc(2.375 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_area .title_h4 {
  position: relative;
  display: block;
  color: #000;
  width: calc(46.875 * var(--remBasicSize));
  font-size: calc(1.125 * var(--remBasicSize));
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
  margin-bottom: calc(1.25 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .join_area .title_h4 {
    margin: 0 auto;
    font-size: calc(1.75 * var(--remBasicSize));
    width: calc(39.25 * var(--remBasicSize));
    margin-bottom: calc(1.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_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) {
  .target_section_chill .inner .join_area .benefits_section {
    width: calc(39.25 * var(--remBasicSize));
    max-width: calc(39.25 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_area .benefits_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(0.875 * var(--remBasicSize));
}
.target_section_chill .inner .join_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: 300;
}
@media screen and (max-width: 750px) {
  .target_section_chill .inner .join_area .benefits_list li {
    font-size: calc(1.75 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_area .benefits_list li .text-bold {
  font-weight: 600;
}
.target_section_chill .inner .join_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;
}
.target_section_chill .inner .join_area .btn_run {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(0.625 * var(--remBasicSize));
  left: 50%;
  top: calc(20.625 * 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) {
  .target_section_chill .inner .join_area .btn_run {
    top: calc(33.125 * var(--remBasicSize));
    width: calc(23.75 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
    font-size: calc(1.875 * var(--remBasicSize));
  }
}
.target_section_chill .inner .join_area .btn_run .arrow {
  margin-left: calc(0.5 * var(--remBasicSize));
  display: inline-block;
  font-size: calc(0.875 * var(--remBasicSize));
  animation: arrowMoving 1s infinite;
}
.target_section_chill .inner .join_area .btn_run:hover {
  background-color: #e32f2f;
}
@keyframes arrowMoving {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}/*# sourceMappingURL=team.css.map */