@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  h1, h2, h3, h4, h5 {
    line-height: 1.3;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #e5e7eb;
}
.site-header.solid .nav-logo,
.site-header.solid .nav-link,
.site-header.solid .nav-icon {
  color: #111827;
}
.site-header.solid .nav-icon:hover {
  background: #f3f4f6;
}

.nav-inner {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .nav-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.nav-logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  position: relative;
}
.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item--dropdown:hover .nav-link {
  opacity: 0.7;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.nav-link:hover {
  opacity: 0.7;
}
.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.dropdown-link:hover {
  background-color: #f9fafb;
  color: #000000;
}
.dropdown-link.all {
  color: #9ca3af;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 5px;
}
.dropdown-link.all::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  height: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1.25rem;
}

.nav-hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
hamburger
========================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  color: #000;
}
.nav-toggle i {
  font-size: 24px;
}

/* =========================
mobile nav
========================= */
.nav-mobile {
  display: none;
}

/* =========================
responsive
========================= */
@media screen and (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    background: #fff;
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }
  .nav-mobile.is-open {
    right: 0;
    display: block;
  }
  .nav-mobile__inner {
    display: flex;
    flex-direction: column;
    padding: 80px 32px 40px;
  }
  /* =========================
  mobile item
  ========================= */
  .nav-mobile-item {
    border-bottom: 1px solid #e5e7eb;
  }
  /* =========================
  trigger
  ========================= */
  .nav-mobile-trigger {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #171717;
  }
  .nav-mobile-trigger i {
    font-size: 15px;
    transition: transform 0.3s ease;
    color: #171717;
  }
  /* =========================
  dropdown
  ========================= */
  .nav-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-mobile-dropdown .dropdown-link {
    display: block;
    padding: 12px 0 12px 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
  }
  .nav-mobile-dropdown .dropdown-link.all {
    font-weight: 700;
    color: #9ca3af;
  }
  /* 開いた時 */
  .nav-mobile-item.is-open .nav-mobile-trigger i {
    transform: rotate(180deg);
  }
  /* =========================
  normal link
  ========================= */
  .nav-mobile-link {
    min-height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
}
.site-footer {
  background: #111827;
  color: #ffffff;
}

