@charset "UTF-8";
/* 【重設】 */

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

[hidden] {
  display: none;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 【變數】 */

:root {
  --root: 16px;
  --wh: #fff;
  --orange: #f59043;
  --eggshell: #fce7dc;
  --geyser: #c7e4f3;
  --header: 14vw;
}

/* 【樣式】 */

/* 通用 */

*,
html {
  box-sizing: border-box;
  font-size: var(--root);
}

img {
  vertical-align: bottom;
}

[pc] {
  display: block;
}

[mb] {
  display: none;
}

.holder,
.rwd {
  width: 100%;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 簡單的 loading 動畫 */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--orange);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

#loader p {
  color: var(--orange);
  padding: 5px;
  font-weight: 900;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 按鈕 */

.btn-burger {
  display: none;
  padding: 2.759vw 0.46vw;
  cursor: pointer;
  z-index: 10;
}

.btn-burger.animate .burger-meat {
  background: rgba(255, 255, 255, 0);
}

.btn-burger.animate .burger-meat::before {
  content: "";
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-burger.animate .burger-meat::after {
  content: "";
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-burger .burger-meat,
.btn-burger .burger-meat:after,
.btn-burger .burger-meat:before {
  width: 8.6vw;
  height: 0.805vw;
  border-radius: 25px;
}

.btn-burger .burger-meat {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0);
  transition: all 0ms 300ms;
  background: var(--orange);
}

.btn-burger .burger-meat::before,
.btn-burger .burger-meat::after {
  content: "";
  position: absolute;
  left: 0;
  background: var(--orange);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-burger .burger-meat::before {
  bottom: 2.149vw;
}

.btn-burger .burger-meat::after {
  top: 2.149vw;
}

.btn-tgo {
  position: relative;
  display: inline-block;
}

.btn-tgo img {
  width: min(630px, 24.6vw);
}

.btn-tgo img[hvr] {
  display: none;
}

.btn-tgo img[base] {
  display: block;
}

.btn-action {
  position: relative;
  display: inline-block;
}

.btn-action img {
  width: 6vw;
  transition: all 0.5s ease-in-out;
}

.btn-action img:hover {
  transform: scale(1.1);
}

/* .btn-action img[hvr] {
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.2s ease;
} */

/* .btn-action:hover img[hvr] {
  left: clamp(3px, 0.234vw, 6px);
} */

.btn-detail {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.btn-detail img {
  width: min(312px, 12.2vw);
}

.btn-detail img[hvr] {
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.2s ease;
}

.btn-detail:hover img[hvr] {
  left: clamp(3px, 0.234vw, 6px);
}

body {
  font-family: "微軟正黑體", "Microsoft Jhenghei", "SF Pro TC", "PingFang TC",
    Arial, sans-serif;
  background-image: url("../img/background.jpg");
  background-size: cover;
}

body.overflowed {
  overflow: hidden;
}

.img-title {
  position: relative;
}

.img-title > img {
  width: 100%;
}

.img-title.overall {
  margin: 50px auto;
}

.img-title.combined {
  /* background-color: var(--geyser); */
}

.img-title .img-title-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-title .img-title-inner .btn-detail {
  top: 0.82vw;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 299;
  padding: 0.885vw 4.167vw 0.938vw;
  background-color: var(--wh);
}

.header .header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
}

.logo img {
  width: min(239px, 9.3vw);
}

.dropdown {
  position: absolute;
  top: var(--header);
  left: 0;
  right: 0;
}

.dropdown li {
  margin: -2px 0;
}

.dropdown li a {
  display: block;
}

.dropdown li a img {
  width: 100%;
}

.dropdown-mask {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 290;
}

.overflowed .dropdown-mask {
  position: fixed;
}

.kv {
  position: relative;
}

.kv .nav {
  position: absolute;
  bottom: 0;
  z-index: 3;
}

.kv .swiper {
  --swiper-pagination-bullet-width: 15px;
  --swiper-pagination-bullet-height: 15px;
  --swiper-pagination-color: var(--orange);
  --swiper-pagination-bottom: 3vw;
}

.kv .swiper .swiper-slide img {
  width: 100%;
}

.nav .nav-inner {
  display: flex;
}

.nav li {
  border-radius: 50px 50px 0 0;
}

.nav li a {
  display: block;
}

.nav li a .nav-img {
  position: relative;
  z-index: 1;
  width: 115%;
  transition: all 0.5s ease-in-out;
}

.nav .nav-inner li:hover .nav-img {
  transform: translateY(-1vw);
}

.nav li:nth-child(2) {
  position: relative;
  right: 2%;
  z-index: 2;
}

.nav li:nth-child(3) {
  position: relative;
  right: 4%;
  z-index: 3;
}

.nav li:nth-child(4) {
  position: relative;
  right: 6%;
  z-index: 4;
}

.nav li:nth-child(5) {
  position: relative;
  right: 8%;
  z-index: 5;
}

.nav li:nth-child(6) {
  position: relative;
  right: 10%;
  z-index: 6;
}

.nav li:nth-child(1)::before,
.nav li:nth-child(3)::before,
.nav li:nth-child(5)::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18.6vw;
  height: 3vw;
  background-color: #e16204;
}

.nav li:nth-child(2)::before,
.nav li:nth-child(4)::before,
.nav li:nth-child(6)::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18.6vw;
  height: 3vw;
  background-color: #e08900;
}

.nav li:nth-child(6)::before {
  height: 1.5vw;
}

.nav li a .nav-img {
  width: 18.6vw;
  height: 5vw;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.nav .nav-img1 {
  background-image: url("../img/nav_bg-1.jpg");
}

.nav .nav-img2 {
  background-image: url("../img/nav_bg-2.jpg");
}

.nav .nav-img3 {
  background-image: url("../img/nav_bg-3.jpg");
}

.nav .nav-img4 {
  background-image: url("../img/nav_bg-4.jpg");
}

.nav .nav-img5 {
  background-image: url("../img/nav_bg-5.jpg");
}

.nav .nav-img6 {
  background-image: url("../img/nav_bg-6.jpg");
}

.pin-spacer {
  overflow: hidden !important;
}

/* Card ScrollTrigger */

.card {
  position: relative;
}

.card .card-inner {
  display: flex;
  padding-left: 9.766vw;
}

.card .card-inner li {
  margin-right: 2.539vw;
}

.card .card-inner li a {
  display: block;
}

.card .card-inner li figure {
  position: relative;
  z-index: 10;
}

.card .card-inner li figure .icon {
  position: absolute;
  z-index: 15;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .card-inner li figure .icon img {
  opacity: 1;
  transition: opacity 0.2s ease-in;
  pointer-events: none;
  width: min(157px, 6.1vw);
}

.card .card-inner li figure .pict {
  filter: brightness(0.6);
  transition: filter 0.2s ease-in;
}

.card .card-inner li:nth-child(1) figure::before {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: -3vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-1_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(2) figure::before {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: -3vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-2_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(3) figure {
  position: relative;
}

.card .card-inner li:nth-child(3) figure::before {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: -3vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-3_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(4) figure::after {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: -3vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-4_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(5) figure::after {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: 1vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-5_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(6) figure::after {
  content: "";
  position: absolute;
  left: 2vw;
  bottom: 1vw;
  z-index: 3;
  width: 200px;
  height: 90px;
  background-image: url("../img/card-image-6_dec.png");
  background-size: 100%;
}

.card .card-inner li:nth-child(6) figure {
  position: relative;
}

.card-desc {
  position: absolute;
  right: 5%;
  top: -43px;
  z-index: 3;
  width: 200px;
  height: 100px;
  background-image: url("../img/card_image-3_dec.png");
  background-size: cover;
}

/* .card .card-inner li:nth-child(6) figure::before {
  content: "";
  position: absolute;
  right: -88px;
  top: -43px;
  z-index: 3;
  width: 200px;
  height: 100px;
  background-image: url("../img/card_image-3_dec.png");
  background-size: cover;
} */

.card .card-inner li .btn-arrow {
  position: relative;
  text-align: center;
  margin-bottom: 10vw;
}

.card .card-inner li .btn-arrow .chev {
  position: absolute;
  bottom: 0;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in;
}

.card .card-inner li .btn-arrow .care-text {
  width: 150px;
}

.card .card-inner li:nth-child(1) .btn-arrow .care-text,
.card .card-inner li:nth-child(2) .btn-arrow .care-text {
  margin-top: 7.7vw;
}

.card .card-inner li:nth-child(3) .btn-arrow .care-text {
  width: 175px;
  margin-top: 8.3vw;
}

.card .card-inner li:nth-child(4) .btn-arrow .care-text {
  width: 230px;
  margin-top: 8.3vw;
}

.card .card-inner li:nth-child(5) .btn-arrow .care-text {
  width: 160px;
  margin-top: 1.9vw;
}

.card .card-inner li:nth-child(6) .btn-arrow .care-text {
  width: 260px;
  margin-top: 1.9vw;
}

.card .card-inner li a:hover figure .icon img {
  opacity: 0;
}

.card .card-inner li a:hover figure .pict {
  filter: brightness(1);
}

.card .card-inner li a:hover .btn-arrow .chev {
  transform: translateY(-50%);
}

.card .card-inner li[value="2"] figure .icon img {
  width: min(101px, 5.4vw);
}

.card .card-inner li[value="3"] figure .icon img {
  width: min(137px, 5.4vw);
}

.card .card-inner li[value="4"] figure .icon img {
  width: min(200px, 5.4vw);
}

.card .card-inner li[value="5"] figure .icon img {
  width: min(144px, 5.4vw);
}

.card .card-inner li[value="6"] figure .icon img {
  width: min(143px, 5.4vw);
}

/* Card Swiper */

.card-swiper .card {
  padding-left: 0;
}

.card-swiper .card .card-inner li {
  margin-right: 0;
  text-align: center;
}

.card-swiper .card .card-inner li img:not(.icon img) {
  width: min(584px, 67.1vw);
}

.card-swiper .card .card-inner li a {
  display: inline-block;
}

.card-swiper .card .card-inner li figure .icon img {
  width: min(143px, 16.4vw);
}

.card-swiper .card .card-inner li[value="2"] figure .icon img {
  width: min(96px, 11vw);
}

.card-swiper .card .card-inner li[value="3"] figure .icon img {
  width: min(125px, 14.4vw);
}

.card-swiper .card .card-inner li[value="4"] figure .icon img {
  width: min(181px, 20.8vw);
}

.card-swiper .card .card-inner li[value="5"] figure .icon img {
  width: min(131px, 15.1vw);
}

.card-swiper .card .card-inner li[value="6"] figure .icon img {
  width: min(130px, 14.9vw);
}

.card-swiper .swiper-button div[class^="swiper-button-"]::before,
.card-swiper .swiper-button div[class^="swiper-button-"]::after {
  font-size: 0;
}

.card-swiper .swiper-button .swiper-button-prev {
  transform: rotate(-0.5turn);
}

/* 各項優惠 */

.deal-group {
  width: 97%;
  margin: auto;
  background-image: url(../img/bg.jpg);
  background-size: 78%;
  margin-top: 10vw;
}

.deal {
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}

.deal .deal-image {
  position: relative;
  width: 50%;
}

.deal-dec {
  position: absolute;
}

.deal .deal-dec-01 {
  right: 40vw;
  top: -7vw;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.deal .deal-dec-01 img {
  width: 12vw;
}

.deal .deal-dec-02 {
  right: 0vw;
  top: 10vw;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.deal .deal-dec-02 img {
  width: 25vw;
}

.deal .deal-dec-03 {
  right: 15vw;
  top: 10vw;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.deal .deal-dec-03 img {
  width: 14vw;
}

.deal-dec-04 {
  left: 4.5vw;
  top: 10vw;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.deal-dec-04 img {
  width: 10vw;
}

.deal-dec-05 {
  top: 10vw;
  right: -3vw;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  animation: rotateDec 10s linear infinite;
}

@keyframes rotateDec {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.deal-dec-05 img {
  width: 10vw;
}

.deal-title {
  position: relative;
  top: 3vw;
  left: 3vw;
  width: 80%;
}

.deal-title img {
  width: 15%;
}

.deal .deal-title img {
  width: 200px;
  margin: 30px;
}

.deal .deal-text > img,
.deal .deal-image > img {
  width: 100%;
}

.deal .deal-image .deal-img-left {
  position: relative;
}

.deal .deal-text {
  position: relative;
  width: 30%;
}

.deal .deal-text .deal-button {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.deal .deal-text .deal-button1 {
  bottom: 8.5vw;
  left: 1vw;
}

.deal .deal-text .deal-button2 {
  bottom: 8vw;
  left: 1vw;
}

.deal .deal-text .deal-button3 {
  bottom: 6vw;
  left: 1vw;
}

.deal .deal-text .deal-button4 {
  bottom: 6.5vw;
  left: 1vw;
}
.deal .deal-text .deal-button5,
.deal .deal-text .deal-button6 {
  bottom: 9vw;
  left: 1.5vw;
}

.deal .deal-text .deal-button a[class^="btn-"] {
  width: max-content;
}

.deal.flex-rev {
  flex-direction: row-reverse;
}

#deal-1 .deal-text {
  top: 3vw;
}

#deal-2 {
  position: relative;
}

#deal-2 .deal-text {
  top: 4vw;
}

#deal-2 .deal-image {
  margin-left: 3.7vw;
}

#deal-2 {
  margin-top: 6.5vw;
}

#deal-3 {
  margin-top: 4vw;
}

#deal-3 .deal-text,
#deal-5 .deal-text,
#deal-6 .deal-text {
  top: 3vw;
}

#deal-1 .deal-image,
#deal-3 .deal-image,
#deal-5 .deal-image,
#deal-6 .deal-image {
  margin-right: 5vw;
}

#deal-4 {
  margin-top: 6.3vw;
  padding-bottom: 6.3vw;
}

#deal-4 .deal-text {
  top: 1.6vw;
}

#deal-4 .deal-image {
  margin-left: 3.7vw;
}

/* 聯票 */

#deal-5 {
  margin-top: 0;
}

#deal-5 .deal-text .deal-button .btn-action {
  margin-top: 0;
}

#deal-6 {
  margin: 8.5vw auto;
}

