@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700&display=swap&subset=chinese-traditional");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+TC:300,400,500,600,700,900&display=swap&subset=chinese-traditional");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500&display=swap");
body {
  font-family: "Noto Sans TC", "Helvetica Neue", "Helvetica", "Arial", "STHeitiTC-Light", "Microsoft JhengHei", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  color: #000;
  position: relative;
  background-color: #F1E6D3;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
  box-sizing: border-box;
}
body.mainbg {
  background-color: #F1E6D3;
  background-image: url(../images/topbg02.png), url(../images/topbg.png), url(../images/bg_road.png), url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: right top, right top, right 24.5%, center top;
  background-size: 95%, 60%, auto, cover;
  background-attachment: inherit;
}
@media only screen and (max-width: 1630px) {
  body.mainbg {
    background-position: right top, right top, right 20%, center top;
  }
}
@media only screen and (max-width: 1460px) {
  body.mainbg {
    background-position: right top, right top, right 18%, center top;
    background-size: 95%, 60%, 120%, cover;
  }
}
@media only screen and (max-width: 1280px) {
  body.mainbg {
    background-position: right top, right top, right 480px, center top;
    background-size: 95%, 60%, 110%, cover;
  }
}
@media only screen and (max-width: 1170px) {
  body.mainbg {
    background-position: right top, right top, right 480px, center top;
    background-size: 95%, 57%, 130%, cover;
  }
}
@media only screen and (max-width: 1024px) {
  body.mainbg {
    background-position: right top, right top, right 400px, center top;
  }
}
@media only screen and (max-width: 820px) {
  body.mainbg {
    background-position: right top, right top, right 300px, center top;
    background-size: 90%, 59%, 120%, cover;
  }
}
@media only screen and (max-width: 600px) {
  body.mainbg {
    background-position: right top, right top, right 200px, center top;
    background-size: 120%, 80%, 140%, cover;
  }
}
body.open {
  overflow: hidden;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif TC", serif;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
}

input[type=button], button {
  outline: none;
}

input[type=button]::-moz-focus-inner, button::-moz-focus-inner {
  border: none;
}

a {
  text-decoration: none;
  color: #000;
}

footer {
  text-align: right;
  font-size: 0.9em;
}

.flex_con {
  display: flex;
  flex-direction: row;
}

