/*-----------------------------reset開始-------------------------------------*/
@charset "utf-8";
html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
	line-height: 1;
	font-size: 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
nav ul {
	list-style: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
/* change colours to suit your needs */
ins {
	background-color: #fff;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
div {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
i {
	font-style: normal;
}
ul {
	list-style: none;
}
/*-----------------------------天地開始-------------------------------------*/
body>.taishinLogo {
	width: 100%;
	height: 65px;
	border-bottom: 5px solid #b21d23;
	padding-top: 15px;
	background-color: #eeeeee;
	position: relative;
	z-index: 99999;
}
.taishinContain {
	width:70%;
	margin:0 auto;
	text-indent:-9999px;
}
.taishinContain a {
	display: block;
	width: 140px;
	height: 32px;
	background-image: url(../images/taishin/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 57px;
}
body>footer {
	width: 100%;
	height: 50px;
	background-image: url(../images/taishin/footer.gif);
	background-size: cover;
	background-position: center center;
	padding-top: 18px;
	position: relative;
	z-index: 99999;
}
body>footer p {
	color: #fff;
	font-size: 13px;
	margin-left:10px;
}
/* 天地結束 */


/*選單開始*/
.hamburger {
  width: 60px;
  height: 100%;
  position: relative;
  display: none;
  margin-left: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.hamburger::before, .hamburger::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: 47%;
  left: 20px;
  background-color: white;
  -webkit-box-shadow: 0 8px 0 white, 0 -8px 0 white;
          box-shadow: 0 8px 0 white, 0 -8px 0 white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hamburger::after {
  display: none;
}

header {
  display: block;
  position: fixed;
  height: 60px;
  width: 100%;
  top: 0;
  background: #d70c18;
  z-index: 100;
  /*box-shadow: 0px 5px 0px 0px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px 5px 0px 0px rgb(0 0 0 / 12%);*/
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  max-width: 1200px!important;
  margin: auto;
  padding-left: 0px;
  padding-right: 40px;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

header .logo {
  width: 155px;
  height: 40px;
  position: relative;
  background-image: url("../images/taishin/taishinLogo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

header .mainMenu {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

header .mainMenu .mask {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(109, 153, 152, 0.6);
  display: none;
  z-index: 50;
}

header .mainMenu ul {
  top: 0;
  z-index: 51;
}

header .mainMenu li {
  margin-left: 8px;
  margin-right: 8px;
  display: inline;
  white-space: nowrap;
}

header .mainMenu li a {
  padding: 1em 0;
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

header .mainMenu li.hide {
  display: none;
}


@media (max-width: 1300px) {
	header .logo {
	  margin: 0 40px;
	}
}
@media (max-width: 1024px) {
	header .logo {
		width: 131px;
	}
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .recomBrowser,
  .copyright {
    display: none;
  }
  header .logo {
    margin: 0px;
  }
  header .mainMenu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    z-index: 101;
    display: none;
  }
  header .mainMenu ul {
    width: 100%;
    height: auto;
    position: absolute;
    display: none;
  }
  header .mainMenu li {
    display: block;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    background-color: #2d3945;
  }
  header .mainMenu li a {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    color: #fff;
	font-weight: bold;
  }
  header .mainMenu li.hide {
    display: block;
  }
	header .mainMenu li::after{
		content: "";
	}
  
  header.on .hamburger::before, header.on .hamburger::after {
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header.on .hamburger::after {
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header.on .mainMenu {
    display: block;
  }
  header.on .mainMenu .mask,
  header.on .mainMenu ul {
    display: block;
  }
  footer .left span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  header .logo {
    width: 116px;
    height: 30px;
  }
  header .headerTitle {
    font-size: 14px;
  }
  footer .left span:nth-child(2) {
    display: none;
  }
}
/*選單結束*/

/*-----------------------------內容區開始-------------------------------------*/
html{
	font-size: 18px;
}
body{
	background-color: #faf4ff;
	color: #4c4949;
	font-size: 20px!important;
	line-height: 1.5 !important;
}
img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.wrapper{
	overflow: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 400;
}
section{
	padding-top: -1px;
	padding-bottom: -1px;
}
a{
	color: #b52ec9;
	text-decoration: none!important;
}
a:hover{
	text-decoration: none!important;
	color: #a898d3;
}
#card-info a{
	color: #fff;
}
.red{
	color: #ce3030;
}
.green{
	color: #00b51e;
}
.blue{
	color: #008cd6;
}
.yellow{
	color: #ffd800;
}
.white{
	color: #ffffff;
}
.purple{
	color: #b52ec9;
}
.medium{
	font-weight: 500;
}
.bold{
	font-weight: 700;
}
.black{
	font-weight: 900;
}
.small{
	font-size: .9rem;
}
.large{
	font-size: 1.5rem;
}
.fs-2{
	font-size: 2rem;
}
.block{
	display: block;
}
.hightlight{
	background-image: linear-gradient(transparent 50%, #ffb909 50%);
    /* 下面是做一些偏移，依每人需求而定 */
    margin: 0rem 0.25rem;
    padding: 0rem 0.25rem;
}

.btn.focus, .btn:focus{
	box-shadow: 0 0 0 0rem rgba(0,123,255,0)!important;
}

.nav-download {
    background-color: #f04553;
    color: #fff;
    border-radius: 20px;
	padding-left: 1rem!important;
	padding-right: 1rem!important;
	padding: 8px 20px;
}
.btn-main{
	background-color: #f44a6e;
	border: 5px solid #434343;
	border-radius: 40px;
	padding: 40px 30px;
	text-align: center;
	color: #fff;
	font-size: 1.7rem;
	width: 90%;
	margin: 0 auto;
	letter-spacing: 2px;
}
.btn-custom{
	background-color: #d40707;
	border: #ffa8a8 4px solid;
	display: inline-block;
	color: #fff;
	padding: 15px 42px;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 2px;
	border-radius: 50px;
	transition: .6s;
	margin-top: 30px;
}
.btn-custom:hover{
	background: #c20a0a;
	border: #8a1414 4px solid;
	color: #fff;
	transition: .6s;
}
.section-title-box{
	text-align: center;
	margin: 20px auto 40px;
	position: relative;
}
.tit2{
	font-size: .95rem;
	margin-bottom: 50px;
}
.title-dec{
	position: absolute;
}
.title-dec-r{
	right: 23%;
	bottom: 10px;
}
.title-dec-l{
	left: 22%;
	top: 0px;
}
.section-title-pic{
	margin-bottom: 20px;
}
.section-title{
	margin-bottom: 20px;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
}
.section-title-1{
	margin-top: 60px;
}

.section-subtitle{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #c82525;
	font-weight: 600;
	letter-spacing: 2px;
}
.text-ps{
	color: #909090;
	font-size: .85rem;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: 400;
}

.kv {
  background-image: url(../images/img-kv-web.jpg);
  width: 100%;
  height: 0;
  padding-bottom: 35.15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

#btn-main-group{
	margin-top: -50px;
	z-index: 999;
	position: relative;
}

#event-detail{
	padding: 60px 0;
	/*background-image: url("../images/bg-cloud.png");*/
}
.icons {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto 10px auto;
}
.card-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.box-1{
    max-width: 1200px;
    width: 100%;  
    display: flex;
    margin: 0 auto 30px auto;
}
.box-col{
    width: 33.3%;
    padding: 0 15px;
}
.card-box{
    padding: 0 20px ;
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0.1em;
	text-align: center;
	color: #4c4949;
	}
.card-box span{
    font-size: 32px; 
    line-height: 46px; 
    color:#b52ec9;
}
.btn {
    display: inline-block;
    width: auto;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 48px;
    border-radius: 25px;
    padding:0 56px 0 32px;
    color: #fff;
    background-image: url(../images/arrow.svg),linear-gradient(90deg, #7a61c1 0%, #7a61c1 48.67%, #7a61c1 100%);
    background-repeat: no-repeat;
    background-size: 8px auto, 110% 50px;
    background-position:top 19px right 32px, center center;
    text-align: left;
	transition: .6s;
}

.btn:hover {
    background-image: url(../images/arrow.svg),linear-gradient(270deg, #c21c0f 0%, #c21c0f 48.67%, #c21c0f 100%);
    text-decoration: none;
	color: #fff;
	transition: .6s;
}

.btn img {
    width: 11px;
    margin-left: 20px;
    transform: translateY(-2px);
}

.detail-content{
	line-height: 1.8;
	position: relative;
}
.event-detail .detail-content{
	padding: 0 20px;
}
.section-scroll,.section-scroll:hover{
	text-decoration: none!important;
}

.text-step{
	color: #553d99;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: 1px;
}
.text-step img{
	width: 28px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: -5px;
}
.step-line{
	border-top: 1px dashed #553d99;
	margin: 26px auto;
}
.step-content{
	align-items: center;
}
.gift{
	position: absolute;
	right: 5%;
	bottom: -10%;
}

.step-btn{
	background-color: #553d99;
	border-radius: 80px;
	padding:15px 60px; 
	color: #FFF;
	margin: 20px auto;
	display: inline-block;
	letter-spacing: 2px;
	font-size: 1.1rem;
	transition: .6s;
}
.step-btn:hover{
	color: #fff!important;
	background-color: #b52ec9;
	transition: .6s;
}
.step-btn img{
	display: inline-block;
	width: 32px;
	margin-left: 10px;
}

.apply-card{
	background-image: url("../images/bg-cloud.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding-bottom: 50px;
}
.card-apply-box{
	display: flex;
	align-items: center;
}
.apply-card p{
	letter-spacing: 2px;
	font-weight: 500;
}

.page-title{
	font-size: 2.4rem;
	font-weight: 500;
}
.page-title::after {
    content: "";
    display: block;
    width: 77px;
    height: 5px;
    border-radius: 10px;
    background-color: rgba(200,37,37,1);
    margin: 30px auto;
}



.card-info{
	padding: 100px 0 110px;
	background-image: url("../images/bg-p.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.card-info .section-title{
	text-align: left;
	color: #fff;
}
.card-info .section-pic{
	text-align: right;
}
.card-info .section-pic img{
	margin-right: 0;
}
.card-info-box{
	color: #fff;
	letter-spacing: 1px;
}
.card-info-box p{
	margin: 20px auto;
}
.card-info-box h6{
	font-weight: 400;
	line-height: 1.5;
}
.card-info-line {
    border-top: 2px dashed #cabfe9;
    margin: 80px auto;
}
.card-b-box p{
    letter-spacing: 2px;
    font-weight: 500;
}
.card-info-list{
	text-align: left;
	font-size: 1rem;
	letter-spacing: 2px;
	line-height: 1.6;
}
.other-activity-box-all{
	background-color: #553d99;
	padding: 0 0 20px;
	border-radius: 25px;
	color: #fff;
	text-align: center;
}
.other-activity-box-all img{
	width: 100%;
}
.other-activity-text{
	padding: 10px 26px;
	height: 100px;
	text-align: left;
}
.other-activity-btn{
	background-color: #fff;
	color: #4c4949;
	padding: 8px 30px;
	text-align: center;
	border-radius: 50px;
	margin: 10px auto;
	display: inline-block;
	font-size: 1rem;
	transition: .6s;
	cursor: pointer;
}
.other-activity-btn:hover{
	color: #b52ec9;
	transition: .6s;
}
.other-activity-btn img{
	width: 20px;
	display: inline-block;
	margin-left: 10px;
	margin-bottom: -2px;
}

.btn-submenu,#pills-tab-tpchange .nav-link{
	border: 5px solid rgba(0,140,214,1);
	background-color: rgba(255,255,255,1);
	border-radius: 50px;
	color: #008cd6;
	transition: .6s;
	font-size: 1.4rem;
	font-weight: 600;
	width: 350px;
	padding: 1rem;
	box-shadow: 4px 6px 0px rgba(87,166,222,.6);
	margin: 0 auto;
}
.step-name{
	font-size: 1rem;
	display: block;
	margin-bottom: 10px;
}

.owl-nav{
	display: none;
}
.owl-nav span{
	font-size: 50px;
	line-height: 1;
	opacity: .6;
	color: #f0594c;
	width: 20px;
}
.owl-prev{
	position: absolute;
	left: 25%;
    top: 45%;
}
.owl-next{
	position: absolute;
	right: 25%;
    top: 45%;
}

.line-tab .carousel-img img{
	width: 60%;
}


#other-activity .owl-dot{
	display: none;
}

.notice-contentbox{
	background-color: #61c14f;
	color: #fff;
	font-size: 1rem;
	padding: 30px 40px;
	border-radius: 20px;
	text-align: left;
	line-height: 1.8;
	margin: 30px auto 80px;
}
.notice-contentbox .row{
	display: flex;
	align-items: center;
}




#other-activity{
	background-image: url("../images/bg-oa.png");
	padding: 80px 0 90px;
	background-position: bottom;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
}
.down-pic{
	position: absolute;
	bottom: 0;
	right: 30%;
}

.modal-header{
	background-color: #f04553;
	color: #fff;
	font-weight: bold;
	align-items: center;
	border-radius: 10px 10px 0px 0px;
}
.modal-footer{
	justify-content: center;
	border-top: none;
	padding-bottom: 30px;
}
.modal-header .close{
	padding: 0;
	margin: 0;
	margin-top: -10px;
	background-color: rgba(255,255,255,0);
	cursor: pointer;
}
.close {
    color: #fff;
	font-size: 1.5rem;
}
.close:hover{
	color: #fff;
}

.btn-close:hover{
	color: #fff;
}
.modal-body{
	line-height: 1.5;
	text-align: justify;
	padding: 30px 30px 0;
}
.modal-open .modal{
	padding: 0 20px;
}
.modal-dialog {
    margin: 8rem auto;
}
.modal-dialog-centered{
	min-height: 300px;
}
.step-item{
	margin: 40px auto 0;
}
.step-item img{
	width: 40%;
}
.step-text{
	margin: 20px auto 10px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5;
}
.step-text span{
	width: 30px;
	height: 30px;
	background-color: #32b388;
	color: #fff;
	padding: 2px 9px;
	border-radius: 50%;
	font-weight: bold;
	margin-right: 10px;
}
#Modal-member-type-2 .step-text span{
	border-radius: 20px;
}

.action-box{
	position: fixed;
	z-index: 9999;
	right: 10px;
	top: 20vh;
	text-align: center;
	line-height: 1.5;
	font-weight: 500;
	font-size: .9rem;
	display: none;
}
.action-box-img{
	margin-bottom: 20px;
	width: 90%;
}

.action-box-m{
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #343436;
	z-index: 998;
	text-align: center;
	display: none;
	box-shadow: -9px 0px 10px rgba(0,0,0,.3);
}
.action-box-m a{
	width: 100%;
	float: left;
	padding: 16px 0;
	color: #fff!important;
}

/*.action-box-img{
	position: absolute;
	z-index: -1;
	top: -65px;
	right: 0px;
	width: 100px;
}
.apply{
	background-color: #FCCE56;
	padding: 16px 10px 12px;
	border-radius: 10px 10px 0px 0px;
}
.download{
	background-color: #FCCE56;
	padding: 12px 10px 16px;
	border-radius: 0px 0px 10px 10px;
}
.download::before{
	content: "";
	background-color: #2d3945;
	height: 1px;
	width: 80%;
	display: block;
	position: absolute;
	bottom: 49%;
}
*/
#gotop{
	position:fixed;
	z-index:90;
	right:1%;
	bottom:60px;
	display:none;
	width:50px;
	height:50px;
	color:#fff;
	opacity: .3;
	background:rgba(100,100,100,1);
	line-height:50px;
	border-radius:50%;
	text-align: center;
}
#gotop:hover{
	background:rgba(50,50,50,1);
}
#gotop img{
	margin-top: 30%;
}

/*注意事項收合內容*/
#information-n,#information-n1{
  display: none;
}

/*收合內容*/
.information{
  text-align: left;
  line-height: 18px;
  font-size: 15px;
  margin-top: 40px;
}
td {
  padding: 5px 0;
}
/*收合按鈕*/
.btn-notice,.btn-notice1{
  display: inline-block;
  margin: 20px auto 0;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  color: #434343;
}
.btn-notice b,.btn-notice1 b{
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #434343 transparent transparent transparent;
  margin-left: 8px;
}
.btn-notice i,.btn-notice1 i{
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #434343 transparent;
  margin-left: 8px;
}
.btn-notice:hover,.btn-notice1:hover{
  color: #434343;
}
.btn-notice:hover b,.btn-notice1:hover b{
  border-color: #434343 transparent transparent transparent;
}
.btn-notice:hover i,.btn-notice1:hover i{
  border-color: transparent transparent #434343 transparent;
}
.less {
  display: none;
}

.notice-content{
	font-size: 0.9rem;
	line-height: 1.8;
	padding-top: 30px;
	font-weight: 300;
}
@keyframes move1 {
            0% {
                -webkit-transform: translate(-10px, 0px);
                   -moz-transform: translate(-10px, 0px);
                    -ms-transform: translate(-10px, 0px);
                     -o-transform: translate(-10px, 0px);
                        transform: translate(-10px, 0px);
            }
			50% {
                -webkit-transform: translate(10px, 0px);
                   -moz-transform: translate(10px, 0px);
                    -ms-transform: translate(10px, 0px);
                     -o-transform: translate(10px, 0px);
                        transform: translate(10px, 0px);
            }
			100% {
                -webkit-transform: translate(-10px, 0px);
                   -moz-transform: translate(-10px, 0px);
                    -ms-transform: translate(-10px, 0px);
                     -o-transform: translate(-10px, 0px);
                        transform: translate(-10px, 0px);
            }
        }

@keyframes move2 {
            0% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
			50% {
                -webkit-transform: translate(0px, 15px);
                   -moz-transform: translate(0px, 15px);
                    -ms-transform: translate(0px, 15px);
                     -o-transform: translate(0px, 15px);
                        transform: translate(0px, 15px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }

@keyframes arrow {
            0% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
            50% {
                -webkit-transform: translate(0px, 10px);
                   -moz-transform: translate(0px, 10px);
                    -ms-transform: translate(0px, 10px);
                     -o-transform: translate(0px, 10px);
                        transform: translate(0px, 10px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }


@keyframes rotate1 {
			from {
                -webkit-transform:rotate(0deg);
                   -moz-transform:rotate(0deg);
                    -ms-transform:rotate(0deg);
                     -o-transform:rotate(0deg);
                        transform:rotate(0deg);
            }
			to {
                -webkit-transform:rotate(360deg);
                   -moz-transform:rotate(360deg);
                    -ms-transform:rotate(360deg);
                     -o-transform:rotate(360deg);
                        transform:rotate(360deg);
            }
        }

@keyframes fall1 {
            0% {
                -webkit-transform: translate(0px, -50px);
                   -moz-transform: translate(0px, -50px);
                    -ms-transform: translate(0px, -50px);
                     -o-transform: translate(0px, -50px);
                        transform: translate(0px, -50px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }


#action {
    position: fixed;
    z-index: 90;
    display: none;
    right: 1%;
    bottom: 22vh;
    width: 6vw;
    max-width: 130px;
}

/*裝置判斷*/
.mask-qr{
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5000;
    display: none;
}
.pcAppLinkBox,.pcAppLinkBox1,.pcAppLinkBox2,.pcAppLinkBox3,.pcAppLinkBox4,.pcAppLinkBox5,.pcAppLinkBox6{
	width: 300px;
	height: 320px;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	border-radius: 20px;
	padding-bottom: 20px;
	border: 5px solid #434343;
}
.pcAppLinkBox>h1,.pcAppLinkBox1>h1,.pcAppLinkBox2>h1,.pcAppLinkBox3>h1,.pcAppLinkBox4>h1,.pcAppLinkBox5>h1,.pcAppLinkBox6>h1{
	font-size: 20px;
	line-height: 50px;
	font-weight: 900;
	color: #FFF;
	text-align: center;
	background-color: #f04553;
	border-radius: 15px 15px 0 0;
}
.pcAppLinkBox>div,.pcAppLinkBox1>div,.pcAppLinkBox2>div,.pcAppLinkBox3>div,.pcAppLinkBox4>div,.pcAppLinkBox5>div,.pcAppLinkBox6>div{
	width: 100%;
	background:#fff;
	padding-top: 15px;
	text-align: center;
}
.pcAppLinkBox>div>img,.pcAppLinkBox1>div>img,.pcAppLinkBox2>div>img,.pcAppLinkBox3>div>img,.pcAppLinkBox4>div>img,.pcAppLinkBox5>div>img,.pcAppLinkBox6>div>img{
	width: 50%;
	margin-bottom: 10px;
}
.pcAppLinkBox>div>p,.pcAppLinkBox1>div>p,.pcAppLinkBox2>div>p,.pcAppLinkBox3>div>p,.pcAppLinkBox4>div>p,.pcAppLinkBox5>div>p,.pcAppLinkBox6>div>p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 10px;
	color: #333;
}
.pcAppClose,.noticeClose,.btn-close{
	width: 100px;
	font-size: 16px;
	line-height: 32px;
	font-weight: 900;
	color: #FFF;
	background-color: #2d3945;
	border-radius: 50px;
	cursor: pointer;
	margin: 0 auto;	
	transition: .6s;
	text-align: center;
	letter-spacing: 2px;
}
.pcAppClose:hover,.noticeClose:hover{
	background-color: #2d3945;	
	opacity: .8;
}

#action {
    position: fixed;
    z-index: 90;
    right: 1%;
    bottom: 60vh;
    max-width: 130px;
}
#action img:first-child{
	margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .w-box {
        display: block;
        align-items: center;
        font-weight: 300;
        letter-spacing: 0.1rem;
        padding: 10px 15px;
    }

    .w-left {
        font-weight: 700;
        width: 100%;
        font-size: 16px;
        text-align: left;
    }

    .w-right {
        width: 100%;
        font-size: 10px;
    }

    
    .hide-pad {
        display: none;
    }
    .card-box {
        font-size: 18px;
        line-height: 26px;
    }
    .card-box span {
        font-size: 22px;
        line-height: 32px;
    }
    .box-1 {
        margin: 0 auto 30px auto;
    }
}

@media(max-width:768px) {
    body {
        padding-top: 53px;
    }
    

    header {
        height: 53px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
        padding: 0;
    }

    .logo {
        left: 20px;
        top: 9px;
    }

    .logo img {
        width: auto;
        height: 34px;
    }

    .logo span {
        font-size: 18px;
        line-height: 1;
        margin-left: 10px;
        padding-top: 3px;
    }
}

@media(max-width:430px) {
    .slogan {
        width: 276px;
        position: absolute;
        top: 83px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .slogan-1 {
        font-size: 46px;
        font-weight: 700;
        line-height: 80px;
        letter-spacing: 5px;
        color: #231815;
        margin-bottom: 6px;
    }

    .hide-xs {
        display: none;
    }

    .show-xs {
        display: block;
    }

    
    .w-box {
        padding: 20px 30px;
    }
    .slogan {
        width: 100%;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 63px;
        left: 0;
        transform: translateX(0);
        text-align: center;
    }
    .slogan p {
        font-size: 20px;
        font-weight: 700;
        line-height: 36px;
        letter-spacing: 1px;
        color: #231815;
        margin: 0;
    }
    .slogan p.fix {
        font-size: 14px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 0.01em;
        color: #231815;
        margin: 0;
    }
    .slogan-btn .btn {
        width: auto;
    }
    .start-box {
        width: calc( 100% - 60px );
        flex-direction: column;
        align-items: center;
        margin: 0 auto 60px auto;
        font-size: 14px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: 1px;
        /*color: #fff;*/
        padding: 30px;
        background: rgba(255,255,255,.6);
border-radius: 20px;
background-image: url(../images/box-.png);
background-position: top -20px center;
background-repeat: no-repeat;
background-size: 380px auto;

    }
    .start-l {
        width: 100%;
        padding-left: 0;
    }
    .start-l img {
        width: 210px;
        display: block;
        margin: 80px auto 50px auto;
    }
    .start-r {
        width: 100%;
        padding: 0;
        text-align: justify;
    }
    .start-tit {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
        text-align: center;
    }
    .tit {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .box-1 {
        width: calc( 100% - 60px );
        display: block;
        margin: 0 auto 80px auto;
    }
    .box-col {
        width: 100%;
        padding: 0;
        margin-bottom: 70px;
    }
    .box-2 {
        width: calc( 100% - 60px );
        display: block;
        margin: 0 auto 90px auto;
    }
    .pic-btn {
        margin-bottom: 50px;
    }
    .box-3 {
        width: calc( 100% - 60px );
        display: block;
        margin: 0 auto;
    }
    .box-3-col {
        width: 100%;
        padding: 0;
        margin-bottom: 50px;
    }
    .box-3-info {
        padding: 10px 30px 65px 30px;
    }
    .box-3-tit {
        margin-bottom: 5px;
    }
    .more {
        width: 104px;
        position: absolute;
        right: 30px;
        bottom: 28px;
    }
    .box-3-card:hover > .box-3-info{
        width: 100%;
        padding: 10px 30px 65px 30px;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 1);
        border-radius:0 ;
    }
    .box-3-card:hover > .box-3-info .more{
        right: 30px;
      bottom: 28px;
    }
    .box-3-card:hover > .box-3-info .box-3-tit{
       color: #323232; 
    }
    .slogan-btn {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 0;
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 1px;
        text-align: center;
        color: #231815;
		background-color: rgba(0,0,0,0);
    }
    .slogan-btn-span {
        margin-bottom: 46px;
		white-space:normal;
    }

}
@media(max-width:375px) {
    .sectionA {
        background-image: url(../images/mbg1-1.png);
        background-size: 375px auto;
    }

    .sectionB {
        background-image: url(../images/mbg2-1.png);
        background-size: 375px 4790px;
    }
    .box-1, .box-2, .box-3 {
        width: calc( 100% - 40px );
    }  
    .start-box {
        background-size: 100% auto;
        width: calc( 100% - 40px );
    }
    .start-l img {
        width: 210px;
        display: block;
        margin: 60px auto 50px auto;
    }
    .slogan {
        bottom: 80px;
    }
}
@media(max-width:360px) {
    .hide-xxs{
        display: none;
    }
}

/*footer*/
.img-c {
    display: inherit;
}




/* 警語-開始 */
.warning-wrap {background:#f2f2f2; color: #333; padding: 24px ; box-sizing: border-box;}
.warning {width: 940px;margin: auto;}
.warning >h6 {font-size: 20px;margin-bottom: 16px;}
.warning p {line-height: 1.5;}
@media screen and (max-width: 990px) {
  .warning {width: 100%; padding: 0 20px;}
}
