@charset "utf-8";

/* CSS Document */
@import url('reset.min.1.2.css');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200..900&display=swap');

html {
  font-size: 15px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  font-family: 'Noto San TC', 'serif;', 'Maven Pro', 'Droid Sans', 'Myriad Pro', Helvetica, Verdana, Geneva, sans-serif !important;
  color: #345477;
  position: relative;
}

/* 隱藏 scrollbar，但允許滾動（背景還是會滑動） */
body {
  overflow: auto;
  scrollbar-width: none !important;
}
::-webkit-scrollbar {
  display: none !important;
}

* {
  -webkit-box-sizing: border-box; /*firefox*/
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none; /*去除藍框*/
}
input,
button,
select,
textarea {
  outline: none; /*去除藍框*/
}
span {
  display: inline-block;
}

ol,
ul {
  padding-left: 1rem !important;
}

/* 回到頂部 */
.bnt_top {
  position: fixed;
  bottom: 2.5%;
  right: 6.5vh;
  width: 10%;
  max-width: 50px;
  background-image: url(../images/btn_top.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: none;
  opacity: 0.7;
  z-index: 999;
}
.bnt_top a {
  background-image: url(../images/btn_top_ov.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.01;
  transition: opacity 0.5s;
}
.bnt_top a:hover {
  opacity: 1;
  filter: brightness(150%);
}

/* 獎勵查詢 */
.menu_gift {
  position: fixed;
  bottom: 70%;
  right: 6.5vh;
  width: 10%;
  max-width: 120px;
  background-image: url(../images/menu_gift.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
  opacity: 1;
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

.menu_gift a {
  background-image: url(../images/menu_gift.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.01;
}

.menu_gift:hover {
  opacity: 1;
  /* filter: brightness(150%); */
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.menu_gift:active {
  transform: scale(0.9);
  transition: transform 0.1s ease-in-out;
}

@media (max-width: 1600px) {
  .menu_gift {
    max-width: 90px !important;
  }
}

@media (max-width: 992px) {
  .menu_gift {
    position: fixed;
    bottom: 8%;
    right: 0.5vh;
    width: 20%;
    max-width: 120px;
  }
}

/* ////////////////// 輪播：底部浮動(限MB版) //////////////////  */
.pop_store_b {
  width: 100%;
  position: fixed;
  bottom: 0;
  transition: 1s;
  z-index: 1000;
  display: none;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.pop_store_b.show {
  opacity: 1;
  visibility: visible;
}

/* ////////////////// 輪播：底部浮動(限MB版) //////////////////  */
.pop_store_c {
  width: 100%;
  position: fixed;
  bottom: 0;
  transition: 1s;
  z-index: 1001;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: none;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

.pop_store_c img {
  animation: popstorec 0.8s infinite alternate;
  position: relative;
  pointer-events: auto;
}
@keyframes popstorec {
  from {
    filter: brightness(100%);
    transform: scale(1);
  }
  to {
    filter: brightness(120%);
    transform: scale(1.005);
  }
}

.pop_store_c.show {
  opacity: 1;
  visibility: visible;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.modal-open {
  padding-right: 0 !important;
}
/*像素比例尺*/

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

img {
  width: 100%;
  height: auto;
}
.l {
  display: block;
}
.m {
  display: none;
}
.s {
  display: none;
}
a {
  z-index: 100;
  width: 100%;
  height: 100%;
  display: block;
}
a:hover {
  cursor: pointer !important;
}

/*去藍框*/
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}

#lightarea {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/** 動態效果 **/
@keyframes fadeout {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    transform: scale(1.5);
  }
  60% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  /* background: url(../images/bg.webp) no-repeat center top; */
  /* background: #000;
  background-size: 100% auto; */
  background: #000;
}

/** 共用 **/
.content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}

/** 文字設定 共用 **/
h2 {
  font-size: 2.5rem !important;
}

.sec_txt,
.txt_y,
.txt_g,
.txt_s,
.txt_wy,
.txt_go {
  /* font-family: 'Noto Serif TC', 'serif;', 'Maven Pro', 'Droid Sans', 'Myriad Pro', Helvetica, Verdana, Geneva, sans-serif; */
}

.sec_txt {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/** 文字漸層色 共用 **/
/*黃色*/
.txt_y {
  background: linear-gradient(to bottom, #fce7ae 10%, #f6d306 55%, #f09304 95%);
  background-clip: text;
  font-weight: bold;
  color: #fdfdfd87;
  filter: drop-shadow(2px 3px 0px #000);
}

/*金色*/
.txt_g {
  background: linear-gradient(to bottom, #faeece 30%, #f1b100 75%);
  background-clip: text;
  color: #fdfdfd96;
  filter: drop-shadow(2px 3px 0px #000);
}

/*銀色*/
.txt_s {
  background: linear-gradient(to bottom, #ffffff 20%, #e1e1e1 100%);
  background-clip: text;
  color: #fdfdfd8f;
  filter: drop-shadow(2px 3px 0px #000);
}
/*白微黃*/
.txt_wy {
  background: linear-gradient(to top, #ffffff 30%, #f5c802 100%);
  background-clip: text;
  color: #fdfdfd8f;
  filter: drop-shadow(2px 3px 0px #000);
}

/*//////////////////////////////////////////////////////////*/
/*Button 共用*/
/* Button 共用 */
.btn {
  padding: 0rem !important;
  transform: scale(1);
  transition: filter 0.3s ease-in-out;
}
.btn:hover {
  filter: brightness(120%);
  transform: scale(1);
  transition: filter 0.2s ease-in-out;
}
.btn:active {
  transform: scale(0.95);
  transition: transform 0s ease-in-out;
}

.btn_l {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin-bottom: 1rem;
}

.btn_l img {
  width: 100% !important;
}
.btn_m {
  width: 100%;
  max-width: 250px;
  margin: auto;
  /* margin-bottom: 1rem; */
  animation: btn_m 0.8s infinite alternate;
}
@keyframes btn_m {
  from {
    filter: brightness(100%);
    transform: scale(1);
  }
  to {
    filter: brightness(140%);
    transform: scale(1.05);
  }
}
.btn_m img {
  width: 100% !important;
}

.btn_s {
  width: 100%;
  max-width: 130px;
  padding: 0rem 0 !important;
}

.btn_xs {
  width: 100%;
  max-width: 100px;
  padding: 0rem 0 !important;
}

/*//////////////////////////////////////////////////////////*/

/* 基本樣式重置，移除列表的預設樣式 */
ul.menu_b {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: stretch; /* 確保所有項目高度一致 */
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-item img {
  max-width: 100%;
  height: auto;
}

/***** 調整lity.css設定，修改可視範圍高度 *****/
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 70%;
  padding-left: 1.5vw;
}

.lity {
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.75);
}
.lity-iframe-container {
  padding-top: 75vh;
}
.lity-close {
  position: fixed;
  top: 0;
}
.lity-close:active {
  top: 0;
}

/* ////////////////// 區塊設定共用 //////////////////  */
#cover,
#section01,
#section02,
#section03,
#section04,
#section05,
#section06 {
  position: relative;
  overflow: hidden;
}

/* ////////////////// 共用 //////////////////  */
#cover,
#section01,
#section02,
#section03,
#section04,
#section05,
#section06 {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  text-align: center;
}

/* ////////////////// form //////////////////  */

.form-select,
.form-control {
  border-radius: 10px 1px 10px 1px !important;
  border: 0.8px solid rgba(188, 147, 76, 0.58) !important;
  height: 2.5rem;
}

textarea {
  min-height: 4rem !important;
  overflow: hidden;
}

.form-select:focus,
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgba(188, 147, 76, 0.58) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(188, 147, 76, 0.58) !important;
}

/*///////////// section背景 /////////////*/

#cover {
  background: url(../images/bg_cb.webp);
  background-position: center top;
  background-size: 100% auto;
}

#section01 {
  background: url(../images/bg_sec01.webp);
  background-position: center top;
  background-size: 100% auto;
}
#section02 {
  background: url(../images/bg_sec02.webp);
  background-position: center bottom;
  background-size: 100% auto;
}
#section03 {
  background: url(../images/bg_sec03.webp);
  background-position: center top;
  background-size: 100% auto;
}
#section04 {
  background: url(../images/bg_sec04.webp);
  background-position: center top;
  background-size: 100% auto;
}
#section05 {
  background: url(../images/bg_sec05.webp);
  background-position: center top;
  height: 100vh;
  background-size: 100% 100%;
}

#section06 {
  background: url(../images/bg_sec05.webp);
  background-position: center top;
  height: 100vh;
  background-size: 100% auto;
}

.sec_content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4% 10px 4% 10px;
}

/* 裝飾線 */
.sec_line {
  position: relative;
  height: 0;
}

.sec_line img {
  position: absolute;
  top: -28px; /* 根據圖片高度微調 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 99%;
  pointer-events: none; /* 不擋滑鼠事件 */
}

/* #section01 .content,
#section02 .content,
#section03 .content,
#section06 .content {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  text-shadow: #000 1px 0 10px;
  text-align: justify;
  position: relative;
  padding-top: 0;
  height: 100%;
} */

/* ////////////////// 右側選單 //////////////////  */
.menu_r {
  position: fixed;
  right: 0%;
  top: 70%;
  width: 170px;
  z-index: 100;
}
.menu_r a {
  width: 150px;
  margin: auto;
  height: auto;
}

@media (max-width: 992px) {
  .menu_r {
    display: none;
  }
}

/* 複製的alert */
div:where(.swal2-container) div:where(.swal2-popup) {
  background: #2e3236e3 !important;
  color: white !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  background-color: #a88a1e !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
  background-color: #866d13 !important;
}

/* //////////////////////////////////// 各專區 //////////////////////////////////// */
/* //////////////////////////////////// 各專區 //////////////////////////////////// */
/* //////////////////////////////////// 各專區 //////////////////////////////////// */
/* //////////////////////////////////// 各專區 //////////////////////////////////// */
/* //////////////////////////////////// 各專區 //////////////////////////////////// */

/* ////////////////// 00_cover首頁 //////////////////  */

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.slogan_block {
  position: relative;
  top: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.slogan_block a img.video_play {
  width: 6%;
  margin-bottom: 1%;
}

/* 大標 */
.slogan_block img:nth-child(1) {
  width: 90%;
}
/* 小標 */
.slogan_block img:nth-child(3) {
  width: 30%;
}
/* 平台 */

.downlow {
  width: 75%;
  display: flex;
  margin-bottom: 1%;
  margin-top: 1%;
}
/* 龍上預約連結 */
.img-link {
  display: inline-block;
  width: fit-content;
}
.img-link .btn03 {
  margin-bottom: 15%;
}

/* .slogan_block a img.btn03 {
  width: 15%;
  margin-bottom: 1%;
} */
.btn03 {
  animation: glowUpImg 1s linear infinite;
}
@keyframes glowUpImg {
  0% {
    filter: brightness(1.1);
  }
  50% {
    filter: brightness(1.2);
    scale: 1.03;
  }
  100% {
    filter: brightness(1);
  }
}

.slogan_block a img.btn_scroll {
  width: 100%;
}
.btn_scroll {
  animation: upTodown 1s linear infinite;
}
@keyframes upTodown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(1rem);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* //////////////////////////////////// section01 //////////////////////////////////// */

/* 龍騰測試結束倒數 */
.sec01_top {
  margin-top: 3rem;
}

.s1_t_01 {
  position: relative;
  font-size: 3.5rem;
  font-weight: bolder;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, #ffffff 0%, #fff09d 61%, #ffe59f 100%);
  background-clip: text;
  filter: drop-shadow(0px 3px 0px #fda65a) drop-shadow(0px 0px 5px #dd901de0) drop-shadow(0px 0px 10px #ff9d48ea);
  letter-spacing: 2px;
}

.t_light {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #fff09d 61%, #ffe59f 100%);
  background-clip: text;
  font-weight: bolder;
  letter-spacing: 2px;
  animation: s_light 2s infinite ease-in-out;
}

.t_light:nth-child(1):after {
  content: '';
  position: absolute;
  top: -38px;
  left: -100px;
  right: 0;
  bottom: 0;
  background-image: url('../images/light.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  mix-blend-mode: screen;
  height: 360px;
  width: 600px;
  pointer-events: none;
  cursor: none;
  animation: s_light 2s infinite ease-in-out;
}

@keyframes s_light {
  0%,
  100% {
    filter: brightness(110%);
  }
  50% {
    filter: brightness(100%);
  }
}

.s1_t_02 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  filter: drop-shadow(2px 3px 5px #000000cb);
  letter-spacing: 2px;
}

.t_img {
  width: 10%;
}
.t_img img {
  vertical-align: sub;
  padding-left: 1rem;
}

/* 預約人數 */
.s1_t_04 {
  font-family: 'Noto San TC', 'serif;', 'Maven Pro', 'Droid Sans', 'Myriad Pro', Helvetica, Verdana, Geneva, sans-serif !important;
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 3;
  left: 0%;
  margin-top: 1%;
  font-style: italic;
  text-wrap: nowrap;
}

.sec01_num {
  width: auto;
  min-height: 80px;
  padding: 0 5rem;
}

.sec01_num::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  background-image: url(../images/title_num.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.s1_t_05 {
  position: relative;
  font-size: 3rem;
  font-weight: bolder;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, #ffffff 10%, #fff09d 31%, #bc9c54 100%);
  background-clip: text;
  filter: drop-shadow(1px 2px 2px #2b2000cb);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.4);
}

/* 預約表單框 sec01_form */

.sec01_form {
  width: 40%;
}

.form_m {
  text-align: center;
  background: url(../images/form_m.webp) repeat-y center top;
  background-size: 100% 100%;
  font-size: 1.2rem;
}

.small_box_1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  margin: auto;
}

.small_box_2 {
  display: flex;
  justify-content: space-evenly;
}

/* form 裡面的大標題 */

.s1_t_03 {
  font-family: 'Noto San TC', 'serif;', 'Maven Pro', 'Droid Sans', 'Myriad Pro', Helvetica, Verdana, Geneva, sans-serif !important;
  position: relative;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, #3a0000 30%, #5f0707 60%, #851515 100%);
  background-clip: text;
  z-index: 3;
  top: 20px;
  margin-bottom: 3rem;
}

.s1_t_03:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/title_bg.png);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  width: 450px;
  height: 110px;
  pointer-events: none;
  cursor: none;
  margin: auto;
  opacity: 0.8;
}

/* form 裡面的小標題 */

.s1_t_06 {
  font-family: 'Noto San TC', 'serif;', 'Maven Pro', 'Droid Sans', 'Myriad Pro', Helvetica, Verdana, Geneva, sans-serif !important;
  position: relative;
  font-size: 1.5rem;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, #b95a00 30%, #ffd4ac 60%, #851515 100%);
  background-clip: text;
}

.s1_t_06_title {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #402d14 100%);
  background-clip: text;
}

.gift_content_title {
  width: 250px;
}

/* 標題 */
.small_box_2 span:nth-child(1) img {
  width: 265px;
  margin: auto;
}

.small_box_2 span:nth-child(2) img {
  width: 150px;
}

/* 獎勵圖 */
.small_box_2 span:nth-child(2) img {
  width: 265px;
}

/* 商店圖 */
.small_box_2 #sec02_store img {
  width: 200px;
}

.small_box_2 #sec02_store {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

/* 女英雄圖 */
/* .sec01big {
  position: absolute;
  width: 50%;
  left: 46%;
  pointer-events: none;
  cursor: none;
} */

.sec01big {
  position: absolute;
  width: 43%;
  left: 48%;
  top: 4%;
  pointer-events: none;
  cursor: none;
}

.img_light {
  animation: imglight 2s infinite ease-in-out;
}

@keyframes imglight {
  0%,
  100% {
    filter: brightness(120%);
  }
  50% {
    filter: brightness(100%);
  }
}

/* //////////////////////////////////// section07 //////////////////////////////////// */

/* 預約表單框 sec01_form */

#section07 .sec01_form {
  width: 40%;
}

/* 說明 */

.s1_t_011 {
  font-size: 1.1rem;
  color: #402d14;
  text-align: left;
  margin-bottom: 0;
  font-weight: bold;
}

.s1_t_011 i {
  color: #b95a00;
}

/* //////////////////////////////////// section02 //////////////////////////////////// */

#section02 .sec_content {
  justify-content: space-evenly;
}

.sec02_top {
  position: relative;
  margin-bottom: 1.5rem;
}

.sec02_top .sec02img {
  width: 80%;
  height: auto;
}

.sec02_top a {
  position: absolute;
  top: -20%;
  right: 8%;
  display: inline-block;
  width: 24%;
  height: auto;
  z-index: 2;
}

.sec02_top a img {
  width: 100%;
  height: auto;
}

.sec02_page {
  position: relative;
  z-index: 9;
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  padding: 0 1rem;
}

.sec02_page .form_m {
  padding: 1.5rem 2rem;
  min-height: 330px;
}

.sec02_page .form_m .li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  line-height: 2.5rem;
  font-weight: 500;
  text-align: left;
  color: #402d14;
}

.sec02_page .form_m .li .name {
  width: 40%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sec02_page .form_m .li .num {
  width: 10%;
}

.sec02_page .form_m .li .link {
  width: 45%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.page {
  width: 100%;
  padding: 0rem 2rem;
  margin-top: 1.2rem;
}

.page ul li {
  width: 40px;
  height: 40px;
  /* margin: 5px; */
  color: #402d14;
  font-weight: bolder;
}

.page ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.page ul li a {
  color: #402d14;
  text-decoration: none;
  text-align: center;
  vertical-align: top;
  /* border: 0.8px solid #80673c; */
  padding: 0.5rem 0;
}

.sec02_input {
  width: 30%;
}

.sec02_input .search {
  text-align: center;
  position: relative;
}

.sec02_input .search input {
  background: #1c1c1b9c;
  border: 0.8px solid #bc934c94;
  border-radius: 10px 0 10px 0;
  width: 100%;
  height: 3rem;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding-right: 40px;
  box-sizing: border-box;
  margin: 1rem 0;
}

.sec02_input .search .icon {
  position: relative;
  font-size: 1.5rem;
  color: #fcbb4bd3;
  font-weight: bolder;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 10px;
  margin-top: -4.2rem;
  right: -85%;
}

.sec02img_man,
.sec02img_man2 {
  position: absolute;
  /* transition: transform 0.3s ease-out;  */
  pointer-events: none;
  cursor: none;
  bottom: 0;
}

/* //////////////////////////////////// section03 //////////////////////////////////// */

#section03 .sec_content {
  flex-direction: row;
}

.sec03_left,
.sec03_right {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec03_left {
  flex-direction: column;
  position: relative;
  height: 100%;
  background: url(../images/sec04_dragon.png);
  background-size: auto 90%;
  background-repeat: no-repeat;
  background-position: center;
}

.sec03_left_inner {
  position: absolute;
  bottom: 5%;
}

.sec03_left img {
  margin: 0.5rem 0;
}

.sec03_left img:nth-child(1) {
  width: 65%;
  z-index: 4;
}

.sec03_left img:nth-child(2) {
  width: 80%;
  z-index: 4;
}

.sec03_right {
  flex-direction: column;
  align-items: flex-start;
  left: -3%;
  top: 10%;
}

.sec03_right img {
  width: 80%;
}

.sec03_right img.sec03_monster {
  position: absolute;
  right: -14%;
  bottom: 0;
  width: 45%;
}

.sec03_yet {
  filter: saturate(30%) !important;
}
.sec03_get {
  filter: saturate(100%);
}

/* //////////////////////////////////// section04 //////////////////////////////////// */

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#section04 .sec_content {
  position: relative;
  z-index: 2; /* 确保内容在粒子效果之上 */
}

#section04 .sec_content {
  flex-direction: row;
  background: url(../images/sec05_big.png);
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

[data-aos='fade-in'].aos-animate {
  opacity: 1;
}

.sec04_left,
.sec04_right {
  width: 36%;
  width: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 28%;
  padding: 0 5rem;
}

.sec04_left img,
.sec04_right img {
  position: relative;
  width: 40%;
}

.sec04_left img:nth-child(1) {
  top: -180px;
  left: 8px;
}

.sec04_left img:nth-child(2) {
  top: -15px;
  left: -8px;
}

.sec04_right img:nth-child(2) {
  top: -15px;
  left: 8px;
}
.sec04_right img:nth-child(3) {
  top: -180px;
  left: -8px;
}

.sec04_right img:nth-child(1),
.sec04_left img:nth-child(3) {
  right: 0;
  top: 125px;
}

.sec04_left img,
.sec04_right img {
  position: relative;
  width: 40%;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  transition: filter 0.3s ease;
}

/* 定義光暈動畫 */
@keyframes glowEffect {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  }
}

.sec04_left img,
.sec04_right img {
  position: relative;
  width: 40%;
  animation: glowEffect 2s infinite ease-in-out;
}

/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */
/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */
/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */
/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */
/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */
/* /////////////////////////////////////// RWD設定 /////////////////////////////////////// */

@media screen and (max-width: 1600px) {
  /* ////////////////// 00_cover首頁 //////////////////  */
  .slogan_block {
    top: 32%;
  }
  .slogan_block img:nth-child(1) {
    width: 90%;
  }
  .slogan_block img:nth-child(3) {
    width: 35%;
    margin-bottom: 1%;
  }
  .downlow a {
    margin: 0 0.5rem;
  }

  .slogan_block a img.btn_scroll {
    width: 80%;
  }

  .img-link .btn03 {
    margin-bottom: 15%;
  }

  /* 裝飾線 */
  .sec_line img {
    top: -25px; /* 根據圖片高度微調 */
  }

  /* //////////////////////////////////// section01 //////////////////////////////////// */
  .sec01_top {
    margin-top: 1rem;
    z-index: 10;
  }

  .s1_t_01 {
    position: relative;
    font-size: 3rem;
  }

  .t_light:nth-child(1):after {
    height: 310px;
    width: 545px;
  }

  /* 預約人數 */

  .s1_t_04 {
    font-size: 1.8rem;
  }

  .sec01_num {
    min-height: 70px;
  }

  /* 預約人數的數字 */
  .s1_t_05 {
    font-size: 2.5rem;
  }

  .btn_m {
    max-width: 220px;
  }

  /* form 裡面的大標 */
  .s1_t_03 {
    top: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .s1_t_03:after {
    width: 400px;
    height: 90px;
  }

  /* form 裡面的小標 */
  .s1_t_06 {
    font-size: 1.2rem;
  }

  .small_box_2 span:nth-child(2) img {
    width: 200px;
    /* margin: 0.5rem 0; */
  }

  /* 標題 */
  .small_box_2 span:nth-child(1) img {
    width: 230px;
  }

  .small_box_2 span:nth-child(2) img {
    width: 150px;
  }

  /* 獎勵圖 */
  .small_box_2 span:nth-child(2) img {
    width: 230px;
  }

  /* 商店圖 */
  .small_box_2 #sec02_store img {
    width: 180px;
  }

  .small_box_2.mb-5 {
    margin-bottom: 2rem !important;
  }

  .sec01big {
    position: absolute;
    width: 50%;
    left: 46%;
    pointer-events: none;
    cursor: none;
    top: 5%;
  }

  .sec01big img {
    width: 93%;
  }

  /* //////////////////////////////////// section07 //////////////////////////////////// */

  /* 預約表單框 sec01_form */

  #section07 .sec01_form {
    width: 50%;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */

  .sec02_top .sec02img {
    width: 70%;
    height: auto;
  }

  .sec02_top a {
    position: absolute;
    top: -25%;
    right: 12%;
    display: inline-block;
    width: 22%;
    height: auto;
    z-index: 2;
  }

  /* //////////////////////////////////// section03 //////////////////////////////////// */

  .sec03_right img {
    width: 80%;
  }

  /* //////////////////////////////////// section04 //////////////////////////////////// */

  .sec04_left,
  .sec04_right {
    width: 36%;
    width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 24%;
    padding: 0 5rem;
  }

  .sec04_left img,
  .sec04_right img {
    position: relative;
    width: 40%;
    pointer-events: none;
    cursor: none;
  }

  .sec04_left img:nth-child(1) {
    top: -140px;
    left: 8px;
  }

  .sec04_left img:nth-child(2) {
    top: -8px;
    left: -6px;
  }

  .sec04_right img:nth-child(2) {
    top: -8px;
    left: 6px;
  }
  .sec04_right img:nth-child(3) {
    top: -140px;
    left: -8px;
  }

  .sec04_right img:nth-child(1),
  .sec04_left img:nth-child(3) {
    right: 0;
    top: 100px;
  }

  .s1_t_011 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1400px) {
  /* ////////////////// 00_cover首頁 //////////////////  */
  .slogan_block {
    top: 45%;
  }
  /*///////////// section背景 /////////////*/
  #section01,
  #section02,
  #section03,
  #section04,
  #section05,
  #section06 {
    background-size: auto 100%;
  }

  /* 裝飾線 */
  .sec_line img {
    top: -18px; /* 根據圖片高度微調 */
  }

  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01_top {
    margin-top: 1rem;
  }

  .form_m {
    margin-top: -1px;
  }

  .sec01big {
    top: 10%;
  }
}

