@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marhey:wght@300..700&family=Noto+Sans+TC:wght@100..900&display=swap");
.bg-color {
  background: #faf7f5 !important;
  isolation: isolate;
}
.bg-color .nav-link {
  color: #333333 !important;
  text-shadow: unset !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.2rem + 0.2vw);
  font-weight: 400;
}

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

p,
span,
li,
small {
  font-size: calc(1.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 #333333;
  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;
}
section:nth-of-type(odd):not(:first-of-type) {
  background: rgba(255, 213, 79, 0.8);
}
section:nth-of-type(odd):not(:first-of-type) .sectionTitle span {
  color: white;
}
section:nth-of-type(odd):not(:first-of-type) .sectionTitle hr {
  border-top: 1px solid white;
}

.sectionTitle {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  justify-self: center;
  padding: 24px 12px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.sectionTitle * {
  letter-spacing: normal;
}
.sectionTitle h2 {
  display: inline-block;
  font-size: calc(1.7rem + 0.3vw);
  color: #333333;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1;
  margin: auto;
  padding: 4px 20px;
  font-weight: 600;
  text-shadow: 2px 2px 0px white, 1px 1px 1px rgba(255, 255, 255, 0.5), 2px 6px 10px rgba(255, 255, 255, 0.1);
  position: relative;
  isolation: isolate;
  z-index: -1;
}
.sectionTitle h2::before, .sectionTitle h2::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/decorate/title_bg-1.avif) no-repeat center/contain;
  position: absolute;
  top: 70%;
  left: -7%;
  transform: translate(0%, -50%);
  z-index: -1;
  --anime-position: translate(0%, -50%);
  --swing-angle: 40deg;
  animation: pivotSwing 1s infinite alternate-reverse ease-in-out;
  will-change: transform; /* 提升效能提示瀏覽器提前優化 */
}
.sectionTitle h2::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/decorate/title_bg-2.avif) no-repeat center/contain;
  top: 85%;
  left: unset;
  right: -10%;
  animation: spin 4s linear infinite;
}
.sectionTitle .h2_dec {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: -32px;
  position: relative;
  z-index: -2;
}
.sectionTitle .h2_dec span {
  color: #ffd54f;
  font-size: calc(4rem + 0.3vw);
  font-weight: 600;
  text-align: start;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-wrap-mode: nowrap;
  padding: 4px;
  position: relative;
  isolation: isolate;
  z-index: -1;
  text-shadow: 4px 3px 0px rgb(181, 137.8068181818, 0), 9px 8px 0px rgba(181, 137.8068181818, 0, 0.15);
}
.sectionTitle .h2_dec hr {
  display: none;
  width: 100%;
  border-top: 1px solid #faf7f5;
  margin: 1rem 0 !important;
  opacity: 0.5;
}

.btn {
  width: 100%;
  letter-spacing: 2px;
  color: #f24b3b;
  background: white;
  border: 1px solid #f24b3b;
  padding: 8px 16px;
  transition: 0.3s ease-in;
}
.btn:hover {
  color: #ffd54f;
  background: rgba(51, 51, 51, 0.7);
  border: 1px solid rgba(255, 213, 79, 0.7);
}
.btn:hover span {
  color: rgba(255, 213, 79, 0.7);
}
.btn i {
  padding-right: 2px;
  animation: jello 1s infinite ease-in-out;
}

.fillBtn {
  color: white;
  background: #f24b3b;
  border: 1px solid white;
}
.fillBtn:hover {
  color: #ffd54f;
  background: white !important;
  border: 1px solid #ffd54f;
}
.fillBtn:hover span {
  color: #ffd54f;
}
.fillBtn.LINE {
  background: #2eb900;
}
.fillBtn.LINE:hover {
  color: #2eb900;
  border: 1px solid #2eb900;
  background: white;
}
.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(255, 255, 255, 0.8);
  letter-spacing: 4px;
  border-radius: 50px;
}

.interval {
  height: 40vh;
  max-height: 350px;
  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 .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: #f24b3b;
  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: #ffffff;
  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(51, 51, 51, 0.7);
}
.catalogList .nav-tabs {
  width: 96%;
  gap: 1rem;
  margin: auto;
  justify-content: center;
  padding: 0px 12px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}
