@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Roboto+Flex:opsz,slnt,wdth,wght,GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC@8..144,-10..0,25..151,100..1000,-200..150,27..175,323..603,25..135,649..854,-305..-98,560..788,416..570,528..760&family=Yuji+Syuku&display=swap");
* {
  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 #3c3c3c;
  margin: 50px 0;
}

section {
  position: relative;
  padding: 90px 0;
}
@media (max-width: 576px) {
  section {
    padding: 70px 0;
  }
  section:nth-of-type(2) {
    padding-top: 120px;
  }
}
section:nth-of-type(1) {
  padding: 0;
}
section:nth-of-type(2) {
  padding-top: 150px;
}
section:nth-last-of-type(1) {
  padding: 0;
}

.sectionTitle {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  justify-self: center;
  padding: 30px;
  position: relative;
  isolation: isolate;
}
.sectionTitle::before {
  content: "";
  width: 100%;
  height: 50px;
  background: url(../images/decorate/title_bg.png) no-repeat center/contain;
  opacity: 1;
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 1s infinite alternate;
}
.sectionTitle * {
  letter-spacing: normal;
}
.sectionTitle h2 {
  position: relative;
  display: inline-block;
  margin: auto;
  text-align: center;
  letter-spacing: 4px;
  font-weight: 700;
  color: rgb(201.375, 155.25, 14.625);
  isolation: isolate;
  z-index: 1;
}
.sectionTitle .h2_dec {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -8px;
  position: relative;
}
.sectionTitle .h2_dec span {
  color: #a2a2a2;
  font-size: calc(1.3rem + 0.3vw);
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-wrap-mode: nowrap;
  padding: 0 20px;
  position: relative;
  isolation: isolate;
  z-index: -1;
}
.sectionTitle .h2_dec hr {
  width: 100%;
  border-top: 1px solid rgb(136.5, 136.5, 136.5);
  margin: 1rem -12px !important;
  opacity: 0.4;
}

.btn {
  width: 100%;
  color: #8b2e2e;
  background: white;
  border: 1px solid #8b2e2e;
  padding: 8px 16px;
  transition: 0.4s ease-in;
}
.btn i {
  animation: tada 1s infinite ease-in-out;
}
.btn:hover {
  color: #8b2e2e;
  background: white;
  border: 1px solid #8b2e2e;
}
.btn:hover span {
  color: #8b2e2e;
}

.fillBtn {
  letter-spacing: normal;
  color: white;
  background: #8b2e2e;
  border: 1px solid white;
}
.fillBtn:hover {
  color: #8b2e2e !important;
  background: white !important;
  border: 1px solid #8b2e2e;
}
.fillBtn:hover span {
  color: #8b2e2e !important;
}
.fillBtn.LINE {
  background: #2eb900;
}
.fillBtn.LINE:hover {
  color: #2eb900 !important;
  border: 1px solid #2eb900;
  background: white;
}
.fillBtn.LINE:hover span {
  color: #2eb900 !important;
}
.fillBtn.FB {
  background: #0765ff;
}
.fillBtn.FB:hover {
  color: #0765ff !important;
  border: 1px solid #0765ff;
  background: white;
}
.fillBtn.FB:hover span {
  color: #0765ff;
}

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

.interval {
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.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%);
}
.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: #8b2e2e;
  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: #f2c94c;
  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 {
  height: 150px;
  aspect-ratio: 1;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .catalogList .catalogCard img {
    height: 300px;
  }
}
.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(60, 60, 60, 0.7);
}
.catalogList .nav-tabs {
  width: 96%;
  margin: auto;
  justify-content: center;
  padding: 0px 12px;
  border-bottom: 1px solid rgba(60, 60, 60, 0.4);
}
.catalogList .nav-tabs .nav-link {
  color: #3c3c3c;
  border: unset;
}
.catalogList .nav-tabs .nav-link.active {
  color: white;
  background: #8b2e2e;
  border-radius: 6px;
  text-shadow: 0px 1px 2px rgba(60, 60, 60, 0.3);
}
.catalogList .tab-content > .active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}

