@import url("https://fonts.googleapis.com/css2?family=Arapey:ital@1&display=swap");
.imgCover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@-webkit-keyframes scrolly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
}

@keyframes scrolly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
}

@-webkit-keyframes rotateBtn {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateBtn {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInGrow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInGrow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#banner-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/index/banner-mask.webp);
  background-repeat: repeat-y;
  background-size: 1920px auto;
  background-position: top center;
}

#banner-swiper .swiper-slide.blur-effect img {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  z-index: -1;
}

.banner-leftbar {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 6vw;
  height: 100%;
}

.banner-leftbar .logo-v {
  margin-top: 7vh;
}

.banner-leftbar .logo-v img {
  width: 105px;
}

.banner-leftbar .social-row {
  position: absolute;
  bottom: 13vh;
  width: 100%;
}

.banner-leftbar .social-btn {
  margin: 4vh auto;
  width: 35px;
  height: 35px;
}

.banner-leftbar .social-btn svg {
  fill: #fff;
}

.banner-top {
  position: absolute;
  z-index: 1;
  top: calc((100% - 49vmin) / 2  - 40px - 2vw);
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-top .hexagon {
  height: 49vmin;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.banner-top .en {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 7.3vmin;
  line-height: 49vmin;
  color: rgba(255, 255, 255, 0.7);
  width: calc(49vmin + 2%);
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
}

.banner-top .en::after {
  content: '';
  width: 100%;
  display: inline-block;
}

.banner-top .page-title {
  position: relative;
  margin-top: 1rem;
  text-align: center;
}

.banner-top .page-title span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  color: #fff;
  font-weight: 100;
  font-size: 3vmin;
  letter-spacing: .2em;
}

.banner-top .page-title span:before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  height: 5.6rem;
  width: 1px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1600px) {
  .screen-h .banner-leftbar .logo-v img {
    width: 70px;
  }
  .screen-h .banner-leftbar .social-btn {
    width: 30px;
    height: 30px;
  }
}

.screen-v .banner-leftbar {
  left: 4vw;
}

.screen-v .banner-leftbar .logo-v {
  margin-top: 2vh;
}

.screen-v .banner-leftbar .logo-v img {
  width: 60px;
}

.screen-v .banner-leftbar .social-row {
  display: none;
}

@media screen and (max-width: 480px) {
  .screen-v .banner-top .hexagon {
    height: 64vmin;
  }
  .screen-v .banner-top .en {
    font-size: 2.4rem;
    line-height: 64vmin;
    width: calc(64vmin + 2%);
  }
  .screen-v .banner-top .page-title {
    margin-top: 12px;
  }
  .screen-v .banner-top .page-title span {
    font-size: 18px;
  }
  .screen-v .banner-top .page-title span::before {
    height: 44px;
  }
}

@media screen and (max-width: 325px) {
  .screen-v .banner-top .en {
    width: 80%;
    font-size: 30px;
  }
}

@media screen and (max-height: 550px) {
  .screen-v .banner-top {
    top: calc((100% - 49vmin) / 2 - 4rem);
  }
  .screen-v .banner-top .en {
    width: 18rem;
    font-size: 2.4rem;
  }
  .screen-v .banner-top .page-title {
    margin-top: 12px;
  }
  .screen-v .banner-top .page-title span {
    font-size: 18px;
  }
  .screen-v .banner-top .page-title span::before {
    height: 44px;
  }
}

@media screen and (max-height: 300px) {
  .screen-v .banner-top {
    top: calc((100% - 150px) / 2 - 4rem);
  }
  .screen-v .banner-top .hexagon {
    height: 150px;
  }
  .screen-v .banner-top .en {
    font-size: 26px;
    line-height: 150px;
    width: 180px;
  }
}

.pic-inner {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.pic-inner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../images/common/btn-zoom.svg);
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: .6s;
  transition: .6s;
}

.not-touchable .pic-inner:hover::after {
  opacity: 1;
}

.lg-container .lg-backdrop {
  background-color: rgba(0, 0, 0, 0.95);
}

.lg-container .lg-toolbar {
  z-index: 1090;
}

.lg-container .lg-toolbar .lg-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 50%;
}

.lg-container .lg-toolbar .lg-icon::after {
  display: none;
}

.lg-container .lg-toolbar .lg-download {
  display: none;
}

.lg-container .lg-toolbar .lg-close {
  background-image: url(../images/common/icon-cross.svg);
}

.lg-container .lg-toolbar .lg-autoplay-button {
  background-image: url(../images/common/icon-play.svg);
}

.lg-container .lg-toolbar .lg-zoom-in {
  background-image: url(../images/common/icon-zoom-in.svg);
}

.lg-container .lg-toolbar .lg-zoom-out {
  background-image: url(../images/common/icon-zoom-out.svg);
}

