@charset "UTF-8";
.flash-message {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 15px;
  text-align: center;
}

.notice {
  background-color: #d4edda;
  color: #155724;
  padding: 10px;
  border-radius: 5px;
}

.alert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 5px;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

footer a:hover {
  text-decoration: underline;
}

.extra-padding {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}
@media (max-width: 768px) {
  .extra-padding {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  #law .title {
    font-size: 20px;
  }
  #terms .title {
    font-size: 20px;
  }
  #privacy .title {
    font-size: 20px;
  }
}
#works {
  scroll-margin-top: 80px;
}

#custom-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
#custom-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 5s ease-in-out;
  z-index: 0;
  text-align: center;
}
#custom-slider .slide.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}
#custom-slider .slide img {
  width: 100vw;
  height: 66vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: none;
}
#custom-slider .slide .caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#custom-slider .slide .caption h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  margin-bottom: 1rem;
  white-space: nowrap;
}
#custom-slider .slide .caption p {
  font-size: clamp(1rem, 3vw, 1.8rem);
  white-space: nowrap;
}

@media (max-width: 576px) {
  #custom-slider .slide .caption h2 {
    font-size: 1.6rem;
  }
  #custom-slider .slide .caption p {
    font-size: 1.1rem;
  }
}
#slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#slider-dots .dot.active {
  background-color: #b47c4d;
}

#slider-dots {
  background-color: #f8f9fa;
  padding: 12px 0;
}

#works {
  position: relative;
  scroll-margin-top: 1200px;
}
#works .works-title {
  margin-bottom: 50px;
}
#works .work-card {
  background-color: white;
  padding: 16px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: block;
}
#works .work-card:hover {
  background-color: rgba(222, 205, 178, 0.7411764706) !important;
  cursor: pointer;
}
#works .work-card img {
  border-radius: 8px;
  margin-bottom: 12px;
}
#works .work-card .work-title {
  font-weight: 600;
  font-size: 1.1rem;
}
#works .work-card .work-description {
  font-size: 0.95rem;
  color: #444;
}
#works .work-card .work-card-link {
  font-size: 0.85rem;
  color: #c9a96e;
  text-decoration: none;
  font-weight: 500;
}
#works .work-card .work-card-link:hover {
  text-decoration: underline;
}

/* ✨ Fadein 基本 */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

/* ✨ 表示時 */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✨ 順番付き遅延（delay-1 ～ delay-6） */
.fadein.delay-1 {
  transition-delay: 0s;
}

.fadein.delay-2 {
  transition-delay: 0.1s;
}

.fadein.delay-3 {
  transition-delay: 0.2s;
}

.fadein.delay-4 {
  transition-delay: 0.3s;
}

.fadein.delay-5 {
  transition-delay: 0.4s;
}

.fadein.delay-6 {
  transition-delay: 0.5s;
}

/* ✨ Bootstrap Carousel Smooth FadeIn / FadeOut */
.carousel-fade .carousel-inner {
  position: relative;
  background-color: #000;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 表示中のアイテムにだけ透過解除・上に重ねる */
.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* 前後アニメーション中も同様の効果にする */
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.carousel-item img {
  transition: opacity 1.5s ease-in-out;
}

#features p {
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}
#features h4.hover-effect {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}
#features h4.hover-effect:hover {
  transform: translateY(-3px) scale(1.05);
  color: #b47c4d;
}
@media (max-width: 1000px) {
  #features p {
    font-size: 14px !important;
  }
  #features h4 {
    font-size: 20px !important;
  }
}

.concept-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}
.concept-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.concept-section .concept-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.concept-section .concept-image {
  flex: 1;
  min-width: 320px;
}
.concept-section .concept-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.concept-section .concept-image .concept-caption {
  font-size: 0.95rem;
  margin-top: 10px;
  text-align: left;
}
.concept-section .concept-points {
  flex: 1;
  min-width: 320px;
}
.concept-section .concept-points .point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  text-align: left;
}
.concept-section .concept-points .point .concept-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-top: 4px;
  flex-shrink: 0;
}
.concept-section .concept-points .point h4 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.concept-section .concept-points .point p {
  margin: 0;
  font-size: 0.95rem;
}

#inquiries, #inquiry, #answer {
  padding: 100px;
}

@media (max-width: 768px) {
  #inquiries, #inquiry, #answer {
    padding: 100px 20px;
  }
}
@media (max-width: 500px) {
  #inquiries, #inquiry, #answer {
    font-size: 10px;
  }
}
#admin {
  padding: 100px 0;
}

@media (max-width: 768px) {
  #admin {
    padding: 100px 20px;
  }
}
/* ===========================================
   Artist Fanclub Page — af- prefix scoped
   =========================================== */
