@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
menu,
nav,
main,
aside,
article,
p,
a,
ul,
ol,
li,
table,
tr,
td,
th,
input,
button,
form,
img,
div,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  list-style: none;
  text-decoration: none;
  font-family: "Times New Roman", "Noto Sans TC", "微軟正黑體";
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  /* 標準屬性 */
  -webkit-text-size-adjust: 100%;
  /* Safari/Chrome */
  -moz-text-size-adjust: 100%;
  /* Firefox Android */
  -ms-text-size-adjust: 100%;
  /* 舊 IE/Edge */
}

html,
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  /* iOS、Android 禁止自動字體縮放 */
}

.blank {
  min-height: 100vh;
  /* 滿版高度 */
  display: flex;
  flex-direction: column;
}

img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

main,
section {
  width: 100%;
  flex: 1;
  /* 撐開內容區 */
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h6 {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: 0;
}

a.line {
  text-decoration: underline;
  font-weight: 700;
}

a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}

a:hover {
  color: #d1ceca;
}

:root {
  --color1: #324158;
  --color2: #0f1a2d;
  --color3: #d1ceca;
}

.title-center {
  margin: 30px 0;
  text-align: center;
  padding: 0 10px;
}
.title-center img {
  width: auto;
  align-items: center;
  max-height: 40px;
}
.title-center h3,
.title-center h4,
.title-center h5 {
  margin: 10px 0;
  color: #324158;
}
.title-center h3 {
  font-size: 35px;
  font-weight: 800;
  color: #324158;
}
.title-center p {
  margin: 10px 0;
  color: #324158;
  letter-spacing: 5px;
  margin-bottom: 20px;
  vertical-align: top;
}
.title-center p .bar {
  position: relative;
  top: -2px;
}

.link-btn {
  width: 10em;
  height: auto;
  font-size: 14px;
  display: flex;
  padding: 15px 0;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.5;
  cursor: pointer;
  color: #324158;
  border: 1px solid #000;
}
.link-btn img {
  width: auto;
  height: 20px;
}
.link-btn i {
  padding-left: 15px;
  line-height: 1.5;
}

.link-btn:hover {
  color: #fff;
  background-color: #324158;
}

.link-btn-left {
  text-align: left;
  justify-content: start;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 30px auto;
  text-align: center;
  padding: 20px 0;
}
.pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pagination ul li {
  display: inline;
}
.pagination ul a {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #303030;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5;
}
.pagination ul a.active {
  background-color: #324158;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #324158;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/top-pic.jpg);
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 30px 0;
  row-gap: 20px;
}
.topBox h3 {
  color: #fff;
  font-weight: 700;
}
.topBox section {
  flex: none;
}

.container nav {
  text-align: center;
}
.container nav .breadcrumb {
  justify-content: center;
  margin: 0;
  color: #d3d3d3;
}
.container nav .breadcrumb .breadcrumb-item a {
  font-size: 14px;
}
.container nav .breadcrumb .breadcrumb-item.active a {
  color: #d3d3d3;
}

.breadcrumbRight {
  padding: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #00a3ad;
}
.breadcrumbRight .breadcrumb {
  margin: 0;
  text-align: end;
}

hr {
  opacity: 1;
  border: 1px solid #708293;
}

