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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  border: none;
}


* {
  line-height: 1.5;
}

.project {
  font-family: Noto Sans TC;
  overflow: hidden;
}

.hide {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.coming_container {
  display: block !important;
  justify-content: center;
}
.coming_container ul {
  display: block !important;
}

.coming {
  text-align: center;
  font-size: 24px;
  padding: 20px 0 30px;
}
@media (max-width: 980px) {
  .coming {
    font-size: 18px;
    padding: 10px 0 20px;
  }
}

.start_game_btn {
  display: block;
  position: fixed;
  background: linear-gradient(180deg, #f88a57 0%, #b02109 100%);
  border: 2px solid rgb(250, 160, 0);
  box-shadow: 0px 5px 0px 0px rgb(134, 53, 24);
  border-radius: 50%;
  z-index: 20;
  right: 37px;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease-in-out;
  bottom: 30px;
  color: white;
  font-weight: 700;
  text-align: center;
  padding-top: 52px;
}
@media (max-width: 980px) {
  .start_game_btn {
    padding-top: 25px;
    width: 60px;
    height: 60px;
    right: 6px;
  }
}
.start_game_btn:hover {
  background: linear-gradient(180deg, #b02109 0%, #f88a57 100%);
  border: 2px solid rgb(250, 160, 0);
}
.start_game_btn:hover:after {
  opacity: 1;
  z-index: 1;
}
.start_game_btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #b02109 0%, #f88a57 100%);
  opacity: 0;
  transition: all 0.25s linear;
  z-index: -1;
}
.start_game_btn:before {
  content: "";
  position: absolute;
  background: url("../images/start_dice.svg") center/contain no-repeat;
  width: 36px;
  height: 36px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 980px) {
  .start_game_btn:before {
    width: 22px;
    height: 22px;
    top: 10px;
  }
}
.start_game_btn.show {
  bottom: 140px;
}
@media (max-width: 980px) {
  .start_game_btn.show {
    bottom: 100px;
  }
}
.start_game_btn.up {
  bottom: 210px;
}
@media (max-width: 980px) {
  .start_game_btn.up {
    bottom: 150px;
  }
}
.start_game_btn span {
  position: relative;
  z-index: 10;
}
@media (max-width: 980px) {
  .start_game_btn span {
    font-size: 10px;
  }
}

.start_btn {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 12px 130px 12px 85px;
  border-radius: 100px;
  margin-top: 30px;
  text-decoration: none;
}
@media (max-width: 980px) {
  .start_btn {
    padding: 10px 80px 10px 50px;
  }
}
.start_btn span {
  font-weight: bold;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .start_btn span {
    font-size: 20px;
  }
}
.start_btn span:after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: url("../images/start_dice.svg") center/contain no-repeat;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
@media (max-width: 980px) {
  .start_btn span:after {
    width: 30px;
    height: 30px;
    right: -45px;
  }
}

.header {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  display: block;
  background: url("../images/banner.png") center/contain no-repeat;
}
@media (max-width: 980px) {
  .header {
    background: url("../images/banner_m.png") top/contain no-repeat;
    padding-bottom: 127.4666666667%;
  }
}
.header .nav {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.header .nav.down {
  position: fixed;
  top: 0;
  background: rgba(247, 219, 145, 0.6);
  z-index: 100;
}
@media (max-width: 980px) {
  .header .nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100vh;
    left: 0;
    opacity: 0;
    z-index: -100;
    overflow-y: auto;
    transition: all 0.3s linear;
  }
  .header .nav.open {
    display: block;
    opacity: 1;
    z-index: 100;
    top: 0;
    background-color: #ffe5b2;
    background: linear-gradient(#f3d675, #fae1b6, #f8cba0);
  }
}
.header .logo_link {
  background: url("../images/header_logo.svg") center/contain no-repeat;
  width: 83px;
  height: 44px;
  margin-right: 60px;
  opacity: 0;
  display: block;
  position: relative;
  z-index: -10;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .header .logo_link {
    margin-right: 60px;
  }
}
@media (max-width: 1200px) {
  .header .logo_link {
    margin-right: 15px;
    width: 70px;
    height: 37px;
  }
}
@media (max-width: 980px) {
  .header .logo_link {
    margin-right: 0;
    margin-bottom: 10px;
    opacity: 1;
    width: 110px;
    height: 58px;
    z-index: 10;
  }
}
.header .logo_link.show {
  opacity: 1;
  z-index: 10;
}
.header .logo_link img {
  width: 100%;
}
.header .fb,
.header .line {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-left: 7px;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px 23px;
  box-sizing: border-box;
}
@media (max-width: 980px) {
  .header .fb,
  .header .line {
    margin: 10px;
    padding: 23px;
    width: 43px;
    height: 43px;
  }
}
.header .fb {
  background-image: url("../images/fb_orange.svg");
}
.header .line {
  background-image: url("../images/line_orange.svg");
}
.header .nav_wrap {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
}
@media (max-width: 1440px) {
  .header .nav_wrap {
    padding: 10px 0;
  }
}
@media (max-width: 1200px) {
  .header .nav_wrap {
    padding: 10px 20px;
  }
}
@media (max-width: 980px) {
  .header .nav_wrap {
    padding: 50px 20px 30px;
  }
}
.header .nav_wrap nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 980px) {
  .header .nav_wrap nav > ul {
    flex-direction: column;
    gap: 10px;
  }
}
.header .nav_wrap nav > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav_wrap nav > ul > li > a:not(.logo_link, .fb, .line) {
  display: inline-block;
  display: block;
  padding: 7px 12px;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-bottom: 6px solid transparent;
}
@media (max-width: 1440px) {
  .header .nav_wrap nav > ul > li > a:not(.logo_link, .fb, .line) {
    font-size: 18px;
    padding: 7px 10px;
  }
}
@media (max-width: 1200px) {
  .header .nav_wrap nav > ul > li > a:not(.logo_link, .fb, .line) {
    font-size: 16px;
    padding: 7px 8px;
  }
}
@media (max-width: 980px) {
  .header .nav_wrap nav > ul > li > a:not(.logo_link, .fb, .line) {
    font-size: 18px;
    padding: 10px 10px;
  }
}
.header .nav_wrap nav > ul > li > a:not(.logo_link, .fb, .line):hover {
  border-bottom: 6px solid rgb(255, 86, 41);
}

.menu_btn {
  display: none;
}
@media (max-width: 980px) {
  .menu_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgb(208, 85, 29);
    z-index: 300;
    box-sizing: border-box;
    border-radius: 50%;
  }
  .menu_btn::before, .menu_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 3px;
    background: rgb(208, 85, 29);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  }
  .menu_btn::before {
    box-shadow: 0 -8px 0 rgb(208, 85, 29), 0 8px 0 rgb(208, 85, 29);
  }
  .menu_btn::after {
    opacity: 0;
  }
  .menu_btn.open::before {
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .menu_btn.open::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.language {
  position: relative;
  background: rgb(208, 85, 29);
  border: 2px solid rgb(208, 85, 29);
  border-radius: 117px;
  padding: 8px 38px 8px 17px;
  color: white;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 980px) {
  .language {
    margin-top: 20px;
    padding: 8px 45px 8px 25px;
  }
}
.language .txt {
  transform: translateY(-1px);
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  word-break: keep-all;
}
.language .txt:after {
  content: "";
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  right: -23px;
  background-image: url("../images/language_arr.svg");
  width: 16px;
  height: 9px;
  transition: transform 0.3s ease-in-out;
}
.language .language_select {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 125px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.language .language_select:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}
@media (max-width: 980px) {
  .language .language_select {
    width: 100%;
    min-width: 0;
    box-shadow: none;
  }
  .language .language_select:before {
    display: none;
  }
}
.language .language_select li {
  width: 100%;
  display: block;
}
.language .language_select li a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  color: rgb(208, 85, 29);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-bottom: none !important;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.language .language_select li a:hover {
  background: rgb(208, 85, 29);
  color: #ffffff;
  border-bottom: none !important;
}
.language .language_select .zh {
  border-radius: 10px 10px 0 0;
}
.language .language_select .ja {
  border-radius: 0 0 10px 10px;
}
.language.open .txt:after {
  transform: translateY(-50%) rotate(180deg);
}
.language.open .language_select {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

section .container {
  width: 100%;
  margin: 0 auto;
}

h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 980px) {
  h2 {
    margin: 0 auto 25px;
  }
}
h2 figure {
  margin: 0 auto;
}
h2 .zh_title {
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(87, 11, 11);
}
@media (max-width: 980px) {
  h2 .zh_title {
    font-size: 30px;
  }
}
@media (max-width: 980px) {
  h2 .en_title {
    transform: scale(0.8);
  }
}

.subtitle {
  text-align: center;
  font-size: 24px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .subtitle {
    font-size: 16px;
  }
}

.sec .container {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1440px) {
  .sec .container {
    max-width: 1000px;
    padding: 0 20px;
  }
}

.linear {
  position: relative;
  background: linear-gradient(180deg, #f88a57 0%, #b02109 100%);
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid rgb(250, 160, 0);
  box-shadow: 0px 5px 0px 0px rgb(134, 53, 24);
  transition: all 0.25s linear;
}
@media (max-width: 980px) {
  .linear {
    padding: 5px 20px;
  }
}
.linear.disabled {
  background: rgb(197, 197, 197);
  border: 2px solid rgb(163, 163, 163);
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
}
.linear.disabled span:after {
  background-image: url("../images/start_dice_disabled.png");
}
.linear::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(180deg, #b02109 0%, #f88a57 100%);
  opacity: 0;
  transition: all 0.25s linear;
  z-index: -1;
}
.linear:hover::before {
  opacity: 1;
  z-index: 1;
}
.linear span {
  font-weight: 700;
  letter-spacing: 5%;
  position: relative;
  z-index: 1;
  font-size: 24px;
}
@media (max-width: 980px) {
  .linear span {
    font-size: 16px;
  }
}
.linear span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.pure_color {
  border-radius: 50px;
  background-color: white;
  border: 2px solid rgb(208, 85, 29);
  box-shadow: 0px 5px 0px 0px rgb(134, 53, 24);
  transition: all 0.25s linear;
}
.pure_color:hover {
  background: rgb(255, 86, 41);
  border: 2px solid rgb(255, 86, 41);
  box-shadow: none;
}
.pure_color:hover span {
  color: white;
}
.pure_color:hover span::after {
  background-image: url("../images/location_white.svg");
}
.pure_color.disabled {
  background: rgb(197, 197, 197);
  border: 2px solid rgb(163, 163, 163);
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
}
.pure_color.disabled span {
  color: white;
}
.pure_color.disabled span:after {
  background-image: url("../images/location_white.svg");
}
.pure_color span {
  color: rgb(208, 85, 29);
  font-weight: 700;
  position: relative;
  transition: all 0.25s linear;
}
.pure_color span:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/location_orange.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  transition: all 0.25s linear;
}
@media (max-width: 980px) {
  .pure_color span:after {
    width: 20px;
    height: 20px;
    left: calc(100% + 5px);
  }
}

h2 {
  position: relative;
}
h2:before, h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.title_cloud::before {
  background-image: url("../images/cloud_l.svg");
  width: 90px;
  height: 49.5px;
  right: calc(100% + 16px);
}
@media (max-width: 980px) {
  .title_cloud::before {
    width: 60px;
    height: 33px;
    right: calc(100% - 10px);
  }
}
.title_cloud::after {
  background-image: url("../images/cloud_r.svg");
  width: 75px;
  height: 42px;
  left: calc(100% + 16px);
  top: 60%;
}
@media (max-width: 980px) {
  .title_cloud::after {
    width: 50px;
    height: 28px;
    left: calc(100% - 10px);
  }
}

.title_dice::before, .title_dice:after {
  width: 70px;
  height: 68px;
}
@media (max-width: 980px) {
  .title_dice::before, .title_dice:after {
    width: 40px;
    height: 39px;
  }
}
.title_dice:before {
  background-image: url("../images/dice_l.svg");
  right: calc(100% + 18px);
  top: 21px;
}
@media (max-width: 980px) {
  .title_dice:before {
    right: 100%;
    top: 15px;
  }
}
.title_dice:after {
  background-image: url("../images/dice_r.svg");
  left: calc(100% + 18px);
}
@media (max-width: 980px) {
  .title_dice:after {
    left: 100%;
  }
}

section a.disabled,
.sec a.disabled {
  background: rgb(197, 197, 197);
  border: 2px solid rgb(163, 163, 163);
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
}

.store_info_item {
  padding-left: 33px;
  font-size: 16px;
  letter-spacing: 5%;
  color: black;
  position: relative;
  margin-bottom: 12px;
}
.store_info_item:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 26px;
  height: 26px;
  left: 0;
  top: 2px;
}
@media (max-width: 980px) {
  .store_info_item:before {
    width: 20px;
    height: 20px;
  }
}
.store_info_item.location:before {
  background-image: url("../images/circle_location_icon.svg");
}
.store_info_item.tel:before {
  background-image: url("../images/circle_phone_icon.svg");
}
.store_info_item.info a {
  color: black;
}
.store_info_item.info:before {
  background-image: url("../images/circle_information_icon.svg");
}
.store_info_item.description:before {
  background-image: url("../images/circle_present_icon.svg");
}

.info_list {
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .info_list {
    font-size: 16px;
  }
}
.info_list li {
  margin-bottom: 16px;
  padding-left: 35px;
  color: rgb(0, 0, 0);
  position: relative;
  line-height: 1.7;
}
.info_list li:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  top: 3px;
  left: 0;
}
.info_list li:last-child {
  margin-bottom: 0;
}