@media screen and (max-width: 1200px) {
  /* ////////////////// 00_cover首頁 //////////////////  */
  .slogan_block {
    top: 45%;
  }
  /*///////////// section背景 /////////////*/
  #cover {
    background: url(../images/bg_cb_lg.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section01 {
    background: url(../images/bg_sec01_lg.webp);
    background-position: center top;
    background-size: 100% auto;
  }
  #section02 {
    background: url(../images/bg_sec02_lg.webp);
    background-position: center bottom;
    background-size: 100% auto;
  }
  #section03 {
    background: url(../images/bg_sec03_lg.webp);
    background-position: center top;
    background-size: 100% auto;
  }
  #section04 {
    background: url(../images/bg_sec04_lg.webp);
    background-position: center top;
    background-size: 100% auto;
  }
  #section05 {
    background: url(../images/bg_sec05_lg.webp);
    background-position: center top;
    background-size: 100% auto;
  }
  #section06 {
    background: url(../images/bg_sec05_lg.webp);
    background-position: center top;
    background-size: 100% auto;
  }

  /* //////////////////////////////////// section01 //////////////////////////////////// */
}

@media screen and (max-width: 1024px) {
  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01big,
  .s1_t_04 {
    display: none;
  }
  .sec01_form {
    width: 50%;
  }

  .s1_t_03 {
    top: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }

  .s1_t_03:after {
    width: 320px;
    height: 90px;
  }

  .s1_t_06 {
    font-size: 1.2rem;
  }

  .btn_m {
    max-width: 220px;
    margin-bottom: 0rem;
  }

  .small_box_2 span:nth-child(2) img {
    width: 120px;
  }
}