.footer-inner {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer-inner {
  padding-top: 4rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .footer-inner {
    padding-top: 1rem;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.875rem;
  color: #9ca3af;
}
@media (max-width: 767px) {
  .footer-copy {
    font-size: 0.8rem;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s ease;
}
.footer-legal-link:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
}
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__inner {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .hero__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero__inner {
  text-align: center;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.5rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero__btn--primary {
  background-color: #ffffff;
  color: #000000;
}
.hero__btn--primary:hover {
  background-color: #f3f4f6;
}
.hero__btn--secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero__scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hero__scroll-icon {
  font-size: 1.25rem;
  animation: topBounce 1s infinite;
}

@keyframes topBounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.featured {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .featured {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.featured {
  background-color: #ffffff;
}
.featured__container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .featured__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .featured__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.featured__header {
  text-align: center;
  margin-bottom: 3rem;
}
.featured__heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .featured__heading {
    font-size: 3rem;
  }
}
.featured__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.featured__card {
  cursor: pointer;
}
.featured__card:hover .featured__img {
  transform: scale(1.05);
}
.featured__card-link {
  text-decoration: none;
  display: block;
}
.featured__img-wrapper {
  width: 100%;
  height: 500px;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .featured__img-wrapper {
    height: auto;
  }
}
.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.featured__info {
  text-align: center;
}
.featured__category {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.featured__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .featured__item-title {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}
.featured__footer {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .featured__footer {
    margin-top: 2.5rem;
  }
}
.featured__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
}
.featured__view-all:hover {
  background-color: #1f2937;
}

.series {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .series {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.series {
  background-color: #f9fafb;
}
.series__container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .series__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .series__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.series__header {
  text-align: center;
  margin-bottom: 3rem;
}
.series__heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .series__heading {
    font-size: 3rem;
  }
}

.series-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  width: 100%;
}
.series-slider__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.series-slider__btn {
  position: absolute;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.series-slider__btn:hover {
  background-color: #ffffff;
}
.series-slider__btn i {
  font-size: 1.25rem;
  color: #1f2937;
}
.series-slider__btn--prev {
  left: 0;
}
.series-slider__btn--next {
  right: 0;
}
.series-slider__window {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.series-slider__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  transition: transform 0.5s ease;
}
.series-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.series-slider__dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  border: none;
  background-color: #9ca3af;
  transition: all 0.3s;
  cursor: pointer;
}
.series-slider__dot:hover {
  background-color: #4b5563;
}

.series-slide {
  flex-shrink: 0;
  width: 100%;
  cursor: pointer;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .series-slide {
    width: 28%;
  }
}
@media (min-width: 768px) {
  .series-slide:has(.is-active) {
    width: 44%;
  }
}
.series-slide__link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.series-slide__inner {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
}
.series-slide__inner.is-active {
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.series-slide__inner:hover.is-active .series-slide__img {
  transform: scale(1.05);
}
.series-slide__img-box {
  width: 100%;
  background-color: #ffffff;
  transition: all 0.5s ease;
}
.series-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.series-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}
.series-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: #ffffff;
  z-index: 2;
}
.series-slide__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.series-slide__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.story {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .story {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.story {
  background-color: #ffffff;
}
.story__container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .story__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .story__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.story__img-wrapper {
  width: 100%;
  height: 600px;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .story__img-wrapper {
    height: auto;
  }
}
.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.1em;
}
.story__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .story__title {
    font-size: 3rem;
  }
}
.story__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #4b5563;
  line-height: 1.625;
}
.story__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-decoration: none;
  align-self: flex-start;
  border: 2px solid #000000;
  color: #000000;
}
.story__btn:hover {
  background-color: #f9fafb;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
}
.product-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 130%;
  background: #f9fafb;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  display: block;
}
.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}
.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 1;
}
.product-card-wish {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  font-size: 1rem;
  color: #4b5563;
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.15s ease;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.product-card-wish:hover, .product-card-wish.wished {
  color: #dc2626;
  background: #ffffff;
}
.product-card:hover .product-card-wish {
  opacity: 1;
}
.product-card-series {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.product-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  padding-left: 0.25rem;
}
@media (max-width: 767px) {
  .product-card-name {
    font-size: 1.1rem;
  }
}
.product-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-card-name a:hover {
  color: #4b5563;
}
.product-card-flex {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.375rem;
  padding-left: 0.25rem;
}
.product-card-colors {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.product-card-colors-txt {
  margin-right: 5px;
  color: #8e9193;
  font-weight: 300;
}
.product-card-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.badge-new {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 8px;
}

.badge-sale {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 8px;
}

.catalog-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .catalog-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .catalog-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.catalog-container {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.catalog-count {
  font-size: 0.875rem;
  color: #6b7280;
}
.catalog-count strong {
  color: #111827;
  font-weight: 600;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-dropdown {
  position: relative;
}
.filter-dropdown .filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.filter-dropdown .filter-btn:hover {
  background-color: #f9fafb;
}
.filter-dropdown .filter-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 10;
  min-width: 120px;
}
.filter-dropdown .filter-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
}
.filter-dropdown .filter-option:hover {
  background-color: #f9fafb;
}
.filter-dropdown .filter-option.selected {
  font-weight: 600;
  color: #000000;
}

.page-mrt {
  margin-top: 64px;
}

.page-banner {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-banner {
    height: 16rem;
  }
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100__);
}
.page-banner__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner__inner {
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
}
.page-banner__subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245, 158, 11, 0.8);
  margin-bottom: 0.75rem;
}
.page-banner__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-banner__title {
    font-size: 3.5rem;
  }
}
.page-banner__desc {
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.5;
}

