/* reset-css
---------------------------------------------- */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&family=Roboto:wght@300;400;500&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, 
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-weight: normal;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


html {
    font-size: 62.5%;
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    box-sizing: border-box; 
}

a,
a:visited {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    border: none;
    height: auto;
}

.clearfix:after{
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}




article{
  text-align: center;
  line-height: 2.4rem;
}
.w-shadow{
  background: #FFFFFF;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.15);
}
.textbox{
  padding: 5.4rem;
  line-height: 2.6rem;
}

.textbox p{
  margin-top: 2rem;
  color: #535353;
}

h1, h3, h4{
  color: #333;
  letter-spacing: 0.2rem;
}

h1{ font-size: 3.6rem;}

h3{
  font-size: 2.4rem;
  line-height: 3.2rem;
}

h4{
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 6rem;
}
.line-center{
  content: '';
  width: 40px;
  height: 2px;
  background: #C80000;
  display: inline-block;
  position: relative;
  margin-top:3rem;
}

.line-vertical{
  width: 1px;
  height: 100px;
  border-radius: 5px;
  background: #5B9335;
  display: block;
  margin: 4rem auto;
}
    
.link-red,
.link-red:visited{
  color: #C80000;
  cursor: pointer;
}


/* ---- slider style type ---- */
.slider-single{
  width: 58%;
}


.slider-group{
  position: relative;
  width: 70%;
  margin: 4rem 10% 4rem auto;
}
.slider-group .carousel-cell{
  width: 28%;
  overflow: hidden;
}
.slider-cover{
  background: #F4F4F4;
  position: absolute;
  width: 14%;
  right: 0;
  height: 100%;
  z-index: 10;
}

#part-company .slider-cover{
  background: #fff;
}

.slider-group .carousel{
  position: relative;
  z-index: 5;
}
.slider-group .flickity-prev-next-button.previous{
  right: 19%;
  left: auto;
}
.slider-group .flickity-prev-next-button.next{
  right: 14%;
  left: auto;
}

.slider-single_02{
  width: 65%;
  float: right;
}
.slider-single_02 .carousel-cell{
  width: 75%;
}

.carousel-cell-image {
  display: block;
  max-height: 100%;
  margin: 0 auto;
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
          transition: opacity 0.4s;
}

.carousel.is-fullscreen .carousel-cell {
  height: 100%;
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

/*----form------*/

#contact {
  width: 20%;
  min-width: 300px;
  margin: 0 auto;
  text-align: center;
}

#contact i{
  margin:2rem;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="tel"],
#contact select,
#contact option {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact option,
#contact select{
  color: #4f4f4f;
}
#contact select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-bottom: 1rem;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23727272" viewBox="0 0 20 20"><path d="M5 8l6 6 6-6z"/></svg>') right 0.5rem center no-repeat;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}

#contact input[type="text"]:hover,
#contact input[type="tel"]:hover,
#contact select:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 60%;
  border: none;
  background: #333333;
  color: #FFF;
  margin: 4rem;
  padding: 1rem;
}

#contact button[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact select:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}


/*---popup-----*/
.fancybox-content{ background: #000; opacity: 0.9; }
.fancybox-button{
    border: 1px solid #fff;
    margin: 6vh 5%;
    color: #fff;
}
.fancybox-button svg,
.popupcontent,
.popupcontent h3 { color: #fff; }
.popupcontent{
  width: 80%;
  margin: 6vh auto 0 auto;
}
.popupcontent h3{
  text-align: center;
  margin-bottom: 4rem;
}
.popupcontent p{
  margin: 4rem auto;
}


/*  layout  */

#logo{
  text-align: left;
  height: 100px;
  padding: 0 65px;
}

#logo div{
  margin-top: 22px;
  width: 136px;
  height: auto;
}

#kv{
  position: relative;
  width: 94%;
  margin:0 auto;
  height: 520px;
  background: url(../img/kv-bg.jpg) no-repeat;
  background-size: cover;
}

#kv-main{
  position: absolute;
  left: 13%;
  top: 40px;
  color: #eaeaea;
  font-size: 1.6rem;
}

