*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #faf6f1;
  --warm-white: #fffbf7;
  --blush: #f2d4cc;
  --rose: #d4928a;
  --deep-rose: #b5706a;
  --charcoal: #2a2a2a;
  --soft-black: #1a1a1a;
  --warm-gray: #8a8078;
  --light-gray: #c9c2ba;
  --gold: #c4a87c;
  --soft-pink: #f8e8e4;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Cursor */
@media (hover: hover) {
  body {
    cursor: none;
  }
  .cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--rose);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition:
      transform 0.15s ease,
      background 0.15s ease;
    mix-blend-mode: difference;
  }
  .cursor.hover {
    transform: scale(1.1);
    background: rgba(212, 146, 138, 0.15);
  }
  .cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--rose);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
  }
}
@media (hover: none) {
  .cursor,
  .cursor-dot {
    display: none;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--blush);
  border-radius: 3px;
}

/* Loading Screen */
.loader {
  position: fixed;
  inset: 0;
  background: var(--soft-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--cream);
  letter-spacing: 0.4em;
  overflow: hidden;
}
.loader-text span {
  display: inline-block;
  animation: loaderReveal 0.6s ease forwards;
  opacity: 0;
  transform: translateY(100%);
}
@keyframes loaderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--blush);
  margin-top: 1.5rem;
  animation: lineGrow 1.5s ease 0.8s forwards;
}
@keyframes lineGrow {
  to {
    width: 200px;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.4s ease,
    padding 0.3s ease;
}
nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo-main {
  display: inline-block;
}
.nav-logo-has-subtitle {
  gap: 0.85rem;
}
.nav-logo-fanclub-subtitle {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f8379;
  white-space: nowrap;
  line-height: 1.1;
}
.nav-logo.light {
  color: var(--cream);
}
.nav-logo.light .nav-logo-fanclub-subtitle {
  color: rgba(243, 237, 231, 0.86);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-quick-menu {
  position: relative;
}
.fanclub-header-menu {
  position: relative;
}
.fanclub-header-menu-toggle {
  min-width: 0;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.fanclub-header-menu-toggle:hover {
  color: #7f6f66;
  opacity: 0.9;
}
.fanclub-header-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 196px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1100;
}
.fanclub-header-menu-group {
  display: grid;
  gap: 6px;
}
.fanclub-header-menu-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 2px 0;
  background: rgba(188, 159, 138, 0.28);
}
.fanclub-header-mobile-sections {
  display: none;
}
.fanclub-header-menu.is-open .fanclub-header-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fanclub-header-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-transform: lowercase;
  transition: background 0.2s ease;
}
.fanclub-header-menu-panel a:hover {
  background: #f6efe9;
}

.top-quick-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 42, 42, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.top-quick-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(42, 42, 42, 0.35);
}

.top-quick-menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--charcoal);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.top-quick-menu.is-open .top-quick-menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.top-quick-menu.is-open .top-quick-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.top-quick-menu.is-open .top-quick-menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.top-quick-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.top-quick-menu.is-open .top-quick-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-quick-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.top-quick-menu-panel a:hover {
  background: #f6efe9;
  color: #2a2a2a;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a.light {
  color: var(--cream);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #7f8ca1;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(127, 140, 161, 0.28);
  background: rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
}
.nav-cart-icon:hover {
  color: #56637a;
  border-color: rgba(86, 99, 122, 0.45);
  background: rgba(255, 255, 255, 0.9);
}
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #d9534f;
  color: #fff;
  font-size: 0.66rem;
  line-height: 1;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--warm-white);
  display: none;
}
.nav-cart-badge.is-visible {
  display: inline-flex;
}

body.goods-cart-open {
  overflow: hidden;
}

.goods-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
}
.goods-cart-drawer-overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(17, 19, 24, 0);
  transition: background 0.3s ease;
}
.goods-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #efefef;
  box-shadow: -12px 0 34px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.goods-cart-drawer.is-open {
  pointer-events: auto;
}
.goods-cart-drawer.is-open .goods-cart-drawer-overlay {
  background: rgba(17, 19, 24, 0.38);
}
.goods-cart-drawer.is-open .goods-cart-drawer-panel {
  transform: translateX(0);
}
.goods-cart-drawer-head {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1rem 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}
.goods-cart-drawer-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
}
.goods-cart-drawer-head h2 {
  margin: 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.goods-cart-drawer-count {
  color: #767676;
  font-weight: 500;
}
.goods-cart-drawer-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: #f6f6f6;
  color: #5d5d5d;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.goods-cart-drawer-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0.8rem 1rem 1rem;
}
.goods-cart-empty {
  color: #7c7c7c;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.86rem;
}
.goods-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.goods-cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #efefef;
  border-radius: 16px;
  background: #fff;
}
.goods-cart-item-thumb {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}
.goods-cart-item-thumb a,
.goods-cart-item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}
.goods-cart-item-thumb img {
  object-fit: cover;
}
.goods-cart-item-noimage {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #999;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}
.goods-cart-item-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.goods-cart-item-name {
  font-size: 0.86rem;
  color: #1f1f1f;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.goods-cart-item-name a {
  color: inherit;
  text-decoration: none;
}
.goods-cart-item-meta {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.goods-cart-item-price {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1;
}
.goods-cart-item-price small {
  font-size: 0.67rem;
  color: #666;
  margin-left: 0.22rem;
  font-weight: 400;
}
.goods-cart-item-control {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.goods-cart-qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #1f1f1f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.goods-cart-qty-btn:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff;
}
.goods-cart-qty-input {
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.9rem;
  color: #1f1f1f;
  appearance: textfield;
  -moz-appearance: textfield;
}
.goods-cart-qty-input::-webkit-outer-spin-button,
.goods-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.goods-cart-remove-btn {
  margin-top: 0.35rem;
  align-self: flex-start;
  border: none;
  background: transparent;
  color: #8f8f8f;
  font-size: 0.72rem;
  cursor: pointer;
}
.goods-cart-drawer-foot {
  flex: 0 0 auto;
  border-top: 1px solid #f0f0f0;
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.goods-cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  color: #3f3f3f;
}
.goods-cart-drawer-total strong {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 700;
}
.goods-cart-checkout-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.goods-cart-checkout-btn:hover {
  background: #000;
}
.goods-cart-checkout-arrow {
  transition: transform 0.25s ease;
}
.goods-cart-checkout-btn:hover .goods-cart-checkout-arrow {
  transform: translateX(4px);
}
.goods-cart-checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.goods-cart-continue-btn {
  border: none;
  background: transparent;
  color: #777;
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
}
.goods-cart-drawer-message {
  display: none;
  margin: 0.6rem 0 0;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  border: 1px solid transparent;
}
.goods-cart-drawer-message.is-error {
  color: #7a1f1f;
  background: #fff3f3;
  border-color: #f0cccc;
}
.goods-cart-drawer-message.is-success {
  color: #185a2f;
  background: #f1fbf4;
  border-color: #ccebd5;
}
.goods-cart-drawer-message.is-info {
  color: #2a2a2a;
  background: #f4f4f4;
  border-color: #d9d9d9;
}

.goods-checkout-section {
  padding: 8rem 5vw 6rem;
}
.goods-checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.goods-checkout-alert {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.7;
  border: 1px solid transparent;
}
.goods-checkout-alert.is-error {
  background: #fff3f3;
  color: #7a1f1f;
  border-color: #f0cccc;
}
.goods-checkout-alert.is-success {
  background: #f1fbf4;
  color: #185a2f;
  border-color: #ccebd5;
}
.goods-checkout-alert.is-info {
  background: #f4f4f4;
  color: #2a2a2a;
  border-color: #d9d9d9;
}
.goods-checkout-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.goods-checkout-summary-card,
.goods-checkout-form-card {
  background: var(--warm-white);
  border: 1px solid var(--blush);
  border-radius: 12px;
  padding: 1.25rem;
}
.goods-checkout-summary-card h2,
.goods-checkout-form-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
  color: var(--charcoal);
}
.goods-checkout-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.goods-checkout-summary-item {
  border-bottom: 1px solid rgba(242, 212, 204, 0.5);
  padding-bottom: 0.7rem;
}
.goods-checkout-summary-title {
  margin: 0 0 0.25rem;
  color: var(--charcoal);
  font-size: 0.86rem;
  line-height: 1.6;
}
.goods-checkout-summary-meta {
  margin: 0;
  color: var(--warm-gray);
  font-size: 0.8rem;
}
.goods-checkout-empty {
  color: var(--warm-gray);
  font-size: 0.86rem;
  margin-top: 0.5rem;
}
.goods-checkout-total {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--blush);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.goods-checkout-total span {
  color: var(--warm-gray);
  font-size: 0.85rem;
}
.goods-checkout-total strong {
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 600;
}
.goods-checkout-login-note {
  margin-bottom: 0.95rem;
  font-size: 0.82rem;
}
.goods-checkout-login-note a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.goods-checkout-guard {
  border: 1px solid #f0cccc;
  background: #fff8f8;
  color: #7a1f1f;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.goods-checkout-guard p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
}
.goods-checkout-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  min-width: 180px;
  height: 42px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid #e5b8b8;
  color: #7a1f1f;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.goods-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.goods-checkout-subnote {
  color: var(--warm-gray);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
}
.goods-checkout-member-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.goods-checkout-member-default-view {
  display: block;
}
.goods-checkout-member-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
}
.goods-checkout-member-info > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(242, 212, 204, 0.45);
  padding-bottom: 0.5rem;
}
.goods-checkout-member-info dt {
  color: var(--warm-gray);
  font-size: 0.76rem;
}
.goods-checkout-member-info dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.86rem;
  line-height: 1.7;
}
.goods-checkout-alt-shipping-toggle {
  margin-top: 0.9rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--rose);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  cursor: pointer;
}
.goods-checkout-alt-shipping-toggle:hover {
  color: #b56f68;
}
.goods-checkout-member-alt-fields {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(242, 212, 204, 0.45);
}
.goods-checkout-member-section.is-alt-mode .goods-checkout-alt-shipping-toggle {
  margin-top: 0;
}
.goods-checkout-member-section.is-alt-mode .goods-checkout-member-alt-fields {
  margin-top: 0.35rem;
  margin-bottom: 1.15rem;
  padding-top: 0;
  border-top: none;
}
.goods-checkout-member-alt-fields + .goods-checkout-submit-btn {
  margin-top: 1.3rem;
}
.goods-checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.75rem;
}
.goods-checkout-fields label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.goods-checkout-fields label.full {
  grid-column: 1 / -1;
}
.goods-checkout-fields label .required-prefix,
.goods-checkout-check .required-prefix {
  color: var(--rose);
}
.goods-checkout-fields input {
  width: 100%;
  height: 42px;
  padding: 0 0.75rem;
  border: 1px solid var(--blush);
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 0.88rem;
}
.goods-checkout-fields select {
  width: 100%;
  height: 42px;
  padding: 0 2.2rem 0 0.75rem;
  border: 1px solid var(--blush);
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 0.88rem;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8a8078 50%),
    linear-gradient(135deg, #8a8078 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
.goods-checkout-fields input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 146, 138, 0.1);
}
.goods-checkout-fields select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 146, 138, 0.1);
}
.goods-checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.8rem 0 0.8rem;
  font-size: 0.8rem;
  color: var(--charcoal);
  line-height: 1.7;
}
.goods-checkout-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.goods-checkout-submit-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--charcoal), #232323);
  color: var(--warm-white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.goods-checkout-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.goods-checkout-submit-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.goods-checkout-back {
  margin-top: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.hamburger.light span {
  background: var(--cream);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--soft-black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-links {
  list-style: none;
  text-align: center;
}
.mobile-menu-links li {
  margin: 1.5rem 0;
}
.mobile-menu-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}
.mobile-menu-links a:hover {
  color: var(--rose);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--soft-pink) 0%,
    var(--cream) 40%,
    var(--warm-white) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 212, 204, 0.4) 0%,
    transparent 70%
  );
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, 5%) scale(1.1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 55%;
}
.hero-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero-subtitle span {
  display: inline-block;
  animation: slideUp 0.8s ease 1.8s both;
}
.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.06em;
  overflow: hidden;
}
.hero-name span {
  display: inline-block;
  animation: slideUp 1s ease 2s both;
}
.hero-name-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero-name-jp span {
  display: inline-block;
  animation: slideUp 0.8s ease 2.2s both;
}
.hero-roles {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-role {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--blush);
  border-radius: 2rem;
  animation: fadeIn 0.8s ease 2.5s both;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeIn 1s ease 3s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rose);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Hero Image Slideshow */
