@font-face {
  font-family: 'cwTeXYen';
  font-style: normal;
  font-weight: 500;
  src: url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.eot);
  src: url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.eot?#iefix) format('embedded-opentype'),
       url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.woff) format('woff'),
       url(//fonts.gstatic.com/ea/cwtexyen/v3/cwTeXYen-zhonly.ttf) format('truetype');
}

*{
    padding: 0;
    margin: 0;
    font-family:'cwTeXYen', Microsoft JhengHei;
}

li{
    list-style: none;
    text-align: center;
}
a{
    text-decoration: none;
    color: #000000;
}
img{
    max-width: 100%;
}
.container{
    max-width: 80%;
    margin: auto;
}
h2{
	font-size: 24px;
	
}
h3{
	font-size: 22px;
}
p,a{
	font-size: 20px;
}

@media screen and (max-width: 767px) {
    h2{
        font-size: 18px;
        text-align: center;
    }
    h3{
        font-size: 16px;
    }
    p,a{
        font-size: 14px;
    }
}

/* title icon */
.titleName{
	display: flex;
    align-items: center;
    margin: 20px 0 10px 0;

}
.titleName img{
	width: 35px;
    margin-right: 5px;
}

/* Navigation */
#Navigation{
    background-color: #fff4f0;
    position: fixed;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s;
	transition: all 0.5s;
    z-index: 100;
}
#Navigation a:hover{
    color: #000000;
}
#Navigation nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#Navigation .logo{
    width: 120px;
}
#Navigation .items{
    display: flex;
    justify-content: space-between;
}
#Navigation .items li{
    padding-left: 10px;
}
#Navigation img{
    padding: 8px 0;
}
@media screen and (max-width: 767px) {
    #Navigation nav{
        flex-direction: column;
        padding-bottom: 12px;
    }
    #Navigation .items li{
        padding: 0 5px;
    }
}
@media screen and (max-width: 576px) {
    #Navigation nav{
        flex-direction: column;
    }
    #Navigation .items{
        flex-wrap: wrap;
    }
    #Navigation .items li{
        width: 25%;
    }
    #Navigation a{
        display: inline-block;
        padding: 2.5px 0;
    }
    #Navigation .items li.contactBtn{
        background-color: #f3e64d;
        border-radius: 5px;
        border: 1px solid #000000
    }
    #Navigation img{
        padding: unset;
        max-width: 85%;
        padding-top: 5px;
    }
}

/* Banner */
#Banner .owl-carousel{
    position: relative;
}
#Banner .owl-nav{
    display: flex;
    justify-content: space-between;
}
#Banner .owl-nav button{
    font-size: 50px;
}
#Banner .owl-nav button img{
    width: 20px;
}
#Banner .owl-nav button:nth-child(1) span img{
    transform: rotate(90deg);
}
#Banner .owl-nav button:nth-child(2) span img{
    transform: rotate(-90deg);
}
#Banner .owl-nav button:nth-child(1){
    position: absolute;
    top: calc(( 100% - 24px ) / 2);
    transform: translateY(-50%);
    left: 20px;
}
#Banner .owl-nav button:nth-child(2){
    position: absolute;
    top: calc(( 100% - 24px ) / 2);
    transform: translateY(-50%);
    right: 20px;
}
#Banner .owl-nav button:hover{
    background: none;
}
@media screen and (max-width: 576px) {
    #Banner .owl-nav button:nth-child(1){
        display: none;
    }
    #Banner .owl-nav button:nth-child(2){
        display: none;
    }
}

/* Vacancy */
#Vacancy .introductions{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
#Vacancy .introductions .introduction{
    width: 30%;
    box-shadow: 6px 6px 6px rgb(0 0 0 / 8%);
    margin-bottom: 12px;
    border-radius: 5px;
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    #Vacancy .introductions .introduction{
        width: 45%;
    }
}
#Vacancy .introductions .introduction > div{
    position: relative;
}
#Vacancy .introductions h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #ffffffb3;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
}
#Vacancy .para{
    padding: 5px;
}

.introduction img{
    border-radius: 25%;
}

/* Advantage */
#Advantage h2{
	text-align: center;
    padding: 10px 0;
	background-color: #fff4f0;
}
@media screen and (max-width: 576px) {
    #Advantage .container{
        max-width: 100%;
    }
}

/* Area */
#Area p{
	padding: 15px 0;
    width: 50%;
}
@media screen and (max-width: 576px) {
    #Area p{
        width: 100%;
    }
}
#Area .part{
	padding: 10px 10px;
}
#Area .range{
	background-color: #fff4f0;
}
#Area .area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* space */
#Space .space{
    margin-top: 20px;
}

/* Welfare */
#Welfare{
    max-width: 100%;
}
#Welfare .introductions{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#Welfare .introduction{
	width: 32%;
}
#Welfare .introduction .pic{
	position: relative;
}
#Welfare .introduction img{
	border-radius: 20px;
}
#Welfare .introduction .para{
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 80%;
}
#Welfare .introduction .para h3{
    display: inline-block;
    background-color: #ffffffb3;
    padding: 10px 10px;
    border-radius: 5px;
    white-space: nowrap;
    display: block;
    text-align: center;
}
.mobile_text{
    display:none;
}