#kv-main span{ padding-left: 16px;}
#kv-title img{float: left; padding-right:20px;}
#kv-part2{ 
  position: relative;
  top: 450px;
  margin-left: 18%;
}

#kv-part2 .w-shadow{
  width: 40%;
  max-width: 400px;
  height: 150px;
  text-align: right;
  padding-top: 30px;
  padding-right: 30px;
  float: left;
}
#kv-part2 .w-shadow img{
  width: 60%;
  min-width: 160px;
  max-width: 200px;
}

#kv-text{
  float: left;
  width: 60%;
  padding-left: 4.5%;
}

#kv-text h3{
  color: #fff;
  font-size: 18px;
  height: 54px;
  margin-top: 26px;
}
#kv-text h3 span{
  color: #4F4F4F;
  font-weight: 300;
}
#kv-text p{
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.2rem;
}
#kv-text p span{ color: #5B9335; }

#part-view{
  /*margin-top: 280px;*/
  text-align: center;
}

#part-view h1{
  margin-top: 6rem;
  margin-bottom: 2rem;
  text-align: center;
}
#part-view .line-center{
    margin-top: 0!important;
    margin-bottom: 4rem;
 }

#part-city{
  position: relative;
  margin: 20rem 7%;
  z-index: 5;
}

#part-designer{
  position: relative;
  z-index: 4;
  margin-top: -320px;
}

.section_01{
  background: #fff;
  height: 540px;
  position: relative;
}


#title-designer { 
  padding: 0 7%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#title-performance {
    padding: 0 7%;
    position: relative;
    /*bottom: 0;*/
    width: 100%;
    padding: 8rem 7% 4rem 7%;
}

.performance-slider{
    position: relative;
    margin: 10rem 7%;
    z-index: 5;
}

.performance-slider .carousel-cell{
  display: flex;
}
.performance-slider .carousel-cell > div{
  width: 50%;
}
.performance-info,.team-info{
  padding: 1rem 3%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
#team-info{
  /*position: relative;*/
  /*background: #fff;*/
  /*padding-bottom: 1rem;*/
}
#team-info .performance-slider{
  margin: 5rem 7%;
}
.performance-info p,.team-info p{
  font-size: 2.5rem;
  line-height: 1.5em;
  font-weight: 500;
}
.performance-info span,.team-info span{
  margin-top: .5em;
  font-size: 1.5rem;
  line-height: 1.5em;
}
#title-performance h1{
  font-weight: 500;
}
.city_L{
    position: relative;
    top: 2rem;
    z-index: 10;

}
.city_L h1{
  margin-top: 6rem;
  margin-bottom: 2rem;
}
.city_L h3{
  margin-bottom: 2rem;
}
.city_R{
  position: absolute;
  width: 45%;
  top:0;
  right: 0;
  z-index: 11;
}

.city_R .w-shadow{
  margin-top: 4rem;
  text-align: center;
}

#title-designer h1{ font-weight: 500;s}
#title-designer h1 span{
  display: block;
  color: #828282;
  font-size: 2.4rem;
}
#title-designer .line-center{
  float: left;
  margin-top: 1.5rem;
  margin-right: 2rem;
}
#title-designer h3{ padding: 2rem 0 4rem 13%;}
#designer-slogan{ background: #333; color: #fff; height: 560px;}
#designer-img{
    width: 50%;
    min-height: 100%;
    float: left;
    background: url(../img/designer.jpg) center center no-repeat;
    background-size: cover;
}
.slide-team{
  padding-bottom: 2rem;
}
.slide-team .carousel-cell{
  flex-direction: row-reverse;
}

#title-team{
    position: relative;
    width: 100%;
    padding: 8rem 7% 1rem 7%;
}
.text-slogan{
  padding: 2.5rem 3%;
  width: 50%;
  float: right;
  text-align: center;
  font-size: 2.4rem;
}
.text-slogan p{
  text-align: left;
  font-weight: 300;
}
.text-slogan span{
  text-align: left;
  display: block;
  font-size: 1.3rem;
  color: #828282;
}
.text-slogan .line-center{
  width: 100px;
  margin-bottom: 3rem;
}

