@charset "utf-8";

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

body {
  font-family: "Roboto",
    /* 英文 */
    "Noto Sans TC",
    /* 中文 */
    sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  background: url(../images/bg_deco.png) top center repeat,
    url(../images/bg.jpg) top center repeat fixed;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  header {
    position: relative;
  }
}

/* PC */
.WRAPPER {
  position: relative;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .WRAPPER {
    min-width: 100%;
  }
}

.container {
  overflow: hidden;
}

.topbox {
  position: relative;
  width: 1200px;
  margin: auto;
}

.kv_pc {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin: auto;
  flex-wrap: wrap-reverse;
}

.kv_pc img {
  display: block;
  text-align: center;
}

.kv_m {
  display: none;
}

.kv_m img {
  display: block;
}

.kv_m a {
  font-size: 0;
  display: block;
}

.for_pc {
  display: block;
}

.for_m {
  display: none;
}

/* m */
@media screen and (max-width: 991px) {
  .kv_m {
    display: block;
    width: 100%;
  }

  .kv_m img {
    width: 100%;
  }

  .kv_pc {
    display: none;
  }

  .container {
    width: 100%;
    min-width: auto;
    position: relative;
    top: 0 !important;
    /* 強制歸零，不往上移 */
  }

  .for_pc {
    display: none;
  }

  .for_m {
    display: block;
  }
}

/*--  版面微調  --*/

.title-item {
  position: absolute;
  z-index: 90;
}

@keyframes smallSwing {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(3deg);
  }

  40% {
    transform: rotate(-3deg);
  }

  60% {
    transform: rotate(2deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* 定義從左側滑入並淡入的動畫 */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    /* 從左邊 50px 的位置開始 */
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    /* 回到原始位置 */
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(1.5deg);
  }

  100% {
    transform: rotate(-1deg);
  }
}


.title01 {
  position: absolute;
  top: 320px;
  left: 0px;
  /* 參數順序：動畫名(fadeInLeft) 持續時間(1s) 延遲時間(1s) 動畫曲線(ease-out) 停在終點(forwards) */
  animation: fadeInLeft 1s 1s ease-out forwards;

  /* 重要：因為有延遲，必須先讓物件透明，否則動畫還沒開始前標題會卡在畫面上 */
  opacity: 0;
}

.title02 {
  top: -70px;
  left: 270px;
  /* 時間改為 3s(變慢)，動畫改用 smallSwing(變小) */
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 0s;
  transform-origin: top center;
  /* 確保支點在上方晃動才自然 */
}

.title03 {
  top: 320px;
  left: -80px;
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 0.3s;
  transform-origin: top center;
}

.title04 {
  top: 460px;
  left: 80px;
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 0.6s;
  transform-origin: top center;
}

.title05 {
  top: 79px;
  left: 925px;
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 0.9s;
  transform-origin: top center;
}

.title06 {
  top: 199px;
  left: 944px;
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 1.2s;
  transform-origin: top center;
}

.title07 {
  top: 532px;
  left: 829px;
  animation: smallSwing 3s ease-in-out infinite;
  animation-delay: 1.5s;
  transform-origin: top center;
}

/* m */
@media screen and (max-width: 991px) {
  .kv_m {
    display: block;
    width: 100%;
  }

  .kv_m img {
    width: 100%;
  }

  .kv_pc {
    display: none;
  }

  .container {
    width: 100%;
    min-width: auto;
  }

  .for_pc {
    display: none;
  }

  .for_m {
    display: block;
  }
}

.banner {
  margin: 10px auto;
  padding: 5px;
}

.rectangle,
.crosswise_3p,
.hightlight,
.hightlight_5p,
.collect_5x6,
.broadwise,
.round_3p,
.round_5p {
  margin: 20px auto 20px;
}

.hightlightAd {
  padding: 0 0 0;
}

@media screen and (max-width: 991px) {
  .banner {
    margin: 1vw auto;
    padding: 0vw;
  }

  .rectangle,
  .crosswise_3p,
  .hightlight,
  .hightlight_5p,
  .collect_5x6,
  .broadwise,
  .round_3p,
  .round_5p {
    margin: 2vw auto;
  }
}

/* ------------------ 安全字 ------------------ */
.notice {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 300;
  color: #000;
  padding: 0 ; 
}

@media screen and (max-width: 991px) {
  .notice {
    display: block;
    text-align: center;
    color: #555;
    font-size: 13px;
    padding: 10px 10px;
    /* 增加上下間距 */
  }
}

