@charset "UTF-8";

/* theme deep blue #11377e */
/* montain back #24264c */
/* high light yellow #ffde4d */
/* pink link #ff61dd */
/* footer bg blue #2286C2 */

:root {}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/* layout */
* {
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans", "Microsoft JhengHei", "微軟正黑體", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #212121;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #212121;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  body {
    min-height: 100%;
    background-color: #ffffff;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.6;
}

h1 {
  font-size: 46px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
  font-weight: 600;
}

h6 {
  font-size: 22px;
  font-weight: 600;
}

strong {
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 2px;
}

p:last-child {
  margin-bottom: 0px;
}

small {
  font-weight: inherit;
}

ul {
  list-style: none;
  line-height: 1.9;
  font-size: 16px;
}

.ol {
  padding-left: 1.5em;
}

.ul {
  padding-left: 18px;
  position: relative;
}

.ul li {
  position: relative;
}

.ul li:before {
  content: "•";
  position: absolute;
  font-size: 20px;
  left: -1rem;
  line-height: 1.6;
  color: #4B3F72;
}

a {
  transition: all 0.3s ease;
  color: var(--theme500);
}

a:focus,
a:hover {
  color: var(--theme700);
  text-decoration: none;
}

button,
.btn {
  color: #4B3F72;
  text-decoration: none;
  margin: 20px 0;
  font-size: 20px;
  font-weight: bolder;
  transform: translateY(0);
  transition: all 0.3s ease;
}

button:focus,
button:hover,
.btn:focus,
.btn:hover {
  color: #4B3F72;
  transform: translateY(3px);
}


section,
header,
nav,
footer {
  position: relative;
}

section {
  padding: 3% 0% 3% 0%;
  margin: 0;
}

section .ul li,
section .ol li {
  margin-bottom: 0.3rem;
}

@media (max-width: 767px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 10px 0;
    font-weight: 500;
  }

  h1,
  h2,
  h3 {
    /* line-height: 1.6; */
  }

  h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 28px;
    margin: 1%;
  }

  h3 {
    font-size: 24px;
    margin: 1%;
  }

  h4 {
    font-size: 20px;
    margin: 1%;
  }

  h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 1%;
  }

  h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 1%;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  p:last-child {
    margin-bottom: 0px;
  }

  strong {
    font-weight: 700;
  }

  small {
    font-weight: inherit;
  }

  ul {
    list-style: none;
    line-height: 1.9;
  }

  .ol {
    padding-left: 1.5em;
  }

  .ul {
    padding-left: 18px;
    position: relative;
  }

  .ul li {
    position: relative;
  }

  .ul li:before {
    content: "•";
    position: absolute;
    font-size: 20px;
    left: -1rem;
    line-height: 1.6;
    color: #4B3F72;
  }

  a {
    transition: all 0.3s ease;
    color: var(--theme500);
  }

  a:focus,
  a:hover {
    color: var(--theme700);
    text-decoration: none;
  }

  button,
  .btn {
    color: #4B3F72;
    text-decoration: none;
    margin: 20px 0;
    font-size: 20px;
    font-weight: bolder;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  button:focus,
  button:hover,
  .btn:focus,
  .btn:hover {
    color: #4B3F72;
    transform: translateY(3px);
  }


  section,
  header,
  nav,
  footer {
    position: relative;
  }

  section {
    padding: 60px 0 30px 0;
  }


}

/* layout */




/* 共用 utilities */
.title {
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  margin: 1rem 0 1.5rem;
}


.main-heading {
  position: relative;
  padding: 10px;
  color: #11377E;
  max-width: 450px;
  display: block;
  margin: 1.5rem auto;
}

.main-heading::before,
.main-heading::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 100%;
  border: 5px solid #00BCD0;
  box-sizing: border-box;
  content: '';
}

.main-heading::before {
  top: 0;
  left: 0;
  border-right: none;
}

.main-heading::after {
  bottom: 0;
  right: 0;
  border-left: none;
}

.highlight {
  color: #9d5a1e;
}

.desc {
  font-size: 18px;
}

.text-note {
  color: #676767;
}

.text-blue {
  color: #38618F
}

.gotop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background-color: #ffffff;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 999;
  transition: all 0.3s ease;
}

.gotop:hover {
  opacity: 1;
}

@media (max-width: 767px) {

  .title {
    font-weight: 500;
    font-size: 2rem;
    margin: 1rem 0 1.5rem;
  }

  .desc {
    font-size: 17px;
  }


}