#part-company{
  position: relative;
  margin-top: 14rem;
  background: #fff;
  padding: 6rem 0 0 0;
}

#jut-info h1{
  position: absolute;
  left: 15%;
  width: 2rem;
  top: 12rem;
  line-height: 5rem;
}

#part-company article, 
#part-yongpei article
{
  position: relative;
  text-align: left;
  z-index: 20;
  padding: 4rem 5rem;
  min-height: 220px;
}

#part-company article{
  width: 40%;
  margin: -9rem auto;
}

#jut-info{
  padding-bottom: 14rem;
}

#jut-info .line-center, #part-yongpei .line-center{
  margin-right: 2rem;
    margin-bottom: 1rem;
}

#jut-info h3{
  height: 6.8rem;
}

#jut-info_02 {
  position: relative;
  margin: 10rem 7%;
  z-index: 5;
}

#jut-info_02 h1{
  line-height: 5rem;
}

#jut-info_02 .city_R{
 text-align: center;
 width: 38%;
}

#jut-info_02 .city_L{
  top: 12rem;
}

#part-yongpei{
  position: relative;
  margin-top: 28rem;
  margin-bottom: 14rem;
}

.box-L{
  width: 30%;
    position: absolute;
    z-index: 20;
    left: 11%;
    top: 22%;
}

.box-L h1{
  margin-bottom:1rem;
  margin-left: 12%;
}
.box-L h3{
  height: 6.8rem;
}

.build-table{
  color: #fff;
  background: url(../img/bg-table.jpg) no-repeat;
  background-size: cover;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 14rem 0 20rem 0;
}