/*--  0.攻略   --*/
.container {
  scroll-behavior: smooth;
  position: relative;
  top: 0px;
}

.block_0 {
  background: url("../images/bg_2.png") top center no-repeat,
    url("../images/bg_1.jpg") top center repeat;
}

@media screen and (max-width: 991px) {
  .block_0 {
    background: none;
  }
}

.block_0>ul {
  width: 1200px;
  padding: 30px 30px 0px;
  margin: 0px auto;
  display: flex;
  justify-content: space-evenly;
}

@media screen and (max-width: 991px) {
  .container {
    background-attachment: scroll !important;
  }

  .block_0>ul {
    width: 100%;
    padding: 5px 0px 5px;
    display: flex;
    justify-content: center;
  }

  .block_0>ul li img {
    display: block;
    width: 23vw;
    margin: 3px;
  }
}

/* --  標題設定  -- */
@font-face {
  font-family: 'u8nj';
  src: url("https://events.eslite.com/font/猫啃网风雅宋.ttf");
}

@font-face {
  font-family: GenJyuuGothic-Medium;
  src: url("https://events.eslite.com/font/GenJyuuGothic-Medium.ttf");
}

.titleC {
  margin: 30px auto 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  font-family: "GenJyuuGothic-Medium", sans-serif !important;
  font-weight: 700;

}

.btt {
  background: url(../images/btt.png
) top center no-repeat;
  height: 150px;
  z-index: 1;
  position: relative;
}

.btt h2 {
  font-size: 3.7rem;
  color: #ffffff;
  font-weight: 700;
  padding-top: 70px;

}

.btt h3 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
}