.hero-image-wrapper {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 35vw;
  max-width: 500px;
  height: 70vh;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 10% 10%;
  opacity: 0;
  animation: heroImageReveal 1s ease 1.5s forwards;
}
@keyframes heroImageReveal {
  to {
    opacity: 1;
  }
}
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(250, 246, 241, 0.3) 100%
  );
  z-index: 10;
  pointer-events: none;
}
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    var(--soft-pink) 50%,
    var(--cream) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--rose);
  font-style: italic;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Section Styles */
section {
  padding: 8rem 8vw;
  position: relative;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.section-line {
  width: 60px;
  height: 1px;
  background: var(--blush);
  margin-bottom: 2rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* About Section */
.about {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--soft-pink), var(--blush));
  border-radius: 0 40% 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.about-image::before {
  content: "紅葉";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--blush);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}

/* Profile Details */
.profile-section {
  background: var(--cream);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.profile-card {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.profile-card:hover::before {
  transform: scaleX(1);
}
.profile-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rose);
}
.profile-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.profile-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Career Timeline */
.career {
  background: var(--soft-black);
  color: var(--cream);
}
.career .section-label {
  color: var(--gold);
}
.career .section-title {
  color: var(--cream);
}
.career .section-line {
  background: var(--gold);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-content {
  padding-right: 4rem;
  padding-left: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--soft-black);
  z-index: 2;
}
.timeline-content {
  width: 45%;
  padding-left: 4rem;
}
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.timeline-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--light-gray);
  font-weight: 300;
}

/* News Section */
.news-section {
  background: var(--cream);
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--blush);
  text-decoration: none;
  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}
.news-item:hover {
  background: rgba(242, 212, 204, 0.15);
  /* padding-left: 1rem;
  padding-right: 1rem; */
}
.news-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
}
.news-category {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--blush);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}
.news-title {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .news-category {
    width: fit-content;
  }
}
.news-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  width: fit-content;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--light-gray);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.news-more-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* Goods Section */
.goods-section {
  background: var(--warm-white);
}
.goods-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.goods-card {
  background: var(--cream);
  border: 1px solid #efe5de;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.goods-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #e8d7ce;
}
.goods-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5ece6;
  overflow: hidden;
  text-decoration: none;
}
.goods-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.goods-card:hover .goods-card-image img {
  transform: scale(1.04);
}
.goods-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--warm-gray);
}
.goods-card-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.goods-members-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.56rem;
  border: 1px solid var(--rose);
  color: var(--rose);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}
.goods-card-title {
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.goods-card-title a {
  color: var(--charcoal);
  text-decoration: none;
}
.goods-card-title a:hover {
  color: #1d1d1d;
}
.goods-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin: 0.05rem 0 0.2rem;
}
.goods-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.5rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.25s ease;
}
.goods-card-link:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}
.goods-card-link.is-disabled {
  cursor: default;
  opacity: 0.85;
}

/* Goods Archive */
.goods-archive {
  padding: 4rem 5vw 6rem;
  background: var(--warm-white);
  max-width: 1200px;
  margin: 0 auto;
}
.goods-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.goods-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.25s ease;
}
.goods-filter-btn:hover,
.goods-filter-btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}
.goods-grid-archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.goods-pagination {
  margin-top: 2rem;
}

