@charset "UTF-8";
/*網頁全共用設定*/
/*網路字體引用CSS設定*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*思源黑體 套用名字 Noto Sans TC */
/*股溝的ICONFONT*/
/*@import url("https://fonts.googleapis.com/icon?family=Material+Icons");*/
/*font-awesome4-7 iconfont*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/* =============== base 頁面基本設定 ============ */
html,
body {
  font-family: "Noto Sans TC", "PingFang TC", Microsoft JhengHei, "微軟正黑體", Helvetica, sans-serif;
  position: relative;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
} /*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  word-break: break-all;
}
a:hover, a:focus {
  text-decoration: none;
}

label a {
  display: block;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
  /*image-rendering:-moz-crisp-edges;*/ /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
} /*圖片更銳利化*/
/* 應用於GIF和PNG圖片; 防止邊緣模糊 */
img[src$=".gif"],
img[src$=".png"] {
  image-rendering: auto;
}

/* 移除svg 縮放設定 */
button,
a,
input:focus,
button:focus {
  outline: none !important;
} /*連結或點擊的按鈕 不顯示外虛線*/
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.navbar {
  margin: 0 auto;
  padding: 0 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 60px;
}

.nav-logo {
  max-width: 160px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333333;
  font-size: 1.1rem;
}

@media screen and (min-width: 600px) {
  .navbar {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 0;
  }
  .padding-lr {
    padding: 0 25px;
  }
}
@media screen and (max-width: 400px) {
  .nav-logo {
    max-width: 150px;
  }
  .nav-menu {
    gap: 10px;
  }
  .nav-menu li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 330px) {
  .nav-logo {
    max-width: 120px;
  }
  .nav-menu li a {
    font-size: 14px;
  }
}
.header {
  position: relative;
  padding: 1rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 830px;
}

.header-container {
  position: relative;
  z-index: 1;
  margin: 6.5rem auto 5rem;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  top: 70px;
  gap: 30px;
}

.header-hubao {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
}
.header-hubao.is-shown {
  -webkit-animation: jumpFromBottom 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation: jumpFromBottom 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.header-hubao img {
  max-width: 60%;
  height: auto;
  z-index: 5;
  position: relative;
  top: -10px;
  left: -20px;
}

.header-main {
  width: 100%;
  opacity: 0;
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}
.header-main.is-shown {
  -webkit-animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.header-main img {
  position: relative;
  z-index: 10;
  width: 80%;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important;
}
.header-main img:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.main-btn-mask {
  position: absolute;
  top: 0px;
  right: 60px;
  width: 480px;
  height: 107px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 11;
  visibility: hidden;
}
.main-btn-mask.is-shown {
  -webkit-animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  visibility: visible;
}
.main-btn-mask::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0%; /* 初始位置在遮罩外 */
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.55)), color-stop(50%, rgba(255, 255, 255, 0.7)), color-stop(70%, rgba(255, 255, 255, 0.55)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 25%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.55) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg); /* 將光束傾斜，增加金屬反光真實感 */
  /* 執行硬體加速動畫 */
  -webkit-animation: textSweepShine 3.5s infinite;
  animation: textSweepShine 3.5s infinite;
  will-change: left;
}

