@charset "UTF-8";
* {
  text-decoration: none;
  list-style: none;
}

html,
body {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  scroll-behavior: smooth;
}

nav {
  width: 100%;
  position: relative;
  position: fixed;
  z-index: 9;
}

nav .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .container .logo_icon img {
  display: block;
  width: 70px;
}

@media screen and (max-width: 1200px) {
  nav .container .logo_icon img {
    width: 95px;
  }
}

@media screen and (max-width: 1000px) {
  nav .container .logo_icon img {
    display: none;
  }
}

nav .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 3px;
}

@media screen and (max-width: 1200px) {
  nav .container ul {
    display: none;
  }
}

nav .container ul li {
  width: 100px;
  text-align: center;
  padding: 0;
  position: relative;
}

nav .container ul li a {
  color: white;
  width: 110px;
  line-height: 55px;
  display: block;
  font-weight: bold;
}

nav .container ul li a:hover {
  color: #00b8ff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

nav .container .scrolled {
  opacity: 0.7;
  background-color: black;
}

nav .container .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  position: absolute;
  right: 40px;
}

@media screen and (max-width: 1200px) {
  nav .container .icon {
    display: none;
  }
}

nav .container .icon a:hover {
  opacity: 0.8;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

nav .container .icon img {
  width: 50px;
  height: 30px;
}

nav #menu {
  width: 70px;
  height: 70px;
}

nav #menu .hamburger {
  display: none;
  width: 60px;
  height: 60px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  nav #menu .hamburger {
    display: block;
    position: absolute;
    right: 10px;
    width: 50px;
  }
}

nav #menu .hamburger .line {
  width: 50px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  background-color: white;
}

@media screen and (max-width: 1000px) {
  nav #menu .hamburger .line {
    width: 45px;
    height: 6px;
  }
}

nav #menu .hamburger:hover .line_A {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: transform, top;
  transition-property: transform, top, -webkit-transform;
  -webkit-transition-duration: 0.5s, 0.1s;
          transition-duration: 0.5s, 0.1s;
}

nav #menu .hamburger:hover .line_B {
  opacity: 0;
}

nav #menu .hamburger:hover .line_C {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: transform, top;
  transition-property: transform, top, -webkit-transform;
  -webkit-transition-duration: 0.5s, 0.1s;
          transition-duration: 0.5s, 0.1s;
}

nav #menu .hamburger .line_A {
  top: 25%;
}

nav #menu .hamburger .line_C {
  top: 75%;
}

nav #menu .hamburger .line_C:hover {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: transform, top;
  transition-property: transform, top, -webkit-transform;
  -webkit-transition-duration: 0.5s, 0.1s;
          transition-duration: 0.5s, 0.1s;
}

.mobile_navbar .mobile_navbar_nav {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #050505;
  top: 0;
  margin: 0;
  opacity: 0.9;
}

.mobile_navbar .mobile_navbar_nav .close_nav {
  color: white;
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  width: 30px;
  font-size: 20px;
  line-height: 30px;
  border: 1px solid white;
}

.mobile_navbar .mobile_navbar_nav .mobile_item {
  text-align: center;
  line-height: 50px;
}

.mobile_navbar .mobile_navbar_nav .mobile_item a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 10px;
}

.mobile_navbar .mobile_navbar_nav .mobile_item a:hover {
  color: #fc2828;
}

.mobile_navbar .mobile_navbar_nav.active {
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .mobile_navbar .mobile_navbar_nav.active {
    display: block;
    z-index: 100;
  }
}

#section_C {
  width: 100%;
}

#section_C .swiper_banner {
  width: 100%;
  height: auto;
}

#section_C .swiper_banner .swiper-wrapper {
  width: 100%;
}

#section_C .swiper_banner .swiper-wrapper img {
  max-width: 100%;
  width: 100%;
  display: block;
}

@media screen and (max-width: 1600px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 80vh;
  }
}

@media screen and (max-width: 1500px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 75vh;
  }
}

