@charset "UTF-8";
:root {
  --bg-color: #f1f1f3;
  --block-color: #040000;
  --light-gray-color: #e7e7e7;
  --light-gray-color2: #858585;
  --dark-gray-color: #4f4f4f;
  --dark-red-color: #ab2025;
  --blue-color: #0167AD;
  --lake-color: #53F3FF;
  --green-color: #1E6C69;
  --font-family: "Noto Serif TC", "Helvetica Neue", "Arial", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-family-swei: "Noto Serif TC";
  --font-family-sans: "Noto Sans TC";
  --font-family-bask: Baskervville;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 460px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  z-index: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--txt-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background: #888;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body.bg-watercolor {
  background-color: #0167AD;
  background-image: url(../img/bg_watercolor_top.jpg), url(../img/bg_watercolor_bottom.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, left 0 bottom 5%;
  background-size: 100%, 120%;
}
@media screen and (max-width: 991px) {
  body.bg-watercolor {
    background-size: 200%, 200%;
    background-position: center top, left 0 bottom 0%;
  }
}
body.bg-pure-lake {
  background-color: #B8E1E4;
}

h1,
h2,
h3 {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button {
  transition: all 0.3s 0s ease-in;
  text-decoration: none;
  font-family: var(--font-family-swei);
}

@media (min-width: 992px) {
  :root {
    --border-radius: 100px;
    --sec-inner-left-space: 10%;
    --sec-inner-y-space: 100px;
  }
  html {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}
h2,
h2 > p {
  font-family: var(--font-family-swei);
  font-weight: 400;
  font-size: 3rem;
}
@media screen and (max-width: 991px) {
  h2,
  h2 > p {
    font-size: 2.5rem;
  }
}

h3,
h3 > p {
  font-family: var(--font-family-swei);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}

h4,
h4 > p {
  font-family: var(--font-family-swei);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
}

p {
  font-family: var(--font-family-swei);
  text-align: justify;
  font-size: 1.14rem;
}

section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 60px;
  overflow: hidden;
  font-family: var(--font-family);
}
@media screen and (max-width: 1400px) {
  section .container {
    max-width: 1100px;
  }
}
@media screen and (max-width: 991px) {
  section .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 640px) {
  section .container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
section h2 {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}
section h2 .shine {
  width: 36px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgb(107, 207, 214));
  animation: glowPulse 2s ease-in-out infinite;
}
section h2 .deco {
  height: 24px;
  margin: -10px auto 0;
  display: block;
}
@media screen and (max-width: 991px) {
  section h2 .deco {
    height: 18px;
  }
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
ul.list_num {
  padding-left: 1.4rem;
}
ul.list_num li {
  list-style: decimal;
}

.btn {
  width: 240px;
  margin: 20px 0;
  padding: 10px 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.25rem;
  --font-family: "SweiSpringSugarCJKtc", "Helvetica Neue", "Arial", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: #004b8d;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none; /* 去掉超連結底線 */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, transparent, rgba(0, 191, 255, 0.3), transparent);
  transition: left 0.4s ease;
}
.btn-primary:hover {
  color: #003366;
  background: #f5f9ff;
}
.btn-primary:hover:hover img {
  transform: translateX(4px);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary img {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  animation: arrowLoop 1s ease-in-out infinite; /* 無限左右移動動畫 */
}

@keyframes arrowLoop {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px); /* 往右移 4px */
  }
}
.btn-yellow {
  width: 200px;
  margin: 15px auto;
  padding: 5px 20px;
  font-weight: 500;
  color: #000;
  background-color: #ffcc00;
  display: block;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  border-radius: 50px;
  text-align: center;
}
.btn-yellow:hover {
  background-color: #ffdc52;
  transition: all 0.3s ease;
}

.nav-btn {
  display: none;
  position: fixed;
  width: 85px;
  height: 80px;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .nav-btn {
    display: block;
    top: -10px;
    right: -10px;
  }
}
.nav-btn.active .icon-hamburger > span:nth-child(1) {
  width: 100%;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}
.nav-btn.active .icon-hamburger > span:nth-child(2) {
  display: none;
}
.nav-btn.active .icon-hamburger > span:nth-child(3) {
  width: 100%;
  transform: rotate(45deg) translateY(50%);
  bottom: 50%;
}

.o-0 {
  opacity: 0;
}

.d-n {
  display: none;
}

.icon-hamburger {
  position: absolute;
  width: 30%;
  height: 30%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-hamburger > span {
  display: block;
  position: absolute;
  background-color: var(--block-color);
  border-radius: 10px;
  width: 70%;
  height: 3px;
  right: 0;
  transition: 0.5s;
}
.icon-hamburger > span:nth-child(1) {
  top: 10%;
}
.icon-hamburger > span:nth-child(2) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.icon-hamburger > span:nth-child(3) {
  bottom: 10%;
}

header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.4rem;
  background-color: transparent;
  transition: height 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
}
@media screen and (max-width: 991px) {
  header {
    height: 62px;
  }
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
header.scrolled .logo {
  width: 120px;
  margin: 10px 0 0 20px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  header.scrolled .logo {
    width: 90px;
    margin: 0px auto;
  }
}
header.scrolled .logo img.logo-black {
  display: block;
}
header.scrolled .logo img.logo-white {
  display: none;
}
header.scrolled ul li a {
  color: #1E3A62;
  text-shadow: none;
}
header.active {
  height: 100vh;
  background-color: rgb(41, 208, 221);
}
header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  header .container {
    width: 70%;
    margin: 0 auto;
  }
}
header .logo {
  width: 220px;
  margin-top: 30px;
  margin-left: 30px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  header .logo {
    width: 140px;
    margin: 13px auto;
  }
}
header .logo img {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header .logo img {
    margin: 10px auto;
    display: block;
  }
}
header .logo img.logo-black {
  display: none;
}
header nav.o-0 {
  opacity: 1;
}
header nav.d-n {
  display: block;
}
@media screen and (max-width: 991px) {
  header nav {
    transition: opacity 0.5s ease;
    width: 100%;
    margin: 8vh auto 0;
  }
  header nav.o-0 {
    opacity: 0;
  }
  header nav.d-n {
    display: none;
  }
}
header ul {
  overflow: hidden;
  display: flex;
}
@media screen and (max-width: 991px) {
  header ul {
    display: block;
  }
}
header ul li {
  position: relative;
}
@media screen and (max-width: 991px) {
  header ul li {
    margin-right: 0;
  }
  header ul li::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    transform: translate(-101%, 0);
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
header ul li a {
  padding: 24px 24px;
  color: #fff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  header ul li a {
    padding: 24px 16px;
  }
}
header ul li a:hover {
  color: #0059D8;
  transition: all 0.3s ease;
}
header ul li p {
  font-family: var(--font-family-swei);
  font-size: 1.2rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  position: relative;
  z-index: 2;
  transition: 0.5s;
}
@media screen and (max-width: 991px) {
  header ul li p {
    font-size: 1.8rem;
  }
}
header ul li:hover {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  header ul li:hover::before {
    width: 1.8rem;
  }
  header ul li:hover p {
    color: #fff;
  }
  header ul li:hover p:nth-of-type(2) {
    transform: translateX(2rem);
  }
  header ul li:hover::after {
    transform: translate(0, 0);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#campaign-kv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#campaign-kv .first-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#campaign-kv .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#campaign-kv .story-progress {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 25%;
  left: 10px;
  right: 10px;
  z-index: 9;
}
#campaign-kv .bar-wrapper {
  flex: 1;
  background: rgba(255, 255, 255, 0.256);
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
}
#campaign-kv .bar-fill {
  width: 0%;
  height: 100%;
  background: #ffcc00;
  border-radius: 2px;
}
#campaign-kv .bigtitle {
  width: 660px;
  height: 400px;
  left: calc(50% - 330px);
  top: 25vh;
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  #campaign-kv .bigtitle {
    width: 80%;
    left: 10%;
    top: 20vh;
  }
}
#campaign-kv .bigtitle .logotype img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}
#campaign-kv .bigtitle .logotype img:first-child {
  position: relative;
}
#campaign-kv .bigtitle .logotype img.bling1 {
  width: 45px;
  left: 15%;
  top: 0;
  animation: blingBling 1.6s 0s infinite forwards;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  #campaign-kv .bigtitle .logotype img.bling1 {
    width: 7%;
    left: 12%;
  }
}
#campaign-kv .bigtitle .logotype img.bling2 {
  width: 45px;
  left: initial;
  right: 10%;
  top: 40%;
  animation: blingBling 2s 1s infinite forwards;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  #campaign-kv .bigtitle .logotype img.bling2 {
    width: 7%;
    right: 12%;
  }
}
#campaign-kv .bigtitle p {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 480px) {
  #campaign-kv .bigtitle p {
    font-size: 1rem;
  }
}
#campaign-kv .bigtitle p span {
  display: block;
}
@media screen and (max-width: 991px) {
  #campaign-kv .bigtitle p span {
    display: inline;
  }
}
#campaign-kv .deco-anchor {
  width: 100px;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  #campaign-kv .deco-anchor {
    width: 80px;
    transform: scale(0.7);
    transform-origin: left bottom;
  }
}
@media screen and (max-width: 480px) {
  #campaign-kv .deco-anchor {
    width: 50px;
  }
}
#campaign-kv .deco-anchor .deco-line1 {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 20%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
#campaign-kv .deco-anchor .deco-line2 {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 60%;
  background-color: rgba(255, 255, 255, 0.8);
}
#campaign-kv .deco-anchor .juguang {
  position: absolute;
  left: 30%;
  top: 40%;
}
#campaign-kv .deco-anchor .coordinate {
  position: absolute;
  left: 70%;
  top: 10%;
}

