@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
html {
  font-size: 16px;
}

html * {
  font-size: 1rem;
  font-weight: 400;
}

body, ul, li {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans TC", "Noto Serif TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black";
  font-size: 16px;
  line-height: 25px;
  color: #595757;
  letter-spacing: 1px;
  box-sizing: border-box;
}

body {
  position: relative;
  background: #000;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

div, span {
  display: block;
  width: 100%;
}

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
p {
  font-size: 1.15vw;
  font-weight: 300;
  line-height: 1.7;
  color: #595757;
  letter-spacing: 0.25rem;
}
@media (max-width: 992px) {
  p {
    font-size: 1.5vw;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 3.8vw;
    line-height: 1.5;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block;
  }
}

.pad-pc {
  display: block;
}
@media (min-width: 992px) {
  .pad-pc {
    display: none;
  }
}

.pad-h {
  display: none;
}
@media (max-width: 992px) {
  .pad-h {
    display: block;
  }
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

.ajax_loading {
  background: #000 url("../images/loader.gif") center center no-repeat;
}

.bgm {
  display: block;
  width: 0;
  height: 0;
}

.music_box {
  display: block;
  width: 2.5%;
  position: absolute;
  z-index: 500;
  right: 48%;
  bottom: 10%;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .music_box {
    width: 6%;
    right: 2%;
    bottom: 12%;
  }
}
@media (max-width: 768px) {
  .music_box {
    width: 10%;
    max-width: 59px;
    right: 4%;
    bottom: 12%;
  }
}

.music_box img {
  display: block;
  width: 3.1%;
  height: auto;
  margin: 1%;
  opacity: 1;
}

/*---KV---*/
.kv_w {
  width: 100%;
  position: relative;
}

.kv_box {
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.kv_box_m {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

header {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0.5vw;
}
@media (max-width: 768px) {
  header {
    justify-content: flex-start;
  }
}
header .logo_box {
  width: 9.1%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  header .logo_box {
    width: 13%;
  }
}
@media (max-width: 768px) {
  header .logo_box {
    width: 19%;
  }
}
header .logo_box .logo_anzpak {
  width: 100%;
}
header .logo_sydney {
  width: 10.1%;
}
@media (max-width: 992px) {
  header .logo_sydney {
    width: 14.5%;
  }
}
@media (max-width: 768px) {
  header .logo_sydney {
    width: 20%;
  }
}
header nav {
  position: relative;
  width: 90%;
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
header nav ul li {
  display: inline-block;
  width: auto;
  padding: 0 1vw;
  border-left: 1px solid #fff;
}
header nav ul li a {
  text-decoration: none;
}
header nav ul li a div {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 2px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  header nav ul li a div {
    font-size: 1.75vw;
  }
}
header nav ul li a div:hover {
  transform: scale(1.1);
}
header nav ul li:last-child {
  border-right: 1px solid #fff;
}

.prd_box {
  width: 23.5%;
  position: absolute;
  right: 8.75%;
  bottom: 2.4%;
  z-index: 2;
}
@media (max-width: 768px) {
  .prd_box {
    width: 61.9%;
    right: 19%;
    bottom: 5%;
  }
}

.kv_info_m {
  position: relative;
}

.btn_buy {
  display: block;
  width: 10.9%;
  position: fixed;
  right: 2.5%;
  bottom: 5%;
  z-index: 50;
  transform-origin: center;
  animation: buy_ani 1s ease-in-out infinite;
}
@media (max-width: 992px) {
  .btn_buy {
    width: 8%;
  }
}
@media (max-width: 768px) {
  .btn_buy {
    width: 25%;
    right: 2%;
    bottom: 6%;
  }
}

@keyframes buy_ani {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 1%;
  }
  100% {
    margin-bottom: 0;
  }
}
.swiper-button-prev {
  left: 0px;
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev, .swiper-button-next {
  color: #333;
}

.swiper-pagination-bullet {
  width: 1.25vw;
  height: 1.25vw;
  margin: 2vw;
  background: none;
  border: 1px solid #fff;
  opacity: 1;
  margin-top: 2%;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 3vw;
    height: 3vw;
    margin: 3px;
  }
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination {
  position: relative;
  text-align: center;
  margin: 5% 0 5%;
}

main, section {
  display: block;
  width: 100%;
  position: relative;
}

main {
  overflow: hidden;
}

.yt_kv {
  width: 100%;
  position: relative;
  z-index: 2;
}
.yt_kv img {
  position: relative;
  z-index: 2;
}

/* png 當作比例容器 */
.placeholder-image {
  width: 100%;
  height: auto; /* 讓 png 自己決定高度 */
  display: block;
}

/* YouTube API 會塞的 iframe，讓它鋪滿當背景 */
.yt_kv iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 用 CSS 撐滿比例容器 */
  z-index: -1;
}

.yt_box {
  width: 100%;
  margin: -1px auto 0;
  position: relative;
}

.vidbacking {
  display: block;
}

.video-back {
  display: block; /*padding:200px 0px;*/
  text-align: center;
}

.video-back img { /*width:150px;*/
  width: 100%;
  height: auto;
}

img.vediobg_img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  z-index: -101;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#background-video > .ytplayer-container > iframe {
  top: 0 !important;
  z-index: -1;
}

.placeholder-image {
  z-index: 100;
  top: 0;
}

@media (max-width: 767px) {
  .ytplayer-player {
    top: 0 !important;
  }
}

.box_w {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.sbg {
  background: url(../images/section_bg.png) no-repeat right top;
  background-size: cover;
}

/*---s01---*/
#s01 {
  position: relative;
  z-index: 2;
}

.about_vivid {
  position: relative;
  overflow: hidden;
}
.about_vivid .about_info {
  width: 80%;
  position: absolute;
  right: 2%;
  top: 7.5%;
  z-index: 2;
}
@media (max-width: 768px) {
  .about_vivid .about_info {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    padding: 5%;
    box-sizing: border-box;
  }
}
.about_vivid .about_info .about_box {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.about_vivid .about_info .about_box h2 {
  width: 31.2%;
}
@media (max-width: 992px) {
  .about_vivid .about_info .about_box h2 {
    width: 38%;
  }
}
@media (max-width: 768px) {
  .about_vivid .about_info .about_box h2 {
    width: 80%;
  }
}
.about_vivid .about_info .about_box h3 {
  font-size: 1.8vw;
  color: #05e1dc;
  line-height: 1.5;
  letter-spacing: 1.5rem;
  margin: 1% 0;
  text-align: right;
  margin-right: -1%;
}
@media (max-width: 992px) {
  .about_vivid .about_info .about_box h3 {
    font-size: 2.5vw;
    letter-spacing: 1.2rem;
  }
}
@media (max-width: 768px) {
  .about_vivid .about_info .about_box h3 {
    font-size: 4.5vw;
    margin-right: -2%;
  }
}
.about_vivid .about_info .about_box h4 {
  font-size: 1.5vw;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 1.5rem;
  margin: 0.25% 0;
  margin-right: -1%;
}
@media (max-width: 992px) {
  .about_vivid .about_info .about_box h4 {
    font-size: 2vw;
    letter-spacing: 1.2rem;
  }
}
@media (max-width: 768px) {
  .about_vivid .about_info .about_box h4 {
    font-size: 4vw;
    margin-right: 1.75%;
    letter-spacing: 0.5rem;
  }
}
.about_vivid .about_info .about_box p {
  color: #fff;
  line-height: 2;
  letter-spacing: 0.25rem;
  text-align: right;
  margin-right: 0.5%;
}
@media (max-width: 992px) {
  .about_vivid .about_info .about_box p {
    margin-right: 1%;
  }
}
@media (max-width: 768px) {
  .about_vivid .about_info .about_box p {
    letter-spacing: 0.35rem;
    margin-right: 2.5%;
  }
}
.about_vivid .about_info .bbg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

/*---s02---*/
.view_w {
  position: relative;
}
.view_w .view_info {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.view_w .view_info .view_photo {
  width: 66.6%;
  position: relative;
  margin-right: -4.1%;
  z-index: 2;
}
@media (max-width: 768px) {
  .view_w .view_info .view_photo {
    width: 100%;
  }
}
.view_w .view_info .view_content {
  width: 37.5%;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .view_w .view_info .view_content {
    width: 100%;
  }
}
.view_w .view_info .view_content h2 {
  width: 63.3%;
  margin: 5% auto 0;
}
.view_w .view_info .view_content p {
  font-size: clamp(0.85rem, 1.15vw, 3.8vw);
  color: #fff;
  line-height: 1.5;
  text-align: justify;
  padding: 0.5% 7.5%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .view_w .view_info .view_content p {
    line-height: 1.5;
    padding: 0.5% 5%;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 768px) {
  .view_w .view_info .view_content p {
    line-height: 2;
    padding: 0 5% 5%;
    letter-spacing: 0.1rem;
  }
}

.light_L {
  width: 57.1%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  mix-blend-mode: plus-lighter;
}
@media (max-width: 768px) {
  .light_L {
    width: 100%;
  }
}

.light_R {
  width: 57.1%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  mix-blend-mode: plus-lighter;
}
@media (max-width: 768px) {
  .light_R {
    width: 100%;
  }
}

.view_info_L .view_photo {
  clip-path: polygon(0 0, 95% 0, 80% 100%, 0% 100%);
  order: 1;
}
@media (max-width: 768px) {
  .view_info_L .view_photo {
    clip-path: none;
    order: 2;
  }
}
.view_info_L .view_content {
  order: 2;
}
@media (max-width: 768px) {
  .view_info_L .view_content {
    order: 1;
  }
}

.view_info_R .view_photo {
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 15% 100%);
  order: 2;
}
@media (max-width: 768px) {
  .view_info_R .view_photo {
    clip-path: none;
  }
}
.view_info_R .view_content {
  order: 1;
}

/*---s06---*/
#s06 {
  position: relative;
  background: url(../images/s06/s06_bg.png) no-repeat center top;
  background-size: cover;
}

.prd_w {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.prd_w h2 {
  width: 31.5%;
  position: relative;
  margin: 10% auto 0%;
}
@media (max-width: 768px) {
  .prd_w h2 {
    width: 65%;
  }
}
.prd_w .prd_list_box {
  width: 80.7%;
  position: relative;
  margin: 0% auto 5%;
}

.prd_list {
  position: relative;
}

.prd_content {
  position: relative;
  padding: 5%;
  box-sizing: border-box;
  background: #191866;
  width: 90%;
  height: 100%;
  border-radius: 1vw;
  margin: 0% auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
.prd_content .prd_info {
  position: relative;
}
.prd_content .prd_info h3 {
  font-size: 1.9vw;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 992px) {
  .prd_content .prd_info h3 {
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .prd_content .prd_info h3 {
    font-size: 5vw;
  }
}
.prd_content .prd_info .prd_twd {
  font-size: 1vw;
  color: #fff;
  text-align: center;
}
@media (max-width: 992px) {
  .prd_content .prd_info .prd_twd {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  .prd_content .prd_info .prd_twd {
    font-size: 3.5vw;
  }
}
.prd_content .prd_info .prd_twd span {
  display: inline;
  font-size: 1.9vw;
  font-weight: 600;
  color: #05e1dc;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .prd_content .prd_info .prd_twd span {
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .prd_content .prd_info .prd_twd span {
    font-size: 5vw;
  }
}
.prd_content .prd_info .prd_photo {
  position: relative;
  margin: 2.5% 0;
}
.prd_content .prd_info ul {
  list-style-type: disc;
  position: relative;
  display: inline-block;
}
.prd_content .prd_info ul li {
  width: auto;
  list-style-type: disc;
  font-size: clamp(16px, 0.9rem, 3.8vw);
  line-height: 1.5;
  color: #fff;
  text-align: left;
  margin-left: 1.75vw;
  float: left;
}
@media (max-width: 992px) {
  .prd_content .prd_info ul li {
    margin-left: 2.5vw;
  }
}
@media (max-width: 768px) {
  .prd_content .prd_info ul li {
    width: calc(100% - 6vw);
    margin-left: 6vw;
  }
}
.prd_content .prd_info .ps_text {
  font-size: clamp(13px, 0.75rem, 3.5vw);
  line-height: 1.5;
  color: #fff;
  text-align: left;
  padding-left: 0.5vw;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .prd_content .prd_info .ps_text {
    padding-left: 0.25vw;
  }
}
@media (max-width: 768px) {
  .prd_content .prd_info .ps_text {
    padding-left: 1vw;
  }
}

ul.tour_list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 10% auto 5%;
}
ul.tour_list li {
  list-style-type: none;
  width: auto;
  border-radius: 0.5vw;
  padding: 0.5vw 1.25vw;
  background: #229fe7;
  margin: 0.25vw;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  ul.tour_list li {
    border-radius: 1.5vw;
    padding: 1vw 1.5vw;
    margin: 1vw;
  }
}
ul.tour_list li a {
  text-decoration: none;
}
ul.tour_list li a div {
  display: block;
  position: relative;
  font-size: clamp(18px, 1.25vw, 3.8vw);
  font-weight: bold;
  color: #fff;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
ul.tour_list li:hover {
  background: #fff;
}
ul.tour_list li:hover a div {
  color: #229fe7;
}

.prd_border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.prd_border div {
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  position: relative;
  border: 3px solid #fff;
  border-radius: 1vw;
}
.prd_border div span.light01 {
  width: 2vw;
  height: 2vw;
  background: #fff;
  position: absolute;
  left: -1vw;
  top: 30%;
  z-index: 2;
  border-radius: 50%;
  filter: blur(10px);
  mix-blend-mode: overlay;
  transform-origin: center;
  transform: scale(0.5, 5);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .prd_border div span.light01 {
    width: 5vw;
    height: 5vw;
    left: -2.5vw;
    opacity: 1;
  }
}
.prd_border div span.light02 {
  width: 2vw;
  height: 2vw;
  background: #fff;
  position: absolute;
  right: -1vw;
  bottom: 30%;
  z-index: 2;
  border-radius: 50%;
  filter: blur(10px);
  mix-blend-mode: overlay;
  transform-origin: center;
  transform: scale(0.5, 5);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .prd_border div span.light02 {
    width: 5vw;
    height: 5vw;
    right: -2.5vw;
    opacity: 1;
  }
}

.prd_border div::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-width: 10px;
  border-style: solid;
  -o-border-image: linear-gradient(to right bottom, #00a2ff, #ff17f3) 1;
     border-image: linear-gradient(to right bottom, #00a2ff, #ff17f3) 1;
  filter: blur(10px);
  mix-blend-mode: soft-light;
  transform-origin: center;
  transform: scale(1.025);
}

.prd_border div::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  border-width: 10px;
  border-style: solid;
  -o-border-image: linear-gradient(to right bottom, #00a2ff, #ff17f3) 1;
     border-image: linear-gradient(to right bottom, #00a2ff, #ff17f3) 1;
  filter: blur(10px);
  mix-blend-mode: soft-light;
  transform-origin: center;
  transform: scale(1.025);
}

.prd_content:hover .prd_border div span.light01 {
  animation: light01 1s ease-in-out infinite;
  opacity: 1;
}

.prd_content:hover .prd_border div span.light02 {
  animation: light02 1s ease-in-out infinite;
  opacity: 1;
}

@keyframes light01 {
  0% {
    top: 30%;
  }
  50% {
    top: 15%;
  }
  100% {
    top: 30%;
  }
}
@keyframes light02 {
  0% {
    bottom: 30%;
  }
  50% {
    bottom: 15%;
  }
  100% {
    bottom: 30%;
  }
}
#swiper-container01 .swiper-slide {
  height: auto;
  padding: 5% 0;
}

/*---s07---*/
#s07 {
  position: relative;
  background: url(../images/s07/s07_bg.png) no-repeat center top;
  background-size: cover;
}

.time_w {
  position: relative;
  overflow: hidden;
}
.time_w h2 {
  width: 31.5%;
  position: relative;
  margin: 0% auto 2.5%;
}
@media (max-width: 768px) {
  .time_w h2 {
    width: 65%;
  }
}
.time_w .view_list_box {
  width: 95.8%;
  position: relative;
  margin: 0% auto 0%;
}
@media (max-width: 768px) {
  .time_w .view_list_box {
    width: 90%;
    margin: 0% auto 15%;
  }
}

.view_list {
  position: relative;
}

.view_all {
  width: 97.8%;
  position: relative;
  margin: 1.1%;
}
@media (max-width: 768px) {
  .view_all {
    width: 95%;
    margin: 2.5%;
  }
}
.view_all .view_content {
  width: 33.3%;
  position: relative;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 70%, rgba(165, 132, 255, 0.85) 100%);
  display: block;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  padding: 1.5% 0;
}
@media (max-width: 768px) {
  .view_all .view_content {
    width: 100%;
    position: relative;
    background: linear-gradient(to right, rgb(255, 255, 255) 70%, rgb(165, 132, 255) 100%);
    padding: 5% 0;
  }
}
.view_all .view_content h2 {
  width: 75.5%;
  margin: 0 auto;
}
.view_all .view_content p {
  width: 75.5%;
  font-size: clamp(0.9rem, 1.05vw, 3.8vw);
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  margin: 0 auto;
}
.view_all .view_photo {
  position: relative;
}
.view_all .view_photo::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #c014e4;
  position: absolute;
  left: -1rem;
  top: -1rem;
  z-index: -1;
}
.view_all .view_photo::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #0059f3;
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: -2;
}

.swiper-container {
  overflow: hidden;
}

.arrow_box {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  color: #05e1dc;
  left: -5%;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  color: #05e1dc;
  right: -5%;
}

.swiper-button-prev, .swiper-button-next {
  transform: scale(1.5);
}

/*---s05--*/
/*---popup / 注意事項---*/
/*---popup---*/
.modally {
  width: 70.3%;
  background: none;
  box-shadow: none;
  padding: 4px;
}
@media (max-width: 991px) {
  .modally {
    width: 90%;
  }
}

.modally .modally-close-button {
  display: block;
  font-size: 50px;
  color: #fff;
}

.modally-wrap .modally-underlay {
  background: rgba(0, 18, 93, 0.9);
  background-size: 100%;
}

/*popup / 分享圖*/
.event-w {
  width: 60.2%;
  margin: 0% auto;
  padding: 5% 0;
  position: relative;
}

/*popup / 活動辦法*/
.rules-w {
  width: 90%;
  margin: 0% auto;
  padding: 5% 0;
  position: relative;
}
.rules-w h2 {
  display: block;
  width: 100%;
  font-size: 2vw;
  font-weight: bold;
  line-height: 1.5;
  color: #00a0df;
  text-align: center;
  margin: 0 auto 2%;
}
@media (max-width: 992px) {
  .rules-w h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .rules-w h2 {
    font-size: 5vw;
  }
}

ul.ps_text {
  list-style-type: none;
  display: flex;
  flex-flow: column wrap;
  font-size: 1vw;
  line-height: 1.5;
  margin: 0 auto 0%;
  padding-left: 2.5%;
}
ul.ps_text li {
  width: 100%;
  list-style-type: disc;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  margin: 1% 0 1% 0%;
}
@media (max-width: 992px) {
  ul.ps_text li {
    width: 100%;
    margin: 1% 0 1% 0%;
    font-size: 3vw;
  }
}
ul.ps_text li a {
  color: #333;
  text-decoration: underline;
}
@media (max-width: 992px) {
  ul.ps_text li a {
    font-size: 3vw;
  }
}
ul.ps_text li ol {
  list-style-type: decimal-leading-zero;
  padding-left: 5%;
}
ul.ps_text li ol li {
  width: 100%;
  list-style-type: decimal-leading-zero;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  margin: 1% 0 1% 0%;
}
@media (max-width: 992px) {
  ul.ps_text li ol li {
    width: 100%;
    font-size: 3vw;
    margin: 2% 0;
  }
}

/*-------------------------------------------------------------*/
.overlay {
  width: 25%;
  background: linear-gradient(to right, rgba(235, 118, 157, 0.9) 0%, rgba(55, 147, 207, 0.9) 70%);
}
@media (max-width: 768px) {
  .overlay {
    width: 100%;
  }
}

.overlay nav {
  top: 0vh;
  height: 95vh;
}
.overlay nav ul {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 10%;
}
.overlay nav ul a {
  text-decoration: none;
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
}
.overlay nav ul a li div {
  display: inline;
  width: 100%;
  font-family: "Noto Serif TC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  letter-spacing: 5px;
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  width: 4.3%;
  position: relative;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 12%;
    position: absolute;
    right: 1vw;
    top: 2.5vw;
    z-index: 2;
  }
}/*# sourceMappingURL=style.css.map */