@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Yuji+Boku&display=swap");
.bg-navbarScrollColor {
  background: #f2f2f2 !important;
}

* {
  list-style: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: inline-block;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

h1 {
  font-size: calc(2rem + 0.5vw);
}

h2 {
  font-size: calc(1.7rem + 0.4vw);
}

h3 {
  font-size: calc(1.45rem + 0.4vw);
}

h4 {
  font-size: calc(1.3rem + 0.2vw);
}

h5 {
  font-size: calc(1.1rem + 0.2vw);
  font-weight: 400;
}

h6 {
  font-size: calc(1rem + 0.2vw);
  font-weight: 400;
}

p,
span,
li,
small {
  font-size: calc(1rem + 0.1vw);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 2px;
  text-align: justify;
  margin: 0;
}

small {
  font-size: calc(1rem + 0.3vw);
}

hr {
  width: 90%;
  display: flex;
  justify-self: center;
  border-top: 1px dotted #2c2c2c;
  margin: 50px 0;
}

.isNumberFontSize {
  font-size: calc(1.3rem + 0.2vw);
}

section {
  position: relative;
  padding: 90px 0;
}
@media (max-width: 576px) {
  section {
    padding: 80px 0;
  }
  section:nth-child(2) {
    padding-top: 160px;
  }
}
section:nth-child(1) {
  padding: 0;
}
section:nth-child(2) {
  padding-top: 150px;
}
section:not(:first-child):nth-child(odd) {
  color: white;
  background: rgba(43, 43, 43, 0.8);
  position: relative;
  isolation: isolate;
}
section:not(:first-child):nth-child(odd) h2 {
  color: white;
}
section:nth-last-of-type(1) {
  padding: 0;
}

.sectionTitle {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.sectionTitle * {
  letter-spacing: normal;
}
.sectionTitle h2 {
  position: relative;
  display: inline-block;
  margin: auto;
  text-align: center;
  letter-spacing: 4px;
  padding: 24px;
  color: black;
  font-weight: 500;
  isolation: isolate;
}
.sectionTitle h2::before {
  content: "";
  width: 100%;
  height: 50px;
  background: url(../images/decorate/title_bg-1.png) no-repeat center/contain;
  filter: grayscale(1) invert(1);
  opacity: 0.4;
  position: absolute;
  top: 35%;
  left: 12%;
  transform: translate(-50%, -50%);
  z-index: -1;
  --sway-distance: 6px; /* 左右移動距離（半幅）*/
  --sway-duration: 3s; /* 單次循環時間 */
  --sway--transform: translate(-50%, -50%);
  will-change: transform;
  animation: swayX var(--sway-duration) infinite ease-in-out;
}
.sectionTitle h2::after {
  content: "";
  width: 100%;
  height: 44px;
  background: url(../images/decorate/title_bg-2.png) no-repeat center/contain;
  filter: grayscale(1) invert(1) brightness(0.8);
  opacity: 1;
  position: absolute;
  top: 52%;
  right: -77px;
  transform: translate(0%, -50%) rotateY(180deg);
  z-index: 1;
  --sway-distance: 6px; /* 左右移動距離（半幅）*/
  --sway-duration: 3s; /* 單次循環時間 */
  --sway--transform: translate(0%, -50%) rotateY(180deg); /* 若要原地左右移動，依循上述的 transform 值 */
  will-change: transform;
  animation: swayX var(--sway-duration) infinite ease-in-out;
}
.sectionTitle h2 .h2_dec {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
  position: relative;
  z-index: -1;
}
.sectionTitle h2 .h2_dec span {
  width: 100%;
  height: 100%;
  color: rgb(178.25, 178.25, 178.25);
  font-size: calc(1.5rem + 0.3vw);
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-wrap-mode: nowrap;
  margin-top: -16px;
  position: relative;
  isolation: isolate;
}
.sectionTitle h2 .h2_dec hr {
  display: none;
  width: 100%;
  border-top: 1px solid rgba(79, 79, 79, 0.7);
  margin: 1rem 0 !important;
  opacity: 0.4;
}

.btn {
  width: 100%;
  font-size: calc(1rem + 0.1vw);
  letter-spacing: 2px;
  color: white;
  background: #f2f2f2;
  border: 1px solid white;
  padding: 10px 20px;
  transition: 0.4s ease-in;
}
.btn:hover {
  color: black;
  background: white;
  border: 1px solid #2b2b2b;
}

.fillBtn {
  color: white;
  background: #d87b66;
  border: 1px solid white;
}
.fillBtn:hover {
  color: black;
  background: white !important;
  border: 1px solid #2b2b2b;
}
.fillBtn.LINE {
  background: #2eb900 !important;
}
.fillBtn.LINE:hover {
  color: #2eb900;
  border: 1px solid #2eb900;
  background: white !important;
}
.fillBtn.LINE:hover span {
  color: #2eb900;
}
.fillBtn.FB {
  background: #0765ff;
}
.fillBtn.FB:hover {
  color: #0765ff;
  border: 1px solid #0765ff;
  background: white;
}
.fillBtn.FB:hover span {
  color: #0765ff;
}
.fillBtn.IG {
  background: linear-gradient(45deg, #d88e55, #a421a7);
}
.fillBtn.IG:hover {
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, #d88e55, #a421a7) !important;
  background-origin: padding-box, border-box !important;
  background-clip: padding-box, border-box !important;
}
.fillBtn.IG:hover span,
.fillBtn.IG:hover i {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #d88e55, #a421a7);
  background-clip: text;
  -webkit-background-clip: text;
}

.smallMark {
  display: inline-flex;
  color: white;
  background: rgba(242, 242, 242, 0.8);
  letter-spacing: 2px;
  border-radius: 50px;
}

.interval {
  background: rgba(43, 43, 43, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.interval .container-fluid {
  height: 100%;
}
.interval .intervalBg {
  height: 100%;
  position: relative;
  isolation: isolate;
}
.interval .intervalBg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.interval .intervalBg img {
  transform: rotateY(180deg);
}
.interval .intervalBC img {
  object-fit: contain;
}
.interval .intervalTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.interval .intervalTxt h4,
.interval .intervalTxt p {
  color: white;
}

.catalogList .catalogItem h5 {
  width: 100%;
  color: #2b2b2b;
  padding: 12px;
  position: relative;
  isolation: isolate;
}
.catalogList .catalogItem h5::before {
  content: "";
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 500% 0%, 60% 30%, 0% 300%);
  background: #f2f2f2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 425px) {
  .catalogList .catalogItem h5::before {
    clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 0% 325%);
  }
}
.catalogList .catalogCard {
  position: relative;
}
.catalogList .catalogCard img {
  border-radius: 4px;
}
.catalogList .catalogCard h5 {
  font-weight: 500;
}
.catalogList .catalogCard ul {
  margin-bottom: 0;
}
.catalogList .catalogCard i {
  font-size: calc(1rem + 0.2vw);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1rem;
  text-shadow: 0px 0px 3px rgba(44, 44, 44, 0.7);
}
.catalogList .nav-tabs {
  width: 96%;
  margin: auto;
  justify-content: center;
  padding: 0px 12px;
  border-bottom: 1px solid rgba(216, 123, 102, 0.7);
}
.catalogList .nav-tabs .nav-link {
  color: white;
  border: unset;
}
.catalogList .nav-tabs .nav-link.active {
  color: white;
  background: #d87b66;
  border-radius: 6px 6px 0 0;
  text-shadow: 0px 1px 2px rgba(44, 44, 44, 0.3);
}
.catalogList .tab-content > .active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 左右移動，從 -distance 到 +distance */
@keyframes swayX {
  0% {
    transform: var(--sway--transform) translateX(calc(-1 * var(--sway-distance)));
  }
  50% {
    transform: var(--sway--transform) translateX(calc(var(--sway-distance)));
  }
  100% {
    transform: var(--sway--transform) translateX(calc(-1 * var(--sway-distance)));
  }
}
body {
  font-family: "Genos", "Noto Sans TC", sans-serif;
  color: #2c2c2c;
  background: #e6e6e6;
  overflow-x: hidden;
  position: relative;
}
body .bodyBg {
  width: 100%;
  height: 100%;
  background: url(../images/decorate/bg.jpg) no-repeat center/cover;
  mix-blend-mode: luminosity;
  opacity: 0.4;
  position: fixed;
  top: 0;
  z-index: -1;
}

header .navbar {
  background: transparent;
  transition: 0.3s ease-in;
}
header .navbar .navbar-brand {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
}
header .navbar .navbar-brand .brandTxt {
  border: 1px solid #2b2b2b;
  margin-bottom: -8px;
}
header .navbar .navbar-brand .brandTxt h3 {
  font-size: calc(2.7rem + 0.4vw);
  font-weight: 600;
  color: white;
  background: #2b2b2b;
  letter-spacing: 2px;
  padding: 0 4px;
  margin-bottom: -4px;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.8), 0px 0px 0px rgba(0, 0, 0, 0.8);
}
header .navbar .navbar-brand .brandTxt h5 {
  width: auto;
  color: white;
  font-size: calc(1.2rem + 0.2vw);
  text-align-last: justify;
  margin-top: 6px;
  margin-bottom: -4px;
}
header .navbar .navbar-brand .brandTxt h6 {
  width: auto;
  color: white;
  font-size: calc(0.9rem + 0.2vw);
}
header .navbar .navbar-brand .brandTxt .smallMark {
  background: transparent;
  border-radius: 0;
  padding: 0px 8px;
  margin: 0;
  align-self: stretch;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.8), 0px 0px 0px rgba(0, 0, 0, 0.8);
}
header .navbar .navbar-brand .brandTxt .smallMark span {
  font-size: calc(0.7rem + 0.2vw);
  color: white;
  margin-bottom: -4px;
}
header .navbar .navbar-brand img {
  width: 120px;
  object-fit: contain;
}
header .navbar .navbar-toggler {
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  border: 0;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (min-width: 1200px) {
  header .navbar .navbar-collapse .navbar-nav {
    gap: 8px;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: calc(1.1rem + 0.15vw);
  font-weight: 400;
  color: black;
  text-align: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: transparent;
  text-shadow: unset;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span {
  font-size: calc(1.3rem + 0.2vw);
  color: white;
  background: #2b2b2b;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: normal;
  z-index: 2;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span {
  color: transparent;
  text-shadow: initial;
  padding: 0px 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: -1;
}
header .navbar.scrollDown {
  background: white;
}
header .navbar.scrollDown .nav-link {
  text-align: center !important;
  text-shadow: unset !important;
}
header .navbar.scrollDown .nav-link:hover {
  color: transparent !important;
}

.banner {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  isolation: isolate;
}
@media (max-width: 768px) {
  .banner {
    height: 70vh;
  }
}
@media (max-width: 576px) {
  .banner {
    height: 45vh;
  }
}
.banner .f-carousel {
  width: 100%;
  height: 100%;
}
.banner .f-carousel .bannerImg {
  width: 100%;
  height: 100%;
  justify-self: center;
}
.banner .f-carousel .f-button svg {
  width: 100px;
  height: 100px;
  stroke-width: 2px;
  stroke: white;
  opacity: 0.5;
}
.banner .txt-content {
  width: 100%;
  height: auto;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  isolation: isolate;
}
.banner .txt-content h1 {
  width: fit-content;
  font-size: calc(4.2rem + 0.5vw);
  font-weight: 600;
  color: white;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 4px 3px 0px rgba(0, 0, 0, 0.8), 9px 8px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  isolation: isolate;
}
.banner .txt-content h1 span {
  width: 100%;
  color: white;
  font-size: calc(1.5rem + 0.2vw);
  font-weight: 400;
  text-align-last: justify;
  margin-top: -10px;
}
.banner .txt-content .bannerLogo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 12px 0;
}
.banner .txt-content .bannerLogo img {
  object-fit: contain;
}
.banner .txt-content .smallMark {
  color: white;
  background: unset;
  letter-spacing: 2px;
  padding: 12px 4px;
  border-radius: 50px;
}
.banner .txt-content .smallMark h5 {
  font-size: calc(1.5rem + 0.5vw);
}
.banner .txt-content span {
  display: inline-block;
  color: rgba(79, 79, 79, 0.7);
  font-size: calc(1.1rem + 0.2vw);
  font-weight: 300;
  text-align: center;
  margin-top: 12px;
  text-wrap-style: pretty;
}
.banner .txt-content .fillBtn {
  font-size: calc(0.9rem + 0.2vw);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .txt-content .fillBtn i {
  margin-right: 8px;
}

.about h3 {
  letter-spacing: 2px;
}
.about h3 i {
  font-size: calc(1.3rem + 0.2vw);
}
.about .aboutContext {
  position: relative;
}
.about .aboutContext:nth-of-type(even) {
  flex-direction: row-reverse;
}
.about .aboutContext hr {
  width: 100%;
  border-top: 1px solid #2c2c2c;
  justify-self: start;
  margin: 0.5rem 0;
}
.about .aboutContext h4 {
  width: 100%;
  color: #e4ada8;
  text-align: center;
  position: relative;
}
.about .aboutContext p {
  margin: 8px 0;
}
.about .aboutContext b {
  font-size: calc(1.2rem + 0.2vw);
  color: black;
  border-bottom: 4px solid rgba(228, 173, 168, 0.8);
}
.about .aboutImg {
  width: 100%;
}
.about .aboutImg img {
  padding: 0;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .about .aboutImg img {
    border-radius: 0px;
  }
}
.about .f-carousel .f-button {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
}
.about .f-carousel .f-button svg {
  stroke: white;
}
.about #aboutCarousel {
  width: 100%;
}
@media (min-width: 768px) {
  .about #aboutCarousel {
    height: 100%;
  }
}
.about video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.services .btnBox {
  margin-top: 50px;
}
.services .btnBox .fillBtn {
  border-radius: 50px;
}
.services .serviceItem {
  position: relative;
}
.services .serviceItem:hover {
  cursor: pointer;
}
.services .serviceItem:hover .serviceCardImg::before {
  opacity: 0;
}
.services .serviceItem:hover .serviceCardTitle {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  padding: 20px;
}
.services .serviceItem:hover .serviceCardTitle h4 {
  color: black;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6), 2px 2px 4px rgba(255, 255, 255, 0.4);
}
.services .serviceItem:hover .serviceCardTitle h4 span {
  text-shadow: initial;
}
.services .serviceItem:hover .serviceCardTitle .serviceCardTxt {
  height: auto;
  margin-top: 12px;
}
.services .serviceItem .fillBtn {
  width: fit-content;
  background: #2b2b2b;
  margin: auto;
  margin-top: -24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.services .serviceItem .fillBtn i {
  padding-left: 8px;
}
.services .serviceCard {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(44, 44, 44, 0.4) 0px 2px 8px 0px;
}
.services .serviceCard .serviceCardImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  isolation: isolate;
}
.services .serviceCard .serviceCardImg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  mix-blend-mode: multiply;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
  z-index: 0;
}
.services .serviceCard .serviceCardImg img {
  aspect-ratio: 1;
  object-position: center;
  transition: all 0.3s ease-in;
}
.services .serviceCard .serviceCardTitle {
  width: 100%;
  height: auto;
  padding: 0px;
  transition: 0.3s ease-in;
}
.services .serviceCard .serviceCardTitle h4 {
  width: 100%;
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in;
}
.services .serviceCard .serviceCardTitle h4 span {
  display: inline-flex;
  color: white;
  background: rgba(242, 242, 242, 0.8);
  border-radius: 4px;
  padding: 4px 12px;
}
.services .serviceCard .serviceCardTitle .serviceCardTxt {
  height: 0;
  overflow: hidden;
}
.services .serviceCard .serviceCardTitle .serviceCardTxt p {
  color: #2c2c2c;
}
.services .serviceCard .serviceCardTitle .serviceCardTxt ul {
  padding: 20px;
  margin: 0;
}
.services .serviceCard .serviceCardTitle .serviceCardTxt ul li {
  color: #f2f2f2;
  text-align: center;
}

@media (max-width: 576px) {
  .product .productList .tab-pane:nth-of-type(2) {
    overflow-y: scroll;
    height: 70vh;
  }
}
.product .productList .tab-pane:nth-of-type(3) .catalogCardImg {
  height: 32vh;
}
.product .productList .tab-pane:nth-of-type(3) .catalogCardImg img {
  object-fit: cover;
}
.product .productList .google-pdf {
  width: 100%;
  height: 80vh;
  margin: auto;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .product .productList .google-pdf {
    width: 75%;
  }
}

.contract .contractItem:nth-last-of-type(1) .contractPrice {
  font-size: calc(1.1rem + 0.2vw) !important;
}
.contract .contractCard {
  height: 100%;
  background: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  position: relative;
  isolation: isolate;
}
.contract .contractCard::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/decorate/contract_bg.jpg) no-repeat center 79%/cover;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(180deg);
  z-index: -1;
}
.contract .contractCard .contractCardImg {
  height: 240px;
}
.contract .contractCard .contractCardTxt h4,
.contract .contractCard .contractCardTxt p {
  color: #2c2c2c;
}
.contract .contractCard .contractCardTxt .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.contract .contractCard .contractCardTxt .title span {
  color: white;
  background: #e4ada8;
  padding: 0px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.contract .contractCard .contractCardTxt .contractPrice {
  font-size: calc(1.4rem + 0.2vw);
  color: #d87b66;
}

.process a {
  display: inline-block;
  width: 75%;
}
.process .processList-style2 {
  position: relative;
  isolation: isolate;
}
.process .processList-style2::before {
  content: "";
  width: 4px;
  height: 80%;
  background: white;
  mix-blend-mode: multiply;
  opacity: 0.7;
  position: absolute;
  top: 11%;
  left: 18%;
  z-index: -1;
}
@media (min-width: 576px) {
  .process .processList-style2::before {
    left: 16%;
  }
}
@media (min-width: 768px) {
  .process .processList-style2::before {
    left: 15.5%;
  }
}
@media (min-width: 992px) {
  .process .processList-style2::before {
    left: 15%;
  }
}
@media (min-width: 1400px) {
  .process .processList-style2::before {
    left: 14.5%;
  }
}
.process .processList-style2 .processCard .processCardImg {
  width: calc(80px + 0.3vw);
  height: auto;
  background: white;
  border-radius: 50%;
  padding: 1.2rem;
}
.process .processList-style2 .processCard .processCardImg img {
  object-fit: contain;
}
.process .processList-style2 .processCard .processCardTitle .num {
  width: fit-content;
  background: #e4ada8;
  border-radius: 50px;
  padding: 2px 12px;
  margin-bottom: 8px;
}
.process .processList-style2 .processCard .processCardTitle .num h6 {
  font-size: calc(1.5rem + 0.2vw);
  font-weight: 500;
  margin: -1rem 0;
}
.process .processList-style2 .processCard .processCardTitle h5 {
  font-weight: 500px;
}
.portfolio .catalogList .nav-tabs {
  border: unset;
}
.portfolio img {
  aspect-ratio: 1;
  border-radius: 4px;
}
.portfolio .slick-slider .slick-prev::before,
.portfolio .slick-slider .slick-next::before {
  font-size: calc(1.3rem + 0.2vw);
  color: #2b2b2b;
}

.contact {
  position: relative;
  isolation: isolate;
}
.contact i {
  font-size: calc(1.3rem + 0.1vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact hr {
  margin: 30px 0;
}
.contact address {
  margin: 0;
}
.contact .contactInfo {
  padding: 20px 0;
  margin: 0;
}
.contact .contactInfo li {
  margin-bottom: 12px;
}
.contact .contactInfo li a {
  color: #f2f2f2;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.contact .contactInfo li a:hover {
  color: #e4ada8;
}
.contact .contactInfo i {
  margin-right: 8px;
}
.contact .sns {
  width: auto;
  padding: 0;
}
.contact .sns li {
  width: auto;
}
.contact .sns a {
  letter-spacing: normal;
  width: 60px;
  height: 60px;
  color: white;
  background: #4f4f4f;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid white;
  transition: 0.3s;
}
.contact .sns a:hover {
  color: #2c2c2c;
  background: #e6e6e6;
  border: 1px solid #2c2c2c;
}
.contact .sns a i {
  font-size: calc(1.5rem + 0.1vw);
}
.contact .sns a span {
  font-size: calc(0.7rem + 0.2vw);
  writing-mode: vertical-lr;
}
.contact .map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #4f4f4f;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 0;
}
@media (max-width: 767.98px) {
  .contact .map {
    align-items: center;
  }
}
.contact .map p {
  font-size: calc(1.1rem + 0.2vw);
  font-weight: 500;
  color: white;
}
.contact .map p i {
  display: inline-block;
  font-size: calc(0.9rem + 0.1vw);
}
.contact .map iframe {
  display: block;
  margin-top: auto;
}

.sidebar {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 1000;
}
.sidebar .phone {
  display: block;
  font-size: 14px;
  font-weight: bolder;
  margin: 0;
  padding-top: 10px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 16px;
}
.sidebar ul li a {
  letter-spacing: normal;
  width: 50px;
  height: 50px;
  color: white;
  background: #d87b66;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.7;
  text-decoration: none;
  border-radius: 50%;
}
.sidebar ul li a:hover {
  opacity: 1;
}
.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: calc(0.7rem + 0.2vw);
}
.sidebar ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar ul li a i span {
  display: flex;
  margin-left: 2px;
  font-size: calc(0.7rem + 0.2vw);
}

footer {
  color: white;
  background: #2b2b2b;
}
footer * {
  letter-spacing: 1px;
}
footer a {
  font-size: calc(1.2rem + 0.1vw);
  color: white;
  opacity: 0.7;
}
footer a:hover {
  opacity: 1;
}/*# sourceMappingURL=all.css.map */