@keyframes blingBling {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(3px 3px 6px rgba(121, 217, 255, 0.6));
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}
#explore {
  height: 90vh;
}
#explore iframe {
  width: 100%;
  height: 100%;
}

#travel-task {
  background-image: url(../img/bg_watercolor_lg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
#travel-task > .container {
  padding: 60px 0 90px;
  overflow: initial;
}
#travel-task .task-bar {
  margin: 40px 20px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  color: #1E3A62;
  border-radius: 50px;
  background-image: url(../img/task_bar_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  box-shadow: 0 10px 16px 0 rgba(78, 170, 237, 0.8);
}
@media screen and (max-width: 991px) {
  #travel-task .task-bar {
    margin: 40px 0;
    border-radius: 20px;
    background-image: url(../img/task_bar_bg_mo.png);
    background-size: contain;
  }
}
#travel-task .task-bar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
#travel-task .task-bar ul li {
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  #travel-task .task-bar ul li {
    width: 50%;
  }
}
#travel-task .task-bar ul li:first-child {
  font-size: 2rem;
  margin-right: 50px;
}
@media screen and (max-width: 991px) {
  #travel-task .task-bar ul li:first-child {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
#travel-task .task-bar ul li.task {
  padding: 10px 0 10px 30px;
  font-size: 1.25rem;
  background-image: url(../img/star.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
@media screen and (max-width: 480px) {
  #travel-task .task-bar ul li.task {
    padding: 10px 0 10px 20px;
    font-size: 1rem;
    background-size: 15px;
  }
}
#travel-task .task-bar ul li.task:hover {
  cursor: pointer;
  color: #00B8C7;
  animation: FlashShow 0.3s infinite forwards;
}

