@charset "utf-8";
.ab_t{
    color: #000;
    font-size: 24px;
    letter-spacing: 8px;
    line-height: 1.5;
}
.ab_txt{
        color: #444;
        font-size: 15px;
        letter-spacing: 2px;
        margin: 0;
}
.s_ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.s_ul .s_li{
    display: flex;
    align-items: center;
    font-size: 24px;
    letter-spacing: 0.1em;
}
.s_ul .s_li span{
    font-family: "Atkinson Hyperlegible Next", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 8px;
}
@media (max-width: 1000px) {
    .s_ul {
        list-style-type: none;
        margin: 0 auto;
        padding: 0;
        max-width: 480px;
    }
    .s_ul .s_li{
        font-size: 20px;
    }
}
/*------------ about-editor ------------*/
.about_section {
}

.about_container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.about_container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 40px; */
  max-width: 1200px;
  margin: 72px auto 0;
}
.about_image {
    flex: 0 0 auto; /* 不要自動拉伸或壓縮，大小由圖片決定 */
}

.about_image img {
  width: 100%;
  height: auto;
  display: block;
}
.about_content {
flex: 1 1 0; /* 剩下空間全給內容 */
  min-width: 280px;
}
.about_subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.about_content .title{
    position: relative;
    margin: 0 0 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
}
.about_content .title:before{
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background: #216395;
    margin: 24px 0 0 0;
    visibility: visible;
}
.about_content .title span{
    color: #6CAB52;
    font-size: 54px;
    text-align: left;
    line-height: 0.8;
    letter-spacing: 0;
    font-weight: 700;
    font-family: "Atkinson Hyperlegible Next", serif;
    display: block;
    margin: 16px 0 0 0;
}
.about_content .title span:first-letter{
    color: #479987;
}
.about_content .title h2{
    color: #535353;
    font-size: 22px;
    text-align: left;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    display: block;
    margin: 0;
}
.ab_txt {
    background: #fff;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    box-sizing: border-box;
    padding: 40px 0 0;
}
.about_highlight {
  margin: 0 auto 24px;
  text-align: center;
}

.about_highlight .t1 {
  font-size: 22px;
  color: #535353;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 24px;
}

.about_highlight .t2 {
  font-size: 54px;
  font-weight: 700;
  color: #479987; /* 強調綠色 */
  line-height: 1.1;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}
.about_highlight .t2:after{
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background: #216395;
    margin: 24px auto 0;
    visibility: visible;
}
.about_highlight .t2 span{
    display: block;
    color: #6CAB52;
}
.ab_txt2{
    color: #525252;
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
}
/* RWD 手機版調整 */
@media (max-width: 1200px) {
    .about_container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    .about_content {
        margin-top: 20px;
        width: 100%;
    }
    .ab_txt{
        margin:0 auto;
        padding:40px;
        border:1px solid #eee;
    }
    .about_content .title{
        align-items:center;
    }
    .about_highlight .t1{
        letter-spacing:8px;
    }
    .about_highlight .t2,
    .about_content .title span{
        font-size:40px;
    }
}

/* service_area */
.card_section {
}

.card_container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 -15px;
  flex-wrap: wrap;
}