@keyframes arrowDown {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  20% {
    transform: translate(-50%, -50%) rotate(15deg);
  }
  40% {
    transform: translate(-50%, -50%) rotate(-10deg);
  }
  60% {
    transform: translate(-50%, -50%) rotate(5deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
body {
  font-family: "Roboto Flex", "Noto Serif TC", "Noto Sans TC", sans-serif;
  color: #3c3c3c;
  background: rgb(254.25, 253.35, 251.25);
  overflow-x: hidden;
  position: relative;
}
body .bodyBg {
  width: 100%;
  height: 100%;
  background: url(../images/decorate/bg.jpg) no-repeat center/cover;
  opacity: 0.08;
  position: fixed;
  top: 0;
  z-index: -1;
}

header .navbar {
  background: #8b2e2e;
  isolation: isolate;
  transition: 0.3s ease;
}
header .navbar .navbar-brand {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .navbar .navbar-brand .brandTxt {
  margin-left: 6px;
}
header .navbar .navbar-brand .brandTxt h3 {
  font-family: "Yuji Syuku", "Noto Serif TC", serif;
  font-size: calc(2rem + 0.4vw);
  font-weight: 600;
  color: #f2c94c;
  letter-spacing: 2px;
  margin-top: -16px;
}
header .navbar .navbar-brand .brandTxt .smallMark {
  width: 100%;
  background: transparent;
  padding: 4px;
  margin-bottom: 4px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .navbar .navbar-brand .brandTxt .smallMark hr {
  margin: 10px 0;
  border-top: 1px solid white;
  opacity: 1;
}
header .navbar .navbar-brand .brandTxt .smallMark span {
  font-size: calc(0.8rem + 0.2vw);
  font-weight: 700;
  color: white;
  line-height: 16px;
  letter-spacing: 4px;
  padding: 0 8px;
}
header .navbar .navbar-brand .logoImg {
  width: 130px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
header .navbar .navbar-brand .logoImg img {
  height: 200%;
  object-fit: contain;
}
header .navbar .navbar-toggler {
  border: 0;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-collapse {
  justify-content: end;
}
header .navbar .navbar-collapse .navbar-nav {
  gap: 0.4rem;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  width: fit-content;
  color: white;
  font-size: calc(1.1rem + 0.15vw);
  font-weight: 400;
  text-align: center;
  margin: auto;
  position: relative;
  text-shadow: 1px 0px 2px rgba(62.3621621622, 20.6378378378, 20.6378378378, 0.6);
  transition: 0.2s ease-in;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: transparent !important;
  text-shadow: unset;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span {
  font-size: calc(0.8rem + 0.2vw);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1.5px 0px 1px rgba(106.28125, 81.9375, 7.71875, 0.6);
  top: 50%;
  z-index: 2;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span::before {
  width: 100%;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span {
  color: transparent;
  text-shadow: initial;
  padding: 1px 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: -1;
  isolation: isolate;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span::before {
  content: "";
  width: 0%;
  height: 100%;
  background: #f2c94c;
  background-size: 0% 100%;
  opacity: 1;
  position: absolute;
  top: 0%;
  left: 0%;
  transition: all 0.3s ease-in;
  z-index: -1;
}

.banner {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 91px;
  position: relative;
  isolation: isolate;
}
@media (max-width: 576px) {
  .banner {
    flex-direction: column;
  }
}
.banner .f-carousel {
  width: 60%;
}
@media (max-width: 576px) {
  .banner .f-carousel {
    width: 100%;
  }
}
.banner .f-carousel .bannerImg {
  width: 100%;
  height: 100%;
  justify-self: center;
}
.banner .f-carousel .bannerImg img {
  aspect-ratio: 1/0.6;
  height: 75vh;
}
.banner .f-carousel .f-button {
  width: 44px;
  height: 44px;
  background: rgba(250, 244, 230, 0.3);
}
.banner .f-carousel .f-button svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
  stroke: #faf4e6;
  opacity: 0.8;
}
.banner .f-carousel .f-button.is-prev {
  inset: 92% calc(50% - 0px) auto;
  left: unset !important;
}
.banner .f-carousel .f-button.is-next {
  inset: 92% calc(50% - 0px) auto;
  right: unset !important;
}
.banner .f-carousel .f-progressbar {
  background: #8b2e2e;
  opacity: 0.5;
}
.banner .txt-content {
  width: 40%;
  height: auto;
  background: #f2c94c;
}
@media (max-width: 576px) {
  .banner .txt-content {
    width: 100%;
    background: transparent;
    backdrop-filter: blur(3px);
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .banner .txt-content .txt-contentTitle {
    display: none;
  }
}
.banner .txt-content .txt-contentTitle {
  width: 100%;
  height: 100%;
  padding-left: 32px;
}
.banner .txt-content h1 {
  font-family: "Yuji Syuku", "Noto Serif TC", serif;
  font-size: calc(3rem + 0.5vw);
  font-weight: 600;
  writing-mode: vertical-lr;
  color: #8b2e2e;
  white-space: nowrap;
  letter-spacing: 4px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: -2px 2px 1px rgb(250.2756756757, 240.7243243243, 240.7243243243), 9px 8px 0px rgba(24.0432432432, 7.9567567568, 7.9567567568, 0.15);
  position: relative;
  z-index: 1;
}
.banner .txt-content .smallMark {
  height: auto;
  writing-mode: vertical-lr;
  color: #faf4e6;
  background: rgb(62.3621621622, 20.6378378378, 20.6378378378);
  border-radius: 50px;
  padding: 20px 4px;
  justify-content: center;
  align-items: center;
  margin-left: -78px;
  margin-bottom: -112px;
  position: relative;
  z-index: 0;
}
.banner .txt-content .smallMark h4 {
  font-family: "Yuji Syuku", "Noto Serif TC", serif;
  font-weight: 600;
}
.banner .txt-content .smallMark i {
  font-size: calc(1.2rem + 0.2vw);
  padding: 0 4px;
}
.banner .txt-content .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner .txt-content .txt span {
  display: inline-block;
  color: #faf4e6;
  font-size: calc(1.5rem + 0.2vw);
  font-weight: 300;
  writing-mode: vertical-lr;
  letter-spacing: 6px;
  text-wrap-style: pretty;
}
.banner .txt-content .bannerImgBox {
  position: relative;
  isolation: isolate;
}
.banner .txt-content .bannerImgBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  mix-blend-mode: multiply;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner .txt-content .bannerImgBox img {
  height: 25vh;
  padding: 0;
}
.banner .txt-content .btn {
  width: 56px;
  aspect-ratio: 1;
  font-size: calc(1.3rem + 0.2vw);
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .txt-content .btn span {
  font-size: unset;
  margin: unset;
  text-shadow: unset;
  margin: 0 8px;
}

.about h3 {
  letter-spacing: 2px;
}
.about h3 i {
  font-size: calc(1.3rem + 0.2vw);
}
.about .smallMark {
  font-weight: bold;
  background: transparent;
}
.about .smallMark:nth-of-type(2) {
  color: rgb(224.5, 187.9, 102.5);
}
.about .aboutContext {
  position: relative;
}
.about .aboutContext hr {
  width: 100%;
  border-top: 1px solid #3c3c3c;
  justify-self: start;
  margin: 0.5rem;
}
.about .aboutContext .slogn h4 {
  width: fit-content;
  color: #8b2e2e;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px;
  margin: 0 8px;
  position: relative;
}
.about .aboutContext .slogn span {
  font-size: calc(1.3rem + 0.2vw);
  font-weight: 500;
  color: #2f3a56;
  text-align: end;
}
.about .aboutContext p {
  margin: 8px 0;
}
.about .aboutContext b {
  color: rgb(62.3621621622, 20.6378378378, 20.6378378378);
}
.about .aboutContext ul {
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.about .aboutContext ul p {
  font-weight: 600;
  margin-left: -20px;
}
.about .aboutContext ul li {
  padding-left: 8px;
}
.about .aboutContext ul li::marker {
  content: "✔";
}
.about .aboutImg {
  height: auto;
}
.about .aboutImg img {
  background: white;
  padding: 0;
}
.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 .btnBox h4 {
  font-weight: 700;
  color: #8b2e2e;
  animation: pulse 1s infinite ease-in-out;
}
.about .btnBox .fillBtn {
  letter-spacing: 2px;
}
.about video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.menu .menuItem:last-of-type .menuCardDetail .menuCardDetailTxt p span {
  font-size: calc(0.9rem + 0.2vw) !important;
}
.menu .menuCard {
  height: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}
.menu .menuCard .menuCardBg {
  width: 25%;
  position: absolute;
  top: 0%;
  right: 0%;
  opacity: 0.2;
}
.menu .menuCard .menuCardTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}
.menu .menuCard .menuCardTitle h4 {
  color: #f2c94c;
}
.menu .menuCard .menuCardTitle span {
  font-size: calc(0.9rem + 0.2vw);
  color: #2f3a56;
}
.menu .menuCard .menuCardTitle p {
  margin-top: 0.5rem;
}
.menu .menuCard hr {
  width: 80%;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .menu .menuCard hr {
    display: none;
  }
}
.menu .menuCard .menuCardDetail {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.menu .menuCard .menuCardDetail .menuCardImg {
  aspect-ratio: 1/0.7;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}
.menu .menuCard .menuCardDetail .menuCardImg span {
  width: 100%;
  color: white;
  font-size: calc(0.9rem + 0.2vw);
  text-align: center;
  background: rgba(60, 60, 60, 0.5);
  backdrop-filter: blur(3px);
  padding: 4px 0;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.menu .menuCard .menuCardDetail .menuCardDetailTxt {
  background: rgba(250, 244, 230, 0.5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.menu .menuCard .menuCardDetail .menuCardDetailTxt h5 {
  font-weight: 700;
  color: rgb(82.5078125, 63.609375, 5.9921875);
  letter-spacing: 2px;
}
.menu .menuCard .menuCardDetail .menuCardDetailTxt p {
  font-size: calc(1rem + 0.2vw);
  margin: 0;
}
.menu .menuCard .menuCardDetail .menuCardDetailTxt p span {
  font-size: calc(1.2rem + 0.2vw) !important;
  font-weight: 600;
  color: #8b2e2e;
  padding: 0 4px;
}
.menu .menuCard .menuCardDetail .menuCardDetailTxt span {
  font-size: calc(1rem + 0.1vw);
  font-weight: 500;
  color: rgba(60, 60, 60, 0.8);
}
.menu .menuCard .btnBox .btn {
  letter-spacing: 2px;
}
.menu .menuCard .btnBox .btn i {
  animation: flipInY 1.2s infinite alternate ease-in-out;
}

.services .fillBtn {
  border-radius: 50px;
  padding: 8px 20px;
}
.services .serviceItem {
  position: relative;
}
.services .serviceItem:nth-of-type(even) .serviceCard {
  flex-direction: row-reverse;
}
.services .serviceItem:hover {
  cursor: pointer;
}
.services .serviceItem:hover .serviceCard {
  background: #8b2e2e;
}
.services .serviceItem:hover .serviceCardTxt h4,
.services .serviceItem:hover .serviceCardTxt p,
.services .serviceItem:hover .serviceCardTxt li {
  color: white;
}
.services .serviceItem:hover .serviceCardImg {
  height: 100%;
  padding: 0;
}
.services .serviceItem:hover .serviceCardImg::before {
  opacity: 0;
}
.services .serviceItem:hover .serviceCardImg img {
  transform: scale(1);
  filter: invert(1);
  z-index: 10;
}
.services .serviceCard {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(62.3621621622, 20.6378378378, 20.6378378378, 0.4) 0px 2px 4px 0px;
}
.services .serviceCard .serviceCardImg {
  aspect-ratio: 1;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease-in;
  position: relative;
  isolation: isolate;
}
.services .serviceCard .serviceCardImg::before {
  content: "";
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid #f2c94c;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0.3;
  position: absolute;
  top: 55%;
  left: 56%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.services .serviceCard .serviceCardImg img {
  height: 70%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: all 0.2s ease-in;
}
.services .serviceCard .serviceCardTxt {
  width: 100%;
  height: auto;
  padding: 20px;
  isolation: isolate;
}
.services .serviceCard .serviceCardTxt h4 {
  width: 100%;
  font-weight: 600;
  color: rgb(62.3621621622, 20.6378378378, 20.6378378378);
  text-wrap-style: pretty;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.services .serviceCard .serviceCardTxt ul {
  padding: 0;
  margin: 0;
  margin-top: 12px;
}
.services .serviceBanner .serviceBannerTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.services .serviceBanner .serviceBannerTitle h4 {
  color: #2f3a56;
}
.services .serviceBanner .serviceBannerTitle i {
  color: rgba(47, 58, 86, 0.5);
  font-size: calc(1.3rem + 0.2vw);
  margin: 0 8px;
}
.services .serviceBanner .f-carousel {
  --f-carousel-slide-width: calc(100% / 1.5);
}
@media (min-width: 768px) {
  .services .serviceBanner .f-carousel {
    --f-carousel-slide-width: calc(100% / 3);
  }
}
.services .serviceBanner .f-carousel .f-button {
  width: 40px;
  height: 40px;
  background: rgba(60, 60, 60, 0.5);
}
.services .serviceBanner .f-carousel .f-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 2px;
  stroke: white;
  opacity: 0.5;
}

.process a {
  display: inline-block;
  width: 75%;
}
.process .processList .processItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.process .processList .processCardTitle {
  width: fit-content;
  border-radius: 0;
  margin-bottom: -12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.process .processList .processCardTitle::before {
  content: "";
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #8b2e2e, #f2c94c);
  mix-blend-mode: multiply;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.process .processList .processCardTitle .num {
  width: auto;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 24px;
  z-index: 2;
}
.process .processList .processCardTitle .num span {
  font-size: calc(1rem + 0.3vw);
  color: #8b2e2e;
  opacity: 0.6;
  padding: 8px 0;
  margin-bottom: -8px;
}
.process .processList .processCardTitle .num h6 {
  font-size: calc(3rem + 0.3vw);
  font-weight: 500;
  color: #8b2e2e;
  margin-top: -12px;
  margin-bottom: -12px;
}
.process .processList .processCardTitle .processCardImg {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 0px 0px 0 50px;
}
.process .processList .processCardTitle .processCardImg img {
  max-height: 200px;
}
.process .processList .processCard {
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 4px;
  position: relative;
  isolation: isolate;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.process .processList .processCard .processCardTxt {
  text-align: center;
}
.process .processList .processCard .processCardTxt h4 {
  color: #2f3a56;
  font-size: calc(1.2rem + 0.1vw);
  font-weight: 500;
  letter-spacing: 2px;
  padding: 4px 0px;
}
.process .processList .processCard .processCardTxt ul li {
  list-style: disc;
  color: #3c3c3c;
  margin-bottom: 1rem;
}
.process .processList .processCard .processCardTxt p b {
  color: white;
  background: linear-gradient(45deg, #8b2e2e, #f2c94c);
  padding: 2px 0px;
}
.process .processList hr {
  align-self: center;
  border: 2px solid rgba(60, 60, 60, 0.5);
  opacity: 1;
  margin: 50px 0;
}
.process .processList hr:nth-last-of-type(1) {
  display: none;
}
@media (max-width: 425px) {
  .process .processList hr {
    transform: rotate(90deg);
    margin: 30px 0;
  }
}

.portfolio .catalogList .nav-tabs {
  border: unset;
}
.portfolio img {
  aspect-ratio: 1;
  border-radius: 4px;
}
@media (min-width: 576px) {
  .portfolio .sliderItem:nth-of-type(1) .slick-track {
    transform: unset !important;
  }
}
.portfolio .slick-slider {
  width: 90%;
  margin: auto;
}
.portfolio .slick-slider .slick-next,
.portfolio .slick-slider .slick-prev {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.portfolio .slick-slider .slick-next:before,
.portfolio .slick-slider .slick-prev:before {
  font-size: calc(1.2rem + 0.2vw);
  color: #f2c94c;
}
.portfolio .slick-slider .slick-prev {
  left: -30px;
}
.portfolio .slick-slider .slick-next {
  right: -30px;
}

.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: #3c3c3c;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.contact .contactInfo li a:hover {
  color: #f2c94c;
}
.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: #2f3a56;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid white;
  transition: 0.3s;
  text-shadow: 0px 2px 2px rgba(10.954887218, 13.5187969925, 20.045112782, 0.2), 0px 4px 6px rgba(10.954887218, 13.5187969925, 20.045112782, 0.1), 0px 0px 10px rgba(10.954887218, 13.5187969925, 20.045112782, 0.1);
}
.contact .sns a:hover {
  background: white;
  border: 1px solid #2f3a56;
  text-shadow: unset;
}
.contact .sns a:hover i {
  color: #2f3a56;
}
.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 {
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 0;
}
.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: #8b2e2e;
  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.9rem + 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: rgba(255, 255, 255, 0.8);
  background: linear-gradient(45deg, #8b2e2e, rgb(119.8405405405, 39.6594594595, 39.6594594595));
}
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 */