@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome/css/font-awesome.min.css);
@import url(rwdgrid.css);

body {
  color: #0000;
  background:url(../images/bg.jpg);
  font-family: Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 18px;
  padding:0;
  margin:0;
}

/*css3*/
a {
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #19b6d1;
}

[class*='col-'] {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

.btn_color1 {
  /*按鈕主色1*/
  color: #fff;
  background-color: #19b6d1;
}

.btn_color1:hover {
  background-color: #148ea3;
}

.btn_color2 {
  /*按鈕主色2*/
  color: #fff;
  background-color: #102232;
}

.btn_color2:hover {
  background-color: #04080b;
}

.outerWrap {
  position: relative;
}

.wrap {
  width: 1260px;
  margin: 0 auto;
}

/*****網頁頭*****/
header {
  position:relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 90;

}


header .wrap {
	padding:5px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.logo_in {
  width: 540px;
  padding:10px 0; 
}

.logo_in img {
  display: block;
height:84px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}


.menuBox2{ display:none;}
.menuBox {
  margin-left: auto;
  background:#3CB4C3;
}


header .right{
	float:right;
	transition: all 0.4s ease;}

header .right a{
	margin:0 3px;
	display: inline-block;
	font-size: 18px;
	color: #FFF;
	line-height: 1.8;
	padding:0 10px;
	text-align: center;}
	

header .right a:nth-child(1) {
	background:#D51441;
	opacity: 1;
}

header .right a:nth-child(2) {
	background:#3C88B9;
	opacity: 1;
}

header .right a:nth-child(3) {
	background:#09C;
	opacity: 1;
}


/*menu*/
.menu {
	display:none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 10px 13px;
  font-size: 18px;
  color: #fff;
}

ul.menu li:before{
	content:"";
	width:1px;
	height:18px;
	border-left:1px solid #fff;
	position:absolute;
	left:0;
	top:50%;
	margin-top:-8px;}

ul.menu li:first-child:before{
	display:none;}

.menu > li > a:hover, .menu > li > a.current {
  color: #FF9;
}

.menu > li > a:hover:before, .menu > li > a.current:before {
  top: 25px;
  opacity: 1;
}

.menu .submenu {
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  width: 170px;
  text-align: center;
  -webkit-box-shadow: 0 0 18px rgba(1, 1, 1, 0.1);
          box-shadow: 0 0 18px rgba(1, 1, 1, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
  border-radius:10px;
}

.menu .submenu a {
  display: block;
  padding: 10px;
  font-size: 16px;
  color: #000;
  background-color: rgba(255, 255, 255, 1);
  border-bottom:1px solid #dcdcdc;
}

.menu .submenu a:hover {
  color: #fff;
  background-color: #3C88B9;
}

.menu .show > a {
  color: #FF9;
  font-weight:600;}

.menu .show > a:before {
  top: 25px;
  opacity: 1;
}

.menu .show .submenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



/*手機menu*/
.m_menu {
  display: none;
}


/*****banner******/
.bannerArea {
  position: relative;
  padding:0px ;
}

.bannerArea .bannerBox img {
  display: block;
  width:1260px;
    margin:0 auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}



/*頁尾資訊*/
footer {
  position: relative;
  padding: 0px;
  background-color:#FFCC33;
}

footer::before {
  content: "";
  position: absolute;
  background-image: url("../images/footer_top.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 80px;
  top: -79px;
  left: 0;
}


footer .info{ 
 color:#000;
  font-size:15px;
  padding:0px;
  line-height:1.6}
  
  
 .info2{ 
 color:#000;
  font-size:15px;
  padding:0px;
  max-width:440px;
  line-height:1.6} 
  
  
.copyrightBox {
  font-size: 15px;
  color: #000;
  text-align:left;
  padding:10px 0;
  margin-top:20px;
  border-top:1px solid rgba(255,255,255,0.5)
}

footer .social {
    display: flex;
	 padding: 0px 0 30px 0;
}

footer .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
	border-radius:100em;
	border:1px solid #000;
    background-color: none;
	margin-right:5px;
}

footer .social a:hover {
 border:1px solid #FC0;
}


footer .social a svg {
    fill: #fff;
}



footer .f_bg {
    position: absolute;
    left: 17%;
    width: 253px;
   bottom:60%;
}

footer .f_bg img {
    max-width: 100%
}


footer .f_bg2 {
    position: absolute;
    right: 15%;
    width: 335px;
    bottom: -2%
}

footer.f_bg2 img {
    max-width: 100%
}
.bannerArea .b_bg {
    position: absolute;
    left: 17%;
    width: 153px;
    bottom:-8%;
}

.bannerArea .b_bg img {
    max-width: 100%
}



@media(max-width:1680px){
footer .f_bg {
    left: 13%;
	bottom:60%;
}

footer .f_bg2 {
    right: 10%;
	bottom:0;
}

.bannerArea .b_bg {
    left: 13%;
    width: 153px;
    bottom:-8%;
}

footer .info{ padding:10px 0;}

}

@media screen and (min-width: 1400px) and (max-width: 1480px){ 
footer .f_bg {
    left: 10%;
	bottom:60%;
}

footer .f_bg2 {
    right: 0;
	bottom:0;
}

.bannerArea .b_bg {
    left: 8%;
    width: 153px;
    bottom:-8%;
}


}

@media(max-width:1366px){
footer .f_bg {
    left: 0;
	bottom:60%;
}

footer .f_bg2 {
    right: 0;
	bottom:0;
}

.bannerArea .b_bg {
    left: 4%;
    width: 153px;
    bottom:-8%;
}


}


@media(max-width:1280px){
footer .f_bg {
    left: 0;
	bottom:60%;
}

footer .f_bg2 {
    right: 0;
	bottom:0;
}

.bannerArea .b_bg {
    left: 0%;
    width: 153px;
    bottom:-8%;
}

footer .info{ padding:10px 0;}

}

@media(max-width:1024px){
footer .f_bg {
    display:none;
}

footer .f_bg2 {
    right: 0;
	bottom:50%;
}

.bannerArea .b_bg {
   display:none;
}
footer .social{ padding:0}

	
}

@media(max-width:960px){
	
footer .f_bg2 {
	 right: 0;
	bottom:1%;
}

.bannerArea .b_bg {
	display:none;
}

.mainArea .wrap{ padding:30px 10px 0 10px}

footer .info{ padding:0px ;}

}
@media(max-width:600px){
footer .f_bg2 {
	display:none;
}
footer .info{ 
  font-size:14px;
  line-height:1.4}
  
.info2{
  font-size:14px;
  line-height:1.4} 

}

/*********內頁**********/
/**********************/
.mainArea {
  padding: 0;
  position:relative;
}

.mainArea .wrap{ padding:30px 10px 80px 10px}


.articleTitle {
  padding: 10px 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing:1px;
  text-align:center;
  border-radius:5px 5px 0 0;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a9e4f7+0,0fb4e7+100;Ble+3D+%235 */
background: #a9e4f7; /* Old browsers */
background: -moz-linear-gradient(top,  #a9e4f7 0%, #0fb4e7 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #a9e4f7 0%,#0fb4e7 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #a9e4f7 0%,#0fb4e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 ); /* IE6-9 */
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}


/*--button--*/


.btn_back {
  text-align: center;
  border-top:1px solid #dcdcdc; 
  margin-top:30px;
  padding-top:20px;
}

.btn_back a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background:#31B2EB;
}

.btn_back a:hover {
  background-color: #0971ce;
  color: #fff;
}



/**********適應性**********/
/************************/
@media (max-width: 1180px) {
    
  .wrap {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .bannerArea .bannerBox img {
  display: block;
  width: 100%;
   margin:0 auto;
}

}


@media (max-width: 1023px) {
  /*1160+20(卷軸寬度)*/
  .outerWrap {
    padding-top: 50px;
  }
  header {
    display: none;
  }

.bannerArea  {
  position: relative;
  padding:0px;
  margin-top:0px;
}

.menuBox{ display:none;}

  /*手機menu*/
  .m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 95;
    display: block;
    width: 100%;
  }
  .m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none !important;
    background-color:transparent;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
  }
  .m_menu .controlBox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
    z-index: 99;
    background-color:transparent;
  /*  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  }
  .m_menu .controlBox a.main {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #C06;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span:before {
    top: -7px;
  }
  .m_menu .controlBox a.main span:after {
    bottom: -7px;
  }
  .m_menu .controlBox a.main.show {
    right: 10px;
    top: 10px;
    border-radius: 50%;
    background-color: #f7f7f7;
  }
  .m_menu .controlBox a.main.show span {
    background-color: transparent;
  }
  .m_menu .controlBox a.main.show span:before, .m_menu .controlBox a.main.show span:after {
    background-color: #C06;
  }
  .m_menu .controlBox a.main.show span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m_menu .controlBox a.main.show span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .hideBox {
    /*手機menu內容*/
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 50px 0;
    overflow-y: auto;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e61f5c+0,eb5c50+40,7a1986+100 */
background: #e61f5c; /* Old browsers */
background: -moz-linear-gradient(45deg,  #e61f5c 0%, #eb5c50 40%, #7a1986 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(45deg,  #e61f5c 0%,#eb5c50 40%,#7a1986 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg,  #e61f5c 0%,#eb5c50 40%,#7a1986 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e61f5c', endColorstr='#7a1986',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  }
  .hideBox .sp {
    display: none;
  }
  .hideBox.show {
    height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }
  .hideBox.show .searchBox_m, .hideBox.show .nav li, .hideBox.show .mfun a {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
 
 
  .nav a {
    display: block;
    padding: 10px;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    letter-spacing: .05em;
    text-align: center;
	border-bottom:1px solid rgba(255,255,255,0.3)
  }
  .nav a:hover, .nav a.current {
    color: #fff;
  }
 
  .nav .submenu {
    display: none;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .nav .submenu a {
    padding: 10px 20px;
    font-size: 18px;
  }
  .mfun {
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;
  }
  .mfun a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 50%;
    font-size: 20px;
    color: #C03;
    background-color: #fff;
  }

}



@media (max-width: 640px) {

  .col-2 {
    float: none;
    width: 100%;
  }
  .col-3 {
    float: none;
    width: 100%;
  }
  .col-4 {
    float: none;
    width: 100%;
  }
  .col-5 {
    float: none;
    width: 100%;
  }
  

}




/***Hover效果1: 放大淡出Detail***/
.imh_detail {
  overflow: hidden;
  border-radius:20px 20px 0 0;
}
.imh_detail img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_detail a:before {
  content: "觀看更多+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -80px;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  border: 2px solid #660000;
  border-radius:50em;
  background:#660000;
  opacity: 0;
  transition: all 0.3s ease;
}
.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}
.imh_detail:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}


.imh_zoom {
  position: relative;
  overflow: hidden;
}

.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}

.imh_zoom:hover img {
  opacity: 1;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 360px) {
.imh_detail a:before {
  content: "觀看更多+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -50px;
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #660000;
  border-radius:50em;
  background:#660000;
  opacity: 0;
  transition: all 0.3s ease;
}

}