/* zoom in */
@-webkit-keyframes popIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* text shiny mask */
@-webkit-keyframes textSweepShine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes textSweepShine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  } /* 停頓 */
}
/* jumpFromBottom */
@-webkit-keyframes jumpFromBottom {
  0% {
    -webkit-transform: translate3d(0, 250px, 0) scale(0.01);
    transform: translate3d(0, 250px, 0) scale(0.01);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes jumpFromBottom {
  0% {
    -webkit-transform: translate3d(0, 250px, 0) scale(0.01);
    transform: translate3d(0, 250px, 0) scale(0.01);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}
@media screen and (min-width: 600px) {
  .header {
    height: 830px;
  }
  .header-container {
    margin: 5rem auto;
  }
  .header-content {
    top: 70px;
  }
}
@media screen and (max-width: 599px) {
  .header-hubao img {
    left: -10px;
  }
  .main-btn-mask {
    right: 10%;
    width: 80%;
    height: 18%;
  }
}
@media screen and (max-width: 500px) {
  .header {
    height: 690px;
  }
  .header-content {
    top: 45px;
  }
}
@media screen and (max-width: 450px) {
  .header {
    height: 570px;
  }
  .header-content {
    top: 20px;
  }
}
@media screen and (max-width: 380px) {
  .header {
    height: 530px;
  }
  .header-content {
    top: 15px;
  }
}
@media screen and (max-width: 330px) {
  .header-content {
    top: 5px;
  }
  .header {
    height: 480px;
  }
}
@media screen and (max-width: 280px) {
  .header-content {
    top: -20px;
  }
  .header {
    height: 370px;
  }
}
/* =============== 主內容區寬度 ============ */
.wrapper {
  max-width: 100%;
  overflow: clip;
  position: relative;
  margin: 0;
  padding: 0;
}

/* 內容區 */
.container {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background: url("../img/main-bg.jpg") no-repeat top #0d4280;
  background-size: 100% auto;
}

.coin-shine-mask {
  position: absolute;
  top: 115px; /* 距離頂部的位置 */
  right: 45px; /* 距離右側的位置 */
  width: 20.5%; /* 遮罩寬度 (覆蓋金幣) */
  aspect-ratio: 1/1; /* 強制維持正圓形 */
  border-radius: 50%; /* 將遮罩切成圓形，讓光澤只在金幣內出現 */
  overflow: hidden;
  pointer-events: none; /* 確保不阻擋圖片原有的點擊事件 */
  z-index: 10;
}
.coin-shine-mask::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* 初始位置在遮罩外 */
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.65)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(70%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 25%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg); /* 將光束傾斜，增加金屬反光真實感 */
  /* 執行硬體加速動畫 */
  -webkit-animation: sweepShine 3s infinite;
          animation: sweepShine 3s infinite;
  will-change: left;
}

.text-shine-mask {
  position: absolute;
  /* [精準微調區] 針對「抽大獎」文字區塊的整體邊界定位 */
  top: 220px;
  left: 15%;
  width: 76%;
  height: 170px;
  /* 核心技術 1：多邊形裁剪 (Polygon Clipping) */
  /* 順時針定義 4 個頂點 (左上, 右上, 右下, 左下)，緊密貼合斜體文字的上下緣 */
  clip-path: polygon(12% 24%, 97% 5%, 90% 80%, 3% 100%);
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.text-shine-mask::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%; /* 光束寬度稍窄，營造銳利感 */
  height: 100%;
  /* 核心技術 2：色彩增值渲染 */
  /* 讓白色漸層與底圖的金色產生「過曝」的真實金屬反光，避免畫面發白渾濁 */
  mix-blend-mode: color-dodge;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  /* 動畫配速：與金幣動畫錯開 1 秒，避免視覺疲勞 */
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  will-change: left;
}

/* coin shiny mask */
@-webkit-keyframes sweepShine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes sweepShine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%; /* 停頓等待下一次迴圈 (佔總時間 85%) */
  }
}
.container::-webkit-scrollbar {
  display: none;
}

/* 主內容 */
.main {
  width: 100%;
  position: relative;
}

.section {
  padding: 1.5rem 0;
}
.section .section-title {
  position: relative;
  margin-bottom: 1rem;
}
.section .section-title h2 {
  margin: 0 auto;
}

/* --------- section 1 -------- */
.event-bg {
  position: relative;
  z-index: 15;
}
.event-bg:first-child {
  padding-top: 5px;
}

.card-container {
  padding: 0 20px 0 25px;
  -o-object-fit: contain;
  object-fit: contain;
  overflow: hidden;
}

.card-img:nth-child(odd) {
  position: relative;
  left: 5px;
}

.card-img:nth-child(even) {
  margin: 25px 0 60px;
  position: relative;
  left: 18px;
}