@media screen and (max-width: 1400px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 70vh;
  }
}

@media screen and (max-width: 1300px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 65vh;
  }
}

@media screen and (max-width: 1200px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 60vh;
  }
}

@media screen and (max-width: 1050px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 50vh;
  }
}

@media screen and (max-width: 950px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 45vh;
  }
}

@media screen and (max-width: 850px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 40vh;
  }
}

@media screen and (max-width: 750px) {
  #section_C .swiper_banner .swiper-wrapper img {
    height: 35vh;
  }
}

#section_C .swiper_banner .swiper_pagination {
  text-align: center;
  z-index: 30;
  position: absolute;
}

#section_C .swiper_banner .swiper_pagination .swiper-pagination-bullet {
  background-color: black;
  padding: 2px;
}

#section_C .swiper_banner .swiper_pagination {
  color: white;
}

#section_C .swiper_banner .arrow_button {
  color: #fff;
}

#text_scop .container {
  max-width: 1000px;
  margin: 0 auto;
}

#text_scop .container .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  #text_scop .container .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#text_scop .container .wrap p {
  width: 80%;
  text-align: justify;
  letter-spacing: 2px;
  line-height: 30px;
  font-size: 16px;
}

#text_scop .container .wrap .btn {
  width: 20%;
}

#text_scop .container .wrap .btn p {
  width: 120px;
  margin: 0 auto;
  background-color: black;
  color: white;
  text-align: center;
  line-height: 30px;
}

#parallax {
  width: 100%;
}

#parallax .photo {
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 50vh;
}

@media screen and (max-width: 1200px) {
  #parallax {
    display: none;
  }
}

#section_A {
  width: 100%;
  height: auto;
  background-color: black;
}

#section_A .swiper_New {
  width: 90%;
  height: auto;
  padding: 4% 0;
}

@media screen and (max-width: 1200px) {
  #section_A .swiper_New {
    width: 95%;
  }
}

#section_A .swiper_New h1 {
  letter-spacing: 3px;
  text-align: center;
  margin: 0;
  padding: 0;
  color: white;
  line-height: 30px;
}

#section_A .swiper_New h1 hr {
  width: 110px;
}

#section_A .swiper_New h2 {
  color: white;
  letter-spacing: 3px;
  text-align: center;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  line-height: 30px;
}

#section_A .swiper_New .swiper_wrap {
  width: 100%;
}

#section_A .swiper_New .swiper_wrap .banner_photo {
  width: 100%;
}

#section_A .swiper_New .swiper_wrap .banner_photo .big_title_text {
  width: 100%;
  letter-spacing: 3px;
}

#section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
  width: 100%;
  height: 30vh;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 50vh;
  }
}

@media screen and (max-width: 1095px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 45vh;
  }
}

@media screen and (max-width: 1000px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 40vh;
  }
}

@media screen and (max-width: 899px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 60vh;
  }
}

@media screen and (max-width: 700px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 50vh;
  }
}

@media screen and (max-width: 560px) {
  #section_A .swiper_New .swiper_wrap .banner_photo .big_title_text img {
    height: 40vh;
  }
}

#section_A .swiper_New .swiper_wrap .banner_photo .big_title_text .text_A {
  margin: 0;
  text-align: justify;
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}

#section_A .swiper_New .swiper_wrap .banner_photo .big_title_text .btn {
  display: inline-block;
  color: white;
  line-height: 40px;
  border: solid 1px white;
  text-align: center;
  width: 80px;
  height: 40px;
  cursor: pointer;
}

#section_A .swiper_New .swiper_wrap .banner_photo .big_title_text .btn:hover {
  border: solid 1px black;
  background-color: white;
  color: black;
}

#section_B {
  width: 100%;
}

#section_B .main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1300px) {
  #section_B .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#section_B .main .free {
  width: 100%;
  position: relative;
}

#section_B .main .free .free_text {
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section_B .main .free .free_text h1 {
  color: white;
}