@keyframes FlashShow {
  0% {
    background-image: url(../img/star.svg);
  }
  50% {
    background-image: none;
  }
  100% {
    background-image: url(../img/star.svg);
  }
}
.task-wrap {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.task-wrap .sepline {
  width: 100%;
  height: 60px;
  margin: 20px 0;
  background-image: url(../img/sepline.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.task-wrap.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .task-wrap.reverse {
    flex-direction: initial;
  }
}
.task-wrap .task-text {
  width: calc(50% - 80px);
  margin: 0 40px;
}
@media screen and (max-width: 991px) {
  .task-wrap .task-text {
    width: 100%;
    margin: 30px 0;
  }
}
.task-wrap .task-text h3 {
  font-size: 2rem;
}
.task-wrap .task-text p {
  margin: 1rem 0;
  letter-spacing: 1px;
}
.task-wrap .task-box {
  width: calc(50% - 80px);
  min-height: 320px;
  margin: 0 40px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .task-wrap .task-box {
    width: 100%;
    margin: 0 auto;
  }
}
.task-wrap .task-box .qna-frame {
  width: 90%;
  max-width: 360px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  background-image: url(../img/water.png);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  color: #000000;
  border-radius: 20px;
  box-shadow: 0 6px 12px 0 #A0D0E1;
}
.task-wrap .task-box .qna-frame h4 {
  margin-left: 1.8rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 2rem;
  text-indent: -1.4rem;
}
.task-wrap .task-box .qna-frame p {
  margin: 1rem 0;
  padding: 10px 20px;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 50px;
  display: block;
}
.task-wrap .task-box .qna-frame .option {
  margin: 15px 0;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 50px;
  text-align: center;
  animation: highlight 3s infinite; /* 動畫設定 */
}
.task-wrap .task-box .qna-frame .option.b {
  animation-delay: 1s;
}
.task-wrap .task-box .qna-frame .option.c {
  animation-delay: 2s;
}
@keyframes highlight {
  0% {
    border-color: transparent;
  }
  10% {
    border-color: #7ED7CB;
  } /* 開始圈選 */
  30% {
    border-color: #7ED7CB;
  } /* 保持圈選 */
  40% {
    border-color: transparent;
  } /* 結束 */
  100% {
    border-color: transparent;
  }
}
.task-wrap .task-box .slideshow {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
}
.task-wrap .task-box .slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: slideshowFade 12s infinite;
  box-shadow: 8px 8px 0px #163F60;
}
.task-wrap .task-box .slideshow img:nth-child(1) {
  animation-delay: 0s;
}
.task-wrap .task-box .slideshow img:nth-child(2) {
  animation-delay: 2s;
}
.task-wrap .task-box .slideshow img:nth-child(3) {
  animation-delay: 4s;
}
.task-wrap .task-box .slideshow img:nth-child(4) {
  animation-delay: 6s;
}
.task-wrap .task-box .slideshow img:nth-child(5) {
  animation-delay: 8s;
}
.task-wrap .task-box .slideshow img:nth-child(6) {
  animation-delay: 10s;
}
.task-wrap .task-box .tutor {
  width: 460px;
  height: 200px;
  padding-left: 80px;
  box-sizing: border-box;
  position: absolute;
  bottom: -60px;
  left: -250px;
  background-image: url(../img/home_pic2.png);
  background-repeat: no-repeat;
  background-size: contain;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .task-wrap .task-box .tutor {
    width: 340px;
    padding-left: 50px;
    left: initial;
    right: 0;
    bottom: -90px;
  }
}
.task-wrap .task-box .tutor h5 {
  padding: 60px 0 10px 0;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 991px) {
  .task-wrap .task-box .tutor h5 {
    padding: 40px 0 10px 0;
  }
}
.task-wrap .task-box .tutor .aka {
  color: #333;
  font-size: 0.875rem;
}
.task-wrap .task-box .tutor .name {
  color: #333;
  font-size: 1.125rem;
}

@keyframes slideshowFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.task-three {
  background-color: #163F60;
}
.task-three .container {
  padding: 60px 0 0 0;
  overflow: initial;
}
.task-three .container .task-wrap {
  align-items: flex-start;
}
.task-three .container .pic3 {
  width: 80%;
  max-width: 360px;
  margin-left: 80px;
  display: block;
  position: relative;
  z-index: 3;
}
.task-three .container .pic4 {
  width: 60%;
  max-width: 320px;
  margin-top: -30px;
  position: absolute;
  z-index: 2;
  left: -10%;
  top: 0;
}
@media screen and (max-width: 991px) {
  .task-three .container .pic4 {
    left: 0;
  }
}

.task-snapspot .text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.task-snapspot .text h3 {
  font-size: 2rem;
  margin-left: 20px;
}
.task-snapspot > p {
  margin-bottom: 30px;
  text-align: center;
}
.task-snapspot > h4 {
  background: #2196F3;
  text-align: center;
  padding: 10px;
  font-weight: 500;
}
.task-snapspot .btn-primary {
  margin: 20px auto 50px;
  display: block;
}
.task-snapspot .checkin-card {
  width: 100%;
  margin: 10px 0 30px;
}
.task-snapspot .checkin-card .card {
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
}
.task-snapspot .checkin-card .card .cover {
  width: 65%;
  max-width: 240px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 100%;
  overflow: hidden;
}
.task-snapspot .checkin-card .card h3 {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.8rem;
}
.task-snapspot .checkin-card .card p {
  font-size: 1rem;
}
.task-snapspot .checkin-card .card p.location {
  margin: 0 0 0;
  padding: 0;
  color: #888;
}
.task-snapspot .checkin-card .card p img {
  width: 20px;
  margin-top: -6px;
}
.task-snapspot .checkin-card .card a {
  margin-top: 20px;
  padding: 10px 0 10px;
  text-align: center;
  display: block;
  color: var(--blue-color);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.4s ease;
  background-color: #eee;
  border-radius: 10px;
}
.task-snapspot .checkin-card .card a:hover {
  transition: all 0.4s ease;
  background-color: #d2fcff;
}
.task-snapspot .swiper-button-prev {
  left: 0;
  top: 40%;
}
.task-snapspot .swiper-button-next {
  right: 0;
  top: 40%;
}
.task-snapspot .swiper-button-next:after,
.task-snapspot .swiper-button-prev:after {
  font-size: 2rem;
}

#souvenir {
  margin-top: -31px;
  background-image: url(../img/bg_water.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
#souvenir .deco-text {
  width: 40%;
  margin-top: -30px;
}
@media screen and (max-width: 991px) {
  #souvenir .deco-text {
    width: 60%;
    margin-top: -10px;
  }
}
#souvenir h2 {
  color: #0167AD;
}
#souvenir .container {
  display: flex;
  flex-wrap: wrap;
}
#souvenir .container .hat-wrap {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  #souvenir .container .hat-wrap {
    width: 100%;
    flex-direction: initial;
  }
}
#souvenir .container .hat-wrap .pic {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 991px) {
  #souvenir .container .hat-wrap .pic {
    width: 100%;
  }
}
#souvenir .container .hat-wrap .pic img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  #souvenir .container .hat-wrap .pic img {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    display: block;
  }
}
#souvenir .container .hat-wrap .hat-intro {
  width: 35%;
  margin-right: 5%;
}
@media screen and (max-width: 991px) {
  #souvenir .container .hat-wrap .hat-intro {
    width: 100%;
  }
}
#souvenir .container .bag-wrap {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  #souvenir .container .bag-wrap {
    width: 100%;
    margin-top: 30px;
  }
}
#souvenir .container .bag-wrap .pic {
  width: 60%;
}
@media screen and (max-width: 991px) {
  #souvenir .container .bag-wrap .pic {
    width: 100%;
  }
}
#souvenir .container .bag-wrap .pic img {
  width: 100%;
  margin-left: -40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 991px) {
  #souvenir .container .bag-wrap .pic img {
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 0;
    display: block;
  }
}
#souvenir .container .bag-wrap .bag-intro {
  width: 40%;
}
@media screen and (max-width: 991px) {
  #souvenir .container .bag-wrap .bag-intro {
    width: 100%;
  }
}
#souvenir .container h3 {
  margin: 20px 0;
  font-size: 1.5rem;
  line-height: 2rem;
}
#souvenir .container h3 span {
  font-size: 1rem;
  display: block;
  color: #666;
}
#souvenir .container p {
  margin: 0.5rem 0;
}
#souvenir .container a {
  padding: 5px 10px 5px 10px;
  margin-top: 20px;
  margin-left: -10px;
  color: #333;
  transition: all 0.4s ease;
}
#souvenir .container a:hover {
  color: #fff;
  background-color: #000;
  transition: all 0.4s ease;
}
#souvenir .container .icon-zoom {
  width: 20px;
  margin-top: -5px;
}