/* Goods Single */
.goods-single-header {
  padding-bottom: 2.2rem;
}
.goods-single {
  padding: 0 5vw 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
}
.goods-single-media {
  border-radius: 4px;
  overflow: hidden;
  background: #f5ece6;
  min-height: 420px;
}
.goods-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goods-single-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--warm-gray);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}
.goods-single-content {
  background: var(--warm-white);
  border: 1px solid #efe5de;
  border-radius: 4px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.goods-single-price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
}
.goods-single-description {
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 2;
}
.goods-single-description p {
  margin-bottom: 1rem;
}
.goods-detail-block {
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: none;
}
.goods-detail-title {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #7b8390;
  margin-bottom: 0.72rem;
}
.goods-detail-body {
  color: var(--charcoal);
  font-size: 0.88rem;
  line-height: 1.9;
}
.goods-detail-body p {
  margin-bottom: 0.6rem;
}
.goods-option-block {
  padding-bottom: 0.2rem;
}
.goods-quantity-list {
  margin-top: 0.3rem;
  display: grid;
  gap: 0.72rem;
}
.goods-quantity-row {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto auto;
  align-items: center;
  column-gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid #e7ebf1;
  border-radius: 14px;
  background: #fbfcfe;
}
.goods-quantity-row.is-out-of-stock {
  background: #f7f8fa;
  border-color: #e2e6ed;
}
.goods-quantity-option {
  font-size: 0.95rem;
  color: #30363f;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.goods-quantity-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  line-height: 1;
  white-space: nowrap;
}
.goods-quantity-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #656b76;
  margin-left: 0.2rem;
}
.goods-quantity-control {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.45rem;
}
.goods-stock-out-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #a15b5b;
  background: #fff1f1;
  border: 1px solid #f1caca;
  white-space: nowrap;
}
.goods-qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d5dbe6;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.goods-qty-btn:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff;
}
.goods-qty-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  background: #f3f5f9;
  border-color: #d9dee8;
  color: #798395;
}
.goods-qty-input {
  width: 38px;
  height: 28px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.95rem;
  color: #222;
  appearance: textfield;
  -moz-appearance: textfield;
}
.goods-qty-input:focus {
  outline: none;
}
.goods-qty-input:disabled {
  color: #798395;
  opacity: 0.75;
}
.goods-qty-input::-webkit-outer-spin-button,
.goods-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.goods-option-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
  margin-top: 0.2rem;
}
.goods-option-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1.5;
}
.goods-option-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #1274ff;
  margin: 0;
}
.goods-single-actions {
  margin-top: 1.15rem;
}
.goods-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #121212;
  color: var(--cream);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.goods-buy-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.goods-buy-btn-arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.25s ease;
}
.goods-buy-btn:hover .goods-buy-btn-arrow {
  transform: translateX(4px);
}
.goods-buy-btn:disabled {
  cursor: not-allowed;
}
.goods-members-only-message {
  margin: 0;
  color: #7a1f1f;
  background: #fff3f3;
  border: 1px solid #f0cccc;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}
.goods-login-link {
  margin-top: 0.8rem;
  display: inline-block;
  color: var(--rose);
  font-size: 0.83rem;
  text-decoration: underline;
}
.goods-member-only-guide {
  margin-top: 1.2rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid #efe3dc;
  border-radius: 12px;
  background: #fdf9f6;
}
.goods-member-only-guide p {
  margin: 0 0 0.85rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.9;
}
.goods-member-only-guide p:last-child {
  margin-bottom: 0;
}
.goods-member-only-guide a {
  color: var(--rose);
  text-decoration: underline;
}
.goods-checkout-message {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.6;
  border: 1px solid transparent;
}
.goods-checkout-message.is-error {
  color: #7a1f1f;
  background: #fff3f3;
  border-color: #f0cccc;
}
.goods-checkout-message.is-success {
  color: #185a2f;
  background: #f1fbf4;
  border-color: #ccebd5;
}
.goods-checkout-message.is-info {
  color: #2a2a2a;
  background: #f4f4f4;
  border-color: #d9d9d9;
}
.goods-single-back {
  padding: 0 5vw 5.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .goods-grid,
  .goods-grid-archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .goods-single {
    grid-template-columns: 1fr;
  }
  .goods-single-media {
    min-height: 340px;
  }
}
@media (max-width: 768px) {
  .nav-right {
    gap: 0.75rem;
  }
  .nav-cart-icon {
    width: 38px;
    height: 38px;
  }
  .nav-cart-icon svg {
    width: 24px;
    height: 24px;
  }
  .goods-cart-drawer-panel {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-radius: 0;
  }
  .goods-cart-drawer-body {
    padding: 0.75rem 0.85rem 0.9rem;
  }
  .goods-cart-item-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .goods-cart-drawer-foot {
    padding: 0.85rem 0.85rem 1rem;
  }
  .goods-cart-checkout-btn {
    height: 46px;
  }
  .goods-grid,
  .goods-grid-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .goods-archive {
    padding: 3rem 5vw 5rem;
  }
  .goods-single {
    padding-top: 0;
    gap: 1.5rem;
  }
  .goods-single-content {
    padding: 1.25rem;
  }
  .goods-filter {
    gap: 0.55rem;
  }
  .goods-filter-btn {
    font-size: 0.68rem;
    padding: 0.52rem 0.9rem;
  }
  .goods-quantity-row {
    grid-template-columns: 1fr;
    row-gap: 0.7rem;
    padding: 0.9rem 0;
  }
  .goods-quantity-price {
    font-size: 2rem;
  }
  .goods-quantity-control {
    justify-self: start;
  }
  .goods-option-checklist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .goods-grid,
  .goods-grid-archive {
    grid-template-columns: 1fr;
  }
}

/* Goods Catalog (reference-inspired) */
.goods-catalog-page {
  background: #fff;
  padding: 7.5rem 5vw 5rem;
}
.goods-catalog-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.goods-catalog-head {
  margin-bottom: 1.3rem;
}
.goods-catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: #8b8b8b;
  margin-bottom: 0.7rem;
}
.goods-catalog-breadcrumb a {
  color: #8b8b8b;
  text-decoration: none;
}
.goods-catalog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #222;
}
.goods-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ececec;
}
.goods-catalog-count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #868686;
}
.goods-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.2rem;
}
.goods-catalog-card {
  display: flex;
  flex-direction: column;
}
.goods-catalog-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  border: 1px solid #efefef;
  overflow: hidden;
  display: block;
}
.goods-catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.goods-catalog-card:hover .goods-catalog-thumb img {
  transform: scale(1.04);
}
.goods-catalog-meta {
  padding-top: 0.85rem;
}
.goods-catalog-name {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.7;
  min-height: 2.9em;
}
.goods-catalog-name a {
  color: #222;
  text-decoration: none;
}
.goods-catalog-price {
  margin-top: 0.32rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.goods-catalog-price .amount {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #222;
}
.goods-catalog-price .tax {
  font-size: 0.68rem;
  color: #8b8b8b;
}
.goods-catalog-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  min-width: 128px;
  padding: 0.5rem 0.9rem;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.25s ease;
}
.goods-catalog-detail:hover {
  background: #1f1f1f;
  color: #fff;
}
.goods-catalog-detail.is-disabled {
  border-color: #c9c9c9;
  color: #9a9a9a;
  cursor: default;
}
.goods-catalog-pagination {
  margin-top: 2.6rem;
}
.goods-catalog-pagination ul {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}
.goods-catalog-pagination a,
.goods-catalog-pagination span {
  min-width: 34px;
  height: 34px;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #444;
  font-size: 0.74rem;
}
.goods-catalog-pagination .current {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff;
}