#section_B .main .free .free_text a .btn {
  text-align: center;
  padding: 10px;
  border: solid 1px white;
  color: white;
}

#section_B .main .free .free_text a .btn:hover {
  background-color: black;
  border: solid 1px black;
}

#section_B .main .free img {
  width: 100%;
  height: 800px;
  display: block;
}

@media screen and (max-width: 1900px) {
  #section_B .main .free img {
    height: 700px;
  }
}

@media screen and (max-width: 1600px) {
  #section_B .main .free img {
    height: 500px;
  }
}

@media screen and (max-width: 1300px) {
  #section_B .main .free img {
    height: 800px;
  }
}

@media screen and (max-width: 940px) {
  #section_B .main .free img {
    height: 600px;
  }
}

@media screen and (max-width: 700px) {
  #section_B .main .free img {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  #section_B .main .free img {
    height: 450px;
  }
}

@media screen and (max-width: 530px) {
  #section_B .main .free img {
    height: 400px;
  }
}

@media screen and (max-width: 450px) {
  #section_B .main .free img {
    height: 300px;
  }
}

@media screen and (max-width: 400px) {
  #section_B .main .free img {
    height: 250px;
  }
}

#section_B .main .content {
  width: 100%;
}

#section_B .main .content .introduction_t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_t {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#section_B .main .content .introduction_t .box_t_A {
  width: 50%;
  height: 400px;
  position: relative;
}

@media screen and (max-width: 1900px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 350px;
  }
}

@media screen and (max-width: 1600px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 250px;
  }
}

@media screen and (max-width: 1300px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 400px;
  }
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_t .box_t_A {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 550px;
  }
}

@media screen and (max-width: 800px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 450px;
  }
}

@media screen and (max-width: 700px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 350px;
  }
}

@media screen and (max-width: 375px) {
  #section_B .main .content .introduction_t .box_t_A {
    height: 280px;
  }
}

#section_B .main .content .introduction_t .box_t_A img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  cursor: pointer;
}

#section_B .main .content .introduction_t .box_t_A img:hover {
  opacity: 1;
}

#section_B .main .content .introduction_t .box_t_A .text_content_A {
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section_B .main .content .introduction_t .box_t_A .text_content_A h1 {
  color: white;
}

#section_B .main .content .introduction_t .box_t_A .text_content_A a .btn {
  text-align: center;
  padding: 10px;
  border: solid 1px white;
  color: white;
}

#section_B .main .content .introduction_t .box_t_A .text_content_A a .btn:hover {
  background-color: black;
  border: solid 1px black;
}

#section_B .main .content .introduction_t .box_t_B {
  width: 50%;
  height: 400px;
  background-color: gray;
  position: relative;
}

@media screen and (max-width: 1900px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 350px;
  }
}

@media screen and (max-width: 1600px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 250px;
  }
}

@media screen and (max-width: 1300px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 400px;
  }
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_t .box_t_B {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 550px;
  }
}

@media screen and (max-width: 800px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 450px;
  }
}

@media screen and (max-width: 700px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 350px;
  }
}

@media screen and (max-width: 375px) {
  #section_B .main .content .introduction_t .box_t_B {
    height: 280px;
  }
}

#section_B .main .content .introduction_t .box_t_B img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  cursor: pointer;
}

#section_B .main .content .introduction_t .box_t_B img:hover {
  opacity: 1;
}

#section_B .main .content .introduction_t .box_t_B .text_content_B {
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section_B .main .content .introduction_t .box_t_B .text_content_B h1 {
  color: white;
}

#section_B .main .content .introduction_t .box_t_B .text_content_B a .btn {
  text-align: center;
  padding: 10px;
  border: solid 1px white;
  color: white;
}

#section_B .main .content .introduction_t .box_t_B .text_content_B a .btn:hover {
  background-color: black;
  border: solid 1px black;
}