#media-spread {
  background-image: url(../img/bg_watercolor.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
#media-spread .container h2 {
  margin-bottom: 0;
  color: #fff;
}
#media-spread .container > p {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}
#media-spread .card-swiper .swiper-wrapper {
  padding-bottom: 45px;
}
#media-spread .card-swiper .card {
  padding: 15px 15px;
  margin: 0 15px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 12px 0 #A0D0E1;
}
@media screen and (max-width: 991px) {
  #media-spread .card-swiper .card {
    margin: 0 15px;
  }
}
#media-spread .card-swiper .card .cover {
  width: 100%;
}
#media-spread .card-swiper .card h3 {
  margin: 20px 0 10px;
}
#media-spread .card-swiper .card p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
  color: #555;
}
#media-spread .card-swiper .card a {
  margin-top: 20px;
  padding: 10px 0;
  display: block;
  color: var(--blue-color);
  background-color: #eee;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 10px;
  transition: all 0.4s ease;
}
#media-spread .card-swiper .card a:hover {
  transition: all 0.4s ease;
  background-color: #d2fcff;
}
#media-spread .card-swiper .swiper-pagination-bullet {
  background: #fff;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
#media-spread .card-swiper .swiper-pagination-bullet-active {
  background: #ffcc00;
  opacity: 1;
}

#banner-top {
  position: relative;
  height: 60vh;
  position: relative;
  z-index: 1;
  /* 顆粒層 */
}
@media screen and (max-width: 1480px) {
  #banner-top {
    height: 75vh;
  }
}
#banner-top.workshop {
  background-image: url(../img/bannerbg_workshop.jpg?v=0907);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 991px) {
  #banner-top.workshop {
    height: 105vh;
    background-image: url(../img/bannerbg_workshop_mo.jpg?v=0907);
    background-position: center bottom;
  }
}
#banner-top.contest {
  background-image: url(../img/bannerbg_contest.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 991px) {
  #banner-top.contest {
    height: 105vh;
    background-image: url(../img/bannerbg_contest_mo.jpg);
    background-position: center bottom;
  }
}
#banner-top::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url(../img/noise.png); /* 半透明噪點 PNG */
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 0;
  animation: grainFlicker 10s linear forwards infinite;
}

.workshop .container {
  height: 100%;
  padding: 120px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .workshop .container {
    padding: 40px 0 0;
    flex-direction: column-reverse;
  }
}
.workshop .container .banner-left {
  width: 46%;
  margin-right: 2%;
}
@media screen and (max-width: 991px) {
  .workshop .container .banner-left {
    width: 100%;
    height: auto;
  }
}
.workshop .container .banner-left .slideshow {
  position: relative;
  width: 80%;
  margin: 40px auto 0;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 991px) {
  .workshop .container .banner-left .slideshow {
    max-width: 450px;
    margin: 30px auto 50px;
  }
}
.workshop .container .banner-left .slideshow p {
  font-size: 0.75rem;
  position: absolute;
  bottom: -28px;
  right: 0;
  z-index: 2;
  color: #fff;
}
.workshop .container .banner-left .slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slideshowFade 12s infinite;
  box-shadow: 2px 12px 20px rgba(46, 54, 100, 0.3);
  border: 8px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
}
.workshop .container .banner-left .slideshow img:nth-child(1) {
  animation-delay: 0s;
}
.workshop .container .banner-left .slideshow img:nth-child(2) {
  animation-delay: 2s;
}
.workshop .container .banner-left .slideshow img:nth-child(3) {
  animation-delay: 4s;
}
.workshop .container .banner-left .slideshow img:nth-child(4) {
  animation-delay: 6s;
}
.workshop .container .banner-left .slideshow img:nth-child(5) {
  animation-delay: 8s;
}
.workshop .container .banner-left .slideshow img:nth-child(6) {
  animation-delay: 10s;
}
.workshop .container .banner-right {
  width: 46%;
}
@media screen and (max-width: 991px) {
  .workshop .container .banner-right {
    width: 100%;
    margin: 0;
  }
}
.workshop .container .banner-right p {
  font-size: 1.12rem;
}
.workshop .container .banner-right .btn-primary {
  margin-top: 40px;
}
.workshop .bn-title {
  width: 100%;
  margin-left: -20px;
  animation: shineText 3s linear infinite forwards;
}
@media screen and (max-width: 991px) {
  .workshop .bn-title {
    max-width: 480px;
  }
}

@keyframes grainFlicker {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  5% {
    opacity: 0.8;
  }
  90% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes shineText {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.75);
  }
  100% {
    filter: brightness(1);
  }
}
#workshop-info {
  margin-top: -60px;
  padding-top: 60px;
  background-image: url(../img/bg_watercolor.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
#workshop-info .container {
  display: flex;
  flex-wrap: wrap;
}
#workshop-info .info {
  width: calc(60% - 80px);
  margin-right: 80px;
  font-size: 1rem;
}
@media screen and (max-width: 991px) {
  #workshop-info .info {
    width: 100%;
    margin: 0 0 30px;
  }
}
#workshop-info .info h3 {
  margin: 1.3rem 0 0.2rem;
  color: #53F3FF;
  letter-spacing: 1px;
  font-size: inherit;
}
#workshop-info .info p {
  font-size: inherit;
}
#workshop-info .info ul.custom-bullet {
  margin: 1rem 0 0 1.8rem;
  list-style-image: url("../img/icon-check.svg");
}
#workshop-info .info ul.custom-bullet li {
  margin: 5px 0;
  letter-spacing: 1px;
  font-size: inherit;
}
#workshop-info .info .btn-yellow {
  margin: 20px 0;
}
#workshop-info .lecturer-box {
  width: 40%;
  padding: 30px;
  background-color: #fff;
  background-image: url(../img/box_bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  border-radius: 20px;
  color: #333;
}
@media screen and (max-width: 991px) {
  #workshop-info .lecturer-box {
    width: 100%;
    padding: 30px 20px;
  }
}
#workshop-info .lecturer-box h3 {
  color: #0167AD;
}
#workshop-info .lecturer-box .lecturer .avatar {
  width: 240px;
  margin: 30px auto;
  border-radius: 100%;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 991px) {
  #workshop-info .lecturer-box .lecturer .avatar {
    width: 160px;
    margin: 10px auto;
  }
}
#workshop-info .lecturer-box .lecturer > p {
  text-align: center;
  font-family: inherit;
}
#workshop-info .lecturer-box .lecturer > p.aka {
  letter-spacing: 2px;
}
#workshop-info .lecturer-box .lecturer > p.name {
  font-size: 1.5rem;
  font-weight: bold;
}
#workshop-info .lecturer-box ul {
  margin: 1rem 0 0 1.8rem;
}
#workshop-info .lecturer-box ul li {
  list-style: disc;
}