#deal-6 .deal-text .deal-button .btn-action {
  margin-top: 0;
}

.title-2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 1vw;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.h2-content {
  position: relative;
  height: 32vw;
}

.h2-content > img {
  width: 85%;
  margin: auto;
  margin-top: 2.5vw;
}

.h2-content > img:nth-child(1) {
  left: 0;
  right: 0;
  position: absolute;
}

.h2-content .h2-dec {
  left: 0;
  right: 0;
  position: absolute;
  opacity: 0;
}

.h2-content .h2-dec-animation {
  opacity: 1;
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 50%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
  animation: maskSlide 2s ease forwards;
}

@keyframes maskSlide {
  from {
    -webkit-mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
  }
}

.footer {
  background-color: var(--orange);
  text-align: center;
  padding: clamp(21px, 1.641vw, 42px) 0 clamp(21px, 1.641vw, 42px);
}

.footer .footer-inner {
  font-size: clamp(14px, 0.781vw, 20px);
  color: var(--wh);
}

/* 【彈窗】 */

.modally-inner {
  color: #313131;
}

.modally-inner h3 {
  font-size: 1.563vw;
  margin-bottom: 0.8em;
  color: var(--orange);
}

.modally-inner .first-line {
  display: block;
  font-size: clamp(12px, 0.938vw, 24px);
  margin-bottom: 0.625vw;
  line-height: 1.7;
}

