@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/* global */
:root {
  scroll-padding-top: 8.3vw;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin-bottom: 10px;
	line-height: 1.5;
}
.hidden {
    overflow: hidden;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	max-width: 68vw;
	margin: auto;
}
main {
	
}
section {
	
}
.video_wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	max-height: 100%;
	max-width: 100%;
	min-height: 100%;
	min-width: 100%;
	width: 0;
}
.max100 {
    max-width: 100%;
}
.full {
/*    width: 100%;*/
}
.r {
    position: relative;
}
.flex {
    display: flex;
}
.flex_1 {
    flex: 1;
}

/* header */
header {
	
}
nav {
	
}

/* footer */
footer {
	
}
footer img {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
}

/* title & font-size */
h2 {
    color: #259bb1;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.5;
}
h3 {
    margin-bottom: 20px;
}
h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}
h5 {
    color: #ffffff;
}
big {
	
}
small {
    font-size: 20px;
}

/* breed */
.bread {
    margin-bottom: 40px;
}
.bread a {
    position: relative;
    padding-right: 30px;
}
.bread a:hover {
    text-decoration: underline;
}
.bread a:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #EEA71B;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	background-color: transparent;
	padding: 0;
}
.btn1 {
    display: inline-block;
    background: #259bb1;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    padding: 15px 65px;
    padding-left: 45px;
    position: relative;
    line-height: 1;
}
.btn1:after {
    position: absolute;
    content: '';
    border: solid white;
	border-width: 2px 2px 0 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -8px;
	top: 50%;
	right: 40px;
	width: 15px;
	height: 15px;
}
.btn1:hover {
    background: #1c7c8e;
}

/* form */
.form_wrap {
    margin-bottom: 20px;
}
.form_wrap > label {
    display: block;
    color: #259bb1;
}
textarea {
	width: 100%;
	resize: none;
	padding: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0; /* must! */
    width: 100%;
    padding: 0 10px;
    border: 1px solid #235535;
    height: 40px;
    box-shadow: none;
    margin: 0;
    color: #333333;
}
.input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
    background: #ffffff;
}
.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 10px;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    display: inline-block;
/*	line-height: 1.5;*/
}
.checkbox_wrap input[type='checkbox'] + label:before {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 5px;
    border: 2px solid #ffffff;
    top: 50%;
	margin-top: -.5em;
    left: 2px;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
.checkbox_wrap input[type='checkbox']:disabled + label {
    color: #999999;
}
.checkbox_wrap input[type='checkbox']:disabled + label:before {
    border-color: #999999;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 100px;
    border-color: #259bb1;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}

/* elements */
.box1 {
    border-radius: 1.4vw;
    padding: 5.6vw 2.8vw;
    background: #ffffff;
    /* border: 0.26vw solid rgb(24, 54, 139); */
    margin-top: 1vw;
    /* font-weight: 500; */
}
.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {
	
margin-top: 8vw;
}
.tab_btn {
	display: flex;
	justify-content: center;
	gap: 2vw;
}
.tab_btn > * {
	position: relative;
	padding: 0.8vw;
	text-align: center;
	cursor: pointer;
	width: 10vw;
	background: #f15a25;
	color: #fff;
	border-color: #f15a25;
	font-size: 1vw;
	font-weight: 900;
	border-style: solid;
	border-width: 0.25vw 0.25vw 0;
	border-radius: 1vw 1vw 0 0;
	font-style: italic;
}
.tab_btn > *.show {
    color: #f15a25;
    background-color: #fff;
    border-color: #f15a25;
}
.tab_con {
    width: 50vw;
    margin: auto;
    padding: 2vw 3.8vw;
    background: #fff;
    border: solid #f15a25;
    border-width: 0.25vw;
    border-radius: 1.5vw;
    margin-top: -0.2vw;
}
.tab_con > div {
	opacity: 0;
	/* transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s; */
	/* display: none; */
	
    height: 0;
}
.tab_con > div.show {
	/* display: block; */
    opacity: 1;
    height: auto;
}
.tab_con > div.fade {
	/* opacity: 1; */
    /* height: auto; */
}
.tab_con .inner {
	padding: 0 94px;
}

/* acc */
.acc_btn {
    cursor: pointer;
}
.acc_con {
    display: none;
}


/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.list1 {
    background: #ffffff;
    border-radius: 10px;
}
.list1 tr {
    border-bottom: 1px solid #c33333;
    padding: 10px 20px;
}
.list1 tr:last-child {
    border-bottom: 0;
}
.list1 td {
    padding: 10px 20px;
    vertical-align: middle;
}
.list1 td:first-child {
    padding-right: 5px;
}
.list1 td:last-child {
    padding-left: 5px;
    width: 110px;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 50px auto;
}
.pagers .num {
    color: #666666;
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}
.pagers .num.cur,
.pagers .num:hover {
    background: #e5e5e5;
}
.pagers .btn {
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}

/* owl-carousel */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 28px;
    height: 47px;
    position: absolute;
    top: 50%;
    margin-top: -27px;
}
.owl-nav button.owl-prev {
    left: 15px;
}
.owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: 15px;
}
.owl-dots {
    text-align: center;
    display: flex;
    justify-content: flex-end;
}
.owl-dots button.owl-dot {
    width: 7vw;
    height: 10px;
    background: #434343;
    display: inline-block;
}
.owl-dots button.owl-dot {
    transition: all .3s;
}
.owl-dots button.owl-dot.active, .owl-dots button.owl-dot:hover {
	background: #CD0001;
}

