@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;600;700&display=swap");
.container.active .fade-bg {
  background-position-y: 40px;
}

#main {
  padding-top: 0;
}

.fixed_header + #main {
  padding-top: 65px;
}

.top-hero {
  display: flex;
  flex-direction: column;
}

.top-nav {
  background: #fff;
  order: -1;
}

@media screen and (max-width: 979px) {
  .top-nav {
    order: 1;
    margin: -50px 0 20px;
    background: none;
  }
}

.top-nav__inner {
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  gap: 0;
}

@media screen and (max-width: 979px) {
  .top-nav__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 15px;
    max-width: 100%;
    font-feature-settings: 'palt';
  }
}

.top-nav__link {
  position: relative;
  padding: 8px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.35s ease;
  text-align: center;
}

.top-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 40px);
  height: 2px;
  background: #0ac;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-nav__link:hover {
  color: #0ac;
}

.top-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 979px) {
  .top-nav__link {
    border: 1px solid #999;
    background: #fff;
    border-radius: 4px;
    padding: 12px 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    transition: border-color 0.35s ease, color 0.35s ease;
  }
  .top-nav__link::after {
    display: none;
  }
  .top-nav__link:active {
    border-color: #0ac;
    color: #0ac;
  }
}

.swiper-container-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 60px;
  padding: 0;
}

.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-slide {
  width: 60%;
  transition: opacity 0.3s ease;
  background: #fff;
}

@media screen and (max-width: 979px) {
  .swiper-slide {
    width: 100%;
  }
}

.swiper-slide img {
  opacity: 0.3;
}

.swiper-slide.swiper-slide-active img {
  opacity: 1;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media screen and (max-width: 979px) {
  .swiper-slide img {
    border-radius: 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  margin-top: -50px !important;
  color: #333;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 40%;
  height: 40%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #fff;
  background: #0ac;
}

@media screen and (max-width: 979px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: 20px !important;
}

.swiper-button-prev svg {
  margin-right: 4px;
}

.swiper-button-next {
  right: 20px !important;
}

.swiper-button-next svg {
  margin-left: 4px;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
}

@media screen and (max-width: 979px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
  }
}

section.campaign {
  margin-bottom: 70px;
}

section.campaign .section_head {
  margin-bottom: 30px;
}

section.campaign .section_head h2 {
  line-height: 1.41;
}

section.campaign .section_head h2 span {
  font-size: .4em;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

section.campaign p.more {
  max-width: 864px;
  margin: 20px auto 0;
  text-align: right;
}

section.campaign p.more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-decoration: underline;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

section.campaign p.more a::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

section.campaign p.more a:hover {
  color: #0ac;
  text-decoration: none;
}

section.campaign p.more a:hover::after {
  border-color: #0ac;
}

@media screen and (max-width: 979px) {
  section.campaign p.more a {
    font-size: 11px;
  }
}

section.campaign ul.campaign {
  max-width: 864px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

@media screen and (max-width: 979px) {
  section.campaign ul.campaign {
    gap: 15px;
  }
}

@media screen and (min-width: 980px) {
  section.campaign ul.campaign li {
    flex: 0 0 calc(100% / 3 - 14px);
    max-width: calc(100% / 3 - 14px);
  }
}

section.campaign ul.campaign li {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

@media screen and (max-width: 979px) {
  section.campaign ul.campaign li {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
}

@media screen and (min-width: 980px) {
  #starter ul.campaign li:nth-of-type(n+4) {
    display: none;
  }
}

@media screen and (max-width: 979px) {
  #starter ul.campaign li:nth-of-type(n+5) {
    display: none;
  }
}

#campaigns ul.campaign li:nth-of-type(n+7) {
  display: none;
}

.banner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  line-height: 0;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.hover-brightness img {
  transition: filter 0.5s ease, transform 0.6s ease;
}

.hover-brightness:hover img {
  filter: brightness(1.04);
  transform: scale(1.1);
}

/* ===============================================
   EFFECT 3: Sparkle Burst
=============================================== */
.sparkle-burst {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.sparkle-burst img {
  transition: transform 0.5s ease;
}

.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sparkle::before,
.sparkle::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
  background: transparent;
}

.sparkle-burst:hover .sparkle {
  animation: sparkleAnim 1s ease-in-out forwards;
  animation-delay: var(--delay);
}

@keyframes sparkleAnim {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(360deg);
  }
}

.brand-area {
  margin-bottom: 60px;
}

.brand-area .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-area .section_head {
  margin-bottom: 30px;
  text-align: center;
}

.brand-area .section_head h2 {
  line-height: 1.41;
}

.brand-area__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 979px) {
  .brand-area__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.brand-area__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.brand-area__link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding-bottom: 20px;
}