/* Goods Detail (reference-inspired) */
.goods-detail-page {
  background: #f7f8fa;
  padding: 7.5rem 5vw 5rem;
}
.goods-detail-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.goods-detail-main {
  display: grid;
  grid-template-columns: 460px minmax(360px, 460px);
  gap: 2rem;
  align-items: start;
  justify-content: center;
}
.goods-detail-media-wrap {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.goods-detail-media {
  width: 460px;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}
.goods-detail-media img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.goods-detail-media .goods-single-placeholder {
  min-height: 0;
  height: 100%;
}
.goods-detail-sub-images {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.1rem 0.1rem 0.3rem;
  scrollbar-width: thin;
}
.goods-sub-image-btn {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.goods-sub-image-btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.goods-sub-image-btn:hover {
  transform: translateY(-1px);
  border-color: #cfcfcf;
}
.goods-sub-image-btn.is-active {
  border-color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.goods-detail-summary {
  border: 1px solid #f1f1f1;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 90px;
}
.goods-detail-name {
  margin-top: 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
  color: #1f1f1f;
}
.goods-detail-price-main {
  margin-top: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.goods-detail-price-main .amount {
  font-size: 32px;
  font-weight: 600;
  color: #111;
}
.goods-detail-price-main .tax {
  font-size: 0.8rem;
  color: #8b8b8b;
}
.goods-detail-sections {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
}
.goods-detail-section {
  border: 1px solid #f1f1f1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 1.25rem 1.35rem 1.4rem;
}
.goods-detail-section-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #6f6f6f;
  margin-bottom: 0.62rem;
}
.goods-single-back {
  margin-top: 1.6rem;
}

@media (max-width: 1200px) {
  .goods-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .goods-detail-main {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    justify-items: center;
  }
  .goods-detail-media-wrap {
    width: 320px;
  }
  .goods-detail-media {
    width: 320px;
    height: 320px;
  }
  .goods-sub-image-btn {
    width: 62px;
    height: 62px;
    border-radius: 10px;
  }
  .goods-detail-summary {
    position: static;
    padding: 1.25rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .goods-catalog-page,
  .goods-detail-page {
    padding-top: 6.5rem;
  }
  .goods-catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .goods-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0.9rem;
  }
  .goods-detail-price-main .amount {
    font-size: 28px;
  }
  .goods-quantity-row {
    grid-template-columns: 1fr auto;
    row-gap: 0.5rem;
  }
  .goods-quantity-option {
    grid-column: 1 / -1;
  }
  .goods-quantity-control {
    justify-self: end;
  }
}
@media (max-width: 520px) {
  .goods-catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Header (for sub-pages) */
.page-header {
  padding: 12rem 5vw 4rem;
  background: var(--cream);
  text-align: center;
}
.page-header .section-label {
  display: inline-block;
  margin-bottom: 1rem;
}
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.page-header .section-line {
  margin: 0 auto;
}

/* News Archive Page */
.news-archive {
  padding: 4rem 5vw 6rem;
  background: var(--warm-white);
  max-width: 900px;
  margin: 0 auto;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem auto 0;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--light-gray);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.back-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* News Archive (Editorial) */
.post-type-archive-news .page-header.news-archive-header,
.tax-news_type .page-header.news-archive-header,
.post-type-archive-fanclub_news .page-header.news-archive-header,
.tax-fanclub_news_type .page-header.news-archive-header {
  padding: clamp(5.1rem, 8vw, 6.6rem) 5vw clamp(2.8rem, 4.6vw, 3.8rem);
}
.post-type-archive-news .page-header.news-archive-header .page-title,
.tax-news_type .page-header.news-archive-header .page-title,
.post-type-archive-fanclub_news .page-header.news-archive-header .page-title,
.tax-fanclub_news_type .page-header.news-archive-header .page-title {
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}
.news-archive.news-archive-editorial {
  max-width: 980px;
  padding: 0 5vw clamp(5.4rem, 8vw, 7rem);
  background: transparent;
}
.news-archive-editorial .news-list {
  border-top: 1px solid rgba(227, 201, 193, 0.52);
}
.news-archive-editorial .news-item {
  grid-template-columns: 150px 94px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 1.15rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(227, 201, 193, 0.52);
  position: relative;
}
.news-archive-editorial .news-item:hover {
  background: rgba(242, 212, 204, 0.12);
  padding-left: 0;
}
.news-archive-editorial a.news-item::after {
  content: "\203A";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(140, 126, 119, 0.95);
  transform: translateX(0);
  transition: transform 0.24s ease;
}
.news-archive-editorial a.news-item:hover::after {
  transform: translateX(3px);
}
.news-archive-editorial .news-date {
  font-size: 1rem;
  letter-spacing: 0.09em;
  color: rgba(128, 116, 111, 0.95);
}
.news-archive-editorial .news-category {
  padding: 0;
  border: 0;
  justify-content: flex-start;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  color: rgba(191, 139, 130, 0.95);
}
.news-archive-editorial .news-title {
  font-size: clamp(0.98rem, 1.9vw, 1.14rem);
  letter-spacing: 0.045em;
  color: rgba(34, 34, 34, 0.95);
  transition: color 0.24s ease;
}
.news-archive-editorial a.news-item:hover .news-title {
  color: #161616;
}
.news-archive-editorial .news-pagination {
  margin-top: 2.7rem;
}
.news-archive-editorial .news-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}
.news-archive-editorial .news-pagination li {
  margin: 0;
}
.news-archive-editorial .news-pagination a,
.news-archive-editorial .news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(112, 112, 112, 0.95);
  border: 0;
  background: transparent;
  padding: 0.2rem 0.35rem;
}
.news-archive-editorial .news-pagination .current {
  color: #222;
  border-bottom: 1px solid rgba(166, 140, 128, 0.58);
}

@media (max-width: 900px) {
  .news-archive.news-archive-editorial {
    max-width: 100%;
    padding-left: clamp(1.2rem, 4.2vw, 2rem);
    padding-right: clamp(1.2rem, 4.2vw, 2rem);
    padding-bottom: clamp(4rem, 10vw, 5.2rem);
  }
  .news-archive-editorial .news-item {
    grid-template-columns: 124px 86px minmax(0, 1fr) 12px;
    gap: 0.78rem;
  }
}

@media (max-width: 680px) {
  .post-type-archive-news .page-header.news-archive-header,
  .tax-news_type .page-header.news-archive-header,
  .post-type-archive-fanclub_news .page-header.news-archive-header,
  .tax-fanclub_news_type .page-header.news-archive-header {
    padding-top: clamp(4.6rem, 12vw, 5.2rem);
    padding-bottom: clamp(2.1rem, 7vw, 2.8rem);
  }
  .news-archive-editorial .news-item {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "date arrow"
      "category arrow"
      "title arrow";
    row-gap: 0.34rem;
    column-gap: 0.8rem;
    align-items: start;
    padding: 1.15rem 0 1.2rem;
  }
  .news-archive-editorial .news-date {
    grid-area: date;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
  .news-archive-editorial .news-category {
    grid-area: category;
    font-size: 0.62rem;
  }
  .news-archive-editorial .news-title {
    grid-area: title;
    font-size: 0.95rem;
    line-height: 1.75;
    letter-spacing: 0.035em;
  }
  .news-archive-editorial a.news-item::after {
    grid-area: arrow;
    margin-top: 0.08rem;
  }
}

/* News Single (Editorial) */
:is(.single-news, .single-fanclub_news) .news-article-page {
  width: min(1120px, calc(100% - 8vw));
  margin: 0 auto;
  padding: clamp(5.2rem, 8vw, 6.8rem) 0 clamp(5rem, 8vw, 7rem);
  background: transparent;
}
:is(.single-news, .single-fanclub_news) .news-article-header {
  text-align: center;
}
:is(.single-news, .single-fanclub_news) .news-article-label {
  margin-bottom: 1rem;
}
:is(.single-news, .single-fanclub_news) .news-article-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5.4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.14;
  color: var(--charcoal);
}
:is(.single-news, .single-fanclub_news) .news-article-meta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.05rem;
}
:is(.single-news, .single-fanclub_news) .news-article-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
}
:is(.single-news, .single-fanclub_news) .news-article-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.26rem 0.72rem;
  border: 1px solid rgba(220, 186, 176, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--rose);
  text-transform: uppercase;
}
:is(.single-news, .single-fanclub_news) .news-article-hero {
  margin: clamp(2.8rem, 5vw, 4rem) auto 0;
  width: min(100%, 1060px);
}
:is(.single-news, .single-fanclub_news) .news-article-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
:is(.single-news, .single-fanclub_news) .news-article-body {
  width: min(100%, 740px);
  margin: clamp(2.8rem, 5vw, 4rem) auto 0;
  font-size: clamp(0.96rem, 1.9vw, 1.04rem);
  line-height: 2.02;
  letter-spacing: 0.045em;
  color: rgba(40, 40, 40, 0.92);
}
:is(.single-news, .single-fanclub_news) .news-article-body p {
  margin: 0 0 1.65em;
}
:is(.single-news, .single-fanclub_news) .news-article-body h2,
:is(.single-news, .single-fanclub_news) .news-article-body h3,
:is(.single-news, .single-fanclub_news) .news-article-body h4 {
  margin: 2.4em 0 1em;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  font-weight: 500;
}
:is(.single-news, .single-fanclub_news) .news-article-body h2 {
  font-size: clamp(1.24rem, 2.7vw, 1.62rem);
}
:is(.single-news, .single-fanclub_news) .news-article-body h3 {
  font-size: clamp(1.1rem, 2.35vw, 1.34rem);
}
:is(.single-news, .single-fanclub_news) .news-article-body ul,
:is(.single-news, .single-fanclub_news) .news-article-body ol {
  margin: 0 0 1.8em;
  padding-left: 1.55em;
}
:is(.single-news, .single-fanclub_news) .news-article-body li {
  margin: 0.34em 0;
}
:is(.single-news, .single-fanclub_news) .news-article-body blockquote {
  margin: 2.1em 0;
  padding: 0.9em 1.2em;
  border-left: 2px solid rgba(215, 183, 161, 0.5);
  color: rgba(62, 62, 62, 0.86);
}
:is(.single-news, .single-fanclub_news) .news-article-body figure,
:is(.single-news, .single-fanclub_news) .news-article-body .wp-block-image {
  margin: 2.2em auto;
}
:is(.single-news, .single-fanclub_news) .news-article-body img {
  width: 100%;
  height: auto;
}
:is(.single-news, .single-fanclub_news) .news-article-body figcaption {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(110, 110, 110, 0.86);
}
:is(.single-news, .single-fanclub_news) .news-article-footer {
  width: min(100%, 740px);
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(228, 204, 196, 0.55);
}
:is(.single-news, .single-fanclub_news) .news-article-back-link {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: rgba(88, 88, 88, 0.92);
  text-decoration: none;
  transition: color 0.25s ease;
}
:is(.single-news, .single-fanclub_news) .news-article-back-link:hover {
  color: var(--rose);
}