.af-page .af-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
}
.af-page .af-hero-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.af-page .af-hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
}
.af-page .af-hero-title span {
  color: #c9a96e;
}
.af-page .af-hero-sub {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.af-page .af-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.af-page .af-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
.af-page .af-tag--gold {
  border-color: #c9a96e;
  color: #c9a96e;
  font-weight: 400;
}
.af-page section.af-section {
  padding: 80px 20px;
}
.af-page .af-section--dark {
  background-color: #f8f6f2;
}
.af-page .af-section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.af-page .af-section-lead {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 48px;
}
.af-page .af-feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.af-page .af-feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.af-page .af-feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.af-page .af-feature-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.af-page .af-feature-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.af-page .af-flow-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.af-page .af-flow-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.af-page .af-flow-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #1a1a2e;
}
.af-page .af-flow-list {
  text-align: left;
  padding-left: 20px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
}
.af-page .af-tech-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
}
.af-page .af-tech-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
}
.af-page .af-tech-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 400;
  padding: 12px 16px;
  text-align: left;
}
.af-page .af-tech-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  color: #444;
  font-weight: 300;
}
.af-page .af-tech-table tr:hover td {
  background-color: #faf8f5;
}
.af-page .af-reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.af-page .af-reason-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #c9a96e;
  display: block;
  margin-bottom: 8px;
}
.af-page .af-reason-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.af-page .af-reason-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.af-page section.af-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  margin-bottom: -3rem;
}
.af-page .af-cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: #fff;
}
.af-page .af-cta-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.af-page .af-cta-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #c9a96e;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}
.af-page .af-cta-btn:hover {
  opacity: 0.85;
  color: #fff;
}
@media (max-width: 576px) {
  .af-page .af-hero {
    padding: 120px 16px 60px;
  }
  .af-page section.af-section {
    padding: 60px 16px;
  }
  .af-page section.af-cta {
    padding: 60px 16px;
  }
}

/* ===========================================
   Works Detail Pages — wd- prefix scoped
   =========================================== */
:root {
  --wd-gold: #b8860b;
  --wd-ink: #1a1a1a;
  --wd-muted: #888;
  --wd-line: #e0dbd0;
  --wd-blue: #1565c0;
  --wd-blue-bg: #eff5ff;
  --wd-bg: #fafaf8;
  --wd-white: #fff;
  --wd-r: 10px;
}

.wd-page .wd-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: #111;
  color: #fff;
}
.wd-page .wd-hero--rails {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --wd-accent: #4fc3a1;
}
.wd-page .wd-hero--stripe {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --wd-accent: #e94560;
}
.wd-page .wd-hero--course {
  background: linear-gradient(135deg, #2d1b00 0%, #4a2800 50%, #6b3a00 100%);
  --wd-accent: #f4a432;
}
.wd-page .wd-hero--salon {
  background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 50%, #3d1a3d 100%);
  --wd-accent: #c084fc;
}
.wd-page .wd-hero--vibe {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1f2937 100%);
  --wd-accent: #3fb950;
}
.wd-page .wd-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wd-accent, var(--wd-gold));
  margin-bottom: 16px;
}
.wd-page .wd-hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
}
.wd-page .wd-hero-title span {
  color: var(--wd-accent, var(--wd-gold));
}
.wd-page .wd-hero-sub {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.wd-page .wd-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.wd-page .wd-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
.wd-page .wd-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.wd-page .wd-section-label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wd-muted);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 8px;
}
.wd-page .wd-section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  color: var(--wd-ink);
  margin-bottom: 12px;
}
.wd-page .wd-divider {
  width: 40px;
  height: 1px;
  background: var(--wd-line);
  margin: 0 auto 40px;
}
.wd-page .wd-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  white-space: pre-line;
}
.wd-page .wd-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wd-page .wd-feature-card {
  background: var(--wd-white);
  border: 1px solid #eee;
  border-radius: var(--wd-r);
  padding: 28px 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wd-page .wd-feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.wd-page .wd-ficon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.wd-page .wd-fname {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--wd-ink);
  margin-bottom: 8px;
}
.wd-page .wd-fdesc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.wd-page .wd-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.wd-page .wd-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  background: var(--wd-blue-bg);
  color: var(--wd-blue);
}
.wd-page .wd-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wd-page .wd-diff-item {
  background: var(--wd-white);
  border-radius: var(--wd-r);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.wd-page .wd-diff-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--wd-accent, var(--wd-gold));
  margin-bottom: 4px;
}
.wd-page .wd-diff-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--wd-ink);
  margin-bottom: 8px;
}
.wd-page .wd-diff-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.wd-page .wd-cta {
  margin-top: 80px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  text-align: center;
  border-radius: var(--wd-r);
}
.wd-page .wd-cta-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wd-accent, var(--wd-gold));
  margin-bottom: 12px;
}
.wd-page .wd-cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: #fff;
}
.wd-page .wd-cta-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.wd-page .wd-cta-btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--wd-accent, var(--wd-gold));
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.wd-page .wd-cta-btn:hover {
  background: var(--wd-accent, var(--wd-gold));
  color: #fff;
}
@media (max-width: 768px) {
  .wd-page .wd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .wd-page .wd-hero {
    padding: 120px 16px 60px;
  }
  .wd-page .wd-feature-grid {
    grid-template-columns: 1fr;
  }
  .wd-page .wd-diff-grid {
    grid-template-columns: 1fr;
  }
  .wd-page .wd-section-label {
    margin-top: 60px;
  }
  .wd-page .wd-cta {
    margin-top: 60px;
    padding: 60px 16px;
  }
}