.build-table table{ margin: 0 auto;}
.build-table tr{ border-bottom: 1px solid #5f5f5f;}
.build-table tr:last-child { border: none;}
.build-table td{ padding: 2rem; font-weight: 300;}

#build-info{position: relative;}
.build-table{position: relative; z-index: 5;}
.build-map{
  position: relative; z-index: 10; width: 60%;
  margin: -12rem auto;
}
.build-form{
  margin-top:12rem;
  padding:14rem 0;
}

#reception-center{position: relative;}

#reception-center h1{text-align: center;margin-bottom: 1.5em;margin-top: 1.5em;}
#reception-center .carousel-cell img{width: 100%;transform: translate(0%,0%);display: block;}
#reception-center .carousel-cell{display: block;width: 100%;}
.footer-fix{
  display: none;
  position: fixed;
  background: #000;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  z-index: 100;
  bottom: 0;
}

.footer-fix ul{display: inline-block; margin:2rem auto;}
.footer-fix li{
  float: left;
  padding: 0.4rem;
}
.footer-fix a{
  border: 1px solid #828282;
  padding:10px;
  color: #F2F2F2;
}
.footer-fix a:hover{
  background: #464646;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.footer-fix a:foucs{
  background: none;
}

.phone,
.map,
.fb{
    display: inline-block;
    height: 15px;    
    margin-right: 0.6rem;
}
.phone{
  width: 10px;
  background: url(../img/icon-phone.svg) no-repeat;
      background-size: 100%;
    background-position-y: bottom;
}
.map{
  width: 15px;
  background: url(../img/icon-map.svg) no-repeat;
      background-size: 100%;
    background-position-y: bottom;
}
.fb{
  width: 15px;
  background: url(../img/icon-fb.svg) no-repeat;
  background-size: 100%;
  background-position-y: bottom;
}

.xs-show{
  display: none;
}
.xs-hidden{
  display: block;
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
    body {
        /*min-width: 1200px;*/
        width: 100%;
        overflow: initial;
    }
    
  }
@media screen and (max-width: 768px) {
  .xs-hidden{
    display: none;
  }
  .xs-show{
    display: block;
  }
  h1{font-size: 3.2rem}
  h3 {font-size: 2.2rem}
  .textbox{padding: 12vh 5.4rem;}
  .line-vertical{
    margin: 2vh auto;
    height: 10vh;
  }

  .slider-single{
    width: 100%;
  }
  .flickity-button{ background: none;}
  .flickity-prev-next-button.previou,
  .flickity-prev-next-button.next{
    /*background: none;*/
  }
  .flickity-prev-next-button.previous{right: 6rem; left: auto;}
  .flickity-prev-next-button.next{right: 2.2rem; left: auto;}
  .flickity-prev-next-button{
    width: 3rem;
    height: 3rem;
    bottom: -6.5vh;
  }
  .carousel-status{
    text-align: right;
    margin-right: 26%;
    margin-top: 2vh;
    font-size: 1.2rem;
  }



  #contact {
    width: 78%;
  }
  #contact h3{ font-size: 2.4rem; }
  #contact input[type="text"], 
  #contact input[type="tel"], 
  #contact select, 
  #contact option {
    padding: 1.2rem;
    margin: 0 0 1vh;
  }



  #logo{
    height: 9vh;
    padding: 0 6%;
  }

  #logo div {
    float: right;
    margin-top: 1.6rem;
    width: 28%;
  }

  #kv{
    width: 90%;
    height: 70vh;
    background: url(../img/kv-bg_sp.jpg) no-repeat;
    background-size: cover;
  }
  #kv-main {
    left: 0;
    font-size: 1.4rem;
    top: 8vh;
    padding: 0 6%;
  }
  #kv-main span {
    padding: 0;
    display: block;
  }
  #kv-title{
    float: right;
    width: 68%;
    margin-top: 3vh;
    color: #E0E0E0;
    font-weight: 300;
  }
  #kv-title p{
    font-size: 1.3rem;
    float: right;
  }
  #kv-title img {
    float: left;
    padding-right: 0.8rem;
    width: 16%;
}
  #kv-part2{
    margin-left: -5%;
    top: 58vh;
  }
  #kv-part2 .w-shadow{
    height: 15vh;
    padding-top: 2.6vh;
    width: 58%;
    padding-right: 5%;
  }

  #kv-part2 .w-shadow img{
    min-width: 166px;
    height: 100%;
    padding-bottom: 1rem;
  }
  #kv-text{
    height: 11vh;
    margin-top: 3vh;
    width: 42%;
    float: right;
    background: #333;
  }
  #kv-text h3{
    font-size: 1.2rem;
    line-height: 2rem;
    letter-spacing: normal;
    font-weight: 300;
    color: #BDBDBD;
    height: auto;
    margin-top: 1.6vh;
  }
  #kv-text_s{
    line-height: 2.4rem;
    text-align: center;
    margin-top: 7vh;
    font-weight: 500;
  }
  #kv-text_s span{
    color: #5B9335;
  }

  #part-view{
    /*margin-top: 14vh;*/
  }
  #part-city { 
    width: 100%;
    margin: 14vh 0 0 0;
  }
  .city-kv{
    position: absolute;
    z-index: 5;
    top: 23.5vh;
    width: 52%;
    right: 0%;
  }
  .city_L{ top:0; z-index: 20;}
  .city_L h1{ margin: 0 7% 3vh 7%;}
  .city_L h3{ margin: 0 7% 3vh 7%;}
  .city_R{
    position: relative;
    width: 100%;
    margin-top: -11vh;
    top: 0;
    background: #fff;
  }
  .city_R .w-shadow{
    box-shadow: none;
  }

  #part-designer{ margin-top: 9vh;}
  #part-designer .section_01{ background: none; height: auto;}
  #part-designer article{margin:0 7% 3vh 7%;}
  #title-designer{ position: relative; padding-bottom: 3vh;}
  #title-designer h1 {
    font-weight: 500;
    font-size: 2.8rem;
    letter-spacing: normal;
  }
  #title-designer h1 span{ font-size: 1.6rem;letter-spacing: 0.2rem;}
  #title-designer .line-center {
    margin-top: 2vh;
    margin-bottom: 1.5vh;
    margin-right: 0;
    display: block;
    float: none;
  }
  #title-designer h3{padding: 0; letter-spacing: normal;}
  #designer-slogan{ 
    position: relative;
    background: none; 
    height: auto; 
  }
  #designer-img{
    width: 100%;
    height: 32vh;
    float: none;
  }
  .text-slogan{
    background: #333;
    width: 90%;
    float: none;
    margin: 0 auto;
    position: relative;
    margin-top: -4vh;
    padding: 3vh 5%;
  }
  .text-slogan p{
    font-size: 2rem;
  }
  .text-slogan span{
    /*margin-top: 2.5vh;*/
    font-size: 1rem;
  }

  #part-company {
    margin-top: 10vh;
    padding: 0;
  }
  #jut-info h1{
    position: relative;
    padding: 4vh 7% 0 7%;
    width: 100%;
    left: 0;
    top: 0;
  }
  #part-company article{
    width: 84%;
    margin: 2vh auto;
  }

  #part-company article, 
  #part-yongpei article{
    padding: 3vh 7% 7vh 7%;
  }
  #jut-info .line-center, 
  #part-yongpei .line-center{
    display: block;
    margin-top: 1vh;
    margin-bottom: 2vh;
   }
   .box-L h1{
    margin-left: 0;
   }
  #jut-info{padding-bottom:0; }
  #jut-info h3{ letter-spacing: 0;s }
  #jut-info .slider-single{ margin-top: -4vh; }
  #jut-info_02{ margin: 22vh 0 0 0; padding-bottom: 11vh;}
  #jut-info_02 .city_L{top:3vh;}
  #jut-info_02 .city_R{width: 100%; padding:0 8%;}
  #jut-info_02 .textbox{padding: 0;}

  #part-yongpei{margin-top: 0;}
  #part-yongpei .box-L{
    margin-top: 0;
    margin-bottom: 14rem;
    position: relative;
    width: 80%;
    left: 0;
    top: 0;
    margin: 8vh auto -3vh auto;
  }

  .build-table{padding: 8vh 0 22vh 0;}
  .build-table table {width: 80%;}
  .build-table td{font-size: 1.4rem; padding: 1.8rem;}
  .build-table td:first-child{width: 35%;}
  .build-table td:last-child{width: 65%;}
  .build-map{width: 80%;}
  .build-form{margin-top: 6vh;}

  footer{
    /*display: none;*/
  }
  footer span{
    /*display: none;*/
  }
  .phone{
    width: 15px;
  }
  .phone,
  .map,
  .fb{
      background-size: contain;
      margin-right: 0;
  }

  #popup {
    left: 0;
    width: 76%;
    width: 100%;
    padding: 10%;
    top: 4vh;
    font-size: 1.2rem;
  }
  #popupclose {
    padding: 0.5rem;
    width: 4rem;
    height: 4rem;
  }
  .popupcontrols {
    right: 6%;
    top: 0;
  }
  .popupcontent h3 {
    margin:0;
  }
  .popupcontent p{
    margin: 2rem auto;
  }
  #title-performance{
    padding: 8rem 7% 1rem 7%;
  }
  .performance-slider,#team-info .performance-slider{
    margin: 2rem 0;
  }
  .performance-slider .carousel-cell{
    flex-direction: column;
  }
  .performance-slider .carousel-cell > div{
    width: 100%;
  }
  .performance-info{
    /*padding: 1rem 0;*/
  }
  .performance-info p{
    font-size: 1.8rem;
  }
  .popupcontent h3{font-size: 24px;margin-bottom: 1em;}
  .fancybox-content{padding: 10vw 0vw;}
  .popupcontent{width: 90%;}
}


html,body{background: #000;}
main{
  width: 100%;
  height: 100dvh;
}
/*kv*/
    .kv{
        background: #000;
        height: 100dvh;
/*        height: auto; */
        min-height: initial;
    /*     background: url(../images/kv-bg.jpg); */
        display: flex;
        justify-content: center;align-items: center;
    }
    .kv-video{
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    #videoContainer{
        padding-top: 45%;
        position: relative;
        width: 100%;
        height: 100%;
    }
    .kv-video video{width: 100%;height: 100%;position: absolute;left: 0;top: 0;}

    @media screen and (max-width: 768px) {
      .kv-video video{width: auto;left: 50%;transform: translateX(-50%);}
    } 