/* popup */
.p_layout {
    position: relative;
    background: #fff;
    padding: 3vw;
    background-image: url(../img/bg-02.jpg);
    background-size: cover;
    min-height: 50vh;
    margin: 10vw;
}
.mfp-container {
    padding: 0;
}
.mfp-bg {
    background: rgba(0,0,0,.75);
}
button.mfp-close {
    right: 2vw;
    top: 2vw;
}
.mfp-close:active {
    top: 2vw;
}

/* scrollbar */
.scroll_con {
    height: 80vh;
    padding-right: 3vw;
}
.mCSB_scrollTools .mCSB_draggerRail {
	background: none;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	border-radius: 10px;
	background: #f098bc;
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background: #f098bc;
}
.mCSB_outside + .mCSB_scrollTools {
	right: 20px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
	top: 50px;
	bottom: 50px;
}

/**********/
body {
    font-family: "Noto Sans TC", sans-serif;
    color: #000;
    overflow-x: hidden;
    
    background-image: url(../img/bg-main.jpg);
    background-repeat: repeat-y;
    background-size: 100% auto;
}
.margin_auto {
    margin-left: auto;
    margin-right: auto;
}
.bg {
    background-repeat: no-repeat;
    background-size: 100% auto;
}
#kv {
    background-image: url(../img/kv.png);
    background-size: 100% 100%;
    height: 42.7vw;
}
#kv .tit {
    max-width: 53.6vw;
    padding-top: 3vw;
}
#kv .coins {
    width: 6.6vw;
    margin-left: 55.2vw;
    transform-origin: top center;
    animation: ws_anime_3 cubic-bezier(0.37, 0, 0.63, 1) infinite both alternate 2s;
}
.nav_wrap {
    z-index: 2;
    position: absolute;
    width: 100%;
}
.nav_wrap.is-sticky {
    background: #f5e1be;
    border-bottom: 0.3vw solid #544741;
}
nav {
    width: 62.5vw;
    padding: 1.4vw 0;
    margin: auto;
    gap: 3vw;
    justify-content: center;
}
nav a {
    position: relative;
    display: block;
    width: 15.1vw;
}
.bg {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.btn_more_pay {
    width: 21.4vw;
    display: inline-block;
}
#part1 {
    background-image: url(../img/part-01.jpg);
    height: 100.2vw;
    padding-top: 56.5vw;
    margin-top: 8vw;
}
#part1 .scroll {
    position: absolute;
    width: 7%;
    height: 3%;
    /* background: red; */
    /* opacity: .5; */
    left: 64.5%;
    top: 68%;
}
#part2 {
    background-image: url(../img/part-02.jpg);
    height: 51.9vw;
    padding: 44.9vw 0 0;