/* ===========================================
   Pricing Page — pr- prefix scoped
   =========================================== */
.pr-page .pr-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
  color: #fff;
}
.pr-page .pr-hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: #fff;
}
.pr-page .pr-hero-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}
.pr-page .pr-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.pr-page .pr-section-label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 8px;
}
.pr-page .pr-section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.pr-page .pr-divider {
  width: 40px;
  height: 1px;
  background: #e0dbd0;
  margin: 0 auto 16px;
}
.pr-page .pr-section-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.pr-page .pr-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pr-page .pr-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.pr-page .pr-card-header {
  background: #1a1a2e;
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-page .pr-card-header--rails {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}
.pr-page .pr-card-header--stripe {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.pr-page .pr-card-header--course {
  background: linear-gradient(135deg, #2d1b00 0%, #4a2800 50%, #6b3a00 100%);
}
.pr-page .pr-card-header--salon {
  background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 50%, #3d1a3d 100%);
}
.pr-page .pr-card-header--fanclub {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.pr-page .pr-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.pr-page .pr-card-difficulty {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.pr-page .pr-card-difficulty-bar {
  display: inline-flex;
  gap: 3px;
  margin-left: 8px;
}
.pr-page .pr-card-difficulty-bar span {
  display: inline-block;
  width: 16px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.pr-page .pr-card-difficulty-bar span.active {
  background: #b8860b;
}
.pr-page .pr-card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.pr-page .pr-card-tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.pr-page .pr-card-body {
  padding: 32px 28px;
}
.pr-page .pr-card-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pr-page .pr-card-market {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #bbb;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pr-page .pr-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.pr-page .pr-card-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.6;
}
.pr-page .pr-card-payment {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 24px;
}
.pr-page .pr-card-payment span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: #f5f3ef;
  color: #666;
}
.pr-page .pr-card-maint {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 8px;
}
.pr-page .pr-card-maint-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.pr-page .pr-card-maint-item {
  flex: 1;
}
.pr-page .pr-card-maint-item .pr-maint-type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 4px;
}
.pr-page .pr-card-maint-item .pr-maint-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #1a1a2e;
}
.pr-page .pr-card-maint-item .pr-maint-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  color: #aaa;
  line-height: 1.5;
}
.pr-page .pr-card-extra {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  color: #bbb;
  margin-top: 8px;
}
.pr-page .pr-card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 32px;
  border: 1px solid #b8860b;
  color: #b8860b;
  border-radius: 24px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.pr-page .pr-card-btn:hover {
  background: #b8860b;
  color: #fff;
}
.pr-page .pr-table-wrap {
  overflow-x: auto;
}
.pr-page .pr-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
}
.pr-page .pr-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 400;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.pr-page .pr-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  color: #444;
  font-weight: 300;
}
.pr-page .pr-table tr:hover td {
  background: #faf8f5;
}
.pr-page .pr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pr-page .pr-step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.pr-page .pr-step-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 8px;
}
.pr-page .pr-step-percent {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #b8860b;
  margin-bottom: 8px;
}
.pr-page .pr-step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.pr-page .pr-step-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
.pr-page .pr-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pr-page .pr-included-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.pr-page .pr-included-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.pr-page .pr-included-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.pr-page .pr-included-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
.pr-page .pr-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.pr-page .pr-faq-item {
  border-bottom: 1px solid #eee;
}
.pr-page .pr-faq-item summary {
  padding: 20px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
}
.pr-page .pr-faq-item summary::-webkit-details-marker {
  display: none;
}
.pr-page .pr-faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #b8860b;
}
.pr-page .pr-faq-item[open] summary::before {
  content: "−";
}
.pr-page .pr-faq-item p {
  padding: 0 0 20px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.pr-page .pr-cta {
  margin-top: 80px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  text-align: center;
  border-radius: 10px;
}
.pr-page .pr-cta-eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 12px;
}
.pr-page .pr-cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 16px;
  color: #fff;
}
.pr-page .pr-cta-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.8;
}
.pr-page .pr-cta-btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid #b8860b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.pr-page .pr-cta-btn:hover {
  background: #b8860b;
  color: #fff;
}
@media (max-width: 768px) {
  .pr-page .pr-card {
    grid-template-columns: 1fr;
  }
  .pr-page .pr-steps {
    grid-template-columns: 1fr;
  }
  .pr-page .pr-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .pr-page .pr-hero {
    padding: 120px 16px 60px;
  }
  .pr-page .pr-included-grid {
    grid-template-columns: 1fr;
  }
  .pr-page .pr-section-label {
    margin-top: 60px;
  }
  .pr-page .pr-cta {
    margin-top: 60px;
    padding: 60px 16px;
  }
}