.location::before {
  background-image: url("../images/circle_location_icon.svg");
}

.time::before {
  background-image: url("../images/circle_date_icon.svg");
}

.info::before {
  background-image: url("../images/circle_information_icon.svg");
}

.footer {
  position: relative;
  background: white;
}
.footer .container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding-top: 85px;
  padding-bottom: 35px;
}
@media (max-width: 1440px) {
  .footer .container {
    padding: 85px 20px 35px;
  }
}
@media (max-width: 980px) {
  .footer .container {
    padding: 60px 20px 40px;
  }
}
.footer .footer_link_group {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .footer .footer_link_group {
    gap: 20px;
  }
}
@media (max-width: 980px) {
  .footer .footer_link_group li {
    width: 80px;
  }
  .footer .footer_link_group li img {
    width: 100%;
  }
}
.footer .footer_list_group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.footer .footer_list_group li {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.footer .footer_list_group li span {
  display: inline-block;
  min-width: 70px;
  word-break: keep-all;
  font-size: 14px;
}
.footer .footer_list_group li p {
  font-size: 13.5px;
  padding-left: 10px;
}
@media (max-width: 980px) {
  .footer .footer_list_group li p {
    padding: 10px 40px 0 70px;
  }
}
@media (max-width: 980px) {
  .footer .footer_list_group--cooperation {
    flex-wrap: wrap;
    flex: 1 1 100%;
  }
}
.footer .copyright {
  background: rgb(65, 46, 34);
  color: white;
  text-align: center;
  padding: 13px;
  font-weight: 400;
  font-family: "Parkinsans", sans-serif;
}
@media (max-width: 980px) {
  .footer .copyright {
    font-size: 14px;
  }
}

.goTop {
  display: block;
  position: fixed;
  z-index: 20;
  right: 50px;
  width: 73px;
  height: 80px;
  background: url("../images/gotop.svg") center/contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  bottom: -20px;
}
@media (max-width: 980px) {
  .goTop {
    right: 10px;
    width: 50px;
    height: 55px;
  }
}
.goTop.show {
  opacity: 1;
  bottom: 30px;
  pointer-events: auto;
}
.goTop.up {
  bottom: 100px;
}
@media (max-width: 980px) {
  .goTop.up {
    bottom: 80px;
  }
}

.en {
  font-family: "Noto Sans", sans-serif;
  word-break: break-word;
  letter-spacing: 0;
}
.en .header .logo_link {
  margin-right: 40px;
}
.en .header .nav_wrap {
  max-width: 1200px;
}
.en .header .nav_wrap nav ul li a:not(.logo_link, .fb, .line) {
  font-size: 17px;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}
.en .events .btn_group a span {
  letter-spacing: 0;
}
.en .events .tab a {
  font-size: 18px;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  padding: 7px 5px;
}
.en .title_cloud::before {
  right: calc(100% + 5px);
}
.en .title_cloud::after {
  left: calc(100% + 5px);
}
@media (max-width: 980px) {
  .en .title_dice:before {
    right: calc(100% + 5px);
  }
}
@media (max-width: 980px) {
  .en .title_dice:after {
    left: calc(100% + 5px);
  }
}

.ja {
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
}