@media (max-width: 900px) {
  :is(.single-news, .single-fanclub_news) .news-article-page {
    width: min(100%, calc(100% - 3.4rem));
    padding-top: clamp(4.6rem, 12vw, 5.7rem);
    padding-bottom: clamp(4rem, 12vw, 5.8rem);
  }
  :is(.single-news, .single-fanclub_news) .news-article-meta {
    gap: 0.65rem 0.85rem;
  }
  :is(.single-news, .single-fanclub_news) .news-article-body {
    width: min(100%, 100%);
    line-height: 1.9;
    letter-spacing: 0.038em;
  }
  :is(.single-news, .single-fanclub_news) .news-article-footer {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :is(.single-news, .single-fanclub_news) .news-article-page {
    width: min(100%, calc(100% - 2.2rem));
    padding-top: clamp(4.1rem, 13vw, 5rem);
  }
  :is(.single-news, .single-fanclub_news) .news-article-label {
    margin-bottom: 0.75rem;
  }
  :is(.single-news, .single-fanclub_news) .news-article-title {
    letter-spacing: 0.05em;
  }
  :is(.single-news, .single-fanclub_news) .news-article-meta {
    margin-top: 0.95rem;
  }
  :is(.single-news, .single-fanclub_news) .news-article-hero {
    margin-top: 2rem;
  }
  :is(.single-news, .single-fanclub_news) .news-article-body {
    margin-top: 2rem;
    font-size: 0.95rem;
  }
  :is(.single-news, .single-fanclub_news) .news-article-footer {
    margin-top: 2.6rem;
    padding-top: 1rem;
  }
}

/* Works Grid */
.works {
  background: var(--warm-white);
}
.works-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.works-tab {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--light-gray);
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.works-tab:hover,
.works-tab.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.works-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.work-item {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--blush);
  align-items: center;
  transition: background 0.3s ease;
  text-decoration: none;
}
.work-item-category,
.work-item-title,
.work-item-role {
  text-decoration: none;
}
.work-item:hover {
  background: rgba(242, 212, 204, 0.2);
}
.work-item.work-item-static {
  cursor: default;
}
.work-item.work-item-static:hover {
  background: transparent;
}
.work-item.work-item-static a {
  pointer-events: none;
  cursor: default;
}
.work-item.is-hidden {
  display: none;
}
.works-list:not(.is-expanded) .work-item:nth-child(n + 9) {
  display: none;
}
.works-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--light-gray);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.works-more-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.works-more-btn svg {
  transition: transform 0.3s ease;
}
.works-more-btn.is-expanded svg {
  transform: rotate(180deg);
}
.works-list.is-expanded + .works-more-btn {
  display: none;
}
.work-item-category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.work-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.work-item-role {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 300;
  text-align: right;
}
@media (max-width: 768px) {
  .work-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .work-item-role {
    text-align: left;
  }
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.work-card {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-3px);
}
.work-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.work-thumb-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.work-card:hover .work-thumb-bg {
  transform: scale(1.05);
}
.work-thumb-bg.drama {
  background: linear-gradient(135deg, #2c3e50, #3498db);
}
.work-thumb-bg.movie {
  background: linear-gradient(135deg, #8e44ad, #c0392b);
}
.work-thumb-bg.variety {
  background: linear-gradient(135deg, #e67e22, #f1c40f);
}
.work-thumb-bg.fashion {
  background: linear-gradient(135deg, var(--blush), var(--rose));
}
.work-thumb-bg.music {
  background: linear-gradient(135deg, #1abc9c, #2ecc71);
}
.work-thumb-bg.stage {
  background: linear-gradient(135deg, #34495e, #7f8c8d);
}
.work-thumb-bg.writing {
  background: linear-gradient(135deg, #d4a76a, #c69c6d);
}
.work-thumb-bg.radio {
  background: linear-gradient(135deg, #5b2c6f, #8e44ad);
}

.work-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.8rem;
  backdrop-filter: blur(4px);
  border-radius: 1px;
}
.work-info {
  padding: 1.2rem 1.5rem;
}
.work-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.work-role {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Fashion Brands */
.fashion-section {
  background: var(--cream);
  overflow: hidden;
}
.brands-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
  padding: 3rem 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-item {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--light-gray);
  white-space: nowrap;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.brand-item:hover {
  color: var(--charcoal);
}

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.fashion-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fashion-card-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.fashion-card:hover .fashion-card-bg {
  transform: scale(1.08);
}
.fashion-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.fashion-card:hover .fashion-card-overlay {
  opacity: 1;
}
.fashion-card-label {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.fashion-card-bg.ray {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.fashion-card-bg.mercury {
  background: linear-gradient(135deg, #efebe9, #d7ccc8);
}
.fashion-card-bg.snidel {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.fashion-card-bg.rienda {
  background: linear-gradient(135deg, #3e2723, #5d4037);
}
.fashion-card-bg.lillian {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}
.fashion-card-bg.tgc {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.fashion-card-bg.bazaar {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}
.fashion-card-bg.sapporo {
  background: linear-gradient(135deg, #263238, #37474f);
}

/* Fashion Gallery */
.fashion-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.fashion-gallery-item {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.fashion-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.fashion-gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .fashion-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .fashion-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Section */
.media-section {
  margin-top: 4rem;
}
.media-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.media-slider-wrapper {
  overflow: hidden;
  margin-left: -5vw;
  margin-right: -5vw;
  padding: 2rem 0;
}
.media-slider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: mediaSlide 35s linear infinite;
  width: max-content;
}
@keyframes mediaSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.media-slider-item {
  flex-shrink: 0;
  width: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.media-slider-item.offset-up {
  transform: translateY(-15px);
}
.media-slider-item.offset-down {
  transform: translateY(15px);
}
.media-slider-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.media-slider-item.offset-up:hover {
  transform: translateY(-20px) scale(1.03);
}
.media-slider-item.offset-down:hover {
  transform: translateY(10px) scale(1.03);
}
.media-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
.media-slider-item:hover img {
  transform: scale(1.08);
}
.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.media-slider-item:hover .media-overlay {
  opacity: 1;
}
.media-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.3s ease 0.1s,
    opacity 0.3s ease 0.1s;
}
.media-slider-item:hover .media-tag {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 768px) {
  .media-slider-item {
    width: 260px;
  }
  .media-slider-item.offset-up {
    transform: translateY(-10px);
  }
  .media-slider-item.offset-down {
    transform: translateY(10px);
  }
}

/* Magazine Slider Section */
.magazine-section {
  margin-top: 4rem;
}
.magazine-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.magazine-slider-wrapper {
  overflow: hidden;
  margin-left: -5vw;
  margin-right: -5vw;
  padding: 1rem 0;
}
.magazine-slider {
  display: flex;
  gap: 1.5rem;
  animation: magazineSlide 30s linear infinite;
  width: max-content;
}
@keyframes magazineSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.magazine-slider-item {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.magazine-slider-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.magazine-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 768px) {
  .magazine-slider-item {
    width: 150px;
  }
}

/* SNS Section */
.sns-section {
  background: var(--soft-black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 8rem 5vw;
}
.sns-section .section-label {
  color: var(--gold);
}
.sns-section .section-title {
  color: var(--cream);
}

/* Background Gallery */
.sns-bg-gallery {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  opacity: 0.15;
  pointer-events: none;
}
.gallery-row {
  overflow: hidden;
  width: 100%;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.track-left {
  animation: slideLeft 25s linear infinite;
}
.track-right {
  animation: slideRight 30s linear infinite;
}
.track-left-slow {
  animation: slideLeft 35s linear infinite;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.gallery-item {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* SNS Content */
.sns-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sns-total {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sns-total-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 3rem;
}
.sns-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.sns-card {
  padding: 1.5rem 1rem;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 110px;
  max-width: 150px;
  flex: 1 1 120px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sns-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 146, 138, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.sns-card:hover::before {
  opacity: 1;
}
.sns-card:hover {
  border-color: var(--rose);
  transform: translateY(-5px);
}
.sns-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.8rem;
}
.sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.sns-card:hover .sns-icon img {
  opacity: 1;
}
.sns-platform {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 0.6rem;
}
.sns-count {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
}
.sns-unit {
  font-size: 0.65rem;
  color: var(--light-gray);
}
.sns-note {
  margin-top: 2rem;
}
.sns-note p {
  font-size: 0.8rem;
  color: var(--light-gray);
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .gallery-item {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .sns-section {
    padding: 6rem 5vw;
  }
  .sns-grid {
    gap: 0.8rem;
  }
  .sns-card {
    padding: 1rem 0.8rem;
    min-width: 80px;
  }
  .gallery-item {
    width: 100px;
  }
  .gallery-track {
    gap: 0.5rem;
  }
}

/* Magazine Section */
.magazine-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.magazine-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--soft-pink), var(--blush));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.magazine-cover-text {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}
.magazine-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.magazine-info p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--warm-gray);
  font-weight: 300;
}
.magazine-badge {
  display: inline-block;
  background: var(--rose);
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* Size Section */
.size-section {
  background: var(--cream);
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.size-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--warm-white);
  transition: transform 0.2s ease;
}
.size-item:hover {
  transform: translateX(5px);
}
.size-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.size-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--charcoal);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream) 100%);
  padding: 6rem 8vw;
  text-align: center;
}
.contact-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  line-height: 1;
}
.contact-lead {
  margin: 0 auto 1.6rem;
  max-width: 640px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--warm-gray);
}
.contact-notice {
  max-width: 640px;
  margin: 0 auto 1rem;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid transparent;
  border-radius: 2px;
}
.contact-notice-success {
  background: #f1fbf4;
  color: #185a2f;
  border-color: #ccebd5;
}
.contact-notice-error {
  background: #fff3f3;
  color: #7a1f1f;
  border-color: #f0cccc;
}
.contact-notice-info {
  background: #f4f4f4;
  color: #2a2a2a;
  border-color: #d9d9d9;
}
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: left;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form-group label,
.contact-form-group legend {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.contact-required {
  color: var(--rose);
}
.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group input[type="tel"],
.contact-form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--blush);
  border-radius: 2px;
  background: var(--warm-white);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #9a9a9a;
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 146, 138, 0.1);
}
.contact-category-group {
  border: 0;
  margin: 0;
  padding: 0;
}
.contact-category-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.4;
  cursor: pointer;
}
.contact-radio-option input[type="radio"] {
  accent-color: #1274ff;
  margin: 0;
}
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  margin-top: 0.4rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--charcoal), #2a2a2a);
  color: var(--cream);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--soft-black);
  color: var(--light-gray);
  padding: 3rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--cream);
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.footer-links {
  position: static;
  padding: 0;
  margin-left: auto;
  margin-right: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--cream);
}

/* Floating Elements */
.float-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--blush);
  opacity: 0.3;
  pointer-events: none;
}