.stt {
  margin: 20px auto;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stt h3 {
  font-size: 2.3rem;
  color: #533b00;
  background-color: #bbe0ec;
  border-radius: 99px;
  padding: 15px 40px 15px;
}

@media screen and (max-width: 991px) {
  .titleC {
    margin: 0px;
    padding: 0;

  }

  .btt {
    background: url(../images/btt_m.png) top center no-repeat;
    background-size: 98%;
    height: 20vw;
    margin: 5vw auto 0vw;

  }

  .btt h2 {
    font-size: 11vw;
    font-weight: 700;
    line-height: 1.1;
    margin-top: -40px;
  }

  .btt h3 {
    font-size: 6vw;
    font-weight: 700;
    line-height: 1.1;
  }

  .stt {
    margin: 2vw 0 2vw;
  }

  .stt h3 {
    padding: 2vw 6vw 2vw;
    font-size: 7vw;
    line-height: 1.1;
  }
}

.blk {
  position: relative;

  overflow: visible;
  margin: -90px auto 25px;
  width: 1200px;
  background: #fce202;
  border: 5px solid #fff;
  padding-top: 90px;
  padding-bottom: 20px;
  /* --- 加入圓角設定 --- */
  border-radius: 25px;
}

@media screen and (max-width: 991px) {
  .blk {
    width: 100%;
    margin: -10.7vw auto 2vw;
    padding-top: 12vw;
    padding-bottom: 2vw;
    border: 0;
    border-top: 1.5vw solid #fff;
    border-bottom: 1.5vw solid #fce202;
  }
}

/*--  1.   --*/
.half ul {
  background: #00c8f5;
}

.dis-for-zasshi3,
.zasshi3 ul li .font p,
.hightlight .font h4,
.collect_5x6 .special,
.hightlightAd-text li:nth-child(1) h4 {
  background: #fc8302;
}

.dis-for-zasshi3 {
  background: #f9b9b4
}

.zasshi3-buy {
  background: #f9b9b4
}

.hightlight_5p .font h4,
.collect_5x6 .s-row h4,
.round_3p .font h4 {
  background: #fc8302;
}

.round_3p img {
  border: 4px solid #f59581;
}

.round_3p .font,
.round_3p .font .price {
  color: #fff;
}

.keywordC .round_5p img {
  border: 5px solid #bbe0ec;
  background-color: #ffff;
}

.keywordC .round_5p .font {
  background: #bbe0ec;
  color: #000000;
}

.rectangle li {
  background: #f59581
}

.zasshi3 ul li h4 {
  color: #fc8302;
  ;
}

big {
  color: #fc8302;
  ;
}

.round_3p big {
  color: #f59581;
}

@media screen and (max-width: 991px) {
  .hightlight_5p ul li:first-child .font h4 {
    color: #ff70af;
  }
}

/*--永久改動--*/

/* 公版語法變動 */
.hightlight img,
.toptitle img,
.circle img,
.published img,
.hightlight_5p img,
.circle_5p img,
.scene img {
  object-fit: contain;
}

.baseline .font {
  padding-top: 5px;
}

.slick-dots li button:before {
  font-size: 30px !important;
  color: #fff !important;
  margin-top: -5px;
}

.crosswise_3p ul,
.broadwise ul {
  flex-wrap: wrap;
}

.nolink:hover {
  transform: scale(1) !important;
}

.special_5p_1 {
  margin: 5px auto;
}

.special_5p_1 .hightlight_5p ul li:first-child img {
  width: 262px;
  height: 262px;
}

.special_5p_1 .hightlight_5p ul li:first-child p {
  padding: 0;
}

.special_5p_1 .title_AA {
  position: relative;
}

.special_5p_1 .title_AA h3 {
  border-left: none;
  padding: 22px 0 0 284px;
  width: 100%;
  position: absolute;
  text-align: center;
  font-family: "Noto Sans TC";
  color: #a6074a;
}

.special_5p_1 .hightlight_5p {
  width: 1200px;
  padding: 0;
  background: url(../images/sp5p_bg.png) top center no-repeat;
}

.special_5p_1 .hightlight_5p ul li:first-child {
  height: auto;
}

.special_5p_1 .hightlight_5p ul li {
  height: auto;
  margin-top: 82px;
}

.recommend_3p .font {
  padding: 10px 9px 10px;
}

@media screen and (max-width: 991px) {
  .baseline .font {
    padding-top: 1vw;
  }

  .rectangle_3p ul li:nth-child(3n + 1) {
    width: 94vw;
    padding: 3vw;
    margin: 1vw 3vw;
  }

  .rectangle_3p ul li:nth-child(3n + 1) a {
    flex-wrap: nowrap;
  }

  .rectangle_3p ul li:nth-child(3n + 1).font {
    padding: 1vw 0vw 1vw 3vw;
  }

  .special_5p_1 .hightlight_5p {
    background: none;
    width: 98%;
    padding: 0;
    margin: 0 auto;
  }

  .special_5p_1 .title_AA {
    margin: 2vw auto;
    height: auto;
  }

  .special_5p_1 .title_AA h3 {
    position: relative;
    padding: 12px;
    color: #ffffff;
    background-color: #a6074a;
    font-size: 1.8rem;
  }

  .special_5p_1 .hightlight_5p ul li {
    margin: 1vw auto;
  }

  .special_5p_1 .hightlight_5p ul li:first-child {
    width: 95vw;
    height: auto;
    margin: 0.5vw;
    padding: 2vw;
  }

  .special_5p_1 .hightlight_5p ul li:first-child .font {
    padding: 0;
  }

  .special_5p_1 .hightlight_5p ul li:first-child img {
    width: 48vw;
    height: 48vw;
  }
}

/*---- 前往XX館 ----*/
.tt-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 30px;
  margin-top: -20px;
  /* 數值越大，按鈕越往上跑 */
}

.tt-btn a {
  font-family: "Hiragino Maru Gothic ProN", "Rounded MT Bold", "Microsoft JhengHei";
  font-size: 46px;
  padding: 22px 46px;
  background: #00c3ed;
  /* 記得使用半形 # */
  border-radius: 99rem;
  color: #fff;
  width: fit-content;
  box-shadow: 0 8px 0 #fff;
  position: relative;
  transition: 0.3s all;
  top: 0;
  margin: 10px;
  font-weight: 900;
  border: #fff solid 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.tt-btn a:hover {
  box-shadow: 0 0px 0 #fff;
  top: 8px;
}

.tt-btn a {
  color: #fff;
}

.tt-btn a span {
  font-size: 24px;
  background: #fff;
  color: #00c3ed;
  width: 46px;
  height: 46px;
  display: inline-flex;
  border-radius: 99rem;
  padding: 0px 0 0px 0;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-left: 10px;
}

@media screen and (max-width: 991px) {
  .tt-btn {
    font-size: 2rem;
    padding: 3vw 2vw;
    margin: 0 auto;
    border-radius: 99rem;
    flex-direction: column;
  }

  .tt-btn a {
    font-size: 7vw;
    padding: 1.5vw 5vw;
    font-weight: 700;
    box-shadow: 0 4px 0 #fff;
  }

  .tt-btn a span {
    font-size: 4vw;
    width: 8vw;
    height: 8vw;
  }
}

/*--  錨點微調--*/
.target-fix {
  position: relative;
  top: 0px;
  display: block;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .target-fix {
    top: -30px;
  }
}