#apply-rules {
  background-image: url(../img/bg_water.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
#apply-rules .deco-text {
  width: 36%;
  max-width: 500px;
  position: absolute;
  top: -20px;
  left: 6%;
}
@media screen and (max-width: 991px) {
  #apply-rules .deco-text {
    min-width: 200px;
    left: 0;
  }
}
#apply-rules .container {
  display: flex;
  flex-wrap: wrap;
}
#apply-rules .container h2 {
  color: #0167AD;
  font-weight: 700;
}
#apply-rules .container h3 {
  margin-bottom: 10px;
  color: #0167AD;
}
#apply-rules .container > p {
  color: #333;
}
#apply-rules .box {
  width: calc(50% - 40px);
  padding: 30px;
  box-sizing: border-box;
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #apply-rules .box {
    width: 100%;
    margin: 10px 0;
    padding: 20px;
  }
}
#apply-rules .box:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  #apply-rules .box:first-of-type {
    margin-right: 0;
  }
}
#apply-rules .box:nth-of-type(2) {
  margin-left: 20px;
}
@media screen and (max-width: 991px) {
  #apply-rules .box:nth-of-type(2) {
    margin-left: 0;
  }
}
#apply-rules .box p {
  font-weight: 500;
}
#apply-rules .box .gift-table {
  width: 100%;
  margin-top: 20px;
}
#apply-rules .box .gift-table tr td {
  width: 50%;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
#apply-rules .box .gift-table .price {
  color: #666;
  font-size: 0.875rem;
  font-weight: normal;
}
#apply-rules .box .gift-table .gift {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#apply-rules .box-full {
  margin: 60px 0;
  width: 100%;
  color: #333;
}
#apply-rules blockquote {
  margin: 10px 0;
  padding: 15px 0 15px 15px;
  border-left: 2px solid #ffcc00;
}
#apply-rules blockquote em {
  font-weight: bold;
}
#apply-rules .table-step {
  margin-top: 20px;
}
#apply-rules .table-step .col {
  display: flex;
  flex-wrap: wrap;
}
#apply-rules .table-step .col .td-row {
  width: 75%;
  padding: 10px;
  margin-bottom: 2px;
  background-color: #fff;
  color: #333;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #apply-rules .table-step .col .td-row {
    width: 100%;
  }
}
#apply-rules .table-step .col .td-row:first-of-type {
  width: calc(25% - 2px);
  margin-right: 2px;
  font-weight: bold;
  background-color: #0167AD;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  #apply-rules .table-step .col .td-row:first-of-type {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }
}
#apply-rules .table-step .col .td-row p {
  text-align: center;
}

#notice {
  background-image: url(../img/bg_watercolor.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
#notice.empty-bg {
  background-image: none;
}
#notice .container {
  max-width: 960px;
}
#notice .subtitle {
  margin: 30px 0 10px;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  letter-spacing: 4px;
  font-family: var(--font-family-sans);
  font-size: 1.12rem;
  font-weight: 700;
}
#notice p {
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#notice ul {
  margin-left: 1.5rem;
}
#notice ul.upper-roman li {
  list-style: upper-roman;
}
#notice ul li {
  list-style: decimal;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#notice ul li em {
  font-weight: 500;
}
#notice .refund {
  width: 100%;
  margin: 20px 0;
}
#notice .refund tr td {
  padding: 10px;
  text-align: center;
  color: #333;
  background-color: #fff;
  border-right: 2px solid #0167AD;
  border-bottom: 2px solid #0167AD;
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#notice .refund tr td.item {
  color: #0167AD;
  background-color: #A9D4E1;
}
#notice a {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  font-family: inherit;
}
#notice a:hover {
  color: #53F3FF;
}

.contest .container {
  height: 100%;
  padding: 120px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: initial;
}
@media screen and (max-width: 991px) {
  .contest .container {
    padding: 40px 0 0;
    flex-direction: column-reverse;
  }
}
.contest .banner-left {
  width: 46%;
  margin-right: 2%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .contest .banner-left {
    width: 100%;
    height: 50%;
  }
}
.contest .banner-left .pic3 {
  width: 80%;
  max-width: 360px;
  margin-left: 80px;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 5%;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  .contest .banner-left .pic3 {
    left: -2%;
  }
}
.contest .banner-left .pic4 {
  width: 60%;
  max-width: 320px;
  margin-top: -30px;
  position: absolute;
  z-index: 2;
  left: -10%;
  bottom: 50px;
}
.contest .banner-right {
  width: 46%;
}
@media screen and (max-width: 991px) {
  .contest .banner-right {
    width: 100%;
    height: 50%;
    padding-top: 90px;
    box-sizing: border-box;
  }
}
.contest .banner-right p {
  margin-bottom: 1rem;
  font-size: 1.12rem;
}

@keyframes noticeTag {
  0% {
    background-color: rgb(255, 130, 5);
  }
  50% {
    background-color: rgb(255, 206, 46);
  }
  100% {
    background-color: rgb(255, 130, 5);
  }
}
#contest-info {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #B8E1E4 10%, #B8E1E4 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
#contest-info .container {
  overflow: visible;
}
#contest-info .container h2 {
  color: var(--blue-color);
}
#contest-info .info {
  font-size: 1rem;
}
#contest-info .info h3 {
  margin: 1.3rem 0 0.2rem;
  color: var(--blue-color);
  letter-spacing: 1px;
  font-size: inherit;
}
#contest-info .info p {
  font-size: inherit;
}
#contest-info .info ul {
  margin: 0.5rem 0 0 1.25rem;
}
#contest-info .info ul li {
  list-style: decimal;
}
#contest-info .info ul li em {
  font-weight: 700;
}
#contest-info .table-topic {
  margin: 10px 0 30px;
}
#contest-info .table-topic .col {
  display: flex;
  flex-wrap: wrap;
}
#contest-info .table-topic .col .row {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 2px solid #B8E1E4;
  border-right: 2px solid #B8E1E4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 991px) {
  #contest-info .table-topic .col .row {
    padding: 5px;
    font-size: 0.875rem;
  }
}
#contest-info .table-topic .col .row.item {
  background-color: var(--blue-color);
  color: #fff;
  font-weight: bold;
}
#contest-info .table-topic .col .row.item2 {
  background-color: var(--green-color);
  color: #fff;
  font-weight: bold;
}
#contest-info .table-topic .col .row.theme {
  color: var(--blue-color);
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 991px) {
  #contest-info .table-topic .col .row.theme {
    font-size: 1rem;
    text-align: center;
  }
}
#contest-info .table-topic .col .row .right-now {
  padding: 0 8px;
  box-sizing: border-box;
  position: absolute;
  left: -20px;
  top: 30px;
  transform: rotate(-20deg);
  background-color: rgb(255, 130, 5);
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 0.875rem;
  animation: noticeTag 1s linear 0s infinite forwards;
}
@media screen and (max-width: 991px) {
  #contest-info .table-topic .col .row .right-now {
    top: 10px;
    transform: rotate(-20deg) scale(0.8);
  }
}
#contest-info .table-topic .col .row p {
  width: 100%;
  text-align: center;
}
#contest-info .table-topic .col .row img {
  width: 60px;
  margin: 10px;
  border-radius: 50%;
  overflow: hidden;
}
#contest-info .table-topic .btn-view-works {
  width: 120px;
  margin: 5px 10px;
  padding: 6px 10px;
  background-color: #ffcc00;
  color: #000000;
  border-radius: 10px;
}

