/* ONE SONG workshop page */
/* ================================================
   WORKSHOP PAGE — ソフトパレット（女性にも優しい柔らかい配色）
   --rose:       #d4907a  くすみローズ（メイン）
   --rose-light: #e8bdb3  ライトローズ
   --blush:      #fdeee9  ブラッシュ（薄ピンク背景）
   --sage:       #8fada4  セージグリーン（差し色）
   --sage-light: #eef4f3  セージ薄背景
   --cream:      #fef9f7  クリーム（ベース）
   --text:       #4a3535  本文
   --text-mid:   #7a5f5a  中間テキスト
   --text-light: #b09090  薄テキスト
   ================================================ */

.ws-page {
  font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
  color: #4a3535;
  background: #fef9f7;
  overflow-x: hidden;
}

/* 募集中バナー */
.ws-recruiting-bar {
  background: #d4907a;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ws-recruiting-bar .ws-bar-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* セクション共通 */
.ws-section       { padding: 80px 24px; }
.ws-section--blush { background: #fdeee9; }
.ws-section--cream { background: #fef9f7; }
.ws-section--sage  { background: #eef4f3; }
.ws-section--white { background: #ffffff; }
.ws-inner      { max-width: 720px; margin: 0 auto; }
.ws-inner--wide { max-width: 960px; margin: 0 auto; }

/* ラベル */
.ws-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4907a;
  border: 1px solid #e8bdb3;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

/* 見出し */
.ws-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  color: #4a3535;
  margin: 0 0 16px;
}
.ws-body {
  font-size: 15px;
  line-height: 2.0;
  color: #7a5f5a;
  margin: 0 0 16px;
}

/* CTAボタン */
.ws-btn {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.ws-btn--primary {
  background: #d4907a;
  color: #fff;
}
.ws-btn--primary:hover {
  background: #c07a64;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,144,122,0.35);
}
.ws-btn--outline {
  background: transparent;
  border-color: #d4907a;
  color: #d4907a;
}
.ws-btn--outline:hover {
  background: #d4907a;
  color: #fff;
}
.ws-btn--sage {
  background: #8fada4;
  color: #fff;
}
.ws-btn--sage:hover {
  background: #7a9c93;
  transform: translateY(-2px);
}
.ws-btn-note {
  display: block;
  font-size: 12px;
  color: #b09090;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* ================================================
   HERO
   ================================================ */
.ws-hero {
  background: linear-gradient(150deg, #fdeee9 0%, #fef9f7 55%, #eef4f3 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ws-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,144,122,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ws-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(143,173,164,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ws-hero__inner { position: relative; z-index: 1; }
.ws-hero__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fada4;
  background: rgba(143,173,164,0.12);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 28px;
}
.ws-hero__time {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: #d4907a;
  letter-spacing: -0.04em;
}
.ws-hero__time-unit {
  font-size: 0.32em;
  font-weight: 400;
  color: #e8bdb3;
  letter-spacing: 0;
}
.ws-hero__copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 5.5vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  color: #4a3535;
  margin: 4px 0 16px;
}
.ws-hero__sub {
  font-size: 14px;
  color: #7a5f5a;
  line-height: 1.9;
  margin: 0 0 10px;
}
.ws-hero__declaration {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #d4907a;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}
.ws-hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ================================================
   比較カード（説明会 vs 本講座）
   ================================================ */
.ws-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0 0;
}
@media (max-width: 560px) { .ws-compare { grid-template-columns: 1fr; } }

.ws-compare-card {
  border-radius: 20px;
  padding: 32px 26px;
}
.ws-compare-card--trial {
  background: #fff;
  border: 2px solid #f0ddd8;
}
.ws-compare-card--main {
  background: linear-gradient(145deg, #d4907a, #c47464);
  color: #fff;
}
.ws-compare-card__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ws-compare-card--trial .ws-compare-card__badge { background: #fdeee9; color: #d4907a; }
.ws-compare-card--main  .ws-compare-card__badge { background: rgba(255,255,255,0.22); color: #fff; }
.ws-compare-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}
.ws-compare-card--trial .ws-compare-card__name { color: #4a3535; }
.ws-compare-card--main  .ws-compare-card__name { color: #fff; }
.ws-compare-card__time {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 4px;
}
.ws-compare-card--trial .ws-compare-card__time { color: #d4907a; }
.ws-compare-card--main  .ws-compare-card__time { color: rgba(255,255,255,0.8); }
.ws-compare-card__time-unit { font-size: 0.48em; font-weight: 400; }
.ws-compare-card__price {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 20px;
}
.ws-compare-card--trial .ws-compare-card__price { color: #8fada4; }
.ws-compare-card--main  .ws-compare-card__price { color: rgba(255,255,255,0.75); }
.ws-compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ws-compare-card__list li {
  font-size: 14px;
  line-height: 1.7;
  padding: 5px 0 5px 18px;
  position: relative;
}
.ws-compare-card__list li::before { content: '♪'; position: absolute; left: 0; font-size: 11px; }
.ws-compare-card--trial .ws-compare-card__list li { color: #7a5f5a; }
.ws-compare-card--trial .ws-compare-card__list li::before { color: #d4907a; }
.ws-compare-card--main  .ws-compare-card__list li { color: rgba(255,255,255,0.9); }
.ws-compare-card--main  .ws-compare-card__list li::before { color: rgba(255,255,255,0.55); }
.ws-compare-card__desc {
  font-size: 12px;
  line-height: 1.8;
  margin: 0 0 24px;
}
.ws-compare-card--trial .ws-compare-card__desc { color: #b09090; }
.ws-compare-card--main  .ws-compare-card__desc { color: rgba(255,255,255,0.7); }
.ws-compare-card__btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.ws-compare-card--trial .ws-compare-card__btn {
  border-color: #d4907a;
  color: #d4907a;
}
.ws-compare-card--trial .ws-compare-card__btn:hover { background: #d4907a; color: #fff; }
.ws-compare-card--main  .ws-compare-card__btn {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.ws-compare-card--main  .ws-compare-card__btn:hover { background: rgba(255,255,255,0.38); }

/* 募集状況 */
.ws-status {
  background: #fff;
  border: 2px solid #f0ddd8;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ws-status__dot {
  width: 11px; height: 11px;
  background: #d4907a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ws-pulse 2s ease-in-out infinite;
}
@keyframes ws-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.ws-status__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4a3535;
  line-height: 1.7;
  flex: 1;
}
.ws-status__text em { font-style: normal; color: #d4907a; }
.ws-status__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: #fdeee9;
  color: #d4907a;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* 共感 */
.ws-empathy-story {
  background: #fff;
  border-left: 3px solid #e8bdb3;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.ws-empathy-story p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.9;
  color: #4a3535;
}
.ws-empathy-story p:last-child { margin: 0; }
.ws-empathy-story strong { color: #d4907a; }

/* 用途グリッド */
.ws-uses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
@media (min-width: 560px) { .ws-uses { grid-template-columns: repeat(4, 1fr); } }
.ws-use-item {
  background: #fff;
  border: 1px solid #f0ddd8;
  border-radius: 14px;
  padding: 22px 12px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4a3535;
}
.ws-use-item span { display: block; font-size: 28px; margin-bottom: 8px; }
.ws-solve-conclusion {
  background: linear-gradient(135deg, #d4907a, #e8a090);
  color: #fff;
  padding: 28px 32px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

/* SoundCloud */
.ws-soundcloud-embed { margin: 36px 0 0; }
.ws-soundcloud-note { text-align: right; margin: 10px 0 0; }
.ws-soundcloud-note a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #d4907a;
  text-decoration: none;
}
.ws-soundcloud-note a:hover { text-decoration: underline; }

/* できる未来 */
.ws-future-list { list-style: none; padding: 0; margin: 28px 0 0; }
.ws-future-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f0ddd8;
}
.ws-future-item:last-child { border-bottom: none; }
.ws-future-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #e8bdb3;
  line-height: 1;
  min-width: 40px;
  letter-spacing: -0.02em;
}
.ws-future-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #4a3535;
  line-height: 1.6;
  padding-top: 2px;
}

/* 講座ステップ */
.ws-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
@media (min-width: 560px) { .ws-steps { grid-template-columns: repeat(4, 1fr); } }
.ws-step {
  background: #fef9f7;
  border: 1px solid #f0ddd8;
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
}
.ws-step__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #d4907a;
  margin: 0 0 10px;
}
.ws-step__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4a3535;
  margin: 0;
}
.ws-course-result {
  background: linear-gradient(135deg, #8fada4, #7a9c93);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* アドバイザー */
.ws-advisor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 32px 0 0;
}
@media (min-width: 600px) {
  .ws-advisor-grid { grid-template-columns: 180px 1fr; align-items: start; }
}
.ws-advisor-img {
  width: 180px;
  height: 180px;
  background: #f5e6e2;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b09090;
  font-size: 13px;
  margin: 0 auto;
}
.ws-advisor-img img { width: 100%; height: 100%; object-fit: cover; }
.ws-advisor-flow { list-style: none; padding: 0; margin: 0; }
.ws-advisor-flow li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0ddd8;
  font-size: 15px;
  line-height: 1.8;
  color: #4a3535;
}
.ws-advisor-flow li:last-child { border-bottom: none; }
.ws-advisor-flow li::before {
  content: attr(data-step);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #d4907a;
  padding-top: 4px;
  min-width: 22px;
  flex-shrink: 0;
}

/* 参加対象 */
.ws-target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 32px 0 0;
}
@media (min-width: 560px) { .ws-target-grid { grid-template-columns: repeat(2, 1fr); } }
.ws-target-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0ddd8;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ws-target-check {
  width: 22px; height: 22px;
  background: #d4907a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-target-check::after {
  content: '';
  width: 7px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.ws-target-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a3535;
}

/* 開催概要テーブル */
.ws-details-table { width: 100%; border-collapse: collapse; margin: 32px 0 0; }
.ws-details-table tr { border-bottom: 1px solid #f0ddd8; }
.ws-details-table tr:first-child { border-top: 1px solid #f0ddd8; }
.ws-details-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4907a;
  padding: 18px 0;
  text-align: left;
  width: 110px;
  vertical-align: top;
}
.ws-details-table td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a3535;
  padding: 18px 0;
  line-height: 1.7;
}
.ws-details-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #d4907a;
}
.ws-details-price small { font-size: 13px; font-weight: 400; color: #7a5f5a; letter-spacing: 0; }
.ws-free-badge {
  display: inline-block;
  background: #8fada4;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  font-style: normal;
}

/* Final CTA */
.ws-final {
  background: linear-gradient(150deg, #fdeee9 0%, #eef4f3 100%);
  padding: 100px 24px;
  text-align: center;
}
.ws-final__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 5vw, 38px);
  font-weight: 700;
  line-height: 1.5;
  color: #4a3535;
  margin: 16px 0 8px;
}
.ws-final__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 4vw, 26px);
  font-style: italic;
  color: #d4907a;
  margin: 0 0 40px;
  letter-spacing: 0.05em;
}
.ws-final__btns { display: flex; flex-direction: column; align-items: center; gap: 14px; }

@media (max-width: 480px) { .ws-section { padding: 60px 20px; } }

.ws-soundcloud-embed {
  border-radius: 12px;
  display: block;
}

/* Accessibility: stable touch targets and keyboard focus */
.ws-btn,
.ws-compare-card__btn,
.ws-final__btns a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-btn:focus-visible,
.ws-compare-card__btn:focus-visible,
.ws-final__btns a:focus-visible {
  outline: 3px solid rgba(212, 144, 122, 0.85);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .ws-page *,
  .ws-page *::before,
  .ws-page *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }
}