/*--  錨點微調--*/

/*--  nav 選單 固定側邊--*/
@media only screen and (min-width: 992px) {
  .menustyle2 {
    width: 157px;
    display: flex;
    flex-wrap: wrap;
    background: #ff0500;
    z-index: 999;
    height: auto;
    position: fixed;
    top: 200px;
    right: 10px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    /* --- 加入圓角設定 --- */
    border-radius: 15px;
    font-family: GenJyuuGothic-Medium;
  }

  .menustyle2 ul {
    width: 160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .menustyle2 ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px dotted #fff;
  }

  .menustyle2 ul li a span {
    display: block;
  }

  .menustyle2 ul li:last-child {
    border-bottom: none;
  }

  .menustyle2 ul li a {
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    font-size: 17px;
    color: #fff;
    font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", Helvetica,
      Verdana, Arial;
    letter-spacing: 1px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 0px;
    flex-wrap: wrap;
    line-height: 1.2;
  }

  .menustyle2 ul li:hover,
  #TopMenu2 ul li a:hover {
    background: #02cfff;
    transform: scale(1);
    color: #fff !important;
    /* --- 加入圓角設定 --- */
    border-radius: 15px;
  }

  .menustyle2 ul .active {
    color: #fff !important;
    background: #02cfff;
    width: 100%;
    height: 100%;
  }

  .menustyle2 ul li:nth-child(7) a {
    background: #ff0500;
  }
}

@media screen and (max-width: 991px) {
  .menustyle2::-webkit-scrollbar {
    display: none;
  }

  .menustyle2 {
    width: 100%;
    z-index: 998;
    padding: 1vw 1vw;
    display: block;
    background: #ff0500;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    overflow-x: auto;
    justify-content: center;
    white-space: nowrap;
    webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    height: auto;
  }

  .menustyle2 ul {
    flex-wrap: nowrap;
    display: flex;
  }

  .menustyle2 ul li {
    font-size: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 0.5px solid #ffffff;
    box-sizing: border-box;
    padding: 5px 10px;
  }

  .menustyle2 ul li a {
    font-size: 0.9rem;
    letter-spacing: 0px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", Helvetica,
      Verdana, Arial;
    box-sizing: border-box;

  }

  .menustyle2 ul .active {
    color: #fff !important;
    background: #02cfff;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .menustyle2 ul li a:hover {
    color: #fff !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #02cfff;
  }

  .sticky {
    position: fixed;
    top: 0;
  }
}

/*--  nav 選單 固定側邊--*/

#TopMenu {
  transition: background-color 1s, opacity 1s, visibility 1s;
  opacity: 1;
  visibility: visible;
  z-index: 998;
  position: relative;
}

#TopMenu.show {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
}

/*手機版選單下滑出現*/
@media screen and (max-width: 991px) {
  #TopMenu2 {
    transition: background-color 1s, opacity 1s, visibility 1s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    position: absolute;
    top: 0;
  }

  #TopMenu2.show {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
  }

}

/*--goto top--*/
#gotop {
  display: inline-block;
  background-color: #000;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 0px;
  right: 0px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  margin: 30px;
}

#gotop::after {
  position: absolute;
  display: block;
  font-family: FontAwesome;
  content: "　";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
  opacity: 0.5;
  background: url("../images/top.png") center no-repeat;
  background-size: 50%;
  background-position: 85% 35%;
}

#gotop:hover {
  cursor: pointer;
  background-color: #666;
}

#gotop:active {
  background-color: #ccc;
}

#gotop.show {
  opacity: 0.4;
  visibility: visible;
}

@media screen and (max-width: 991px) {
  #gotop {
    bottom: 70px;
    right: 0;
    margin: 2vw;
  }
}

/* share url */
#share {
  display: inline-block;
  background-color: #000;
  opacity: 0.4;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 50px;
  right: 0px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  z-index: 1000;
  margin: 30px;
}

#share::after {
  position: absolute;
  display: block;
  font-family: FontAwesome;
  content: "　";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
  opacity: 0.5;
  background: url("../images/share.png") center no-repeat;
  background-size: 50%;
  background-position: 80% 35%;
}

#share:hover {
  cursor: pointer;
  background-color: #666;
}

#share:active {
  background-color: #666;
}

@media screen and (max-width: 991px) {
  #share {
    bottom: 115px;
    right: 0;
    margin: 2vw;
  }
}

@media screen and (max-width: 991px) {
  html {
    padding-bottom: 80px;
  }
}