/*    background-size: 100% auto;*/
}
.btn_more_point {
    width: 27.1vw;
    display: inline-block;
}
#part3 {
    background-image: url(../img/part-03.jpg);
    height: 49.4vw;
    padding-top: 14vw;
}
.slider2 {
    gap: 1.3vw;
    margin-bottom: 3.6vw;
    padding: 0 0.9vw;
}
.slider2 .item {
    position: relative;
}
.slider2 .item .icon {
    width: 49%;
    margin: auto;
    position: absolute;
    top: -19.9%;
    left: -2.4%;
}
.slider2 .item img {
    position: relative;
}
#part4 {
    background-image: url(../img/part-04.jpg);
    height: 50.5vw;
    padding-top: 14vw;
}
.links_wrap {
    justify-content: center;
    margin-bottom: 1vw;
}
.links_wrap a {
    width: 54vw;
    display: inline-block;
    height: 22vw;
    cursor: default;
}
.btn_more {
    width: 14.1vw;
    display: inline-block;
}
#notice {
    background: #ff8d6b;
    font-size: 18px;
    padding: 3.4vw 0 2.2vw;
    background-size: 100% auto;
    background-repeat: repeat;
    overflow: hidden;
}
.notice_wrap {
    line-height: 2.5;
    font-weight: 500;
}
.notice_wrap .acc_btn {
    justify-content: center;
    align-items: center;
    width: 13vw;
    margin: auto;
    position: relative;
    padding-right: 3vw;
    line-height: 1;
}
.notice_wrap .acc_btn:after {
    content: '';
    background-image: url(../img/+.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2vw;
    height: 2vw;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.acc_wrap.open .acc_btn:after {
    background-image: url(../img/-.png);
    /* width: 1.5vw; */
    /* height: 1.5vw; */
}
.notice_wrap li {
    margin: 1% auto;
}
.notice_wrap ul > li {
    position: relative;
    padding-left: 30px;
}
.notice_wrap ul > li::before {
    position: absolute;
    content: '';
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
    left: 0;
    top: 14px;
    border-radius: 1000px;
    background: #f7bc34;
}
.btn_fixed {
    position: fixed;
    right: 3%;
    bottom: 5%;
    width: 9%;
    z-index: 2;
}
#notice .light {
    color: #d61518;
}
#notice_img {
    padding: 20px 0;
}
#notice .icon {
    position: relative;
    padding-left: 30px;
    margin: 1% auto;
}
#notice .icon:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    left: 0;
    top: 14px;
    border-radius: 1000px;
    background: #1f2386;
}
#notice ol {
    padding-left: 0;
    margin-left: -10px;
}
/**********/

/* pc & mobile */
.pc {
	display: initial;
}
.mo {
	display: none;
}

@media only screen and (max-width: 1100px) {
    footer img {
        width: auto;
        height: 8vw;
      }
}