@media screen and (max-width: 992px) {
  /* ////////////////// 00_cover首頁 //////////////////  */
  .slogan_block {
    top: 36%;
    width: 80%;
    margin: auto;
  }
  .slogan_block a img.video_play {
    width: 15%;
    margin-bottom: 1%;
  }
  .slogan_block img:nth-child(3) {
    width: 80%;
  }
  .slogan_block img:nth-child(4) {
    width: 100%;
    margin-bottom: 1%;
  }
  .slogan_block a img.btn03 {
    width: 80%;
    margin-bottom: 2%;
  }
  .slogan_block a img.btn_scroll {
    width: 20%;
    /* display: none; */
  }
  .downlow {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .downlow a {
    width: 45%;
    margin: 0.25rem 0;
  }
  /*///////////// section背景 /////////////*/
  #section01 {
    background: url(../images/bg_sec01_lg.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section02 {
    background: url(../images/bg_sec02_lg.webp);
    background-position: center bottom;
    background-size: auto 100%;
  }
  #section03 {
    background: url(../images/bg_sec03_lg.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section04 {
    background: url(../images/bg_sec04_lg.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section05 {
    background: url(../images/bg_sec05_lg.webp);
    background-position: center top;
    height: 100vh;
    background-size: auto 100%;
  }
  #section06 {
    background: url(../images/bg_sec05_lg.webp);
    background-position: center top;
    height: 100vh;
    background-size: auto 100%;
  }
  /* 裝飾線 */
  .sec_line img {
    top: -14px; /* 根據圖片高度微調 */
  }

  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01_top {
    margin-top: 0rem;
  }

  .s1_t_04 {
    display: block;
  }

  .sec01_form {
    width: 75%;
  }

  .s1_t_03 {
    top: 22px;
    margin-bottom: 3.5rem;
    font-size: 2rem;
  }

  .s1_t_03:after {
    width: 400px;
    height: 110px;
  }

  .s1_t_06 {
    font-size: 1.5rem;
  }

  .btn_m {
    max-width: 240px;
    margin-bottom: 1rem;
  }

  /* 獎勵圖 */
  .small_box_2 span:nth-child(2) img {
    width: 265px;
  }

  /* 商店圖 */
  .small_box_2 #sec02_store img {
    width: 200px;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */
  #section02 .sec_content {
    justify-content: center;
    top: -12%;
  }

  .sec02_page {
    width: 90%;
  }

  .sec02_input {
    width: 70%;
  }

  .info_li {
    width: 80%;
  }

  /* //////////////////////////////////// section03 //////////////////////////////////// */

  #section03 .sec_content {
    flex-direction: column;
  }

  .sec03_left {
    flex-direction: column;
    position: relative;
    background: none;
    height: 40%;
    width: 100%;
  }

  .sec03_right {
    flex-direction: column;
    align-items: flex-start;
    left: 9%;
    top: 0%;
    width: 100%;
    pointer-events: none;
    cursor: none;
  }

  .sec03_right img.sec03_monster {
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 33%;
  }

  /* //////////////////////////////////// section04 //////////////////////////////////// */

  #section04 .sec_content {
    flex-direction: column;
    justify-content: space-between;
    background-size: auto 60%;
    background-position-y: 52%;
    padding: 10% 10px 10% 10px;
  }

  .sec04_left,
  .sec04_right {
    top: 0%;
  }

  .sec04_left img,
  .sec04_right img {
    position: relative;
    width: 40%;
  }

  .sec04_left img:nth-child(1) {
    top: 60px;
    left: 0px;
    margin: 0 1rem;
  }

  .sec04_left img:nth-child(2) {
    top: 0px;
    left: 0px;
    margin: 0 1rem;
  }

  .sec04_left img:nth-child(3) {
    right: 0;
    top: 60px;
    margin: 0 1rem;
  }

  .sec04_right img:nth-child(1) {
    right: 0;
    top: -60px;
    margin: 0 1rem;
  }

  .sec04_right img:nth-child(2) {
    top: 0px;
    left: 0px;
    margin: 0 1rem;
  }

  .sec04_right img:nth-child(3) {
    left: 0px;
    top: -60px;
    margin: 0 1rem;
  }
}

@media screen and (max-width: 640px) {
  /* ////////////////// 00_cover首頁 //////////////////  */
  .slogan_block {
    top: 38%;
    width: 100%;
  }
  .slogan_block a img.video_play {
    width: 18%;
    margin-bottom: 2%;
  }
  .slogan_block img:nth-child(3) {
    width: 80%;
  }
  .slogan_block img:nth-child(4) {
    width: 90%;
    margin-bottom: 2%;
  }
  .slogan_block a img.btn03 {
    width: 80%;
    margin-bottom: 5%;
  }
  .slogan_block a img.btn_scroll {
    width: 100%;
  }
  /*///////////// section背景 /////////////*/
  #section01,
  #section02,
  #section03,
  #section04 {
    background-size: auto 100%;
  }
  #section05 {
    background: url(../images/bg_sec05.webp);
    background-position: center top;
    height: 100vh;
    background-size: auto 100%;
  }
  /* 裝飾線 */
  .sec_line img {
    top: -8px; /* 根據圖片高度微調 */
  }

  .lity-iframe .lity-container,
  .lity-youtube .lity-container,
  .lity-vimeo .lity-container,
  .lity-facebookvideo .lity-container,
  .lity-googlemaps .lity-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1vw;
  }

  .lity-iframe-container {
    padding-top: 60%;
  }

  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01_top {
    margin-top: 3rem;
  }

  .s1_t_01 {
    font-size: 2.5rem;
  }
  .s1_t_02 {
    font-size: 2rem;
  }

  .sec01_form {
    width: 90%;
  }

  .s1_t_03 {
    top: 20px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }

  #pop_01 .s1_t_03 {
    font-size: 1.5rem;
  }

  .s1_t_03:after {
    width: 350px;
    height: 90px;
  }

  .s1_t_04 {
    font-size: 1.5rem;
    left: 0%;
    margin: 2% 0;
  }

  .s1_t_04::after {
    left: -15px;
    min-width: 250px;
    height: 50px;
  }

  .s1_t_05 {
    font-size: 2rem;
  }

  .btn_m {
    max-width: 220px;
    margin-bottom: 0rem;
  }

  .s1_t_06 {
    margin-top: 1rem;
  }
  .small_box_2 {
    flex-direction: column;
    align-items: center;
  }

  /* 標題 */
  .small_box_2 span:nth-child(1) img {
    width: 230px;
  }

  /* 獎勵圖 */
  .small_box_2 span:nth-child(2) img {
    width: 230px;
  }

  /* 商店圖 */
  .small_box_2 #sec02_store img {
    width: 180px;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */
  #section02 .sec_content {
    top: 0%;
  }

  .sec02_top {
    margin-bottom: 2rem;
  }

  .sec02_page {
    width: 90%;
    padding: 0;
  }

  .info_li {
    width: 100%;
  }

  .sec02_input form .icon {
    padding: 0;
  }

  .sec02_input {
    width: 90%;
  }

  .sec02_input form input {
    margin: 1.5rem 0;
  }

  .sec02_page .form_m .li .link {
    width: auto;
  }

  .sec02_page .form_m .li {
    font-size: 1.1rem;
  }

  .sec02_page .form_m {
    padding: 1rem 0.8rem;
  }

  .sec02_page .form_m .li .name {
    width: 51%;
  }

  .sec02_top .sec02img {
    width: 95%;
  }

  .sec02_top a {
    top: -22%;
    right: -1%;
    width: 32%;
  }

  .page {
    padding: 0rem;
  }

  /* //////////////////////////////////// section03 //////////////////////////////////// */

  .sec03_left {
    flex-direction: column;
    position: relative;
    height: 50%;
    width: 100%;
    top: 3%;
    background: url(../images/sec04_dragon.png);
    background-position: top center;
    background-size: auto 80%;
    background-repeat: no-repeat;
  }

  .sec03_right {
    left: 0%;
    top: 0%;
    width: 100%;
  }

  .sec03_right img {
    width: 100%;
  }

  .sec03_monster {
    display: none;
  }

  /* //////////////////////////////////// section04 //////////////////////////////////// */
  #section04 .sec_content {
    background-size: auto 50%;
    padding: 32% 10px 34% 10px;
  }

  .sec04_left img,
  .sec04_right img {
    position: relative;
    width: 30%;
  }

  .sec04_left img:nth-child(1) {
    top: 45px;
    left: 0px;
    margin: 0 0.5rem;
  }

  .sec04_left img:nth-child(2) {
    top: 0px;
    left: 0px;
    margin: 0 0.5rem;
  }

  .sec04_left img:nth-child(3) {
    right: 0;
    top: 45px;
    margin: 0 0.5rem;
  }

  .sec04_right img:nth-child(1) {
    right: 0;
    top: -45px;
    margin: 0 0.5rem;
  }

  .sec04_right img:nth-child(2) {
    top: 0px;
    left: 0px;
    margin: 0 0.5rem;
  }

  .sec04_right img:nth-child(3) {
    left: 0px;
    top: -45px;
    margin: 0 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  /*底部選單:顯示*/
  .pop_store_b,
  .pop_store_c {
    display: flex;
  }
  /*///////////// section背景 /////////////*/
  #cover {
    background: url(../images/bg_cb_xs.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section01 {
    background: url(../images/bg_sec01_xs.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section02 {
    background: url(../images/bg_sec02_xs.webp);
    background-position: center bottom;
    background-size: auto 100%;
  }
  #section03 {
    background: url(../images/bg_sec03_xs.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section04 {
    background: url(../images/bg_sec04_xs.webp);
    background-position: center top;
    background-size: auto 100%;
  }
  #section05 {
    background: url(../images/bg_sec05_xs.webp);
    background-position: center top;
    height: 75vh;
    background-size: 100% 100%;
  }
  /* 裝飾線 */
  .sec_line img {
    top: -5px; /* 根據圖片高度微調 */
  }

  #section04 .sec_content {
    background-size: auto 50%;
    background-position-y: 56%;
    padding: 30% 20px 20% 20px;
  }

  .sec01_num::after {
    background-size: 84% 100%;
  }

  .s1_t_04 {
    font-size: 1.5rem;
    left: 0%;
    margin: 4% 0;
  }

  .small_box_2 span:nth-child(2) img {
    margin: 0 0;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */
  #section01 .s1_t_03 {
    top: 20px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: -1px;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */

  .sec01_top {
    margin-top: 0.5rem;
  }

  .sec01_form {
    width: 95%;
  }

  .s1_t_01 {
    font-size: 2rem;
  }
  .s1_t_02 {
    font-size: 1.5rem;
  }

  .s1_t_04 {
    font-size: 1.3rem;
    margin: 2% 0;
  }

  .sec01_num {
    min-height: 60px;
  }

  /* .small_box_2 span:nth-child(2) img {
    width: 180px;
  } */
}

@media screen and (max-width: 390px) {
  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01_top {
    margin-top: 2rem;
  }

  .sec01_num {
    min-height: auto;
  }

  .s1_t_04 {
    margin: 2% 0;
  }

  .small_box_2 #sec02_store img {
    width: 160px;
  }

  .small_box_2 span:nth-child(2) img {
    width: 180px;
  }

  .t_light:nth-child(1):after {
    height: 280px;
    width: 490px;
  }

  .s1_t_01 {
    font-size: 2rem;
  }

  .sec02_page {
    width: 100%;
    padding: 0px;
  }

  .sec01_form {
    width: 100%;
  }

  #section01 .s1_t_03 {
    top: 20px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: -1px;
  }

  .s1_t_03 {
    top: 0px;
    margin-bottom: 0rem;
    font-size: 1.5rem;
  }

  .s1_t_06 {
    font-size: 1.2rem;
  }

  .s1_t_06_title {
    font-size: 1rem;
  }

  .t_light:nth-child(1):after {
    height: 250px;
    width: 360px;
  }

  .t_light:nth-child(1):after {
    content: '';
    position: absolute;
    top: -33px;
    left: -50px;
  }
}

@media screen and (max-width: 375px) {
  /* //////////////////////////////////// section01 //////////////////////////////////// */

  .sec01_top {
    margin-top: 2.6rem;
  }

  .s1_t_01 {
    font-size: 1.8rem;
  }

  .s1_t_02 {
    font-size: 1.6rem;
  }

  .s1_t_05 {
    font-size: 1.8rem;
  }
  .s1_t_04::after {
    left: -30px;
    min-width: 300px;
    height: 47px;
  }

  #section01 .s1_t_03 {
    top: 0px;
    margin-bottom: 0rem;
    font-size: 1.1rem;
  }

  .s1_t_03:after {
    width: 300px;
    height: 30px;
  }

  .btn_m {
    max-width: 190px;
    margin-bottom: 0.5rem;
  }

  .s1_t_06 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  .small_box_2 span:nth-child(1) img {
    width: 150px;
  }

  /* //////////////////////////////////// section02 //////////////////////////////////// */
  #section02 .sec_content {
    top: 4%;
  }

  .sec02_top {
    margin-bottom: 1rem;
  }

  .sec02_input form input {
    margin: 1rem 0;
  }

  #section02 .btn_m {
    margin-bottom: 0rem;
  }

  .sec02_input form .icon {
    margin-top: -3.6rem;
  }

  /* //////////////////////////////////// section03 //////////////////////////////////// */
  .sec03_left {
    background: none;
  }

  .sec03_left img:nth-child(1) {
    width: 85%;
    z-index: 4;
  }

  .sec03_left img:nth-child(2) {
    width: 100%;
    z-index: 4;
  }

  /* //////////////////////////////////// section04 //////////////////////////////////// */
  #section04 .sec_content {
    background-size: auto 50%;
    background-position-y: 57%;
    padding: 20% 20px 10% 20px;
  }
}