/* ===========================================
   Detail Inquiry Form — di- prefix scoped
   =========================================== */
.di-page .di-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
  color: #fff;
}
.di-page .di-hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: #fff;
}
.di-page .di-hero-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.9;
}
.di-page .di-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.di-page .di-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.di-page .di-progress-dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #e0dbd0;
  transition: background 0.3s;
}
.di-page .di-progress-dot.active {
  background: #b8860b;
}
.di-page .di-step {
  display: none;
}
.di-page .di-step.active {
  display: block;
}
.di-page .di-step-label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 4px;
}
.di-page .di-step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 24px;
}
.di-page .di-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.di-page .di-service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
}
.di-page .di-service-btn:hover {
  border-color: #ccc;
}
.di-page .di-service-btn.selected {
  border-color: #b8860b;
  box-shadow: 0 0 0 1px #b8860b;
}
.di-page .di-service-btn input[type=radio] {
  display: none;
}
.di-page .di-service-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.di-page .di-service-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #1a1a2e;
  margin-bottom: 2px;
}
.di-page .di-service-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: #999;
}
.di-page .di-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.di-page .di-field {
  margin-bottom: 16px;
}
.di-page .di-label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.di-page .di-label .di-required {
  color: #e94560;
  font-size: 0.7rem;
  margin-left: 4px;
}
.di-page .di-label .di-optional {
  color: #bbb;
  font-size: 0.7rem;
  margin-left: 4px;
}
.di-page .di-input,
.di-page .di-textarea,
.di-page .di-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}
.di-page .di-input:focus,
.di-page .di-textarea:focus,
.di-page .di-select:focus {
  outline: none;
  border-color: #b8860b;
}
.di-page .di-textarea {
  min-height: 100px;
  resize: vertical;
}
.di-page .di-hint {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  color: #bbb;
  margin-top: 4px;
}
.di-page .di-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.di-page .di-check-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.di-page .di-check-label input {
  display: none;
}
.di-page .di-check-label:has(input:checked) {
  border-color: #b8860b;
  background: rgba(184, 134, 11, 0.08);
  color: #1a1a2e;
}
.di-page .di-service-detail {
  display: none;
}
.di-page .di-service-detail.active {
  display: block;
}
.di-page .di-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f6f2;
  border-radius: 10px;
  margin-bottom: 24px;
}
.di-page .di-detail-icon {
  font-size: 1.4rem;
}
.di-page .di-detail-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1a2e;
}
.di-page .di-detail-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #999;
}
.di-page .di-placeholder {
  text-align: center;
  padding: 40px 20px;
  background: #f8f6f2;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.8;
}
.di-page .di-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.di-page .di-btn-prev,
.di-page .di-btn-next,
.di-page .di-btn-submit {
  padding: 12px 32px;
  border-radius: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.di-page .di-btn-prev {
  background: #f0f0f0;
  color: #666;
}
.di-page .di-btn-prev:hover {
  background: #e0e0e0;
}
.di-page .di-btn-next {
  background: #1a1a2e;
  color: #fff;
  margin-left: auto;
}
.di-page .di-btn-next:hover {
  opacity: 0.9;
}
.di-page .di-btn-submit {
  background: #b8860b;
  color: #fff;
  margin-left: auto;
}
.di-page .di-btn-submit:hover {
  opacity: 0.9;
}
.di-page .di-submit-note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #999;
  margin-top: 16px;
  line-height: 1.7;
}
@media (max-width: 576px) {
  .di-page .di-hero {
    padding: 120px 16px 60px;
  }
  .di-page .di-services {
    grid-template-columns: 1fr;
  }
  .di-page .di-row {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: "メイリオ", "Meiryo", sans-serif !important;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

section {
  padding: 100px 0;
}

/* スライダーには余白を入れない */
#slider {
  margin-top: 0;
}

#law,
#privacy,
#terms {
  margin-top: 100px;
}
#law h2.title,
#privacy h2.title,
#terms h2.title {
  text-align: center;
  padding-bottom: 50px;
}

@media (max-width: 576px) {
  #law table {
    font-size: 0.8rem;
  }
}