.articlecontent {
  margin: 0 auto;
  padding: 10px 20px 35px;
  max-width: 900px;
}
.articlecontent img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.articlecontent iframe {
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 992px) {
  .articlecontent {
    padding: 40px;
  }
  .articlecontent img {
    max-width: 1000px !important;
    max-height: 100% !important;
  }
  .articlecontent iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 360px) {
  body {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 361px) {
  body {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .grid-sm-1 {
    width: 8.3333333333%;
  }
  .grid-sm-2 {
    width: 16.6666666667%;
  }
  .grid-sm-3 {
    width: 25%;
  }
  .grid-sm-4 {
    width: 33.3333333333%;
  }
  .grid-sm-5 {
    width: 41.6666666667%;
  }
  .grid-sm-6 {
    width: 50%;
  }
  .grid-sm-7 {
    width: 58.3333333333%;
  }
  .grid-sm-8 {
    width: 66.6666666667%;
  }
  .grid-sm-9 {
    width: 75%;
  }
  .grid-sm-10 {
    width: 83.3333333333%;
  }
  .grid-sm-11 {
    width: 91.6666666667%;
  }
  .grid-sm-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-1 {
    width: 8.3333333333%;
  }
  .grid-2 {
    width: 16.6666666667%;
  }
  .grid-3 {
    width: 25%;
  }
  .grid-4 {
    width: 33.3333333333%;
  }
  .grid-5 {
    width: 41.6666666667%;
  }
  .grid-6 {
    width: 50%;
  }
  .grid-7 {
    width: 58.3333333333%;
  }
  .grid-8 {
    width: 66.6666666667%;
  }
  .grid-9 {
    width: 75%;
  }
  .grid-10 {
    width: 83.3333333333%;
  }
  .grid-11 {
    width: 91.6666666667%;
  }
  .grid-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid-md-1 {
    width: 8.3333333333%;
  }
  .grid-md-2 {
    width: 16.6666666667%;
  }
  .grid-md-3 {
    width: 25%;
  }
  .grid-md-4 {
    width: 33.3333333333%;
  }
  .grid-md-5 {
    width: 41.6666666667%;
  }
  .grid-md-6 {
    width: 50%;
  }
  .grid-md-7 {
    width: 58.3333333333%;
  }
  .grid-md-8 {
    width: 66.6666666667%;
  }
  .grid-md-9 {
    width: 75%;
  }
  .grid-md-10 {
    width: 83.3333333333%;
  }
  .grid-md-11 {
    width: 91.6666666667%;
  }
  .grid-md-12 {
    width: 100%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  .title-center img {
    max-height: 50px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    height: 250px;
  }
  .topBox h2 {
    font-size: 35px;
  }
  body {
    padding-top: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .grid-lg-1 {
    width: 8.3333333333%;
  }
  .grid-lg-2 {
    width: 16.6666666667%;
  }
  .grid-lg-3 {
    width: 25%;
  }
  .grid-lg-4 {
    width: 33.3333333333%;
  }
  .grid-lg-5 {
    width: 41.6666666667%;
  }
  .grid-lg-6 {
    width: 50%;
  }
  .grid-lg-7 {
    width: 58.3333333333%;
  }
  .grid-lg-8 {
    width: 66.6666666667%;
  }
  .grid-lg-9 {
    width: 75%;
  }
  .grid-lg-10 {
    width: 83.3333333333%;
  }
  .grid-lg-11 {
    width: 91.6666666667%;
  }
  .grid-lg-12 {
    width: 100%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .breadcrumbRight .breadcrumb {
    padding-left: 0;
  }
  .link-btn {
    font-size: 18px;
  }
  .topBox {
    height: 350px;
  }
  .topBox h3 {
    font-size: 30px;
  }
  body {
    padding-top: 80px;
  }
  .title-center h3 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) {
  .grid-xl-1 {
    width: 8.3333333333%;
  }
  .grid-xl-2 {
    width: 16.6666666667%;
  }
  .grid-xl-3 {
    width: 25%;
  }
  .grid-xl-4 {
    width: 33.3333333333%;
  }
  .grid-xl-5 {
    width: 41.6666666667%;
  }
  .grid-xl-6 {
    width: 50%;
  }
  .grid-xl-7 {
    width: 58.3333333333%;
  }
  .grid-xl-8 {
    width: 66.6666666667%;
  }
  .grid-xl-9 {
    width: 75%;
  }
  .grid-xl-10 {
    width: 83.3333333333%;
  }
  .grid-xl-11 {
    width: 91.6666666667%;
  }
  .grid-xl-12 {
    width: 100%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  body {
    padding-top: 80px;
  }
  .title-center img {
    max-height: 65px;
  }
}
@media only screen and (min-width: 1700px) {
  body {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1900px) {
  .grid-xxl-1 {
    width: 8.3333333333%;
  }
  .grid-xxl-2 {
    width: 16.6666666667%;
  }
  .grid-xxl-3 {
    width: 25%;
  }
  .grid-xxl-4 {
    width: 33.3333333333%;
  }
  .grid-xxl-5 {
    width: 41.6666666667%;
  }
  .grid-xxl-6 {
    width: 50%;
  }
  .grid-xxl-7 {
    width: 58.3333333333%;
  }
  .grid-xxl-8 {
    width: 66.6666666667%;
  }
  .grid-xxl-9 {
    width: 75%;
  }
  .grid-xxl-10 {
    width: 83.3333333333%;
  }
  .grid-xxl-11 {
    width: 91.6666666667%;
  }
  .grid-xxl-12 {
    width: 100%;
  }
}
div.carouselSlide .carousel-indicators {
  margin-bottom: 0;
}
div.carouselSlide .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
div.carouselSlide .carousel-control-prev-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}
div.carouselSlide .carousel {
  position: relative;
}
div.carouselSlide .carousel-text {
  width: 100%;
  position: absolute;
  display: flex;
  text-align: center;
  justify-content: center;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
div.carouselSlide .carousel-text .link-btn {
  width: 8em;
  border-radius: 30px;
  border: 1px solid #c586a4;
  background-color: #fff;
  color: #c586a4;
  padding: 8px 0;
  margin-bottom: 0;
}
div.carouselSlide .carousel-text .link-btn:hover {
  color: #fff;
  background-color: #c586a4;
}

main .caseSec .rowBox {
  display: flex;
  flex-wrap: wrap;
  /* ======= 主遮罩：#324158 → 透明 ======= */
  /* hover 時漸層往左填滿整個 picBox */
}
main .caseSec .rowBox .picBox {
  position: relative;
  overflow: hidden;
  /* 讓遮罩不超出範圍 */
  display: inline-block;
  flex: 0 0 50%;
}
main .caseSec .rowBox .picBox h4 {
  position: absolute;
  top: 10%;
  right: 15%;
  color: #fff;
  letter-spacing: 5px;
  writing-mode: vertical-rl;
  z-index: 2;
}
main .caseSec .rowBox .picBox .case-title {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 8%;
  z-index: 2;
}
main .caseSec .rowBox .picBox p {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  /* 文字要在上層 */
  color: #000;
  display: inline-block;
  font-weight: 500;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  padding: 15px 25px;
}
main .caseSec .rowBox .picBox p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none;
  /* ✅ 不擋滑鼠、也不擋字 */
  z-index: -1;
}
main .caseSec .rowBox .picBox::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  /* 預設覆蓋一半 */
  height: 100%;
  background: linear-gradient(to left, #000, transparent);
  transition: width 0.8s ease;
  /* hover 動畫 */
  z-index: 1;
  /* 在圖片上，但在文字下 */
  pointer-events: none;
  /* ✅ 不擋滑鼠、也不擋字 */
}
main .caseSec .rowBox .picBox:hover::before {
  width: 100%;
}
main .serviceSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
main .serviceSec .rowBox .leftBox {
  padding: 30px 0;
  text-align: center;
}
main .serviceSec .rowBox .leftBox h3 {
  font-size: 35px;
  font-weight: 800;
  color: #324158;
}
main .serviceSec .rowBox .leftBox p {
  color: #324158;
  letter-spacing: 5px;
  margin-bottom: 20px;
  vertical-align: top;
}
main .serviceSec .rowBox .leftBox p .bar {
  position: relative;
  top: -2px;
}
main .serviceSec .rowBox .leftBox h6 {
  margin: 15px 0;
  font-weight: normal;
}
main .serviceSec .rowBox .leftBox .button-btn {
  display: flex;
  gap: 10px;
  justify-content: center;
}
main .serviceSec .rowBox .leftBox .button-btn .link-btn:hover img {
  content: url("../images/service-lineicon-w.png");
}
main .serviceSec .rowBox .rightBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 30px 0;
}
main .serviceSec .rowBox .rightBox .iconBox {
  text-align: center;
  flex: 0 0 33.3333333333%;
}
main .serviceSec .rowBox .rightBox .iconBox img {
  width: 40%;
}
main .serviceSec .rowBox .rightBox .iconBox p {
  margin-top: 15px;
}
main .parallaxSec {
  margin: 20px 0;
}
main .featureSec {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .featureSec .text-center img {
  width: 10%;
  max-width: 50px;
  margin-bottom: 30px;
}
main .featureSec .text-center h6 {
  color: #324158;
  font-weight: normal;
}
main .featureSec .rowBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 30px 0;
}
main .featureSec .rowBox .iconBox {
  flex: 0 0 50%;
  text-align: center;
  padding: 0 20px;
}
main .featureSec .rowBox .iconBox img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}
main .featureSec .rowBox .iconBox h6 {
  color: #0f1a2d;
  margin-bottom: 10px;
}
main .processSec {
  background-image: url(../images/process-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
}
main .processSec .text-center h3 {
  font-size: 35px;
  font-weight: 800;
  color: #324158;
}
main .processSec .text-center p {
  color: #324158;
  letter-spacing: 5px;
  margin-bottom: 20px;
  vertical-align: top;
}
main .processSec .text-center p .bar {
  position: relative;
  top: -2px;
}
main .processSec .rowBox {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
main .processSec .rowBox .iconBox {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
main .processSec .rowBox .iconBox img {
  width: 45%;
  margin-bottom: 25px;
  max-width: 120px;
  max-height: 110px;
}
main .processSec .rowBox .iconBox i {
  position: absolute;
  right: 5%;
  top: 20%;
  font-size: 40px;
  color: #324158;
}
main .processSec .link-btn {
  margin: 20px auto;
  align-items: center;
}
main .processSec .link-btn i {
  padding: 3px 8px;
  margin-right: 15px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  align-items: center;
}
main .processSec .link-btn:hover i {
  color: #0f1a2d;
}

.contactBottom {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  background-color: #324158;
}
.contactBottom .contLeft {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contactBottom .contLeft img {
  width: 60%;
  text-align: center;
  max-width: 230px;
  height: auto;
  margin: 10px 0 20px;
}
.contactBottom .contLeft .iconBox {
  color: #fff;
  display: flex;
  gap: 20px;
  align-items: center;
}
.contactBottom .contLeft .iconBox i {
  font-size: 30px;
}
.contactBottom .contCenter {
  justify-content: start;
  max-width: 350px;
}
.contactBottom .contCenter h6 {
  margin-bottom: 10px;
}
.contactBottom .contCenter p {
  line-height: 2em;
  margin: 5px 0;
  color: #fff;
}
.contactBottom .contCenter p span {
  display: inline-block;
  width: 2em;
  white-space: nowrap;
}
.contactBottom .contCenter p span i {
  display: inline-block;
  width: 1.2em;
  margin-right: 2px;
}
.contactBottom .contRight {
  display: flex;
  justify-content: center;
  max-width: 350px;
}

footer {
  line-height: 3;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background-color: #0f1a2d;
}

aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  right: 0;
  bottom: 15px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0.5em 0;
  width: 50px;
  border-radius: 10px;
  transform: scale(0.8);
  z-index: 999;
}
aside a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 10px 0;
}
aside .asideBottom {
  margin-top: 5px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
aside .asideBottom a {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
aside .asideBottom.hidden {
  opacity: 0;
  pointer-events: none;
}

main .aboutPage .contentBox .titleBox {
  margin: 0 auto 60px;
  max-width: 900px;
}
main .aboutPage .contentBox .titleBox .title-left {
  text-align: left;
  padding-left: 0;
}
main .aboutPage .contentBox .titleBox h6 {
  font-weight: normal;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content div {
  margin: 0 auto;
  text-align: center;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content h5 {
  color: #0f1a2d;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #fff;
  font-weight: normal;
}
main .aboutPage .contentBox .parallax .background-fixed-q__content h5 span {
  line-height: 4;
  font-style: italic;
  font-weight: 500;
}
main .aboutPage .contentBox .rowBox .textleftBox {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .aboutPage .contentBox .rowBox .textleftBox .textBox {
  padding: 70px 0;
}
main .aboutPage .contentBox .rowBox .textleftBox .textBox h5 {
  margin-bottom: 15px;
  color: #0f1a2d;
}
main .aboutPage .contentBox .rowBox .textleftBox .textBox ul {
  list-style-position: outside;
  padding-left: 20px;
}
main .aboutPage .contentBox .rowBox .textleftBox .textBox ul li {
  list-style-type: disc;
  padding-bottom: 8px;
  font-weight: normal;
  font-size: 14px;
}
main .aboutPage .contentBox .rowBox .textleftBox .imgBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .aboutPage .contentBox .rowBox .textleftBox .imgBox::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  display: inline-block;
  width: 90%;
  height: 90%;
}
main .aboutPage .contentBox .rowBox .textleftBox:last-of-type .textBox ul {
  padding-left: 0;
}
main .aboutPage .contentBox .rowBox .textleftBox:last-of-type .textBox ul li {
  list-style: none;
}
main .aboutPage .contentBox .rowBox .textleftBox:last-of-type .textBox ul li i {
  padding-right: 6px;
}
main .aboutPage .contentBox .picBox .title-center {
  padding: 60px 0;
  margin: 0 auto;
}
main .aboutPage .contentBox .picBox .title-center img {
  width: auto;
  height: 35px;
  text-align: left;
  margin: 70px 0;
  margin-left: 230px;
}
main .aboutPage .contentBox .picBox .title-center h4 {
  font-weight: normal;
}
main .aboutPage .contentBox .picBox .title-center .transformimg {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 230px;
}

main .newalbumPage .contentBox {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
main .newalbumPage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 20px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newalbumPage .contentBox .rowBox .content {
  transition: box-shadow 0.35s ease;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .newalbumPage .contentBox .rowBox .content .boximg1x1::before {
  content: "了解更多";
  /* Font Awesome search icon */
  /* 或 "Font Awesome 5 Free" */
  /* 確保顯示實心版本 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #324158;
  font-weight: 600;
  font-size: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .newalbumPage .contentBox .rowBox .content .textBox {
  max-height: 200px;
  text-align: left;
  padding: 10px 8px 15px;
}
main .newalbumPage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: #0f1a2d;
  margin: 3px 0;
}
main .newalbumPage .contentBox .rowBox .content .textBox .time {
  line-height: 1.8;
}
main .newalbumPage .contentBox .rowBox .content .textBox p {
  color: #71747a;
  margin-top: 5px;
}
main .newalbumPage .contentBox .rowBox .content .textBox .longtext {
  color: #71747a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 3.2em;
  max-height: 3.2em;
  margin: 0;
  line-height: 1.5;
}
main .newalbumPage .contentBox .rowBox a:hover {
  color: #000;
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1::after,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1::after {
  opacity: 1;
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1::before,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newalbumPage .contentBox .rowBox .content:hover .boximg1x1 img,
main .newalbumPage .contentBox .rowBox .content:focus-within .boximg1x1 img {
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .newalbumPage .contentBox .rowBox .content:hover {
  box-shadow: 0 0 15px #cacaca;
}

main .articlePage {
  border-bottom: 1px solid #eae0d9;
}
main .articlePage .articleBox {
  margin: 20px auto;
}
main .articlePage .articleBox .articlecontent {
  padding-top: 60px;
}

main .processPage .contentBox {
  background-image: url(../images/processPage-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
}
main .processPage .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  flex-direction: column;
}
main .processPage .contentBox .rowBox .iconBox {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-align: center;
}
main .processPage .contentBox .rowBox .iconBox img {
  width: 30%;
  margin-bottom: 25px;
  max-width: 110px;
  max-height: 100px;
}
main .processPage .contentBox .rowBox .iconBox .textBox {
  position: relative;
}
main .processPage .contentBox .rowBox .iconBox .textBox h5 {
  margin: 10px 0;
  color: #324158;
}
main .processPage .contentBox .rowBox .iconBox .textBox p {
  padding: 10px 30px;
  color: #424242;
}
main .processPage .contentBox .rowBox .iconBox .textBox i {
  position: absolute;
  top: 0;
  left: 25%;
}
main .processPage .contentBox .rowBox .iconBox i {
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #324158;
}
main .processPage .contentBox .link-btn {
  margin: 20px auto;
  align-items: center;
  width: 16em;
  background-color: #fff;
}
main .processPage .contentBox .link-btn i {
  padding: 3px 8px;
  margin-right: 15px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  align-items: center;
}
main .processPage .contentBox .link-btn:hover {
  background-color: #0f1a2d;
}
main .processPage .contentBox .link-btn:hover i {
  color: #0f1a2d;
}
main .processPage .contentBox .link-btn:hover img {
  content: url("../images/service-lineicon-w.png");
}

main .casePage .titleBox .case-title {
  background-color: #0f1a2d;
}
main .casePage .titleBox .case-title h3 {
  color: #fff;
  padding: 60px 100px;
  text-align: center;
}
main .casePage .titleBox .picBox {
  position: relative;
  background-size: cover;
  background-position: center;
}
main .casePage .titleBox .picBox .upBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .casePage .titleBox .picBox .upBox .textBox {
  margin: 20px 0;
  padding: 10px 15px;
  text-align: center;
  white-space: nowrap;
}
main .casePage .titleBox .picBox .upBox .media {
  margin: 5px 0 25px;
  text-align: center;
  background-color: #000;
  width: 240px;
  height: 430px;
}
main .casePage .titleBox .picBox .upBox .media iframe {
  width: 240px;
  height: 430px;
}
main .casePage .contentBox .rowBox {
  margin-top: 0;
}
main .casePage .contentBox .rowBox .content {
  box-shadow: 0 0 5px #cacaca;
  background-color: #fff;
  padding: 12px 12px 0;
  border-radius: 5px;
}
main .casePage .contentBox .rowBox .content .textBox {
  text-align: center;
}
main .casePage .contentBox .rowBox .content .textBox h5 {
  font-weight: normal;
}
main .casePage .contentBox .rowBox .content:hover {
  box-shadow: 0 0 15px #cacaca;
}
main .casePage .contentBox .rowBox .content:hover h5 {
  color: #324158;
}

main .photoPage .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
main .photoPage .contentBox .case-title {
  background-color: #0f1a2d;
}
main .photoPage .contentBox .case-title h3 {
  color: #fff;
  padding: 60px 100px;
  text-align: center;
}
main .photoPage .contentBox .title {
  margin: 0 auto 20px;
  padding-bottom: 30px;
  max-width: 1000px;
  padding: 10px;
  text-align: center;
}
main .photoPage .contentBox .title h3 {
  margin: 15px 0;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 1200px;
  margin: 10px auto 30px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .photoPage .contentBox .content .picBox {
  padding: 10px;
  position: relative;
  /* 讓遮罩能定位 */
  overflow: hidden;
  text-align: center;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .photoPage .contentBox .content .picBox h6 {
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  margin: 0;
}
main .photoPage .contentBox .content .picBox p {
  color: #4d4d4d;
  padding: 0px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
}
main .photoPage .contentBox .content .picBox .boximg1x1 img,
main .photoPage .contentBox .content .picBox .boximg4x3 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .photoPage .contentBox .content .picBox .boximg1x1::after,
main .photoPage .contentBox .content .picBox .boximg4x3::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .photoPage .contentBox .content .picBox .boximg1x1::before,
main .photoPage .contentBox .content .picBox .boximg4x3::before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 40%;
  left: 45%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #324158;
  font-weight: 700;
  font-size: 30px;
  opacity: 0;
  transform: translateY(10%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg4x3 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg4x3 img {
  transform: translate(-50%, -50%) scale(1.1);
  /* 注意：合併在一起 */
}

main .mediaPage .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto 50px;
}
main .mediaPage .contentBox .rowBox .mediavideo {
  text-align: center;
}
main .mediaPage .contentBox .rowBox .mediavideo iframe {
  width: 300px;
  height: 540px;
}
main .mediaPage .contentBox .rowBox .mediavideo p {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.75em;
  height: 3.5em;
  width: 300px;
  margin: 5px auto;
}

main .contactPage .contactBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 50px;
}
main .contactPage .contactBox .rowBox .textBox {
  display: flex;
  align-items: center;
  /* icon 與文字垂直置中 */
  flex: 1 1 100%;
  max-width: 280px;
  /* 預設三欄 */
  min-width: 280px;
  /* 避免太小時破版 */
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
}
main .contactPage .contactBox .rowBox .textBox .iconBox {
  flex-shrink: 0;
  font-size: 24px;
  margin-right: 12px;
  color: #324158;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .contactPage .contactBox .rowBox .textBox .iconBox i {
  text-align: center;
  font-size: 35px;
}
main .contactPage .contactBox .rowBox .textBox .text {
  display: flex;
  flex-direction: column;
  /* h6 與 p 垂直排列 */
  justify-content: center;
}
main .contactPage .contactBox .rowBox .textBox:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
}
main .contactPage .contactBox .rowBox .textBox:hover .text {
  color: #324158;
}
main .contactPage .contactBox .map iframe {
  display: block;
}

@media only screen and (min-width: 768px) {
  div.carouselSlide .carousel-indicators {
    margin-bottom: 20px;
  }
  div.carouselSlide .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  div.carouselSlide .carousel-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  div.carouselSlide .carousel-text {
    left: 65%;
    bottom: 20%;
  }
  main .processSec .rowBox .iconBox {
    flex: 0 0 33.3333333333%;
  }
  footer {
    font-size: 16px;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .contentBox .titleBox {
    margin: 10px auto 60px;
  }
  main .aboutPage .contentBox .rowBox .textleftBox .textBox ul li {
    font-size: 16px;
  }
  main .newalbumPage .contentBox .rowBox {
    justify-content: flex-start;
  }
  main .newalbumPage .contentBox .rowBox .content {
    flex: 0 0 calc(50% - 30px);
    padding: 0;
    margin: 15px;
  }
  main .newalbumPage .contentBox .rowBox .content .textBox {
    padding: 10px 15px 20px;
  }
  main .newalbumPage .contentBox .rowBox .content .textBox h5 {
    font-size: 18px;
  }
  main .processPage .contentBox .rowBox .iconBox {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    margin: 70px auto;
  }
  main .processPage .contentBox .rowBox .iconBox img {
    margin: 0;
  }
  main .processPage .contentBox .rowBox .iconBox .textBox {
    min-width: 460px;
  }
  main .processPage .contentBox .rowBox .iconBox i {
    left: 38%;
    bottom: -80%;
  }
  main .casePage .titleBox .case-title h3 {
    padding: 80px 100px 60px;
  }
  main .casePage .titleBox .picBox .upBox {
    flex-direction: row-reverse;
    gap: 20px;
    position: relative;
  }
  main .casePage .titleBox .picBox .upBox .textBox {
    margin: 40px 0;
    padding: 20px 30px;
    font-size: 18px;
    z-index: 1;
  }
  main .casePage .titleBox .picBox .upBox .media {
    position: absolute;
    top: 25%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 0;
    margin: 0;
    width: 230px;
    height: 420px;
  }
  main .casePage .titleBox .picBox .upBox .media iframe {
    width: 230px;
    height: 420px;
  }
  main .casePage .contentBox {
    padding-top: 0;
  }
  main .casePage .contentBox .rowBox {
    row-gap: 0;
    margin-top: 0;
  }
  main .casePage .contentBox .rowBox .content {
    padding: 12px 12px 0;
  }
  main .contactPage .contactBox .rowBox {
    justify-content: space-between;
  }
  main .contactPage .contactBox .rowBox .textBox {
    min-width: 300px;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-text .link-btn {
    padding: 15px 0;
    width: 10em;
  }
  main .caseSec .rowBox .picBox {
    flex: 0 0 33.3333333333%;
  }
  main .serviceSec .rowBox {
    flex-direction: row;
    gap: 20px;
    padding: 50px 0;
  }
  main .serviceSec .rowBox .leftBox {
    text-align: left;
  }
  main .serviceSec .rowBox .leftBox h3 {
    font-size: 45px;
  }
  main .serviceSec .rowBox .leftBox .button-btn {
    justify-content: flex-start;
  }
  main .serviceSec .rowBox .leftBox .button-btn .link-btn img {
    height: 26px;
  }
  main .serviceSec .rowBox .rightBox {
    row-gap: 20px;
  }
  main .featureSec {
    padding: 60px 0;
  }
  main .featureSec .rowBox {
    max-width: 1200px;
    padding: 50px 0;
  }
  main .featureSec .rowBox .iconBox {
    flex: 0 0 25%;
    padding: 0 30px;
  }
  main .processSec .text-center h3 {
    font-size: 45px;
  }
  main .processSec .rowBox {
    padding: 60px 0;
  }
  main .processSec .rowBox .iconBox {
    flex: 0 0 25%;
  }
  main .processSec .rowBox .short img {
    margin-bottom: 34px;
  }
  .contactBottom {
    flex-direction: row;
    gap: 30px;
  }
  .contactBottom .contLeft img {
    width: 80%;
  }
  main .aboutPage .contentBox .titleBox {
    margin: 60px auto 80px;
  }
  main .aboutPage .contentBox .rowBox .textleftBox {
    flex-direction: row;
  }
  main .aboutPage .contentBox .rowBox .textleftBox .textBox {
    margin-right: 30px;
  }
  main .aboutPage .contentBox .rowBox .turnright {
    flex-direction: row-reverse;
  }
  main .aboutPage .contentBox .rowBox .turnright .textBox {
    padding-left: 50px;
  }
  main .newalbumPage .contentBox .rowBox .content .imgWrapper .more {
    font-size: 18px;
  }
  main .processPage .contentBox .rowBox .iconBox {
    min-width: 630px;
  }
  main .processPage .contentBox .rowBox .iconBox .textBox {
    width: 520px;
  }
  main .casePage .titleBox .case-title h3 {
    font-size: 28px;
    font-weight: normal;
  }
  main .casePage .titleBox .picBox .upBox .textBox {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  main .casePage .titleBox .picBox .upBox .media {
    top: 22%;
    left: 15%;
    width: 280px;
    height: 500px;
  }
  main .casePage .titleBox .picBox .upBox .media iframe {
    width: 280px;
    height: 500px;
  }
  main .newPage .product-container {
    max-width: 1400px;
  }
  main .contactPage .contactBox .rowBox .textBox {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
  main .contactPage .contactBox .rowBox .textBox .iconBox i {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  div.carouselSlide .carousel-text {
    left: 65%;
    bottom: 25%;
  }
  div.carouselSlide .carousel-text .link-btn {
    padding: 20px 0;
    width: 12em;
  }
  main .caseSec .rowBox .picBox {
    flex: 0 0 16.6666666667%;
  }
  main .caseSec .rowBox p {
    font-size: 18px;
  }
  main .serviceSec .rowBox {
    gap: 50px;
  }
  main .serviceSec .rowBox .leftBox p {
    margin-bottom: 40px;
  }
  main .serviceSec .rowBox .leftBox h6 {
    margin: 15px 0;
  }
  main .serviceSec .rowBox .leftBox .button-btn {
    margin: 25px 0;
  }
  main .serviceSec .rowBox .rightBox {
    padding: 15px 0;
    row-gap: 30px;
    max-width: 500px;
  }
  main .serviceSec .rowBox .rightBox .iconBox {
    margin: 0 10px;
    flex: 0 0 calc(33.3333% - 20px);
  }
  main .processSec .rowBox {
    margin: 0 auto;
    max-width: 1600px;
  }
  main .processSec .rowBox .iconBox {
    flex: 0 0 14.2857142857%;
  }
  main .processSec .rowBox .iconBox i {
    right: -10%;
  }
  .contactBottom .contRight {
    justify-content: start;
  }
  main .aboutPage .contentBox .titleBox {
    margin: 80px auto 100px;
  }
  main .aboutPage .contentBox .parallax {
    height: 50vh;
  }
  main .aboutPage .contentBox .rowBox .textleftBox .textBox {
    margin-right: 30px;
  }
  main .aboutPage .contentBox .rowBox .textleftBox .imgBox {
    margin-bottom: -50px;
  }
  main .aboutPage .contentBox .rowBox .turnright .textBox {
    padding-top: 130px;
    padding-bottom: 130px;
    padding-left: 40px;
  }
  main .aboutPage .contentBox .rowBox .turnright .imgBox {
    margin-top: -80px;
    margin-bottom: 0;
  }
  main .newalbumPage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .newalbumPage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .newalbumPage .contentBox .rowBox .content .boximg1x1 img {
    max-width: 370px;
    max-height: 370px;
  }
  main .contactPage .contactBox .rowBox {
    margin: 0 auto;
    max-width: 1300px;
  }
}/*# sourceMappingURL=style.css.map */