@media only screen and (max-width: 769px) {
    :root {
        scroll-padding-top: 17.3vw;
    }
    body {
        background-image: url(../img/bg-main-m.jpg);
    }
	#kv {
        background-image: url(../img/kv-m.png);
        height: 108vw;
    }
    #kv .tit {
        max-width: 93vw;
        padding-top: 7vw;
    }
    #kv .coins {
        width: 11.6vw;
        margin-left: 60.8vw;
    }
    nav {
        padding: 3vw 0;
        gap: 0;
        width: fit-content;
        align-items: flex-end;
    }
    nav a {
        width: 31.4vw;
    }
    #top {
        margin-top: 19vw;
        background-image: url(../img/top-01-m.jpg);
        height: 225vw;
        padding-top: 208vw;
    }
    .part1_1 {
        background-image: url(../img/part-01-1-m.jpg);
        height: 140vw;
        padding-top: 111.8vw;
    }
    .full, .full_no {
        width: 70%;
    }
    .full p {
        font-size: 3.2vw;
        top: 76%;
    }
    .part1_2 {
        background-image: url(../img/part-01-2-m.jpg);
        height: 95.8vw;
        padding-top: 17.7vw;
    }
    .box2 {
        width: auto;
    }
    .inner {
        max-width: 92.9%;
    }
    .btn_fixed {
        width: 18%;
    }
    .btn_more_pay {
        width: 54.2vw;
    }
    .btn_more_point {
        width: 68.9vw;
    }
    .btn_more {
        width: 35.6vw;
    }
    .tab {
        padding: 18% 9% 5%;
    }
    .tab_btn {
        gap: 3.4vw;
    }
    .tab_btn > * {
        width: 29vw;
        border-radius: 2vw 2vw 0 0;
        border-width: 0.7vw 0.7vw 0;
        font-size: 3.8vw;
        padding: 2.5vw;
    }
    .tab_con {
        width: 100%;
        padding: 8vw 5vw;
        /* background: #fff; */
        border-width: 0.7vw;
        border-radius: 4vw;
        margin-top: -0.5vw;
    }
    .slick-next, .slick-prev {
        width: 8vw;
        height: 8vw;
        z-index: 1;
    }
    .slick-prev {
        left: -7vw;
    }
    .slick-next {
        right: -11vw;
    }
    .slick-next:before, .slick-prev:before {
        background-image: url(../img/icon-arrow.png);
        font-size: 0;
        width: 8vw;
        height: 8vw;
        display: block;
        background-size: 100% 100%;
        opacity: 1;
    }
    .slick-next:before {
        transform: scaleX(-1);
    }
    .slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
        opacity: 0;
    }
    .box1 {
        padding: 1vw 3vw 9vw;
        border-radius: 4vw;
        margin-top: 0;
        border-width: 0.6vw 0;
    }
    h4 {
       font-size: 3vw; 
    }
    #notice {
        font-size: 3vw;
        /* padding: 16vw 0; */
        background-image: none;
        /* background: #75c06a; */
    }
    #notice:before, #notice:after {
        opacity: 0;
    }
    .notice_wrap .acc_btn {
        width: 34.4%;
        margin-bottom: 2vw;
        padding-right: 6vw;
    }
    .notice_wrap .acc_btn:after {
        width: 4vw;
        height: 4vw;
    }
    .notice_wrap ul > li {
        padding-left: 4vw;
    }
    .notice_wrap ul > li::before {
        width: 2.4vw;
        height: 2.4vw;
        top: 3vw;
    }
    #notice .icon {
        padding-left: 4vw;
    }
    #notice .icon:after {
        width: 2.5vw;
        height: 2.5vw;
        top: 3vw;
    }
    .slick-slide img {
        width: 100%;
    }
    footer img {
        width: 100%;
        height: auto;
    }
    #notice ol {
        padding-left: 4vw;
    }
    .links_wrap {
        flex-direction: column;
        gap: 12vw;
        margin-bottom: 5vw;
    }
    .links_wrap a {
        width: 82vw;
        margin: auto;
        height: 33vw;
    }
    .nav_wrap {
/*        background: #75c06a;*/
        background-repeat: repeat-x;
        background-size: auto 100%;
    }
    .nav_wrap.is-sticky {
        border-width: 1vw;
    }
    .nav_wrap.is-sticky .flex {
/*        padding-bottom: 4.9vw;*/
    }
    #part1 {
        margin-top: 14vw;
        background-image: url(../img/part-01-m.jpg);
        height: 346.8vw;
        padding-top: 216vw;
    }
    #part1 .scroll {
        left: 50%;
        top: 83%;
        width: 20%;
    }
    #part2 {
        background-image: url(../img/part-02-m.jpg);
        min-height: 211.2vw;
        padding: 194vw 0 0;
        background-color: #e7fbd6;
        height: auto;
    }
    #part3 {
        background-image: url(../img/part-03-m.jpg);
        height: 126.9vw;
        padding-top: 60vw;
    }
    .slider2 {
        flex-direction: column;
        gap: 4.8vw;
        max-width: 64.5vw;
        margin: 0 auto 7.6vw;
    }
    #part4 {
        background-image: url(../img/part-04-m.jpg);

        height: 131.6vw;
        padding-top: 53vw;
    }
    .pc {
    	display: none;
    }
    .mo {
    	display: initial;
    }
}