/* Parallax text */
.parallax-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px var(--blush);
  white-space: nowrap;
  /* overflow: hidden; */
  padding: 2.1rem 0.5rem 2.5rem;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  section {
    padding: 5rem 5vw;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .size-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    max-width: 50%;
  }
  .hero-image-wrapper {
    width: 40vw;
    right: 2vw;
  }
  .magazine-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline::before {
    left: 0;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 2rem;
  }
  .timeline-dot {
    left: 0;
  }
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .loader-text {
    text-align: center;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-logo-has-subtitle {
    gap: 0;
  }
  .nav-logo-fanclub-subtitle {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .top-quick-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .fanclub-header-menu-toggle {
    min-width: 0;
    height: auto;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .fanclub-header-menu-panel {
    width: min(82vw, 296px);
    max-height: 70vh;
    overflow-y: auto;
  }
  .fanclub-header-mobile-sections {
    display: grid;
  }
  .fanclub-header-menu-divider.fanclub-header-mobile-sections {
    display: block;
    margin: 0.2rem 0;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 90%;
    padding-top: 25vh;
    position: relative;
    z-index: 2;
  }
  .hero-image-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
    border-radius: 0;
    opacity: 1;
    animation: none;
    z-index: 1;
  }
  .hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(250, 246, 241, 0.7) 0%,
      rgba(250, 246, 241, 0.4) 50%,
      rgba(250, 246, 241, 0.8) 100%
    );
    z-index: 5;
    pointer-events: none;
  }
  .hero-image-wrapper::after {
    display: none;
  }
  .hero-slide img {
    object-position: center top;
  }
  .hero-roles {
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .hero-scroll {
    z-index: 2;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .size-grid {
    grid-template-columns: 1fr;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 5rem 5vw;
  }
  .contact-name {
    margin-bottom: 0.7rem;
  }
  .contact-lead {
    font-size: 0.84rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
  }
  .contact-form-wrap {
    width: 100%;
    padding: 1.5rem;
  }
  .contact-category-options {
    gap: 0.6rem;
  }
  .contact-submit-btn {
    width: 100%;
    min-width: 0;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .goods-checkout-section {
    padding: 6.2rem 5vw 4.5rem;
  }
  .goods-checkout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .goods-checkout-summary-card,
  .goods-checkout-form-card {
    padding: 1rem;
    border-radius: 10px;
  }
  .goods-checkout-fields {
    grid-template-columns: 1fr;
  }
  .goods-checkout-member-info > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .goods-checkout-submit-btn {
    height: 48px;
    letter-spacing: 0.09em;
  }
}

/* Fan Club Section */
.fanclub-section {
  background: linear-gradient(
    135deg,
    var(--soft-black) 0%,
    #2a1f1f 50%,
    var(--soft-black) 100%
  );
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 8rem 5vw;
}
.fanclub-section .section-label {
  color: var(--gold);
}
.fanclub-section .section-title {
  color: var(--cream);
}
.fanclub-bg {
  display: none;
}
.fanclub-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.fanclub-desc {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}
.fanclub-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.fanclub-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 100px;
}
.fanclub-feature-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}
.fanclub-feature:hover .fanclub-feature-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: scale(1.1);
}
.fanclub-feature-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.fanclub-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fanclub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.fanclub-btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--blush));
  color: var(--cream);
  border: none;
}
.fanclub-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 146, 138, 0.4);
}
.fanclub-btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.fanclub-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cream);
}
.nav-fanclub {
  color: var(--rose) !important;
  font-weight: 500;
}

/* Fan Club Form Pages */
.fanclub-page-header {
  background: linear-gradient(135deg, var(--soft-black), #2a1f1f);
  color: var(--cream);
}
.fanclub-page-header .section-label {
  color: var(--gold);
}
.fanclub-page-header .page-title {
  color: var(--cream);
}
.fanclub-page-header .section-line {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.fanclub-form-section {
  padding: 4rem 5vw 6rem;
  background: var(--warm-white);
}
.fanclub-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.fanclub-form-info {
  padding: 2rem;
}
.fanclub-form-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.fanclub-form-info > p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.fanclub-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.fanclub-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--blush);
  color: var(--charcoal);
  font-size: 0.9rem;
}
.fanclub-benefits li svg {
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.benefit-title {
  font-weight: 500;
  color: var(--charcoal);
}
.benefit-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}
.fanclub-price-options {
  display: flex;
  gap: 1rem;
}
.fanclub-price-options .fanclub-price {
  flex: 1;
}
.fanclub-price {
  background: linear-gradient(135deg, var(--soft-pink), var(--blush));
  padding: 1.5rem 2rem;
  border-radius: 4px;
  text-align: center;
}
.price-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--charcoal);
}
.price-tax {
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.fanclub-form-wrapper {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.fanclub-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.form-group label .required {
  color: var(--rose);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"] {
  padding: 0.9rem 1rem;
  border: 1px solid var(--blush);
  border-radius: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  background: var(--warm-white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 146, 138, 0.1);
}
.form-hint {
  font-size: 0.75rem;
  color: var(--light-gray);
}
.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
}
.form-checkbox label {
  font-size: 0.8rem;
  font-weight: 400;
}
.form-checkbox label a {
  color: var(--rose);
  text-decoration: underline;
}
.fanclub-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--charcoal), #2a2a2a);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.fanclub-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.fanclub-login-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--blush);
  font-size: 0.85rem;
  color: var(--warm-gray);
}
.fanclub-login-link a {
  color: var(--rose);
  text-decoration: underline;
}

/* Login Page Specific */
.fanclub-login-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fanclub-login-container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.fanclub-login-card {
  background: var(--cream);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.fanclub-login-header {
  text-align: center;
  margin-bottom: 2rem;
}
.fanclub-login-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.fanclub-login-header p {
  font-size: 0.85rem;
  color: var(--warm-gray);
}
.fanclub-form-links {
  text-align: center;
  margin-top: 1rem;
}
.forgot-password {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-decoration: underline;
}
.fanclub-register-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
}
.fanclub-register-link p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.register-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}
.register-link-btn:hover {
  gap: 0.8rem;
}

