@charset "utf-8";
/* CSS Document */

/*Reset CSS*/
body, html, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, button, textarea, blockquote, th, td { 
	margin: 0; 
	padding: 0;
}
img { 
	border: 0;
}
h1, h2, h3, h4, h5, h6 { 
	font-weight: normal;
}
/*去除 Chrome focus 外框*/
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
	outline: 0;
}
/*去除 iOS input 默認樣式*/
input[type="button"],
input[type="submit"],
input[type="reset"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
}
/*清除 IE 默認選擇框樣式，隱藏下拉箭頭*/
select::-ms-expand { 
	display: none; 
}
/*去除 IE 10+ 本文框後面小叉叉*/
input::-ms-clear {
    display: none;
}
/*去除input[type=search]後面的小x*/
input[type=search]::-webkit-search-cancel-button{
    -webkit-appearance: none;
}
/*HTML5 tag*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, main, nav, section { 
	display: block;
}
/*Reset CSS end*/


body, html {
	font-family: \5FAE\8EDF\6B63\9ED1\9AD4, Arial, Verdana, sans-serif, 微軟儷黑體, 微軟正黑體, Microsoft JhengHei;
	position: relative;
	height: 100%;
	color: #000;
	/*讓 iOS 的 scroll 更順暢*/
	-webkit-overflow-scrolling: touch;
	
	/*行動裝置切換橫式 避免文本字體大小重置*/
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
input { 
	font-family: \5FAE\8EDF\6B63\9ED1\9AD4, Arial, Verdana, sans-serif, 微軟儷黑體, 微軟正黑體, Microsoft JhengHei;
	color: #000;
	font-size: 16px;
}
a:link,
a:visited,
a:active {
    text-decoration: none;
}
.more_btn{width:60%;margin:0 auto;}
.more_btn a{display:block;color: #fff; background-color: #282828;text-align: center;padding:10px;border-radius:20px;transition: .3s;}
.more_btn a:hover{color: #fff; background-color: #F9853C;}

/*GoTop*/
.gotop {
	display: block;
	position: fixed;	
	margin: 0 10px 15px 0;
	z-index: 100;
	right: 0;
	bottom: -100px;
	text-align: center;
	transition: 0.5s;
}
.gotop-img {
	width: 40px;
	height: 40px;
	display: block;
	border-radius: 5px;
	cursor: pointer;
    background: rgba(200,200,200,.7);
}
.gotop-img img {
	width: 25px;
	height: auto;
	margin-top: 12px;
}
/*GoTop end*/


/*header*/
header {
	width: 100%;
	height: 60px;
	position: relative;
	margin: 0;
	padding: 0;
	background: #282828;
	box-sizing: border-box;
}
.header_box,
.main_box {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
.main_box {
	overflow: hidden;
}
.kv {
	margin: 0 auto;
	max-height:463px;
	padding: 0;
	text-align: center;
	line-height: 0;
	background: url('../images/KV_bg.jpg') center no-repeat;
	background-size: cover;
}
.kv img{
	display: block;
	width: 100%;
	aspect-ratio:1200/463;
}
.logo {
	margin: 0;
	padding: 10px 0 0 0;	
	line-height: 0;
	box-sizing: border-box;
}
.logo img {
	width: auto;
	height: 40px;
}
nav {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	font-size: 17px;
}
nav ul li {
	float: left;
	text-align: center;
	list-style-type: none;
}
nav ul li a {
	display: block;
	float: left;
	width: 130px;
	height: 60px;
	line-height: 60px;
	color: #FFF;
}
nav ul li:hover,
nav ul li a:hover {
	background: #F9853C;
	transition: 0.3s linear;
}
nav ul li:hover a {
	color: #FFF;
}
nav ul li.active {
	background: #F9853C;
}
/*漢堡*/
.menu_box {
	display: none;
}
/*漢堡 end*/


/*web / 1024*/
@media (max-width:1279px) {
.header_box,
.main_box {
	width: 960px;
	margin: 0 auto;
}
.kv img {
	width: 100%;
	height: auto;
}
nav ul li a {
	width:115px;
}	
}

/*pad / 768~1023*/
@media (max-width:1023px) {
.header_box {
	width: 100%;
}
.main_box {
	width: 725px;
	margin: 0 auto;
}
.logo {
	margin-left: 15px;
}
nav {
	width: 100%;
	height: 0;
	overflow: hidden;
	font-size: 18px;
	background: #282828;
	transition: 0.3s linear;
}
nav::-webkit-scrollbar {
	width: 0px;
}	
nav ul {
	width: 90%;
	margin: 100px auto 50px;
}
nav ul li {
	float: none;
	margin: 0 auto;
	width: 50%;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
nav ul li a {
	float: none;
	height: 65px;
	width: 100%;
	line-height: 65px;
}
nav ul li.active {
	background: #282828;
}	
/*jQuery點擊後動態在 body 加上 class */
.menu_show nav {
	height: 100vh;
	overflow-y: inherit;
	transition: 0.3s linear;
  }
/*漢堡*/
.burgers_box {
	display: block;
	position: absolute;
	z-index: 4;
	top: 0;
	right: 0;
	cursor: pointer;
	padding: 20px 20px 25px 20px;
}
.burgers {
    float: left;
    width: 25px;
    height: 2px;
    background: #FFF;
    position: relative;
    margin: 8px 0 0 0;
    border-radius: 3px;	
	transition: 0.3s linear;
}
.burgers:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: #FFF;
    border-radius: 3px;
	transition: 0.3s linear;
}
.burgers:before {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 16px;
    height: 2px;
    background: #FFF;
    border-radius: 3px;
	transition: 0.3s linear;
}
.burgers_box.open .burgers {
  background: transparent;
}
.burgers_box.open .burgers:before {
    top: 0;
    transform: rotate(45deg);
	transition: 0.3s linear;
	width: 25px;
}
.burgers_box.open .burgers:after {
    top: 0;
    transform: rotate(-45deg);
	transition: 0.3s linear;
}
/*漢堡 end*/
}

/*mobile / 414~767*/
@media (max-width:767px) {
header {
	height: 50px;
}
.main_box {
	width: 90%;
}
.logo {
	margin-left: 10px;
}
.logo img {
	height: 30px;
}
.burgers_box {
	padding: 15px 15px 25px 15px;
}
nav ul {
	margin: 50px auto 50px;
}
nav ul li {
	width: 80%;
}
}
/*header end*/


/*首頁*/
h1 {
	display: inline-block;
	font-size: 42px;
	font-weight: bold;
	margin: 0;
}

h2 {
	font-size: 30px;
	line-height: 40px;
	margin: 0;
}
h3 {
	font-size: 20px;
	margin: 0;
	line-height: 34px;
	color: #555;
}
h3 span {
	color: #1B77D7;
	display: inline;
}
h4 {
	display: table;
	font-size: 30px;
	margin: 0 auto;
	padding: 60px 0 10px 0;
	text-align: center;
	border-bottom: 2px solid #000;
}
.intro {
	width: 100%;
	position: relative;
	padding: 50px 0;
	background: url(../images/bg.jpg) repeat;
}
.video_bg {
	width: 100%;
	height: 200px;
	height: 80px\0;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	-webkit-clip-path: polygon(0 0, 100% 80%, 100% 0);
	clip-path: polygon(0 0, 100% 80%, 100% 0);
}
.video {
	width: 45%;
	display: inline-block;
	float: right;
}

/*youtube*/
.youtubecontent { 
	position: relative; 
	height: 0; 
	overflow: hidden;
}
.youtubecontent { 
	padding-bottom: 56.25%;
}
.youtubecontent iframe,
.youtubecontent object,
.youtubecontent embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/*youtube end*/

.darkdialog_logo {
	margin: 0;
	line-height: 0;
	text-align: center;
	margin-bottom: 30px;
}
.darkdialog_logo img {
	width: 600px;
	height: auto;
}

/*pad / 768~1023*/
@media (max-width:1023px) {
h1 {
	font-size: 38px;
	display: block;
	float: none;
	margin: 0 auto;
	padding: 40px 0 0 0;	
	text-align: center;
}
h1:after {
	height: 3px;
	left: 50%;
	top: 110px;
	margin-left: -5%;
	width: 10%;	
	display: block;
	text-align: center;
}
h2 {
	font-size: 26px;
	padding-top: 30px;
}
h3 {
	font-size: 18px;
	padding-top: 10px;
	line-height: 30px;
}
h4 {
	font-size: 26px;
	padding: 20px 0 8px 0;
}
.video_bg {
	width: 100%;
	height: 100px;
	height: 0\0;
	clip-path: polygon(0 0, 100% 80%, 100% 0);
}

.darkdialog_logo img {
	width: 400px;
}
}
/*mobile / 414~767*/
@media (max-width:767px) {
h1 {
	font-size: 26px;
	padding: 30px 0 0 0;
}
h1:after {
	height: 2px;
	left: 50%;
	top: 75px;
	margin-left: -8%;
	width: 16%;
}
h2 {
	font-size: 20px;
	padding-top: 25px;
}
h3 {
	font-size: 16px;
	padding-top: 5px;
	line-height: 26px;
}
h4 {
	font-size: 20px;
	padding: 10px 0 8px 0;
}	
.intro {
	padding: 20px 0;
}	
.video_bg {
	width: 100%;
	height: 40px;
	height: 0\0;
	clip-path: polygon(0 0, 100% 80%, 100% 0);
}
.video {
	margin-top: 40px;
}
.darkdialog_logo {
	padding: 20px 0 0 0;
}
.darkdialog_logo img {
	width: 300px;
}	
}
/*mobile / 375~413*/
@media (max-width:413px) {
h1 {
	font-size: 24px;
	padding: 20px 0 0 0;
}
h1:after {
	height: 2px;
	left: 50%;
	top: 65px;
	margin-left: -8%;
	width: 16%;
}
}
/*mobile / 320~359*/
@media (max-width:359px) {
h1 {
	font-size: 22px;
	padding: 20px 0 0 0;
}
h1:after {
	height: 2px;
	left: 50%;
	top: 60px;
	margin-left: -8%;
	width: 16%;
}
.video {
	margin-top: 30px;
}	
}

/*首頁活動亮點*/
.highlight_bg {
	width: 100%;
	text-align: center;
	position: relative;
}
.highlight_mask {
	background: url('../images/highlight_bg.jpg') center no-repeat;
	filter: blur(5px);
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
}
.highlight_title {
	display: inline-block;
	font-size: 36px;
	color: #FFF;
	padding: 50px 0 10px 0;
	text-align: center;
	border-bottom: 3px solid #FFF;
}
.highlight_box {
	margin: 50px 0 0 0;
	padding: 0 0 50px 0;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}
.highlight_box .item {	
	width: 20%;
	height: 130px;
	margin: 10px 5px;
	padding: 20px;
	border: 1px solid rgba(255,255,255,.5);
	background: rgba(0,0,0,.4);
	color: #FFF;
	text-align: center;
	font-size: 26px;
	line-height: 30px;
}
.highlight_box .item p {
	font-size: 18px;
	line-height: 26px;
	text-align: left;
	margin-top: 10px;
}
.highlight_root {
	position: relative;
	width: 510px;
	height: 460px;
	margin: 0;
	float: left;
	overflow: hidden;
}
.highlight_root:nth-child(2),
.highlight_root:nth-child(3),
.highlight_root:nth-child(4),
.highlight_root:nth-child(5) {
	width: 345px;
	height: 230px;
}
.highlight_pic { 
	width: 100%;
	height: auto;
	line-height: 0;
}
.highlight_pic img { 
	width: 100%;
	height: auto;
}

/*web / 1024*/
@media (max-width:1279px) {
.highlight_box {
	margin: 30px 0 0 0;
	padding: 0 0 30px 0;
}
.highlight_box .item {	
	width: 20%;
	height: 120px;
	margin: 10px 5px;
	padding: 15px 10px;
	font-size: 20px;
	line-height: 20px;
}
.highlight_box .item p {
	font-size: 16px;
	line-height: 24px;
	margin-top: 10px;
}
.highlight_root {
	width: 408px;
	height: 368px;
}
.highlight_root:nth-child(2),
.highlight_root:nth-child(3),
.highlight_root:nth-child(4),
.highlight_root:nth-child(5) {
	width: 276px;
	height: 184px;
}	
}
/*pad / 768~1023*/
@media (max-width:1023px) {
.highlight_title {
	font-size: 30px;
	padding: 20px 0 10px 0;
	color: #000;
	border-bottom: 2px solid #000;
}
.highlight_box {
	margin: 20px 0 0 0;
	padding: 0 0 30px 0;
}
.highlight_box .item {
	height: 150px;
}
.highlight_root {
	width: 309px;
	height: 278px;
}
.highlight_root:nth-child(2),
.highlight_root:nth-child(3),
.highlight_root:nth-child(4),
.highlight_root:nth-child(5) {
	width: 208px;
	height: 139px;
}
}
/*mobile / 414~767*/
@media (max-width:767px) {
.highlight_title {
	font-size: 24px;
	padding: 20px 0 10px 0;
}
.highlight_box {
	margin: 20px 0 0 0;
	padding: 0 0 30px 0;
}
.highlight_box .item {
	width: 38%;
	height: 150px;
	margin: 10px 0;
}	
.highlight_root {
	width: 95%;
	height: auto;
	float: none;
	margin: 0 auto 15px;
}
.highlight_root:nth-child(2),
.highlight_root:nth-child(3),
.highlight_root:nth-child(4),
.highlight_root:nth-child(5) {
	width: 95%;
	height: auto;
}
}

/*mobile / 375~413*/
@media (max-width:413px) {
.highlight_title {
	font-size: 22px;
	padding: 20px 0 10px 0;
}	
.highlight_box {
	padding: 0 0 20px 0;
}
.highlight_box .item {
	width: 40%;
	height: 170px;
	margin: 6px 0;
}
}

/*mobile / 320~359*/
@media (max-width:359px) {
.highlight_box {
	padding: 0 0 10px 0;
}
.highlight_box .item {
	width: 40%;
	height: 160px;
	margin: 6px 0;
	font-size: 18px;
}
.highlight_box .item p {
	font-size: 15px;
	line-height: 20px;
	margin-top: 8px;
}	
}
/*首頁活動亮點 end*/
/*首頁 end*/



/*課程介紹*/
.course_box {
	margin: 40px auto 0;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}
.course_item {
	width: 45%;
	height: auto;
	line-height: 0;
}
.course_item img {
	width: 100%;
	height: auto;
}
.course_item p {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 16px;
	line-height: 20px;
	color: #000;
	text-align: center;
}
.course_item.schedule {
	width: 80%;	
	padding: 15px;
	background-color: #fff;
	border: 1px #ccc solid;
}
.features_box ul {
	margin: 30px 0 0 30px;
	padding: 0;
	list-style-type: decimal;
}
.features_box ul li {
	margin: 0 0 30px 0;
	padding: 0;
	font-size: 22px;
	line-height: 28px;
	font-weight: bold;
	color: #000;
}
.features_box ul p {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 20px;
	font-weight: normal;
	color: #888;
}
.schedule_box {
	margin: 0 auto;
	padding: 0;
}
.schedule_box p {
	margin: 40px 0 20px 0;
	padding: 0;
	font-size: 22px;
	line-height: 28px;
	color: #F9853C;
	font-weight: bold;
}
.schedule_box ul {
	margin: 10px 0 0 25px;
	padding: 0;
	list-style-type: disc;
}
.schedule_box ul li {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: bold;
	color: #000;
}
.schedule_box ul li span {
	margin: 0 0 0 5px;
	padding: 0;
	font-weight: normal;
	color: #888;
}

/*web / 1024*/
@media (max-width:1279px) {
.course_item.schedule {
	width: 90%;
}		
.schedule_box {
	width: 950px;
}
}

/*pad / 768~1023*/
@media (max-width:1023px) {
.course_box {
	margin: 25px auto;
}
.features_box ul {
	margin: 30px 0 0 30px;
}
.features_box ul li {
	margin: 0 0 30px 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}
.features_box ul p {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 18px;
}
.schedule_box {
	width: 710px;
}
.schedule_box p {
	margin: 40px 0 20px 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}
.schedule_box ul {
	margin: 10px 0 0 25px;
}
.schedule_box ul li {
	margin: 0 0 20px 0;
	font-size: 18px;
	line-height: 28px;
}
}

/*mobile / 414~767*/
@media (max-width:767px) {
.course_box {
	margin: 20px auto;
}
.course_item {
	width: 100%;
	margin: 0 0 20px 0;
}
.course_item:last-child {
	margin: 0;
}
.course_item.schedule {
	width: 100%;
	padding:10px 5px;
}
.features_box ul {
	margin: 15px 0 0 30px;
}
.features_box ul li {
	margin: 20px 0;
	font-size: 18px;
	line-height: 26px;
}
.features_box ul p {
	margin: 6px 0 0 0;
	font-size: 16px;
	line-height: 26px;
}
.schedule_box {
	width: 100%;
}
.schedule_box p {
	margin: 20px 0 10px 0;
	font-size: 18px;
	line-height: 26px;
}
.schedule_box ul {
	margin: 10px 0 25px 25px;
}
.schedule_box ul li {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 26px;
}	
}
/*課程介紹 end*/



/*課程花絮&最新消息*/
ul.news {
	width: 100%;
	list-style: none;
	margin: 20px auto;
}
ul.news li {
	margin: 0;
	padding: 20px 5px 20px 20px;
	cursor: pointer;
	font-size: 18px;
	line-height: 28px;
	border-bottom: 1px dashed #bababa;
	box-sizing: border-box;
}
ul.news li:hover {
	background: #eee;
	border-bottom: 1px dashed #bababa;
}
ul.news li a {
	display: block;
	color: #000;
}
ul.news li:last-child {
	margin-bottom: 0;
}
ul.news li a span {
	float: right;
	font-size: 16px;
	color: #999;
}
/*mobile / 414~767*/
@media (max-width:767px) {
ul.news li {
	padding: 12px 5px;
	font-size: 16px;
	line-height: 26px;
}
ul.news li a span {
	display: none;
}	
}

.review_box {
	margin: 40px auto 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.review_item {
	width: 45%;
	margin: 0 0 50px 0;
	height: auto;
	line-height: 0;
	overflow: hidden;
}    
.review_item .video_box{
	overflow: hidden;
}
.review_item .video{
	width:100%;
	height: 304px;
	overflow: hidden;
}
@media (max-width:1279px) {
.review_item .video{height: 243px;}
}
@media (max-width:1023px) {
.review_item .video{height: 183px;}
}
@media (max-width:767px) {
.review_item .video{height: 243px;}
}
@media (max-width:479px) {
.review_item .video{height: 209px;}
}
@media (max-width:413px) {
.review_item .video{height: 190px;}
}
@media (max-width:374px) {
.review_item .video{height: 182px;}
}
@media (max-width:359px) {
.review_item .video{height: 162px;}
}
.review_item .txt{
   overflow: hidden;
   padding: 20px;
   background-color: #f3f4f7;
   border-left: #e7e8e9 1px solid;
   border-right: #e7e8e9 1px solid;
   border-bottom: #e7e8e9 4px solid;
}
.review_item .info_head{line-height: normal;display:flex;align-items:center;overflow: hidden;margin-bottom:15px;}
.review_item .info_head .img{width:50px;height:50px;border-radius:360px;overflow: hidden;margin-right:15px;}
.review_item .info_head .img img{width:100%;height:100%;}
.review_item .txt p{
	margin: 0;
	text-align:left;
	font-weight:600;
	color: #777c7f;
	font-size: 18px;
}
.review_item .public_info .title{
	font-size: 23px;
	color: #444444;
	font-weight:600;
}
.review_item .public_info .time{
	font-size: 12px;
    line-height: 1.4;
    color: #b5b6b4;
}
.review_item img {
	width: 100%;
	height: auto;
}
.review_item p {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 16px;
	line-height: 20px;
	color: #000;
	text-align: center;
}

/*pad / 768~1023*/
@media (max-width:1023px) {
.review_item {
	margin: 0 0 30px 0;
}	
}
/*mobile / 414~767*/
@media (max-width:767px) {
.review_box {
	margin: 20px auto;
}
.review_item {
	width: 100%;
}
.review_item:last-child {
	margin: 0;
}	
}
/*課程花絮&最新消息 end*/



/*師資陣容*/
.teacher_box {	
	margin: 40px auto 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 0 20px 40px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #d9d9d9;
}
.teacher_box.reverse {
	flex-direction: row-reverse;
}
.teacher_box:last-child {
	padding-bottom: 10px;
	border-bottom: 0;
}
.teacher_pic {	
	width: 250px;
	height: 250px;
	line-height: 0;
}
.teacher_pic img {	
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.teacher_info {
	width: 880px;
	font-size: 22px;
	line-height: 28px;
	font-weight: bold;
	color: #000;
}
.teacher_info span {
	margin: 0 0 0 5px;
}
.teacher_info p {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: normal;
	color: #888;
}

/*web / 1024*/
@media (max-width:1279px) {
.teacher_info {
	width: 630px;
}
}

/*pad / 768~1023*/
@media (max-width:1023px) {
.teacher_pic {	
	width: 170px;
	height: 170px;
}	
.teacher_info {
	width: 480px;
	font-size: 20px;
	line-height: 28px;
}
.teacher_info p {
	margin: 5px 0 0 0;
	font-size: 16px;
	line-height: 26px;
}
}

/*mobile / 414~767*/
@media (max-width:767px) {
.teacher_box,
.teacher_box.reverse {
	width: 100%;
	margin: 30px auto 0;
	display: flex;
	flex-direction: row;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 0 20px 0;
}
.teacher_box:last-child {
	padding-bottom: 20px;
}	
.teacher_pic {	
	width: 150px;
	height: 150px;
}	
.teacher_info {
	width: 100%;
	margin: 10px 0 0 0;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
}
.teacher_info span {
	display: block;	
	margin: 0;
	font-size: 16px;
}
.teacher_info p {
	margin: 3px 0 0 0;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
}	
}
/*師資陣容 end*/



/*我要報名*/
.rg-container {
	margin: 0;
	padding: 0 0 40px 0;
	color: #000;
}

/*table*/
table.rg-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
table.rg-table tr {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	text-align: left;
}
table.rg-table thead {
	border-bottom: 3px solid #CCC;
}
table.rg-table thead th:first-of-type{
	width: 80px;
}
table.rg-table tr {
	border-bottom: 1px solid #CCC;
}
table.rg-table.zebra tr:nth-child(3n) {
	background: #E8E8E8;
}
table.rg-table th {
	font-size: 20px;
	font-weight: bold;
	padding: 10px 5px;
}
table.rg-table td {
	padding: 10px 5px;
	font-size: 18px;
}
table.rg-table .highlight td {
	font-weight: bold;
}
table.rg-table th.number,
td.number {
	text-align: right;
}
table.rg-table .text_inner{
	padding: 0;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
	line-height: 26px;
	color: #000;
}

/*mobile / 414~767*/
@media (max-width:767px) {
.rg-container {
	margin: 0 auto;
	padding: 0 0 10px 0;
}
table.rg-table {
	width: 95%;
}
table.rg-table thead {
	display: none;
}
table.rg-table tbody {
	width: 100%;
}
table.rg-table tr,
table.rg-table th,
table.rg-table td {
	display: block;
	padding: 0;
}
table.rg-table tr {
	border-bottom: none;
	margin: 0 0 30px 0;
	padding: 0;
}
table.rg-table.zebra tr:nth-child(even) {
	background: transparent;
}
table.rg-table.zebra tr:nth-child(3n){
	background: transparent;
}
table.rg-table td {
	padding: 6px 0;
    border-bottom: 1px solid #CCC;
	font-size: 16px;
	line-height: 26px;
}

table.rg-table td[data-title]:before {
	content: attr(data-title);
    font-weight: bold;
    display: inline-block;
	float: left;
    margin-right: 10px;
	color: #1B77D7;
	font-size: 17px;
}
table.rg-table td:last-child {
    border-bottom: 2px solid #999;
}
table.rg-table .text_inner{
	padding-left: 40px;
}
}
/*table end*/

/*Button*/
.signup_box {
	width: 100%;
	padding-top: 50px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.btn {
	width: 200px;
	text-align: center;
	padding: 20px 10px;
	margin: 0 30px;
	background: none;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	z-index: 1;
}
.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	transition: all 0.3s;
}
.btn-1 {
	font-family: \5FAE\8EDF\6B63\9ED1\9AD4, Arial, Verdana, sans-serif, 微軟儷黑體, 微軟正黑體, Microsoft JhengHei;
	border: 2px solid #333;
	color: #333;
	font-size: 20px;
	font-weight: 700;
}
.btn-1:after {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #F9853C;
}
.btn-1:hover:after{
	height: 100%;
}
.btn-1:hover {
	color: #FFF;
	border: 2px solid #F9853C;
}
.btn-1:active {
	top: 5px;
}

/*pad / 768~1023*/
@media (max-width:1023px) {	
.btn-1:hover {
	color: #333;
	border: 2px solid #333;
	background: transparent;
}
.btn-1:hover:after{
	height: 0;
}
}
/*mobile / 414~767*/
@media (max-width:767px) {
.signup_box {
	padding-top: 20px;
}
.btn {
	width: 130px;
	padding: 10px 0;
	margin: 0 10px;
}
.btn-1 {
	font-size: 18px;
	font-weight: normal;
}	
}
/*mobile / 360~374*/
@media (max-width:374px) {
.btn {
	width: 110px;
}	
.btn-1 {
	font-size: 17px;
	border: 1px solid #333;
}
.btn-1:hover {
	border: 1px solid #333;
}	
}
/*Button end*/
/*我要報名 end*/



/*注意事項*/
.info_box {
	margin: 20px auto;
	padding: 0;
}
.info_box ul {
	margin: 0 0 0 30px;
	padding: 0;
	list-style-type: decimal;
}
.info_box ul li {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 20px;
	line-height: 32px;
	color: #888;
}
.info_box ul li span {
	display: inline;
	color: #F9853C;
}
.info_box p {
	margin: 0;
	padding-top: 40px;
	font-size: 20px;
	line-height: 32px;
	font-weight: bold;
	color: #F9853C;
	text-align: center;
}
.block {
	display: block;
}
.info_box a {
	color: #F9853C;
	text-decoration: none;
}
.info_box a:hover {
	text-decoration: underline;
}

/*pad / 768~1023*/
@media (max-width:1023px) {
.info_box ul li {
	font-size: 18px;
	line-height: 30px;
}	
.info_box p {	
	padding-top: 30px;
	font-size: 18px;
	line-height: 30px;
}
}
/*mobile / 414~767*/
@media (max-width:767px) {
.info_box ul li {
	font-size: 16px;
	line-height: 26px;
}	
.info_box p {
	padding-top: 10px;
	font-size: 16px;
	line-height: 26px;
}	
.info_box span {
	display: block;
}
}
/*注意事項 end*/


/*其他營隊*/
.course_box.group {
	border-bottom: 1px solid #CCC;
	padding-bottom: 40px;
}
.course_box.group:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.group_item {
	width: 42%;
	position: relative;
}
.group_logo {
	width: 100%;
	position: absolute;
	top: 10px;
	left: 0;
	transition: 0.3s linear;
}
.group_logo img {
	width: auto;
	height: 100px;
	margin-right: 15px;
}
.group_item p {
	margin-top: 130px;
	padding: 0;
	font-size: 16px;
	line-height: 24px;
	color: #555;
}
.group_item:hover .group_logo {
	top: 0;
}
/*pad / 768~1023*/
@media (max-width:1023px) {
.group_logo img {
	height: 85px;
}
.group_item p {
	margin-top: 110px;
}	
}
/*mobile / 414~767*/
@media (max-width:767px) {
.course_box.group {
	border-bottom: 0;
	padding-bottom: 0;
	margin: 0;
}
.group_item {
	width: 100%;
	border-bottom: 1px solid #CCC;
	padding-bottom: 10px;
	margin: 10px 0;
}
.group_item.nobottom {
	border-bottom: 0;
}
.group_logo img {
	height: 70px;
}
.group_item p {
	margin-top: 95px;
}
}
/*其他營隊 end*/



/*footer*/
footer {
	width: 100%;
	padding: 50px 0;
	background: #282828;
}
.footer_box {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.footer_logo {
	margin: 0;
	padding: 0;
}
.footer_logo img {
	width: auto;
	height: 50px;
	margin: 0 6px -8px 0
}
.footer_logo p {
	margin: 0;
	font-size: 18px;
	line-height: 20px;
	display: inline;
	vertical-align: baseline;
}
.footer_logo p a {
	color: #FFF;
}
.footer_logo p a:hover {
	color: #FFF;
	text-decoration: underline;
}
.footer_icon {
	margin: 0;
	padding: 0;
}
.footer_icon ul li {
	display: inline;
	margin: 0 0 0 5px;
	padding: 0;
}
.footer_icon ul li img {
	width: 40px;
	height: 100%;
}
.copyright {
	width: 100%;
	margin: 10px 0 0 10px;
	font-size: 15px;
	line-height: 20px;
	color: #999;
}
.copyright span {
	display: inline;
}
/*pad / 768~1023*/
@media (max-width:1023px) {
footer {
	padding: 30px 0 50px 0;
}
.footer_logo img {
	height: 40px;
	margin: 0 6px -8px 0
}
.footer_logo p {
	font-size: 16px;
}
.footer_icon {
	margin: 0 15px 0 0;
}	
}
/*mobile / 414~767*/
@media (max-width:767px) {
footer {
	padding: 20px 0 30px 0;
}	
.footer_box {
	align-items: flex-start;
}	
.footer_logo img {
	height: 30px;
	margin: 0 5px -5px 0
}
.footer_logo p {
	font-size: 16px;
}
.footer_icon {
	margin: 0 15px 0 0;
}
.footer_icon ul li img {
	width: 35px;
}
.copyright {
	margin: 6px 0 0 2px;
	font-size: 14px;
	line-height: 20px;
}
.copyright span {
	display: block;
}
}
/*mobile / 375~413*/
@media (max-width:413px) {
footer {
	padding: 20px 0 40px 0;
}		
.footer_logo img {
	height: 25px;
	margin: 0 3px -3px 0
}
.footer_logo p {
	font-size: 15px;
}
.footer_icon {
	margin: 0;
}
.footer_icon ul li {
	margin: 0 0 0 3px;
}
.copyright {
	margin: 5px 0 0 2px;
	font-size: 12px;
	line-height: 17px;
}
}
/*mobile / 320~359*/
@media (max-width:359px) {
footer {
	padding: 15px 0 60px 0;
}			
.footer_icon ul li {
	display: block;
	margin: 0 3px 0 0;
}
}
/*footer end*/

/* new */
.content_box{
	display: flex;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
}
.content_title{
	width: 50%;
}
.content_title p{
	font-size: 20px;
	line-height: 34px;
	color: #555555;
}
@media (max-width:1200px) {
	.content_box{
		box-sizing: border-box;
		padding: 0 15px;
		width: 100%;
	}
}
@media (max-width:1023px) {
	.content_box{
		flex-wrap: wrap;
		justify-content: center;
	}
	.content_title{
		width: 100%;
	}
	.video{
		width: 80%;
	}
}
@media (max-width:500px){
	.video{
		width: 100%;
	}
}

.character{
	margin-top: 64px;
}

.character_title{
	text-align: center;
	position: relative;
	z-index: 1;
}

.character_title span{
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
	background-color: #fff;
	padding: 0 15px;
}

.character_title::before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 390px;
	height: 1px;
	background-color: #000;
	z-index: -1;
}

.character_content{
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(4,218px);
	grid-template-rows: repeat(2,196px);
	gap:33px 80px;
	justify-content: center;
	text-align: center;
}

.character_content .item p{
	margin: 0;
	margin-top: 10px;
	font-size: 20px;
	line-height: 28px;
	color: #555555;
}
@media (max-width:1279px){
	.character_content{
		gap:33px 30px;
	}
}
@media (max-width:1023px) {
	.character_content{
		grid-template-columns: repeat(3,175px);
		grid-template-rows: repeat(3,144px);
		gap:20px;
	}
	.item_img{
		width: 90px;
		margin: 0 auto;
	}
	.item_img img{
		width: 100%;
	}
	.character_content .item p{
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width:630px){
	.character_content{
		grid-template-columns: repeat(2,175px);
	}
}
@media (max-width:414px){
	.character_content{
		grid-template-columns: repeat(2,45%);
		grid-template-rows: repeat(3,170px);
	}
}
.quote{
	margin-top: 95px;
	margin-bottom: 65px;
	font-size: 20px;
	line-height: 34px;
	color: #555555;
}
.suzuki{
	width: fit-content;
	font-size: 30px;
	line-height: 40px;
	margin: 0 auto;
	color: #F9853C;
	text-align: center;
	position: relative;
	padding:20px;
	margin-bottom: 22px;
}
.suzuki::before{
	content: '';
	display: block;
	width: 28px;
	height: 19px;
	background: url('../images/quote_01.svg') center  no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}
.suzuki::after{
	content: '';
	display: block;
	width: 28px;
	height: 19px;
	background: url('../images/quote_02.svg')center  no-repeat;	
	background-size: contain;
	position: absolute;
	right: 0;
	bottom: 0;
}
@media (max-width:767px) {
	.content_title p, .quote{
		font-size: 16px;
		line-height: 26px;
	}
	.character_title span{
		font-size: 20px;
		line-height: 40px;
	}
	.character_title::before{
		width: 290px;
	}
	.suzuki{
		font-size: 20px;
		line-height: 30px;
	}
	.suzuki::before, .suzuki::after{
		width: 21px;
		height: 13px;
	}
}
.features_box h3{
	margin: 15px 0;
}

/* owl carousel */
.owl-carousel{
    width: 1200px;
	margin: 0 auto;
}
.owl-theme .owl-dots{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 20px 0 10px 0;
	background: linear-gradient(to top, #000 0%, transparent 95%);
	bottom:0;
	}
@media (max-width:1200px){
	.owl-carousel{
		width: 100%;
	}
}