.catalogList .nav-tabs .nav-link {
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalogList .nav-tabs .nav-link span {
  font-size: calc(1.05rem + 0.2vw);
  font-weight: 400;
  color: #333333;
  letter-spacing: 2px;
  margin-bottom: -4px;
}
.catalogList .nav-tabs .nav-link.active {
  background: #f24b3b;
}
.catalogList .nav-tabs .nav-link.active span {
  color: white;
}
.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;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: var(--anime-position) scale(0.85);
  }
  to {
    opacity: 1;
    transform: var(--anime-position) scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: var(--anime-position) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: var(--anime-position) scale(1.05);
  }
  70% {
    transform: var(--anime-position) scale(0.9);
  }
  100% {
    transform: var(--anime-position) scale(1);
  }
}
@keyframes spin {
  to {
    transform: var(--anime-position) rotate(360deg);
  } /* 從 0deg 到 360deg */
}
@keyframes pivotSwing {
  from {
    transform: var(--anime-position) rotate(calc(-1 * var(--swing-angle)));
  }
  to {
    transform: var(--anime-position) rotate(var(--swing-angle));
  }
}
body {
  font-family: "Marhey", "Noto Sans TC", sans-serif;
  color: #333333;
  background: #faf7f5;
  overflow-x: hidden;
  position: relative;
}

header .navbar {
  background: white;
  transition: 0.3s ease;
}
header .navbar .navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
}
header .navbar .navbar-brand .brandTxt {
  color: transparent;
  position: relative;
}
header .navbar .navbar-brand .brandTxt h3 {
  font-size: calc(1.7rem + 0.4vw);
  font-weight: 600;
  letter-spacing: 2px;
}
header .navbar .navbar-brand .brandTxt span {
  font-size: calc(1.6rem + 0.4vw);
  line-height: 0.6;
  opacity: 0.4;
  position: absolute;
  top: 38%;
  left: 102%;
  transform: translate(0%, -50%);
  font-weight: 700;
}
header .navbar .navbar-brand .brandTxt .smallMark {
  padding: 4px;
  margin-left: 4px;
  margin-bottom: 16px;
  border-radius: 4px;
}
header .navbar .navbar-brand .brandTxt .smallMark span {
  font-size: calc(0.7rem + 0.2vw);
  color: white;
  line-height: 16px;
  margin-bottom: -4px;
}
header .navbar .navbar-brand .logoImg {
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar .navbar-brand .logoImg img {
  object-fit: contain;
  border-radius: 4px;
}
header .navbar .navbar-toggler {
  border: 0;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-collapse {
  justify-content: end;
  align-items: center;
}
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;
  letter-spacing: 4px;
  color: #333333;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4), 0px 0px 4px rgba(255, 255, 255, 0.2);
}
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 {
  color: #ffd54f;
  background: #f24b3b;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link span {
  width: fit-content;
  color: transparent;
  font-size: calc(0.9rem + 0.2vw);
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: initial;
  padding: 4px 12px;
  padding-top: 8px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: -1;
  isolation: isolate;
}

.banner {
  width: 100%;
  height: 90vh;
  display: flex;
  margin-top: 100px;
  position: relative;
  isolation: isolate;
}
.banner .f-carousel {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .banner .f-carousel {
    width: 100%;
  }
}
.banner .f-carousel .bannerImg {
  width: 100%;
  height: 100%;
  justify-self: center;
}
@media (max-width: 576px) {
  .banner .f-carousel .bannerImg {
    padding: unset;
  }
}
.banner .f-carousel .bannerImg img {
  aspect-ratio: 1/0.6;
}
.banner .f-carousel .f-button svg {
  width: 100px;
  height: 100px;
  stroke-width: 2px;
  stroke: white;
  opacity: 0.5;
}
.banner .txt-content {
  width: 75%;
  min-width: 350px;
  max-width: 650px;
  height: auto;
  backdrop-filter: blur(3px);
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  isolation: isolate;
  z-index: 10;
}
.banner .txt-content::before {
  content: "";
  width: 97%;
  height: 93%;
  border: 1px solid white;
  mix-blend-mode: multiply;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .banner .txt-content {
    width: auto;
  }
  .banner .txt-content::before {
    content: "";
    width: 95%;
    height: 95%;
  }
}
.banner .txt-content .bannerLogo {
  width: 100%;
}
@media (max-width: 767.98px) {
  .banner .txt-content .bannerLogo {
    margin-bottom: 1rem;
  }
}
.banner .txt-content h1 {
  font-size: calc(3.2rem + 0.5vw);
  font-weight: 600;
  color: white;
  letter-spacing: 8px;
  line-height: 1.2;
  text-shadow: 4px 3px 0px rgb(138.7942583732, 20.5358851675, 9.2057416268), 9px 8px 0px rgba(138.7942583732, 20.5358851675, 9.2057416268, 0.15);
}
.banner .txt-content .smallMark {
  color: white;
  background: rgba(255, 255, 255, 0.8);
  writing-mode: vertical-lr;
  padding: 12px 4px;
  border-radius: 50px;
  margin: 15% 5%;
}
.banner .txt-content .smallMark h5 {
  margin-right: 4px;
  margin-left: -4px;
}
.banner .txt-content span {
  display: inline-block;
  color: white;
  font-size: calc(1.1rem + 0.2vw);
  font-weight: 300;
  text-align: center;
  margin-top: 12px;
  text-wrap-style: pretty;
  text-shadow: 1px 1px 2px rgb(182, 138.2, 109);
}
.banner .txt-content .btnBox .col-auto:nth-of-type(even) {
  margin-top: 50px;
}
.banner .txt-content .btnBox .btn {
  animation: tada 1s infinite ease-in-out;
}
.banner .txt-content .btnBox .btn i {
  animation: unset;
}
.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;
}
@media (min-width: 200px) {
  .banner .txt-content .fillBtn {
    aspect-ratio: 1;
  }
  .banner .txt-content .fillBtn i {
    font-size: calc(1.5rem + 0.2vw);
    letter-spacing: normal;
    padding: 0;
  }
  .banner .txt-content .fillBtn span {
    display: none;
  }
}
.banner .txt-content .fillBtn 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(199, 165.4, 143);
}
.about .aboutContext {
  padding: 0;
  position: relative;
}
.about .aboutContext .slogn h4 {
  width: fit-content;
  color: #f24b3b;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about .aboutContext .slogn hr {
  width: auto;
  flex-grow: 1;
  margin: 10px 0;
}
.about .aboutContext .slogn span {
  font-size: calc(1.3rem + 0.2vw);
  font-weight: 500;
  color: #ffffff;
  text-align: end;
}
.about .aboutContext p {
  margin: 8px 0;
}
@media (max-width: 991.98px) {
  .about .aboutContext p {
    text-align: center;
  }
}
.about .aboutContext b {
  color: rgb(186.6220095694, 27.6124401914, 12.3779904306);
}
.about .aboutImgBox {
  padding: 1rem;
  margin: auto;
}
.about .aboutImgBox .aboutImg {
  height: 40vh;
  border: 10px solid white;
  padding: 0;
  position: relative;
  box-shadow: rgba(182, 138.2, 109, 0.25) 0px 6px 12px -2px, rgba(182, 138.2, 109, 0.3) 0px 3px 7px -3px;
}
.about .aboutImgBox .aboutImg:nth-of-type(1) {
  height: auto;
}
.about .aboutImgBox .aboutImg:nth-of-type(1) img {
  object-fit: contain;
}
.about .aboutImgBox .aboutImg:nth-of-type(odd):not(:first-child) {
  transform: rotate(-15deg);
  margin: auto -24px;
  margin-top: 40px;
}
.about .aboutImgBox .aboutImg:nth-of-type(2) {
  transform: rotate(5deg);
  margin-top: -10px;
}
.about .aboutImgBox .aboutImg:nth-of-type(3) {
  transform: rotate(-20deg);
  margin-top: 20px;
}
.about .aboutImgBox .aboutImg img {
  padding: 0;
}