.brand-area__img-wrap {
  position: relative;
  aspect-ratio: 25 / 14;
  overflow: hidden;
  margin: 0;
  background: #fafafa;
}

.brand-area__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.brand-area__item:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.brand-area__item:hover .hover-brightness img {
  filter: brightness(1.08);
}

.brand-area__name {
  font-weight: 400;
  margin: 16px 12px 6px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.brand-area__name span:first-child {
  font-size: 24px;
}

.brand-area__name span:first-child.jp {
  font-size: 21px;
}

.brand-area__name span:last-child {
  font-size: 13px;
}

.brand-area__name span.jp {
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

@media screen and (max-width: 979px) {
  .brand-area__name {
    font-size: 15px;
    margin: 14px 12px 4px;
  }
}

.brand-area__desc {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #e0e4e8;
  color: #333;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-radius: 30px;
  z-index: 1;
}

@media screen and (max-width: 979px) {
  .brand-area__desc {
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    font-size: 11px;
  }
}

#category .inner {
  max-width: 1200px;
  /* ── Tab Bar ── */
}

#category .inner .tab-bar {
  top: 0;
  z-index: 100;
  margin-top: 32px;
}

#category .inner .tab-bar-inner {
  margin: 0 auto;
  padding: 0 0 10px;
  max-width: 890px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (max-width: 979px) {
  #category .inner .tab-bar-inner {
    margin: 0 -15px;
    padding-bottom: 0;
    gap: 5px;
    justify-content: center;
  }
}

#category .inner .tab-btn {
  position: relative;
  padding: 10px 17px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-feature-settings: 'palt';
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.8px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}

#category .inner .tab-btn:before {
  margin: 0 -3px -2px 0;
  content: '#';
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 14px;
}

@media screen and (max-width: 979px) {
  #category .inner .tab-btn:before {
    font-size: 11px;
  }
}

@media screen and (max-width: 979px) {
  #category .inner .tab-btn {
    padding: 5px 6px 6px;
    font-size: 11.5px;
  }
}

#category .inner .tab-btn:hover {
  color: #0ac;
  border-color: #0ac;
  background: rgba(0, 170, 204, 0.05);
}

#category .inner .tab-btn.active {
  color: #fff;
  background: #0ac;
  border-color: #0ac;
}

#category .inner .tab-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

#category .inner .tab-btn:hover .tab-icon {
  transform: scale(1.15);
}

#category .inner .tab-count {
  margin-bottom: -2px;
  font-size: 10px;
  font-weight: 500;
  color: #555;
  background: #eee;
  border-radius: 30px;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 979px) {
  #category .inner .tab-count {
    font-size: 9px;
    width: 16px;
    height: 16px;
    line-height: 15px;
  }
}

#category .inner .tab-btn:hover .tab-count {
  color: #fff;
  background: #0ac;
}

#category .inner .tab-btn.active .tab-count {
  background: #fff;
  color: #0ac;
}

#category .inner .product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 304px));
  justify-content: center;
  gap: 24px;
  margin: 40px auto;
}

@media screen and (max-width: 979px) {
  #category .inner .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  #category .inner .product-grid {
    grid-template-columns: 1fr;
  }
}

#category .inner .products-section {
  min-height: 324px;
}

#concern .inner {
  max-width: 980px;
}

.concern-area__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media screen and (max-width: 979px) {
  .concern-area__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .concern-area__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.concern-area__item {
  margin: 0;
}

.concern-area__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.concern-area__link:hover {
  color: #0ac;
  border-color: #0ac;
  background-color: #f7fcfd;
}

@media screen and (max-width: 979px) {
  .concern-area__link {
    padding: 9px 10px;
    min-height: 60px;
    gap: 8px;
  }
}

.concern-area__img-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}

@media screen and (max-width: 979px) {
  .concern-area__img-wrap {
    width: 36px;
    height: 36px;
  }
}