.fanclub-member-section {
  --fc-container-max: 1200px;
  --fc-border: rgba(185, 156, 136, 0.2);
  --fc-border-soft: rgba(185, 156, 136, 0.14);
  --fc-surface: rgba(255, 252, 248, 0.66);
  --fc-surface-strong: rgba(255, 251, 246, 0.9);
  --fc-text-main: var(--charcoal);
  --fc-text-sub: #8c8178;
  --fc-text-muted: #a59990;
  --fc-tab-bg: rgba(255, 252, 248, 0.84);
  --fc-tab-active-bg: rgba(38, 30, 30, 0.1);
  --fc-tab-active-line: rgba(214, 193, 161, 0.88);
  padding: clamp(2.2rem, 3.6vw, 3rem) 4vw clamp(2.8rem, 4.2vw, 3.8rem);
  background: var(--cream);
}
.fanclub-member-wrap {
  width: min(95vw, var(--fc-container-max));
  margin: clamp(1.6rem, 2.7vw, 2.5rem) auto 0;
}
.fanclub-member-guard {
  background: var(--fc-surface-strong);
  border: 1px solid var(--fc-border);
  border-radius: 8px;
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
}
.fanclub-member-guard h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--fc-text-main);
  margin-bottom: 0.55rem;
}
.fanclub-member-guard p {
  color: var(--fc-text-sub);
  font-size: 0.9rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}
body.fanclub-modal-open {
  overflow: hidden;
}
.fanclub-account-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  overflow-y: auto;
  padding: 5vh 16px;
}
.fanclub-account-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fanclub-account-modal-overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(18, 14, 14, 0.5);
  cursor: pointer;
}
.fanclub-account-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 920px);
  height: min(80vh, 640px);
  max-height: 80vh;
  overflow: hidden;
  margin: 0;
  background: #fbf7f2;
  border: 1px solid rgba(188, 159, 138, 0.2);
  border-radius: 10px;
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}
.fanclub-account-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.82rem;
  border: none;
  background: transparent;
  color: #8b7d72;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.fanclub-account-modal-close:hover {
  color: #554b44;
}
.fanclub-account-modal-dialog h3 {
  margin: 0 0 0.88rem;
  color: #5a4f47;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.fanclub-account-modal-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
  height: calc(100% - 2.2rem);
  min-height: 0;
}
.fanclub-account-modal-menu {
  border-right: 1px solid rgba(188, 159, 138, 0.2);
  padding-right: 0.75rem;
  display: grid;
  align-content: start;
  gap: 0.15rem;
  min-height: 0;
}
.fanclub-account-modal-menu-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #8f837a;
  text-align: left;
  padding: 0.62rem 0.08rem 0.56rem;
  border-radius: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.fanclub-account-modal-menu-item:hover {
  color: #564d47;
}
.fanclub-account-modal-menu-item.is-active {
  color: #2d2521;
  border-bottom-color: rgba(200, 169, 126, 0.75);
  background: transparent;
}
.fanclub-account-modal-menu-logout {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.7rem;
  padding: 0.45rem 0;
  color: #b5706a;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-bottom: 1px solid rgba(181, 112, 106, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.fanclub-account-modal-menu-logout:hover {
  color: #9d5d57;
  border-bottom-color: rgba(157, 93, 87, 0.6);
}
.fanclub-account-modal-body {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding-left: 0;
  padding-right: 0.05rem;
}
.fanclub-account-modal-pane {
  display: none;
}
.fanclub-account-modal-pane.is-active {
  display: block;
  padding: 0.08rem 0 0.12rem;
}
.fanclub-account-modal-section-label {
  margin: 0.18rem 0 0.35rem;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  color: #8f8074;
  font-weight: 500;
  text-transform: uppercase;
}
.fanclub-account-modal-section-lead {
  margin: 0;
  color: #94857b;
  font-size: 0.82rem;
  line-height: 1.8;
}
.fanclub-settings-info-list {
  margin: 0.85rem 0 0;
}
.fanclub-settings-info-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: baseline;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(188, 159, 138, 0.16);
  padding: 0.58rem 0;
}
.fanclub-settings-info-list > div:last-child {
  border-bottom: none;
}
.fanclub-settings-info-list dt {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  color: #8f837a;
}
.fanclub-settings-info-list dd {
  margin: 0;
  font-size: 0.86rem;
  color: #312925;
  text-align: left;
  word-break: break-word;
}
.fanclub-settings-actions {
  margin-top: 0.95rem;
}
.fanclub-settings-action-btn {
  border: 1px solid rgba(188, 159, 138, 0.42);
  background: rgba(255, 253, 250, 0.8);
  color: #685b52;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.52rem 0.9rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fanclub-settings-action-btn:hover {
  border-color: rgba(188, 159, 138, 0.7);
  color: #3d332e;
  background: #fff;
}
.fanclub-settings-action-btn.is-primary {
  background: linear-gradient(135deg, var(--soft-black), #2b2020 76%);
  border-color: transparent;
  color: #f3e9da;
}
.fanclub-settings-action-btn.is-muted {
  background: transparent;
  color: #8d8077;
}
.fanclub-settings-action-btn.is-withdraw {
  border-color: rgba(153, 117, 101, 0.5);
  color: #7a6054;
  background: rgba(248, 238, 232, 0.7);
}
.fanclub-settings-inline-form {
  margin-top: 0.95rem;
  padding: 0.9rem;
  border: 1px solid rgba(188, 159, 138, 0.18);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}
.fanclub-settings-inline-grid {
  display: grid;
  gap: 0.68rem;
}
.fanclub-settings-inline-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fanclub-settings-inline-grid label {
  display: grid;
  gap: 0.36rem;
}
.fanclub-settings-inline-grid label.is-full {
  grid-column: 1 / -1;
}
.fanclub-settings-inline-grid span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: #8d7f74;
}
.fanclub-settings-field-hint {
  display: block;
  margin-top: -0.12rem;
  font-size: 0.64rem;
  line-height: 1.55;
  color: #9f9186;
  letter-spacing: 0.04em;
}
.fanclub-settings-inline-grid input,
.fanclub-settings-inline-grid select {
  width: 100%;
  border: 1px solid rgba(188, 159, 138, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: #312925;
  font-size: 0.84rem;
  padding: 0.55rem 0.65rem;
}
.fanclub-settings-inline-grid input:focus,
.fanclub-settings-inline-grid select:focus {
  outline: none;
  border-color: rgba(148, 119, 101, 0.7);
}
.fanclub-settings-inline-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.fanclub-settings-withdraw-note {
  margin-top: 0.8rem;
  border: 1px solid rgba(188, 159, 138, 0.2);
  background: rgba(44, 32, 28, 0.05);
  border-radius: 8px;
  padding: 0.74rem 0.8rem;
}
.fanclub-settings-withdraw-note p {
  margin: 0;
  color: #89786f;
  font-size: 0.8rem;
  line-height: 1.8;
}
.fanclub-settings-withdraw-confirm p {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #6d5e56;
}
.fanclub-settings-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: #6d5d54;
  font-size: 0.75rem;
}
.fanclub-settings-checkbox input {
  width: 15px;
  height: 15px;
}
.fanclub-member-tabs {
  margin-top: clamp(1.35rem, 2.2vw, 2rem);
  border: 1px solid var(--fc-border-soft);
  border-radius: 8px;
  background: var(--fc-surface);
  overflow: hidden;
}
.fanclub-mobile-current-title {
  display: none;
  margin: 0;
}
.fanclub-member-tablist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--fc-border-soft);
  background: var(--fc-tab-bg);
}
.fanclub-member-tab {
  position: relative;
  border: none;
  border-right: 1px solid rgba(185, 156, 136, 0.1);
  background: transparent;
  padding: 0.72rem 0.84rem 0.8rem;
  color: #988d84;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease;
}
.fanclub-member-tab:last-child {
  border-right: none;
}
.fanclub-member-tab:hover {
  color: #4e433c;
  background: rgba(248, 240, 232, 0.42);
}
.fanclub-member-tab.is-active {
  color: #2f2723;
  background: var(--fc-tab-active-bg);
}
.fanclub-member-tab.is-active::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--fc-tab-active-line);
}
.fanclub-member-panels {
  background: transparent;
  min-height: 0 !important;
  height: auto !important;
}
.fanclub-member-panel {
  display: none;
  margin: 0;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(1.1rem, 2vw, 1.7rem) clamp(1rem, 2.2vw, 1.9rem) clamp(1.45rem, 2.6vw, 2.1rem);
}
.fanclub-member-panel.is-active {
  display: block;
}
.fanclub-member-panel[data-fanclub-panel="news"],
.fanclub-member-panel[data-fanclub-panel="live"] {
  padding: clamp(2rem, 3vw, 2.8rem) clamp(1.4rem, 2.8vw, 2.4rem) clamp(2.2rem, 3.2vw, 3rem);
}
.fanclub-member-panel[data-fanclub-panel="news"] .fanclub-news-list,
.fanclub-member-panel[data-fanclub-panel="live"] .fc-live-list-wrap {
  max-width: 1020px;
  margin: 0 auto;
}
.fanclub-news-list .news-item {
  padding: 0;
  border-bottom: none;
  background: transparent;
}
.fanclub-news-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
  padding: 1.6rem 0.6rem;
  border-bottom: 1px solid var(--fc-border-soft);
}
.fc-live-empty,
.fc-gallery-empty {
  border: 1px solid #ece3dd;
  background: #faf6f2;
  color: var(--warm-gray);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}