.mix p i {
  font-size: calc(1.2rem + 0.2vw);
  animation: bounce 0.8s infinite ease-in-out;
}
.mix p i:nth-of-type(2) {
  animation-delay: 0.2s;
}
.mix p i:nth-of-type(3) {
  animation-delay: 0.3s;
}
.mix .bntBox {
  width: 100%;
}
.mix .mixList .scrollCarouselItem {
  text-align: center;
  margin: 40px 0;
}
.mix .mixList h4 {
  color: rgb(186.6220095694, 27.6124401914, 12.3779904306);
  background: #faf7f5;
  border: 2px solid rgb(232, 176.6363636364, 0);
  border-radius: 50px;
  padding: 2px 20px;
  padding-top: 10px;
}
.mix .mixList .mixCardImg {
  border: 8px solid white;
  transform: rotate(-10deg);
}
.mix .mixList .f-carousel {
  --f-carousel-gap: 20px;
  --f-carousel-slide-width: calc((100% - (var(--f-carousel-gap) * 2)) / 3);
}
@media (max-width: 768px) {
  .mix .mixList .f-carousel {
    --f-carousel-slide-width: calc(
      (100% - (var(--f-carousel-gap) * 2)) / 2
    );
  }
}
@media (max-width: 576px) {
  .mix .mixList .f-carousel {
    --f-carousel-slide-width: calc((100% - (var(--f-carousel-gap) * 2)));
  }
}
.mix .mixList .f-carousel .f-carousel__viewport {
  padding: 30px 0;
}

