@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&display=swap");
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes translate_top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes translate_bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bg_color {
  0% {
    background-color: white;
  }
  100% {
    background-color: rgb(163, 12, 20);
  }
}
.key-visual {
  min-height: calc(95dvh - 86px);
  height: auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.key-visual .visual-content {
  margin: auto;
  padding: 4rem 0;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: opacity 1.2s ease forwards;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.key-visual .kv-bg {
  background-image: url("../images/index-bg.png");
  background-size: 100% 100%;
  background-position: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.key-visual h1 {
  color: rgb(184, 162, 117);
  font-size: 30px;
  font-weight: 600;
}
.key-visual h2 {
  color: white;
  border-left: 1px white solid;
  padding-top: 3rem;
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
  font-size: 30px;
  transition: padding-top 0.8s ease;
}
.key-visual .h2-container {
  height: 150px;
}
.key-visual h4, .key-visual p {
  color: white;
}
.key-visual h4 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 15px;
}
.key-visual .more {
  color: white;
  font-size: 18px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 15;
}
.key-visual .kv-container:hover h2 {
  padding-top: 4rem;
}
.key-visual .kv-container:hover .more i {
  animation: translate_bottom 0.8s ease forwards;
}
.key-visual .kv-container:hover .kv-line {
  width: 100px;
}
.key-visual .kv-line {
  display: inline-flex;
  border-top: 1px white solid;
  width: 120px;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
  transition: width 0.8s ease;
}

.index-title {
  display: flex;
  flex-direction: column;
}
.index-title h3 {
  font-size: 25px;
  font-weight: 400;
  color: rgb(184, 162, 117);
  margin: 0;
}
.index-title p {
  font-size: 14px;
  color: rgb(125, 125, 125);
}

.index-title.center {
  align-items: center;
}

.index-title.start {
  align-items: start;
}

.line {
  border-top: 3px rgb(163, 12, 20) solid;
  width: 300px;
  margin: 1rem 0;
}

.service {
  padding: 5rem 0;
  position: relative;
  z-index: 5;
}
.service .service-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 120dvh;
  background-image: url("../images/content-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -50%;
}
.service .service-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  position: relative;
  z-index: 5;
}
.service .service-card {
  width: calc((100% - 3rem) / 4);
}
.service .service-card h6 {
  font-size: 20px;
  color: rgb(163, 12, 20);
  font-weight: 400;
  margin-top: 1rem;
  height: 48px;
}
.service .service-card p {
  font-size: 14px;
  height: 150px;
  padding-left: 1rem;
  border-left: 2px rgb(163, 12, 20) solid;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  transition: height 0.8s ease;
  transform-origin: top;
}
.service .service-card:hover p {
  height: 130px;
}
.service .service-card:hover .service-img {
  background-image: linear-gradient(rgba(184, 162, 117, 0.3), rgba(184, 162, 117, 0.3)), url("../images/index-product.png");
}
.service .service-img {
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 13/8;
  background-image: url("../images/index-product.png");
  border-radius: 10px;
}
.service .service-img img {
  height: 100%;
  border-radius: 10px;
}
.service .service-btn {
  padding: 1rem 1.5rem;
  background-color: rgb(163, 12, 20);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 25px;
  font-weight: 400;
  position: relative;
  z-index: 5;
  display: none;
}
.service .service-btn:hover {
  background-color: rgb(122, 0, 6);
}

.introduction {
  background-image: url("../images/introduction.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20rem 0;
  position: relative;
  z-index: 5;
}
.introduction .intro-mb {
  display: none;
}
.introduction .introduction-group {
  display: flex;
  gap: 3rem;
}
.introduction .introduction-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.introduction .introduction-text h5 {
  color: rgb(163, 12, 20);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.introduction .introduction-text p {
  color: white;
  margin: 0;
  line-height: 25px;
}

.about-index {
  padding-bottom: 15rem;
}
.about-index .about-group {
  margin-top: 3rem;
}

.story {
  padding: 15rem 0;
  background-image: url("../images/story.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.story .story-content {
  margin: 3rem 0;
  display: flex;
  gap: 3rem;
}
.story .story-content p {
  line-height: 25px;
  color: white;
  margin-bottom: 1.5rem;
}
.story .story-text {
  width: 50%;
}
.story .story-img {
  aspect-ratio: 13/8;
  width: 50%;
}
.story .story-img img {
  height: 100%;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .key-visual .visual-content {
    margin: auto;
    padding: 5rem 0;
  }
  .service .service-card p {
    height: 250px;
  }
  .service .service-card p:hover {
    height: 230px;
  }
  .story {
    margin-top: 65rem;
  }
}
@media (max-height: 600px) {
  .key-visual {
    min-height: 500px;
  }
  .key-visual .visual-content {
    padding: 2rem 0 1rem 0;
  }
  .key-visual h1 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .key-visual h2 {
    font-size: 20px;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .key-visual .h2-container {
    height: auto;
    min-height: 80px;
  }
  .key-visual h4 {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .key-visual p {
    font-size: 14px;
  }
}
@media (max-height: 480px) {
  .key-visual {
    min-height: 400px;
  }
  .key-visual .visual-content {
    padding: 1rem 0 0.5rem 0;
  }
  .key-visual h1 {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  .key-visual h2 {
    font-size: 18px;
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  .key-visual .h2-container {
    height: auto;
    min-height: 60px;
  }
  .key-visual h4 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  .key-visual p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .key-visual, .story {
    background-position: center;
    background-size: cover;
  }
  .key-visual h1 {
    font-size: 20px;
  }
  .key-visual h2 {
    margin-bottom: 2rem;
    padding-top: 2rem;
    font-size: 20px;
  }
  .key-visual .h2-container {
    height: 100px;
  }
  .key-visual h4, .key-visual p {
    font-size: 14px;
  }
  .key-visual .visual-content {
    margin: auto;
    padding: 5rem 0;
  }
  .service .service-group {
    flex-direction: column;
  }
  .service .service-card {
    width: 100%;
  }
  .service .service-btn {
    font-size: 22px;
  }
  .service .service-bg {
    bottom: -20rem;
  }
  .introduction {
    background-image: url("../images/introduction-mb.png");
    padding: 15rem 0;
  }
  .introduction .intro-pc {
    display: none;
  }
  .introduction .intro-mb {
    display: flex;
  }
  .introduction .introduction-group {
    flex-direction: column;
  }
  .introduction .introduction-text h5 {
    font-size: 25px;
  }
  .introduction .introduction-text p {
    font-size: 14px;
  }
  .line {
    width: 220px;
  }
  .story {
    margin-top: 80rem;
  }
  .story .story-content {
    flex-direction: column;
  }
  .story .story-img, .story .story-text {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  .about-index {
    padding-bottom: 0;
  }
  .index-title.start {
    align-items: center;
  }
}
@media (max-width: 767px) and (max-height: 600px) {
  .key-visual {
    min-height: 450px;
  }
  .key-visual .visual-content {
    padding: 2rem 0 1rem 0;
  }
  .key-visual h1 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  .key-visual h2 {
    font-size: 16px;
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  .key-visual .h2-container {
    height: auto;
    min-height: 60px;
  }
  .key-visual h4 {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  .key-visual p {
    font-size: 13px;
  }
  .key-visual .more {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    font-size: 16px;
    z-index: 15;
  }
}
@media (max-width: 480px) and (max-height: 480px) {
  .key-visual {
    min-height: 350px;
  }
  .key-visual .visual-content {
    padding: 1rem 0 0.5rem 0;
  }
  .key-visual h1 {
    font-size: 16px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .key-visual h2 {
    font-size: 14px;
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .key-visual .h2-container {
    height: auto;
    min-height: 40px;
  }
  .key-visual h4 {
    font-size: 13px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .key-visual p {
    font-size: 12px;
    line-height: 1.3;
  }
  .key-visual .more {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    font-size: 14px;
    z-index: 15;
  }
}
.about {
  position: relative;
}
.about .banner-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/about-banner(new).png");
  background-position: center 80%;
  background-size: cover;
  background-repeat: no-repeat;
}
.about h5 {
  font-size: 22px;
  font-weight: 400;
  color: rgb(184, 162, 117);
  margin-bottom: 1.5rem;
}
.about .about-content {
  margin: 5rem 0;
  gap: 2rem;
}
.about .about-content li, .about .about-content p {
  margin: 0;
  line-height: 25px;
  font-weight: 500;
}
.about .about-img, .about .about-text {
  width: 50%;
}
.about .about-container {
  position: relative;
  padding-bottom: 8rem;
}
.about .about-group {
  display: flex;
  gap: 1rem;
  position: absolute;
  margin-top: 2rem;
  z-index: 5;
  left: 0;
  right: 0;
}
.about .about-card {
  width: calc((100% - 3rem) / 4);
  padding: 4rem 2rem;
  border: 1.5px rgb(235, 235, 235) solid;
  border-radius: 20px;
  text-align: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 343px;
}
.about .about-card:hover {
  animation: bg_color 0.8s ease forwards;
}
.about .about-card:hover .card-img {
  animation: translate_top 0.8s ease forwards;
}
.about .about-card:hover .card-text {
  animation: translate_bottom 0.8s ease forwards;
  margin-top: 0;
}
.about .about-card:hover .about-line {
  display: block;
}
.about .card-text {
  margin-top: 1.5rem;
}
.about .about-line {
  display: none;
  border-left: 2px black solid;
  height: 40px;
}
.about .card-img {
  margin: auto;
}
.about .card-img img {
  width: 107px;
  height: 100%;
}
.about .card-title {
  font-size: 23px;
  font-weight: 400;
}
.about .card-subtitle {
  font-size: 14px;
  color: rgb(132, 130, 130);
}
.about .about-bottom {
  background-image: url("../images/story.png");
  background-size: cover;
  height: 60dvh;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .about .about-content, .about .about-group {
    flex-direction: column;
    align-items: center;
  }
  .about .about-img, .about .about-text {
    width: 100%;
  }
  .about .about-group.principle {
    position: relative;
  }
  .about .about-card {
    width: 210px;
  }
  .about .about-container {
    padding-bottom: 15rem;
  }
  .about .about-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .about .about-content, .about .about-group {
    flex-direction: column;
    align-items: center;
  }
  .about .about-img, .about .about-text {
    width: 100%;
  }
  .about .about-group.principle {
    position: relative;
  }
  .about .about-card {
    width: 210px;
  }
  .about .about-container {
    padding-bottom: 15rem;
  }
  .about .about-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }
}

.faq {
  background-position: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../images/content-bg.png");
}
.faq .banner-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/about-banner(new).png");
  background-position: center 80%;
  background-size: cover;
  background-repeat: no-repeat;
}
.faq .faq-content {
  padding-top: 8rem;
  padding-bottom: 15rem;
  min-height: 80dvh;
}
.faq .faq-icon {
  aspect-ratio: 1/1;
  width: 20px;
  margin-right: 1rem;
}

.accordion-item {
  border: none !important;
  background-color: transparent !important;
}

.accordion-button {
  background-color: rgb(233, 233, 233) !important;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  color: black !important;
}
.accordion-button:after {
  background-image: url("../images/vector-2x.png") !important;
}

.accordion-body {
  background-color: rgb(163, 12, 20);
  color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .faq .faq-content {
    padding-top: 4rem;
  }
}
.contact .banner-bg {
  background-image: url("../images/index-bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact .contact-form {
  margin: 5rem 0 10rem 0;
}
.contact .info-two {
  display: flex;
  gap: 1rem;
}
.contact .info-item {
  display: flex;
  margin-bottom: 1rem;
}
.contact .info-item:focus-within .info-icon {
  background-color: rgb(184, 162, 117);
}
.contact .info-item .info-content {
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: rgba(184, 162, 117, 0.1);
  padding: 0.5rem;
  flex: 1;
}
.contact .info-item .info-title {
  width: 25%;
  padding-left: 0.5rem;
  white-space: nowrap;
}
.contact .info-item .info-title.memo-title {
  width: 10%;
}
.contact .info-item .info-box.memo-text {
  height: 100px;
}
.contact .info-item .info-box {
  border: none;
  border-left: 1px rgb(170, 170, 170) solid;
  outline: 0;
  width: 80%;
  background-color: transparent;
  padding: 0 1rem;
}
.contact .info-item .info-box:focus + .info-icon {
  background-color: rgb(184, 162, 117);
}
.contact .info-item .name-box {
  width: 80%;
}
.contact .info-item .gender-radio {
  display: none;
}
.contact .info-item .gender-radio:checked + .gender {
  color: rgb(163, 12, 20);
}
.contact .info-item .gender {
  white-space: nowrap;
  cursor: pointer;
}
.contact .info-icon {
  border-radius: 6px;
  background-color: rgb(163, 12, 20);
  width: 35px;
  height: 35px;
  padding: 6px;
  margin-right: 1rem;
}
.contact .send-btn {
  color: white;
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  border-radius: 20px;
  background-color: rgb(122, 0, 6);
}
.contact .send-btn:hover {
  background-color: rgb(163, 12, 20);
}
.contact .contact-bottom {
  background-image: url("../images/bottom-bg.png");
  height: 20dvh;
  position: relative;
}
.contact .contact-bottom .company-line {
  position: absolute;
  right: 0;
  top: -20%;
  background: linear-gradient(to left, rgb(122, 0, 6), rgb(163, 12, 20));
  padding: 1rem;
  width: 40%;
}
.contact .contact-bottom .code {
  aspect-ratio: 1/1;
  width: 66px;
  margin-right: 1rem;
}
.contact .contact-bottom h6 {
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin: 0;
  line-height: 1.8;
}
.contact .contact-note {
  font-size: 14px;
  color: rgb(163, 12, 20);
}
@media (max-width: 767px) {
  .contact .contact-form {
    margin: 2rem 0 7rem 0;
  }
  .contact .info-two {
    flex-direction: column;
    gap: 0;
  }
  .contact .info-icon {
    margin-right: 0.5rem;
  }
  .contact .info-item .info-title, .contact .info-item .info-title.memo-title {
    width: 30%;
    padding-left: 0.25rem;
  }
  .contact .info-item .info-box {
    width: 75%;
  }
  .contact .name-box {
    width: 75%;
  }
  .contact .contact-bottom .company-line {
    width: 60%;
  }
}

.product-banner-bg {
  background-image: url("../images/product-banner.png");
}

.product {
  padding: 5rem;
  background-image: url("../images/content-bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  min-height: 80dvh;
}
.product .category-container {
  border-radius: 30px;
  border: 1px rgb(235, 235, 235) solid;
  padding: 0.5rem 1rem;
  align-items: center;
  background-color: white;
}
.product .category-container p {
  flex-shrink: 0;
  font-size: 14px;
}
.product .product-group {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.product .product-item {
  width: calc((100% - 2rem) / 3);
  background-color: rgb(243, 243, 243);
  border-radius: 10px;
  padding: 2rem 1rem;
  color: black;
  text-decoration: none;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.product .product-item:nth-child(3n) {
  margin-right: 0;
}
.product .product-item:hover {
  background-color: white;
  border: 1px rgb(184, 162, 117) solid;
}
.product .product-item:hover .product-img {
  animation: scale 0.5s ease forwards;
}
.product .product-item .product-name {
  font-size: 18px;
}
.product .product-item .product-subtitle {
  color: rgb(185, 185, 185);
  font-size: 12px;
  margin: 0;
}
.product .product-item .product-img {
  aspect-ratio: 760/506;
  width: 100%;
}
.product .product-item .product-img img {
  height: 100%;
}

.form-select.category {
  border: none;
  font-size: 14px;
}

.page .page-item {
  margin: 0 0.25rem;
  border-radius: 50%;
}
.page .page-item:first-child .page-link, .page .page-item:last-child .page-link {
  border-radius: 50%;
}
.page .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  background-color: transparent;
  border: transparent;
  color: rgb(142, 123, 84);
  border-radius: 50%;
}
.page .page-link:hover {
  background-color: rgb(132, 130, 130);
  color: white;
}
.page .page-item.active .page-link {
  background-color: rgb(132, 130, 130);
  border-radius: 50%;
}
.page .top-page, .page .end-page {
  font-size: 12px;
  text-wrap: nowrap;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .product {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 2rem 0;
  }
  .product .product-item {
    width: 100%;
    margin-right: 0;
  }
}
.detail {
  position: relative;
}
.detail .detail-container {
  background-image: url("../images/detail-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 25rem;
  margin-top: 10rem;
}
.detail .detail-content {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: -5%;
}
.detail .detail-info {
  display: flex;
  gap: 5rem;
  position: relative;
  z-index: 10;
  margin-top: 5rem;
}
.detail .detail-text {
  width: 40%;
  padding-top: 3rem;
}
.detail .detail-text h5 {
  border-top: 2px black solid;
  border-bottom: 2px black solid;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
.detail .detail-text p {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 2px black solid;
  color: rgb(136, 136, 136);
}
.detail .detail-img {
  aspect-ratio: 760/506;
  width: 60%;
  cursor: pointer;
  position: relative;
}
.detail .detail-img img {
  height: 100%;
}
.detail .more-image-left, .detail .more-image-right {
  position: absolute;
  font-weight: 900;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(163, 12, 20);
}
.detail .more-image-left {
  left: 10px;
}
.detail .more-image-right {
  right: 10px;
}
.detail .spec {
  padding: 5rem 0;
}
.detail .spec .spec-content {
  color: white;
  text-align: center;
  padding: 5rem 0;
  line-height: 1.8;
}
.detail .spec .file a {
  color: rgb(132, 130, 130);
  text-decoration: none;
}
.detail .spec .file a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .detail .detail-container {
    background-size: cover;
    padding-top: 20rem;
  }
  .detail .detail-content {
    top: -10%;
  }
  .detail .detail-top {
    padding-top: 5rem;
  }
  .detail .detail-info {
    flex-direction: column;
    gap: 2rem;
  }
  .detail .detail-img, .detail .detail-text {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
  .detail .detail-text {
    padding-top: 0;
  }
  .detail .detail-text h5, .detail .detail-text p {
    border-color: rgb(235, 235, 235);
    border-width: 1px;
    color: rgb(235, 235, 235);
  }
  .detail .detail-text p {
    font-size: 13px;
  }
  .detail .spec {
    padding: 2rem 0 5rem 0;
  }
  .detail .spec .spec-content {
    padding: 2rem 0 5rem 0;
  }
}

:root {
  --header-mobile-height: 82px;
  --header-height: 173px;
}

body {
  font-family: "Inter", sans-serif !important;
  min-height: 100dvh;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px transparent inset;
  -webkit-text-fill-color: #223148;
}

input, textarea, [contenteditable] {
  touch-action: auto;
}

.custom-container {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

header {
  background-color: black;
  border-bottom: 5px rgb(163, 12, 20) solid;
  padding: 1rem 5rem;
  align-items: center;
}
header .logo {
  width: 186px;
}
header .nav-bar {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
}
header .nav-bar a {
  color: white;
  text-decoration: none;
}
header .nav-bar a:hover {
  color: rgb(142, 123, 84);
}
header .nav-bar .separate {
  color: white;
  margin: 0 5rem;
}
header .nav-bar li {
  transition: margin 0.8s ease;
}
header .nav-bar li:hover {
  margin: 0 2rem;
}
header .contact-btn {
  text-decoration: none;
  color: white;
  background-color: rgb(142, 123, 84);
  border-radius: 10px;
  padding: 0.3rem 1.5rem;
}
header .contact-btn:hover {
  background-color: rgb(184, 162, 117);
  color: white;
}
header .menu-btn {
  display: none;
}

footer {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  border-top: 5px rgb(163, 12, 20) solid;
}
footer .footer-item {
  border-right: 1px white solid;
  padding: 1.5rem 3rem 1.5rem 0;
}
footer h6 {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.8;
}
footer .store-group {
  display: flex;
  gap: 5rem;
  padding-left: 3rem;
}
footer .store-title {
  color: rgb(157, 138, 98);
}
footer p {
  margin: 0;
  color: rgb(185, 185, 185);
}

.large-banner {
  min-height: 40dvh;
  height: auto;
}

.small-banner {
  min-height: 20dvh;
  height: auto;
}

.banner {
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  position: relative;
}
.banner .banner-bg, .banner .product-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.banner .banner-container {
  position: relative;
  z-index: 5;
}
.banner .banner-title {
  display: flex;
}
.banner .banner-title .banner-line {
  border-left: 1px rgb(184, 162, 117) solid;
}
.banner .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.banner h4 {
  font-size: 25px;
  color: white;
}
.banner p {
  font-size: 14px;
  color: rgb(125, 125, 125);
  margin: 0;
}
.banner .banner-link .index-link, .banner .banner-link .active-link {
  text-decoration: none;
}
.banner .banner-link .index-link {
  color: white;
}
.banner .banner-link .active-link {
  color: rgb(184, 162, 117);
}
.banner .banner-link .bi-chevron-right {
  color: rgb(185, 185, 185);
  margin: 0 1rem;
}

.red-bar {
  position: absolute;
  background-image: url("../images/red-bar.png");
  height: 380px;
  z-index: 5;
  right: 0;
}

.red-bar.index {
  background-size: 100% 100%;
  width: 50%;
  bottom: -12%;
}

.red-bar.detail {
  background-size: cover;
  width: 40%;
  top: 123px;
}

.mobile-menu {
  position: absolute;
  top: 82px;
  z-index: 50;
  background-image: url("../images/story.png");
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: calc(100dvh - var(--header-mobile-height));
  display: none;
}
.mobile-menu .esc {
  color: white;
  font-size: 30px;
  position: absolute;
  margin: 1rem;
  top: 0;
  right: 0;
}
.mobile-menu .nav-mb {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobile-menu .nav-mb li {
  padding: 1rem 0;
}
.mobile-menu .nav-mb a {
  color: white;
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px #fff inset;
  -webkit-text-fill-color: #223148;
}

.modal {
  height: auto !important;
}
.modal .modal-dialog {
  height: 100dvh;
  display: grid;
  place-content: center;
  max-width: 100%;
}
.modal .modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
}
.modal .modal-header {
  border: none;
  padding-bottom: 0;
}
.modal .modal-body {
  padding-bottom: 2rem;
}
.modal .btn-close {
  color: white;
  cursor: pointer;
}
.modal .btn-close:hover {
  color: white;
}
.modal .img-browser {
  display: flex;
  gap: 2rem;
  max-height: 480px;
}
.modal .main-img {
  width: 75%;
  max-width: 900px;
  aspect-ratio: 760/506;
}
.modal .main-img img {
  height: 100%;
}
.modal .thumbnails {
  width: 25%;
  overflow-y: auto;
  padding-right: 1rem;
}
.modal .thumbnails::-webkit-scrollbar {
  height: 2px;
  width: 10px;
}
.modal .thumbnails::-webkit-scrollbar-track {
  background-color: gray;
  border-radius: 10px;
  margin: 10px 130px;
}
.modal .thumbnails::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: white;
}

.thumbnail:hover .thumbnail-image, .selected .thumbnail-image {
  border: 2px solid white;
}

.thumbnail-image {
  width: 160px;
  aspect-ratio: 760/506;
  margin: 20px auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 4px solid transparent;
}

.arrow {
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
}

.arrow.right {
  right: 1%;
}

.arrow.left {
  left: 1%;
}

@media (max-width: 1024px) and (min-width: 768px) {
  header {
    padding: 1rem;
  }
  header .nav-bar .separate {
    margin: 0 2rem;
  }
  footer {
    padding: 3rem 1rem;
  }
  footer .store-group {
    gap: 1.5rem;
    padding-left: 1.5rem;
  }
  .red-bar.detail {
    top: 50px;
  }
  .modal .thumbnail-image {
    width: 120px;
  }
  .modal .main-img, .modal .thumbnails {
    flex: none;
  }
  .modal .main-img {
    max-width: 450px;
    display: flex;
    align-items: center;
  }
  .modal .main-img img {
    height: auto;
  }
}
@media (max-width: 767px) {
  header {
    padding: 1rem;
  }
  header .nav-bar, header .contact-btn {
    display: none;
  }
  header .logo {
    width: 160px;
  }
  header .menu-btn {
    display: block;
    color: white;
    font-size: 30px;
  }
  footer {
    flex-direction: column;
  }
  footer .footer-item {
    border: none;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0;
  }
  footer .store-group {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  footer .store-item {
    text-align: center;
  }
  .large-banner {
    height: 20dvh;
  }
  .banner .banner-link {
    display: none;
  }
  .red-bar {
    height: 190px;
    background-size: cover;
  }
  .red-bar.index {
    bottom: 2%;
  }
  .red-bar.detail {
    top: 50px;
  }
  .modal .modal-content {
    width: 70%;
    margin: 0 auto;
  }
  .modal .img-browser {
    flex-direction: column;
  }
  .modal .thumbnail-image {
    width: 120px;
  }
  .modal .thumbnail {
    margin-right: 1rem;
  }
  .modal .thumbnail:last-child {
    margin-right: 0;
  }
  .modal .main-img, .modal .thumbnails {
    flex: none;
  }
  .modal .main-img {
    width: 100%;
  }
  .modal .thumbnails {
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
}
@media (max-height: 600px) {
  .large-banner {
    min-height: 300px;
    padding-bottom: 2rem;
  }
  .small-banner {
    min-height: 150px;
    padding-bottom: 1.5rem;
  }
  .banner {
    padding-bottom: 2rem;
  }
  .banner h4 {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  .banner p {
    font-size: 13px;
  }
}
@media (max-height: 480px) {
  .large-banner {
    min-height: 250px;
    padding-bottom: 1.5rem;
  }
  .small-banner {
    min-height: 120px;
    padding-bottom: 1rem;
  }
  .banner {
    padding-bottom: 1.5rem;
  }
  .banner h4 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .banner p {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) and (max-height: 600px) {
  .large-banner {
    min-height: 200px;
  }
  .small-banner {
    min-height: 100px;
  }
  .banner {
    padding-bottom: 1.5rem;
  }
  .banner h4 {
    font-size: 18px;
  }
  .banner p {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-height: 480px) {
  .large-banner {
    min-height: 150px;
  }
  .small-banner {
    min-height: 80px;
  }
  .banner {
    padding-bottom: 1rem;
  }
  .banner h4 {
    font-size: 16px;
    line-height: 1.2;
  }
  .banner p {
    font-size: 11px;
    line-height: 1.2;
  }
  .banner .banner-content {
    align-items: center;
  }
}/*# sourceMappingURL=all.css.map */