@charset "UTF-8";
.locationList .Txt .lineBtn .arrow, .locationList .Txt .lineBtn .btnText, .locationList .Txt .lineBtn .icon, .caseList .Txt, .caseList .Img, .caseList .item::before, .caseList .item, .caseList .caseItem, .serviceTagList .Txt::before, .serviceTagList .Img img, .serviceTagList .imgBox, .bannerArea .scrollDownBox .scrollDown, .popWin .close {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh; /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  background-color: #fff;
  padding: 50px 0 30px;
  border-radius: 24px;
  overflow-x: clip;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media (max-width: 768px) {
  .popWin .inner {
    padding: 40px 0 20px;
  }
}
.popWin .popContent {
  padding: 0 30px;
  max-height: 80dvh;
  overflow-y: auto;
}
.popWin .popContent::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: rgba(220, 217, 210, 0.5);
}
.popWin .popContent::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(220, 217, 210, 0.5);
  border-radius: 20px;
}
.popWin .popContent::-webkit-scrollbar-thumb {
  background: #bbb7ac;
}
@media (max-width: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px); /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}
@media (max-width: 768px) {
  .popWin .popContent {
    padding: 0 20px;
  }
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 70px;
  height: auto;
  aspect-ratio: 7/5;
  background: none;
  background-color: #c5c1b5;
  border-top-left-radius: 30px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 30px;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .popWin .close {
    width: 60px;
  }
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background-color: #75706c;
  top: 50%;
  left: calc(50% + 4px);
  translate: -50% -50%;
}
.popWin .close::before {
  rotate: 25deg;
}
.popWin .close::after {
  rotate: -25deg;
}
@media (min-width: 1181px) {
  .popWin .close:hover {
    background-color: #aba299;
  }
  .popWin .close:hover::before {
    -webkit-animation: moduleCloseAni 0.4s ease-in-out;
            animation: moduleCloseAni 0.4s ease-in-out;
  }
  .popWin .close:hover::after {
    -webkit-animation: moduleCloseAni2 0.4s ease-in-out;
            animation: moduleCloseAni2 0.4s ease-in-out;
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin.show .inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mainArea {
  padding: 0;
}

.bannerArea {
  background-color: #f2eeea;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .Img {
    height: 730px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img {
    height: 650px;
  }
}
@media (max-width: 575px) {
  .bannerArea .bannerItem .Img {
    height: 600px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Img {
    height: 550px;
  }
}
.bannerArea .bannerItem .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1600px;
  padding: var(--header-height) 80px 60px;
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt {
    padding: var(--header-height) 60px 40px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding: var(--header-height) 40px 40px;
  }
}
@media (max-width: 575px) {
  .bannerArea .bannerItem .Txt {
    padding: var(--header-height) 20px 40px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  position: relative;
  max-width: 480px;
}
@media (max-width: 1366px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 460px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .textBox {
    max-width: 400px;
  }
}
.bannerArea .bannerItem .Txt .title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #aba299;
  margin-top: 8px;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 30px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  font-size: 96px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #202020;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 80px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 52px;
  }
}
.bannerArea .bannerItem .Txt .text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #808080;
  margin-top: 24px;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 15px;
    margin-top: 12px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 13px;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  margin-top: 42px;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 36px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 24px;
  }
}
.bannerArea .controlBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1180px) {
  .bannerArea .controlBox {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .controlBox {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.bannerArea .controlBox {
  margin-top: 0;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1366px) {
  .bannerArea .controlBox {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .bannerArea .controlBox {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .bannerArea .controlBox {
    padding: 0 20px;
  }
}
.bannerArea .controlBox .arrowBox {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 17%;
  left: 80px;
}
@media (max-width: 1536px) {
  .bannerArea .controlBox .arrowBox {
    bottom: 40px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .controlBox .arrowBox {
    left: 60px;
  }
}
@media (max-width: 768px) {
  .bannerArea .controlBox .arrowBox {
    left: 40px;
    bottom: 20px;
  }
}
@media (max-width: 575px) {
  .bannerArea .controlBox .arrowBox {
    left: 20px;
  }
}
.bannerArea .scrollDownBox {
  position: absolute;
  top: calc(50% + 24px);
  right: auto;
  bottom: auto;
  left: 52px;
  translate: 0 -50%;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1699px) {
  .bannerArea .scrollDownBox {
    left: 20px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .scrollDownBox {
    left: 16px;
  }
}
@media (max-width: 768px) {
  .bannerArea .scrollDownBox {
    top: unset;
    left: 10px;
    bottom: 20px;
    translate: 0 0;
  }
}
@media (max-width: 575px) {
  .bannerArea .scrollDownBox {
    display: none;
  }
}
.bannerArea .scrollDownBox .scrollDown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
}
@media (min-width: 1181px) {
  .bannerArea .scrollDownBox .scrollDown:hover {
    translate: 0 20px;
  }
}
.bannerArea .scrollDownBox .scrollDown .line {
  --line-height: 80px;
  position: relative;
  display: block;
  width: 1px;
  height: var(--line-height);
  background-color: #cccccc;
}
@media (max-width: 1366px) {
  .bannerArea .scrollDownBox .scrollDown .line {
    --line-height: 70px;
  }
}
@media (max-width: 768px) {
  .bannerArea .scrollDownBox .scrollDown .line {
    --line-height: 60px;
  }
}
.bannerArea .scrollDownBox .scrollDown .line::before {
  position: absolute;
  content: "";
  width: 8px;
  height: auto;
  background-color: #bbb7ac;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  translate: -50% -50%;
  -webkit-animation: bannerScrollAnimation 4s linear infinite alternate;
          animation: bannerScrollAnimation 4s linear infinite alternate;
}
@media (max-width: 1536px) {
  .bannerArea .scrollDownBox .scrollDown .line::before {
    width: 6px;
  }
}
.bannerArea .scrollDownBox .scrollDown .text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: normal;
  color: #aba299;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (max-width: 1366px) {
  .bannerArea .scrollDownBox .scrollDown .text {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .bannerArea .scrollDownBox .scrollDown .text {
    font-size: 12px;
  }
}

.aboutArea {
  position: relative;
  background-image: url("../images/deco/home-service-bg.png");
  background-size: cover;
  padding: 165px 0 115px;
  overflow-x: clip;
}
@media (max-width: 1366px) {
  .aboutArea {
    padding: 130px 0 100px;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 100px 0 80px;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .aboutArea {
    padding: 60px 0;
  }
}
.aboutArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media (max-width: 1366px) {
  .aboutArea .wrap {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 48px;
  }
}
.aboutArea .leftBox {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: -5.5%;
}
@media (max-width: 1180px) {
  .aboutArea .leftBox {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 0;
  }
}
.aboutArea .rightBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 1010px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media (max-width: 1650px) {
  .aboutArea .rightBox {
    max-width: 900px;
  }
}
@media (max-width: 1536px) {
  .aboutArea .rightBox {
    max-width: 820px;
    gap: 20px;
  }
}
@media (max-width: 1366px) {
  .aboutArea .rightBox {
    max-width: 750px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1280px) {
  .aboutArea .rightBox {
    max-width: 660px;
    gap: 16px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .rightBox {
    width: 100%;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  .aboutArea .rightBox {
    gap: 16px 10px;
  }
}
.aboutArea .rightBox .Img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.aboutArea .rightBox .Img:nth-of-type(1) {
  width: 79%;
}
@media (max-width: 1650px) {
  .aboutArea .rightBox .Img:nth-of-type(1) {
    width: 78%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .Img:nth-of-type(1) {
    width: 70%;
  }
}
.aboutArea .rightBox .Img:nth-of-type(2) {
  width: 18%;
}
@media (max-width: 1536px) {
  .aboutArea .rightBox .Img:nth-of-type(2) {
    width: 19%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .Img:nth-of-type(2) {
    width: 20%;
  }
}
.aboutArea .rightBox .Img:nth-of-type(3) {
  width: 45%;
}
@media (max-width: 1536px) {
  .aboutArea .rightBox .Img:nth-of-type(3) {
    width: 48%;
  }
}
@media (max-width: 1366px) {
  .aboutArea .rightBox .Img:nth-of-type(3) {
    width: 43%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .Img:nth-of-type(3) {
    width: 40%;
  }
}
.aboutArea .rightBox .decoTitle {
  font-size: 9.3dvw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #dcd9d2;
  margin-left: -9%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.3;
}
@media (max-width: 1650px) {
  .aboutArea .rightBox .decoTitle {
    margin-left: -7%;
  }
}
@media (max-width: 1536px) {
  .aboutArea .rightBox .decoTitle {
    font-size: 8.5dvw;
    margin-left: -5%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .rightBox .decoTitle {
    font-size: 15dvw;
    margin-left: 0;
  }
}
@media (max-width: 375px) {
  .aboutArea .rightBox .decoTitle {
    font-size: 12dvw;
  }
}
.aboutArea .titleBox {
  max-width: 560px;
  padding-bottom: 42px;
}
@media (max-width: 1536px) {
  .aboutArea .titleBox {
    padding-bottom: 32px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .titleBox {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .aboutArea .titleBox {
    padding-bottom: 16px;
  }
}
.aboutArea .titleBox::before {
  position: absolute;
  content: "";
  width: 100dvw;
  height: 1px;
  background-color: rgba(220, 217, 210, 0.5);
  position: absolute;
  top: auto;
  right: 2px;
  bottom: 0;
  left: auto;
}
.aboutArea .titleBox::after {
  position: absolute;
  content: "";
  width: 5px;
  height: auto;
  background-color: #aba299;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 1px;
  left: auto;
  translate: -50% 50%;
}
.aboutArea .Txt {
  position: relative;
  max-width: 560px;
}
.aboutArea .Txt .subtitle {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #aba299;
}
@media (max-width: 1440px) {
  .aboutArea .Txt .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .aboutArea .Txt .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .aboutArea .Txt .subtitle {
    font-size: 20px;
  }
}
.aboutArea .Txt .text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.75;
  color: #808080;
  margin-top: 24px;
}
@media (max-width: 1536px) {
  .aboutArea .Txt .text {
    margin-top: 16px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .Txt .text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .aboutArea .Txt .text {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .aboutArea .Txt .text {
    font-size: 14px;
  }
}
.aboutArea .btnBox {
  margin-top: 64px;
}
@media (max-width: 1536px) {
  .aboutArea .btnBox {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .aboutArea .btnBox {
    margin-top: 36px;
  }
}
.aboutArea .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.homeVideoArea {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  overflow: clip;
}
.homeVideoArea .wrap {
  height: 100%;
}
.homeVideoArea .video {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 21/9;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}

.serviceArea {
  position: relative;
  background-image: url("../images/deco/home-service-bg.png");
  background-size: cover;
  padding: 160px 0;
}
@media (max-width: 1366px) {
  .serviceArea {
    padding: 130px 0;
  }
}
@media (max-width: 1180px) {
  .serviceArea {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .serviceArea {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .serviceArea {
    padding: 60px 0;
  }
}
.serviceArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media (max-width: 1366px) {
  .serviceArea .wrap {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .wrap {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (max-width: 991px) {
  .serviceArea .wrap {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .serviceArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 769px) {
  .serviceArea .titleBox.mobile {
    display: none;
  }
}
.serviceArea .btnBox.mobile {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 24px;
}
@media (min-width: 769px) {
  .serviceArea .btnBox.mobile {
    display: none;
  }
}
.serviceArea .leftBox {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 0;
}
@media (max-width: 768px) {
  .serviceArea .leftBox {
    width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 375px) {
  .serviceArea .leftBox {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .serviceArea .leftBox .controlBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .serviceArea .leftBox .controlBox .arrowBox {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    translate: -50% -50%;
  }
}
.serviceArea .rightBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  gap: 42px 0px;
  width: 65.5%;
}
@media (max-width: 1366px) {
  .serviceArea .rightBox {
    row-gap: 30px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .rightBox {
    width: 68%;
    row-gap: 20px;
  }
}
@media (max-width: 991px) {
  .serviceArea .rightBox {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .serviceArea .rightBox {
    width: 100%;
    max-width: 440px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.serviceArea .rightBox .titleBox {
  width: calc(100% - 240px - 48px);
  margin-bottom: 0;
  margin-left: 48px;
}
@media (max-width: 1366px) {
  .serviceArea .rightBox .titleBox {
    width: calc(100% - 240px - 48px);
  }
}
@media (max-width: 1180px) {
  .serviceArea .rightBox .titleBox {
    width: calc(100% - 200px - 20px);
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .serviceArea .rightBox .titleBox {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .serviceArea .rightBox .titleBox {
    display: none;
  }
}
.serviceArea .rightBox > .btnBox {
  width: 240px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 12px;
}
@media (max-width: 1180px) {
  .serviceArea .rightBox > .btnBox {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .serviceArea .rightBox > .btnBox {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .serviceArea .rightBox > .btnBox {
    display: none;
  }
}
.serviceArea .serviceTxtBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 38%;
  padding-right: 32px;
}
@media (max-width: 1180px) {
  .serviceArea .serviceTxtBox {
    padding-right: 24px;
  }
}
@media (max-width: 991px) {
  .serviceArea .serviceTxtBox {
    width: 100%;
    padding-right: 0;
    margin-top: 16px;
    padding-top: 16px;
  }
}
@media (max-width: 768px) {
  .serviceArea .serviceTxtBox {
    margin-top: 0;
    padding-top: 0;
  }
}
.serviceArea .serviceTxtBox::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 94%;
  background-color: rgba(220, 217, 210, 0.5);
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}
@media (max-width: 991px) {
  .serviceArea .serviceTxtBox::before {
    width: 100%;
    height: 1px;
    top: 0;
    bottom: unset;
  }
}
@media (max-width: 768px) {
  .serviceArea .serviceTxtBox::before {
    display: none;
  }
}
.serviceArea .serviceTxtBox::after {
  position: absolute;
  content: "";
  width: 5px;
  height: auto;
  background-color: #aba299;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 6%;
  right: 0;
  bottom: auto;
  left: auto;
  translate: 50% -50%;
}
@media (max-width: 991px) {
  .serviceArea .serviceTxtBox::after {
    top: 0;
    right: unset;
    left: 0;
    translate: -50% -50%;
  }
}
@media (max-width: 768px) {
  .serviceArea .serviceTxtBox::after {
    display: none;
  }
}
.serviceArea .numBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-left: -24px;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .serviceArea .numBox {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-left: -16px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .numBox {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .serviceArea .numBox {
    display: none;
  }
}
.serviceArea .numBox span {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #737373;
}
@media (max-width: 1366px) {
  .serviceArea .numBox span {
    font-size: 26px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .numBox span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .serviceArea .numBox span {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .serviceArea .numBox span {
    font-size: 16px;
  }
}
.serviceArea .numBox span.currentText {
  font-size: 80px;
  color: #bbb7ac;
}
@media (max-width: 1366px) {
  .serviceArea .numBox span.currentText {
    font-size: 72px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .numBox span.currentText {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .serviceArea .numBox span.currentText {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .serviceArea .numBox span.currentText {
    font-size: 36px;
  }
}
.serviceArea .numBox span.totalText::before {
  position: relative;
  content: "/";
  padding-right: 8px;
}
@media (max-width: 1180px) {
  .serviceArea .numBox span.totalText::before {
    padding-right: 6px;
  }
}
.serviceArea .serviceTagBox {
  position: relative;
  width: 62%;
  padding-left: 72px;
  max-height: 525px;
  overflow-y: auto;
}
.serviceArea .serviceTagBox::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: rgba(220, 217, 210, 0.5);
}
.serviceArea .serviceTagBox::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(220, 217, 210, 0.5);
  border-radius: 20px;
}
.serviceArea .serviceTagBox::-webkit-scrollbar-thumb {
  background: #bbb7ac;
}
.serviceArea .serviceTagBox {
  padding-right: 10px;
}
@media (max-width: 1536px) {
  .serviceArea .serviceTagBox {
    padding-left: 36px;
  }
}
@media (max-width: 1366px) {
  .serviceArea .serviceTagBox {
    max-height: 450px;
  }
}
@media (max-width: 1180px) {
  .serviceArea .serviceTagBox {
    padding-left: 32px;
    max-height: 375px;
  }
}
@media (max-width: 991px) {
  .serviceArea .serviceTagBox {
    display: none;
  }
}

.serviceImgList {
  overflow-x: clip;
}
@media (max-width: 768px) {
  .serviceImgList {
    max-width: 440px;
    margin: 0 auto;
  }
}
.serviceImgList .slick-list {
  margin: 0 -10px;
}
.serviceImgList .serviceImgItem {
  position: relative;
  padding: 0 10px;
}
.serviceImgList .item {
  position: relative;
}
.serviceImgList .Img {
  border-top-left-radius: 220px;
  border-top-right-radius: 220px;
  overflow: clip;
}
.serviceImgList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.serviceTxtList {
  max-width: 300px;
}
@media (max-width: 991px) {
  .serviceTxtList {
    max-width: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .serviceTxtList {
    margin: -64px auto 0;
  }
}
@media (max-width: 375px) {
  .serviceTxtList {
    margin: -48px auto 0;
  }
}
.serviceTxtList .slick-list {
  margin: 0 -10px;
}
.serviceTxtList .serviceTxtItem {
  position: relative;
  padding: 0 10px;
}
.serviceTxtList .item {
  position: relative;
}
.serviceTxtList .imgBox {
  position: relative;
  width: 145px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .serviceTxtList .imgBox {
    width: 130px;
  }
}
@media (max-width: 1180px) {
  .serviceTxtList .imgBox {
    width: 116px;
  }
}
@media (max-width: 375px) {
  .serviceTxtList .imgBox {
    width: 104px;
  }
}
.serviceTxtList .imgBox svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
.serviceTxtList .Img {
  width: 65%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  padding: 15%;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  translate: -50% -50%;
}
.serviceTxtList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  translate: 0 -100px;
  -webkit-filter: drop-shadow(0 100px 0 #aba299);
          filter: drop-shadow(0 100px 0 #aba299);
}
.serviceTxtList .Txt {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .serviceTxtList .Txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.serviceTxtList .Txt .title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #202020;
}
@media (max-width: 1366px) {
  .serviceTxtList .Txt .title {
    font-size: 24px;
  }
}
@media (max-width: 1180px) {
  .serviceTxtList .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .serviceTxtList .Txt .title {
    font-size: 20px;
  }
}
.serviceTxtList .Txt .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.7;
  color: #808080;
  margin-top: 12px;
}
@media (max-width: 1366px) {
  .serviceTxtList .Txt .text {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media (max-width: 1180px) {
  .serviceTxtList .Txt .text {
    margin-top: 4px;
  }
}
@media (max-width: 1366px) {
  .serviceTxtList .btnBox.single {
    margin-top: 32px;
  }
}
@media (max-width: 1180px) {
  .serviceTxtList .btnBox.single {
    margin-top: 24px;
  }
}

.serviceTagList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  gap: 24px 36px;
  margin-top: 46px;
}
@media (max-width: 1366px) {
  .serviceTagList {
    gap: 20px 24px;
    margin-top: 24px;
  }
}
@media (max-width: 1180px) {
  .serviceTagList {
    gap: 12px 16px;
  }
}
.serviceTagList .serviceTagItem {
  position: relative;
  width: calc(50% - 18px);
}
@media (max-width: 1366px) {
  .serviceTagList .serviceTagItem {
    width: calc(50% - 12px);
  }
}
@media (max-width: 1180px) {
  .serviceTagList .serviceTagItem {
    width: calc(50% - 8px);
  }
}
.serviceTagList .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (min-width: 1181px) {
  .serviceTagList .item:hover .imgBox {
    background-color: #fff;
  }
  .serviceTagList .item:hover .Img img {
    translate: -70px 0;
    -webkit-filter: drop-shadow(70px 0 0 #bbb7ac);
            filter: drop-shadow(70px 0 0 #bbb7ac);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .serviceTagList .item:hover .Txt::before {
    width: 0;
  }
}
.serviceTagList .item.current .imgBox {
  background-color: #fff;
}
.serviceTagList .item.current .Img img {
  translate: -70px 0;
  -webkit-filter: drop-shadow(70px 0 0 #bbb7ac);
          filter: drop-shadow(70px 0 0 #bbb7ac);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.serviceTagList .item.current .Txt::before {
  width: 0;
}
.serviceTagList .imgBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 74px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #d0ccc2;
  border-radius: 50%;
  overflow: clip;
  z-index: 1;
}
@media (max-width: 1366px) {
  .serviceTagList .imgBox {
    width: 68px;
  }
}
@media (max-width: 1180px) {
  .serviceTagList .imgBox {
    width: 60px;
  }
}
.serviceTagList .Img {
  width: 50%;
}
.serviceTagList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-filter: drop-shadow(70px 0 0 transparent);
          filter: drop-shadow(70px 0 0 transparent);
  will-change: filter;
}
.serviceTagList .Txt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 24px 10px 32px;
  text-align: center;
  margin-left: -32px;
}
@media (max-width: 1366px) {
  .serviceTagList .Txt {
    padding: 8px 16px 8px 24px;
  }
}
@media (max-width: 1180px) {
  .serviceTagList .Txt {
    padding: 6px 12px 6px 16px;
    margin-left: -20px;
  }
}
.serviceTagList .Txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-bottom-right-radius: 30px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.serviceTagList .Txt .title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #aba299;
}
@media (max-width: 1366px) {
  .serviceTagList .Txt .title {
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  .serviceTagList .Txt .title {
    font-size: 15px;
  }
}

.caseArea {
  position: relative;
  padding: 145px 0;
}
@media (max-width: 1180px) {
  .caseArea {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .caseArea {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .caseArea {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .caseArea .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .caseArea .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .caseArea .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.caseArea .titleBox {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .caseArea .titleBox {
    margin-bottom: 24px;
  }
}
.caseArea .caseBox {
  position: relative;
}
.caseArea .controlBox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 88px;
}
@media (max-width: 1366px) {
  .caseArea .controlBox {
    margin-top: 64px;
  }
}
@media (max-width: 768px) {
  .caseArea .controlBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
}
.caseArea .controlBox .dotsBox {
  position: relative;
}
@media (max-width: 768px) {
  .caseArea .controlBox .dotsBox {
    display: none;
  }
}
.caseArea .controlBox .arrowBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.caseArea .controlBox .arrowBox .prev {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -42px;
  translate: -100% -50%;
}
@media (max-width: 768px) {
  .caseArea .controlBox .arrowBox .prev {
    top: 25%;
    left: 17%;
    translate: 0 -50%;
  }
}
@media (max-width: 575px) {
  .caseArea .controlBox .arrowBox .prev {
    left: 5%;
  }
}
@media (max-width: 480px) {
  .caseArea .controlBox .arrowBox .prev {
    left: 0;
  }
}
@media (max-width: 375px) {
  .caseArea .controlBox .arrowBox .prev {
    translate: -30% -50%;
  }
}
.caseArea .controlBox .arrowBox .next {
  position: absolute;
  top: 50%;
  right: -42px;
  bottom: auto;
  left: auto;
  translate: 100% -50%;
}
@media (max-width: 768px) {
  .caseArea .controlBox .arrowBox .next {
    top: 25%;
    right: 17%;
    translate: 0 -50%;
  }
}
@media (max-width: 575px) {
  .caseArea .controlBox .arrowBox .next {
    right: 5%;
  }
}
@media (max-width: 480px) {
  .caseArea .controlBox .arrowBox .next {
    right: 0;
  }
}
@media (max-width: 375px) {
  .caseArea .controlBox .arrowBox .next {
    translate: 30% -50%;
  }
}

.caseList {
  overflow-x: clip;
}
@media (max-width: 480px) {
  .caseList {
    padding: 0 30px;
  }
}
@media (max-width: 375px) {
  .caseList {
    padding: 0;
  }
}
.caseList:not(.slick-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.caseList:not(.slick-slider) .caseItem {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.caseList.slick-dotted {
  margin-bottom: 0 !important;
}
.caseList .slick-list {
  margin: 0 -36px;
  padding: 90px 25% 0 !important;
}
@media (max-width: 1650px) {
  .caseList .slick-list {
    padding: 90px 18% 0 !important;
  }
}
@media (max-width: 1440px) {
  .caseList .slick-list {
    padding: 90px 15% 0 !important;
  }
}
@media (max-width: 1180px) {
  .caseList .slick-list {
    margin: 0 -24px;
    padding: 60px 15% 0 !important;
  }
}
@media (max-width: 991px) {
  .caseList .slick-list {
    padding: 60px 0 0 !important;
  }
}
@media (max-width: 768px) {
  .caseList .slick-list {
    margin: 0 -36px;
    padding: 0 25% !important;
  }
}
@media (max-width: 575px) {
  .caseList .slick-list {
    padding: 0 15% !important;
  }
}
@media (max-width: 480px) {
  .caseList .slick-list {
    padding: 0 !important;
  }
}
.caseList .caseItem {
  position: relative;
  padding: 0 36px;
}
@media (max-width: 1180px) {
  .caseList .caseItem {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .caseList .caseItem {
    padding: 0 36px;
  }
}
.caseList .caseItem.current .item::before {
  clip-path: inset(0 0 0 0);
}
.caseList .caseItem.nearby {
  translate: 0 -90px;
}
@media (max-width: 1180px) {
  .caseList .caseItem.nearby {
    translate: 0 -60px;
  }
}
@media (max-width: 768px) {
  .caseList .caseItem.nearby {
    translate: 0 0;
  }
}
.caseList .item {
  position: relative;
  --column-gap: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: var(--column-gap);
     -moz-column-gap: var(--column-gap);
          column-gap: var(--column-gap);
  background-color: #fff;
  border: 1px solid #dadad2;
  padding: 56px 36px 56px 64px;
  overflow: clip;
}
@media (max-width: 1366px) {
  .caseList .item {
    padding: 48px 42px;
    --column-gap: 24px;
  }
}
@media (max-width: 1180px) {
  .caseList .item {
    padding: 36px 32px;
  }
}
@media (max-width: 768px) {
  .caseList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 480px) {
  .caseList .item {
    row-gap: 16px;
    padding: 30px 48px;
  }
}
@media (max-width: 375px) {
  .caseList .item {
    padding: 24px 32px;
  }
}
.caseList .item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f4f4f1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip-path: inset(0 50% 0 50%);
  pointer-events: none;
}
.caseList .Img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 38%;
}
@media (max-width: 768px) {
  .caseList .Img {
    width: 100%;
  }
}
.caseList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.caseList .Txt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: var(--column-gap);
  border-left: 1px solid rgba(132, 121, 99, 0.2);
}
@media (max-width: 768px) {
  .caseList .Txt {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}
.caseList .Txt .textBox {
  position: relative;
}
.caseList .Txt .title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1366px) {
  .caseList .Txt .title {
    font-size: 24px;
  }
}
@media (max-width: 1180px) {
  .caseList .Txt .title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .caseList .Txt .title {
    font-size: 20px;
  }
}
.caseList .Txt .subtitle {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #aba299;
  margin-top: 2px;
}
@media (max-width: 1366px) {
  .caseList .Txt .subtitle {
    font-size: 15px;
  }
}
@media (max-width: 1180px) {
  .caseList .Txt .subtitle {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caseList .Txt .subtitle {
    font-size: 13px;
  }
}
.caseList .Txt .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #808080;
  border-top: 1px solid rgba(187, 183, 172, 0.3);
  padding-top: 30px;
  margin-top: 22px;
  height: 112px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 1366px) {
  .caseList .Txt .text {
    font-size: 14px;
    margin-top: 16px;
    padding-top: 20px;
    height: 100px;
  }
}
@media (max-width: 1180px) {
  .caseList .Txt .text {
    padding-top: 16px;
  }
}
@media (max-width: 768px) {
  .caseList .Txt .text {
    font-size: 13px;
    padding-top: 10px;
    margin-top: 10px;
    height: 81px;
  }
}
@media (max-width: 768px) {
  .caseList .Txt .btnBox.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .caseList .Txt .btnBox.flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .caseList .Txt .btnBox.flex .btn {
    width: 100%;
  }
}

.locationArea {
  position: relative;
  padding: 85px 0 160px;
  background-color: #edeee9;
  overflow-x: clip;
}
@media (max-width: 1366px) {
  .locationArea {
    padding: 85px 0 130px;
  }
}
@media (max-width: 1180px) {
  .locationArea {
    padding: 80px 0 100px;
  }
}
@media (max-width: 768px) {
  .locationArea {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .locationArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .locationArea .wrap.fill {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.locationArea .decoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  -webkit-animation: marqueeAni 50s linear infinite;
          animation: marqueeAni 50s linear infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 991px) {
  .locationArea .decoBox {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (max-width: 768px) {
  .locationArea .decoBox {
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
}
@media (max-width: 480px) {
  .locationArea .decoBox {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.locationArea .decoBox span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 210px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #e3e2db;
}
@media (max-width: 1536px) {
  .locationArea .decoBox span {
    font-size: 160px;
  }
}
@media (max-width: 1180px) {
  .locationArea .decoBox span {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .locationArea .decoBox span {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .locationArea .decoBox span {
    font-size: 80px;
  }
}
@media (max-width: 480px) {
  .locationArea .decoBox span {
    font-size: 70px;
  }
}
.locationArea .decoBox svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 135px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 1180px) {
  .locationArea .decoBox svg {
    width: 115px;
  }
}
@media (max-width: 991px) {
  .locationArea .decoBox svg {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .locationArea .decoBox svg {
    width: 84px;
  }
}
@media (max-width: 480px) {
  .locationArea .decoBox svg {
    width: 72px;
  }
}

.locationBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  max-width: 1725px;
  padding-left: 50px;
  margin-left: auto;
  margin-top: 48px;
}
@media (max-width: 1180px) {
  .locationBox {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .locationBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 32px;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .locationBox {
    padding-left: 0;
  }
}
.locationBox .leftBox {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 320px;
}
@media (max-width: 1536px) {
  .locationBox .leftBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 240px;
    max-width: none;
  }
}
@media (max-width: 1180px) {
  .locationBox .leftBox {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .locationBox .leftBox {
    width: 100%;
  }
}
.locationBox .leftBox .titleBox {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .locationBox .leftBox .btnBox {
    display: none;
  }
}
.locationBox .rightBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 74%;
}
@media (max-width: 1650px) {
  .locationBox .rightBox {
    width: 78%;
  }
}
@media (max-width: 1536px) {
  .locationBox .rightBox {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 0;
  }
}
@media (max-width: 991px) {
  .locationBox .rightBox {
    width: 100%;
  }
}
.locationBox .controlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (min-width: 992px) {
  .locationBox .controlBox.mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .locationBox .controlBox.mobile {
    width: 100%;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .locationBox .controlBox.mobile {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 375px) {
  .locationBox .controlBox.mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 16px;
  }
}
@media (max-width: 1536px) {
  .locationBox .controlBox:not(.mobile) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
  }
}
@media (max-width: 991px) {
  .locationBox .controlBox:not(.mobile) {
    display: none;
  }
}
.locationBox .controlBox .arrowBox {
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}
@media (max-width: 768px) {
  .locationBox .controlBox .arrowBox {
    -webkit-column-gap: 54px;
       -moz-column-gap: 54px;
            column-gap: 54px;
  }
}
.locationBox .controlBox .numBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  translate: 0 -10px;
}
.locationBox .controlBox .numBox span {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #737373;
}
@media (max-width: 1180px) {
  .locationBox .controlBox .numBox span {
    font-size: 16px;
  }
}
.locationBox .controlBox .numBox span.currentText {
  font-size: 50px;
  color: #bbb7ac;
}
@media (max-width: 1180px) {
  .locationBox .controlBox .numBox span.currentText {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .locationBox .controlBox .numBox span.currentText {
    font-size: 36px;
  }
}
.locationBox .controlBox .numBox span.totalText::before {
  position: relative;
  content: "/";
  padding-right: 8px;
}
@media (max-width: 1180px) {
  .locationBox .controlBox .numBox span.totalText::before {
    padding-right: 6px;
  }
}
.locationBox .btnBox.mobile {
  width: 100%;
  margin-top: 0;
}
@media (min-width: 992px) {
  .locationBox .btnBox.mobile {
    display: none;
  }
}
@media (max-width: 575px) {
  .locationBox .btnBox.mobile {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.locationList {
  overflow-x: clip;
}
@media (max-width: 575px) {
  .locationList {
    margin: 0 -20px;
  }
}
@media (max-width: 375px) {
  .locationList {
    margin: 0;
  }
}
.locationList:not(.slick-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.locationList:not(.slick-slider) .locationItem {
  width: 33.3333333333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 1366px) {
  .locationList:not(.slick-slider) .locationItem {
    width: 40%;
  }
}
.locationList .slick-list {
  padding-right: 32%;
  margin: 0 -24px;
}
@media (max-width: 1536px) {
  .locationList .slick-list {
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .locationList .slick-list {
    margin: 0 -16px;
  }
}
@media (max-width: 1366px) {
  .locationList .slick-list {
    padding-right: 20%;
  }
}
@media (max-width: 1180px) {
  .locationList .slick-list {
    padding-right: 10%;
  }
}
@media (max-width: 768px) {
  .locationList .slick-list {
    padding-right: 0;
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .locationList .slick-list {
    padding: 0 15%;
  }
}
@media (max-width: 480px) {
  .locationList .slick-list {
    padding: 0 50px;
  }
}
@media (max-width: 375px) {
  .locationList .slick-list {
    padding: 0;
  }
}
.locationList .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
.locationList .slick-track .slick-slide {
  height: auto;
}
.locationList .slick-track .slick-slide > div {
  height: 100%;
}
.locationList .locationItem {
  position: relative;
  height: 100%;
  padding: 0 24px;
}
@media (max-width: 1440px) {
  .locationList .locationItem {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .locationList .locationItem {
    padding: 0 10px;
  }
}
.locationList .item {
  position: relative;
  height: 100%;
  padding: 32px 30px;
  background-color: #fff;
  border: 1px solid #dcd9d2;
}
@media (max-width: 1440px) {
  .locationList .item {
    padding: 24px 20px;
  }
}
.locationList .imgBox {
  position: relative;
}
@media (min-width: 1181px) {
  .locationList .imgBox:has(a):hover .moreBtn {
    opacity: 1;
    scale: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.locationList .imgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.locationList .imgBox .moreBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  width: 138px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
  scale: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-in-out, scale 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out 0.2s;
  transition: opacity 0.6s ease-in-out, scale 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out 0.2s;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out 0.2s, scale 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out 0.2s, scale 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out 0.2s;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .locationList .imgBox .moreBtn {
    width: 124px;
  }
}
.locationList .imgBox .moreBtn .btnText {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.7;
  color: #aba299;
}
@media (max-width: 1440px) {
  .locationList .imgBox .moreBtn .btnText {
    font-size: 13px;
  }
}
.locationList .imgBox .moreBtn .arrow {
  display: block;
  width: 32px;
  height: auto;
  aspect-ratio: 80/11;
  color: #bbb7ac;
}
.locationList .Txt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}
@media (max-width: 1440px) {
  .locationList .Txt {
    margin-top: 16px;
  }
}
.locationList .Txt .title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #aba299;
}
@media (max-width: 1440px) {
  .locationList .Txt .title {
    font-size: 18px;
  }
}
.locationList .Txt .title a {
  color: inherit;
}
@media (min-width: 1181px) {
  .locationList .Txt .title a:hover {
    color: #c5c1b5;
  }
}
.locationList .Txt .lineBtn {
  position: relative;
  justify-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 24px;
}
@media (max-width: 1440px) {
  .locationList .Txt .lineBtn {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
@media (min-width: 1181px) {
  .locationList .Txt .lineBtn:hover .icon,
  .locationList .Txt .lineBtn:hover .btnText {
    color: #c5c1b5;
  }
  .locationList .Txt .lineBtn:hover .arrow {
    color: #aba299;
    translate: 10px 0;
  }
}
.locationList .Txt .lineBtn .icon {
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  color: #aba299;
}
@media (max-width: 1440px) {
  .locationList .Txt .lineBtn .icon {
    width: 18px;
  }
}
.locationList .Txt .lineBtn .btnText {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #aba299;
}
@media (max-width: 1440px) {
  .locationList .Txt .lineBtn .btnText {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .locationList .Txt .lineBtn .btnText {
    font-size: 14px;
  }
}
.locationList .Txt .lineBtn .arrow {
  display: block;
  width: 32px;
  height: auto;
  aspect-ratio: 80/11;
  color: #808080;
}
@media (max-width: 1440px) {
  .locationList .Txt .lineBtn .arrow {
    width: 24px;
  }
}
.locationList .infoList {
  position: relative;
  margin-top: 16px;
}
@media (max-width: 1440px) {
  .locationList .infoList {
    margin-top: 10px;
  }
}
.locationList .infoList .infoItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.locationList .infoList .infoItem + .infoItem {
  margin-top: 8px;
}
.locationList .infoList .icon {
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  color: #aba299;
}
@media (max-width: 1440px) {
  .locationList .infoList .icon {
    width: 16px;
  }
}
@media (max-width: 768px) {
  .locationList .infoList .icon {
    width: 14px;
  }
}
.locationList .infoList .infoText {
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #808080;
  translate: 0 -2px;
}
@media (max-width: 1440px) {
  .locationList .infoList .infoText {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .locationList .infoList .infoText {
    font-size: 14px;
  }
}
@media (min-width: 1181px) {
  .locationList .infoList a:hover {
    color: #c5c1b5;
  }
}
/*# sourceMappingURL=home.css.map */