.modally-inner .inter {
  display: block;
  line-height: 1.7;
  padding-top: 1em;
}

.modally-inner p {
  font-size: clamp(12px, 0.938vw, 24px);
  line-height: 1.7;
}

.modally-inner p a,
.modally-inner p a:link,
.modally-inner p a:visited {
  color: #0068b7;
  text-decoration: underline;
}

.modally-inner .term li {
  position: relative;
  padding-left: 2em;
  font-size: clamp(12px, 0.938vw, 24px);
  line-height: 1.7;
}

.modally-inner .term li span {
  position: absolute;
  left: 0;
  line-height: 1.7;
}

.modally-inner .tb-term {
  width: 100%;
  border-collapse: collapse;
}

.modally-inner .tb-term th,
.modally-inner .tb-term td {
  vertical-align: top;
  line-height: 1.7;
}

.modally-inner .tb-term th {
  padding-right: 0.391vw;
}

/* 【寬度變化 MEDIA QUERIES】 */

@media screen and (max-width: 2560px) {
  :root {
    --size: 1;
  }
}

@media screen and (max-width: 1920px) {
  :root {
    --size: 1;
  }
}

@media screen and (max-width: 871px) {
  [pc] {
    display: none;
  }
  [mb] {
    display: block;
  }
  [mb="540"] {
    display: none;
  }

  body {
    position: relative;
  }

  .kv {
    margin-top: 14vw;
    z-index: 0;
  }

  .swiper-pagination {
    display: none;
  }

  .btn-burger {
    display: block;
  }
  .btn-tgo img {
    width: min(615px, 70.7vw);
  }
  .btn-action img {
    width: min(275px, 31.6vw);
  }
  .btn-action:hover img[hvr] {
    left: clamp(3px, 0.69vw, 6px);
  }
  .btn-detail img {
    width: min(275px, 31.6vw);
  }
  .btn-detail:hover img[hvr] {
    left: clamp(3px, 0.69vw, 6px);
  }
  .img-title .img-title-inner {
    align-items: end;
  }
  .img-title .img-title-inner .btn-detail {
    top: 0;
  }

  .img-title.overall {
    display: flex;
    margin: auto;
    margin-top: 10vw;
    z-index: 1;
  }

  .img-title.overall::before {
    content: "";
    position: absolute;
    left: 1vw;
    top: -10vw;
    z-index: 3;
    width: 30vw;
    height: 20vw;
    background-image: url(../img/card_image-3_dec.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .header {
    padding: 2.989vw 3.333vw 3.448vw;
  }
  .logo img {
    width: min(228px, 26.2vw);
  }
  .pin-spacer {
    display: none !important;
  }

  .card .card-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: initial;
  }

  .card-swiper .card .card-inner li:nth-child(2),
  .card-swiper .card .card-inner li:nth-child(4),
  .card-swiper .card .card-inner li:nth-child(6) {
    margin-left: 2vw;
  }

  .card-swiper .card .card-inner li:nth-child(1),
  .card-swiper
    .card
    .card-inner
    li:nth-child(3)
    .card-swiper
    .card
    .card-inner
    li:nth-child(5) {
    margin-right: 2vw;
  }

  .card-swiper .card .card-inner li img:not(.icon img) {
    width: 45vw;
  }

  .card .card-inner li:nth-child(6) figure::before {
    display: none;
  }

  .card .card-inner li figure .pict {
    filter: brightness(1) !important;
  }

  .card .card-inner li:nth-child(1) figure::before {
    display: none;
  }

  .card .card-inner li:nth-child(2) figure::before {
    display: none;
  }

  .card .card-inner li:nth-child(3) figure::after {
    display: none;
  }

  .card .card-inner li:nth-child(3) figure::before {
    display: none;
  }

  .card .card-inner li:nth-child(3) .btn-arrow .care-text {
    width: 11vw;
    margin-top: 15.3vw;
  }

  .card .card-inner li:nth-child(4) figure::after {
    display: none;
  }

  .card .card-inner li:nth-child(5) figure::after {
    display: none;
  }

  .card .card-inner li:nth-child(6) figure::after {
    display: none;
  }

  .card .card-inner li .btn-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vw;
  }

  .card .card-inner li .btn-arrow img {
    width: 30vw !important;
  }

  .card .card-inner li .btn-arrow-2 img {
    margin-bottom: 5vw;
  }

  .card .card-inner li .btn-arrow-3 img {
    width: 40vw !important;
  }

  .card .card-inner li .btn-arrow-4 img {
    margin-bottom: 12vw;
  }

  .deal-title {
    position: relative;
    top: initial;
    left: initial;
    width: 80%;
    margin: 5vw 10vw 0;
  }

  .deal-title img {
    width: 50%;
  }

  .deal .deal-image > img {
    position: relative;
    z-index: 3;
    width: 90%;
    margin: auto;
  }

  .deal .deal-text > img {
    position: relative;
    z-index: 3;
    width: 80%;
    margin: auto;
  }

  .deal-group {
    width: 95%;
    background-image: url(../img/bg.jpg);
    background-size: 113%;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-top: 10vw;
  }

  .deal {
    margin-bottom: 10vw;
  }

  .deal,
  .deal.flex-rev {
    flex-direction: column-reverse;
  }

  .deal .deal-image {
    width: 100%;
  }

  .btn-action img {
    width: 18vw;
  }

  .deal .deal-text {
    width: 100%;
    display: flex;
    margin-top: 3vw;
  }

  .deal .deal-text .deal-button1,
  .deal .deal-text .deal-button2,
  .deal .deal-text .deal-button3,
  .deal .deal-text .deal-button4,
  .deal .deal-text .deal-button5,
  .deal .deal-text .deal-button6 {
    bottom: -1vw;
    left: 10vw;
  }

  .deal {
    margin-top: 0;
  }

  .deal .deal-title {
    position: initial;
    text-align: center;
  }

  .deal .deal-dec-01 {
    right: -1vw;
    top: -17vw;
    opacity: 1;
  }

  .deal .deal-dec-01 img {
    width: 23vw;
  }

  .deal .deal-dec-02 {
    right: 0vw;
    top: 6vw;
    opacity: 1;
  }

  .deal .deal-dec-02 img {
    width: 40vw;
  }

  .deal .deal-dec-03 {
    top: -14vw;
    right: 26vw;
    opacity: 1;
  }

  .deal .deal-dec-03 img {
    width: 30vw;
  }

  .deal-dec-04 {
    left: 5vw;
    top: -18vw;
    opacity: 1;
  }

  .deal-dec-04 img {
    width: 15vw;
  }

  .deal-dec-05 {
    right: 5vw;
    top: -18vw;
    opacity: 1;
  }

  .deal-dec-05 img {
    width: 16vw;
  }

  .deal-image {
    margin-top: 15vw;
  }

  .deal-image1 {
    margin-top: 2vw;
  }

  .deal-image2 {
    margin-top: 10vw;
  }

  #deal-1 .deal-image,
  #deal-3 .deal-image,
  #deal-5 .deal-image,
  #deal-6 .deal-image {
    margin-right: initial;
  }

  #deal-2,
  #deal-3,
  #deal-4 {
    margin-top: -7.5vw;
  }

  #deal-2 .deal-image,
  #deal-4 .deal-image {
    margin-left: initial;
  }

  .deal .deal-text .deal-button {
    z-index: 4;
  }

  .deal .deal-text .deal-button,
  #deal-2 .deal-text .deal-button {
    padding-top: min(321px, 36.9vw);
    padding-left: 0;
    align-items: center;
  }

  .deal .deal-text .deal-button .btn-action,
  #deal-2 .deal-text .deal-button .btn-action {
    margin-top: min(36px, 4.1vw);
  }

  #deal-3 .deal-text .deal-button {
    padding-top: 43.678vw;
  }

  #deal-4 {
    padding-bottom: 10vw;
  }

  #deal-4 .deal-text .deal-button {
    padding-top: 43.678vw;
    padding-left: 0;
  }

  #deal-5 .deal-text .deal-button,
  #deal-6 .deal-text .deal-button {
    padding-top: 35vw;
    padding-left: 0;
  }

  #deal-6 {
    margin: 14.5vw auto;
    margin-bottom: 27vw;
  }

  .h2-content {
    height: 58vw;
  }

  .h2-content > img {
    margin-top: 19.5vw;
  }

  .mb-background {
    position: absolute;
    top: 55vw;
    z-index: 1;
    width: 100%;
    height: 50vw;
    background-image: url("../img/backgroun-mb.png");
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .img-title > img {
    width: 85%;
    margin: auto;
    margin-top: 10vw;
  }

  .img-title.overall > img {
    margin-top: 0;
    margin-bottom: 8vw;
  }

  .footer {
    padding: clamp(19px, 4.368vw, 38px) 0 clamp(19px, 4.368vw, 38px);
  }

  .footer .footer-inner {
    font-size: clamp(12px, 2.069vw, 18px);
  }

  /* 【彈窗】 */
  .modally {
    padding-top: min(188px, 21.6vw);
  }

  .modally .modally-close-button img {
    max-width: unset;
    width: min(128px, 14.7vw);
  }
  .modally-inner h3 {
    font-size: 5vw;
    margin-bottom: 0.4em;
    line-height: 1.3;
  }

  .modally-inner .first-line {
    font-size: clamp(12px, 2.759vw, 24px);
    line-height: 1.5;
  }

  .modally-inner p {
    font-size: clamp(12px, 2.759vw, 24px);
    line-height: 1.5;
  }

  .modally-inner .term li {
    font-size: clamp(12px, 2.759vw, 24px);
    line-height: 1.5;
  }

  .modally-inner .term li span {
    position: absolute;
    left: 0;
    line-height: 1, 5;
  }

  .modally-inner .tb-term th,
  .modally-inner .tb-term td {
    line-height: 1.5;
  }
}

@media screen and (max-width: 540px) {
  [mb="540"] {
    display: block;
  }
  .footer .footer-inner {
    line-height: 1.3;
  }
}

@media screen and (max-width: 430px) {
  .modally-inner p {
    font-size: 13px;
  }
}

@media screen and (max-width: 375px) {
  .footer .footer-inner {
    font-size: 10px;
    line-height: 1.5;
  }
}