.concern-area__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translate(var(--concern-img-shift-x, 0), var(--concern-img-shift-y, -12%)) scale(var(--concern-img-scale, 2.7));
  transform-origin: center;
}

.concern-area__img.hair {
  --concern-img-shift-y: 60%;
}

.concern-area__text {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-feature-settings: 'palt';
}

@media screen and (max-width: 979px) {
  .concern-area__text {
    font-size: 12px;
  }
}

#category .inner .product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

#category .inner .product-card:hover {
  transform: translateY(-8px);
}

#category .inner .product-card:hover .product-image img {
  transform: scale(1.05);
}

#category .inner .product-card:hover .product-badge {
  /* background: $primary-color;
					color: white; */
}

#category .inner .product-card:hover .product-title {
  color: #0ac;
}

#category .inner .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#category .inner .product-card:hover::before {
  opacity: 1;
}

#category .inner .product-card .product-image {
  position: relative;
  height: 230px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
}

#category .inner .product-card .product-image img {
  max-width: 210px;
  max-height: 210px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

@media screen and (max-width: 979px) {
  #category .inner .product-card .product-image {
    padding-top: 20px;
  }
}

#category .inner .product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0ac;
  color: #fff;
  padding: 5px 10px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid #0ac;
  z-index: 2;
  font-feature-settings: 'palt';
}

#category .inner .product-card .care-labels {
  position: absolute;
  top: 40px;
  left: 10px;
  z-index: 2;
  width: 10em;
}

#category .inner .product-card .care-label {
  display: inline-block;
  background: #fff;
  color: #0ac;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid #0ac;
  z-index: 2;
  font-feature-settings: 'palt';
  margin-bottom: 4px;
  /* &--whitening {
				width: 7em;
			}

			&--aging {
				width: 11em;
			} */
}

#category .inner .product-card .product-info-card {
  padding: 16px 20px 4px;
  text-align: left;
}

#category .inner .product-card .product-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.61;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

#category .inner .product-card .product-feature {
  font-size: 14px;
  color: #666;
  line-height: 1.61;
  margin-bottom: 0;
  min-height: 40px;
}

@media screen and (max-width: 979px) {
  #category .inner .product-card .product-feature {
    font-size: 12.5px;
    font-feature-settings: 'palt';
    margin-bottom: 14px;
    min-height: auto;
  }
}

#category .inner .product-card .product-price {
  padding: 0 20px 20px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
}

#category .inner .product-card .product-price .tax-note {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

#category .inner .product-card .product-price small {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

#category .inner .product-card .product-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 768px) {
  #category .inner .product-card .product-title-wrapper {
    gap: 6px;
  }
}

#category .inner .product-card .product-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.61;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

#category .inner .product-card .product-title a {
  color: #333;
  text-decoration: none;
}

#category .inner .product-card .product-title a:hover {
  color: #0ac;
}

#category .inner .product-card .medical-badge {
  color: #333;
  border: 1px solid #333;
  padding: 5px 6px;
  line-height: 1;
  font-size: 11px;
  font-weight: 400;
  border-radius: 0;
  white-space: nowrap;
  font-feature-settings: 'palt';
  letter-spacing: 0.02em;
  flex-shrink: 0;
  align-self: flex-start;
}

#news .section_head h2::after {
  content: 'お知らせ';
  font-size: .4em;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

#news .section_head h2 {
  line-height: 1.41;
}

section#aboutus.campaign {
  margin-top: -70px;
}

@media screen and (max-width: 979px) {
  section#aboutus.campaign {
    margin-top: 0;
  }
}

section#aboutus.campaign p {
  margin: 0 auto;
  max-width: 640px;
}

section#aboutus.campaign p.image {
  margin: 30px auto 24px;
  border-radius: 10px;
}

section#aboutus.campaign p.image img {
  border-radius: 10px;
  transition: filter 0.35s ease, transform 0.35s ease;
}

section#aboutus.campaign p:hover img {
  filter: brightness(1.08);
}

section#aboutus.campaign p.text {
  color: #333;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 979px) {
  section#aboutus.campaign p.text {
    text-align: left;
  }
  section#aboutus.campaign p.text br {
    display: none;
  }
}

section#aboutus.campaign p.more {
  margin: 20px auto 0;
  text-align: center;
}

@media screen and (max-width: 979px) {
  section#aboutus.campaign p.more {
    text-align: right;
  }
}

/*# sourceMappingURL=renew-top.map */