.lg-container .lg-show-autoplay .lg-autoplay-button {
  background-image: url(../images/common/icon-pause.svg);
}

.lg-container .lg-prev, .lg-container .lg-next {
  padding: 0;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: 100% 100%;
}

.lg-container .lg-next {
  background-image: url(../images/common/btn-arrow.svg);
}

.lg-container .lg-next::before {
  display: none;
}

.lg-container .lg-prev {
  background-image: url(../images/common/btn-arrow.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lg-container .lg-prev::after {
  display: none;
}

.lg-container .lg-backdrop.in {
  opacity: .9;
}

.lg-container .lg-outer .lg-thumb-item {
  border: none;
  opacity: .4;
}

.lg-container .lg-outer .lg-thumb-item:hover, .lg-container .lg-outer .lg-thumb-item.active {
  opacity: 1;
}

.lg-container .lg-sub-html {
  letter-spacing: 1px;
  font-size: 15px;
}

.lg-container .lg-next {
  left: calc(100% + 10% + 45px + 10px);
  bottom: 0;
  top: initial;
}

.lg-container .lg-prev {
  left: calc(100% + 10%);
  bottom: 0;
  top: initial;
}

@media screen and (max-width: 480px) {
  .lg-container .lg-toolbar {
    padding: 0;
  }
}

.lg-outer {
  background-color: rgba(0, 0, 0, 0.7);
}

.lg-outer .lg-thumb-outer {
  background-color: transparent;
}

.lg-outer .lg-inner {
  z-index: 1090;
}

.lg-container .lg-backdrop {
  opacity: .1;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.lg-container .lg-backdrop.in {
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .lg-outer .lg-content {
    z-index: 1081;
    left: 10%;
    width: 49.5vw;
    height: 33.5vw;
    top: calc((100vh - 33.5vw) / 2) !important;
    bottom: initial !important;
  }
  .lg-outer .lg-thumb-item {
    margin-right: 2vmin;
  }
  .lg-outer .lg-object {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lg-components {
    left: 10%;
    width: 50%;
    bottom: initial;
    top: calc((100vh - 33.5vw) / 2 + 33.5vw + 10px);
    -webkit-transform: none;
            transform: none;
  }
  .lg-container .lg-sub-html {
    padding: 0;
    position: absolute;
    top: calc((100vh - 33.5vw) / 2);
    right: 5%;
    width: 31%;
    height: 33.5vw;
  }
  .lg-container .lg-toolbar {
    padding: 2vh 2% 0 2%;
  }
  .lg-container .lg-toolbar .lg-icon {
    margin-left: 3%;
    padding: 0;
    background-size: 100% 100%;
    opacity: .7;
  }
  .lg-counter {
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: calc(26vmin * .093);
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
  .lg-outer .lg-content {
    left: 5%;
  }
  .lg-components {
    left: 5%;
  }
  .lg-container .lg-outer .lg-thumb-item {
    width: calc(125px * .6) !important;
    height: calc(100px * .6) !important;
    margin-right: 7px !important;
  }
  .lg-container .lg-sub-html {
    width: 36%;
  }
  .lg-container .lg-toolbar .lg-icon {
    margin-left: 1%;
    background-size: 30px 30px;
  }
}

@media screen and (max-width: 1024px) {
  .lg-container .lg-sub-html {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
  .lg-outer .lg-content {
    height: calc(100vh - 240px);
  }
  .lg-sub-html {
    padding: 10px 5%;
  }
}

@media screen and (max-height: 550px) {
  .lg-components {
    display: none;
  }
  .lg-container .lg-sub-html {
    bottom: 0;
  }
  .lg-outer .lg-content {
    height: calc(100vh - 90px);
  }
}

.banner-top .hexagon {
  background-image: url(../images/worklist/banner_top.webp);
}

.block-outer {
  width: 100%;
}

.block {
  padding-top: 80px;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../images/cases/block-bg3.webp);
  background-size: cover;
  background-position: right top;
  overflow: hidden;
}

.block.justify-center .swiper-wrapper-custom {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #29383D;
}

.block .bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.block .bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/worklist/pic_01_layer.webp);
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 2;
}

.block .bg img {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  z-index: -1;
}

.block3-swiper {
  overflow: initial;
}

.block3-swiper-btn.swiper-pagination {
  position: relative;
  margin-top: 3vh;
}

.swiper-wrapper-custom {
  z-index: -1;
}

.swiper-wrapper-custom > .swiper-slide {
  display: block;
  padding: 0 1vw 1vw 1vw;
  color: #fff;
}

.swiper-wrapper-custom > .swiper-slide .img-box {
  position: relative;
  height: calc(86vw / 4);
  -webkit-box-shadow: 1vw 0.5vw 1vw rgba(0, 0, 0, 0.15);
          box-shadow: 1vw 0.5vw 1vw rgba(0, 0, 0, 0.15);
}

.swiper-wrapper-custom > .swiper-slide:nth-of-type(2n) {
  padding-top: 5vh;
}

.block-inner {
  position: relative;
  margin: 0 auto;
  padding-top: 3vh;
  width: 94%;
  z-index: 2;
}

.title {
  margin-bottom: 7vmin;
  text-align: center;
  font-size: calc(48vmin * .093);
  letter-spacing: .5rem;
}

.title span {
  padding: 1.1vmin 7.2vmin;
  display: inline-block;
  border-top: 1px solid rgba(180, 159, 117, 0.5);
  border-bottom: 1px solid rgba(180, 159, 117, 0.5);
  color: #b49f75;
}

.txt1 {
  position: relative;
  margin-bottom: .3rem;
  text-align: right;
}

.txt1 span {
  display: inline-block;
}

.txt1 .works-year {
  font-family: 'Arapey', serif;
  font-size: calc(34vmin * .093);
  letter-spacing: .5vmin;
}

.txt1 .works-name {
  font-family: 'Noto Serif TC', 'Noto Serif JP', serif;
  font-size: calc(36vmin * .093);
  letter-spacing: .2vmin;
}

.txt2 {
  margin-bottom: 1rem;
  text-align: right;
  font-size: 1.1rem;
  letter-spacing: .2rem;
}

.swiper-button-row {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 1vw;
  z-index: 1;
}

.swiper-button-row .swiper-button-next,
.swiper-button-row .swiper-button-prev {
  position: relative;
  display: inline-block;
  left: initial;
  right: initial;
  background-image: url(../images/common/icon-arrow-white.svg);
  background-size: 100% 100%;
  width: 80px;
  height: 80px;
}

.swiper-button-row .swiper-button-next::after,
.swiper-button-row .swiper-button-prev::after {
  content: "";
}

.swiper-button-row .swiper-button-next.swiper-button-disabled,
.swiper-button-row .swiper-button-prev.swiper-button-disabled {
  opacity: .5;
}

.swiper-button-row .swiper-button-prev {
  margin-right: 1.5vmin;
}

.swiper-button-row .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 1600px) {
  .swiper-button-row .swiper-button-next,
  .swiper-button-row .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  .block-inner {
    width: 88%;
  }
  .swiper-wrapper-custom > .swiper-slide .img-box {
    height: calc(80vw / 4);
  }
  .title {
    margin-bottom: 5vmin;
  }
  .txt1 .works-year,
  .txt1 .works-name {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .txt2 {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 1266px) {
  .block-inner {
    width: 79%;
  }
  .swiper-wrapper-custom > .swiper-slide {
    padding-left: 1.5vw;
    padding-right: 1.5vw;
  }
  .swiper-wrapper-custom > .swiper-slide .img-box {
    height: calc(70vw / 3);
  }
}

@media screen and (max-width: 1024px) {
  .txt1 {
    padding-left: 1.2rem;
  }
}

@media screen and (max-width: 960px) {
  .block-inner {
    width: 76%;
  }
  .swiper-wrapper-custom > .swiper-slide .img-box {
    height: calc(70vw / 2);
  }
}

@media screen and (max-width: 640px) {
  .swiper-button-row {
    top: calc(30vw + 55px);
    bottom: initial;
    right: 0;
    width: 100%;
  }
  .swiper-button-row .swiper-button-prev,
  .swiper-button-row .swiper-button-next {
    position: absolute;
  }
  .swiper-button-row .swiper-button-prev {
    left: -55px;
    margin-right: 0;
  }
  .swiper-button-row .swiper-button-next {
    right: -55px;
  }
  .block3-swiper {
    width: 60vw;
  }
  .swiper-wrapper-custom > .swiper-slide .img-box {
    height: 60vw;
  }
  .swiper-wrapper-custom > .swiper-slide:nth-of-type(2n) {
    padding-top: .7rem;
  }
  .title {
    margin-bottom: 6vh;
    font-size: 22px;
    letter-spacing: 5px;
  }
  .swiper-wrapper-custom > .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
  }
  .txt1,
  .txt2 {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .swiper-button-row {
    top: calc(43vw + 55px);
  }
  .swiper-button-row .swiper-button-prev {
    left: calc(1.5vw - (45px / 2));
  }
  .swiper-button-row .swiper-button-next {
    right: calc(1.5vw - (45px / 2));
  }
  .block3-swiper {
    width: 86vw;
  }
  .swiper-wrapper-custom > .swiper-slide .img-box {
    height: 86vw;
  }
}

.screen-v .block {
  padding-top: 60px;
}

.screen-v .block3-swiper {
  margin-top: 3vh;
}

@media screen and (max-width: 1024px) {
  .screen-v .block {
    padding-top: 50px;
  }
  .screen-v .block .bg::after {
    background-position: -20vw center;
  }
}

@media screen and (max-width: 640px) {
  .screen-v .block-inner {
    padding-top: 0;
  }
  .screen-v .block3-swiper {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .screen-v .block .bg::after {
    background-position: -40vw center;
  }
  .screen-v .block-inner {
    width: 100%;
  }
}

@media screen and (max-height: 550px) {
  .screen-v .swiper-button-row {
    display: none;
  }
  .screen-v .block-inner {
    padding-top: 30px;
  }
}

@media screen and (max-height: 550px) {
  .block3-swiper {
    margin-top: 45px;
  }
  .block-inner {
    padding-bottom: 45px;
  }
}

.sub-html-inner {
  width: 100%;
}

.sub-html-inner .txt1,
.sub-html-inner .txt2 {
  text-align: left;
}

.sub-html-inner .works-year,
.sub-html-inner .works-name {
  border-bottom: 1px solid #c7b28b;
}

.sub-html-inner .works-year {
  padding-top: 10px;
  display: block;
  text-align: right;
  font-size: calc(43vmin * .093);
  background-image: url(../images/worklist/gallery-title.svg);
  background-repeat: no-repeat;
  background-position: 10px bottom;
}

.sub-html-inner .works-name {
  padding: 10px;
  display: block;
  font-size: calc(50vmin * .093);
  letter-spacing: .5vmin;
}

.sub-html-inner .txt1 {
  margin-top: 2vh;
}

.sub-html-inner .txt2 {
  margin-bottom: 5vh;
  margin-top: 5vh;
  padding-left: 10px;
  font-size: calc(22vmin * .093);
  letter-spacing: .2vmin;
}

@media screen and (max-width: 1266px) {
  .sub-html-inner .txt1 {
    padding-left: 0;
  }
  .sub-html-inner .works-year,
  .sub-html-inner .works-name {
    font-size: 3vmin;
    letter-spacing: .3vmin;
  }
  .sub-html-inner .works-name {
    padding: 5px 10px;
  }
  .sub-html-inner .works-year {
    background-size: auto 100%;
  }
}

@media screen and (max-width: 1024px) {
  .sub-html-inner .txt1 {
    padding-left: 0;
  }
  .sub-html-inner .works-year {
    padding-top: 0;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .sub-html-inner .works-name {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .sub-html-inner .txt2 {
    margin-bottom: 1vh;
    margin-top: 1vh;
    font-size: 15px;
  }
}

@media screen and (max-height: 550px) {
  .sub-html-inner {
    display: none;
  }
}

.works-swiper {
  z-index: -1;
}

.works-swiper-mask {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}

.works-swiper-mask .swiper-button-prev,
.works-swiper-mask .swiper-button-next,
.works-swiper-mask .swiper-button-zoom {
  width: 33%;
  color: #c7b28b;
  text-align: center;
}

.works-swiper-mask .swiper-button-prev span,
.works-swiper-mask .swiper-button-next span,
.works-swiper-mask .swiper-button-zoom span {
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
}

.works-swiper-mask .swiper-button-prev span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.works-swiper-mask .swiper-button-prev,
.works-swiper-mask .swiper-button-next {
  position: relative;
  display: block;
  height: auto;
}

.works-swiper-mask .swiper-button-prev span,
.works-swiper-mask .swiper-button-next span {
  background-image: url(../images/worklist/icon-nav.svg);
}

.works-swiper-mask .swiper-button-prev::after,
.works-swiper-mask .swiper-button-next::after {
  display: none;
}

.works-swiper-mask .swiper-button-zoom {
  cursor: pointer;
}

.works-swiper-mask .swiper-button-zoom span {
  background-image: url(../images/worklist/icon-zoom.svg);
}

body:not(.not-touchable) .works-swiper-mask {
  top: initial;
  left: initial;
  right: 12px;
  bottom: 12px;
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 1;
}

body:not(.not-touchable) .works-swiper-mask .swiper-button-prev,
body:not(.not-touchable) .works-swiper-mask .swiper-button-next {
  display: none;
}

body:not(.not-touchable) .works-swiper-mask .swiper-button-zoom {
  padding-top: 6px;
  font-size: 12px;
  color: #fff;
  background-color: #c7b28b;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

body:not(.not-touchable) .works-swiper-mask .swiper-button-zoom span {
  width: 15px;
  height: 15px;
  background-image: url(../images/worklist/icon-zoom-white.svg);
}

.not-touchable .img-box:hover .works-swiper-mask {
  opacity: 1;
}