#contest-gift {
  position: relative;
}
#contest-gift .deco-text {
  width: 36%;
  max-width: 500px;
  position: absolute;
  top: 50px;
  left: 5%;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  #contest-gift .deco-text {
    min-width: 200px;
    top: 100px;
    left: 0;
  }
}
#contest-gift .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
#contest-gift .container h2 {
  color: #0167AD;
  font-weight: 700;
}
#contest-gift .container h3 {
  margin-bottom: 10px;
  padding: 10px 20px;
  background: #ffcc00;
  display: inline-block;
  color: #000;
}
#contest-gift .box {
  width: calc(50% - 40px);
  padding: 0 30px 30px;
  box-sizing: border-box;
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #contest-gift .box {
    width: 100%;
    margin: 10px 0;
    padding: 20px;
  }
}
#contest-gift .box:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  #contest-gift .box:first-of-type {
    margin-right: 0;
  }
}
#contest-gift .box:nth-of-type(2) {
  margin-left: 20px;
}
@media screen and (max-width: 991px) {
  #contest-gift .box:nth-of-type(2) {
    margin-left: 0;
  }
}
#contest-gift .box p {
  letter-spacing: 0;
  font-weight: 500;
}
#contest-gift .box p.mention {
  text-align: center;
  position: relative;
  font-size: 1.12rem;
}
#contest-gift .box p.mention span {
  font-size: 0.875rem;
  color: #777;
  letter-spacing: 0;
}
#contest-gift .box img {
  padding: 10px 15px;
}
@media screen and (max-width: 991px) {
  #contest-gift .box img {
    padding: 15px 10px;
  }
}
#contest-gift .box .gift-table {
  width: 100%;
  margin-top: 20px;
}
#contest-gift .box .gift-table tr td {
  width: 50%;
  padding-bottom: 15px;
  text-align: center;
  vertical-align: top;
}
#contest-gift .box .gift-table tr td.hat-anim {
  position: relative;
}
#contest-gift .box .gift-table tr td.hat-anim .hat1 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  animation: changeHat 4s linear infinite;
}
#contest-gift .box .gift-table tr td.hat-anim .hat2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

@keyframes changeHat {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#contest-upload h2,
#contest-wall h2 {
  color: var(--blue-color);
}
#contest-upload h2.white,
#contest-wall h2.white {
  color: #fff;
}
#contest-upload .zone,
#contest-wall .zone {
  padding: 30px;
  min-height: 300px;
  background-color: #fff;
  border-radius: 20px;
}
#contest-upload .zone > p,
#contest-wall .zone > p {
  text-align: center;
}
#contest-upload ul.category,
#contest-wall ul.category {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#contest-upload ul.category li,
#contest-wall ul.category li {
  margin: 5px;
  padding: 0 10px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
}
#contest-upload ul.category li.active,
#contest-wall ul.category li.active {
  background-color: #fff;
  color: var(--blue-color);
}
#contest-upload ul.category a,
#contest-wall ul.category a {
  margin-left: 10px;
  display: inline-block;
  color: #ffcc00;
}

#contest-winner h2 {
  font-size: 2rem;
  color: #fff;
}
#contest-winner h3 {
  margin: 30px 0 10px;
  color: var(--lake-color);
}
#contest-winner .row {
  display: flex;
  flex-wrap: wrap;
}
#contest-winner .row .col {
  width: 76%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-right: 1px solid #0167AD;
  border-bottom: 1px solid #0167AD;
}
#contest-winner .row .col:first-child {
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  #contest-winner .row .col {
    width: 100%;
    padding: 10px 20px;
  }
  #contest-winner .row .col:first-child {
    width: 100%;
    margin-top: 10px;
  }
}
#contest-winner .row .col p {
  width: 100%;
  color: #0167AD;
  font-size: 1rem;
}
#contest-winner .row .col span {
  font-size: 1rem;
}
#contest-winner .row .col img {
  margin-right: 10px;
}
#contest-winner .vote-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#contest-winner .vote-wrap .w-card {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  #contest-winner .vote-wrap .w-card {
    margin-bottom: 10px;
  }
}
#contest-winner .vote-wrap .w-card h4 {
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: #0167AD;
  text-align: center;
  letter-spacing: 3px;
}
#contest-winner .vote-wrap .w-card p {
  color: #333;
  text-align: center;
}
#contest-winner .vote-wrap .w-card img {
  margin: 0;
  max-width: initial;
  width: auto;
  height: 180px;
}
@media screen and (max-width: 1200px) {
  #contest-winner .vote-wrap .w-card img {
    height: 140px;
  }
}
@media screen and (max-width: 640px) {
  #contest-winner .vote-wrap .w-card img {
    height: 90px;
  }
}

#contest-notice {
  background-image: url(../img/bg_watercolor_light.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
}
#contest-notice .container {
  max-width: 960px;
}
#contest-notice .container h2 {
  color: var(--blue-color);
}
#contest-notice .subtitle {
  margin: 30px 0 10px;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  letter-spacing: 4px;
  font-family: var(--font-family-sans);
  font-size: 1.12rem;
  font-weight: 700;
}
#contest-notice p {
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#contest-notice ul {
  margin-left: 1.8rem;
}
#contest-notice ul li {
  list-style: decimal;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#contest-notice ul li em {
  font-weight: 500;
}
#contest-notice .refund {
  width: 100%;
  margin: 20px 0;
}
#contest-notice .refund tr td {
  padding: 10px;
  text-align: center;
  color: #333;
  background-color: #fff;
  border-right: 2px solid #0167AD;
  border-bottom: 2px solid #0167AD;
  font-family: var(--font-family-sans);
  font-size: 1rem;
}
#contest-notice .refund tr td.item {
  color: #0167AD;
  background-color: #A9D4E1;
}
#contest-notice a {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  font-family: inherit;
}
#contest-notice a:hover {
  color: #53F3FF;
}