#section_B .main .content .introduction_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50%;
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#section_B .main .content .introduction_b .box_b_A {
  width: 50%;
  height: 400px;
  background-color: gray;
  position: relative;
}

@media screen and (max-width: 1900px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 350px;
  }
}

@media screen and (max-width: 1600px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 250px;
  }
}

@media screen and (max-width: 1300px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 400px;
  }
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_b .box_b_A {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 550px;
  }
}

@media screen and (max-width: 800px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 450px;
  }
}

@media screen and (max-width: 700px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 350px;
  }
}

@media screen and (max-width: 375px) {
  #section_B .main .content .introduction_b .box_b_A {
    height: 280px;
  }
}

#section_B .main .content .introduction_b .box_b_A img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  cursor: pointer;
}

#section_B .main .content .introduction_b .box_b_A img:hover {
  opacity: 1;
}

#section_B .main .content .introduction_b .box_b_A .text_content_C {
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section_B .main .content .introduction_b .box_b_A .text_content_C h1 {
  color: white;
}

#section_B .main .content .introduction_b .box_b_A .text_content_C a .btn {
  text-align: center;
  padding: 10px;
  border: solid 1px white;
  color: white;
}

#section_B .main .content .introduction_b .box_b_A .text_content_C a .btn:hover {
  background-color: black;
  border: solid 1px black;
}

#section_B .main .content .introduction_b .box_b_B {
  width: 50%;
  height: 400px;
  position: relative;
}

@media screen and (max-width: 1900px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 350px;
  }
}

@media screen and (max-width: 1600px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 250px;
  }
}

@media screen and (max-width: 1300px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 400px;
  }
}

@media screen and (max-width: 950px) {
  #section_B .main .content .introduction_b .box_b_B {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 550px;
  }
}

@media screen and (max-width: 800px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 450px;
  }
}

@media screen and (max-width: 700px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 350px;
  }
}

@media screen and (max-width: 375px) {
  #section_B .main .content .introduction_b .box_b_B {
    height: 280px;
  }
}

#section_B .main .content .introduction_b .box_b_B img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  cursor: pointer;
}

#section_B .main .content .introduction_b .box_b_B img:hover {
  opacity: 1;
}

#section_B .main .content .introduction_b .box_b_B .text_content_D {
  letter-spacing: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section_B .main .content .introduction_b .box_b_B .text_content_D h1 {
  color: black;
}

#section_B .main .content .introduction_b .box_b_B .text_content_D a .btn {
  text-align: center;
  padding: 10px;
  border: solid 1px black;
  color: black;
}

#section_B .main .content .introduction_b .box_b_B .text_content_D a .btn:hover {
  background-color: white;
  border: solid 1px white;
}

#footercontext .container {
  padding: 30px 0;
  color: white;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footercontext .container .logo {
  width: 120px;
}

@media screen and (max-width: 1000px) {
  #footercontext .container .logo {
    display: none;
  }
}

#footercontext .container .logo .image img {
  display: block;
  width: 100%;
}

#footercontext .container .logo .image h1 {
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  margin: 0;
}

#footercontext .container .contact {
  width: 700px;
  text-align: center;
  line-height: 40px;
  letter-spacing: 3px;
}

#footercontext .container .contact h1 {
  font-size: 30px;
  margin: 0;
  font-family: "微軟正黑體";
}

#footercontext .container .contact p {
  margin: 0;
}

#footercontext .container .QRcode {
  width: 100px;
}

@media screen and (max-width: 1000px) {
  #footercontext .container .QRcode {
    display: none;
  }
}

#footercontext .container .QRcode img {
  width: 100%;
  display: block;
}

footer {
  width: 100%;
  background-color: gray;
}

footer p {
  margin: 0;
  line-height: 50px;
  text-align: center;
  color: white;
  display: block;
}

footer #button_top {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 10px;
  display: none;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #da0017;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer #button_top:hover {
  bottom: 15px;
}
/*# sourceMappingURL=merrygym.css.map */