@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@400;600;700&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  color: #3a2f2a;
  background-color: #faf7f4;
  line-height: 1.8;
  overflow-x: hidden;
}

.bg-light-mist {
  background-color: #efeae6;
}

.section-padding {
  padding: 8rem 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.section-heading {
  position: relative;
  margin-bottom: 3rem;
}
.section-heading.center {
  text-align: center;
}
.section-heading .watermark {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(216, 180, 160, 0.15);
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.1em;
  z-index: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-heading .watermark {
    font-size: 3.5rem;
    top: -20px;
  }
}
.section-heading.center .watermark {
  left: 50%;
  transform: translateX(-50%);
}
.section-heading .title {
  font-family: "Noto Serif TC", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #3a2f2a;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-heading .title {
    font-size: 2rem;
  }
}
.section-heading .heading-line {
  width: 60px;
  height: 3px;
  background-color: #c8a28e;
  position: relative;
  z-index: 1;
}

.premium-navbar {
  background-color: transparent;
  padding: 1.5rem 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.premium-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}
.premium-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.premium-navbar.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(200, 162, 142, 0.3);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.2);
}
.premium-navbar.scrolled .brand-name {
  color: #ffffff;
}
.premium-navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.premium-navbar.scrolled .nav-link:hover {
  color: #c8a28e;
}
.premium-navbar .brand-logo {
  height: 80px;
  width: auto;
  margin-right: 15px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .premium-navbar .brand-logo {
    height: 50px;
  }
}
.premium-navbar .brand-name {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}
.premium-navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 0.95rem;
  margin: 0 15px;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}
.premium-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #c8a28e;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.premium-navbar .navbar-nav .nav-link:hover {
  color: #ffffff;
}
.premium-navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .premium-navbar {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
  }
  .premium-navbar .nav-link {
    margin: 10px 0;
  }
}

.premium-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .premium-hero {
    height: 40vh;
  }
}
.premium-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: slowZoom 20s linear infinite alternate;
}
.premium-hero .hero-content-box {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #c8a28e;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .premium-hero .hero-content-box {
    padding: 2rem 1.5rem;
    margin-top: 4rem;
  }
}
.premium-hero .hero-kicker {
  display: block;
  color: #c8a28e;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Times New Roman", Times, serif;
}
.premium-hero .hero-title {
  font-family: "Noto Serif TC", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .premium-hero .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 576px) {
  .premium-hero .hero-title {
    font-size: 2.8rem;
  }
}
.premium-hero .hero-divider {
  width: 50px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}
.premium-hero .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .premium-hero .hero-subtitle {
    font-size: 0.95rem;
  }
}
.premium-hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.premium-hero .hero-actions .btn-premium {
  padding: 0.8rem 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}