.btn {
  display: flex;
  flex-direction: row;
  width: fit-content;
  justify-content: flex-start;
}
.btn a {
  border-radius: 30px;
  padding: 0.6em 2.6em 0.6em 1em;
  margin: 1em;
  cursor: pointer;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  position: relative;
  display: block;
  color: #fff;
}
@media only screen and (max-width: 820px) {
  .btn a {
    margin: 0.5em;
    width: 50%;
    font-size: 1em;
    padding: 0.5em 2.3em 0.5em 0.8em;
  }
}
@media only screen and (max-width: 600px) {
  .btn a {
    position: absolute;
    bottom: -10px;
    width: 28%;
  }
}
@media only screen and (max-width: 320px) {
  .btn a {
    width: 25%;
  }
}
.btn a.rbtn {
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
}
@media only screen and (max-width: 600px) {
  .btn a.rbtn {
    left: 10px;
  }
}
.btn a.rbtn:after {
  content: "";
  border: 2px solid #ca660e;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
}
@media only screen and (max-width: 820px) {
  .btn a.rbtn:after {
    height: 45px;
  }
}
.btn a.pbtn {
  background-image: linear-gradient(to right, #541280 0%, #8F0E82 40%, #DB0B81 100%);
}
@media only screen and (max-width: 600px) {
  .btn a.pbtn {
    right: 10px;
  }
}
.btn a.pbtn:after {
  content: "";
  border: 2px solid #DB0B81;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
}
@media only screen and (max-width: 820px) {
  .btn a.pbtn:after {
    height: 45px;
  }
}
.btn a::before {
  content: "";
  font-weight: 800;
  width: 40px;
  height: 40px;
  text-align: center;
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  transition: 0.2s;
}
@media only screen and (max-width: 820px) {
  .btn a::before {
    width: 28px;
    height: 28px;
  }
}
.btn a:hover::before {
  right: 4px;
}

.btnTop {
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
  transition: 0.7s;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .btnTop {
    bottom: 30px;
    right: 10px;
  }
  .btnTop img {
    width: 65px;
    display: block;
    margin: auto;
  }
}
.btnTop.show {
  opacity: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
nav.open {
  width: 100%;
}
nav.open .menu {
  display: block;
}
nav.open .follow {
  display: flex;
}
nav .menu {
  padding-top: 90px;
  background-color: #ffe9c6;
  max-width: 280px;
  margin-top: 100px;
  margin-left: 50px;
  border-radius: 150px;
  padding: 1em 2em;
  text-align: center;
  display: none;
}
nav .follow {
  padding: 1em 1em 0 1em;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  border-top: 1px solid #000;
}
nav .follow span {
  font-weight: 800;
  font-size: 0.8em;
  margin-right: 1em;
}
nav .follow div {
  margin-right: 0.5em;
}
nav ul li {
  padding: 0.7em;
}
nav ul li a {
  font-size: 1.1em;
  color: #000;
  display: block;
  font-family: "Noto Serif TC", serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 800;
}

.nav_btn {
  padding: 1em 0.5em;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .nav_btn {
    padding: 0.5em 0.3em;
  }
}
.nav_btn div {
  background-repeat: no-repeat;
  background-position: center;
  background-color: #c50808;
  margin-left: 0.75em;
  border-radius: 25px;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .nav_btn div {
    margin-left: 0.45em;
  }
  .nav_btn div:first-child {
    margin-left: 0;
  }
}
.nav_btn div span {
  transition: 0.1s;
}
.nav_btn div.map_btn {
  background-image: url(../images/icon_map.png);
  background-position: 15px center;
}
@media screen and (max-width: 600px) {
  .nav_btn div.map_btn {
    background-size: 20px;
  }
}
.nav_btn div.map_btn a {
  display: block;
  height: 100%;
  color: #fff;
  padding: 0.5em 1em 0.5em 2.5em;
}
.nav_btn div.info_btn {
  background-image: url(../images/icon_info.png);
  background-position: 15px center;
}
.nav_btn div.info_btn a {
  display: block;
  height: 100%;
  color: #fff;
  padding: 0.5em 1em 0.5em 2.5em;
}
@media only screen and (max-width: 1024px) {
  .nav_btn div.map_btn, .nav_btn div.info_btn {
    background-position: center;
  }
  .nav_btn div.map_btn a, .nav_btn div.info_btn a {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }
  .nav_btn div.map_btn span, .nav_btn div.info_btn span {
    width: 0;
    font-size: 0;
  }
  .nav_btn div.map_btn:hover, .nav_btn div.info_btn:hover {
    background-position: 15px center;
  }
  .nav_btn div.map_btn:hover a, .nav_btn div.info_btn:hover a {
    width: auto;
    height: 100%;
    padding: 0.5em 1em 0.5em 2.5em;
    border-radius: 25px;
  }
  .nav_btn div.map_btn:hover span, .nav_btn div.info_btn:hover span {
    width: auto;
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .nav_btn div.map_btn a, .nav_btn div.info_btn a {
    width: 40px;
    height: 40px;
  }
}
.nav_btn div.map_btn.hidden, .nav_btn div.info_btn.hidden {
  background-position: center;
}
.nav_btn div.map_btn.hidden a, .nav_btn div.info_btn.hidden a {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .nav_btn div.map_btn.hidden a, .nav_btn div.info_btn.hidden a {
    width: 40px;
    height: 40px;
  }
}
.nav_btn div.map_btn.hidden span, .nav_btn div.info_btn.hidden span {
  width: 0;
  font-size: 0;
}
.nav_btn div.map_btn.hidden:hover, .nav_btn div.info_btn.hidden:hover {
  background-position: 15px center;
}
.nav_btn div.map_btn.hidden:hover a, .nav_btn div.info_btn.hidden:hover a {
  width: auto;
  height: 100%;
  padding: 0.5em 1em 0.5em 2.5em;
  border-radius: 25px;
}
.nav_btn div.map_btn.hidden:hover span, .nav_btn div.info_btn.hidden:hover span {
  width: auto;
  font-size: 1em;
}
.nav_btn div.menu_btn {
  width: 75px;
  height: 75px;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .nav_btn div.menu_btn {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .nav_btn div.menu_btn {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 320px) {
  .nav_btn div.menu_btn {
    width: 40px;
    height: 40px;
  }
}

.menu_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
  position: relative;
}
.menu_btn:after {
  content: "";
  border: 2px solid #ca660e;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 2px;
  transition: 0.5s;
}
@media screen and (max-width: 820px) {
  .menu_btn:after {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .menu_btn:after {
    width: 0;
    height: 0;
    display: none;
  }
}
.menu_btn:hover:after {
  left: -2px;
}
.menu_btn span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 60px;
  background: #fff;
  margin: 4px auto;
  backface-visibility: hidden;
  transition-duration: 0.3s;
}
@media screen and (max-width: 820px) {
  .menu_btn span {
    width: 30px;
    height: 4px;
  }
}
@media screen and (max-width: 320px) {
  .menu_btn span {
    width: 25px;
    height: 2px;
    margin: 2 auto;
  }
}
.menu_btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu_btn.open span:nth-child(2) {
  display: none;
}
.menu_btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media only screen and (max-width: 600px) {
  header {
    position: relative;
  }
}
header .main_ny {
  position: absolute;
  right: 350px;
  top: 300px;
  z-index: 1;
}
@media only screen and (max-width: 1800px) {
  header .main_ny {
    right: 300px;
  }
  header .main_ny img {
    width: 500px;
  }
}
@media only screen and (max-width: 1630px) {
  header .main_ny {
    top: 220px;
    right: 18%;
  }
}
@media only screen and (max-width: 1480px) {
  header .main_ny {
    top: 200px;
  }
  header .main_ny img {
    width: 420px;
  }
}
@media only screen and (max-width: 1280px) {
  header .main_ny {
    top: 150px;
    right: 17%;
  }
  header .main_ny img {
    width: 400px;
  }
}
@media only screen and (max-width: 1024px) {
  header .main_ny {
    top: 180px;
  }
  header .main_ny img {
    width: 350px;
  }
}
@media only screen and (max-width: 820px) {
  header .main_ny {
    top: 90px;
    right: 15%;
  }
  header .main_ny img {
    width: 270px;
  }
}
@media screen and (max-width: 600px) {
  header .main_ny {
    top: 70px;
  }
  header .main_ny img {
    width: 170px;
  }
}
@media only screen and (max-width: 320px) {
  header .main_ny {
    right: 13%;
  }
  header .main_ny img {
    width: 140px;
  }
}

footer {
  min-height: 830px;
  margin-top: -100px;
  position: relative;
  background-image: url(../images/footer_01.png), url(../images/footer_02.png), url(../images/footer_03.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media only screen and (max-width: 1680px) {
  footer {
    background-position: left bottom, center, left bottom;
    background-size: auto, 100%, auto;
  }
}
@media only screen and (max-width: 1280px) {
  footer {
    background-position: left bottom, center, center;
    background-size: 140%, 100%, 100%;
  }
}
@media only screen and (max-width: 1024px) {
  footer {
    min-height: 720px;
  }
}
@media only screen and (max-width: 820px) {
  footer {
    min-height: 300px;
    background-position: left bottom, 60% 77%, 60% 77%;
    background-size: 140%, 105%, 105%;
  }
}
@media only screen and (max-width: 600px) {
  footer {
    background-position: left bottom, right 77%, 60% 77%;
    background-size: 140%, 200%, 160%;
  }
}
@media only screen and (max-width: 320px) {
  footer {
    background-position: left bottom, right 77%, 50% 85%;
    background-size: 140%, 250%, 250%;
  }
}
footer p {
  padding-top: 760px;
  padding-right: 150px;
  color: #fff;
}
@media only screen and (max-width: 1280px) {
  footer p {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  footer p {
    padding-top: 650px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 820px) {
  footer p {
    padding-top: 500px;
    text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
  }
}
@media screen and (max-width: 600px) {
  footer p {
    font-size: 0.75em;
    line-height: 1;
    padding-top: 485px;
  }
}
footer .footerimg {
  position: absolute;
  bottom: 5%;
  left: 30%;
}
@media only screen and (max-width: 1280px) {
  footer .footerimg {
    bottom: 15%;
  }
  footer .footerimg img {
    width: 380px;
  }
}
@media only screen and (max-width: 820px) {
  footer .footerimg {
    bottom: 10%;
  }
  footer .footerimg img {
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  footer .footerimg img {
    width: 200px;
  }
}
@media only screen and (max-width: 320px) {
  footer .footerimg img {
    width: 180px;
  }
}

.ny {
  width: 600px;
  margin-left: 100px;
  padding-top: 100px;
}
@media only screen and (max-width: 1800px) {
  .ny {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1630px) {
  .ny {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1530px) {
  .ny {
    width: 520px;
  }
}
@media only screen and (max-width: 1280px) {
  .ny {
    width: 40%;
  }
}
@media only screen and (max-width: 1024px) {
  .ny {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 820px) {
  .ny {
    padding-top: 65px;
    width: 40%;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 320px) {
  .ny {
    padding-top: 40px;
  }
}
.ny h1 {
  height: 450px;
  text-indent: -9999px;
  background-image: url(../images/ny_title.png);
  background-repeat: no-repeat;
  background-position: 8% center;
}
@media only screen and (max-width: 1530px) {
  .ny h1 {
    height: 400px;
    background-size: 90%;
    background-position: right center;
  }
}
@media only screen and (max-width: 1400px) {
  .ny h1 {
    height: 350px;
  }
}
@media only screen and (max-width: 1280px) {
  .ny h1 {
    height: 340px;
    background-size: 90%;
    background-position: right center;
  }
}
@media only screen and (max-width: 1024px) {
  .ny h1 {
    height: 300px;
    background-size: 90%;
    background-position: center;
  }
}
@media only screen and (max-width: 820px) {
  .ny h1 {
    height: 270px;
    background-size: 100%;
  }
}
.ny p {
  padding-left: 1em;
  padding-right: 1em;
  text-align: justify;
  text-indent: 2em;
}
@media only screen and (max-width: 1280px) {
  .ny p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 1024px) {
  .ny p {
    padding: 0;
  }
}
@media only screen and (max-width: 820px) {
  .ny p {
    display: none;
  }
}

article.main_home {
  margin-top: 100px;
  padding-top: 100px;
  background-image: url(../images/bg_con02.png), url(../images/bg_con03.png);
  background-repeat: no-repeat;
  background-position: left top, right 15%;
}
@media only screen and (max-width: 1530px) {
  article.main_home {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1460px) {
  article.main_home {
    background-size: 30%, 30%;
  }
}
@media only screen and (max-width: 1170px) {
  article.main_home {
    background-size: 25%, 25%;
  }
}
@media only screen and (max-width: 820px) {
  article.main_home {
    padding-top: 0;
    background-size: 25%, 30%;
    background-position: left top, right 12%;
  }
}
@media only screen and (max-width: 600px) {
  article.main_home {
    background-size: 30%, 30%;
    background-position: left 1%, right 12%;
  }
}
article.main_home .main_words {
  padding-left: 300px;
  padding-top: 200px;
  position: relative;
}
@media only screen and (max-width: 1460px) {
  article.main_home .main_words {
    padding-top: 100px;
    padding-left: 200px;
  }
}
@media only screen and (max-width: 1170px) {
  article.main_home .main_words {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  article.main_home .main_words {
    padding-left: 25px;
  }
  article.main_home .main_words figure img {
    width: 300px;
  }
}
@media only screen and (max-width: 820px) {
  article.main_home .main_words figure img {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  article.main_home .main_words {
    flex-direction: column;
    padding-left: 0;
  }
  article.main_home .main_words figure img {
    width: 80%;
    margin: auto;
    display: block;
  }
}
article.main_home .main_words .btn_words {
  position: absolute;
  bottom: 0;
  left: 480px;
  z-index: 1;
}
@media only screen and (max-width: 1460px) {
  article.main_home .main_words .btn_words {
    left: 400px;
  }
}
@media only screen and (max-width: 1024px) {
  article.main_home .main_words .btn_words {
    left: 220px;
  }
}
@media only screen and (max-width: 820px) {
  article.main_home .main_words .btn_words {
    left: 135px;
    bottom: -20px;
  }
}
@media screen and (max-width: 600px) {
  article.main_home .main_words .btn_words {
    bottom: auto;
    top: 50px;
    left: auto;
    right: 30px;
  }
}
@media only screen and (max-width: 320px) {
  article.main_home .main_words .btn_words {
    right: 20px;
    top: 40px;
  }
}
article.main_home .main_words .btn_words a {
  color: #fff;
  width: 120px;
  height: 120px;
  padding-top: 35px;
  box-sizing: border-box;
  border-radius: 50%;
  text-align: center;
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
  display: block;
}
article.main_home .main_words .btn_words a:after {
  content: "";
  border: 2px solid #ffeac7;
  width: 100%;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
  transition: 0.5s;
}
article.main_home .main_words .btn_words a::before {
  content: " → ";
  width: 40px;
  height: 40px;
  background: #cb2e34;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: -10px;
  transition: 0.2s;
}
article.main_home .main_words .btn_words a:hover:after {
  left: -5px;
}
article.main_home .main_words .btn_words a:hover::before {
  right: -15px;
}
article.main_home .main_words .btn_words a span {
  display: block;
}
@media only screen and (max-width: 820px) {
  article.main_home .main_words .btn_words a {
    width: 100px;
    height: 100px;
    padding-top: 25px;
  }
  article.main_home .main_words .btn_words a:after {
    width: 100px;
    height: 100px;
  }
  article.main_home .main_words .btn_words a::before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: -5px;
  }
}
@media screen and (max-width: 600px) {
  article.main_home .main_words .btn_words a {
    width: 90px;
    height: 90px;
    font-size: 0.8em;
  }
  article.main_home .main_words .btn_words a:after {
    font-size: 0.8em;
    width: 90px;
    height: 90px;
  }
  article.main_home .main_words .btn_words a::before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: -5px;
  }
}

.video {
  width: 50%;
  margin-left: 5%;
  margin-top: 2%;
}
@media only screen and (max-width: 1680px) {
  .video {
    width: 60%;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 1460px) {
  .video {
    margin-top: 5%;
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1024px) {
  .video {
    width: 60%;
    margin-top: 5%;
  }
}
@media screen and (max-width: 600px) {
  .video {
    width: 90%;
    margin: 2% auto;
  }
}

.videobox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.videobox:after {
  content: "";
  border: 2px solid #ffeac7;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  transition: 0.5s;
}
@media screen and (max-width: 400px) {
  .videobox:after {
    display: none;
  }
}

.videobox a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: 2;
  background: #000;
}
.videobox a img {
  width: 100%;
  border-radius: 30px;
}

.main_act {
  margin-top: 10em;
  padding-left: 220px;
  background-image: url(../images/main_act_bg.png);
  background-repeat: no-repeat;
  background-position: left 50px;
}
@media only screen and (max-width: 1680px) {
  .main_act {
    padding-left: 150px;
  }
}
@media only screen and (max-width: 1360px) {
  .main_act {
    padding-left: 70px;
  }
}
@media only screen and (max-width: 1170px) {
  .main_act {
    background-position: left top;
    margin-top: 8em;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 820px) {
  .main_act {
    padding-left: 25px;
    background-position: left top;
    background-size: 75%;
    margin-top: 4em;
  }
}
@media screen and (max-width: 600px) {
  .main_act {
    flex-direction: column-reverse;
    position: relative;
    padding-left: 0;
  }
}

.main_actdetail {
  width: 23%;
  margin-right: 2%;
}
@media only screen and (max-width: 1280px) {
  .main_actdetail {
    width: 23%;
    margin-left: 1%;
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 1170px) {
  .main_actdetail {
    width: 28%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 820px) {
  .main_actdetail {
    width: 30%;
  }
  .main_actdetail h2 img {
    width: 280px;
  }
}
@media screen and (max-width: 600px) {
  .main_actdetail {
    width: 80%;
    margin: auto;
  }
  .main_actdetail h2 {
    text-align: center;
    position: absolute;
    top: 0;
    left: 15%;
  }
}
@media only screen and (max-width: 320px) {
  .main_actdetail h2 {
    left: 5%;
  }
}
.main_actdetail .detail {
  padding-top: 2%;
  font-size: 1.15em;
}
@media only screen and (max-width: 820px) {
  .main_actdetail .detail {
    font-size: 1em;
  }
}
@media only screen and (max-width: 600px) {
  .main_actdetail .detail {
    padding-top: 0;
    padding-bottom: 2%;
  }
}
.main_actdetail .detail h3 {
  font-size: 1.75em;
  border-bottom: 2px solid #000;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 1280px) {
  .main_actdetail .detail h3 {
    font-size: 1.75em;
  }
}
@media only screen and (max-width: 820px) {
  .main_actdetail .detail h3 {
    font-size: 1.8em;
    text-shadow: 1px 1px 2px white, 0 0 1em white, 0 0 0.2em white;
  }
}
.main_actdetail .detail span {
  display: block;
  font-size: 1.15em;
  margin-top: 1em;
  position: relative;
}
.main_actdetail .detail span::before {
  content: "";
  background-image: url(../images/icon_site.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 1rem;
  font-weight: 800;
  position: absolute;
  padding-left: 18px;
  top: -22px;
  left: 0;
}
.main_actdetail .detail .act_site::before {
  content: "地點";
  background-image: url(../images/icon_site.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.main_actdetail .detail .act_time::before {
  content: "時間";
  background-image: url(../images/icon_time.png);
}

.main_actitem {
  width: 72%;
  margin-left: 3%;
  padding: 1em;
}
@media only screen and (max-width: 1280px) {
  .main_actitem {
    margin-left: 2%;
  }
}
@media only screen and (max-width: 1170px) {
  .main_actitem {
    width: 67%;
  }
}
@media only screen and (max-width: 1024px) {
  .main_actitem {
    width: 65%;
  }
}
@media only screen and (max-width: 820px) {
  .main_actitem {
    margin-top: 5%;
  }
}
@media screen and (max-width: 600px) {
  .main_actitem {
    width: 80%;
    margin: auto;
    padding-top: 5em;
  }
}
.main_actitem figure {
  position: relative;
  margin: auto;
  width: 85%;
  margin-left: 20%;
}
.main_actitem figure img {
  border-radius: 225px;
  width: 90%;
  display: block;
  margin: auto;
}
.main_actitem h4 {
  padding-top: 1em;
  width: 85%;
  margin-left: 15%;
  text-align: center;
}
.main_actitem .slick-active {
  padding-top: 10px;
  padding-bottom: 10px;
}
.main_actitem .slick-track {
  display: flex;
  align-items: center;
}
.main_actitem .slick-prev, .main_actitem .slick-next {
  top: 45%;
}
@media only screen and (max-width: 600px) {
  .main_actitem .slick-prev, .main_actitem .slick-next {
    top: 50%;
  }
}
.main_actitem .slick-prev::before, .main_actitem .slick-next::before {
  color: #000;
  font-size: 30px;
  font-weight: 800;
}
.main_actitem .slick-prev {
  left: -20px;
}
.main_actitem .slick-next {
  left: 325px;
}
@media only screen and (max-width: 1730px) {
  .main_actitem .slick-next {
    left: 290px;
  }
}
@media only screen and (max-width: 1600px) {
  .main_actitem .slick-next {
    left: 280px;
  }
}
@media only screen and (max-width: 1530px) {
  .main_actitem .slick-next {
    left: 345px;
  }
}
@media only screen and (max-width: 1370px) {
  .main_actitem .slick-next {
    left: 310px;
  }
}
@media only screen and (max-width: 1170px) {
  .main_actitem .slick-next {
    left: 380px;
  }
}
@media only screen and (max-width: 1024px) {
  .main_actitem .slick-next {
    left: 330px;
  }
}
@media only screen and (max-width: 820px) {
  .main_actitem .slick-next {
    left: 250px;
  }
}
@media only screen and (max-width: 600px) {
  .main_actitem .slick-next {
    left: 315px;
  }
}
@media only screen and (max-width: 400px) {
  .main_actitem .slick-next {
    left: 290px;
  }
}
@media only screen and (max-width: 320px) {
  .main_actitem .slick-next {
    left: 250px;
  }
}
.main_actitem .slick-current figure {
  margin: 0;
  width: 100%;
  margin-left: 1%;
}
@media only screen and (max-width: 600px) {
  .main_actitem .slick-current figure {
    width: 97%;
  }
}
.main_actitem .slick-current figure img {
  width: 96%;
  display: block;
  border-radius: 80px;
}
.main_actitem .slick-current figure::after {
  content: "";
  border: 3px solid #fdd8ac;
  width: 100%;
  height: 103%;
  border-radius: 80px;
  position: absolute;
  z-index: 1;
  top: -2%;
  left: -1%;
  transition: 0.5s;
}
.main_actitem .slick-current h4 {
  display: none;
}

.light_time {
  padding: 2em;
  background-image: url(../images/act_time_bg.png);
  background-repeat: no-repeat;
  background-position: 60% 10%;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  .light_time {
    padding: 2em 1em;
    flex-direction: column;
    background-position: right 60%;
  }
}
@media screen and (max-width: 600px) {
  .light_time {
    padding: 0;
  }
}
.light_time .features {
  width: 63%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .light_time .features {
    width: 100%;
  }
}
.light_time .time {
  width: 28%;
  margin-left: 2%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1680px) {
  .light_time .time {
    width: 30%;
  }
}
@media only screen and (max-width: 1280px) {
  .light_time .time {
    width: 95%;
  }
}
@media only screen and (max-width: 1024px) {
  .light_time .time {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 820px) {
  .light_time .time {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .light_time .time {
    width: 90%;
  }
}

.features {
  padding-top: 5em;
}
@media only screen and (max-width: 1280px) {
  .features {
    padding-top: 2em;
  }
}
@media only screen and (max-width: 820px) {
  .features {
    padding: 0;
  }
}
.features h2 {
  text-align: center;
}
@media only screen and (max-width: 820px) {
  .features h2 img {
    width: 300px;
  }
}
@media only screen and (max-width: 320px) {
  .features h2 img {
    width: 250px;
  }
}
@media screen and (max-width: 600px) {
  .features .features_item {
    width: 100%;
  }
}
.features .features_item ul {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  padding: 1em;
}
@media screen and (max-width: 600px) {
  .features .features_item ul {
    white-space: nowrap;
    overflow: auto;
    display: block;
    width: 100%;
    padding: 0;
  }
}
.features .features_item ul li {
  width: 28.3333333333%;
  margin: 0.2em 1em;
  box-sizing: border-box;
}
.features .features_item ul li img {
  width: 100%;
}
@media only screen and (max-width: 820px) {
  .features .features_item ul li {
    width: 32%;
    margin: 0.2em;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .features .features_item ul li {
    width: 80%;
    display: inline-block;
  }
}

.time {
  background: #fff;
  margin-top: 5em;
  border-radius: 180px 180px 80px 80px;
  height: fit-content;
  padding-bottom: 2em;
}
@media only screen and (max-width: 1280px) {
  .time .time_list_g {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 820px) {
  .time .time_list_g {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .time {
    border-radius: 150px 150px 80px 80px;
    font-size: 0.95em;
  }
}
@media only screen and (max-width: 320px) {
  .time {
    border-radius: 100px 100px 80px 80px;
  }
}
.time h3 {
  text-align: center;
  display: flex;
  font-size: 1.75em;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1280px) {
  .time h3 {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .time h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
}
.time h3 span {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  background: #ca2e34;
  color: #fff;
  margin-left: -10px;
}
@media only screen and (max-width: 320px) {
  .time h3 span {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.time_list {
  padding: 1em 2em;
  width: 85%;
  margin: auto;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  .time_list {
    width: 25%;
  }
  .time_list:last-child {
    width: 35%;
  }
  .time_list:last-child a {
    right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .time_list {
    width: 30%;
  }
}
@media only screen and (max-width: 820px) {
  .time_list {
    width: 90%;
    padding: 1em;
  }
  .time_list:last-child {
    width: 90%;
  }
  .time_list:last-child a {
    right: 0;
  }
}
.time_list + .time_list {
  border-top: 2px solid #000;
}
@media only screen and (max-width: 1280px) {
  .time_list + .time_list {
    border-top: none;
    border-left: 2px solid #000;
  }
}
@media only screen and (max-width: 820px) {
  .time_list + .time_list {
    border-left: none;
    border-top: 2px solid #000;
  }
}
.time_list h4 {
  font-size: 1.3em;
  padding-bottom: 1em;
}
@media only screen and (max-width: 1280px) {
  .time_list h4 {
    padding-bottom: 0.5em;
  }
}
.time_list a {
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
  padding: 0.35em 2.5em 0.35em 1em;
  color: #fff;
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 30px;
}
@media only screen and (max-width: 1024px) {
  .time_list a {
    padding: 0.35em 2em 0.35em 1em;
  }
}
@media only screen and (max-width: 320px) {
  .time_list a {
    padding: 0.35em 1.8em 0.35em 0.5em;
  }
}
.time_list a::before {
  content: "";
  font-weight: 800;
  width: 40px;
  height: 40px;
  text-align: center;
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  position: absolute;
  right: 8px;
  top: -1px;
  z-index: 2;
  transition: 0.2s;
}
@media only screen and (max-width: 1024px) {
  .time_list a::before {
    width: 30px;
    height: 30px;
    top: 4px;
    right: 3px;
  }
}
.time_list a:hover::before {
  right: 4px;
}

.time_detail::before {
  content: "時間";
  background-image: url(../images/icon_time.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1em;
  font-weight: 800;
  display: block;
}
.time_detail span {
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
@media only screen and (max-width: 820px) {
  .time_detail span {
    display: block;
  }
}
.time_detail span i {
  font-style: normal;
}
.time_detail span.sblo i {
  display: block;
}
@media only screen and (max-width: 820px) {
  .time_detail span.sblo {
    display: block;
  }
  .time_detail span.sblo i {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .time_detail span.sblo i {
    display: block;
  }
}

.retro {
  margin-left: 5%;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 30px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1024px) {
  .retro {
    flex-direction: column;
  }
}
@media only screen and (max-width: 820px) {
  .retro {
    padding-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .retro {
    margin-left: 0;
  }
}
.retro h2 {
  padding-top: 30px;
}
@media screen and (max-width: 600px) {
  .retro h2 {
    margin: auto;
  }
}
.retro .retro_con {
  margin-left: 4%;
  width: 70%;
  margin-top: -30px;
  padding-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .retro .retro_con {
    width: 85%;
  }
}
@media screen and (max-width: 600px) {
  .retro .retro_con {
    width: 75%;
    margin: auto;
    padding-top: 0;
  }
}
@media only screen and (max-width: 400px) {
  .retro .retro_con {
    width: 72%;
  }
}
@media only screen and (max-width: 320px) {
  .retro .retro_con {
    width: 68%;
  }
}
.retro .retro_con div.retro_item {
  padding-bottom: 12px;
  background-image: url(../images/retro_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
.retro .retro_con div.retro_item a {
  display: block;
  text-align: center;
  font-size: 1.2em;
  position: relative;
}
.retro .retro_con div.retro_item.hastwo a {
  display: flex;
  flex-direction: column;
}
.retro .retro_con .slick-track {
  display: flex;
  align-items: end;
}
.retro .retro_con .slick-prev, .retro .retro_con .slick-next {
  top: auto;
  bottom: 0;
}
.retro .retro_con .slick-prev::before, .retro .retro_con .slick-next::before {
  color: #000;
  font-size: 30px;
  font-weight: 800;
}
.retro .retro_con .slick-prev {
  left: -50px;
}
.retro .retro_con .slick-next {
  right: -40px;
}

.traffic h2 {
  position: absolute;
  top: 170px;
  left: 500px;
  cursor: pointer;
}
.traffic h2::after {
  content: " → ";
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: #cb2e34;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: 55px;
  right: 40px;
  transition: 0.5s;
}
.traffic h2:hover::after {
  right: 30px;
}
@media only screen and (max-width: 1400px) {
  .traffic h2 {
    left: 250px;
  }
}
@media only screen and (max-width: 1280px) {
  .traffic h2 {
    left: 250px;
    top: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  .traffic h2 {
    left: 130px;
    top: 160px;
  }
  .traffic h2 img {
    width: 300px;
  }
  .traffic h2::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 50px;
  }
}
@media only screen and (max-width: 820px) {
  .traffic h2 {
    left: 70px;
    top: 150px;
  }
  .traffic h2 img {
    width: 250px;
  }
  .traffic h2::after {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: 40px;
    right: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .traffic h2 {
    left: 0;
    top: 200px;
  }
  .traffic h2 img {
    width: 200px;
  }
  .traffic h2::after {
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 30px;
    right: 37px;
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 400px) {
  .traffic h2 {
    top: 210px;
  }
}
@media only screen and (max-width: 320px) {
  .traffic h2 {
    top: 200px;
  }
}

.traf_con, .blessing_con {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
.traf_con.open, .blessing_con.open {
  display: block;
}
.traf_con .close_btn, .blessing_con .close_btn {
  position: absolute;
  top: 2em;
  right: 18%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
  z-index: 9;
}
@media only screen and (max-width: 600px) {
  .traf_con .close_btn, .blessing_con .close_btn {
    width: 60px;
    height: 60px;
    top: 1em;
    right: 0;
  }
}
.traf_con .close_btn:after, .blessing_con .close_btn:after {
  content: "";
  border: 2px solid #ca660e;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}
@media only screen and (max-width: 820px) {
  .traf_con .close_btn:after, .blessing_con .close_btn:after {
    display: none;
  }
}
.traf_con .close_btn:hover:after, .blessing_con .close_btn:hover:after {
  left: -5px;
}
.traf_con .close_btn span, .blessing_con .close_btn span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 60px;
  background: #fff;
  margin: 4px auto;
  backface-visibility: hidden;
  transition-duration: 0.3s;
}
.traf_con .close_btn span:nth-child(1), .blessing_con .close_btn span:nth-child(1) {
  transform: rotate(45deg) translate(23px, 23px);
}
@media only screen and (max-width: 600px) {
  .traf_con .close_btn span:nth-child(1), .blessing_con .close_btn span:nth-child(1) {
    transform: rotate(45deg) translate(17px, 17px);
  }
}
.traf_con .close_btn span:nth-child(2), .blessing_con .close_btn span:nth-child(2) {
  transform: rotate(-45deg) translate(-17px, 15px);
}
@media only screen and (max-width: 600px) {
  .traf_con .close_btn span:nth-child(2), .blessing_con .close_btn span:nth-child(2) {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
}
@media only screen and (max-width: 1400px) {
  .traf_con .close_btn, .blessing_con .close_btn {
    right: 10%;
  }
}
@media only screen and (max-width: 1280px) {
  .traf_con .close_btn, .blessing_con .close_btn {
    right: 5%;
  }
}
.traf_con .traf_info, .traf_con .blessing_info, .blessing_con .traf_info, .blessing_con .blessing_info {
  width: 80%;
  max-width: 1000px;
  height: 90%;
  background-image: url(../images/bg_trafficbox.jpg);
  background-repeat: no-repeat;
  position: absolute;
  top: 1em;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  margin: auto;
}
@media only screen and (max-width: 600px) {
  .traf_con .traf_info, .traf_con .blessing_info, .blessing_con .traf_info, .blessing_con .blessing_info {
    width: 90%;
  }
}
.traf_con .traf_info::after, .traf_con .blessing_info::after, .blessing_con .traf_info::after, .blessing_con .blessing_info::after {
  content: "";
  border: 2px solid #ffeac7;
  width: 99%;
  height: 99%;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 1em;
  left: 1em;
}
@media only screen and (max-width: 820px) {
  .traf_con .traf_info::after, .traf_con .blessing_info::after, .blessing_con .traf_info::after, .blessing_con .blessing_info::after {
    display: none;
  }
}
.traf_con .traf_info h3, .traf_con .blessing_info h3, .blessing_con .traf_info h3, .blessing_con .blessing_info h3 {
  text-align: center;
  display: flex;
  font-size: 1.75em;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
}
.traf_con .traf_info h3 span, .traf_con .blessing_info h3 span, .blessing_con .traf_info h3 span, .blessing_con .blessing_info h3 span {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background: #ca2e34;
  color: #fff;
  margin-left: -7px;
}
.traf_con .traf_info .detail, .traf_con .blessing_info .detail, .blessing_con .traf_info .detail, .blessing_con .blessing_info .detail {
  text-align: left;
  overflow-y: scroll;
  height: 95%;
}

.traf_info .detail {
  width: 96%;
  height: 95%;
  margin-left: 2%;
  margin-top: 1%;
  border-radius: 30px;
  background: #fff;
  box-sizing: border-box;
  padding-top: 0.5em;
}
.traf_info .detail h4 {
  font-size: 1.5em;
  font-weight: normal;
  background: #ca2e34;
  color: #fff;
  width: 200px;
  margin-top: 1em;
  padding: 5px;
  padding-left: 1em;
  border-radius: 0 60px 60px 0;
}
.traf_info .list {
  margin: 1em 1.5em;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .traf_info .list {
    flex-direction: column;
  }
}
.traf_info .list i {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #ca2e34;
  margin-right: 1em;
}

.traf_info .txt h5, .blessing_info .txt h5 {
  font-size: 1.2em;
  color: #ca2e34;
}
.traf_info .txt ul, .blessing_info .txt ul {
  list-style: disc inside;
}
.traf_info .txt a, .blessing_info .txt a {
  color: #dc6601;
}

.blessing_info .scab {
  background: #fff;
  width: 95%;
  margin: auto;
  border-radius: 30px;
  margin-top: 1em;
}
@media only screen and (max-width: 820px) {
  .blessing_info .scab {
    flex-direction: column;
  }
}
.blessing_info figure {
  margin: 0;
  padding: 0;
}
.blessing_info figure img {
  height: 100%;
}
@media only screen and (max-width: 820px) {
  .blessing_info figure img {
    height: auto;
    width: 100%;
  }
}
.blessing_info .txt {
  width: 65%;
  margin-left: 5%;
  padding-top: 1em;
}
@media only screen and (max-width: 820px) {
  .blessing_info .txt {
    width: 90%;
    padding-bottom: 1em;
  }
}
.blessing_info .txt em {
  display: block;
  font-style: normal;
}
.blessing_info .txt li em {
  text-indent: 1.5em;
}
.blessing_info .txt ul + h5 {
  border-top: 1px solid #bfbfbf;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.blessing_info .fig_con figure {
  width: 50%;
}
.blessing_info .fig_con figure img {
  width: 100%;
}
.blessing_info .blessing_btn a {
  display: block;
  background-image: linear-gradient(to right, #541280 0%, #8F0E82 40%, #DB0B81 100%);
  width: 150px;
  padding: 0.5em 1em 0.5em 2em;
  color: #fff;
  text-align: left;
  margin: auto;
  font-size: 1.5em;
  border-radius: 30px;
  position: relative;
}
.blessing_info .blessing_btn a::before {
  content: "";
  font-weight: 800;
  width: 40px;
  height: 40px;
  text-align: center;
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 8px;
  top: 12px;
  z-index: 2;
  transition: 0.2s;
}
.blessing_info .blessing_btn a:hover::before {
  right: 4px;
}

.blessing h2 {
  position: absolute;
  top: 120px;
  right: 180px;
  cursor: pointer;
}
.blessing h2::after {
  content: " → ";
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: #cb2e34;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: 55px;
  right: 60px;
  transition: 0.5s;
}
.blessing h2:hover::after {
  right: 50px;
}
@media only screen and (max-width: 1280px) {
  .blessing h2 {
    right: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .blessing h2 {
    top: 150px;
    right: 70px;
  }
  .blessing h2 img {
    width: 300px;
  }
  .blessing h2::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 50px;
    right: 50px;
  }
}
@media only screen and (max-width: 820px) {
  .blessing h2 {
    top: 150px;
    right: 50px;
  }
  .blessing h2 img {
    width: 250px;
  }
  .blessing h2::after {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: 40px;
    right: 37px;
  }
}
@media only screen and (max-width: 600px) {
  .blessing h2 {
    top: 130px;
  }
  .blessing h2 img {
    width: 200px;
  }
  .blessing h2::after {
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 30px;
    right: 37px;
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 400px) {
  .blessing h2 {
    top: 120px;
    right: 40px;
  }
}
@media only screen and (max-width: 320px) {
  .blessing h2 {
    top: 110px;
    right: 45px;
  }
}

.nav_btn.back_title {
  margin-top: -1em;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 620px) {
  .nav_btn.back_title {
    margin-top: 0;
  }
}
.nav_btn.back_title figure {
  padding-left: 1em;
  padding-top: 1.5em;
}
@media screen and (max-width: 620px) {
  .nav_btn.back_title figure img {
    width: 95%;
  }
}
.nav_btn.back_title .menu_btn {
  width: 65px;
  height: 65px;
}
.nav_btn.back_title .menu_btn:after {
  width: 65px;
  height: 65px;
}
@media screen and (max-width: 600px) {
  .nav_btn.back_title .menu_btn {
    width: 50px;
    height: 50px;
  }
  .nav_btn.back_title .menu_btn:after {
    width: 50px;
    height: 50px;
  }
}

.words .nav_btn {
  position: relative;
}

@media screen and (max-width: 1152px) {
  .page_first {
    flex-direction: column;
  }
}
.page_first main {
  position: relative;
  padding-bottom: 6%;
  min-height: 880px;
  width: 50%;
  box-sizing: border-box;
  background-image: url(../images/words/wordsbg.png), url(../images/words/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: left bottom, left center;
}
@media screen and (max-width: 1530px) {
  .page_first main {
    width: 40%;
    min-height: auto;
    background-size: 50%, auto;
  }
}
@media screen and (max-width: 1360px) {
  .page_first main {
    width: 50%;
  }
}
@media screen and (max-width: 1152px) {
  .page_first main {
    position: static;
    width: 100%;
    padding-bottom: 3%;
    padding: 0;
    background-image: url(../images/words/main_bg.jpg);
    background-position: center;
    background-size: cover;
  }
}
.page_first main img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1530px) {
  .page_first main img {
    width: 90%;
  }
}
@media screen and (max-width: 1152px) {
  .page_first main img {
    width: fit-content;
    position: static;
  }
}
@media screen and (max-width: 820px) {
  .page_first main img {
    width: 90%;
    margin: auto;
  }
}

.lan_con {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  width: 50%;
}
@media screen and (max-width: 1530px) {
  .lan_con {
    width: 60%;
  }
}
@media screen and (max-width: 1360px) {
  .lan_con {
    width: 50%;
  }
}
@media screen and (max-width: 1152px) {
  .lan_con {
    width: 100%;
  }
}

.lan_con div, .lan_full div {
  width: 31.3333333333%;
  margin: 0 1%;
  padding: 1% 0;
  box-sizing: border-box;
  position: relative;
  margin-top: 1.5em;
  height: 250px;
}
@media screen and (max-width: 1360px) {
  .lan_con div, .lan_full div {
    width: 47%;
    height: 185px;
  }
}
@media screen and (max-width: 1152px) {
  .lan_con div, .lan_full div {
    width: 25%;
    margin: 0;
    margin-top: 1.5em;
    margin-bottom: 2em;
    height: 250px;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div, .lan_full div {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div, .lan_full div {
    width: 50%;
    height: 200px;
  }
}
@media screen and (max-width: 330px) {
  .lan_con div, .lan_full div {
    height: auto;
    padding-bottom: 50px;
  }
}
.lan_con div a, .lan_full div a {
  display: block;
  height: 100%;
}
.lan_con div a:after, .lan_full div a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 100px;
  width: 80px;
  height: 20px;
  transition: 0.5s;
  opacity: 0;
  background-image: url(../images/words/arrow_into.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .lan_con div a:after, .lan_full div a:after {
    opacity: 1;
    left: 60%;
    bottom: 30px;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div a:after, .lan_full div a:after {
    bottom: 10px;
  }
}
@media screen and (max-width: 330px) {
  .lan_con div a:after, .lan_full div a:after {
    width: 55px;
  }
}
.lan_con div a:hover:after, .lan_full div a:hover:after {
  left: 70%;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .lan_con div a:hover:after, .lan_full div a:hover:after {
    left: 60%;
  }
}
.lan_con div h4, .lan_full div h4 {
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 620px) {
  .lan_con div h4, .lan_full div h4 {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.lan_con div h3, .lan_full div h3 {
  font-size: 1.8em;
  margin-top: -1.15em;
  padding-left: 0.5em;
  margin-bottom: 0.25em;
}
.lan_con div h3.fzl, .lan_full div h3.fzl {
  font-size: 1.5em;
}
@media screen and (max-width: 620px) {
  .lan_con div h3, .lan_full div h3 {
    padding-left: 0;
    margin-top: -1em;
  }
  .lan_con div h3.fzl, .lan_full div h3.fzl {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 380px) {
  .lan_con div h3, .lan_full div h3 {
    font-size: 1.5em;
  }
  .lan_con div h3.fzl, .lan_full div h3.fzl {
    font-size: 1.3em;
  }
}
.lan_con div h4, .lan_full div h4 {
  font-size: 1.1em;
  line-height: 1.25;
}
@media screen and (max-width: 620px) {
  .lan_con div h4, .lan_full div h4 {
    font-size: 1em;
  }
}
.lan_con div p, .lan_full div p {
  display: none;
  font-size: 0.9em;
  padding-top: 0.5em;
}
.lan_con div.imgs, .lan_full div.imgs {
  background: inherit !important;
  position: relative;
}
.lan_con div.imgs img, .lan_full div.imgs img {
  position: absolute;
  z-index: 2;
  max-width: 110%;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs img, .lan_full div.imgs img {
    max-width: 100%;
  }
}
.lan_con div.imgs.d01 img, .lan_full div.imgs.d01 img {
  top: 30px;
  left: -20px;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: block;
    top: 40px;
    left: 20px;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: none;
  }
}
.lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
  top: 50px;
  right: 0;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
    right: auto;
    left: 0;
    top: auto;
    bottom: 10px;
    transform: rotateY(-180deg);
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d02, .lan_full div.imgs.d02 {
    display: none;
  }
}
.lan_con div.imgs.d03 img, .lan_full div.imgs.d03 img {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: block;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: none;
  }
}
.lan_con div.imgs.d04 img, .lan_full div.imgs.d04 img {
  bottom: 0;
}
.lan_con div.imgs.d05 img, .lan_full div.imgs.d05 img {
  bottom: 0;
  left: -40px;
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d05 img, .lan_full div.imgs.d05 img {
    left: 10px;
  }
}

.lan_full {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  width: 100%;
  margin-bottom: 2em;
}
@media screen and (max-width: 1530px) {
  .lan_full {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1360px) {
  .lan_full {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 620px) {
  .lan_full {
    margin-bottom: 0;
  }
}
.lan_full div {
  width: 15.6666666667%;
  margin: 0 0.5%;
  margin-top: 3em;
}
.lan_full div h3 {
  margin-top: -1.5em;
}
@media screen and (max-width: 1530px) {
  .lan_full div {
    width: 18.8%;
  }
}
@media screen and (max-width: 1360px) {
  .lan_full div {
    width: 23.75%;
  }
}
@media screen and (max-width: 1152px) {
  .lan_full div {
    width: 25%;
    margin: 0;
    margin-top: 1.5em;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 820px) {
  .lan_full div {
    width: 33.3333333333%;
  }
  .lan_full div h3 {
    margin-top: -1.25em;
  }
}
@media screen and (max-width: 620px) {
  .lan_full div {
    width: 50%;
  }
  .lan_full div h3 {
    margin-top: -1em;
  }
}

.lan_con div:nth-child(8n+1), .lan_full div:nth-child(8n+1) {
  background-color: #eb8362;
}

.lan_con div:nth-child(8n+2), .lan_full div:nth-child(8n+2) {
  background-color: #f39b48;
}

.lan_con div:nth-child(8n+3), .lan_full div:nth-child(8n+3) {
  background-color: #d17a51;
}

.lan_con div:nth-child(8n+4), .lan_full div:nth-child(8n+4) {
  background-color: #de998b;
}

.lan_con div:nth-child(8n+5), .lan_full div:nth-child(8n+5) {
  background-color: #f2ca8a;
}

.lan_con div:nth-child(8n+6), .lan_full div:nth-child(8n+6) {
  background-color: #cb6761;
}

.lan_con div:nth-child(8n+7), .lan_full div:nth-child(8n+7) {
  background-color: #f7d1ae;
}

.lan_con div:nth-child(8n+8), .lan_full div:nth-child(8n+8) {
  background-color: #f4ac6c;
}

.words_footer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: 220px;
  background-image: url(../images/words/dfooter.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
@media screen and (max-width: 1530px) {
  .words_footer {
    position: relative;
    width: 100%;
    margin-top: 2em;
  }
}
@media screen and (max-width: 1360px) {
  .words_footer {
    position: absolute;
    bottom: -120px;
  }
}
@media screen and (max-width: 620px) {
  .words_footer {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 0;
  }
}
.words_footer p {
  padding-top: 190px;
  padding-right: 10px;
  font-size: 0.9em;
}
@media screen and (max-width: 620px) {
  .words_footer p {
    padding-top: 170px;
  }
}

.page {
  position: relative;
}
.page header {
  min-height: 600px;
  background-image: url(../images/page_topbanner.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  box-sizing: border-box;
}
@media only screen and (max-width: 1530px) {
  .page header {
    background-size: 110%;
  }
}
@media only screen and (max-width: 1360px) {
  .page header {
    min-height: 500px;
    background-size: 115%;
  }
}
@media only screen and (max-width: 1024px) {
  .page header {
    min-height: 420px;
  }
}
@media only screen and (max-width: 820px) {
  .page header {
    background-image: url(../images/page_topbanner_M.png);
    background-size: contain;
  }
}
@media only screen and (max-width: 600px) {
  .page header {
    min-height: 280px;
    background-size: 210%;
    background-position: left top;
  }
}
@media only screen and (max-width: 320px) {
  .page header {
    background-size: 220%;
    background-position: 5% top;
  }
}
.page header h2 {
  text-align: center;
  padding-top: 250px;
}
@media only screen and (max-width: 1530px) {
  .page header h2 {
    padding-top: 200px;
  }
}
@media only screen and (max-width: 1360px) {
  .page header h2 {
    padding-top: 150px;
  }
  .page header h2 img {
    height: 230px;
  }
}
@media screen and (max-width: 600px) {
  .page header h2 {
    display: none;
  }
}
.page.act_intro header {
  position: relative;
  background-image: url(../images/pageact_topbanner.png);
}
@media only screen and (max-width: 820px) {
  .page.act_intro header {
    background-image: url(../images/pageact_topbanner_M.png);
  }
}
@media only screen and (max-width: 600px) {
  .page.act_intro header {
    min-height: 400px;
  }
  .page.act_intro header h2 {
    visibility: hidden;
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .page.act_intro header {
    min-height: 320px;
  }
}
.page.act_intro header .area_sel {
  background-color: #ca2e34;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5em 2em;
  border-radius: 0 0 0 60px;
}
@media screen and (max-width: 820px) {
  .page.act_intro header .area_sel {
    position: static;
    border-radius: 0;
    margin: 1em 0 2em 0;
    padding: 0.5em 1em;
  }
}
@media screen and (max-width: 600px) {
  .page.act_intro header .area_sel {
    margin: 0;
    padding: 0.5em 0;
    margin-top: -50px;
  }
}
@media screen and (max-width: 320px) {
  .page.act_intro header .area_sel {
    margin-top: -100px;
  }
}
@media screen and (max-width: 600px) {
  .page.act_intro header .area_sel ul {
    white-space: nowrap;
    overflow: auto;
    width: 100%;
    padding: 0;
  }
}
.page.act_intro header .area_sel ul li {
  padding: 0 1em;
}
@media screen and (max-width: 820px) {
  .page.act_intro header .area_sel ul li {
    width: 25%;
  }
}
@media screen and (max-width: 600px) {
  .page.act_intro header .area_sel ul li {
    width: auto;
  }
}
.page.act_intro header .area_sel ul li i {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.page.act_intro header .area_sel ul li a {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page.act_intro header .area_sel ul li.sel a {
  background: #932226;
  padding: 0.2em 1em;
  border-radius: 30px;
}
.page .con {
  width: 80%;
  margin-left: 5%;
  max-width: 1170px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1460px) {
  .page .con {
    width: 75%;
  }
}
@media only screen and (max-width: 1024px) {
  .page .con {
    width: 100%;
    margin: 0;
    margin-top: 5%;
  }
}
.page .con figure {
  margin: 1%;
}
.page .con figure.img_l img {
  display: block;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 600px) {
  .page .con figure img {
    width: 90%;
    margin: auto;
    display: block;
  }
}
.page .con figure.left {
  float: left;
  margin: 2% 3%;
}
@media only screen and (max-width: 600px) {
  .page .con figure.left {
    float: none;
    margin: 2em 1%;
  }
  .page .con figure.left img {
    width: 90%;
    margin: auto;
    display: block;
  }
}
.page .con figure.right {
  float: right;
  margin: 2% 3%;
}
.page .con.pray_con {
  flex-direction: column;
  align-items: center;
  padding-bottom: 12em;
  border-radius: 270px 270px 0 0;
  color: #fff;
  width: 90%;
  max-width: 960px;
  margin: 6em 7% 0 7%;
  background-image: url(../images/nycon_bg2.jpg);
  background-repeat: repeat;
  background-position: left top;
}
@media only screen and (max-width: 1024px) {
  .page .con.pray_con {
    margin: auto;
    margin-top: 8em;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .page .con.pray_con {
    font-size: 0.9em;
    width: 95%;
    box-sizing: border-box;
  }
}
.page .con.pray_con figure {
  margin-top: -8em;
}
@media only screen and (max-width: 1024px) {
  .page .con.pray_con figure {
    margin-top: -5em;
  }
}
@media only screen and (max-width: 600px) {
  .page .con.pray_con figure img {
    width: 70%;
    margin: auto;
  }
}
.page .con.pray_con .text h4, .page .con.pray_con .text h5 {
  text-align: center;
}
.page .con.pray_con .text h4 {
  font-size: 1.5em;
}
@media only screen and (max-width: 600px) {
  .page .con.pray_con .text h4 {
    font-size: 1.3em;
  }
}
.page .con.pray_con .text h4 em {
  font-style: normal;
  display: block;
}
.page .con.pray_con .text h5 {
  font-size: 1.2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1em;
}
@media only screen and (max-width: 600px) {
  .page .con.pray_con .text h5 {
    font-size: 1em;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
  }
}
.page .txt {
  padding: 0 2em;
}
@media only screen and (max-width: 600px) {
  .page .txt {
    padding: 0 1em;
  }
}
.page .txt.en p {
  text-align: left;
}
.page .txt p {
  margin-top: 1em;
  width: 90%;
  text-align: justify;
  text-indent: 2em;
}
@media only screen and (max-width: 1460px) {
  .page .txt p {
    width: 95%;
  }
}
@media only screen and (max-width: 1024px) {
  .page .txt p {
    width: 100%;
    box-sizing: border-box;
    margin: 1em auto;
  }
}
.page .txt h3 {
  font-size: 1.5em;
}
.page .txt .light_list {
  background: #fff;
  width: 80%;
  max-width: 960px;
  border-radius: 30px;
  margin: 2em 1em;
  padding: 1em 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .page .txt .light_list {
    margin: auto;
    flex-direction: column;
    width: 90%;
    padding: 1em;
  }
}
.page .txt .light_list::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 30px;
  position: absolute;
  background-color: #c82d33;
  display: block;
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -10px;
}
.page .txt .light_list li {
  width: 50%;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  .page .txt .light_list li {
    width: 100%;
  }
}
.page .txt .light_list li i {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-style: normal;
  border: 1px solid #000;
  display: inline-block;
  margin-right: 10px;
  font-size: 0.9em;
}
.page .txt .light_list.en li {
  width: 45%;
  margin-left: 3%;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5em;
}
.page .txt .light_list.en li span {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 600px) {
  .page .txt .light_list.en li {
    width: 90%;
  }
}
.page aside {
  margin-left: 7%;
}
.page footer {
  min-height: 440px;
  margin-top: 0;
  background-image: url(../images/page_footer.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media only screen and (max-width: 1360px) {
  .page footer {
    background-size: contain;
    background-position: center bottom;
  }
}
@media only screen and (max-width: 1024px) {
  .page footer {
    background-size: 150%;
    min-height: 250px;
  }
}
@media only screen and (max-width: 600px) {
  .page footer {
    background-size: 300%;
    background-position: 80% bottom;
  }
}
@media only screen and (max-width: 320px) {
  .page footer {
    background-size: 400%;
  }
}
.page footer p {
  padding: 0;
  padding-top: 380px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .page footer p {
    font-size: 0.9em;
    padding-top: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .page footer p {
    font-size: 0.75em;
  }
}
.page footer.pray_con {
  position: relative;
  z-index: 9;
  margin-top: -20em;
}
@media only screen and (max-width: 1024px) {
  .page footer.pray_con {
    background-size: 150%;
    min-height: 400px;
  }
  .page footer.pray_con p {
    padding-top: 350px;
  }
}
@media only screen and (max-width: 600px) {
  .page footer.pray_con {
    background-size: 380%;
  }
}
.page footer.themes {
  background-image: url(../images/page_footer.png), url(../images/nycon_bg.jpg);
  background-repeat: no-repeat, repeat;
  background-position: center top, left top;
  background-size: cover, 100%;
}

.submenu {
  background: #ca2e34;
  border-radius: 30px;
  padding: 2em 1em;
  height: fit-content;
}
.submenu ul li.sel {
  background: #932226;
  border-radius: 30px;
}
.submenu ul li a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
}

@media only screen and (max-width: 1460px) {
  article.ny_page aside {
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1024px) {
  article.ny_page {
    flex-direction: column;
  }
  article.ny_page aside {
    padding: 0.5em 0;
    width: 100%;
    margin: auto;
    border-radius: 0;
    box-sizing: border-box;
  }
  article.ny_page aside ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (max-width: 820px) {
  article.ny_page aside ul {
    white-space: nowrap;
    overflow: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
  }
}

.themes_con {
  margin-top: 2em;
  padding-top: 2em;
  padding-bottom: 2em;
  background-image: url(../images/nycon_bg.jpg);
  background-position: left top;
  background-size: 100%;
  counter-reset: num;
}
.themes_con .themes {
  width: 95%;
  max-width: 1080px;
  margin: auto;
  color: #fff;
  padding: 4em 2em;
  position: relative;
}
.themes_con .themes.qa::before {
  counter-increment: num;
  content: "0" counter(num);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 1.5em;
  font-family: "Noto Serif TC", serif;
  background-image: url(../images/arrow_01.png), url(../images/arrow_02.png);
  background-repeat: no-repeat;
  background-position: 47% 10px, 53% 10px;
}
@media only screen and (max-width: 600px) {
  .themes_con .themes.qa::before {
    display: none;
  }
}
.themes_con .themes.noti {
  padding: 1em;
}
@media only screen and (max-width: 600px) {
  .themes_con .themes.noti {
    width: 90%;
  }
}
.themes_con .themes.noti::before {
  content: "";
  background: none;
}
.themes_con .themes h3 {
  font-size: 1.5em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .themes_con .themes h3 {
    margin-bottom: 0;
  }
}
.themes_con .themes h3 span {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #ca2e34;
  margin-left: -5px;
  border-radius: 50%;
}
.themes_con .themes.qa {
  background: #fff;
  height: fit-content;
  border-radius: 0px 120px 0px 120px;
  padding: 3em;
  color: #000;
  width: 80%;
  max-width: 960px;
}
@media only screen and (max-width: 600px) {
  .themes_con .themes.qa {
    padding: 3em 2em;
    margin-top: 2em;
    width: 70%;
  }
}
.themes_con .themes.qa + .qa {
  margin-top: 2em;
}
.themes_con .themes.qa::after {
  content: "Q";
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  background: #ca2e34;
  color: #fff;
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: 2em;
}
@media only screen and (max-width: 600px) {
  .themes_con .themes.qa::after {
    top: -30px;
    left: 40%;
  }
}

.lan_btn {
  display: flex;
  flex-direction: row;
  margin-left: 3%;
}
.lan_btn a {
  color: #f97c10;
  background-color: #fff;
  border: 1px solid #f97c10;
  padding: 0.5em 2em;
  cursor: pointer;
}
.lan_btn a.sel {
  background-color: #f97c10;
  color: #fff;
}
.lan_btn a:first-child {
  border-radius: 30px 0 0 30px;
}
.lan_btn a:last-child {
  border-radius: 0 30px 30px 0;
}

.page_act {
  flex-wrap: wrap;
  width: 98%;
  max-width: 1530px;
  margin: auto;
  counter-reset: num;
  justify-content: flex-start;
  box-sizing: border-box;
}
@media only screen and (max-width: 600px) {
  .page_act {
    margin-top: 2em;
  }
}

.act_item {
  width: calc((100% - 8em) / 4);
  box-sizing: border-box;
  margin: 1em;
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 100%);
  box-sizing: border-box;
}
@media only screen and (max-width: 1360px) {
  .act_item {
    width: calc((100% - 6em) / 3);
  }
}
@media only screen and (max-width: 990px) {
  .act_item {
    width: calc((100% - 4em) / 2);
  }
}
@media only screen and (max-width: 600px) {
  .act_item {
    width: calc(100% - 2em);
  }
}
.act_item::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #ca2e34;
  border-radius: 50%;
  font-size: 0.9em;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #fff;
}
.act_item figure img {
  width: 100%;
}
.act_item h4 {
  width: 80%;
  margin: auto;
  position: relative;
  text-align: center;
  color: #fff;
  padding-top: 0.5em;
  padding-bottom: 1em;
}
.act_item h4::after {
  content: "";
  background: #ca2e34;
  border-radius: 180px 180px 0 0;
  width: 100%;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}
.act_item.type_sec::before {
  background: #0068b7;
}
.act_item.type_sec h4::after {
  background: #0068b7;
}
.act_item.type_thr::before {
  background: #50a88c;
}
.act_item.type_thr h4::after {
  background: #50a88c;
}
.act_item.type_four::before {
  background: #e09821;
}
.act_item.type_four h4::after {
  background: #e09821;
}
.act_item .act_detail {
  padding: 0 1em 2em 1em;
}
.act_item .act_detail .live {
  margin-top: 1em;
}
.act_item .act_detail .live h5 {
  width: fit-content;
  padding: 2px 15px 2px 40px;
  color: #fff;
  font-size: 1em;
  border-radius: 15px;
  margin-top: 5px;
  background-color: #c30d23;
  background-image: url(../images/icon_live.png);
  background-repeat: no-repeat;
  background-position: 10px 8px;
}
.act_item .act_detail .live a {
  display: inline-block;
  margin-top: 0.5em;
  padding: 2px 30px 2px 10px;
  border: 1px solid #e09821;
  border-radius: 15px;
  background-image: url(../images/icon_play.png);
  background-repeat: no-repeat;
  background-position: 90% center;
}
.act_item .act_detail h3 {
  font-size: 1.5em;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  margin-top: -1em;
  padding-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 2px solid #000;
}
.act_item .act_detail span {
  display: block;
  margin-top: 2em;
  position: relative;
}
.act_item .act_detail span::before {
  content: "";
  background-image: url(../images/icon_site.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 1rem;
  font-weight: 800;
  position: absolute;
  padding-left: 18px;
  top: -25px;
  left: 0;
}
.act_item .act_detail span em {
  font-style: normal;
  display: block;
}
.act_item .act_detail span.act_site::before {
  content: "地點";
  background-image: url(../images/icon_site.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.act_item .act_detail span.act_time i {
  font-style: normal;
  display: inline-block;
}
.act_item .act_detail span.act_time::before {
  content: "時間";
  background-image: url(../images/icon_time.png);
}

.act_light {
  justify-content: space-around;
  align-items: stretch;
}
.act_light .act_item {
  width: calc((100% - 6em) / 3);
  margin-bottom: 2.5em;
}
.act_light .act_item::after {
  content: "";
  background-image: url(../images/act_lightbg01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 2;
  height: 20px;
  width: 100%;
}
.act_light .act_item::before {
  display: none;
}
.act_light .act_item.full {
  width: 100%;
  padding: 2em 1em;
  background: #fff;
  box-sizing: border-box;
  border-radius: 30px 30px 0 0;
}
@media only screen and (max-width: 1024px) {
  .act_light .act_item.full {
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .act_light .act_item.full {
    margin-top: 1em;
  }
}
.act_light .act_item.full::after {
  background-image: url(../images/act_lightbg02.png);
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 2;
  height: 20px;
  width: 100%;
}
.act_light .act_item.full figure {
  width: 60%;
  margin-right: 2%;
}
@media only screen and (max-width: 1024px) {
  .act_light .act_item.full figure {
    width: 90%;
    margin: auto;
  }
}
.act_light .act_item.full figure img {
  width: 100%;
}
.act_light .act_item.full .act_detail {
  width: 40%;
  padding: 1%;
  margin: 0;
  border-radius: 0;
  background: inherit;
}
@media only screen and (max-width: 1024px) {
  .act_light .act_item.full .act_detail {
    width: 90%;
    margin: auto;
  }
  .act_light .act_item.full .act_detail h4 {
    text-align: left;
  }
}
@media only screen and (max-width: 820px) {
  .act_light .act_item {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #fff;
    border-radius: 30px 30px 0 0;
    align-items: center;
  }
}
@media only screen and (max-width: 600px) {
  .act_light .act_item {
    flex-direction: column;
    margin-top: 7em;
  }
}
.act_light .act_item .act_detail {
  border-radius: 30px 30px 0 0;
  background: #fff;
  padding-top: 10em;
  margin-top: -10em;
}
@media only screen and (max-width: 820px) {
  .act_light .act_item .act_detail {
    padding: 0.5em;
    margin: 0;
    width: 65%;
  }
}
@media only screen and (max-width: 600px) {
  .act_light .act_item .act_detail {
    width: 90%;
  }
}
.act_light .act_item .act_detail p {
  margin-top: 0.5em;
}
.act_light .act_item figure {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 820px) {
  .act_light .act_item figure {
    width: 30%;
  }
}
@media only screen and (max-width: 600px) {
  .act_light .act_item figure {
    width: 60%;
    margin-top: -5em;
  }
}
.act_light .act_item h4 {
  width: auto;
  color: #000;
  font-size: 1.5em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #000;
}
.act_light .act_item h4::after {
  display: none;
}

.food_area {
  width: 98%;
  max-width: 1530px;
  margin: 5em auto 2em auto;
}
.food_area figure img {
  width: 100%;
}
.food_area h2 {
  text-align: center;
  display: flex;
  font-size: 1.75em;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 1em;
}
.food_area h2 span {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  background: #ca2e34;
  color: #fff;
  margin-left: -10px;
}

.food_item {
  margin-top: 2em;
}
.food_item ul {
  flex-wrap: wrap;
}
.food_item ul li {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 30px;
  padding: 1em;
  margin: 1em;
  position: relative;
  width: calc((100% - 8em) / 4);
  box-sizing: border-box;
}
@media only screen and (max-width: 1360px) {
  .food_item ul li {
    width: calc((100% - 6em) / 3);
  }
}
@media only screen and (max-width: 820px) {
  .food_item ul li {
    width: calc((100% - 4em) / 2);
  }
}
@media only screen and (max-width: 600px) {
  .food_item ul li {
    width: calc(100% - 2em);
  }
}
.food_item ul li i {
  display: block;
  font-style: normal;
  position: absolute;
  top: -0.8em;
  left: 50%;
  color: #e09821;
  font-size: 2em;
}
.food_item ul li h3 {
  padding-top: 0.5em;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5em;
  text-align: center;
  font-size: 1.5em;
}
.food_item ul li span {
  margin-top: 2em;
  position: relative;
}
.food_item ul li span::before {
  content: "";
  background-image: url(../images/icon_site.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 1rem;
  font-weight: 800;
  position: absolute;
  padding-left: 18px;
  top: -25px;
  left: 0;
}
.food_item ul li span.food::before {
  content: "餐點";
  background-image: url(../images/icon_food.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.food_item ul li span.act_time i {
  font-style: normal;
  display: inline-block;
}
.food_item ul li span.act_time em {
  font-style: normal;
  display: block;
}
.food_item ul li span.act_time::before {
  content: "時間";
  background-image: url(../images/icon_time.png);
}

.route_g {
  margin: auto;
  width: 90%;
  max-width: 1280px;
}
@media only screen and (max-width: 1024px) {
  .route_g {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 600px) {
  .route_g {
    width: 98%;
  }
}
.route_g .route {
  display: none;
}
.route_g .route.sel {
  display: block;
}
.route_g .route figure {
  width: 90%;
  max-width: 1170px;
  margin: auto;
}
.route_g .route figure img {
  border-radius: 30px;
  display: block;
  width: 100%;
}
.route_g .route .route_txt {
  width: 90%;
  max-width: 1170px;
  margin: 1em auto;
}
@media only screen and (max-width: 600px) {
  .route_g .route .route_txt {
    font-size: 0.95em;
  }
}
.route_g .route .route_txt h3 {
  font-size: 2em;
}
.route_g .route .route_txt p {
  width: 100%;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}

.route_sel li {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */