@charset "UTF-8";
/** @format */
:root {
  --font-main: "Noto Sans JP", sans-serif;
  --rem-mobi: 4.889178617992163;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  /* font-size: 1.30378vw; */
  line-height: calc(17 / 14);
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  overflow-x: hidden;
  font-size: clamp(0px, calc(10 / 767 * 100vw), 10px);
}

section {
  background: no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* Custommize */
body.no-scroll {
  overflow: hidden;
}

.container {
  --container-width: 128rem;
  max-width: calc(var(--container-width) + 30px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.mask-bg {
  background: #bcfef080;
  position: relative;
  padding-bottom: 3rem;
}

.mask-bg > img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 9.5rem;
}

.section-heading::before {
  content: "";
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  background: url(../images/title-cover.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  z-index: -1;
}

h2 {
  font-weight: 900;
  font-size: 5rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #000000;
  text-wrap-style: balance;
  text-wrap: balance;
}

.section-description p {
  font-size: 2.4rem;
}

.btn {
  background: #6ff1d5;
  border-radius: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: calc(8 / var(--rem-mobi) * 1rem) calc(25 / var(--rem-mobi) * 1rem);
  width: fit-content;
  font-size: calc(11 / var(--rem-mobi) * 1rem);
}

.btn.btn-arrow {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.btn.btn-arrow::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  display: block;
  background: url(../images/fluent_arrow-exit-12-regular.svg) no-repeat center center;
  background-size: cover;
}

p {
  font-size: 2rem;
}

.link-full-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Toggle */
.toggle-btn {
  display: none;
}

.toggle-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2.5rem;
  margin-right: 0;
  margin-left: 0;
}

.toggle-btn span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  border-radius: 100px;
}

.toggle-btn span:first-child {
  top: 0;
}

.toggle-btn span:last-child {
  bottom: 0;
}

.toggle-btn.active span {
  width: 100%;
}

.toggle-btn.active span:first-child {
  top: 50%;
  transform: translateY(50%) rotate(45deg);
}

.toggle-btn.active span:nth-child(2) {
  display: none;
}

.toggle-btn.active span:last-child {
  top: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* TOAST */
@keyframes cart-spin {
  to {
    transform: rotate(360deg);
  }
}
#toast {
  position: fixed;
  bottom: 3.2rem;
  right: 3.2rem;
  z-index: 9999;
}

#toast .toast {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 2rem 0;
  min-width: 36rem;
  max-width: 65rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
  border-left: 0.6rem solid;
  animation: slideInLeft ease 0.3s, fadeOut linear 1s 3s forwards;
  overflow: hidden;
  margin-top: 1.2rem;
}

#toast .toast__icon {
  font-size: 2.4rem;
  margin: 0 2rem;
}

#toast .toast__body {
  flex-grow: 1;
}

#toast .toast__title {
  font-weight: 600;
  font-size: calc(16 / var(--rem-mobi) * 1rem);
  color: #333;
}

#toast .toast__msg {
  font-size: calc(14 / var(--rem-mobi) * 1rem);
  color: #555;
  margin-top: 0.4rem;
}

#toast .toast__close {
  font-size: calc(20 / var(--rem-mobi) * 1rem);
  color: #888;
  padding: 0 1.6rem;
  cursor: pointer;
}

#toast .toast--success {
  border-color: #47d864;
}

#toast .toast--success .toast__icon {
  color: #47d864;
}

#toast .toast--error {
  border-color: #ff623d;
}

#toast .toast--error .toast__icon {
  color: #ff623d;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(calc(100% + 3.2rem));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
#toast {
  bottom: 14rem;
}

.cart-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 12px 8px 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  z-index: 90;
  opacity: 0;
  transform: translate(-50%, 20px);
}

.cart-toast.show {
  animation: fadeIn 0.3s ease forwards;
}

.cart-toast__msg {
  margin: 0;
  width: 30.5rem;
  text-align: center;
  font-size: calc(13 / var(--rem-mobi) * 1rem);
  line-height: 1.6;
}

.cart-toast__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.cart-toast__btn {
  border: none;
  cursor: pointer;
  padding: 6px 6px;
  border-radius: 6px;
  font-size: 1.6rem;
  width: 7.5rem;
}

@media (max-width: 960px) {
  .cart-toast__btn {
    width: 21rem;
    font-size: calc(13 / var(--rem-mobi) * 1rem);
    padding: calc(10 / var(--rem-mobi) * 1rem) calc(5 / var(--rem-mobi) * 1rem);
  }
}
.cart-toast__btn--outline {
  background-color: #fff;
  color: #000;
}

.cart-toast__btn--filled {
  background-color: #000;
  color: #fff;
}

.cart-toast__close {
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  margin-left: 0;
  padding: 7px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.cart-toast.hide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#toast {
  bottom: 25rem;
}

@media (min-width: 960.5px) {
  .cart-toast {
    width: 100%;
    max-width: 50rem;
  }

  .cart-toast__msg {
    width: 30rem;
  }

  .cart-toast__btn {
    width: 12rem;
  }
}
#cart-popup {
  display: none;
}

/* Slick theme */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slick theme end */
header {
  background-color: #223654;
  position: fixed;
  z-index: 9999999;
  /* width: 100vw; */
  top: 0;
  left: 0;
  right: 0;
  max-width: 767px;
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  z-index: -2;
}

header .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2.2rem 3rem 2.9rem;
}

.logo {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: flex-start;
  gap: 1rem;
}

.logo .logo-name {
  font-style: normal;
  font-weight: 900;
  font-size: 4.8rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.logo .logo-slogan {
  font-style: normal;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.6rem;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
}

.header-ui {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.header-ui .search,
.header-ui .user,
.header-ui .cart {
  aspect-ratio: 1 / 1;
  width: 5rem;
}

.header-ui .cart {
  position: relative;
  z-index: 1;
}

.header-ui .cart .js--cart {
  font-size: 0rem;
}

.header-ui .cart .header-cart__count {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  aspect-ratio: 1 / 1;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
}

header nav {
  position: absolute;
  z-index: -1;
  display: block;
  top: 100%;
  width: 100%;
  height: calc(100vh - 10.097rem);
  padding: 3rem;
  background: #fff;
  left: 0%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: all ease 0.3s;
  background: #223654;
  pointer-events: none;
  transform: scale(0);
}

header nav.active {
  transform: scale(1);
  pointer-events: auto;
}

header nav::-webkit-scrollbar {
  display: none;
}

header nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 0rem;
}

header nav ul li {
  display: block;
  width: 100%;
}

header nav ul li a {
  color: #fff;
  font-size: 3rem;
  padding: 4rem 1.5rem;
  display: block;
}

header nav ul .sub-menu {
  display: none;
}

/* Hero Section */
.hero-section {
  aspect-ratio: 767 / 550;
}

.hero-section .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.5rem;
}

section.banner-slide-section {
  padding: 5rem 0;
}

.banner-slide-wrapper {
  max-width: 36.75rem;
  width: 100%;
  margin-top: 0rem;
  margin-left: auto;
  margin-right: auto;
  overflow: unset;
  position: relative;
  height: 20rem;
}

/* slick */
.banner-slide-wrapper .slick-arrow {
  z-index: 1;
}

.banner-slide-wrapper .slick-prev,
.banner-slide-wrapper .slick-next {
  width: calc(20 / var(--rem-mobi) * 1rem);
  height: calc(20 / var(--rem-mobi) * 1rem);
}

.banner-slide-wrapper .slick-prev:before,
.banner-slide-wrapper .slick-next:before {
  color: #555555;
  font-size: calc(20 / var(--rem-mobi) * 1rem);
}

.slick-list {
  overflow: unset !important;
}

.banner-slide-wrapper .swiper-wrapper {
  align-items: center;
  height: 20rem;
}

.banner-slide-wrapper .swiper-slide {
  aspect-ratio: 333.13 / 180;
  height: 18rem;
  border-radius: 2rem;
  overflow: hidden;
  transition: height 0.3s ease;
  margin: calc(5 / var(--rem-mobi) * 1rem);
}

.banner-slide-wrapper .slick-track {
  display: flex;
  align-items: center;
  height: 20rem;
}

.banner-slide-wrapper .swiper-slide.swiper-slide-active,
.banner-slide-wrapper .swiper-slide.slick-slide.slick-current.slick-active {
  height: 20rem;
}

.banner-slide-wrapper .swiper-ui {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.banner-slide-wrapper .swiper-button-prev,
.banner-slide-wrapper .swiper-button-next {
  width: 5rem;
  height: 5rem;
  position: relative;
  top: unset;
  transform: translateY(0);
}

.banner-slide-wrapper .swiper-button-next {
  transform: translateX(70%) translateY(0);
}

.banner-slide-wrapper .swiper-button-prev {
  transform: translateX(-70%) translateY(0);
}

@media (max-width: 425px) {
  .banner-slide-wrapper .swiper-ui {
    padding-top: 4rem;
  }
}
/* What Is Section */
.what_is-section {
  margin-top: 5rem;
  padding-bottom: 5rem;
}

.what_is-slide-wrapper {
  max-width: 60rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  overflow: unset;
}

.what_is-slide-wrapper .swiper-wrapper {
  align-items: center;
  min-height: 85.865rem;
}

.what_is-slide-wrapper .slick-arrow {
  display: none !important;
}

.what_is-slide-wrapper .slick-track {
  display: flex;
  align-items: center;
}

.what_is-slide-wrapper .swiper-slide,
.what_is-slide-wrapper .slick-slide {
  min-height: 81.7rem;
  padding: 1.3rem;
  padding-bottom: 2.5rem;
  background: #ffffff;
  box-shadow: 1.5rem 3.1rem 1.4rem rgba(0, 0, 0, 0.01), 0.8rem 1.8rem 1.2rem rgba(0, 0, 0, 0.03), 0.4rem 0.8rem 0.9rem rgba(0, 0, 0, 0.04), 0.1rem 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  transition: scale 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin: calc(5 / var(--rem-mobi) * 1rem);
}

.what_is-slide-wrapper .swiper-slide.swiper-slide-active,
.what_is-slide-wrapper .swiper-slide.slick-slide.slick-current.slick-active.slick-center {
  background: #223654;
  min-height: 85.865rem;
  color: #fff;
}

.what_is-slide-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: calc(16 / var(--rem-mobi) * 1rem);
  border: solid 1px #ddd;
  background: transparent;
}
.what_is-slide-wrapper table th {
  width: 40%;
  text-align: left;
  padding: calc(10 / var(--rem-mobi) * 1rem);
  border: solid 1px #ddd;
}
.what_is-slide-wrapper table td {
  width: 60%;
  padding: calc(10 / var(--rem-mobi) * 1rem);
  border: solid 1px #ddd;
  text-align: center;
}

.what_is-section .product-image {
  border-radius: 2rem;
  overflow: unset;
  position: relative;
  z-index: 1;
}

.what_is-section .product-image > img {
  border-radius: 2rem;
}

.what_is-section .product-image .ranked {
  position: absolute;
  bottom: -1.5rem;
  right: 1rem;
  z-index: 1;
  aspect-ratio: 100 / 91;
  width: calc(65 / var(--rem-mobi) * 1rem);
}

.what_is-section h3 {
  font-weight: 700;
  font-size: calc(18 / var(--rem-mobi) * 1rem);
  display: block;
  text-align: center;
  width: 100%;
  margin: calc(10 / var(--rem-mobi) * 1rem) 0;
}

.what_is-section .swiper-slide p {
  font-weight: 400;
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 1.5;
  min-height: 4rem;
  text-align: center;
  display: inline-block;
  width: 100%;
  text-wrap: pretty;
  overflow-wrap: break-word;
  /* fallback cho Safari */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Curious Section */
.curious-section {
  padding-bottom: 8rem;
}

.curious-wrapper {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.curious-section .curious-image {
  margin-bottom: 3rem;
  display: block;
  overflow: hidden;
}

.curious-title {
  font-weight: 700;
  font-size: calc(24 / var(--rem-mobi) * 1rem);
  text-align: center;
  margin-bottom: 2rem;
}

.curious-text {
  font-size: calc(16 / var(--rem-mobi) * 1rem);
  line-height: 175%;
  text-align: justify;
  padding: 0 1rem;
}

.curious-content {
  max-width: 60rem;
  border-radius: 1rem;
  background: #223654;
  padding: 3.1rem;
  color: #fff;
}

.curious-content p {
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 175%;
  text-align: justify;
}

.advantage-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.advantage-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
  font-size: calc(11 / var(--rem-mobi) * 1rem);
  line-height: 1.2rem;
  background: #fff;
  color: #000000;
  width: 100%;
  padding: calc(10 / var(--rem-mobi) * 1rem);
  border-radius: 0.5rem;
  gap: calc(7 / var(--rem-mobi) * 1rem);
}

.advantage-list li::before {
  content: "";
  display: block;
  width: calc(14 / var(--rem-mobi) * 1rem);
  height: calc(14 / var(--rem-mobi) * 1rem);
  background: url(../images/teenyicons_shield-tick-solid.svg) no-repeat center center;
  background-size: cover;
}

.curious-content .btn {
  margin-top: 2.5rem;
  margin-right: 0;
  margin-left: auto;
}

/* Line Up Section */
.line_up-section {
  padding: 3rem 0;
}

.line_up-menutab {
  min-height: 57.366rem;
}

.line_up-menutab .product-categories-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #000000;
}

.line_up-menutab .product-categories {
  margin-top: 5.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  padding-bottom: 3rem;
  width: fit-content;
}

.line_up-menutab .product-categories li {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.3s;
  text-wrap: nowrap;
  white-space: nowrap;
}

.line_up-menutab .product-categories li:hover {
  opacity: 0.7;
}

.line_up-menutab .product-categories li.active {
  font-weight: 800;
}

.product-list {
  margin-top: 3.5rem;
}

.product-items,
.product-itemss {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-item {
  width: calc((100% - 2rem) / 2);
  border-width: 0.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 0.2rem solid #223654;
  border-radius: 1.5rem;
  box-shadow: 0.3rem 0.4rem 1.1rem 0rem #0000000f, 1.3rem 1.4rem 1.9rem 0rem #0000000d, 2.9rem 3.2rem 2.6rem 0rem #00000008, 5.2rem 5.7rem 3.1rem 0rem #00000003, 8.1rem 8.9rem 3.4rem 0rem #00000000;
  display: flex;
  flex-direction: column;
}

.product-header {
  position: relative;
  z-index: 1;
  padding: 1.3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-item .product-add_to_cart {
  position: absolute;
  z-index: 2;
  top: 1.3rem;
  right: 2rem;
  aspect-ratio: 26 / 27;
  width: 4rem;
}

.product-item .product-add_to_cart svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item h3 {
  font-weight: 600;
  font-size: calc(11 / var(--rem-mobi) * 1rem);
  line-height: 1.75;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding-bottom: calc(7 / var(--rem-mobi) * 1rem);
  border-bottom: 1px solid #000000;
}

.product-under {
  background: #223654;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: calc(10 / var(--rem-mobi) * 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.product-item .product-description {
  font-weight: 400;
  font-size: calc(10 / var(--rem-mobi) * 1rem);
  line-height: 1.65;
  text-align: justify;
  margin-bottom: calc(20 / var(--rem-mobi) * 1rem);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}

.product-item .product-price {
  font-weight: 700;
  font-size: calc(14 / var(--rem-mobi) * 1rem);
  line-height: 2.5rem;
  text-align: center;
  color: #6ff1d5;
  margin-top: 0;
  position: relative;
  top: -3px;
}

.product-item .product-link {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 3.5rem;
  height: 3.5rem;
}

.product-item .product-link svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list.active .product-items {
  display: flex;
  min-height: 102.8rem;
  align-items: flex-start;
}

.highlight-section {
  padding: 3rem 0 0;
}

.highlight-products {
  margin-top: 3rem;
}

.highlight-product {
  background: #0f0f0f;
  color: #fff;
  padding: calc(30 / var(--rem-mobi) * 1rem) 0 calc(40 / var(--rem-mobi) * 1rem);
}

.highlight-product:nth-child(odd) {
  background: #223654;
}

.highlight-product_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-right: calc(20 / var(--rem-mobi) * 1rem);
}

.highlight-product_image {
  aspect-ratio: 1 / 1;
  max-width: 24rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-product:nth-child(1) .highlight-product_image::before {
  content: "";
  display: block;
  width: 5rem;
  aspect-ratio: 62 / 57;
  position: absolute;
  z-index: 1;
  background: url(../images/product/1st.png) no-repeat center center;
  background-size: cover;
  top: 4.5rem;
  left: 4.5rem;
}

.highlight-product:nth-child(2) .highlight-product_image::before {
  content: "";
  display: block;
  width: 5rem;
  aspect-ratio: 62 / 57;
  position: absolute;
  z-index: 1;
  background: url(../images/product/2nd.png) no-repeat center center;
  background-size: cover;
  top: 4.5rem;
  left: 4.5rem;
}

.highlight-product_image::after {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  width: 14rem;
  border-radius: 50%;
  background: #bcfef0;
  position: absolute;
  z-index: -1;
}

.highlight-product_image .main-img {
  transform: rotate(20deg);
}

.highlight-product h3 {
  font-weight: 900;
  font-size: calc(15 / var(--rem-mobi) * 1rem);
  line-height: 3rem;
  letter-spacing: 0.05em;
}

.highlight-product table {
  font-size: calc(16 / var(--rem-mobi) * 1rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 2rem;
}

.highlight-product table th,
.highlight-product table td {
  padding: calc(4 / var(--rem-mobi) * 1rem) 0;
}

.highlight-product table td {
  padding-left: calc(15 / var(--rem-mobi) * 1rem);
}

.highlight-product_description {
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 1.75;
  text-align: justify;
  letter-spacing: calc(1 / var(--rem-mobi) * 1rem);
  margin-top: calc(15 / var(--rem-mobi) * 1rem);
  margin-bottom: calc(20 / var(--rem-mobi) * 1rem);
}

.highlight-product_features {
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 1.75;
  letter-spacing: calc(1 / var(--rem-mobi) * 1rem);
  margin-top: 3rem;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: calc(15 / var(--rem-mobi) * 1rem);
}

.product_features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(15 / var(--rem-mobi) * 1rem);
  list-style-type: disc;
  padding: 0;
  margin-left: calc(16 / var(--rem-mobi) * 1rem);
}

/* About Section */
.about-section {
  padding: calc(30 / var(--rem-mobi) * 1rem) 0 calc(45 / var(--rem-mobi) * 1rem);
}

.about-list {
  margin-top: calc(20 / var(--rem-mobi) * 1rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: calc(5 / var(--rem-mobi) * 1rem);
}

.about-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
  min-height: 18.7rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(34, 54, 84, 0.8) 0%, rgba(6, 29, 65, 0.4) 30.77%, rgba(4, 20, 45, 0.8) 72.6%);
}

.about-item_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
}

.about-item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

.about-item h3 {
  font-weight: 900;
  font-size: calc(13 / var(--rem-mobi) * 1rem);
  line-height: 3rem;
  letter-spacing: 0;
}

.about-item .about-item_desc {
  font-size: calc(10 / var(--rem-mobi) * 1rem);
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-top: calc(10 / var(--rem-mobi) * 1rem);
  text-align: justify;
}

.about-item_content {
  margin-top: 10rem;
}

.customer-review_section {
  padding: calc(30 / var(--rem-mobi) * 1rem) 0 calc(45 / var(--rem-mobi) * 1rem);
  background: #bcfef0;
  position: relative;
  z-index: 1;
}

.customer-review_section::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: url(../images/Mask\ group.png) no-repeat center center;
  background-size: cover;
}

.cusreviews {
  margin-top: calc(20 / var(--rem-mobi) * 1rem);
}

.cusreviews .slick-arrow {
  display: none !important;
}

.cusreviews .slick-list {
  margin: 0 -3rem;
}

.cusreview {
  width: 100%;
  background: url(../images/customer-review-bg.png) no-repeat center center;
  background-size: cover;
  aspect-ratio: 287 / 205;
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6rem 3rem 6rem;
  margin: 0 3rem;
  filter: drop-shadow(43px 23px 19px rgba(0, 0, 0, 0.01)) drop-shadow(24px 13px 16px rgba(0, 0, 0, 0.04)) drop-shadow(11px 6px 12px rgba(0, 0, 0, 0.07)) drop-shadow(3px 1px 7px rgba(0, 0, 0, 0.08));
}

/* .cusreview::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #fff;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
} */
.cusreview-rating {
  color: #6ff1d5;
  font-size: 3rem;
}

.cusreview-quote {
  font-size: calc(13 / var(--rem-mobi) * 1rem);
  text-align: center;
  line-height: 1.75;
  padding-top: calc(10 / var(--rem-mobi) * 1rem);
  width: 90%;
  margin: 0 auto;
}

.cusreview-avatar {
  position: absolute;
  z-index: 1;
  bottom: -2rem;
  left: 10rem;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.5rem;
  text-align: center;
  color: #223654;
  aspect-ratio: 1 / 1;
  width: 12rem;
}

.cusreview-name {
  font-size: 3rem;
  margin-top: auto;
}

.site-footer {
  background: #223654;
  color: #fff;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(30 / var(--rem-mobi) * 1rem) calc(15 / var(--rem-mobi) * 1rem);
}

.site-footer h2 {
  color: #fff;
  font-size: calc(20 / var(--rem-mobi) * 1rem);
  letter-spacing: 0;
}

.footer-desc {
  margin-top: 2rem;
  line-height: 1.65;
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  text-align: center;
}

.footer-categories {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: space-around;
  border-top: 1px solid #6ff1d5;
  border-bottom: 1px solid #6ff1d5;
  padding: 3rem 0;
}

.footer-categories li {
  display: inline-block;
  width: calc((100% - 3rem * 2) / 3);
}

.footer-categories li a {
  font-weight: 500;
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 1.75;
  text-align: center;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: calc(15 / var(--rem-mobi) * 1rem);
  margin-top: 3rem;
}

.site-footer .copyright {
  margin-top: 3rem;
  font-weight: 400;
  font-size: calc(12 / var(--rem-mobi) * 1rem);
  line-height: 1.75;
  letter-spacing: calc(1 / var(--rem-mobi) * 1rem);
}

.skip-link {
  display: none;
}

/* SINGLE PRODUCT */
/* == SINGLE */
.article-wrapper .discover {
  background-color: #f8f7f4;
  text-align: center;
  padding: 8rem 5rem;
}

.article-wrapper .discover__inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.article-wrapper .discover__title {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  color: #3b3b3b;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.article-wrapper .discover__subtitle {
  font-size: 1.4rem;
  color: #7a7a7a;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.article-wrapper .discover__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .article-wrapper .discover__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.article-wrapper .discover__item {
  background-color: transparent;
  overflow: hidden;
}

.article-wrapper .discover__item .discover__images {
  overflow: hidden;
  display: block;
  vertical-align: top;
  line-height: 100%;
}

.article-wrapper .discover__item:hover .discover__image {
  transform: scale(1.03);
}

.article-wrapper .discover__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.article-wrapper .discover__caption {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #3b3b3b;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
  padding-left: 3.5rem;
}

.article-wrapper .discover__caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 100%;
  background-color: #3b3b3b;
}

.article-wrapper .shop {
  background: #fff;
  text-align: center;
  padding: 8rem 5rem;
}

.article-wrapper .shop__inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.article-wrapper .shop__title {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: #3b3b3b;
  margin-bottom: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-wrapper .shop__subtitle {
  font-size: 1.3rem;
  color: #777;
  margin-bottom: 5rem;
  text-transform: uppercase;
}

.article-wrapper .shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 1024px) {
  .article-wrapper .shop__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .article-wrapper .shop__grid {
    grid-template-columns: 1fr;
  }
}
.article-wrapper .shop__item {
  text-align: left;
  border: 1px solid #ad222d;
}

.article-wrapper .shop__image-wrap {
  position: relative;
  overflow: hidden;
}

.article-wrapper .shop__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: #000;
  font-size: 1.1rem;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.05em;
  display: none;
}

.article-wrapper .shop__image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  display: block;
}

.article-wrapper .shop__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: #000;
  transition: background 0.3s ease;
}

.article-wrapper .shop__arrow:hover {
  background: #eee;
}

.article-wrapper .shop__arrow--left {
  left: 1rem;
}

.article-wrapper .shop__arrow--right {
  right: 1rem;
}

.article-wrapper .shop__info {
  margin-top: 0rem;
  text-align: center;
  padding: 2rem 1.5rem 2rem 1.5rem;
  background-color: #fff;
}

.article-wrapper .shop__name {
  font-size: 1.8rem;
  color: #171717;
  margin-bottom: 0.5rem;
  font-weight: 900;
  text-align: center;
}

.article-wrapper .shop__price {
  font-size: 2rem;
  color: #ad222d;
  margin-bottom: 0.3rem;
  text-align: center;
  font-weight: bold;
}

.article-wrapper .shop__price s {
  font-size: 1.7rem;
  color: #171717;
  font-weight: 500;
}

.article-wrapper .shop__member {
  color: #000;
  font-weight: 500;
}

.article-wrapper .shop__regular {
  color: #888;
}

.article-wrapper .shop__colors {
  font-size: 1.2rem;
  color: #888;
  font-style: italic;
}

.article-wrapper .collection__visual {
  border: 1rem solid #c59d23;
}

.article-wrapper .category {
  background: #fff;
  padding: 5rem 5rem;
}

.article-wrapper .category__grid {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.article-wrapper .category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .article-wrapper .category__grid {
    grid-template-columns: 1fr;
  }
}
.article-wrapper .category__item {
  position: relative;
  overflow: hidden;
}

.article-wrapper .category__item:hover .category__image {
  transform: scale(1.03);
}

.article-wrapper .category__image {
  width: 100%;
  height: 20.1rem;
  transition: transform 0.5s ease;
  display: block;
  object-fit: cover;
}

.article-wrapper .category__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 3rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.article-wrapper .category__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.article-wrapper .category__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Button white */
.article-wrapper .btn--white {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.3s ease;
}

.article-wrapper .btn--white:hover {
  background: #e5e5e5;
}

.article-wrapper .collection {
  background-color: #f8f7f4;
  padding: 8rem 5rem;
}

.article-wrapper .collection__inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.article-wrapper .collection__header {
  text-align: left;
  margin-bottom: 4rem;
}

.article-wrapper .collection__title {
  font-size: 2.8rem;
  color: #3b3b3b;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.article-wrapper .collection__subtitle {
  font-size: 1.4rem;
  color: #7a7a7a;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.article-wrapper .collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .article-wrapper .collection__grid {
    grid-template-columns: 1fr;
  }
}
.article-wrapper .collection__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .article-wrapper .collection__products {
    grid-template-columns: 1fr;
  }
}
.article-wrapper .collection__item {
  text-align: left;
}

.article-wrapper .collection__image-wrap {
  position: relative;
  overflow: hidden;
}

.article-wrapper .collection__image-wrap:hover .collection__image {
  transform: scale(1.03);
}

.article-wrapper .collection__image {
  width: 100%;
  transition: transform 0.4s ease;
}

.article-wrapper .collection__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: #000;
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
}

.article-wrapper .collection__info {
  margin-top: 1rem;
}

.article-wrapper .collection__name {
  font-size: 1.5rem;
  color: #171717;
  margin-bottom: 0.5rem;
}

.article-wrapper .collection__price {
  font-size: 1.3rem;
  color: #555;
}

.article-wrapper .collection__member {
  color: #000;
  font-weight: 500;
}

.article-wrapper .collection__regular {
  color: #888;
}

.article-wrapper .collection__colors {
  font-size: 1.2rem;
  color: #888;
  font-style: italic;
  margin-top: 0.4rem;
}

.article-wrapper .collection__visual .collection__visual-img {
  width: 100%;
  height: 90.5rem;
  object-fit: cover;
  display: block;
}

.article-wrapper .membership {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}

.article-wrapper .membership__bg {
  position: absolute;
  inset: 0;
}

.article-wrapper .membership__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(75%);
  transition: transform 1.2s ease;
}

.article-wrapper .membership:hover .article-wrapper .membership__bg img {
  transform: scale(1.03);
}

.article-wrapper .membership__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-wrapper .membership__content {
  color: #fff;
  padding: 2rem;
}

.article-wrapper .membership__subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.article-wrapper .membership__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.article-wrapper .membership__text {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  max-width: 650px;
  margin: 0 auto;
  color: #eaeaea;
}

@media (max-width: 768px) {
  .article-wrapper .membership {
    height: 45vh;
  }

  .article-wrapper .membership__title {
    font-size: 2.4rem;
  }

  .article-wrapper .membership__text {
    font-size: 1.2rem;
  }
}
.article-wrapper .membership__btn {
  margin-top: 3rem;
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-wrapper .membership__btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .article-wrapper .membership {
    height: 45vh;
  }

  .article-wrapper .membership__title {
    font-size: 2.4rem;
  }

  .article-wrapper .membership__text {
    font-size: 1.2rem;
  }
}
@media (max-width: 960px) {
  .shop {
    padding: 6rem 2rem;
  }

  .shop__inner {
    max-width: 100%;
  }

  .shop__grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .shop__subtitle,
  .shop__title {
    text-align: center !important;
  }

  .shop__name {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0rem;
  }

  .shop__price {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
  }

  .shop__price s {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .shop__price span {
    display: block;
    color: #171717;
  }

  .shop__label {
    display: none;
  }

  .discover {
    padding: 6rem 2rem;
  }

  .discover__inner {
    max-width: 100%;
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .discover__caption {
    display: none;
  }

  .category {
    padding: 6rem 2rem;
  }

  .category__grid {
    max-width: 100%;
  }

  .category__image {
    height: auto;
  }

  .collection {
    padding: 6rem 2rem;
  }

  .collection__inner {
    max-width: 100%;
  }

  .collection__header {
    text-align: center;
  }

  .collection__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .collection__products {
    margin-top: -10rem;
    gap: 1.5rem;
    z-index: 2;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .collection__name {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
  }

  .collection__price {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
  }

  .collection__price s {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .collection__price span {
    position: absolute;
    padding-left: 6.1rem;
    left: 0;
    width: 100%;
    top: 2rem;
    font-size: 1.8rem;
  }

  .collection__visual {
    left: -2rem;
    position: relative;
    width: calc(100% + 4rem);
    border: 0.5rem solid #c59d23 !important;
  }

  .collection__visual-img {
    aspect-ratio: 0.6666666667;
    height: auto !important;
  }

  .membership {
    min-height: 30vh;
  }

  .membership__subtitle {
    font-size: 1.8rem;
  }

  .membership__title {
    font-size: 3rem;
    font-weight: 900;
  }

  .membership__text {
    font-size: 1.6rem;
    font-weight: 400;
  }

  .membership__btn {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.5rem 5rem;
  }

  .collection__products .shop__name {
    letter-spacing: normal;
  }

  .collection__item {
    text-align: left;
    box-shadow: 2px 2px 4px 0px rgba(197, 159, 32, 0.5);
  }
}
.article-wrapper .shop__btn-add {
  width: 80%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #223654;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.article-wrapper .shop__btn-add svg {
  fill: #fff;
  transition: transform 0.3s ease;
}

.article-wrapper .shop__btn-add span {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
}

.article-wrapper .shop__btn-add:hover {
  background-color: #4b78bb;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.article-wrapper .shop__btn-add:hover svg {
  transform: scale(1.15);
}

.article-wrapper .shop__btn-add:active {
  transform: scale(0.96);
  background-color: #4b78bb;
}

.article-wrapper .shop__btn-add:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .article-wrapper .shop__btn-add {
    width: 100%;
    font-size: 1.6rem;
    padding: 1rem 1.8rem;
    border-radius: 0.6rem;
  }

  .article-wrapper .shop__btn-add svg {
    width: 5rem;
    height: 5rem;
  }
}
.article-wrapper .page_box {
  padding-bottom: 0rem;
  background-color: #fff;
}

@media (min-width: 960.5px) {
  .article-wrapper .page_box .has-fixed-layout {
    width: 100%;
  }

  .article-wrapper .page_box .page-banner {
    position: relative;
    width: 100%;
    height: 22rem;
    overflow: hidden;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-wrapper .page_box .page-banner__title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 0rem;
    line-height: 170%;
    text-align: center;
  }

  .article-wrapper .page_box .page-banner__title span {
    font-size: 2rem;
  }
}
.article-wrapper .shop__info a {
  color: #171717;
  text-decoration: none;
}

.article-wrapper .box__layout {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.article-wrapper .box__layout--item:first-child {
  margin-bottom: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.article-wrapper .box__layout--item:last-child {
  width: 100%;
}

.article-wrapper .box__layout .shop__grid {
  gap: 0.5rem;
}

.article-wrapper .box__layout .shop__btn-add {
  width: 90%;
  font-size: 1.45rem;
}

.article-wrapper .box__layout .shop__name {
  font-size: 1.5rem;
}

.article-wrapper .box__layout .shop__price {
  font-size: 1.6rem;
}

.article-wrapper .box__layout .shop__price span {
  display: block;
  color: #171717;
}

.article-wrapper .box__layout .shop__btn-add svg {
  width: 2rem;
  height: 2rem;
}

.article-wrapper .list__category {
  display: grid;
  gap: 1.5rem;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
}

.article-wrapper .list__category a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c59d23;
  padding: 1.5rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 960.5px) {
  .product-list .article-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-list .article-wrapper .shop__grid {
  gap: 1rem;
}

.article-wrapper .product-list__header {
  margin-bottom: 1rem;
}

.product-list .article-wrapper svg {
  width: 3.5rem;
  height: 3.5rem;
}

.product-list .article-wrapper .icon circle,
.product-list .article-wrapper .icon ellipse,
.product-list .article-wrapper .icon g,
.product-list .article-wrapper .icon line,
.product-list .article-wrapper .icon path,
.product-list .article-wrapper .icon polygon,
.product-list .article-wrapper .icon polyline,
.product-list .article-wrapper .icon rect {
  fill: #171717;
  stroke: #171717;
}

.article-wrapper .product-list__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #171717;
  margin-bottom: 3rem;
}

.article-wrapper .product-list__filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 3rem;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
}

.article-wrapper .product-list__filter-icon {
  position: relative;
  top: 0.2rem;
}

.article-wrapper .product-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.article-wrapper .product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.article-wrapper .product-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-wrapper .product-card__info {
  padding: 0.8rem 0.5rem;
}

.article-wrapper .product-card__desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.3rem;
}

.article-wrapper .product-card__price {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
}

.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  overflow: hidden;
}

.filter-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.filter-drawer__panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: #f9f9f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease;
}

.filter-drawer__header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #ddd;
  position: relative;
  color: #171717;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

.filter-drawer__title {
  font-size: 4rem;
  font-weight: 600;
}

.filter-drawer__count {
  font-size: 2.6rem;
  margin-top: 0.3rem;
}

.filter-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: #171717;
}

.filter-drawer__body {
  flex: 1;
  padding: 2rem;
}

.filter-drawer__list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  height: 80vh;
  overflow-y: auto;
}

.filter-drawer__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
  font-size: 3rem;
  color: #171717;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.filter-drawer__item a {
  color: #171717;
  text-decoration: none;
}

.filter-drawer__item.active a {
  font-weight: 900;
  color: #c59d23;
}

.filter-drawer__arrow {
  font-size: 3rem;
  color: #777;
}

.filter-drawer__sort {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.filter-drawer__select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.filter-drawer__footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.filter-drawer__reset {
  background: none;
  border: none;
  color: #171717;
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-drawer__apply {
  background: #a00067;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-drawer--active {
  visibility: visible;
  opacity: 1;
}

.filter-drawer--active .filter-drawer__panel {
  right: 0;
}

body.category {
  padding: 0 !important;
}

.article-wrapper .single_product {
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.article-wrapper .single_product .product__title {
  font-size: 2.5rem;
  color: #171717;
  font-weight: bold;
  letter-spacing: 0rem;
}

.article-wrapper .single_product .product__title h1 {
  font-weight: bold;
}

.article-wrapper .single_product .product__title br {
  display: none !important;
}

.article-wrapper .single_product .shop__price {
  font-size: 5rem;
}

.article-wrapper .single_product .shop__price s {
  font-size: 3rem;
}

.article-wrapper .single_product .shop__price span {
  font-size: 3rem;
  display: inline-block;
  position: relative;
  top: -2px;
}

.article-wrapper .single_product .post-category {
  font-size: 2.6rem;
  color: #959595;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.1rem;
}

.article-wrapper .single_product .price__add {
  margin-top: 1rem;
}

.article-wrapper .single_product .shop__btn-add {
  padding: 2.5rem;
  font-size: 3rem;
}

.article-wrapper .single_product .shop__price {
  text-align: left;
  padding: 1.5rem 0px;
}

.article-wrapper .single_product .product-tabs {
  margin-top: 5rem;
  padding-bottom: 5rem;
}

.article-wrapper .single_product .product-tabs__nav {
  display: flex;
  border-bottom: 1px solid #eee;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.article-wrapper .single_product .product-tabs__nav li {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f9f9f9;
  margin-right: 5px;
  border-radius: 6px 6px 0 0;
  transition: background 0.2s ease;
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
}

.article-wrapper .single_product .product-tabs__nav li.active {
  background: #fff;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

.article-wrapper .single_product .product-tabs__content {
  display: none;
  border: 1px solid #ddd;
  border-radius: 0 6px 6px 6px;
  padding: 20px 10px;
  background: #fff;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.article-wrapper .single_product .product-tabs__content.active {
  display: block;
}

.article-wrapper .single_product_inner_image {
  width: 100%;
  order: 1;
  margin-bottom: 4rem;
  box-shadow: 1px 1px 2px #868686;
}

.article-wrapper .single_product_inner_image img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
}

.article-wrapper .product-tabs__content :is(h1, h2, h3, h4, h5, h6) {
  margin: 1.5rem 0;
  font-weight: bold;
  font-size: 3.5rem;
  text-align: justify;
  line-height: 1.5;
}

.article-wrapper .product-tabs__content :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.article-wrapper .product-tabs__content p {
  font-size: 2.9rem;
  color: #333;
  line-height: 195%;
  letter-spacing: 0.12rem;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 4rem;
}

.article-wrapper .product-tabs__content p:last-child {
  margin-bottom: 0;
}

.shop__title {
  font-size: 3.5rem;
}

.product-itemss {
  padding-bottom: 3rem;
}

.page-template-page-product .page-banner,
.page-template-default .page-banner,
.tax-product_category .page-banner {
  position: relative;
  width: 100%;
  height: 30rem;
  overflow: hidden;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-template-page-product h1,
.page-template-default h1,
.tax-product_category h1 {
  font-size: 5rem;
  text-align: center;
}

.page-template-page-product .product-list,
.tax-product_category .product-list {
  margin-top: calc(30 / var(--rem-mobi) * 1rem);
  margin-bottom: calc(30 / var(--rem-mobi) * 1rem);
}

/* PAGE CONTENT BOX */
.page__content_box {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 8rem;
}

@media (min-width: 960.5px) {
  .page__content_box {
    max-width: 1200px;
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}
.page__content_box .wp-block-image {
  margin-bottom: 20px;
  margin-top: 15px;
}

.page__content_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page__content_box .wp-block-heading {
  font-size: 25px;
  line-height: 145%;
  letter-spacing: 1px;
  font-weight: 700;
  color: #293f71;
  margin-bottom: 2rem;
}

.page__content_box h3.wp-block-heading {
  font-size: 18px;
  position: relative;
  margin-top: 20px;
}

.page__content_box h3.wp-block-heading::before {
  content: "●";
  margin-right: 5px;
}

.page__content_box p {
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #232323;
  margin-bottom: 20px;
}

.page__content_box .wp-block-separator {
  margin: 30px 0 50px;
}

.page__content_box .wp-block-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  counter-reset: list-counter;
}

.page__content_box .wp-block-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #232323;
}

.page__content_box .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1px;
  color: #293f71;
  font-weight: bold;
}

.page__content_box .wp-block-list--numbered {
  counter-reset: num;
}

.page__content_box .wp-block-list--numbered li {
  counter-increment: num;
}

.page__content_box .wp-block-list--numbered li::before {
  content: counter(num) ".";
  color: #a00067;
  font-weight: 600;
}

.page__content_box table td {
  width: 100%;
  float: left;
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #232323;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}

.page__content_box table td:first-child {
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: bold;
  background-color: #273865;
}

.grid-1100 {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.page .page__content_box .wp-block-heading {
  text-align: left;
  font-size: 20px;
}

/** @format */
.category__image {
  height: auto;
}

@media (min-width: 960.5px) {
  .footer__inner {
    max-width: 60%;
  }

  .footer__links {
    max-width: 40rem;
  }

  .u-sp,
  header.header.u-sp {
    display: none;
  }
}
@media (max-width: 960px) {
  .u-pc {
    display: none !important;
  }

  div#customersreviews {
    max-width: 43.5rem !important;
  }
}
span.souldOut {
  width: 100%;
  background: #910000;
  color: #ffffff;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
}

.page__content_box div#customersreviews .review {
  border: 0px solid #999999;
}

.page__content_box div#customersreviews {
  border: 1px solid #999999;
  background-color: #ffffff;
  border-radius: 1.5rem;
}

.page__content_box div#customersreviews table th {
  width: 8rem;
  display: inline-grid;
}

.page__content_box div#customersreviews table td {
  width: calc(100%);
  float: inherit;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.7rem;
}

.page__content_box .customers-reviews {
  padding-top: 0;
  padding-bottom: 3rem;
}

div#customersreviews .review__guchikomi {
  width: 100%;
  max-width: 100%;
}

.review__author-icon svg {
  width: 3.7rem;
  height: 3.7rem;
}

.customers-reviews .slick-arrow {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  z-index: 1;
  font-size: 0;
  border: 0;
  border-radius: 100%;
}

.customers-reviews .slick-arrow img {
  width: 2.7rem;
  height: 2.7rem;
}

.customers-reviews button.slick-next {
  right: -1.5rem;
  left: inherit;
}

a.matomekai__btn_1 {
  width: 33.33%;
  background: #223654;
  color: #fff;
  text-decoration: none;
  padding: 1.5rem;
  border-radius: 1rem;
}

span.box {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1rem;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

a.matomekai__btn_1 .shop__price {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}

span.box svg {
  position: relative;
  top: 0.6rem;
  width: 2.4rem;
  height: 2.4rem;
}

.matomekai__btn-group {
  margin-top: 1.5rem;
}

/* ====== Form Container ====== */
#review-form {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ====== Labels ====== */
#review-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 3rem;
}

.review-form__title,
.review-form__content,
.review-form__meta div:first-child,
.review-form__meta,
.review-form__header {
  margin-bottom: 3rem;
}

.review-form__meta,
.review-form__meta div:first-child {
  display: block;
}

/* ====== Inputs & Selects ====== */
#review-form input[type="text"],
#review-form select,
#review-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

#review-form input:focus,
#review-form select:focus,
#review-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

/* ====== Age & Gender Side by Side ====== */
.review-form__meta {
  display: block;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.review-form__meta select {
  width: 100%;
}

/* ====== Star Rating Section ====== */
.review-form__rating {
  margin-bottom: 20px;
}

.rating-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.rating-item span {
  width: 30%;
  font-weight: 600;
  color: #333;
}

.stars {
  font-size: 3rem;
  letter-spacing: 4px;
  cursor: pointer;
  color: #ccc;
  user-select: none;
  transition: color 0.2s ease;
}

.stars span.active {
  color: #ffb400;
}

/* ====== Textarea ====== */
#review-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ====== Submit Button ====== */
#review-form button[type="submit"] {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  font-size: 16px;
}

#review-form button[type="submit"]:hover {
  background: #005f8c;
}

.reviews__more {
  text-align: center;
  margin-top: 20px;
}

#loadMoreReviews {
  background: #223654;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

#loadMoreReviews:hover {
  background: #a9333d;
}

.review.fade-in {
  animation: fadeIns 0.4s ease-in;
}

@keyframes fadeIns {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.review__comment-main br {
  display: none;
}

.matomekai__btn-group {
  overflow: auto;
}

.customers-reviews_btn {
  background: transparent;
  color: #223654;
  border: #223654 solid 1px;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  display: inline-block;
  margin-top: 3rem;
  text-align: center;
  text-decoration: none;
}

.review-form__media input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  margin-bottom: 3rem;
}

.customers-reviews {
  font-size: 3rem;
}
.customers-reviews__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(260 / 7.82667 * 1rem);
  max-width: calc(260 / 7.82667 * 1rem);
  margin-right: calc(88 / 7.82667 * 1rem);
  background-image: radial-gradient(#000 calc(75 / 7.82667 * 1rem), transparent calc((75 / 7.82667 * 1rem) + (0.5 / 7.82667 * 1rem))), conic-gradient(#fff 0% 94%, #000 94% 100%);
  border-radius: 50%;
  height: calc(200 / 7.82667 * 1rem);
  width: calc(200 / 7.82667 * 1rem);
  margin: auto;
}
.customers-reviews__average {
  text-align: center;
}
.customers-reviews__average-title {
  font-size: 1.7rem;
  font-weight: bold;
}
.customers-reviews__average-desc {
  font-size: 1.5rem;
}
.customers-reviews__average-score {
  font-size: 5rem;
  font-weight: bold;
}
.customers-reviews__count {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 2rem 0;
}
.customers-reviews__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.customers-reviews__item {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.customers-reviews__stars-text {
  display: inline-block;
  width: fit-content;
}
.customers-reviews__stars {
  display: inline-block;
  width: fit-content;
  width: 100%;
  max-width: calc(120.25 / 7.82667 * 1rem);
  margin-left: 1rem;
  color: #f19e39;
}
.customers-reviews__bar {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-left: 1rem;
  margin-right: 1rem;
}
.customers-reviews__bar-fill {
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: #223654;
}
.customers-reviews__number {
  font-weight: bold;
}
.customers-reviews__medias {
  margin: 4rem -1rem;
  overflow: hidden;
  position: relative;
}
.customers-reviews__medias .slick-track {
  display: flex;
  flex-direction: row;
}
.customers-reviews__medias .slick-arrow {
  left: 0rem !important;
  transform: translateY(-50%);
}
.customers-reviews__medias .slick-next {
  left: unset !important;
  right: 0rem !important;
}
.customers-reviews__media-item {
  aspect-ratio: 1 / 1;
  border: 1px #aaa solid;
  border-radius: 1rem;
  line-height: 0;
  overflow: hidden;
  width: calc(100vw / 3);
  margin: 0 1rem;
}
.customers-reviews__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customers-reviews__media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customers-reviews_btn {
  background: transparent;
  color: #223654;
  border: #223654 solid 1px;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  display: inline-block;
  margin-top: 3rem;
  text-align: center;
  text-decoration: none;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}
.reviews__title {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: #3b3b3b;
  margin-bottom: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center !important;
}
.reviews__subtitle {
  font-size: 1.3rem;
  color: #777;
  margin-bottom: 5rem;
  text-transform: uppercase;
  text-align: center;
}

.single-post .reviews .slick-track {
  display: flex;
  flex-direction: row;
}
.single-post .reviews .slick-list {
  margin: 0 -4rem;
  z-index: -1;
}
.single-post .reviews .slide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 4rem;
}
.single-post .reviews .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.review {
  padding: 3.5rem;
  border-radius: 1.5rem;
  border: 1px solid #999999;
  background-color: #fff;
}
.review__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.review__author-icon {
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}
.review__author-name {
  font-weight: bold;
  font-size: 3rem;
}
.review__author-age {
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
  margin-left: 0.75rem;
}
.review__guchikomi {
  line-height: 2;
  margin-bottom: 3rem;
}
.review__guchikomi th {
  text-align: left;
  display: block;
  margin-right: 3rem;
}
.review__guchikomi td {
  color: #f19e39;
}
.review__comment {
  margin-top: 1.5rem;
}
.review__comment-title {
  font-weight: bold;
  letter-spacing: 0.5rem;
}
.review__comment-main {
  font-weight: 300;
  line-height: 175%;
  text-align: justify;
  margin-top: 2rem;
  letter-spacing: 0.1rem;
  font-size: 13px;
}

.single_product_inner .product-tabs .tab-content {
  display: none;
}
.single_product_inner .product-tabs .tab-content.active {
  display: block;
}

.matomekai {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  border: solid 1px #aaa;
}
.matomekai__title {
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  text-align: left;
}
.matomekai__btn {
  text-decoration: none;
  width: 80%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #223654;
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 0.8rem;
  padding: 2rem;
  font-size: 2.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.matomekai__btn-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.matomekai__btn svg {
  fill: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 960px) {
  .matomekai__btn {
    width: 100%;
    font-size: 2rem;
    padding: 1rem 1.8rem;
    border-radius: 0.6rem;
  }
}

.single-post .shop__btn-add {
  width: 100%;
}

.single_product_inner_info .customers-reviews {
  overflow: hidden;
}

.product__review-rate {
  margin: 1rem 0;
}

.review-rate__point {
  font-size: 3rem;
  font-weight: bold;
}
.review-rate__star {
  font-size: 2.2rem;
  color: #f19e39;
}
.review-rate__cmt-count {
  font-size: 1.5rem;
}

.page-comments .grid-1200 {
  padding: 0 15px;
}

.comments__header-title {
  font-size: 4rem;
  color: #171717;
  font-weight: bold;
  letter-spacing: 0rem;
  text-align: center;
  margin: 4rem 0;
}
.comments__header-title br {
  display: none;
}
.comments__header-image {
  width: 100%;
  width: 100%;
  border: 1px solid #aaa;
}
.comments__header-image img {
  width: 100%;
}

.review-form__media .input_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 12px;
  background: #f6fafb;
  border: 2px dashed #aaa;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-form__media input[type="file"] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}

.henkin-banner {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  line-height: 0;
}
.henkin-banner img {
  width: 100%;
}

.product-flavors {
  font-size: 2.5rem;
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-flavors .product-flavor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem 0.6rem;
  border-radius: 1rem;
  border: solid 1px #000;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-flavors .product-flavor:hover, .product-flavors .product-flavor.active {
  background-color: #223654;
  color: #fff;
  border-color: #223654;
}

.page-template-page-nicopuff-lp .reviews__title {
  color: #fff;
}
.page-template-page-nicopuff-lp .reviews__subtitle {
  color: #ddd;
}
.page-template-page-nicopuff-lp .customers-reviews__summary {
  margin: 3rem 0;
}
.page-template-page-nicopuff-lp .reviews {
  margin: 0 -3rem;
}
.page-template-page-nicopuff-lp .review {
  background: transparent;
  margin: 3rem;
}
.page-template-page-nicopuff-lp .review__author-icon svg path {
  stroke: #fff;
}
.page-template-page-nicopuff-lp .customers-reviews__average-title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.page-template-page-nicopuff-lp .highlight-product:nth-child(odd) .customers-reviews__circle {
  background-image: radial-gradient(#223654 calc(75 / 7.82667 * 1rem), transparent calc((75 / 7.82667 * 1rem) + (0.5 / 7.82667 * 1rem))), conic-gradient(#fff 0% 94%, #223654 94% 100%);
}
.page-template-page-nicopuff-lp .customers-reviews__totals {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.page-template-page-nicopuff-lp .customers-reviews__totals-stars {
  flex: 1;
}
.page-template-page-nicopuff-lp .customers-reviews__bar-fill {
  background: #fff;
}
.page-template-page-nicopuff-lp .highlight-product_main {
  margin-top: 10rem;
}
.page-template-page-nicopuff-lp .customers-reviews .slick-arrow {
  background: #fff;
  top: unset;
  bottom: -25px;
  transform: unset;
}
.page-template-page-nicopuff-lp .customers-reviews .slick-arrow.slick-next {
  right: 3.5rem;
}
.page-template-page-nicopuff-lp .customers-reviews .slick-arrow.slick-prev {
  left: 3.5rem;
}
.page-template-page-nicopuff-lp .customers-reviews .slick-arrow.slick-prev::before, .page-template-page-nicopuff-lp .customers-reviews .slick-arrow.slick-next::before {
  font-size: 12px !important;
  color: #000 !important;
}
.page-template-page-nicopuff-lp .slick-dots li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-nicopuff-lp .slick-dots li button {
  background-color: #ffffff80;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.page-template-page-nicopuff-lp .slick-dots li.slick-active button {
  background-color: #ffffff;
}
.page-template-page-nicopuff-lp .slick-dots li button:before {
  content: unset;
}

.new-layout {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  margin: 4rem 0;
}
.new-layout .heading-ranking {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.new-layout .heading-ranking .ranking-position {
  font-size: 4.5rem;
  font-weight: bold;
  background-color: #f19e39;
  color: #fff;
  display: inline-block;
  padding: 2rem 4rem;
  border-radius: 1rem;
}
.new-layout .heading-ranking .ranking-featureds {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.new-layout .heading-ranking .ranking-featureds .ranking-featured-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  background-color: #f6f6f6;
  position: relative;
  z-index: 1;
}
.new-layout .heading-ranking .ranking-featureds .ranking-featured-item::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url("../images/icons8-crown-90.png") no-repeat center center;
  background-size: contain;
}
.new-layout .product-info {
  margin-top: 4rem;
}
.new-layout .product-info .product__category {
  font-size: 3.5rem;
  font-weight: 600;
  color: #777;
  margin-bottom: 1rem;
}
.new-layout .product-info .product__title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border-bottom: #000 solid 3px;
  display: inline-block;
  width: fit-content;
  padding-bottom: 1rem;
}
.new-layout .product-info .product__recommend-score {
  font-size: 2.5rem;
  background-color: #fff9f4;
  padding: 3rem 4rem;
  border-radius: 1rem;
}
.new-layout .product-info .product__recommend-score .product__recommend-title {
  font-weight: 600;
  margin-right: 1rem;
  color: #910000;
}
.new-layout .product-info .product__recommend-score .product__recommend-value {
  font-weight: bold;
  color: #f14f39;
  font-size: 5rem;
  margin-top: 1rem;
}
.new-layout .product-info .product__recommend-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 3rem;
}
.new-layout .product-info .product__recommend-features .product__recommend-feature {
  color: #af3323;
  font-size: 2rem;
  font-weight: 600;
}
.new-layout .product-info .product__recommend-features .product__recommend-feature span {
  font-weight: bolder;
}
.new-layout .product-info .product__thumbnail {
  margin-top: 4rem;
}
.new-layout .product-info .product__price {
  margin-top: 4rem;
}
.new-layout .product-info .product__price .product__price-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #910000;
}
.new-layout .product-info .product__price .product__price-value {
  font-size: 4.5rem;
  font-weight: bold;
  color: #d32f2f;
}
.new-layout .product-info .product__price .product__price-value s {
  font-size: 2.5rem;
  color: #aaa;
  display: inline-block;
  width: 100%;
}
.new-layout .product-info .product__price .product__price-value span {
  font-size: 2.5rem;
  font-weight: 600;
  margin-left: 0.5rem;
  color: #333;
  display: inline-block;
  padding: 1rem;
  background-color: #f6f6f6;
  border-radius: 1rem;
}
.new-layout .product-info .product__table {
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 2.5rem;
  text-align: left;
}
.new-layout .product-info .product__table tr {
  border-bottom: #f19b39 solid 1px;
}
.new-layout .product-info .product__table th {
  background: #ebdcc9;
  padding: 2rem 3rem;
  width: 40%;
  font-weight: 400;
}
.new-layout .product-info .product__table td {
  padding: 2rem 3rem;
  font-weight: 600;
}
.new-layout .product-info a.product__single-link {
  display: inline-block;
  margin: 4rem 0;
  background-color: #223654;
  color: #fff;
  padding: 2rem 4rem;
  border-radius: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.new-layout .product-info a.product__single-link:hover {
  background-color: #1a2e45;
}
.new-layout .product-info a.product__single-link span {
  font-weight: 400;
}
.new-layout .product__good {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid #ff558e;
}
.new-layout .product__good-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  width: 100%;
  padding: 2rem;
  background-color: #ffdae9;
  color: #ff558e;
}
.new-layout .product__good-text {
  font-size: 2.5rem;
  line-height: 1.75;
  padding: 2rem;
}
.new-layout .product__good-text b,
.new-layout .product__good-text strong {
  font-weight: bold;
  color: #ff558e;
}

/*# sourceMappingURL=nicopuff-lp.css.map */