.series-card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .series-card {
    padding: 2rem 1.5rem;
  }
}
.series-card__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .series-card__main {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}
.series-card__content {
  flex: 1;
}
.series-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.series-card__category .badge-new {
  background-color: #6b7280;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.37rem;
  border-radius: 0.25rem;
  letter-spacing: normal;
}
.series-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.series-card__desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}
.series-card__sidebar {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .series-card__sidebar {
    width: 16rem;
  }
}
.series-card__sidebar-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.series-card__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.series-card__feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #374151;
}
.series-card__feature-list li i {
  color: #111827;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.series-card__details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.series-card__details-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.feature-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.feature-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 1.125rem;
}
.feature-item__body {
  flex: 1;
}
.feature-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.feature-item__text {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.catalog-count {
  font-size: 0.875rem;
  color: #6b7280;
}
.catalog-count strong {
  color: #111827;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-btn:hover {
  border-color: #9ca3af;
}

/* Gallery & Info */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 767px) {
  .pdp-grid {
    grid-template-columns: 1fr;
  }
}

.pdp-gallery__hero {
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9fafb;
}
.pdp-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .pdp-gallery__hero {
    height: auto;
  }
}

.pdp-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .pdp-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.pdp-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
}
.pdp-thumb.is-active {
  border: 1px solid #111827;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .pdp-thumb {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.pdp-info__title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.pdp-info__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}
.pdp-info__text p {
  margin-bottom: 12px;
}

.pdp-swatches {
  display: flex;
  gap: 12px;
  border-radius: 6px;
}
.pdp-swatches__wrap {
  margin-top: 32px;
  display: grid;
  grid-gap: 10px;
}

.pdp-swatch {
  width: 64px;
  height: 64px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.pdp-swatch.is-active {
  border-color: #111827;
  transform: scale(1.05);
}
.pdp-swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* Features */
.pdp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 64px 0;
}
@media (max-width: 767px) {
  .pdp-features__grid {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }
}

.pdp-feat-card__img {
  height: 256px;
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.pdp-feat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.pdp-feat-card__ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pdp-feat-card__desc {
  font-size: 14px;
  color: #4b5563;
}

/* Specs Table */
.pdp-specs {
  border-top: 1px solid #e5e7eb;
  padding-top: 64px;
}
@media (max-width: 767px) {
  .pdp-specs {
    padding-top: 50px;
  }
}

.pdp-specs__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.pdp-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
@media (max-width: 767px) {
  .pdp-specs__grid {
    grid-template-columns: 1fr;
  }
}

.pdp-spec-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.pdp-spec-row__lbl {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  min-width: 150px;
}
.pdp-spec-row__val {
  font-size: 14px;
  color: #111827;
}
@media (max-width: 767px) {
  .pdp-spec-row {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
}

.related-products {
  padding: 64px 0;
  background-color: #f9fafb;
}
.related-products__inner {
  max-width: 80rem;
  width: 90%;
  margin: 0 auto;
}
.related-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.related-products__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.related-products__controls {
  display: flex;
  gap: 8px;
}
.related-products__btn {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #171717;
}
.related-products__btn:hover {
  border-color: #000;
  background: #fff;
}
.related-products__btn:disabled {
  opacity: 0.4;
}
.related-products__track-wrap {
  overflow: hidden;
}
.related-products__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s;
}
.related-products__item {
  flex: 0 0 calc(25% - 18px);
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  transition: 0.3s;
  background-color: #f9fafb;
  display: block;
  background-color: #fff;
}
.related-products__item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.related-products__item:hover img {
  transform: scale(1.05);
}
.related-products__item img {
  width: 100%;
  object-fit: contain;
  height: 370px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .related-products__item img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .related-products__item {
    flex-basis: 100%;
  }
}
.related-products__desc {
  padding: 1rem;
  background-color: #fff;
}
.related-products_itemttl {
  font-size: 1.125rem;
}
.related-products__itemcolor {
  color: #6b7280;
  font-size: 0.8rem;
}

.bl_customModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.bl_customModal.is-active {
  display: flex;
}

.bl_customModal_content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.bl_customModal_content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.bl_customModal_close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .artist-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.artist-card {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}
.artist-card:hover .artist-card__thumb {
  transform: scale(1.1);
}
.artist-card__thumb {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.artist-card__body {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #ffffff;
}
.artist-card__genre {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.artist-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.artist-card__more {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}
.artist-card__item li {
  font-size: 0.8125rem;
  opacity: 0.7;
}
.artist-card:hover .artist-card__thumb img {
  transform: scale(1.05);
}
.artist-card:hover .artist-card__more {
  opacity: 1;
  transform: translateY(0);
}

.artist-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.artist-detail__img {
  margin: 0 0 1.5rem 0;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.artist-detail__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.artist-detail__ttl {
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .artist-detail__ttl {
    font-size: 2rem;
  }
}
.artist-detail__sub-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.artist-detail__url a {
  color: #374151;
  font-size: 0.875rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.artist-detail__url a:hover {
  color: #111827;
}
.artist-detail__equip {
  margin-bottom: 1.5rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.artist-detail__equip span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #fff;
  padding: 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.7;
  font-size: 0.8125rem;
}
.artist-detail__equip::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 1px;
  border-top: 1px solid #f3f3f3;
}
.artist-detail__comment {
  margin: 0 auto 2rem auto;
  color: #4b5563;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}
.artist-detail__comment p {
  margin-bottom: 1rem;
}
.artist-detail__comment p:last-child {
  margin-bottom: 0;
}
.artist-detail__sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.artist-detail__sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.artist-detail__sns-item img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}
.artist-detail__sns-item:hover {
  border-color: #111827;
  transform: translateY(-2px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-card {
  display: block;
  height: 100%;
  width: 100%;
}
.news-card:hover .news-card__img img {
  transform: scale(1.1);
}
.news-card__img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 2/1;
  margin-bottom: 15px;
  overflow: hidden;
}
.news-card__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  .news-card__img {
    margin-bottom: 10px;
  }
}
.news-card__desc {
  padding: 10px;
}
.news-card__deta {
  display: block;
  font-size: 0.8125em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .news-card__deta {
    margin-bottom: 5px;
  }
}
.news-card__ttl {
  font-size: 1.5rem;
}

.news-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.news-detail__img {
  margin: 0 0 1.5rem 0;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-detail__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-detail__ttl {
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .news-detail__ttl {
    font-size: 2rem;
  }
}
.news-detail__sub-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.news-detail__url a {
  color: #374151;
  font-size: 0.875rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.news-detail__url a:hover {
  color: #111827;
}
.news-detail__equip {
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
  width: 100%;
}
.news-detail__equip span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #fff;
  padding: 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.7;
  font-size: 0.8125rem;
}
.news-detail__equip::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 1px;
  border-top: 1px solid #f3f3f3;
}
.news-detail__comment {
  margin: 0 auto 2rem auto;
  color: #4b5563;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}
.news-detail__comment p {
  margin-bottom: 1rem;
}
.news-detail__comment p:last-child {
  margin-bottom: 0;
}
.news-detail__sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.news-detail__sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.news-detail__sns-item img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}
.news-detail__sns-item:hover {
  border-color: #111827;
  transform: translateY(-2px);
}

.post-ttl {
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #dadada;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .post-ttl {
    font-size: 2rem;
  }
}

.post-img {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .post-img {
    margin-bottom: 30px;
  }
}
.post-img img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .wp-block-media-text {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
  }
}

.post-data {
  margin-bottom: 10px;
  display: block;
}

.mb-10 {
  margin-bottom: 10px;
}

.under-container {
  width: 92%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 20px 0;
}
.under-container.pt-head {
  padding: 63px 0 70px;
}
@media (max-width: 767px) {
  .under-container.pt-head {
    padding: 63px 0 40px;
  }
}
.under-container.-w100 {
  width: 100%;
  max-width: initial;
}

.page-section {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .page-section {
    padding: 40px 0;
  }
}

.container-small {
  position: relative;
  max-width: 650px;
  width: 92%;
  margin: 0 auto;
}

.mb-30 {
  margin-bottom: 1.875rem;
}

.pd-btm {
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .pd-btm {
    padding-bottom: 3rem;
  }
}

.w-full {
  width: 100% !important;
}

.product-container {
  width: 92%;
  max-width: 80rem;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: calc(100vh - 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .about-layout {
    display: flex;
    flex-direction: column-reverse;
  }
}
.about-layout {
  position: relative;
}

.about-main {
  width: 100%;
  grid-column: span 10/span 10;
}

.about-sidebar {
  grid-column: span 2/span 2;
  padding: 2rem 2rem 2rem 1rem;
  position: sticky;
  top: 63px;
}
@media (max-width: 767px) {
  .about-sidebar {
    position: static;
    width: 100%;
    padding: 0 2rem;
  }
}
.about-sidebar__block {
  margin-top: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.about-sidebar__block:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .about-sidebar__block {
    padding: 2rem 0 1rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: none;
  }
}
.about-sidebar__ttl {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-sidebar__link {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.5s ease;
}
.about-sidebar__link:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .about-sidebar__link {
    margin-bottom: 0;
    font-size: 1rem;
  }
}
.about-sidebar__link--current {
  font-weight: 500;
  color: #111827;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) {
  .about-hero {
    height: 70vh;
  }
}
.about-hero__img {
  margin: 0;
  width: 100%;
  height: 100%;
}
.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100__);
}
.about-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.about-hero__title-group {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about-hero__title-group {
    margin-left: 4rem;
    padding-left: 2rem;
  }
}
.about-hero__main-ttl {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin: 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .about-hero__main-ttl {
    font-size: 3.75rem;
  }
}
.about-hero__sub-ttl {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .about-hero__sub-ttl {
    font-size: 2.25rem;
  }
}

.about-article {
  width: 100%;
  max-width: 48rem;
  padding: 2rem 2rem 0 2rem;
}
@media (max-width: 767px) {
  .about-article {
    width: 90%;
    padding: 2rem 0 1rem;
    margin: 0 auto;
  }
}
.about-article__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.about-article__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 767px) {
  .about-article__video {
    margin-bottom: 3rem;
  }
}
.about-article h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111827;
  margin: 0 0 2rem 0;
}
@media (min-width: 1024px) {
  .about-article h2 {
    font-size: 2.625rem;
  }
}
.about-article h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  margin: 2.5rem 0 1rem 0;
}
@media (min-width: 1024px) {
  .about-article h3 {
    font-size: 1.875rem;
  }
}
.about-article h3 a {
  color: inherit;
  text-decoration: none;
}
.about-article h3 a:hover {
  text-decoration: underline;
}
.about-article p {
  font-weight: 300;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 2rem 0;
  font-size: 1rem;
}
.about-article p strong {
  font-weight: 600;
  color: #111827;
}
.about-article ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0 0 2rem 0;
}
.about-article ul li {
  font-weight: 300;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-article ul li:last-child {
  margin-bottom: 0;
}
.about-article ul li strong {
  font-weight: 600;
  color: #111827;
}

.section-ttl {
  font-size: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d1d5db;
  margin: 0 0 2rem 0;
  position: relative;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.link-list .btn-link {
  display: inline-block;
  color: #111827;
  text-decoration: none;
}
.link-list .btn-link:hover {
  opacity: 0.7;
}

.faq-item {
  overflow: hidden;
  margin: 0 0 1rem 0;
  background-color: #ffffff;
}
.faq-item__q {
  border-radius: 0.5rem;
  background-color: #f3f4f6;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq-item__q:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .faq-item__q {
    align-items: flex-start;
    padding: 1rem 1.5rem 1.25rem;
  }
}
.faq-item__a {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: transparent;
  transition: max-height 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.faq-item__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .faq-item__inner {
    align-items: flex-start;
  }
}
.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2rem;
  flex-shrink: 0;
}
.faq-item__ttl {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .faq-item__ttl {
    margin-top: 10px;
  }
}
.faq-item__txt {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  margin-top: 0.25rem;
}
.faq-item__txt p {
  margin: 0;
}
@media (max-width: 767px) {
  .faq-item__txt {
    margin-top: 10px;
  }
}
.faq-item.is-open .faq-item__q {
  background-color: transparent;
  border-radius: 0;
}
.faq-item.is-open .faq-item__a {
  max-height: 500px;
  opacity: 1;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
}

.support-content {
  color: #374151;
  line-height: 1.8;
  font-size: 0.95rem;
}
.support-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.support-content p {
  margin: 0 0 1.5rem 0;
}
.support-content p:last-child {
  margin-bottom: 0;
}
.support-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.support-content ul li {
  margin-bottom: 0.75rem;
}
.support-content ul li:last-child {
  margin-bottom: 0;
}
.support-content ul li ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.5rem;
}
.support-content ul li ul li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.genre-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  max-width: 1300px;
  overflow: auto;
}
@media (max-width: 767px) {
  .genre-tabs {
    justify-content: flex-start;
  }
}

.genre-tab {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 12px 17px;
  background: #f3f3f3;
  margin: 0 5px;
  transition: 0.2s ease;
  word-break: keep-all;
}
.genre-tab:hover {
  border-color: #9ca3af;
  color: #111827;
}
.genre-tab.active {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 3rem;
  }
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.pagination .page-numbers:hover:not(.current) {
  border-color: #9ca3af;
  color: #111827;
  background-color: #f3f4f6;
}
.pagination .page-numbers.current {
  background-color: #1f2937;
  border-color: #111827;
  color: #ffffff;
  cursor: default;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  min-width: auto;
  padding: 0 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =============================================
パーツ共通
============================================= */
.pdp-section {
  position: relative;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .pdp-section {
    padding: 40px 0;
  }
}
.pdp-section--txt2col {
  padding: 50px 0 100px;
}
@media (max-width: 767px) {
  .pdp-section--txt2col {
    padding: 30px 0 40px;
  }
}
.pdp-section--black {
  background: #171717;
}
.pdp-section--black * {
  color: #fff;
}

.pdp-container {
  position: relative;
  max-width: 1100px;
  width: 92%;
  margin: 0 auto;
}

.pdp-container-short {
  position: relative;
  max-width: 980px;
  width: 92%;
  margin: 0 auto;
}

.pdp-container-small {
  position: relative;
  max-width: 650px;
  width: 92%;
  margin: 0 auto;
}

.pdp-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.pdp-h2--white {
  color: #fff;
}

.pdp-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.pdp-h3--white {
  color: #fff;
}

.pdp-detail-h2 {
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.pdp-detail-h2--center {
  text-align: center;
}
@media (max-width: 767px) {
  .pdp-detail-h2 {
    font-size: 2rem;
  }
}

.pdp-img-wrap {
  text-align: center;
}
.pdp-img-wrap img {
  width: 100%;
  height: auto;
}

.pdp-main-img {
  text-align: center;
  margin-top: 50px;
}
.pdp-main-img img {
  width: 100%;
  height: auto;
}

.pdp-movie-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1;
}
.pdp-movie-wrap iframe {
  vertical-align: bottom;
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .pdp-movie-wrap iframe {
    height: 64vw;
  }
}

.pdp-img-slide {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 767px) {
  .pdp-img-slide {
    padding: 0 40px;
  }
}
.pdp-img-slide .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.pdp-img-slide .splide__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.pdp-img-slide .splide__arrow {
  background: transparent;
  border: none;
  width: 37px;
  height: 71px;
  opacity: 1;
}
.pdp-img-slide .splide__arrow svg {
  display: none;
}
.pdp-img-slide .splide__arrow--prev {
  left: -50px;
  background-image: url(../img/under/icon_slide_arrow02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pdp-img-slide .splide__arrow--prev::before {
  display: none;
}
.pdp-img-slide .splide__arrow--prev:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .pdp-img-slide .splide__arrow--prev {
    left: -30px;
    width: 20px;
    height: 38px;
  }
}
.pdp-img-slide .splide__arrow--next {
  right: -50px;
  background-image: url(../img/under/icon_slide_arrow01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pdp-img-slide .splide__arrow--next::before {
  display: none;
}
.pdp-img-slide .splide__arrow--next:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .pdp-img-slide .splide__arrow--next {
    right: -30px;
    width: 20px;
    height: 38px;
  }
}

.pdp-desc-list {
  column-count: 3;
  column-gap: 50px;
}
@media (max-width: 767px) {
  .pdp-desc-list {
    column-count: 1;
    column-gap: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.pdp-desc-list__item {
  break-inside: avoid;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .pdp-desc-list__item {
    margin-bottom: 0;
  }
}
.pdp-desc-list__item--white * {
  color: #fff;
}

.pdp-icon-list {
  display: flex;
  justify-content: center;
  gap: 50px 20px;
}
@media (max-width: 767px) {
  .pdp-icon-list {
    display: block;
  }
}
.pdp-icon-list__item {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media (max-width: 767px) {
  .pdp-icon-list__item {
    width: 100%;
  }
  .pdp-icon-list__item:nth-child(n+2) {
    margin-top: 20px;
  }
}
.pdp-icon-list__item img {
  width: 100%;
  height: auto;
}
.pdp-icon-list .pdp-icon-list__ttl {
  text-align: center;
  margin: 10px 0;
}

.pdp-2col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 0 40px;
}
@media (max-width: 767px) {
  .pdp-2col-list {
    margin: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.pdp-2col-list__item ul li {
  position: relative;
  padding-left: 13px;
  line-height: 1.5;
}
.pdp-2col-list__item ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 5px;
  width: 5px;
  background: #171717;
  border-radius: 50%;
}
.pdp-2col-list__item ul li + li {
  margin-top: 5px;
}

.pdp-flex-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .pdp-flex-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.pdp-flex-layout__item {
  flex: 1;
}

.pdp-block-layout {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .pdp-block-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.pdp-block-layout__img {
  max-width: 600px;
  width: 60%;
}
@media (max-width: 767px) {
  .pdp-block-layout__img {
    max-width: 100%;
    width: 100%;
  }
}
.pdp-block-layout__item {
  flex: 1;
}

.pdp-list-disc > li::before {
  content: "・";
}
.pdp-list-disc > li + li {
  margin-top: 10px;
}

.filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-count {
  font-size: 0.875rem;
  color: #6b7280;
}
.filter-count strong {
  color: #111827;
}

.filter-dropdown {
  position: relative;
  display: inline-block;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.filter-btn:hover {
  border-color: #9ca3af;
}
.filter-btn.active-filter {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.filter-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  min-width: 12rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 0.25rem 0;
  overflow: hidden;
}
.filter-menu.open {
  display: block;
}

.filter-option {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}
.filter-option:hover {
  background: #f9fafb;
  color: #111827;
}
.filter-option.selected {
  background: #f3f4f6;
  color: #111827;
  font-weight: 600;
}

.active-chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #374151;
}

.chip-remove {
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  color: inherit;
}
.chip-remove:hover {
  color: #111827;
}

.chip-clear {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}/*# sourceMappingURL=style.css.map */