@media screen and (max-width: 576px) {
#Welfare .introductions .introduction{
    width: 49%;
}
.pc_text{
    display:none;
}
.mobile_text{
    display:block;
}
    
}


/* Video */
#Video .videobox{
    display: flex;
}
#Video .videobox > div{
    width: 33.3333%;
    margin: 5px;
}
/*#Video .embed_video{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width:100%;
}
#Video .embed_video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
}*/
.video_title{
   text-align:center;
   font-size:20px;
   margin-bottom:10px;
}

@media screen and (max-width: 576px) {
    #Video .videobox{
        flex-direction: column;
        align-items: center;
    }
    
    #Video .videobox .embed_video{
        width: 100%;
        /*margin-bottom: 10px;*/
    }
    
    .videoboxin{
        width:100% !important;
    }
}


/* About */
#About .introduction{
    display: flex;
}
#About .introduction > div{
    width: 50%;
    line-height: 1.5;
}
#About .introduction .addLine{
    position: relative;
    background-color: #fff4f0;
}
#About .introduction .addLine a{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
    /*background-color: #39cd00;*/
    background-color: #f9e3d4;
    border-radius: 5px;
    padding: 5px 10px;
    /*color: #ffffff;*/
    color: #000000;
}
#About .about p{
    padding: 0px 10px;
}

@media screen and (max-width: 576px) {
    #About .introduction{
        flex-direction: column;
        align-items: center;
    }
    #About .introduction .addLine{
        padding: 30px;
    }
    #About .introduction .about{
        width: 100%;
        box-shadow: 6px 6px 6px rgb(0 0 0 / 8%);
        margin-bottom: 12px;
        border-radius: 5px;
        overflow: hidden;
        background-color: #FFF3EB;
        padding: 10px 5px;
    }
    #About .introduction .addLine{
        width: 100%;
        background-color: #ffffff;
    }
}

/* FAQ */
#FAQ .faq-content {
	margin: 0 auto;
}
#FAQ .faq-question {
	padding: 15px 0;
	border-bottom: 1px dotted #ccc;
}
#FAQ .faq-question:first-child{
    padding-top: 0;
}
#FAQ .panel-title {
	font-size: 18px;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 10px 10px 0 30px;
	display: block;
	cursor: pointer;
	z-index: 98;
}
#FAQ .panel-content {
	font-size: 18px;
	padding: 0px 14px;
	margin: 0 40px;
	height: 0;
	overflow: hidden;
	z-index: 99;
	position: relative;
	opacity: 0;
	-webkit-transition: .4s ease;
	-moz-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
}
#FAQ .panel:checked ~ .panel-content{
	height: auto;
	opacity: 1;
	padding: 14px;
}
#FAQ .plus {
	position: absolute;
	margin-top: 4px;
	z-index: 5;
	font-size: 32px;
	line-height: 100%;
	-webkit-user-select: none;    
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: .2s ease;
	-moz-transition: .2s ease;
	-o-transition: .2s ease;
	transition: .2s ease;
}
#FAQ .panel:checked ~ .plus {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#FAQ .panel {
	display: none;
}
@media screen and (max-width: 576px) {
    #FAQ .faq-question{
        overflow: hidden;
    }
    #FAQ p{
        width: calc( 100% - 30px );
    }
}

/* Contact */
#Contact .contact{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#Contact .contact > div{
	width: 45%;
    text-align: center;
}
#Contact .right{
	text-align: right;
}
#Contact h3{
    text-align: center;
    background-color: #FFF3EB;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
}
#Contact img{
    border-radius: 5px;
}
#Contact .contact .pic{
    position: relative;
}
#Contact .contact p{
    color: #000000;
    background-color: #fff4f0;
    padding: 3px 10px;
    border-radius: 5px;
    text-align: center;
    margin: 5px 0;
    display: inline-block;
}
#Contact .contact span{
    /*background-color: #39cd00;*/
    padding: 2px 4px;
    border-radius: 2.5px;
    margin: 2px;
    color: #d9a595;
    font-weight:bold;
}

#Contact .contact pic{
    max-width: 80%;
}

/* Footer */
#Footer{
	background-color: #FFF3EB;
    padding: 15px 0 12px 0;    
    margin-top: 20px;
}
#Footer div{
	width: 80%;
    margin: auto;
}
#Footer p{
	padding: 2px;
}
#Footer .copyright p{
	text-align: center;
	padding-top: 15px;
	letter-spacing: 0.8px;
    font-size: 10px;
}
@media screen and (max-width: 576px) {
    #Footer .info p{
        font-size: 10px;
    }
    #Footer .copyright p{
        font-size: 8px;
    }
}

/* Information */
#Information{
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 101;
}
#Information a{
    display: flex;
    align-items: center;
}
#Information .name_woman{
    background-color: rgb(255 140 173);
    border-radius: 14px;
    padding: 5px;
}
#Information .name_man{
    background-color: rgb(37 190 229);
    border-radius: 14px;
    padding: 5px;
}
#Information div img{
    width: 50px;
    margin-left: 5px;
}
#Information .line:nth-child(1){
    position: relative;
    bottom: 5px;
}