.card_item {
  flex: 0 0 calc(20% - 16px); /* 五等分 */
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  padding: 72px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card_item:hover {
  /*transform: translateY(-5px);*/
}
.card_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.card_item:hover .card_img img{
    transform: scale(1.2);
}
.card_title {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 600;
  color: #545454;
  margin: 40px auto 0;
  transition: all .3s;
}
.card_title:hover {
  color: #489988;
}
.card_title:after{
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background: #216395;
    margin: 24px auto 0;
    visibility: visible;
    transition: all .3s;
}
.card_item:hover .card_title:after{
    width: 160px;
}
.card_link {
  display: inline-block;
  font-size: 14px;
  color: #4ba85f;
  text-decoration: none;
  border-bottom: 1px solid #4ba85f;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.card_link:hover {
  color: #2d6d3a;
}
.card_item .index_more{
    margin: 38px auto 0;
}
/* -------- RWD -------- */
@media (max-width: 1000px) {
    .card_container{
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
  .card_item {
    flex: 0 0 calc(50% - 40px); /* 兩欄 */
  }
}

@media (max-width: 480px) {
  .card_item {
    flex: 1 1 100%; /* 單欄直排 */
  }
}

/* RWD */
@media (max-width: 1024px) {
  .service_item {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 640px) {
  .service_item {
    flex: 1 1 100%;
  }
}
/*footer*/
.ic_phone{
    font-size: 20px;
    color: #444444;
    margin: -9px 15px 0 0;
    display: inline-block;
    vertical-align: middle;
}
.ic_phone:before{
    content: "\e1050";
    font-family: 'icon-font2' !important;
}
.ic_mail{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -20px;
}
.ic_fax{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -40px;
}
.ic_add{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -60px;
}
.site-info .ic-phone{
    font-size: 20px;
    width: 20px;
    color: #489988;
    margin-right: 12px;
    position: relative;
    display: inline-block;
}
.site-info .ic-envelope{
    font-size: 18px;
    width: 20px;
    color: #489988;
    margin-right: 12px;
    position: relative;
    display: inline-block;
}
.site-info .ic-fax{
    font-size: 18px;
    width: 20px;
    color: #489988;
    margin-right: 12px;
    position: relative;
    display: inline-block;
}
.site-info .ic-map-marker{
    font-size: 21px;
    width: 20px;
    color: #489988;
    margin-right: 12px;
    text-align: center;
    position: relative;
    display: inline-block;
}
.ft_div{
    flex-shrink: 0;
}
/*------------ about-editor ------------*/
/*------------ about-editor ------------*/
.about-editor .title{
    font-size: 50px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
}
.about-editor td{
    vertical-align: top;
}
.about-editor .pic2{
    padding: 0 0 0 40px;
    width: 424px;
    position: relative;
    top: 0px;
}
/*------------ service-editor ------------*/
/*------------ contact-editor ------------*/
.contact-map iframe{
    border: 10px solid#fff;
    width: 100%;
    box-sizing: border-box;
    height: 300px;
    margin: 0px 0 20px;
}
.contact-editor{
    text-align: center;
    margin: 5px 0;
}
.contact-editor .row{
    display: table;
    width: 100%;
    table-layout: fixed;
    border: 0;
}
.contact-editor .col{
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    position: relative;
}
.contact-editor .col + .col:before{
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background: #bbbbbb;
}
.contact-info-txt{
    max-width: 200px;
    margin: 0 auto;
}
.contact-info-txt .img-ic{
    display: inline-block;
    margin-bottom: 20px;
}
.contact-info-txt a:hover{
    color: #a4a4a4;
    text-decoration: underline;
}
.info-icon-box{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
    background: linear-gradient(to right, rgba(33,99,149,1) 0%,rgba(108,171,82,1) 100%);
    color: #fff;
}
.contact-info-txt .info-icon-box [class^="ic-"] {
    font-size: 18px;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    font-size: 15px;
    line-height: 2;
    /*max-width: 1045px;*/
    margin: 0 auto;
}
.terms-editor .title:before{
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}
.terms-editor .title{
    color: #6CAB52;
    font-size: 16px;
    margin: 0;
}
.terms-editor p{
    text-indent: 0em;
    margin: 0 0 50px;
}
.terms-editor .row{
    margin: 0 -27px;
}
.terms-editor .col{
    padding: 0 27px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){
    .about-editor .row_2 .txt_box{
        padding:50px 90px 50px 50px;
    }
}
@media screen and (max-width: 1000px){
    .about-editor .tb01 td,
    .about-editor .tb02 td,
    .service-table td,
    .service-table .pic{
        width: 100%;
        float: left;
        padding: 0;
        box-sizing: border-box;
    }
    .about-editor .pic2{
        top: 0;
    }
    .contact-editor .row,
    .contact-editor .col{
        display: block;
        width: auto;
    }
    .contact-editor .col{
        padding: 15px 0;
    }
    .contact-map iframe{
        border: 5px solid#fff;
        height: 200px;
        margin: 0px;
    }
    .contact-editor .col + .col:before {
        height: 1px;
        width: 100%;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
    .contact-map{
        height: 200px;
    }
}