/* --------- section2 注意事項 -------- */
.noticeArea {
  position: relative;
  padding: 20px;
}
.noticeArea .notice-title {
  text-align: center;
  padding: 5px 0px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
  -ms-flex-align: self-start;
  align-items: self-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.noticeArea .notice-container {
  padding: 0 15px;
  border: 2px solid #0d4280;
  border-radius: 20px;
  background-color: #fef9ed;
  -webkit-box-shadow: 10px -10px 0px #d73539;
          box-shadow: 10px -10px 0px #d73539;
  width: 85%;
  margin: 0 auto;
}
.noticeArea .notice-content {
  padding: 10px 0;
  border-bottom: 1px dashed #c7c7c7;
  position: relative;
}
.noticeArea .notice-content:last-child {
  border-bottom: none;
}
.noticeArea .notice-content .inner-notice-title {
  padding: 10px 15px;
  font-size: 1rem;
}
.noticeArea .notice-content .notice-content_list {
  border-top: dashed 1px #0d4280;
}
.noticeArea .notice-content .notice-content_list li {
  list-style: none;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  margin: 0.5rem auto;
}
.noticeArea .notice-content .notice-content_list li .list-num {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 0.5rem 0 1.2rem;
}
.noticeArea .notice-content .notice-content_list li .list-content {
  display: block;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list {
  margin: 0 auto;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list li {
  position: relative;
  padding-left: 2rem;
  display: block;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0.4rem;
}
.noticeArea .notice-content .notice-content_list .event-padding {
  padding: 0 1rem;
}

/* 隱藏預設的三角形箭頭 */
summary {
  list-style: none;
  outline: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  color: #2d3748;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

.toggle-icon::after {
  content: "+";
  font-size: 28px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 15px;
}

details[open] .toggle-icon::after {
  content: "−";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* --------- breakpoints -------- */
@media screen and (min-width: 600px) {
  .wrapper {
    overflow: clip;
  }
  .full-container-pc {
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-attachment: fixed;
    /* commimg soon 作法 */
  }
  .full-container-pc::before {
    content: "";
    display: block;
    position: fixed;
    background-attachment: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/pc-bg.jpg") no-repeat center top;
    background-size: cover;
    -webkit-filter: blur(2.5px) brightness(0.7);
            filter: blur(2.5px) brightness(0.7);
  }
  .container {
    max-width: 600px;
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px 0px #e3e3e3;
    box-shadow: 0px 0px 20px 0px #e3e3e3;
    margin: 0 0;
    background: url("../img/main-bg.jpg") no-repeat top #0d4280;
    /* 暫時性 */
  }
  .coin-shine-mask {
    top: 110px; /* 距離頂部的位置 */
    right: 46px; /* 距離右側的位置 */
    width: 21%;
  }
  .text-shine-mask {
    top: 230px;
  }
  .section .section-title h2 {
    margin: 0 auto;
    width: 65%;
  }
}
@media screen and (max-width: 599px) {
  .container {
    background-position: 0 30px;
  }
  .coin-shine-mask {
    top: 4%;
    right: 8%;
  }
  .section .section-title h2 {
    width: 65%;
  }
  .section .card-container {
    padding: 0px 15px;
  }
  /* --------- section3 注意事項 -------- */
  .noticeArea .notice-container {
    padding: 0 10px;
  }
  .toggle-icon::after {
    right: 25px;
  }
}
@media screen and (max-width: 500px) {
  .coin-shine-mask {
    top: 4.1%;
  }
}
@media screen and (max-width: 400px) {
  .coin-shine-mask {
    top: 4.2%;
  }
}
@media screen and (max-width: 350px) {
  .section .section-title h2 {
    font-size: 2.1rem;
  }
  /* --------- section3 注意事項 -------- */
  .noticeArea .notice-content .inner-notice-title {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 300px) {
  .container {
    background-position: 0 40px;
  }
  .coin-shine-mask {
    top: 4.8%;
  }
}
/* =============== footer============ */
footer.footer {
  text-align: left;
  font-size: 14px;
  padding-bottom: 64px;
}
footer.footer p {
  padding: 20px;
}
footer.footer .ft-copyr {
  background-color: #dd2220;
}
footer.footer .ft-copyr p {
  color: #fff;
}

@media screen and (max-width: 599px) {
  footer.footer {
    padding-bottom: 60px;
  }
  footer.footer p {
    padding: 20px 12px;
  }
}
/* =============== 返回頂部 ============ */
.go-top {
  display: none;
  position: fixed;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  cursor: pointer;
  width: 45px;
  z-index: 999;
  bottom: 150px;
  right: 5%;
}

@media screen and (min-width: 600px) {
  .go-top {
    right: calc(50% - 300px + 20px);
    /* 50%：視窗中心
       -300px：往左半個 600px
       +20px：保留邊距 */
  }
}
.fixed-menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 將此層級完全獨立，防止被 Safari 動態優化掉 */
  isolation: isolate;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fixed-menu .fixed-menu_inner {
  width: 100%;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  cursor: pointer;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.75px;
}
.fixed-menu .fixed-menu_inner .fixed-menu_link {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  line-height: 4rem;
}
.fixed-menu .fixed-menu_inner .fixed-menu_link div {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.fixed-menu .fixed-menu_inner a.item01 {
  color: #fef9ef;
  position: relative;
  overflow: hidden;
  background-color: #ff8d00;
}
.fixed-menu .fixed-menu_inner a.item01::before {
  content: "";
  width: 500px;
  height: 150px;
  opacity: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 0.3)), color-stop(60%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  z-index: 10;
  left: 0;
  -webkit-animation: mask-ani 3s infinite;
  animation: mask-ani 3s infinite;
}
.fixed-menu .fixed-menu_inner a.item01::after {
  content: "";
  width: 500px;
  height: 50px;
  opacity: 0;
  background-color: #fff;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  z-index: 1;
  left: 0;
  -webkit-animation: mask-border-ani 3s infinite;
  animation: mask-border-ani 3s infinite;
}
.fixed-menu .fixed-menu_inner a.item02 {
  background-color: #295eac;
  color: #fef9ef;
}

.fixed-menu.is-visible {
  opacity: 1;
}

@-webkit-keyframes mask-ani {
  0% {
    -webkit-transform: rotate(-36deg) translate3d(-40px, -430px, 0);
    transform: rotate(-36deg) translate3d(-40px, -430px, 0);
  }
  70%, 100% {
    -webkit-transform: rotate(-36deg) translate3d(-40px, 378px, 0);
    transform: rotate(-36deg) translate3d(-40px, 378px, 0);
  }
}
@keyframes mask-ani {
  0% {
    -webkit-transform: rotate(-36deg) translate3d(-40px, -430px, 0);
    transform: rotate(-36deg) translate3d(-40px, -430px, 0);
  }
  70%, 100% {
    -webkit-transform: rotate(-36deg) translate3d(-40px, 378px, 0);
    transform: rotate(-36deg) translate3d(-40px, 378px, 0);
  }
}
@-webkit-keyframes mask-border-ani {
  0% {
    opacity: 0.8;
    -webkit-transform: rotate(-36deg) translate3d(-126px, -190px, 0);
    transform: rotate(-36deg) translate3d(-126px, -190px, 0);
  }
  70%, 100% {
    opacity: 0.8;
    -webkit-transform: rotate(-36deg) translate3d(-126px, 355px, 0);
    transform: rotate(-36deg) translate3d(-126px, 355px, 0);
  }
}
@keyframes mask-border-ani {
  0% {
    opacity: 0.8;
    -webkit-transform: rotate(-36deg) translate3d(-126px, -190px, 0);
    transform: rotate(-36deg) translate3d(-126px, -190px, 0);
  }
  70%, 100% {
    opacity: 0.8;
    -webkit-transform: rotate(-36deg) translate3d(-126px, 355px, 0);
    transform: rotate(-36deg) translate3d(-126px, 355px, 0);
  }
}
/* --------- breakpoints -------- */
@media screen and (max-width: 350px) {
  .fixed-menu .fixed-menu_inner {
    font-size: 22px;
  }
}
@media screen and (max-width: 300px) {
  .fixed-menu .fixed-menu_inner {
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .fixed-menu {
    max-width: 600px;
    width: 100%;
  }
}
.coming_soon {
  overflow: hidden;
  width: 100%;
}
.coming_soon img {
  width: 600px;
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */