@charset "UTF-8";
/*網頁全共用設定*/

/*網路字體引用CSS設定*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*思源黑體 套用名字 Noto Sans TC */


/*Bootstrap3.37 官方基礎CSS*/
@import url(https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css);
/*股溝的ICONFONT*/
/*@import url("https://fonts.googleapis.com/icon?family=Material+Icons");*/
/*font-awesome4-7 iconfont*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/*animate動畫CSS*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css);


html,body {
	font-family: 'Lato',Century Gothic,Arial,'Noto Sans TC','PingFang TC',Microsoft JhengHei,'微軟正黑體',Helvetica,sans-serif;
	position: relative;
	width: 100%;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 17px;
	/*background-color: #8C7776;*/
	}
/*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/

/*標題*/
h1,h2,h3,h4,h5,h6{

}

a{
}

p {
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
	padding: 0;
	margin: 0;
}

h1,.h1,h2,.h2{
	font-size: 21px;
}
	
h3,.h3,h4,.h4{
	font-size: 20px;
}
	
h5,.h5,h6,.h6{
	font-size: 19px;
}

@media(max-width:767px){
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
	font-size: 19px;
}
}

a:hover, a:focus {
	text-decoration: none;
	}	/*超連結統一不要下底線*/

img{
	/*backface-visibility:hidden;*/
	}	/*圖片更銳利化*/

/* 應用於GIF和PNG圖片; 防止邊緣模糊 */
img[src$=".gif"], img[src$=".png"] {
	image-rendering: auto;
	}

button, a, input:focus,button:focus{
	outline: none !important;
	}	/*連結或點擊的按鈕 不顯示外虛線*/

hr {
	border-top: 1px solid #e1e1e1;
	clear: both;
	float: none;
	width: 100%;
	margin: 15px 0;
}	/* 水平線 */

/*自己常用的共用樣式*/
.hr{
	position: relative;
}

.hr:before,.hr:after{
    display: block;
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #DEDEDE;
}

.hr:after{
    left: unset;
    right:0;
}

ol{
	padding-left:20px;
}

/*標題*/
.h1,.h2,.h3,.h4,.h5,.h6{
	/*border-left: 2px solid #ED7700;*/
}

/*字體大小*/
.textbb{
	font-size: 28px;
}

.textb{
	font-size: 22px;
}

.textbs{
	font-size: 20px;
}

.textm{
	font-size: 18px;
}

.textms{
	font-size: 17px;
}

.texts{
	font-size: 16px;
}

.textss{
	font-size: 15px;
}

/*字體顏色*/
.tcolor-white{
	color:#fff !important;
}

.tcolor-red{
	color:#FF2E2E !important;
}

.tcolor-black{
	color:#333 !important;
}

.tcolor-lblack{
	color:#aaa !important;
}

.tcolor-gray{
	color:#666 !important;
}

.tcolor-lgray{
	color:#bbb !important;
}

.tcolor-orange{
	color:#ED7700 !important;
}

.tcolor-lightblue{
	color:#1b809e !important;
}

/*字型樣式*/
.text-bline{
	display: inline-block;
	text-align: left;
	min-height: 1px;
	text-decoration: underline;
	cursor: pointer;
}

.noxs-text-center{
	text-align: center !important;
}
	
.noxs-text-right{
	text-align: right !important;
}
	
.noxs-text-left{
	text-align: left !important;
}

@media(max-width:767px){
.noxs-text-center,.noxs-text-right,.noxs-text-left{
	text-align: inherit;
}
	
.xs-text-center{
	text-align: center !important;
}
	
.xs-text-right{
	text-align: right !important;
}
	
.xs-text-left{
	text-align: left !important;
}
}

/*chart表設定*/
.chart-body{
	width: 100%;
	overflow: hidden;
	height: auto;
}

/*自定義RWD寬度*/
.new-row{
}
/*
.WIDTH-5-XS,.WIDTH-5-XS-TABLE,.WIDTH-5-XS-INLINEBLOCK{width:5%;}
.WIDTH-10-XS,.WIDTH-10-XS-TABLE,.WIDTH-10-XS-INLINEBLOCK{width:10%;}
.WIDTH-15-XS,.WIDTH-15-XS-TABLE,.WIDTH-15-XS-INLINEBLOCK{width:15%;}
.WIDTH-20-XS,.WIDTH-20-XS-TABLE,.WIDTH-20-XS-INLINEBLOCK{width:20%;}
.WIDTH-25-XS,.WIDTH-25-XS-TABLE,.WIDTH-25-XS-INLINEBLOCK{width:25%;}
.WIDTH-30-XS,.WIDTH-30-XS-TABLE,.WIDTH-30-XS-INLINEBLOCK{width:30%;}
.WIDTH-35-XS,.WIDTH-35-XS-TABLE,.WIDTH-35-XS-INLINEBLOCK{width:35%;}
.WIDTH-40-XS,.WIDTH-40-XS-TABLE,.WIDTH-40-XS-INLINEBLOCK{width:40%;}
.WIDTH-45-XS,.WIDTH-45-XS-TABLE,.WIDTH-45-XS-INLINEBLOCK{width:45%;}
.WIDTH-50-XS,.WIDTH-50-XS-TABLE,.WIDTH-50-XS-INLINEBLOCK{width:50%;}
.WIDTH-55-XS,.WIDTH-55-XS-TABLE,.WIDTH-55-XS-INLINEBLOCK{width:55%;}
.WIDTH-60-XS,.WIDTH-60-XS-TABLE,.WIDTH-60-XS-INLINEBLOCK{width:60%;}
.WIDTH-65-XS,.WIDTH-65-XS-TABLE,.WIDTH-65-XS-INLINEBLOCK{width:65%;}
.WIDTH-70-XS,.WIDTH-70-XS-TABLE,.WIDTH-70-XS-INLINEBLOCK{width:70%;}
.WIDTH-75-XS,.WIDTH-75-XS-TABLE,.WIDTH-75-XS-INLINEBLOCK{width:75%;}
.WIDTH-80-XS,.WIDTH-80-XS-TABLE,.WIDTH-80-XS-INLINEBLOCK{width:80%;}
.WIDTH-85-XS,.WIDTH-85-XS-TABLE,.WIDTH-85-XS-INLINEBLOCK{width:85%;}
.WIDTH-90-XS,.WIDTH-90-XS-TABLE,.WIDTH-90-XS-INLINEBLOCK{width:90%;}
.WIDTH-100-XS,.WIDTH-100-XS-TABLE,.WIDTH-100-XS-INLINEBLOCK{width:100%;}
*/

.WIDTH-5,.WIDTH-5-TABLE,.WIDTH-5-INLINEBLOCK{width:5%;}
.WIDTH-10,.WIDTH-10-TABLE,.WIDTH-10-INLINEBLOCK{width:10%;}
.WIDTH-15,.WIDTH-15-TABLE,.WIDTH-15-INLINEBLOCK{width:15%;}
.WIDTH-20,.WIDTH-20-TABLE,.WIDTH-20-INLINEBLOCK{width:20%;}
.WIDTH-25,.WIDTH-25-TABLE,.WIDTH-25-INLINEBLOCK{width:25%;}
.WIDTH-30,.WIDTH-30-TABLE,.WIDTH-30-INLINEBLOCK{width:30%;}
.WIDTH-33,.WIDTH-33-TABLE,.WIDTH-33-INLINEBLOCK{width:33.3%;}
.WIDTH-35,.WIDTH-35-TABLE,.WIDTH-35-INLINEBLOCK{width:35%;}
.WIDTH-40,.WIDTH-40-TABLE,.WIDTH-40-INLINEBLOCK{width:40%;}
.WIDTH-45,.WIDTH-45-TABLE,.WIDTH-45-INLINEBLOCK{width:45%;}
.WIDTH-50,.WIDTH-50-TABLE,.WIDTH-50-INLINEBLOCK{width:50%;}
.WIDTH-55,.WIDTH-55-TABLE,.WIDTH-55-INLINEBLOCK{width:55%;}
.WIDTH-60,.WIDTH-60-TABLE,.WIDTH-60-INLINEBLOCK{width:60%;}
.WIDTH-65,.WIDTH-65-TABLE,.WIDTH-65-INLINEBLOCK{width:65%;}
.WIDTH-70,.WIDTH-70-TABLE,.WIDTH-70-INLINEBLOCK{width:70%;}
.WIDTH-75,.WIDTH-75-TABLE,.WIDTH-75-INLINEBLOCK{width:75%;}
.WIDTH-80,.WIDTH-80-TABLE,.WIDTH-80-INLINEBLOCK{width:80%;}
.WIDTH-85,.WIDTH-85-TABLE,.WIDTH-85-INLINEBLOCK{width:85%;}
.WIDTH-90,.WIDTH-90-TABLE,.WIDTH-90-INLINEBLOCK{width:90%;}
.WIDTH-100,.WIDTH-100-TABLE,.WIDTH-100-INLINEBLOCK{width:100%;}

.WIDTH-100-TABLE,.WIDTH-100-XS-TABLE{width:1%;}

.WUDTH-AUTO{
	width:auto;
}

[class*=WIDTH],[class*=-TABLE],[class*=-INLINEBLOCK]{
	overflow: hidden;
	box-sizing: border-box;
	padding: 0;
	position: relative;
    min-height: 1px;
	margin: 0 auto;
}

[class*=WIDTH]{
	float:left;
	display: block !important;
}

[class*=-TABLE]{
	float:none;
	display: table-cell !important;
}

[class*=-INLINEBLOCK]{
	float:none;
	display: inline-block !important;
}

@media screen and (max-width: 991px){

.WIDTH-5,.WIDTH-10,.WIDTH-15,.WIDTH-20,.WIDTH-25,.WIDTH-30,.WIDTH-33,.WIDTH-35,.WIDTH-40,
.WIDTH-45,.WIDTH-50,.WIDTH-55,.WIDTH-60,.WIDTH-65,.WIDTH-70,.WIDTH-75,
.WIDTH-80,.WIDTH-85,.WIDTH-90,.WIDTH-100,
	
.WIDTH-5-TABLE,.WIDTH-10-TABLE,.WIDTH-15-TABLE,.WIDTH-20-TABLE,
.WIDTH-25-TABLE,.WIDTH-30-TABLE,.WIDTH-33-TABLE,.WIDTH-35-TABLE,.WIDTH-40-TABLE,
.WIDTH-45-TABLE,.WIDTH-50-TABLE,.WIDTH-55-TABLE,.WIDTH-60-TABLE,
.WIDTH-65-TABLE,.WIDTH-70-TABLE,.WIDTH-75-TABLE,.WIDTH-80-TABLE,
.WIDTH-85-TABLE,.WIDTH-90-TABLE,.WIDTH-95-TABLE,.WIDTH-100-TABLE,
	
.WIDTH-5-INLINEBLOCK,.WIDTH-10-INLINEBLOCK,.WIDTH-15-INLINEBLOCK,.WIDTH-20-INLINEBLOCK,
.WIDTH-25-INLINEBLOCK,.WIDTH-30-INLINEBLOCK,.WIDTH-33-INLINEBLOCK,.WIDTH-35-INLINEBLOCK,.WIDTH-40-INLINEBLOCK,
.WIDTH-45-INLINEBLOCK,.WIDTH-50-INLINEBLOCK,.WIDTH-55-INLINEBLOCK,.WIDTH-60-INLINEBLOCK,
.WIDTH-65-INLINEBLOCK,.WIDTH-70-INLINEBLOCK,.WIDTH-75-INLINEBLOCK,.WIDTH-80-INLINEBLOCK,
.WIDTH-85-INLINEBLOCK,.WIDTH-90-INLINEBLOCK,.WIDTH-95-INLINEBLOCK,.WIDTH-100-INLINEBLOCK
{
	float: none;
	width:100%;
}

.WIDTH-5-XS,.WIDTH-5-XS-TABLE{width:5%;float: left;}
.WIDTH-10-XS,.WIDTH-10-XS-TABLE{width:10%;float: left;}
.WIDTH-15-XS,.WIDTH-15-XS-TABLE{width:15%;float: left;}
.WIDTH-20-XS,.WIDTH-20-XS-TABLE{width:20%;float: left;}
.WIDTH-25-XS,.WIDTH-25-XS-TABLE{width:25%;float: left;}
.WIDTH-30-XS,.WIDTH-30-XS-TABLE{width:30%;float: left;}
.WIDTH-33-XS,.WIDTH-33-XS-TABLE{width:33.3%;float: left;}
.WIDTH-35-XS,.WIDTH-35-XS-TABLE{width:35%;float: left;}
.WIDTH-40-XS,.WIDTH-40-XS-TABLE{width:40%;float: left;}
.WIDTH-45-XS,.WIDTH-45-XS-TABLE{width:45%;float: left;}
.WIDTH-50-XS,.WIDTH-50-XS-TABLE{width:50%;float: left;}
.WIDTH-55-XS,.WIDTH-55-XS-TABLE{width:55%;float: left;}
.WIDTH-60-XS,.WIDTH-60-XS-TABLE{width:60%;float: left;}
.WIDTH-65-XS,.WIDTH-65-XS-TABLE{width:65%;float: left;}
.WIDTH-70-XS,.WIDTH-70-XS-TABLE{width:70%;float: left;}
.WIDTH-75-XS,.WIDTH-75-XS-TABLE{width:75%;float: left;}
.WIDTH-80-XS,.WIDTH-80-XS-TABLE{width:80%;float: left;}
.WIDTH-85-XS,.WIDTH-85-XS-TABLE{width:85%;float: left;}
.WIDTH-90-XS,.WIDTH-90-XS-TABLE{width:90%;float: left;}
.WIDTH-100-XS,.WIDTH-100-XS-TABLE{width:100%;float: left;}
	
.WIDTH-5-XS-INLINEBLOCK{width:5%;}
.WIDTH-10-XS-INLINEBLOCK{width:10%;}
.WIDTH-15-XS-INLINEBLOCK{width:15%;}
.WIDTH-20-XS-INLINEBLOCK{width:20%;}
.WIDTH-25-XS-INLINEBLOCK{width:25%;}
.WIDTH-30-XS-INLINEBLOCK{width:30%;}
.WIDTH-33-XS-INLINEBLOCK{width:33.3%;}
.WIDTH-35-XS-INLINEBLOCK{width:35%;}
.WIDTH-40-XS-INLINEBLOCK{width:40%;}
.WIDTH-45-XS-INLINEBLOCK{width:45%;}
.WIDTH-50-XS-INLINEBLOCK{width:50%;}
.WIDTH-55-XS-INLINEBLOCK{width:55%;}
.WIDTH-60-XS-INLINEBLOCK{width:60%;}
.WIDTH-65-XS-INLINEBLOCK{width:65%;}
.WIDTH-70-XS-INLINEBLOCK{width:70%;}
.WIDTH-75-XS-INLINEBLOCK{width:75%;}
.WIDTH-80-XS-INLINEBLOCK{width:80%;}
.WIDTH-85-XS-INLINEBLOCK{width:85%;}
.WIDTH-90-XS-INLINEBLOCK{width:90%;}
.WIDTH-100-XS-INLINEBLOCK{width:100%;}
}

/*特殊自定義*/
.no-padding-margin{
	padding:0 !important;
	margin:0 !important;
	}

.no-padding{
	padding:0 !important;
}

@media(max-width:767px){
.no-padding-xs{
	padding:0 !important;
}
}

.all-padding-s{
	padding: 5px !important;
}

.all-padding-m{
	padding: 10px !important;
}

.all-padding{
	padding: 15px !important;
}

.tb-padding-s{
	padding-top:5px !important;
	padding-bottom:5px !important;
}

.lr-padding-s{
	padding-left:5px !important;
	padding-right:5px !important;
}

.tb-padding-m{
	padding-top:10px !important;
	padding-bottom:10px !important;
}

.lr-padding-m{
	padding-left:10px !important;
	padding-right:10px !important;
}

.tb-padding{
	padding-top:15px !important;
	padding-bottom: 15px !important;
}

.lr-padding{
	padding-left:15px !important;
	padding-right: 15px !important;
}

.t-padding-s{
	padding-top:5px !important;
}

.b-padding-s{
	padding-bottom:5px !important;
}

.l-padding-s{
	padding-left:5px !important;
}

.r-padding-s{
	padding-right:5px !important;
}

.t-padding-m{
	padding-top:10px !important;
}

.b-padding-m{
	padding-bottom:10px !important;
}

.l-padding-m{
	padding-left:10px !important;
}

.r-padding-m{
	padding-right:10px !important;
}

.t-padding{
	padding-top:15px !important;
}

.b-padding{
	padding-bottom: 15px !important;
}

.l-padding{
	padding-left:15px !important;
}

.r-padding{
	padding-right: 15px !important;
}

.no-margin{
	margin:0 !important;
}

.all-margin-s{
	margin: 5px !important;
}

.all-margin-m{
	margin: 10px !important;
}

.all-margin{
	margin:15px !important;
}

.tb-margin-s{
	margin-top:5px !important;
	margin-bottom:5px !important;
}

.tb-margin-m{
	margin-top:10px !important;
	margin-bottom:10px !important;
}

.tb-margin{
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}

.lr-margin-s{
	margin-left:5px !important;
	margin-right:5px !important;
}

.lr-margin-m{
	margin-left:10px !important;
	margin-right:10px !important;
}

.lr-margin{
	margin-left: 15px !important;
	margin-right: 15px !important;
}

.t-margin-s{
	margin-top: 5px !important;
}

.b-margin-s{
	margin-bottom: 5px !important;
}

.l-margin-s{
	margin-left: 5px !important;
}

.r-margin-s{
	margin-right: 5px !important;
}

.t-margin-m{
	margin-top: 10px !important;
}

.b-margin-m{
	margin-bottom: 10px !important;
}

.l-margin-m{
	margin-left: 10px !important;
}

.r-margin-m{
	margin-right: 10px !important;
}

.t-margin{
	margin-top: 15px !important;
}

.b-margin{
	margin-bottom: 15px !important;
}

.l-margin{
	margin-left: 15px !important;
}

.r-margin{
	margin-right: 15px !important;
}

.d-block{
	display: block !important;
}

.d-inline{
	display: inline !important;
}

.d-inline-block{
	display: inline-block !important;
}

.d-vm{
	vertical-align: middle !important;
}

.d-vt{
	vertical-align: top !important;
}

.no-border{
	border: 0 !important;
}

.no-shdow{
	box-shadow: none !important;
}

.d-none{
	display: none !important;
}

.d-table{
	display: table !important;
}

.d-table-cell{
	display: table-cell !important;
}

.d-nofloat{
	float: none !important;
}

.d-lfloat{
	float: left !important;
}

.d-rfloat{
	float: right !important;
}

.textover-hidde {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block !important;
	}	/*區塊文字超出時隱藏*/

.inline-father{
	font-size:0px;
	white-space:discard;
	display:inline-block;
	}	/*區塊垂直置中必加的父層屬性*/

.div-inline-block{
	display:inline-block;
	vertical-align:middle;
	float:none;
	zoom:1;
	font-size:16px;
	}	/*區塊垂直置中*/

@media screen and (max-width: 991px){

.d-none-xs{
	display: none !important;
}
	
.d-block-xs{
	display: block !important;
}

.d-inlineblock-xs{
	display: inline-block!important;
}

.d-table-cell-xs{
	display: table-cell !important;
}

.d-vm-xs{
	vertical-align: middle;
}

.d-vt-xs{
	vertical-align: top !important;
}
	
.textover-hidde {
	overflow: initial;
	white-space: initial;
	text-overflow: initial;
	display: block !important;
	}	/*手機版 區塊文字超出時不隱藏*/

.textover-hidde-xs {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block !important;
	}	/*區塊文字超出時隱藏*/

.div-inline-block{
	display:block;
	vertical-align:middle;
	float:none;
	}	/*手機時 區塊不需垂直置中*/
	
.div-inline-block-xs{
	display:inline-block;
	vertical-align:middle;
	float:none;
	zoom:1;
	}	/*區塊垂直置中*/
}

/*自定義寬高*/
[class*="widthpx"]{
	width: auto;
}

[class*="heightpx"]{
	height: 100%;
}

.widthpx50{
	max-width: 50px;
}

.widthpx75{
	max-width: 75px;
}

.widthpx100{
	max-width: 100px;
}

.widthpx125{
	max-width: 125px;
}

.widthpx150{
	max-width: 150px;
}

.heightpx50{
	max-height: 50px;
}

.heightpx100{
	max-height: 100px;
}
/*自己常用的共用樣式 結束*/

/*iframe*/
iframe{
	width: 100%;
	height: auto;
	border: none;
}

/*更改原生樣式*/
input[type="radio"]{
	appearance:checkbox;
	-moz-appearance:checkbox; /* Firefox */
	-webkit-appearance:checkbox; /* Safari and Chrome */
}

input,input[type="checkbox"],input[type="radio"],input[type="text"],select{
	margin: 0;
	margin-bottom: 2px;
	margin-top: 2px;
	font-weight: 400;
}

label{
	padding: 0;
	margin: 0;
	font-weight: 400;
}

textarea{
	min-height: 150px;
	width: 100%;
}

/*原BS3多層下拉選單*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 100%;
    left: -1px;
    margin-top: -1px;
}

@media(max-width:767px) {
.dropdown-submenu > a{
    border-bottom: 1px solid #e5e5e5;
}
    
.dropdown-submenu > .dropdown-menu.open{
    display: block;
}
}
    
@media(min-width:768px) {
.dropdown-submenu .dropdown-menu-left {
    right: auto;
    left: 100%;
    top: 0;
}

.dropdown-submenu .dropdown-menu-right {
    right: 100%;
    left: auto;
    top: 0;
}
}

/*原BS3下拉選單以及多層下拉選單 用hover就打開*/
@media(min-width:768px) {
    .dropdown:hover > .dropdown-menu,
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/*原bs3選單變mega大選單*/
.menu-large {
    position: static !important;
}

/*.megamenu {
    padding: 20px 0px;
    width: 100%;
}

.megamenu > li > ul{
    padding: 0;
    margin: 0;
}

.megamenu > li > ul > li{
    list-style: none;
}

.megamenu > li > ul > li > a{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    white-space: normal;
}

.megamenu > li ul > li > a:hover,
.megamenu > li ul > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.megamenu.disabled>a,
.megamenu.disabled>a:hover,
.megamenu.disabled>a:focus {
    color: #999999;
}

.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed;
}

.mega .dropdown-header {
    font-size: 18px;
    font-weight: 700;
}

.megamenu .dropdown-menu{
    display: block;
	position: static;
	z-index: 1000;
	float: none;
	min-width:unset;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
    
@media (max-width: 767px){
.megamenu {
    margin-left: 0;
    margin-right: 0;
}

.megamenu > li {
    margin-bottom: 30px;
}

.megamenu > li:last-child {
    margin-bottom: 0;
}

.megamenu.dropdown-header {
    padding: 3px 15px !important;

}
*/
.mega .navbar-nav .open .dropdown-menu .dropdown-header {
    font-size: 16px;
    padding-left: 0;
}
    
.mega .open > .dropdown-menu{
	display: block;
}
/*
}
*/

/*bs3的well*/
.well{
	border-radius: 10px;
    padding: 15px;
}

.well-g{
	background: #aaa;
	color:#fff;
}

.well-b{
	background: #333;
	color:#ccc;
}

.well-w{
	background: #fff;
	color:#333;
}

.well-r{
	background: #DF2528;
	color:#fff;
}

.well-o{
	background: #ff9d39;
	color:#fff;
}

.well-nob{
    padding-bottom: 0;
}

/*bs3沒補到的btn按鈕設定*/
.btn-toolbar{
	color: #333;
	background-color: #f0f0f0;
	border-color: #f0f0f0;
}

.container-bg{
	width: 95%;
}
/*按鈕*/
.btn {
	border-radius: 10px;
	display: inline-block;
	padding: 10px;
	cursor: pointer;
	margin-bottom: 2px;
	margin-top: 2px;
}

.btn-success {
	color: #fff;
	background-color: #ED7700;
	border-color: #ED7700;
}

.btn-gray{
	background: #e5e5e5;
	color:#999999;
	border:1px solid #e5e5e5;
}

.btn-gray:hover{
	background: #d2d2d2;
	border:1px solid #d2d2d2;
}

.btn-text{
    cursor: text;
    background: #e9e9ed !important;
}

/*IE瀏覽升級提醒*/
/*針對IE9*/
.full-all{
	position:fixed;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index:1000000;
	width:100% ;
	height:100%;
	text-align:center;
	padding:0;
	margin:0;
	background:white;
	display:table;
	}

.noie9{
	color: #666;
	font-weight: 400;
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	letter-spacing: 1px;
	padding:20px;
	text-align: center;
	width:70%;
	height:100%;
	margin:0 auto;
}

.noie9 .ielog{
	width: 210px;
	height: auto;
}

.noie9 p,
.noie9 p.well{
	background: #eaeaea;
	width: 40%;
	display: block;
	padding: 10px;
	margin: 0 auto;
}

.noie9 p{
	background: transparent;
}

.noie9 hr{
	width: 55%;
	margin: 25px auto;
}

.noie9 .dot{
	color:#354c6e;
	font-size: 80px;
	line-height: 20px;
	display: inline-block;
}

.noie9 .dot1{
	color:#354c6e;
}

.noie9 .dot2{
	color:#f19334;
}

.noie9 .dot3{
	color:#f13447;
}

.noie9 .gohome{
	border:1px solid #dfdfdf;
	border-radius: 100px;
	padding: 15px 10px;
	display: block;
	width: 250px;
	margin: 10px auto 0;
	color: #666;
	text-decoration: none;
	transition: all 0.8s;
}

.noie9 .gohome:hover{
	border:1px solid #eaeaea;
	background: #eaeaea;
	color:#000;

}

@media(max-width:767px){
.noie9 .ielog{
	width: 180px;
}

.noie9 p,
.noie9 p.well{
	width: 80%;
}

.noie9 hr{
	width: 80%;
}
}

/*針對IE8*/
/*@media \0screen{
.noie9 p,
.noie9 p.well{
	width: 80%;
}

.noie9 hr{
	width: 80%;
}
}*/

.wow{
    visibility: hidden;
}

/*上面設定為一些特殊狀況設定，可再自行修改*/
/*從這裡為客製 網頁自定義樣式*/

/*每頁共用區*/
/*----------------------------------------------*/
/*每頁共用回頂部按鈕*/
.scroll-top {
	z-index: 1049;
	position: fixed;
	right: 2%;
	bottom: 6%;
	width: 50px;
	height: 50px;
	transition: all 0.8s;
}

.scroll-top .btn {
	width: 100%;
	font-size: 18px;
	color: #fff;
	background-color: #333333;
	border-radius:40px;
	white-space: normal;
	padding: 10px 0;
	/*border: 1px solid #fff;*/
}

.scroll-top a{
	color: #fff;
}

.scroll-top .btnservice{
	
}

.scroll-top .mybtn-top {

}

.page-scroll{
	display: block;
	opacity: 1;
	transition: all 0.8s;
}

/*主選單*/
nav.navbar{
    border-radius: 0;
    background-color: rgba(255,255,255,0);
    border-bottom: 0px solid #1a1b1b;
	border-color: rgba(255,255,255,0);
}

nav.navbar .navbar-nav > li > a {
	line-height: 40px;
	font-size: 18px;
    color: #FFFFFF;
	font-weight: 300;
}

@media(max-width:767px){
nav.navbar{
    background:#7c9db4;
	position: relative;
    z-index: 9;
	}
    
nav.navbar-default .navbar-brand {
	padding: 5px;
	}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
}

/*footer*/
/*版權宣告*/
footer{
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
}

.footer1{
    width: 100%;
	background-color: #f2f2f2;
}

.footer1 p{
    color:#333;
	z-index: 2;
}

.footer1 a{
    color:#002aff;
}

.footer2{
    background: #555;
}

.footer2 p{
    color:#fff;
}
.footer2 a {
	color:#ffe029;
}

/*header*/
.header{
    background:url("../img/bg.jpg");
    background-size: cover;
    background-position: center center;
	width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /*padding-bottom: 45%;*/
	height: 100vh;
}
@media(max-width:1320px){
	.header {
    height: 64vh;
}
}
@media(max-width:985px){
	.header {
    height: 53vh;
}
}
@media(max-width:690px){
	.header {
    height: 45vh;
}
}
.headerimg{
    width: 100%;
}
.banner1,.banner2,.banner3{
    position: absolute;
    z-index: 3;
}
.banner1{
    left: 48.7%;
    top: 59%;
    transform: translate(-50%,-80%);
    width: 39%;
    z-index: 4;
}
.banner2{
    left: 39%;
    top: 71%;
    width: 24%;
}
@media(max-width:768px){
header.banner1{
    top: 47%;
    width: 40%;
	}
header.banner2{
    left: 32%;
    top: 58%;
    width: 34%;
	}
}
@media(max-width:1060px){
.banner1{
    top: 56%;
    left: 50%;
    width: 44%;
	}
.banner2{
    left: 33%;
    top: 68%;
    width: 35%;
	}
}
@media(max-width:858px){
.banner1{
    top: 59%;
    left: 50%;
    width: 51%;
	}
.banner2{
    left: 32%;
    top: 72%;
    width: 37%;
	}
}
@media(max-width:655px){
.header{
    height: 45vh;
}
.banner1{
    top: 60%;
    width: 62%;
    left: 48%;
}
.banner2{
    left: 25%;
    width: 45%;
    top: 73%;
}
}
@media(max-width:580px){
.header{
    height: 40vh;
}
.banner1{
    top: 62%;
    width: 63%;
    left: 48%;
}
.banner2{
   left: 27%;
    width: 42%;
    top: 75%;
}
}
@media(max-width:500px){
.header{
    height: 34vh;
}
	.banner1 {
    top: 60%;
    width: 71%;
    left: 48%;
}
	.banner2 {
    left: 24%;
    width: 48%;
    top: 75%;
}
}
@media(max-width:430px){
.header{
    height: 39vh;
}
	.banner1 {
    top: 60%;
    width: 68%;
    left: 48%;
}
	.banner2 {
    left: 22%;
    width: 50%;
    top: 74%;
}
}
@media(max-width:400px){
.header{
        background: url(../img/360bg.png);
    background-position: center center;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-bottom: 9.5em;
	height: 45vh;
}
	.banner1 {
    top: 60%;
    width: 68%;
    left: 37%;
}
	.banner2 {
    left: 12%;
    width: 50%;
    top: 74%;
}
}
@media(max-width:385px){
.header{
     background:url("../img/360bg.png");
	background-position: center center;
	background-size: cover;
    width: 100%;
	height: 45vh;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
	.banner1 {
    top: 60%;
    width: 72%;
    left: 40%;
}
	.banner2 {
    left: 12%;
    width: 61%;
    top: 72%;
}
}
@media(max-width:360px){
.header{
    background:url("../img/360bg.png");
	background-position: center center;
	background-size: cover;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
	padding-bottom: 9.5em;
}
.banner1{
	width: 70%;
    top: 58%;
    left: 39%;
}
.banner2{
	width: 53%;
    top: 72%;
    left: 13%;
	}
.infoblock2_main .subtitle {
    max-width: 60%;
}
}

/*各頁客製設定開始*/
/*----------------------------------------------*/
/*各頁客製設定開始*/

/*內容1區*/
/*.infoblock{
	position: relative;
	background-image: url("../img/bg2.png");
	background-size: cover; 
	background-attachment: fixed;
	text-align: center;
	height: 75vh;
}*/
.infoblock{
    background-color: #497fa2;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
    padding: 5em 0;
	position: relative;
}
.infoblock_title{
	background-image: url(../img/s1.svg);
	background-repeat: no-repeat;
    width: 70%;
    padding: 4.7em 0em;
    margin: 0 auto;
}
@media screen and (max-width: 991px){
	.infoblock_title{
	 width: 93%;
	padding: 3.3em 0em;
    margin: 0 auto;
	}
}
@media screen and (max-width: 485px){
	.infoblock{
    padding: 2em 0;
}
	.infoblock_title {
    width: 100%;
	padding: 2.7em 0em;
    margin: 0 auto;
}
	.infoblock p {
	margin-top: 0.5em;}
}
.infoblock p{
	font: small-caps 500 2em/32px "Lucida Grande",sans-serif;
    margin-top: 1em;
	color: #ffeba6;	
}
@media(max-width:700px){
	.infoblock p{
	font: small-caps 500 22px/24px "Lucida Grande",sans-serif;
}
	.infoblock .txt-primary {
    font-size: 16px;
    color: #c4c4c4;
    line-height: 23px;
}
}
@media(max-width:360px){
	.infoblock p{
	font: small-caps 500 22px/24px "Lucida Grande",sans-serif;
}
	.infoblock .txt-primary {
    font-size: 16px;
    color: #c4c4c4;
    line-height: 23px;
}
}
/*內容1區 結束*/

/*內容2區*/
.infoblock-info{
    text-align: center;
	border-radius:10px;
	background-color: rgba(0,0,0,0.4);
	padding: 1em;
	min-height: 360px;
	border: 1px solid #fff7c2;
}
@media screen and (max-width: 480px){
	.infoblock-info{
	padding: 1em;
}
}
.infoblock-info img{
   width: 20%;
   position: relative;
   top: -0.7em;
}
@media screen and (max-width: 991px){
.infoblock-info img{
   width: 55px;
    height: 55px;
	}
}

.infoblock2_main{
	transform:scale(1,1);
	transition: all 1s ease-out;
}
@media screen and (max-width: 767px){
.infoblock2_main {
    margin: 0.5em auto;
}
}
@media screen and (max-width: 480px){
.infoblock2_main {
}
}
.infoblock2_main:hover{
	transform:scale(1.05,1.05);
}
.infobody{
	position: relative;
	z-index: 1;
}
.infoblock2{
	background-image: url(../img/bg2.png);
    background-size: cover;
    background-attachment: fixed;
	background-position: center center;
    text-align: center;
    padding: 5em 4em 13em 4em;
	position: relative;
    z-index: 2;
}
@media screen and (max-width: 768px){
	.infoblock2{
	padding: 5em 0em 13em 0em;
}
}
@media screen and (max-width: 486px){
	.infoblock2{
	padding: 5em 0em 13em 0em;
}
}
/*.infoblock-round{
	background-color: #8C7776;
    border-radius: 50%;
    width: 270px;
    height: 270px;
    margin: 0 auto;
    position: relative;
    top: -10em;
}*/
.infoblock2_title{
	background-image: url(../img/s8.svg);
    width: 65%;
    position: relative;
    background-size: contain;
	padding: 4.3em 0em;
    margin: 0 auto 2em auto;
	background-repeat: no-repeat;
}
@media screen and (max-width: 991px){
	.infoblock2_title{
	background-image: url(../img/s8.svg) ;
	padding: 3em 0em;
    }
}
@media screen and (max-width: 767px){
	.infoblock2_title{
	width: 100%;
	position: relative;
    background-size: contain;
    padding: 4.3em 0em;
    margin: 0 auto 2em auto;
    background-repeat: no-repeat;
    }
}
@media screen and (max-width: 485px){
	.infoblock2_title{
	background-image: url(../img/s10.svg) ;
    width: 65%;
    position: relative;
    background-size: contain;
    padding: 4.3em 0em;
    margin: 0 auto 2em auto;
	}
}
@media screen and (max-width: 360px){
	.infoblock2 {
    padding: 2em 0em 13em 0em;
}
	.infoblock2_title{
	    width: 62%;
		margin: 0 auto;
	}
}
/*.infoblock2{
	position: relative;
    background-image: url(../img/bg2.png);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    height: 75vh;
}*/
.subtitle{
	max-width: 75%;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    top: 10px;
    margin: 0 auto;
}
@media screen and (max-width: 991px){
	.subtitle{
	max-width: 40%;
}
}
@media screen and (max-width: 767px){
	.subtitle{
	max-width: 67%;
}
}
@media screen and (max-width: 640px){
	.subtitle{
	max-width: 67%;
}
}
@media screen and (max-width: 480px){
	.subtitle{
	max-width: 75%;
}
	.infoblock-info .txt-status{
	font-size: 23px;
}
	.infoblock-info .txt-primary {
    font-size: 51px;
}
}
.txt-status{
	color: #ffeb74;
	font-size: 47px;
	font-weight: 700;
}
.txt-msg{
	font-size: 41px;
	font-weight: 700;
	color: #e2984d;
}
@media screen and (max-width: 480px){
	.txt-msg{
	font-size: 29px;
}
}
.txt-tips{
	color: #c5bab8;
	font-size: 20px;
	font-weight: 300;
}
@media screen and (max-width: 480px){
	.txt-tips{
	font-size: 15px;
}
}
.txt-tips2{
	color: #c5bab8;
	font-size: 18px;
	font-weight: 300;
	font-weight: 700;
	font-style: italic;
}
.txt-guild{
	color: #fff;
	font-size: 31px;
    font-weight: 500;
	letter-spacing: 1px;
}
.txt-tips3{
	color: #ffeb74;
    font-size: 22px;
    font-weight: 500;
    line-height: 50px;
    padding: 20px 15px;
}
@media screen and (max-width: 991px){
.infoblock2 .container{
	width: 100%;
}
}
@media screen and (max-width: 767px){
.infoblock2 .container{
	width: 79%;
}
}
@media screen and (max-width: 600px){
.infoblock2 .container{
	width: 100%;
}
}
/*內容2區 結束*/

/*內容3區*/
.infoblock3{
	position: relative;
	/*background-color: #5e7b7c;*/
	background-color: #6f3333;
    padding: 0em 0 2em 0;
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}
.infoblock-info2{
    border: 1px solid #d8b2b2;
	border-radius:10px;
	display: flex;
	align-items: center;
	margin-bottom: 3em;
	padding: 2em 1em;
}
.infobody2{
	position: relative;
	z-index: 1;
}
.infoblock-round2{
	background-color: #6f3333;
    border-radius: 50%;
    width: 270px;
    height: 270px;
    margin: 0 auto;
    position: relative;
    top: -10em;
	z-index: 3;
}
@media(max-width:360px){
	.infoblock-round2{
    width: 230px;
    height: 230px;
}
}
.infoblock-round2 h3{
	font-size: 33px;
    color: #fff;
    text-align: center;
    padding-top: 2em;
	font-weight: 700;
}
.infoblock-round2 p{
	font-size: 18px;
    color: #d8b2b2;
    text-align: center;
    padding-top: 0.9em;
    font-weight: 400;
    z-index: 10;
    position: relative;
	letter-spacing: 2px;
}
.infoblock3_info{
	position: relative;
    top: -9em;
}
.title {
	margin: 0 1.5em 0 3em;
    border-right: 1px solid #d8b2b2;
    padding-right: 2.2em;
}
.title img{
	width: 250px;
	
}
@media screen and (max-width: 1000px){
	.infoblock-info2 {
    border: 1px solid #d8b2b2;
    border-radius: 10px;
    padding: 1em;
	display: block;
	text-align: center;
	z-index: 2;
    position: relative;
	margin-bottom: 1em;
	}
	.title {
	margin: 0 auto;
	border-right: 0px solid #ffffff;
    border-bottom: 1px solid #d8b2b2;
    padding-right: 0;
	}
	.title img{
		width: 250px;
	}	
}
.boxinfo{
    color: #fff;
    font-size: 23px;
    font-weight: 400;
	margin: 0;
}
@media screen and (max-width: 480px){
	.infoblock3_info {
    position: relative;
    top: -12em;
    z-index: 3;
}
	.boxinfo{
    font-size: 18px;
}
}
.boxinfo4{
    color: #d8b2b2;
    font-size: 23px;
    font-weight: 700;
	font-style: italic;
	margin: 0;
}
.boxinfo5{
    color: #d8b2b2;
    font-size: 18px;
    font-weight: 400;
	margin: 0;
}
@media screen and (max-width: 1000px){
	.boxinfo{
    margin-top: 1em;
	}
}
@media screen and (max-width: 480px){
	.boxinfo4{
    font-size: 18px;
}
}
@media screen and (max-width: 1200px){
	.infoblock3 .hand{
	left: 4em;
    width: 13%;
	}
}
@media screen and (max-width: 1000px){
	.infoblock3 .hand{
	left: 4em;
    width: 16%;
	}
}
@media screen and (max-width: 600px){
	.infoblock3 .hand{
	left: 1em;
    width: 25%;
	}
}
@media screen and (max-width: 495px){
	.infoblock3 .hand{
	left: 11.5em;
    bottom: 9em;
    width: 20%;
    z-index: 1;
	}
}
@media screen and (max-width: 399px){
	.infoblock3 .hand{
    bottom: 0em;
	}
}
.hand1 {
    position: absolute;
    right: 7em;
    bottom: 0;
    z-index: 1;
    width: 9%;
}
@media screen and (max-width: 991px){
	.hand1 {
    right: 6em;
    width: 11%;
}
}
@media screen and (max-width: 540px){
	.hand1 {
    right: 4em;
    width: 16%;
}
}
@media screen and (max-width: 485px){
	.hand1 {
    display: none;
}
}
.hand{
	position: absolute;
    right: 5em;
    bottom: 1em;
    z-index: 1;
    width: 9%;
    float: right;
}
.ticket{
	position: absolute;
    right: 21em;
    bottom: 13.5em;
    z-index: 3;
    width: 9%;
    float: right;
}
.txt-primary1{
	font-weight: 100;
    font-size: 23px;
   /* color: #c4c4c4;*/
	color: #F2F2F2;
    font-style: italic;
    padding: 0 10px;
	margin-top: 2em;
    display: block;
}
.txt-primary{
    font-size: 81px;
    color: #7c9db4;
    font-style: italic;
    line-height: 68px;
    padding: 0 10px;
	font-weight: 900;
}
@media screen and (max-width: 485px){
	.infoblock p {
    font: small-caps 500 22px/28px "Lucida Grande",sans-serif;
	margin-top: 0;
}
	.txt-primary1 {
    font-weight: 100;
    font-size: 17px;
	line-height: 22px;
    color: #c9e9f8;
    font-style: italic;
    padding: 0;
}
}
@media screen and (max-width: 399px){
	.infoblock p {
    font: small-caps 500 22px/28px "Lucida Grande",sans-serif;
	margin-top: 0;
}
}
/*.summary{
	color: #acc2c6;
	font-size: 18px;
}*/
.photo2{
	display: flex;
    position: relative;
	right: 0.5em;
    bottom: 10px;
    justify-content: flex-end;
}
.photo2 img{
	width: 99%;
}
.photo3{
	display: flex;
    position: relative;
    bottom: 25px;
    justify-content: flex-end;
}
.photo3 img{
	width: 99%;
}
/*內容3區 結束*/

/*內容4區*/
.infoblock4-info2{
	text-align: center;
}
.infoblock4-info3{
	text-align: center;
    top: 8em;
    position: absolute;
}
.app{
	width: 35%;
}
@media screen and (max-width: 1199px){
	.infoblock4-info3{
    top: 8em;
	}
}
@media screen and (max-width: 991px){
	.infoblock4-info3{
    top: 5em;
	}
	.infoblock4-info2 .phone img{
	width: 78%
	}
	.app{
	width: 150px;
	height: 150px;
}
}
@media screen and (max-width: 767px){
	.infoblock4-info2{
	position: relative;
	top: -2em;
	}
	.infoblock4-info3{
    top: 2em;
	position: relative;
	}
	.infoblock4-info3 p{
    /*top: 2em;
    position: relative;*/
	}
	.infoblock4-info2 .phone img{
	width: 42%
	}
	.infoblock4-info2 img{
	width: 78%
	}
	
}
@media screen and (max-width: 460px){
	.infoblock4-info2 .phone img{
	width: 55%
	}
}
.infoblock4_info {
    position: relative;
	top:-8em;
}
.infobody2{
	position: relative;
	z-index: 1;
}
.infoblock-round3 {
    background-color: #497fa2;
    border-radius: 50%;
    width: 270px;
    height: 270px;
    margin: 0 auto;
    position: relative;
    top: -10em;
}
@media(max-width:360px){
	.infoblock-round3{
    width: 230px;
    height: 230px;
}
}
.infoblock-round3 h3{
	font-size: 33px;
    color: #ffffff;
    text-align: center;
    padding-top: 1.4em;
	font-weight: 700;
}
.infoblock-round3 p{
	font-size: 18px;
    color: #eeeeee;
    text-align: center;
    padding-top: 0.9em;
    font-weight: 400;
    z-index: 10;
    position: relative;
	letter-spacing: 2px;
}
.infoblock4{
	position: relative;
	z-index: 2;
	background-color: #497fa2;
}
.title img{
	width: 250px;
}
@media screen and (max-width: 1000px){
	.title img{
	width: 210px;
    margin-bottom: 1em;
	}
	
}
@media screen and (max-width: 480px){
	.title img{
	width: 160px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px){
	.infoblock4-info2 .phone img{
	width: 65%;
	}
	p.phone img{
	width: 63%;
	}
}
.phone img{
	width: 52%;
}
.boxinfo3{
    color: #fff;
    font-size: 20px;
    font-weight: 200;
	margin: 1em auto;
}
.summary{
	color: #ceb6ad;
	font-size: 18px;
	font-weight: 300;
}
@media screen and (max-width: 480px){
	.summary{
	font-size: 14px;
}
}
.feature{
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    line-height: 40px;
    color: #d8b2b2;
    background-color: transparent;
    border: 1px solid #ffffff;
    position: relative;
    transition: all .3s linear;
	border-radius:10px;
	margin: 0 auto 1em auto;
	
}
.feature > p{
    position: relative;
    z-index: 1;
	top: 6px;
}
.feature::before{
    content: "";
    width: 100%;
    height: 0%;
    display: block;
    background-color: #668ea2;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .3s ease;
	border-radius: 8px;
}
.feature a{
	content: "";
    color: #edf9ff;
}
.feature:hover{
	content: "";
    color: #fff;
}
.feature:hover::before{
    height: 100%;
}
/*內容4區 結束*/
/*注意事項*/
.infoblock5{
	background-image: url(../img/bg3.png);
    background-size: cover;
    background-attachment: fixed;
	background-position: center center;
}
/*.infoblock5{
    width: 100%;
	color:#fff;
	font-weight: 100;
	margin: 0 auto;
	padding-bottom: 5em;
}*/
.infoblock5 h3{
	width: 25%;
    margin: 3em auto;
}
.responsive{
    /*word-break: break-all;*/
}
.responsive table{
    width: 100%;
	/*word-break: break-all;*/
}
.responsive table tr{
	word-break: break-all;
}
.responsive table td{
	font-size: 16px;
    vertical-align: top;
    padding: 2px;
	line-height: 30px;
	color: #fff;
	font-weight: 300;
}
td.item{
	word-break: initial;
}
.responsive table td a{
	color: #FFD9A3;
}
.txt-bold{
	font-size: 16px;;
	color: #fff;
	font-weight: 700;
}
@media(max-width:991px){
	.infoblock5 h3{
	width: 32%;
}
	.infoblock5 table{
    width: 100%;
}
}
.opengo{
    font-size: 18px;
    color: #fff;
    background-color: #003679;
    opacity: 1;
    border-radius: 40px;
    /*border: 1px solid #fff;*/
	bottom: 6.5em;
    display: inline-table;
    text-align: center;
	padding: 15px 5px;
	/*box-shadow: 0px 0px 7px #FFFFFF;*/

}
/*輪撥*/
ul.slides {
  position: relative;
  width: 320px;
  height: 693px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
li.slide {
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Helvetica;
  font-size: 120px;
  color: #fff;
  transition: .5s transform ease-in-out;
}
.slide:nth-of-type(1) {
	background: url("../img/phone1.png") no-repeat;
}

.slide:nth-of-type(2) {
	background: url("../img/phone2.png") no-repeat;
  	left: 100%;
}

.slide:nth-of-type(3) {
	background: url("../img/phone3.png") no-repeat;
  	left: 200%;
}
.slide:nth-of-type(4) {
	background: url("../img/phone4.png") no-repeat;
  	left: 300%;
}
.slide:nth-of-type(5) {
	background: url("../img/phone5.png") no-repeat;
  	left: 400%;
}
.slide:nth-of-type(6) {
	background: url("../img/phone6.png") no-repeat;
  	left: 500%;
}
.slide:nth-of-type(7) {
	background: url("../img/phone7.png") no-repeat;
  	left: 600%;
}
@media(max-width:480px){
	.slide:nth-of-type(1) {
	background: url("../img/phone1.png") no-repeat;
	}
}
input[type="radio"] {
  position: relative;
  z-index: 100;
  display: none;
}

.controls-visible {
  /*position: absolute;*/
  width: 100%;
  /*bottom: 12px;*/
  margin: 0 auto;
}

.controls-visible label {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #668ea2;
  border-radius: 50%;
  margin: 0 3px;
  border: 1px solid #668ea2;
}

.slides input[type="radio"]:nth-of-type(1):checked ~ .controls-visible label:nth-of-type(1) {
  background-color: #333;
}

.slides input[type="radio"]:nth-of-type(2):checked ~ .controls-visible label:nth-of-type(2) {
  background-color: #333;
}

.slides input[type="radio"]:nth-of-type(3):checked ~ .controls-visible label:nth-of-type(3) {
  background-color: #333;
}
.slides input[type="radio"]:nth-of-type(4):checked ~ .controls-visible label:nth-of-type(4) {
  background-color: #333;
}
.slides input[type="radio"]:nth-of-type(5):checked ~ .controls-visible label:nth-of-type(5) {
  background-color: #333;
}

.slides input[type="radio"]:nth-of-type(6):checked ~ .controls-visible label:nth-of-type(6) {
  background-color: #333;
}
.slides input[type="radio"]:nth-of-type(7):checked ~ .controls-visible label:nth-of-type(7) {
  background-color: #333;
}

.slides input[type="radio"]:nth-of-type(1):checked ~ .slide {
  transform: translatex(0%);
}

.slides input[type="radio"]:nth-of-type(2):checked ~ .slide {
  transform: translatex(-100%);
}

.slides input[type="radio"]:nth-of-type(3):checked ~ .slide {
  transform: translatex(-200%);
}

.slides input[type="radio"]:nth-of-type(4):checked ~ .slide {
  transform: translatex(-300%);
}
.slides input[type="radio"]:nth-of-type(5):checked ~ .slide {
  transform: translatex(-400%);
}

.slides input[type="radio"]:nth-of-type(6):checked ~ .slide {
  transform: translatex(-500%);
}

.slides input[type="radio"]:nth-of-type(7):checked ~ .slide {
  transform: translatex(-600%);
}
/* Left/Right Button Classes Below */

.navigator {
  color: #fff;
  position: absolute;
  top: 60%;
  transform: translatey(-50%);
  width: 100%;
  z-index: 100;
  /*padding: 0 20px;*/
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  display: none;
}

.navigator i {
  font-size: 32px;
  color: #333333;
}

.slides input[type="radio"]:nth-of-type(1):checked ~ .navigator:nth-of-type(1) {
  display: flex;
}

.slides input[type="radio"]:nth-of-type(2):checked ~ .navigator:nth-of-type(2) {
  display: flex;
}

.slides input[type="radio"]:nth-of-type(3):checked ~ .navigator:nth-of-type(3) {
  display: flex;
}
.slides input[type="radio"]:nth-of-type(4):checked ~ .navigator:nth-of-type(4) {
  display: flex;
}

.slides input[type="radio"]:nth-of-type(5):checked ~ .navigator:nth-of-type(5) {
  display: flex;
}

.slides input[type="radio"]:nth-of-type(6):checked ~ .navigator:nth-of-type(6) {
  display: flex;
}
.slides input[type="radio"]:nth-of-type(7):checked ~ .navigator:nth-of-type(7) {
  display: flex;
}