.premium-hero .hero-actions .btn-premium.primary {
  background-color: #c8a28e;
  color: #ffffff;
  border: 1px solid #c8a28e;
}
.premium-hero .hero-actions .btn-premium.primary:hover {
  background-color: transparent;
  color: #c8a28e;
}
.premium-hero .hero-actions .btn-premium.secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.premium-hero .hero-actions .btn-premium.secondary:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #111111;
}
@media (max-width: 576px) {
  .premium-hero .hero-actions .btn-premium {
    width: 100%;
    text-align: center;
  }
}
.premium-hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  z-index: 2;
}
.premium-hero .scroll-indicator .scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 3px;
}
.premium-hero .scroll-indicator .scroll-line {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}
.premium-hero .scroll-indicator .scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  animation: scrollLine 2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
@media (max-width: 991px) {
  .premium-hero .scroll-indicator {
    display: none;
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
.about-section .about-text p {
  font-size: 1.05rem;
  color: rgba(58, 47, 42, 0.85);
  margin-bottom: 1.5rem;
  text-align: justify;
}
.about-section .about-image-wrapper {
  position: relative;
  padding: 2rem 2rem 0 0;
}
.about-section .about-image-wrapper .aboutSwiper {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-section .about-image-wrapper .aboutSwiper .swiper-slide {
  /* 使用 aspect-ratio 確保輪播圖片高度一致，不會因為圖片尺寸不同而跳動 */
  aspect-ratio: 4/5;
}
.about-section .about-image-wrapper .aboutSwiper .swiper-slide .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-image-wrapper .aboutSwiper {
  /* 客製化 Swiper 分頁指示點顏色 */
}
.about-section .about-image-wrapper .aboutSwiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.about-section .about-image-wrapper .aboutSwiper .swiper-pagination-bullet-active {
  background: #c8a28e;
  opacity: 1;
  transform: scale(1.2);
}
.about-section .about-image-wrapper .decorative-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d8b4a0;
  z-index: 1;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .about-section .about-image-wrapper {
    padding: 1rem 1rem 0 0;
  }
  .about-section .about-image-wrapper .aboutSwiper .swiper-slide {
    aspect-ratio: 1/1;
  }
}

.services-section .service-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(58, 47, 42, 0.05);
  border: 1px solid rgba(216, 180, 160, 0.1);
  position: relative;
  overflow: hidden;
}
.services-section .service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #c8a28e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.services-section .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: rgba(216, 180, 160, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a28e;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}
.services-section .service-card h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.services-section .service-card p {
  color: rgba(58, 47, 42, 0.7);
  font-size: 0.95rem;
  margin: 0;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(58, 47, 42, 0.1);
}
.services-section .service-card:hover:before {
  transform: scaleX(1);
}
.services-section .service-card:hover .icon-wrapper {
  background-color: #c8a28e;
  color: #ffffff;
}

.products-section {
  background-color: #faf7f4;
}
.products-section .custom-tabs {
  gap: 0.5rem;
  border-bottom: 1px solid rgba(216, 180, 160, 0.3);
  padding-bottom: 1rem;
}
.products-section .custom-tabs .nav-item .nav-link {
  color: rgba(58, 47, 42, 0.6);
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}
.products-section .custom-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #c8a28e;
  transition: width 0.3s ease;
}
.products-section .custom-tabs .nav-item .nav-link:hover {
  color: #3a2f2a;
}
.products-section .custom-tabs .nav-item .nav-link.active {
  color: #3a2f2a;
  background: transparent;
  font-weight: 700;
}
.products-section .custom-tabs .nav-item .nav-link.active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .products-section .custom-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding-bottom: 0.5rem;
  }
  .products-section .custom-tabs::-webkit-scrollbar {
    display: none;
  }
  .products-section .custom-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .products-section .custom-tabs .nav-item .nav-link {
    white-space: nowrap;
    padding: 0.5rem 1rem;
  }
  .products-section .custom-tabs .nav-item .nav-link::after {
    bottom: -9px;
  }
}
.products-section .product-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(216, 180, 160, 0.1);
}
.products-section .product-card .img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #efeae6;
  display: block;
}
.products-section .product-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.products-section .product-card .img-wrapper .brand-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #3a2f2a;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  font-family: "Times New Roman", Times, serif;
}
.products-section .product-card .img-wrapper .zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 47, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}
.products-section .product-card .img-wrapper .zoom-overlay i {
  color: #ffffff;
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.products-section .product-card:hover {
  box-shadow: 0 15px 30px rgba(58, 47, 42, 0.08);
  transform: translateY(-5px);
}
.products-section .product-card:hover .img-wrapper img {
  transform: scale(1.08);
}
.products-section .product-card:hover .img-wrapper .zoom-overlay {
  opacity: 1;
}
.products-section .product-card:hover .img-wrapper .zoom-overlay i {
  transform: scale(1);
}
.products-section .product-card .info {
  padding: 1.5rem 1rem;
  text-align: center;
}
.products-section .product-card .info .name {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #3a2f2a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-section .product-card .info .status {
  color: #c8a28e;
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.5px;
}
.products-section .product-card:hover {
  box-shadow: 0 15px 30px rgba(58, 47, 42, 0.08);
  transform: translateY(-5px);
}
.products-section .product-card:hover .img-wrapper img {
  transform: scale(1.08);
}
.products-section .btn-outline-custom {
  display: inline-block;
  padding: 0.8rem 3rem;
  color: #3a2f2a;
  border: 1px solid #3a2f2a;
  text-decoration: none;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  background: transparent;
}
.products-section .btn-outline-custom:hover {
  background-color: #3a2f2a;
  color: #faf7f4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.process-section .timeline {
  position: relative;
  padding-left: 3rem;
}
.process-section .timeline:before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(216, 180, 160, 0.3);
}
.process-section .timeline .timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.process-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.process-section .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -3rem;
  width: 24px;
  height: 24px;
  background-color: #faf7f4;
  border: 2px solid #c8a28e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: #c8a28e;
  box-shadow: 0 0 0 4px #faf7f4;
  transition: all 0.3s ease;
}
.process-section .timeline .timeline-item .timeline-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.process-section .timeline .timeline-item .timeline-content h4 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  color: #3a2f2a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.process-section .timeline .timeline-item .timeline-content p {
  color: rgba(58, 47, 42, 0.8);
  margin: 0;
}
.process-section .timeline .timeline-item:hover .timeline-dot {
  background-color: #c8a28e;
  color: #ffffff;
  transform: scale(1.2);
}
.process-section .timeline .timeline-item:hover .timeline-content {
  border-left-color: #c8a28e;
  transform: translateX(5px);
}
@media (max-width: 576px) {
  .process-section .timeline {
    padding-left: 2rem;
  }
  .process-section .timeline:before {
    left: 0;
  }
  .process-section .timeline .timeline-item .timeline-dot {
    left: -2rem;
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
}

.contact-section .contact-info-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  height: 100%;
}
.contact-section .contact-info-card .brand-title {
  font-family: "Noto Serif TC", serif;
  color: #3a2f2a;
}
.contact-section .contact-info-card .contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info-card .contact-list li i {
  font-size: 1.5rem;
  color: #c8a28e;
  margin-right: 15px;
  margin-top: 3px;
}
.contact-section .contact-info-card .contact-list li strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(58, 47, 42, 0.6);
  margin-bottom: 0.2rem;
}
.contact-section .contact-info-card .contact-list li p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-section .contact-info-card .contact-list li p a {
  color: #3a2f2a;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-section .contact-info-card .contact-list li p a:hover {
  color: #c8a28e;
}
.contact-section .contact-info-card .social-links {
  display: flex;
  gap: 1rem;
}
.contact-section .contact-info-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(216, 180, 160, 0.1);
  color: #3a2f2a;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-section .contact-info-card .social-links a svg {
  width: 23px;
  fill: rgb(21, 21, 21);
}
.contact-section .contact-info-card .social-links a:hover {
  background-color: #c8a28e;
  color: #ffffff;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .contact-section .contact-info-card {
    padding: 2rem;
  }
}
.contact-section .map-container {
  border: 1px solid rgba(216, 180, 160, 0.2);
}
.contact-section .map-container iframe {
  display: block;
}

.footer {
  background-color: #3a2f2a;
  color: #ffffff;
  padding: 2rem 0;
}
.footer .copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer .copyright .designed-by {
  color: #d8b4a0;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.footer .copyright .designed-by:hover {
  color: #c8a28e;
}

.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.floating-actions .action-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-actions .action-btn:hover {
  transform: scale(1.1);
}
.floating-actions .action-btn.phone-btn {
  background-color: #3a2f2a;
  color: #ffffff;
  font-size: 1.8rem;
}
.floating-actions .action-btn.line-btn {
  background-color: transparent;
  padding: 0;
}
.floating-actions .action-btn.line-btn svg {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  .floating-actions .action-btn {
    width: 45px;
    height: 45px;
  }
  .floating-actions .action-btn.phone-btn {
    font-size: 1.5rem;
  }
  .floating-actions .action-btn.line-btn svg {
    width: 45px;
    height: 45px;
  }
}/*# sourceMappingURL=all.css.map */