.fanclub-news-empty-text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--fc-text-sub);
}
.fanclub-news-list .fanclub-news-item {
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas: "title date category";
  column-gap: 1rem;
  align-items: center;
  padding: 1rem 0.2rem;
  border-bottom: 1px solid var(--fc-border-soft);
}
.fanclub-news-list .fanclub-news-item:hover {
  background: rgba(248, 241, 234, 0.52);
}
.fanclub-news-list .fanclub-news-item .fanclub-news-thumb {
  display: none;
}
.fanclub-news-list .news-title {
  grid-area: title;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fc-text-main);
  min-width: 0;
}
.fanclub-news-list .news-date {
  grid-area: date;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #9a8d83;
  white-space: nowrap;
}
.fanclub-news-list .news-category {
  grid-area: category;
  justify-self: end;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  border-color: rgba(212, 146, 138, 0.36);
  color: #b67d73;
  padding: 0.28rem 0.74rem;
}
.fanclub-news-more-btn {
  margin-top: 1.2rem;
  padding: 0.82rem 2.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.fanclub-goods-grid {
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 212px));
  justify-content: center;
  gap: 1.15rem;
}
.fanclub-goods-card {
  height: 100%;
  border-color: var(--fc-border-soft);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: none;
}
.fanclub-goods-card:hover {
  border-color: var(--fc-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.fanclub-goods-card .goods-card-body {
  padding: 1.02rem 0.95rem 1.08rem;
  gap: 0.48rem;
}
.fanclub-goods-card .goods-card-title {
  font-size: 0.9rem;
  line-height: 1.55;
}
.fanclub-goods-card .goods-card-price {
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}
.fanclub-goods-card .goods-card-link {
  padding: 0;
  border: none;
  border-radius: 0;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #99867c;
}
.fanclub-goods-card .goods-card-link:hover {
  color: var(--fc-text-main);
  background: transparent;
}
.fanclub-goods-more-btn {
  margin-top: 1.2rem;
}
.fanclub-member-panel[data-fanclub-panel="gallery"] .fc-gallery,
.fanclub-member-panel[data-fanclub-panel="goods"] .fanclub-goods-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.fanclub-member-panel[data-fanclub-panel="card"] .fc-member-card-wrap {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.fanclub-member-panel[data-fanclub-panel="card"] {
  padding-top: clamp(1.9rem, 2.8vw, 2.7rem);
}

@media (max-width: 768px) {
  .fanclub-section {
    padding: 6rem 5vw;
  }
  .fanclub-features {
    gap: 1.5rem;
  }
  .fanclub-feature {
    min-width: 80px;
  }
  .fanclub-buttons {
    flex-direction: column;
    align-items: center;
  }
  .fanclub-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .fanclub-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fanclub-form-wrapper {
    padding: 1.5rem;
  }
  .fanclub-login-card {
    padding: 2rem;
  }
  .fanclub-price-options {
    flex-direction: column;
    gap: 0.8rem;
  }
  .fanclub-price-options .fanclub-price {
    padding: 1rem 1.5rem;
  }
  .fanclub-price-options .price-amount {
    font-size: 2rem;
  }
  .fanclub-member-section {
    padding: 2.2rem 4.6vw 3.6rem;
  }
  .fanclub-member-wrap {
    width: min(94vw, var(--fc-container-max));
    margin-top: 1rem;
  }
  .fanclub-account-modal-dialog {
    width: min(94vw, 680px);
    margin: 0;
    padding: 1rem 0.95rem 1.1rem;
  }
  .fanclub-account-modal-layout {
    grid-template-columns: 1fr;
    gap: 0.68rem;
  }
  .fanclub-account-modal-menu {
    border-right: none;
    border-bottom: 1px solid rgba(188, 159, 138, 0.2);
    padding-right: 0;
    padding-bottom: 0.64rem;
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .fanclub-account-modal-menu-item {
    text-align: left;
    justify-content: flex-start;
    padding: 0.56rem 0.05rem;
  }
  .fanclub-account-modal-menu-logout {
    margin-top: 0.5rem;
    width: fit-content;
  }
  .fanclub-settings-info-list > div {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }
  .fanclub-settings-info-list dd {
    text-align: left;
  }
  .fanclub-settings-inline-grid-two {
    grid-template-columns: 1fr;
  }
  .fanclub-settings-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .fanclub-settings-action-btn {
    width: 100%;
    text-align: center;
  }
  .fanclub-member-tablist {
    display: none;
  }
  .fanclub-mobile-current-title {
    display: block;
    padding: 0.95rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(188, 159, 138, 0.24);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.36rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #2f2723;
  }
  .fanclub-member-panel {
    padding: 1rem 1rem 1.6rem;
  }
  .fanclub-member-panel[data-fanclub-panel="news"],
  .fanclub-member-panel[data-fanclub-panel="live"] {
    padding: 1.65rem 1rem 2.15rem;
  }
  .fanclub-news-list .fanclub-news-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "date"
      "category";
    align-items: start;
    row-gap: 0.35rem;
    padding: 0.92rem 0.14rem;
  }
  .fanclub-news-list .news-title {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .fanclub-news-list .news-date {
    font-size: 0.9rem;
  }
  .fanclub-news-list .news-category {
    justify-self: start;
  }
  .fanclub-news-empty {
    min-height: 104px;
    padding: 1.1rem 0.2rem;
  }
  .fanclub-news-empty-text {
    font-size: 0.86rem;
    line-height: 1.7;
  }
  .fanclub-goods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }
  .fanclub-member-panel[data-fanclub-panel="gallery"] .fc-gallery,
  .fanclub-member-panel[data-fanclub-panel="goods"] .fanclub-goods-grid,
  .fanclub-member-panel[data-fanclub-panel="card"] .fc-member-card-wrap {
    max-width: 100%;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .fanclub-goods-grid {
    grid-template-columns: repeat(3, minmax(0, 220px));
    justify-content: center;
  }
}

/* Shop Thanks */
.shop-thanks-page {
  padding: clamp(7.5rem, 12vw, 10rem) 5vw clamp(5rem, 8vw, 7rem);
}
.shop-thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.shop-thanks-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #9f938a;
  margin-bottom: 1rem;
}
.shop-thanks-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.shop-thanks-message {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.9;
  color: var(--charcoal);
}
.shop-thanks-note {
  margin: 1.35rem auto 0;
  max-width: 620px;
  font-size: 0.9rem;
  line-height: 1.95;
  color: #85796f;
}
.shop-thanks-session {
  display: none;
}
.shop-thanks-actions {
  margin-top: 2.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
}
.shop-thanks-btn {
  min-width: 220px;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.shop-thanks-btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #101010;
  background: #101010;
  color: var(--warm-white);
}
.shop-thanks-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.shop-thanks-btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.shop-thanks-btn-primary:hover .shop-thanks-btn-arrow {
  transform: translateX(4px);
}
.shop-thanks-btn-secondary {
  border: 1px solid #cfc5bc;
  background: rgba(255, 255, 255, 0.72);
  color: #3a3632;
}
.shop-thanks-btn-secondary:hover {
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .shop-thanks-page {
    padding-top: 6.5rem;
  }
  .shop-thanks-note {
    font-size: 0.86rem;
  }
  .shop-thanks-actions {
    flex-direction: column;
  }
  .shop-thanks-btn {
    width: 100%;
    max-width: 360px;
  }
}