.product .PDcard {
  position: relative;
  overflow: hidden;
}
.product .PDcard i {
  font-size: calc(1.1rem + 0.2vw);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 50px 0;
  padding: 8px;
  padding-right: 1rem;
  padding-bottom: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
.product .PDcard img {
  transition: 0.3s ease-in-out;
}
.product .PDcard:hover img {
  transform: scale(1.2);
}
.product .PDbrief {
  align-self: stretch;
  position: relative;
}
.product .PDbrief .noteMark {
  width: 100%;
  height: auto;
  color: #333333;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  isolation: isolate;
  pointer-events: none;
}
.product .PDbrief .noteMark::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(250, 247, 245, 0.7);
  mix-blend-mode: multiply;
  backdrop-filter: blur(2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.product .PDbrief .noteMark i {
  margin-right: 4px;
}
.product .PDbrief .noteMark p {
  font-weight: 400;
}
.product .PDbrief .PDbrief-context {
  width: 100%;
  height: 100%;
}

.process .processBox {
  position: relative;
}
.process .processBox .processBoxImg {
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .process .processBox .processBoxImg {
    height: 100%;
    opacity: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.process .processBox .processBoxImg img {
  width: 100%;
  height: 85%;
  object-position: center right;
}
@media (min-width: 992px) {
  .process .processList {
    margin-left: -12%;
  }
}
.process .processItem {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .process .processItem:nth-of-type(even) .processCard {
    padding-left: 20%;
  }
}
@media (max-width: 576px) {
  .process .processItem:nth-of-type(even) .processCard {
    padding-left: 10%;
  }
}
@media (min-width: 992px) {
  .process .processItem:nth-of-type(1) .processCard, .process .processItem:nth-of-type(7) .processCard {
    margin-left: -20%;
  }
  .process .processItem:nth-of-type(2) .processCard, .process .processItem:nth-of-type(6) .processCard {
    padding-left: 10%;
  }
  .process .processItem:nth-of-type(3) .processCard, .process .processItem:nth-of-type(5) .processCard {
    padding-left: 25%;
  }
  .process .processItem:nth-of-type(4) .processCard {
    padding-left: 30%;
  }
}
.process .processCard {
  width: fit-content;
  position: relative;
}
.process .processCard .num {
  margin: -3% 0;
}
.process .processCard .num span {
  font-size: calc(1rem + 0.4vw);
  font-weight: 600;
  color: #f24b3b;
  opacity: 0.5;
}
.process .processCard .num span:nth-of-type(2) {
  opacity: 1;
  font-size: calc(3rem + 0.4vw);
}
.process .processCard .processCardTxt {
  position: relative;
  margin: 0;
  z-index: 1;
}
.process .processCard .processCardTxt h4 {
  font-size: calc(1.2rem + 0.2vw);
  margin-bottom: -1rem;
}
.process .processCard .processCardTxt ul {
  padding: 0;
  margin: 0;
}
.process .processCard .processCardImg {
  width: 90px;
  height: 90px;
  background: #faf7f5;
  border: 8px solid rgb(255, 200.8295454545, 28);
  border-radius: 50%;
  padding: 1rem;
}
.process .processCard .processCardImg img {
  object-fit: contain;
}

.portfolio .catalogList .nav-tabs {
  border: unset;
}
.portfolio img {
  aspect-ratio: 1;
  border-radius: 4px;
}
.portfolio .slick-slider {
  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: #ffffff;
}
.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: #333333;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.contact .contactInfo li a:hover {
  color: #faf7f5;
  text-shadow: 0px 1px 4px rgba(79, 60.1477272727, 0, 0.4);
}
.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: rgb(79, 60.1477272727, 0);
  background: #faf7f5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgb(181, 137.8068181818, 0);
  transition: 0.3s;
}
.contact .sns a:hover {
  color: #ffffff;
  background: #f24b3b;
  border: 1px solid white;
}
.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: #ffffff;
  background: #f24b3b;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
  border-radius: 50%;
}
.sidebar ul li a:hover {
  color: #333333;
  background: #ffd54f;
  border: 1px solid rgba(51, 51, 51, 0.2);
}
.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: rgba(255, 255, 255, 0.8);
  background: #f24b3b;
}
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 */