/* Banner Section */
.banner-section-ui {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 12px;
}

.banner-swiper, .product-swiper {
  width: 100%;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 112px;
}
.product-swiper {
  border-bottom: none;
  margin-bottom: 32px;
}

.product-swiper__wrapper {
  margin: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.banner-slide {
  display: flex;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
}
.banner-slide__content {
  flex: 1;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 105px 60px;
  max-width: 50%;
}

@media screen and (max-width: 1440px) {
  .banner-slide__content {
    max-width: 540px;
    justify-content: flex-start;
  }
}

.banner-slide__text {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.banner-slide__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.banner-slide__heading-line1 {
  color: #353535;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.125;
}

.banner-slide__heading-line2 {
  color: #8B6E00;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.125;
}

.banner-slide__description {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.banner-slide__button {
  background: transparent;
  width: 212px;
}


.banner-slide__image {
  flex: 1;
  overflow: hidden;
}

.banner-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Pagination */
.banner-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: calc(50% - 1200px/2) !important;
  width: 492px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 0;
}

.banner-pagination .swiper-pagination-bullet {
  flex: 1;
  height: 6px;
  border-radius: 8px;
  background: #3D3D3D;
  opacity: 1;
  margin: 0 !important;
  width: auto;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: #8B6E00;
}

/* Swiper Navigation */
.banner-button-next,
.banner-button-prev {
  position: absolute !important;
  width: 40px !important;
  height: 40px !important;
  bottom: 12px !important;
  top: auto !important;
  margin-top: 0 !important;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 12px;
}

.banner-button-next {
  right: calc(50% - 1200px/2) !important;
}

.banner-button-prev {
  right: calc(50% - 1200px/2 + 48px) !important;
  left: auto !important;
}

.banner-button-prev::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
}


/* Separator line between navigation buttons */

@media screen and (max-width: 1200px) {
  .banner-swiper {
    height: auto;
    padding-bottom: 64px !important;
  }
  .banner-slide {
    height: 520px;
  }
  .banner-pagination {
    left: calc(50% - 100%/2 + 40px) !important;
    width: 448px !important;
  }
  .banner-button-next {
    right: calc(50% - 100%/2 + 32px) !important;
  }
  .banner-button-prev {
    right: calc(50% - 100%/2 + 80px) !important;
  }
  .banner-slide__content {
    max-width: 440px;
    padding: 70px 40px;
  }
  .banner-slide__heading-line1 {
    font-size: 44px;
  }
  .banner-slide__heading-line2 {
    font-size: 44px;
  }
}

@media (max-width: 890px) {
  .banner-pagination {
    left: calc(50% - 100%/2 + 16px) !important;
    width: 448px !important;
  }
  .banner-button-next {
    right: calc(50% - 100%/2 + 16px) !important;
  }
  .banner-button-prev {
    right: calc(50% - 100%/2 + 64px) !important;
  }

  .banner-slide {
    flex-direction: column;
    height: auto;
  }
  .banner-slide__content {
    max-width: 100%;
    padding: 32px 20px;
    order: 2
  }
  .banner-slide__image.banner-slide__image-right {
    height: 271px;
    flex: auto;
  }
  .banner-slide__heading-line1 {
    font-size: 28px;
  }
  .banner-slide__heading-line2 {
    font-size: 28px;
  }
  .banner-slide__button {
    width: 184px;
    font-size: 14px;
  }
  .banner-slide__button .btn_primary-text {
    font-size: 14px;
  }
  .banner-slide__description {
    font-size: 14px;
  }
  .banner-pagination {
    width: 229px !important;
  }
}

@media screen and (max-width: 380px) {
  .banner-pagination {
    width: 150px !important;
  }
}





/* Product Section */
.product-section {
  margin-bottom: 160px;
}

.product-section__wrapper {
  width: 100%;
}

.base-title-wrapper {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.base-title__text-heading {
  font-size: 22px;
  margin: 0;
}

.product-section .base-title {
  margin: 0;
  font-size: 22px;
}

.product-section .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  row-gap: 64px;
}

.base-title__button {
  width: 212px;
}

.ranking-badge {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  width: 42px;
  height: 27px;
  left: 12px;
  top: 12px;

  background: #F5F5F5;
  border-radius: 100px;

}

@media screen and (max-width: 1200px) {
  .product-card--ranking {
    width: calc(50% - 12px) !important;
  }
  .product-card__image {
    height: 246px;
  }
}

@media screen and (max-width: 890px) {
  .product-card--ranking-mobile {
    width: 100% !important;
  }
  .product-card--ranking-mobile .product-card__image {
    height: 180px;
    margin-bottom: 8px;
  }
  .product-card__price {
    flex-direction: row;
    gap: 8px;
  }
  .product-card__badge {
    margin-bottom: 8px;
  }

}

/* base Section */
.section__left img , .section__right img {
  max-width: 100%;
}

.section__content_wrapper {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 160px;
}
.section__left {
  flex: 1;
  max-width: 600px;
  flex: 0 0 600px;
}

.about_left_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  height: 450px;
}

.section__right {
  flex: 1;
}

@media screen and (max-width: 1200px) {
  .section__content_wrapper {
    gap: 40px;
  }
  .section__left {
    max-width: 480px;
    flex: 0 0 480px;
  }
  .about_left_image {
    height: 360px;
  }

  .section__right {
    flex: 1;
  }

}

@media screen and (max-width: 890px) {
  .section__content_wrapper {
    gap: 48px;
    flex-direction: column;
  }
  .section__left {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
  .section__right {
    width: 100%;
  }
  .about_left_image_wrapper {
    order: 1;
  }
  .about_left_image {
    height: 270px;
  }

}

/* about section */
.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-family);
}

.about-section__section-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.about-section__section-title {
  color: #828282;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-family);
}

.about-section__heading {
  color: #353535;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-family);
}

.about-section__subheading {
  color: #353535;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  margin: 0;
  opacity: 0.6;
  font-family: var(--font-family);
}

.about-section__description {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.about-section__button {
  width: 212px;
}

@media screen and (max-width: 1200px) {
  .about-section__heading,
  .about-section__subheading {
    font-size: 28px;
  }
  .about-section__section-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 890px) {
  .about-section__section-title {
    font-size: 16px;
  }
  .about-section__heading,
  .about-section__subheading {
    font-size: 28px;
  }
  .about-section__description {
    font-size: 14px;
  }
  .about-section__button {
    width: 184px;
  }
}


/* detail section */
.detail-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.detail-section__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-section__info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-section__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #353535;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  flex: 0 0 124px;
  font-family: var(--font-family);
}

.detail-section__value {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  font-family: var(--font-family);
}

.detail-section__before,
.detail-section__after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-section__section-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  justify-content: center;
}

.detail-section__section-header--after {
  background: #8B6E00;
  border-radius: 4px;
  padding: 12px 0;
  justify-content: center;
}

.detail-section__section-title {
  color: #353535;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-family);
}

.detail-section__section-title--after {
  color: #FFFFFF;
}

.detail-section__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.detail-section__list-item {
  display: flex;
  gap: 6px;
  width: 100%;
}

.detail-section__list-item svg {
  margin-top: 11px;
}
.section__right-detail img{
  max-width: 100%;
  width: 100%;
}

.detail-section__text {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
  flex: 1;
  font-family: var(--font-family);
}

@media screen and (max-width: 1200px) {
  .detail-section__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 890px) {
  .detail-section__header {
    gap: 8px;
  }
  .detail-section__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .detail-section__badge {
    font-size: 14px;
  }
  .detail-section__value {
    font-size: 14px;
  }
  .detail-section__text {
    font-size: 14px;
  }
  .detail-section__title {
    font-size: 18px;
  }
  .detail-section__section-title {
    font-size: 16px;
  }
  .detail-section__badge {
    flex: 0 0 114px;
    font-size: 14px;
    padding: 0 8px;
  }
  .base-title__text-heading {
    font-size: 18px;
  }
}


/* guide section */
.guide-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.guide-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.guide-section__header {
  display: flex;
  align-items: center;
  gap: 4px;
}

.guide-section__icon-wrapper {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-section__title {
  color: #828282;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-family);
}

.guide-section__quote {
  position: relative;
  padding: 8px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
}

.guide-section__quote-start {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 16px;
}

.guide-section__quote-bottom {
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 96px;
  height: 38px;
}

.guide-section__quote-end {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 16px;
}

.guide-section__quote-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.guide-section__quote-heading {
  color: #353535;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-family);
}

.guide-section__quote-subheading {
  color: #353535;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  margin: 0;
  opacity: 0.6;
  font-family: var(--font-family);
}

.guide-section__description {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
  font-family: var(--font-family);
}

@media screen and (max-width: 1200px) {
  .guide-section__quote-heading,
  .guide-section__quote-subheading {
    font-size: 28px;
  }
  .guide-section__quote {
    padding: 15px 13px;
  }
  .guide-section__quote-bottom {
   bottom: -15px;
  }
}

@media screen and (max-width: 890px) {
  .guide-section__title {
    font-size: 16px;
  }
  .guide-section__description {
    font-size: 14px;
  }
  .guide-section__image-wrapper {
    order: 1;
  }
  .guide-section__quote {
    padding-right: 0;
  }
}


/* news section */
.news-section-wrapper {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.news-section__left {
  flex: 0 0 336px;
}

.news-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.news-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-section__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.news-section__title {
  color: #353535;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-family);
}

.news-section__description {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  margin: 0;
  font-family: var(--font-family);
}

.news-section__button {
  width: 212px;
  margin-top: 8px;
}

.news-section__right {
  flex: 1;
}

@media screen and (max-width: 1200px) {
  .news-section-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .news-section__left {
    flex: 0 0 auto;
    width: 100%;
  }
  .news-section__right {
    width: 100%;
  }
}

@media screen and (max-width: 890px) {
  .news-section-wrapper {
  }
}
