/*
Theme Name: Spiritual Child
Template:twentytwentyfive
Version: 1.0
*/

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

html {
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  line-height: 1.8;
  color: #222;
  background-color: #fff;
  width: 600px;
  margin: 0 auto;
}

/* ========================================
   ヘッダー
======================================== */
.header {
  background: #77d9c9;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 15px;
}

.header-nav a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.header-nav a:hover {
  opacity: 0.7;
}

/* ========================================
   バナー画像セクション
======================================== */
.section-banner {
  width: 100%;
  line-height: 0;
}

.section-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   TOP - 並木イズムカード（100vh フルスクリーン）
======================================== */
.top-card {
  height: 100%;
  min-height: 800px;
  background: linear-gradient(180deg, #77d9c9 0%, #08a19d 50%, #77d9c9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景エフェクト要素 */
.card-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* 軌道（円形ライン） */
.card-orbit {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-orbit-1 {
  width: 400px;
  height: 600px;
}

.card-orbit-2 {
  width: 550px;
  height: 750px;
}

/* アイコン（星、太陽、月） */
.card-icon {
  position: absolute;
  opacity: 0.5;
  width: 50px;
  height: auto;
}

.card-icon-star {
  top: 10%;
  left: 15%;
  width: 25px;
}

.card-icon-sun {
  top: 25%;
  right: 10%;
  width: 25px;
}

.card-icon-moon {
  bottom: 30%;
  left: 8%;
  width: 25px;
}

/* キラキラエフェクト */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  opacity: 0.8;
  animation: sparkle 2s infinite;
}

.sparkle-1 { top: 15%; left: 30%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 25%; animation-delay: 0.4s; }
.sparkle-3 { top: 60%; left: 20%; animation-delay: 0.8s; }
.sparkle-4 { top: 70%; right: 15%; animation-delay: 1.2s; }
.sparkle-5 { bottom: 20%; left: 40%; animation-delay: 1.6s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* カードコンテナ */
.card-container {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.card-image {
  width: 180px;
  height: 260px;
  margin: 0 auto 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}

.card-desc {
  color: #000;
  font-size: 14px;
  margin-bottom: 30px;
}

.btn-card {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   セクション共通
======================================== */
.section {
  padding: 50px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-label {
  display: inline-block;
  color: #77d9c9;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #666;
  font-size: 13px;
}

.section-price {
  color: #77d9c9;
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}

/* ========================================
   セクション1 - テーマトーク
======================================== */
.section-theme {
  background: #77d9c9;
}

.section-theme .section-label {
  color: #000;
}

.section-theme .section-title {
  color: #000;
}

.section-theme .section-subtitle {
  color: rgba(0, 0, 0, 0.9);
}

.theme-note {
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  margin-top: 15px;
}

/* 動画埋め込み共通 */
.video-embed {
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed-small {
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.video-embed-small video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   セクション2 - サイト概要
======================================== */
.section-about {
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-about .section-title {
  color: #222;
}

.about-content {
  text-align: center;
  padding: 0 20px;
}

.about-catch {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-lead {
  font-size: 15px;
  color: #222;
  margin-bottom: 35px;
  line-height: 2;
}

.about-box {
  background: #f8f8f8;
  border-left: 4px solid #77d9c9;
  padding: 25px 30px;
}

.about-box p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #222;
  line-height: 2;
}

/* ========================================
   セクション3 - カード説明動画
======================================== */
.section-card-video {
  background: #77d9c9;
}

.section-card-video .section-label {
  color: #000;
}

.section-card-video .section-title {
  color: #000;
}

/* ========================================
   セクション4 - 朝昼晩の習慣ワーク
======================================== */
.section-habits {
  background: #fff;
}

.section-habits .section-label {
  color: #77d9c9;
}

.section-habits .section-title {
  color: #222;
}

.habits-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.habit-item {
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: 20px;
}

.habit-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-bottom: 10px;
  color: #000;
}

.habit-morning {
  background: linear-gradient(135deg, #ffb347, #ff9500);
}

.habit-noon {
  background: #77d9c9;
}

.habit-night {
  background: linear-gradient(135deg, #7b68ee, #5a4fcf);
}

.habit-item h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ========================================
   セクション5 - 新着情報（最大5件）
======================================== */
.section-news {
  height: 100%;
  background: #77d9c9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-news .section-header {
  width: 100%;
}

.section-news .section-label {
  color: #000;
}

.section-news .section-title {
  color: #000;
}

.news-list {
  list-style: none;
  width: 100%;
  background: #fff;
  padding: 20px;
}

.news-item {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .news-row {
  display: block;
  text-decoration: none;
  cursor: default;
}

.news-date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.news-category {
  display: inline-block;
  font-size: 10px;
  color: #000;
  background: #77d9c9;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.news-title {
  display: block;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}

.btn-more {
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
  transition: opacity 0.3s;
}

.btn-more:hover {
  opacity: 0.7;
}

/* ========================================
   セクション6 - 質問受付
======================================== */
.section-contact {
  background: #fff;
}

.section-contact .section-label {
  color: #77d9c9;
}

.section-contact .section-title {
  color: #222;
}

.section-contact .section-subtitle {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: #f8f8f8;
  padding: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  font-size: 10px;
  color: #e74c3c;
  margin-left: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #77d9c9;
  box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: #77d9c9;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #08a19d;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   セクション7 - プレミアムコンテンツ
======================================== */
.section-premium {
  background: #77d9c9;
}

.section-premium .section-label {
  color: #000;
}

.section-premium .section-title {
  color: #000;
}

.section-premium .section-price {
  color: #000;
}

.premium-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.premium-card {
  background: #fff;
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

.premium-card-featured {
  border: 3px solid #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.premium-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #666;
  border: 1px solid #ddd;
  padding: 4px 15px;
  margin-bottom: 15px;
}

.badge-recommend {
  background: #77d9c9;
  color: #000;
  border-color: #77d9c9;
}

.premium-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.premium-price {
  font-size: 32px;
  color: #77d9c9;
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-price span {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.premium-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.premium-features li {
  color: #444;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.btn-purchase {
  display: block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-onetime {
  background: transparent;
  color: #77d9c9;
  border: 2px solid #77d9c9;
}

.btn-onetime:hover {
  background: #77d9c9;
  color: #000;
}

.btn-monthly {
  background: #77d9c9;
  color: #000;
  border: none;
}

.btn-monthly:hover {
  background: #08a19d;
  box-shadow: 0 5px 25px rgba(10, 186, 181, 0.3);
}

.premium-note {
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  font-size: 11px;
  margin-top: 20px;
}

/* ========================================
   セクション8 - プレミアムワークショップ
======================================== */
.section-workshop {
  background: #fff;
}

.section-workshop .section-label {
  color: #77d9c9;
}

.section-workshop .section-title {
  color: #222;
}

.section-workshop .section-subtitle {
  color: #666;
}

.section-workshop h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ========================================
   フッター
======================================== */
.footer {
  background: #77d9c9;
  padding: 40px 20px 30px;
  text-align: center;
}

.footer-sns {
  margin-bottom: 30px;
}

.footer-sns-title {
  color: #000;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(1, 1, 1, 0.5);
  transition: all 0.3s;
}

.sns-link svg {
  width: 24px;
  height: 24px;
}

.sns-link:hover {
  background: #fff;
  color: #77d9c9;
  border-color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(1, 1, 1, 0.9);
  text-decoration: none;
  font-size: 11px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  color: rgba(1, 1, 1, 0.8);
  font-size: 11px;
}

/* ========================================
   スマホ版 - メディアクエリ
======================================== */
@media (max-width: 768px) {

  /* リセット & ベース */
  html {
    background-color: #000;
  }

  body {
    width: 100%;
    margin: 0;
  }

  /* ヘッダー */
  .header {
    padding: 15px 15px;
  }

  .header-logo img {
    height: 50px;
  }

  .header-nav {
    margin-top: 0px;
    display: flex;
  }

  .header-nav a {
    font-size: 14px;
    padding: 0px 0;
  }

  /* TOP - 並木イズムカード */
  .top-card {
    height: auto;
    min-height: 500px;
    padding: 50px 20px;
  }

  .card-container {
    padding: 20px;
    text-align: center;
  }

  .card-image {
    width: 150px;
    height: 220px;
    margin: 0 auto 20px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .card-desc {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .btn-card {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* スクロールインジケーター */
  .scroll-indicator {
    font-size: 16px;
  }

  /* セクション共通 */
  .section {
    padding: 30px 15px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-price {
    font-size: 24px;
  }

  /* セクション1 - テーマトーク */
  .theme-note {
    font-size: 10px;
  }

  /* セクション2 - サイト概要 */
  .section-about {
    height: auto;
    padding: 40px 15px;
  }

  .about-catch {
    font-size: 16px;
  }

  .about-lead {
    font-size: 13px;
  }

  .about-box {
    padding: 20px;
  }

  .about-box p {
    font-size: 13px;
  }

  /* セクション4 - 朝昼晩の習慣ワーク */
  .section-habits {
    padding: 30px 10px;
  }

  .habits-grid {
    display: block;
  }

  .habit-item {
    padding: 15px 20px;
    margin-bottom: 15px;
  }

  .habit-item h3 {
    font-size: 14px;
  }

  /* セクション5 - 新着情報 */
  .section-news {
    height: auto;
    padding: 30px 15px;
  }

  .news-list {
    padding: 15px;
  }

  .news-item {
    padding: 15px 0;
  }

  .news-title {
    font-size: 14px;
  }

  .btn-more {
    font-size: 12px;
  }

  /* セクション6 - 質問受付 */
  .section-contact {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 14px;
  }

  /* セクション7 - プレミアムコンテンツ */
  .section-premium {
    padding: 30px 15px;
  }

  .premium-card h3 {
    font-size: 18px;
  }

  .premium-price {
    font-size: 28px;
  }

  .premium-features li {
    font-size: 12px;
  }

  .btn-purchase {
    padding: 12px 25px;
    font-size: 14px;
  }

  .premium-features {
    font-size: 12px;
  }

  /* セクション8 - プレミアムワークショップ */
  .section-workshop {
    padding: 30px 15px;
  }

  .section-workshop .section-title {
    font-size: 20px;
  }

  .section-workshop .section-subtitle {
    font-size: 14px;
  }

  /* フッター */
  .footer {
    padding: 30px 15px 20px;
  }

  .footer-sns-title {
    font-size: 14px;
  }

  .sns-links {
    gap: 15px;
  }

  .sns-link {
    width: 44px;
    height: 44px;
  }

  .sns-link svg {
    width: 22px;
    height: 22px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 10px;
  }
}

/* 非会員向けCTA */
.member-cta{
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.member-cta-title{
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.member-cta-desc{
  font-size: 12px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.8;
}

.member-cta-sub{
  margin-top: 10px;
  font-size: 12px;
}

.member-cta-sub a{
  color: #000;
  text-decoration: underline;
}

/* .btn-card を <a> に使うため */
a.btn-card{
  display: inline-block;
  text-decoration: none;
}

/* 緑背景セクション上でも見やすく */
.namikiQuoteBox{
  background: #77d9c9;
}

.member-cta-on-dark{
  background: #77d9c9;
}

.namiki-quote-output{
  font-size: 16px;
  padding: 14px 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.optional{
  font-size: 10px;
  color: #666;
  margin-left: 5px;
}

.contact-alert{
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fff;
}

.contact-alert-success{
  border-color: rgba(10,186,181,.35);
}

.contact-alert-error{
  border-color: rgba(231,76,60,.35);
}

.hp-field{
  display: none !important;
}
/* ========================================
   プレミアムワークショップ - 画像オーバーレイボタン
   ※ style.css のセクション8部分を以下に置き換え
======================================== */

/* セクション8 - プレミアムワークショップ */
.section-workshop {
  background: #fff;
}

.section-workshop .section-label {
  color: #77d9c9;
}

.section-workshop .section-title {
  color: #222;
}

.section-workshop .section-subtitle {
  color: #666;
}

/* ワークショップアイテム */
.workshop-item {
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.workshop-item:last-child {
  margin-bottom: 0;
}

.workshop-item h3 {
  font-size: 14px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  writing-mode: horizontal-tb;
}

/* 画像コンテナ（ボタンを重ねる親要素） */
.workshop-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
}

.workshop-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* ホバー時に画像を少し暗く */
.workshop-thumbnail:hover img {
  transform: scale(1.02);
  filter: brightness(0.7);
}

/* オーバーレイ（常に表示、ホバーで強調） */
.workshop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.workshop-thumbnail:hover .workshop-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* 購入ボタン（画像中央に配置） */
.btn-workshop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #77d9c9;
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.workshop-thumbnail:hover .btn-workshop {
  background: #5fc9b8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   スマホ対応
======================================== */
@media (max-width: 768px) {
  .workshop-item {
    padding: 15px;
  }

  .workshop-item h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .btn-workshop {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* スマホでは常にオーバーレイ表示 */
  .workshop-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
}