#banner-text {
  height: 400px;
  padding-top: 90px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #banner-text {
    height: 60vh;
  }
}
@media screen and (max-width: 650px) {
  #banner-text {
    height: 70vh;
  }
}
@media screen and (max-width: 375px) {
  #banner-text {
    height: 100vh;
  }
}
#banner-text.puretext {
  height: initial;
}
#banner-text .container {
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
#banner-text .container .bn-title {
  width: 85%;
  max-width: 400px;
  margin: 0 auto 20px;
  display: block;
}
#banner-text .container p {
  color: #fff;
}
#banner-text .spot {
  width: 160px;
  height: 160px;
  position: absolute;
  background-size: contain;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot {
    width: 90px;
    height: 90px;
  }
}
#banner-text .spot.spot1 {
  left: -2%;
  top: 0%;
  background-image: url(../img/snapspot/spot01.png);
  animation: floatUp 6s ease 0s forwards;
}
#banner-text .spot.spot2 {
  left: 8%;
  top: 20%;
  background-image: url(../img/snapspot/spot02.png);
  animation: floatUp 7s ease 0.5s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot2 {
    width: 160px;
    height: 160px;
    top: 57%;
  }
}
#banner-text .spot.spot3 {
  left: 1%;
  top: 37%;
  background-image: url(../img/snapspot/spot03.png);
  animation: floatUp 8s ease 0s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot3 {
    top: 80%;
  }
}
#banner-text .spot.spot4 {
  right: 20%;
  top: 7%;
  background-image: url(../img/snapspot/spot04.png);
  animation: floatUp 8s ease 2s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot4 {
    right: 8%;
    top: 65%;
  }
}
#banner-text .spot.spot5 {
  right: 13%;
  top: -1%;
  background-image: url(../img/snapspot/spot05.png);
  animation: floatUp 6s ease 0s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot5 {
    top: 9%;
    right: -2%;
  }
}
#banner-text .spot.spot6 {
  right: 7%;
  top: 20%;
  background-image: url(../img/snapspot/spot06.png);
  animation: floatUp 7s ease 3s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot6 {
    width: 160px;
    height: 160px;
    top: 72%;
    right: 15%;
  }
}
#banner-text .spot.spot7 {
  right: -2%;
  top: 32%;
  background-image: url(../img/snapspot/spot07.png);
  animation: floatUp 8s ease 0.5s forwards;
}
@media screen and (max-width: 1200px) {
  #banner-text .spot.spot7 {
    top: 85%;
  }
}
#banner-text .box {
  width: calc(50% - 40px);
  padding: 30px;
  box-sizing: border-box;
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #banner-text .box {
    width: 100%;
    margin: 10px 0;
    padding: 20px;
  }
}
#banner-text .box:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  #banner-text .box:first-of-type {
    margin-right: 0;
  }
}
#banner-text .box:nth-of-type(2) {
  margin-left: 20px;
}
@media screen and (max-width: 991px) {
  #banner-text .box:nth-of-type(2) {
    margin-left: 0;
  }
}
#banner-text .box p {
  letter-spacing: 1px;
  font-weight: 500;
}
#banner-text .box .gift-table {
  width: 100%;
  margin-top: 20px;
}
#banner-text .box .gift-table tr td:first-of-type {
  width: 50%;
}
#banner-text .box .gift-table .magazine {
  max-width: 220px;
}
#banner-text .box .gift-table .price {
  color: #666;
}

@keyframes floatUp {
  0% {
    transform: translateY(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#snapspot-info {
  color: #fff;
}
#snapspot-info h2 {
  color: #fff;
}
#snapspot-info .info > h3 {
  margin: 1.3rem 0 0.2rem;
  color: #53F3FF;
  letter-spacing: 1px;
  font-weight: 600;
}
#snapspot-info .info > p {
  margin-bottom: 30px;
  letter-spacing: 1px;
}
#snapspot-info .info > p.luckyevent {
  margin: 0;
  padding-bottom: 5px;
  color: #ffcc00;
  font-weight: 600;
}
#snapspot-info .info .btn-yellow {
  width: 160px;
  margin: 20px 10px 20px 0;
  display: inline-block;
  letter-spacing: 0;
}
#snapspot-info .snap-step-wrap {
  display: flex;
  flex-wrap: wrap;
}
#snapspot-info .snap-step-wrap .box {
  width: calc(33.3333333333% - 40px);
  margin: 20px;
  padding: 0 30px 30px;
  box-sizing: border-box;
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #snapspot-info .snap-step-wrap .box {
    width: 100%;
    margin: 10px 0;
  }
}
#snapspot-info .snap-step-wrap .box:first-of-type {
  margin-left: 0;
}
#snapspot-info .snap-step-wrap .box:last-of-type {
  margin-right: 0;
}
#snapspot-info .snap-step-wrap .box h3 {
  margin: 0 0 20px;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #000;
  display: inline-block;
}
#snapspot-info .snap-step-wrap .box p {
  letter-spacing: 1px;
  font-weight: 500;
}
#snapspot-info .snap-step-wrap .box .gift-table {
  width: 100%;
  margin-top: 20px;
}
#snapspot-info .snap-step-wrap .box .gift-table tr td:first-of-type {
  width: 50%;
}
#snapspot-info .snap-step-wrap .box .gift-table .magazine {
  max-width: 220px;
}
#snapspot-info .snap-step-wrap .box .gift-table .price {
  color: #666;
}
#snapspot-info .snap-gift {
  margin: 20px auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#snapspot-info .snap-gift .gift-item {
  width: calc(33% - 40px);
  margin: 0 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.25rem;
}
@media screen and (max-width: 991px) {
  #snapspot-info .snap-gift .gift-item {
    width: calc(50% - 20px);
    margin: 10px;
    font-size: 0.875rem;
  }
}
#snapspot-info .snap-gift .gift-item .hat-img,
#snapspot-info .snap-gift .gift-item .bag-img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
#snapspot-info .snap-gift .gift-item .gift-name {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}
#snapspot-info .snap-gift .gift-item .gift-name span {
  display: block;
}
@media screen and (max-width: 991px) {
  #snapspot-info .snap-gift .gift-item .gift-name span {
    display: inline;
  }
}

#qanda .tabs > ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
#qanda .tabs > ul li {
  margin: 0 10px;
}
#qanda .tabs > ul li a {
  padding: 5px 10px;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