.btn-mian {
  margin-top: 2.5rem;
  background-image: linear-gradient(144deg,#874FBC, #81A3FF 50%,#6DFACD);
  border: 0;
  border-radius: 25px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  line-height: 2rem;
  font-size: 25px;
  padding: 3px;
  transition: all .3s;
 }
 
 .btn-mian:active,
 .btn-mian:hover {
  outline: 0;
 }
 
 .btn-mian span {
  text-align: center;
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: 300ms;
 }
 
 .btn-mian:hover span {
  background: none;
 }
 
 .btn-mian:active {
  transform: scale(0.9);
 }


/* 共用 utilities */




/* kv */

.mastkv {
  display: flex;  
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  background-size: cover !important;
  background: linear-gradient(to bottom, rgba(17, 55, 126, 0) 0%, rgba(17, 55, 126, 0) 35%, rgba(17, 55, 126, 1) 100%), url(/static/2023ironman/img/kv_bg.jpg) no-repeat center center scroll;
  padding-top: 3.5rem;
}

.mastkv_front {
  position: relative;
  bottom: 0;
  right: 2.5rem;
  padding: 0;
}

.mastkv_front img {
  width: 100%;
}

header.mastkv img {
  width: 65%;
}

.mastkv_main,
.main-logo {
  position: relative;
}



.mastkv_txt_date {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.mastkv_txt_date .date_signup,
.mastkv_txt_date .date_start {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 10px 20px;
  border-radius: 25px;
}

.mastkv_txt_date .date_signup {
  position: relative;

}

.mastkv_txt_date .date_signup span {
  color: #F9F871;
  position: relative;

}



.mastkv_txt_date .date_start span {
  color: #77FFC3;
}

.mastkv_txt_slogan {
  color: #ffffff;
  text-shadow: 0 0 3px #333;
}

.mastkv_txt_slogan {
  font-weight: 700;
  font-size: 40px;
  margin: 1rem 2rem 4rem;
}

.slogan {
  font-weight: 900;
  font-size: 40px;
}

.slogan span {
  font-size: 3.5rem;
  color: #81A3FF;
}

.mastkv_txt_slogan .desc {
  font-size: 18px;
  font-weight: 500;
}


@media (max-width: 992px) {

  .mastkv_ {
    height: 65vh;
  }

  .mastkv_main {
    bottom: -4rem;
  }

  .mastkv_front img {
    width: 45%;
  }

  .mastkv_txtbox {
    padding: 2% 15px 8%;
    position: relative;
    text-align: center;
    filter: drop-shadow(1px 1px 2px #fff);
  }

  .mastkv_txt_logo {
    font-size: 30px;
  }

  .mastkv_txt_logo .kv_logo span {
    font-size: 56px;
  }

  /* .mastkv_txt_date .date_signup span::before {
    font-size: 15px;
    width: 50px;
    left: -35px;
    transform: translate(-50%, -50%);
    padding: 3px 10px 3px;
  }

  .mastkv_txt_date .date_signup span::after {
    top: 12px;
    left: -20px;
    transform: rotate(45deg);
    border: 5px solid transparent;
    border-left: 10px solid #FF0000;

  } */

  .mastkv_txt_slogan .slogan {
    font-weight: 700;
    font-size: 24px;
    margin: 3% 0;
  }

}

/* @media (max-width: 992px) {*/

@media (max-width: 768px) {
  .mastkv_main {
    top: 0;
  }
}

@media (max-width: 576px) {
  .mastkv_front {
    right: 0;
  }

  header.mastkv img {
    width: 80%;
  }

  .mastkv_txt_slogan {
    margin-top: 6rem;
  }

  .mastkv_txt_slogan .slogan {
    font-size: 30px;
  }

  .mastkv_txt_date {
    font-size: 1.5rem;
  }

  .mastkv_txt_date .date_signup {
    margin-bottom: 15px;
  }
}

/* kv */

/* 動畫 */
.eff-box {
  font-weight: 500;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  background-color: rgba(235, 246, 255, 0.25);
  box-shadow: 0 20px 50px rgb(23, 32, 90);
  border: 2px solid #11377E;
  z-index: 10;
}

@media (max-width:576px) {
  .slogan, .eff-box{
    margin: 1rem;
  }
}

/* forword */
.section-forword {
  position: relative;
  background-color: #2C4790;
  color: #fff;
}


.forword .title {
  margin: 0.6rem 0 1.5rem;
  line-height: 1.4;
}

.forword-list {
  font-size: 18px;
}

.forword-list li {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.forword-list li .head {
  line-height: 1;
  margin-right: 1rem;
  margin: 5px 0;
}

.forword-list li time {
  color: #ffde4d;
  letter-spacing: 3px;
}

.forword-list li a {
  color: #ff61dd;
}

.forword-list li strong {
  font-size: 20px;
  background-color: #00FFFF;
  border-left: 4px solid #4F9D9C;
  padding: 8px 15px;
  color: #364B44;
  margin-right: 10px;
  float: left;
}

.forword-list>li ul li {
  margin-bottom: 1rem;
  vertical-align: text-top;
  line-height: 1.6;
}





/* 先鋒鐵人 */
.section-reserve {
  position: relative;
  background: linear-gradient(180deg, #4e9b1e 0%, #001475 90%);
  min-height: 500px;
  color: #fff;
}

.section-reserve .reserve-txtbox .ul,
.section-reserve .reserve-txtbox .ul li::before {
  color: #ffde4d;
}

.section-reserve .reserve-txtbox .btn-linear {
  background: linear-gradient(96.58deg, #FF6B00 20%, #FF5592 70%);
  color: #fff;
  padding: 8px 50px;
  border-radius: 10px;
}

.section-reserve .reserve-imgbox {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}






/* 鐵人賽回顧 */
.section-calc {
  /* background: url('../img/bg-calc.png') repeat top left/ 340px; */
  color: #000;
  background: radial-gradient(ellipse farthest-corner at center top, #6beace, #2e9aa4);
}

.calc-txtbox .title-calc {
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 60px;
  text-align: center;
}

.calc-txtbox .title-calc small {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffde4d;
  font-size: 42px;
  font-weight: 800;
  -webkit-text-stroke: 1px #000;
  text-shadow: 2px 2px 0px #000;
  position: relative;
  margin-left: 1rem;
  z-index: 1;
}

.calc-txtbox .title-calc small::before {
  content: '';
  background-color: #000;
  width: 110%;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 0px;
  left: -5%;
  z-index: -1;
}

.calc-numbox {
  text-align: center;
  padding: 20px;
}

.calc-num-badge {
  background-color: #000;
  color: #fff;
  padding: 3px 20px 2px;
  display: inline-block;
}

.calc-num {
  color: #ffde4d;
  font-size: 42px;
  font-weight: 800;
  -webkit-text-stroke: 2px #000;
}

.calc-num small {
  color: #000;
  letter-spacing: -2px;
  font-size: 50%;
  -webkit-text-stroke-width: 0px;
}

@media (max-width:767px) {
  .calc-txtbox .title-calc {
    font-size: 50px;
  }

  .calc-txtbox .title-calc small {
    font-size: 38px;
    margin-left: 0.5rem
  }
}







/* 8 大熱門主題 2 大技術推廣 鐵人賽系列叢書 精彩一刻 */
.section-topic {
  /* background-color: #E6F4F1; */
  background: url('/static/2023ironman/img/bgdeco.png');
}

.section-topic .container {
  padding: 2% 0;
}

.title-quote {
  background: #844DB9;
  padding: 5px 50px;
  margin: 4% 2% 3%;
  border-radius: 30px;
  color: #fff;
  position: relative;
  display: inline-block;
  min-width: 350px;
}

.title-quote::after {
  content: '';
  border: 20px solid transparent;
  border-bottom: 15px solid #844DB9;
  border-left: 15px solid #844DB9;
  position: absolute;
  bottom: -15px;
  right: 35px;
  transform: rotate(230deg);
}

.topic-group {
  padding: 20px;
  background-color: rgba(247, 248, 255, 0.9);
  border-radius: 10px;
  border: 2px #5CECBF solid;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.topic-group .topic-link {
  padding: 10px;
  text-align: left;

}

/*.topic-group .topic-link:hover, .topic-group .topic-link:focus {
  background-color: #844DB94d;
}*/

.topic-group .topic-link .img {
  max-width: 50px;
}

.topic-group .topic-name {
  padding: 10px;
  display: inline-block;
  font-size: 18px;
  text-align: left;
}

.topic-txt {
  font-size: 16px;
  text-align: justify;
  padding: 18px;
  border-top: 2px #81A3FF dotted;
  margin-top: 20px;
  color: #333;
}


.topic-skill-container {
  text-align: center;
}

.btn-skill {
  color: #113565;
  display: inline-block;
}

.btn-skill span {
  border-bottom: 2px solid #113565;
}

.btn-skill i {
  font-size: 30px;
  margin-bottom: -5px;
}


.book-text-num span {
  font-size: 40px;
  color: #FF6B00;
}

.carousel-hitory-box {
  position: relative;
}

.carousel-hitory {
  padding-bottom: 50px;
}

.carousel-hitory .swiper-slide img {
  width: 100%;
}

.carousel-hitory .swiper-pagination {}

.carousel-hitory .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

@media (max-width: 1199px) {
  .topic-group .topic-link {
    text-align: center;
  }

  .topic-group .topic-name {
    display: block;
    text-align: center;
  }
}



.section-partners {
  /*background: linear-gradient(#ffffff99, #ffffff99), url('../img/bg-grid.jpg') repeat center /1024px;*/
  padding: 5% 0 8%;
}

.title-partners {
  margin: 20px 0;
}

.subtitle-partners {
  margin: 20px 0;
}

.subtitle-partners::before {
  content: '';
  background-color: #2286C2;
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
}

.partners-box {
  background-color: #fff;
  padding: 10px 20px;
}

.partners-box img {
  width: 100%;
}




/* footer */
.footer {
  background-color: #2286C2;
  color: #fff;
  padding: 3% 0 4%;
}

.footer-box {
  color: #71c9ff;
}

.footer-box a {
  font-weight: 300;
  color: #fff;
}

.footer-box a:hover {
  color: #ffde4d;
}

.title-footer .logo {
  max-width: 280px;
}




/* sidebar */
.sidebar {
  position: fixed;
  z-index: 999;
  bottom: 120px;
  right: -2px;
}

.sidebar .wish {
  background-color: #ffde4d;
  border: 2px solid #000;
  border-radius: 10px 0 0 10px;
  padding: 10px 15px;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 800;
}





/* RWD for phone */