#qanda .tabs > ul li.active a {
  padding: 5px 40px;
  display: inline-block;
  border: 2px solid #fff;
  background: #fff;
  color: var(--blue-color);
  border-radius: 10px;
}
#qanda .qna-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#qanda .qna-wrap .quest {
  width: calc(33.3333333333% - 60px);
  margin: 20px 10px;
  padding: 30px 20px 50px;
  border-radius: 20px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 991px) {
  #qanda .qna-wrap .quest {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 512px) {
  #qanda .qna-wrap .quest {
    width: calc(100% - 40px);
  }
}
#qanda .qna-wrap .quest h3 {
  margin-left: 2.2rem;
  margin-bottom: 1rem;
  text-indent: -2.2rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 2rem;
  color: var(--blue-color);
}
#qanda .qna-wrap .quest h3.green {
  color: var(--green-color);
}
#qanda .qna-wrap .quest ul {
  position: relative;
  z-index: 2;
}
#qanda .qna-wrap .quest ul li a {
  padding: 10px 20px;
  box-sizing: border-box;
  color: #333;
  border: 2px solid transparent;
  border-radius: 50px;
  display: block;
  transition: all ease 0.4s;
}
#qanda .qna-wrap .quest ul li a:hover {
  cursor: pointer;
  border: 2px solid #7ED7CB;
  transition: all ease 0.4s;
}
#qanda .qna-wrap .quest .artwork {
  width: 40%;
  height: 80px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.winner-headline .container {
  padding: 130px 0 0;
  color: #fff;
  text-align: center;
}
.winner-headline .container h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.winner-headline .container p {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.winner-frame {
  margin: 0 auto 20px;
}
.winner-frame .month-wrap {
  margin-bottom: 1.25rem;
  color: #ffcc00;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.winner-frame .month-wrap .month {
  margin: 0 10px;
  padding: 4px 12px;
  display: block;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  opacity: 0.6;
}
.winner-frame .month-wrap .month.active {
  background-color: #ffcc00;
  border: 2px solid #ffcc00;
  color: #000;
  opacity: 1;
}
.winner-frame .start-print {
  padding: 30px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .winner-frame .start-print {
    padding: 15px;
  }
}
.winner-frame .start-print h4 {
  margin: 10px 0;
  text-align: center;
  font-size: 1rem;
}
.winner-frame .start-print h4 span {
  padding-right: 1rem;
  font-size: inherit;
  color: #2196F3;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .winner-frame .start-print h4 span {
    margin-bottom: 10px;
    padding-right: 0;
    display: block;
    text-align: center;
  }
}
.winner-frame table {
  width: 100%;
}
.winner-frame table tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.winner-frame table tr td {
  padding: 4px 40px;
  box-sizing: border-box;
  font-size: 1rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .winner-frame table tr td {
    padding: 4px 10px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 460px) {
  .winner-frame table tr td {
    padding: 4px 4px;
    font-size: 0.875rem;
  }
}
.winner-frame table tr td:first-child {
  width: 30%;
  text-align: center;
  letter-spacing: 4px;
}
@media screen and (max-width: 991px) {
  .winner-frame table tr td:first-child {
    width: initial;
  }
}
.winner-frame table tr td.caption {
  background-color: #568bb6;
  color: #fff;
}

/* ============================================================
Common Use
============================================================ */
.em-orange {
  color: #FF7542;
}

.em-lake {
  color: #62edff;
}

.sepline {
  width: 100%;
  max-width: 1100px;
  height: 24px;
  margin: 0 auto;
  background-image: url(../img/sepline.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .sepline {
    background-size: 150%;
  }
}

.desktop {
  display: block;
}
@media screen and (max-width: 991px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .mobile {
    display: block;
  }
}

footer {
  padding-top: 40px;
  background: #DBFDFF;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
footer ul.host {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer ul.host li {
  margin: 10px 20px;
}
footer ul.host li h6 {
  color: #639ECE;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
}
footer ul.host li img {
  max-height: 80px;
}
@media screen and (max-width: 991px) {
  footer ul.host li img {
    max-height: 54px;
  }
}
footer ul.host li img.wider {
  max-height: 128px;
}
footer .copyright {
  margin-top: 40px;
  padding-bottom: 30px;
  background: #163F60;
  color: #fff;
  font-size: 0.875rem;
  padding: 1.25rem;
}
footer .copyright p {
  text-align: center;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
}
footer .copyright .contact {
  margin-bottom: 0.5rem;
}
footer .copyright .contact a {
  color: #fff;
  font-family: var(--font-family-sans);
}
footer .copyright .contact a:hover {
  color: var(--lake-color);
}

.blocker {
  z-index: 99;
}
.blocker .modal {
  padding: 30px;
  max-width: 720px;
}
.blocker .modal .feedback-text h3 {
  margin: 1rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--blue-color);
}
.blocker .modal .feedback-text p {
  color: #333;
  font-size: 1rem;
}
.blocker .modal .feedback-text .gotit {
  display: block;
  margin: 30px auto 10px;
  padding: 10px 20px;
  border: 2px solid var(--blue-color);
  color: var(--blue-color);
  border-radius: 50px;
  text-align: center;
  letter-spacing: 1px;
  transition: background-color 0.3s, color 0.3s;
}
.blocker .modal .feedback-text .gotit:hover {
  background-color: var(--blue-color);
  color: #fff;
}
.blocker .modal .feedback-text + .close-modal {
  display: none;
}
.blocker .modal a.close-modal {
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  background-image: url(../img/icon-close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.blocker .modal .zoom-gift {
  width: 100%;
}
.blocker .modal .zoom-gift img {
  width: 100%;
}
.blocker .modal .schedule-text h3 {
  text-align: center;
}
.blocker .modal .schedule-text h4 {
  color: var(--blue-color);
  font-weight: 600;
}
.blocker .modal .schedule-text p {
  margin: 10px 0 20px;
  text-align: center;
}
.blocker .modal .schedule-text p.little {
  font-size: 0.875rem;
}
.blocker .modal .schedule-text table {
  width: 100%;
  margin: 10px 0 30px;
}
.blocker .modal .schedule-text table thead tr th {
  background-color: var(--blue-color);
  color: #fff;
  text-align: center;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.blocker .modal .schedule-text table tr td {
  padding: 5px;
  background-color: #d9eef6;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .blocker .modal .schedule-text table tr td {
    font-size: 0.75rem;
  }
}
.blocker .modal .schedule-text table tr td:first-of-type {
  width: 12%;
  min-width: 40px;
}
.blocker .modal .schedule-text table tr td:nth-last-of-type(2) {
  width: 20%;
  background-color: #eee;
}