開運氣学講座1、2



<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>開運氣学講座|方位取り・祐氣取りで人生を拓く</title>
<style>
  :root {
    --gold: #b8882a;
    --gold-light: #f0c040;
    --gold-bg: #fdf6e3;
    --gold-border: #e8c97a;
    --text: #2a2318;
    --text-mid: #5a4e3a;
    --text-light: #8a7a60;
    --accent: #7a3b5a;
    --accent2: #2d5a7a;
    --bg: #ffffff;
    --bg2: #fafaf7;
    --bg3: #f5f0e8;
    --border: #e0d5c0;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'メイリオ', Meiryo, 'Meiryo UI', 'MS PGothic', sans-serif;
    line-height: 1.9;
    font-size: 15px;
  }
  nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff; border-bottom: 2px solid var(--gold-border);
    padding: 0 40px; display: flex; align-items: center;
    justify-content: space-between; height: 60px;
  }
  .nav-logo { font-size: 1.05rem; font-weight: bold; color: var(--gold); letter-spacing: .1em; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-mid); font-size: .85rem; letter-spacing: .08em; transition: color .2s; }
  .nav-links a:hover { color: var(--gold); }

  .hero {
    background: var(--bg3); border-bottom: 2px solid var(--gold-border);
    padding: 0 40px; display: grid; grid-template-columns: 1fr 380px;
    gap: 40px; align-items: center; min-height: 420px; overflow: hidden;
  }
  .hero-text { padding: 60px 0; }
  .hero-eyebrow {
    display: inline-block; background: var(--gold); color: #fff;
    font-size: .75rem; letter-spacing: .25em; padding: 4px 14px; margin-bottom: 20px;
  }
  .hero-title { font-size: clamp(2rem,5vw,3.4rem); font-weight: bold; line-height: 1.25; color: var(--text); margin-bottom: 20px; letter-spacing: .05em; }
  .hero-title .accent { color: var(--gold); }
  .hero-desc { font-size: 1rem; color: var(--text-mid); margin-bottom: 32px; max-width: 500px; line-height: 2; }
  .hero-badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .badge { border: 1px solid var(--gold-border); background: #fff; color: var(--gold); font-size: .8rem; padding: 6px 16px; letter-spacing: .1em; }

  .section { padding: 80px 40px; max-width: 960px; }
  .section-wide { padding: 80px 40px; }
  .section-inner { max-width: 960px; margin: 0 auto; }
  .label {
    font-size: .75rem; color: var(--gold); letter-spacing: .3em; text-transform: uppercase;
    margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
  }
  .label::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold-border); }
  h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: bold; color: var(--text); margin-bottom: 28px; line-height: 1.45; letter-spacing: .03em; }
  h2 em { color: var(--gold); font-style: normal; border-bottom: 2px solid var(--gold-light); }
  p { color: var(--text-mid); margin-bottom: 1.2em; line-height: 2; }
  p:last-child { margin-bottom: 0; }
  .divider { border: none; border-top: 1px solid var(--border); margin: 0; }

  .lead-box { background: var(--gold-bg); border-left: 4px solid var(--gold); padding: 28px 32px; margin-bottom: 40px; }
  .lead-box p { color: var(--text); font-size: 1.02rem; line-height: 2.1; margin: 0; }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
  .card { background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 28px; }
  .card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
  .card p { font-size: .92rem; }

  .stars-wrap { margin: 32px 0; }
  .stars-grid { display: grid; grid-template-columns: repeat(9,1fr); border: 1px solid var(--border); }
  .star-item { padding: 16px 8px; text-align: center; border-right: 1px solid var(--border); background: #fff; transition: background .2s; cursor: default; }
  .star-item:last-child { border-right: none; }
  .star-item:hover { background: var(--gold-bg); }
  .star-num { font-size: .7rem; color: var(--gold); display: block; margin-bottom: 4px; letter-spacing: .05em; }
  .star-name { font-size: .82rem; color: var(--text); font-weight: bold; }

  .steps { margin: 32px 0; }
  .step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
  .step:last-child { border-bottom: none; }
  .step-num { width: 44px; height: 44px; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: bold; flex-shrink: 0; }
  .step-body h4 { font-size: 1rem; color: var(--text); margin-bottom: 6px; font-weight: bold; }
  .step-body p { font-size: .92rem; margin: 0; }

  .courses-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .course-card { background: #fff; border: 1px solid var(--border); margin-bottom: 32px; overflow: hidden; }
  .course-card:last-of-type { margin-bottom: 0; }
  .course-header { background: var(--text); padding: 28px 36px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
  .course-no { font-size: .75rem; color: var(--gold-light); letter-spacing: .3em; margin-bottom: 8px; display: block; }
  .course-title-main { font-size: 1.6rem; color: #fff; font-weight: bold; letter-spacing: .05em; line-height: 1.3; }
  .course-subtitle { font-size: .9rem; color: #c8b898; margin-top: 6px; }
  .price-block { text-align: right; flex-shrink: 0; }
  .price-label { font-size: .72rem; color: var(--gold-light); letter-spacing: .15em; display: block; margin-bottom: 4px; }
  .price-main { font-size: 2.2rem; color: var(--gold-light); font-weight: bold; line-height: 1; }
  .price-unit { font-size: .82rem; color: #c8b898; }
  .price-sub { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.15); font-size: .8rem; color: #c8b898; line-height: 1.8; }
  .price-sub strong { color: var(--gold-light); }
  .course-body { padding: 32px 36px; display: grid; grid-template-columns: 1fr 240px; gap: 32px; align-items: start; }
  .course-highlights { list-style: none; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .course-highlights li { font-size: .88rem; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.6; }
  .course-highlights li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: .8rem; }
  .time-box { background: var(--bg3); border: 1px solid var(--border); padding: 16px 20px; font-size: .85rem; margin-top: 16px; }
  .time-box strong { color: var(--gold); }
  .course-illus { display: flex; justify-content: center; align-items: flex-start; padding-top: 4px; }

  .illus-wrap { margin: 32px 0; display: flex; justify-content: flex-start; }

  .note-box { background: var(--gold-bg); border: 1px solid var(--gold-border); padding: 20px 28px; margin-top: 24px; font-size: .88rem; color: var(--text-mid); line-height: 1.9; }

  .session-card { background: #fff; border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 200px; overflow: hidden; }
  .session-body { padding: 36px; }
  .session-body h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 14px; font-weight: bold; }
  .session-body p { font-size: .92rem; }
  .session-price-box { background: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; }

  .cta-section { background: var(--text); padding: 80px 40px; }
  .cta-inner { max-width: 960px; margin: 0 auto; }
  .cta-section .label { color: var(--gold-light); }
  .cta-section .label::after { background: rgba(255,255,255,.2); }
  .cta-section h2 { color: #fff; }
  .cta-section h2 em { color: var(--gold-light); border-bottom-color: rgba(240,192,64,.5); }
  .cta-section p { color: #c8b898; }
  .btn { display: inline-block; background: var(--gold); color: #fff; font-family: 'メイリオ',Meiryo,sans-serif; font-size: .95rem; font-weight: bold; letter-spacing: .15em; padding: 16px 48px; text-decoration: none; margin-top: 24px; transition: background .2s, transform .2s; border: none; cursor: pointer; }
  .btn:hover { background: #a07020; transform: translateY(-2px); }

  footer { background: #1a1810; color: #6a5e48; padding: 32px 40px; font-size: .82rem; letter-spacing: .1em; }

  @media (max-width: 760px) {
    nav { padding: 0 20px; } .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 32px 20px; } .hero-illus { display: none; }
    .section, .cta-section, .section-wide { padding: 56px 20px; }
    .two-col { grid-template-columns: 1fr; }
    .stars-grid { grid-template-columns: repeat(3,1fr); }
    .course-header { flex-direction: column; } .price-block { text-align: left; }
    .course-body { grid-template-columns: 1fr; } .course-illus { display: none; }
    .course-highlights { grid-template-columns: 1fr; }
    .session-card { grid-template-columns: 1fr; }
  }
</style>
</head>
<body>

<nav>
  <span class="nav-logo">開運氣学講座</span>
  <ul class="nav-links">
    <li><a href="#about">氣学とは</a></li>
    <li><a href="#practice">日常実践</a></li>
    <li><a href="#courses">講座内容</a></li>
    <li><a href="#session">セッション</a></li>
    <li><a href="#contact">お申し込み</a></li>
  </ul>
</nav>

<!-- ヒーロー -->
<div class="hero">
  <div class="hero-text">
    <span class="hero-eyebrow">Kaiun Kigaku</span>
    <h1 class="hero-title">開運<span class="accent">氣</span>学講座<br><span style="font-size:.6em;color:var(--text-mid);font-weight:normal;">方位の力を知り、<br>自分の人生を自分で拓く</span></h1>
    <p class="hero-desc">吉方位への移動(方位取り・祐氣取り)で<br>今の自分に必要な氣を受け取る方法を学びます。</p>
    <div class="hero-badge-row">
      <span class="badge">対面・Zoom・通信対応</span>
      <span class="badge">神道の視点も学べる</span>
      <span class="badge">完全オリジナルテキスト</span>
    </div>
  </div>
  <div class="hero-illus">
    <svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg">
      <circle cx="160" cy="160" r="150" fill="#fdf6e3" stroke="#e8c97a" stroke-width="2"/>
      <circle cx="160" cy="160" r="120" fill="none" stroke="#e8c97a" stroke-width="1" stroke-dasharray="4 4"/>
      <circle cx="160" cy="160" r="82"  fill="none" stroke="#e0d5c0" stroke-width="1"/>
      <circle cx="160" cy="160" r="44"  fill="#fff"  stroke="#e0d5c0" stroke-width="1"/>
      <line x1="160" y1="10"  x2="160" y2="310" stroke="#e0d5c0" stroke-width="1"/>
      <line x1="10"  y1="160" x2="310" y2="160" stroke="#e0d5c0" stroke-width="1"/>
      <line x1="53"  y1="53"  x2="267" y2="267" stroke="#ecddb0" stroke-width=".8" stroke-dasharray="3 5"/>
      <line x1="267" y1="53"  x2="53"  y2="267" stroke="#ecddb0" stroke-width=".8" stroke-dasharray="3 5"/>
      <text x="160" y="22"  text-anchor="middle" font-family="Meiryo,sans-serif" font-size="15" font-weight="bold" fill="#b8882a">北</text>
      <text x="160" y="308" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="15" font-weight="bold" fill="#b8882a">南</text>
      <text x="20"  y="165" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="15" font-weight="bold" fill="#b8882a">西</text>
      <text x="300" y="165" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="15" font-weight="bold" fill="#b8882a">東</text>
      <text x="54"  y="48"  text-anchor="middle" font-family="Meiryo,sans-serif" font-size="11" fill="#c8a858">北西</text>
      <text x="268" y="48"  text-anchor="middle" font-family="Meiryo,sans-serif" font-size="11" fill="#c8a858">北東</text>
      <text x="54"  y="283" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="11" fill="#c8a858">南西</text>
      <text x="268" y="283" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="11" fill="#c8a858">南東</text>
      <polygon points="160,44 167.5,148 160,162 152.5,148" fill="#b8882a"/>
      <polygon points="160,276 167.5,172 160,158 152.5,172" fill="#d0c0a0"/>
      <circle cx="160" cy="160" r="10" fill="#b8882a"/>
      <circle cx="160" cy="160" r="4"  fill="#fff"/>
      <circle cx="160" cy="82"  r="5" fill="#7a3b5a" opacity=".7"/>
      <circle cx="160" cy="238" r="5" fill="#2d5a7a" opacity=".7"/>
      <circle cx="82"  cy="160" r="5" fill="#4a7a4a" opacity=".7"/>
      <circle cx="238" cy="160" r="5" fill="#c8880a" opacity=".7"/>
      <circle cx="108" cy="108" r="4" fill="#b8882a" opacity=".5"/>
      <circle cx="212" cy="108" r="4" fill="#b8882a" opacity=".5"/>
      <circle cx="108" cy="212" r="4" fill="#b8882a" opacity=".5"/>
      <circle cx="212" cy="212" r="4" fill="#b8882a" opacity=".5"/>
    </svg>
  </div>
</div>

<hr class="divider">

<!-- はじめに -->
<div id="about">
<div class="section">
  <div class="label">はじめに</div>
  <h2>努力は、<em>氣の流れ</em>に乗ったときに実を結ぶ</h2>
  <div class="lead-box">
    <p>人生の成功は、努力だけで決まるわけではありません。毎日の「どこへ行くか」「何を選ぶか」という何気ない行動の積み重ねが、実は大きな流れをつくっています。その流れを意識的に整えるのが、氣学の本質です。</p>
  </div>
  <p>氣の流れが整っている人は、知らず知らずのうちに良い選択を引き寄せ、縁やタイミングが自然と味方をします。反対に、必要な氣が不足していると、どれほど懸命に努力しても空回りしてしまうことがあります。</p>
  <p>この講座では、<strong>吉方位への移動(方位取り・祐氣取り)</strong>によって、今の自分に本当に必要な氣を意図的に受け取る方法をお伝えします。神道の本質とも深く結びついた、本来の方位取りの考え方を、実践的にわかりやすく学べる内容です。</p>

  <!-- イラスト:方位取りのイメージ -->
  <div class="illus-wrap">
    <svg width="580" height="188" viewBox="0 0 580 188" fill="none" xmlns="http://www.w3.org/2000/svg">
      <rect width="580" height="188" rx="4" fill="#fdf6e3" stroke="#e8c97a" stroke-width="1"/>
      <!-- 人物 -->
      <circle cx="76" cy="66" r="22" fill="#e8d8a0" stroke="#b8882a" stroke-width="1.5"/>
      <circle cx="70" cy="62" r="2.5" fill="#7a5020"/>
      <circle cx="82" cy="62" r="2.5" fill="#7a5020"/>
      <path d="M71 73 Q76 78 81 73" stroke="#7a5020" stroke-width="1.5" fill="none" stroke-linecap="round"/>
      <line x1="76" y1="88" x2="76" y2="132" stroke="#b8882a" stroke-width="2.5" stroke-linecap="round"/>
      <line x1="76" y1="104" x2="56" y2="122" stroke="#b8882a" stroke-width="2" stroke-linecap="round"/>
      <line x1="76" y1="104" x2="96" y2="122" stroke="#b8882a" stroke-width="2" stroke-linecap="round"/>
      <line x1="76" y1="132" x2="60" y2="156" stroke="#b8882a" stroke-width="2" stroke-linecap="round"/>
      <line x1="76" y1="132" x2="92" y2="156" stroke="#b8882a" stroke-width="2" stroke-linecap="round"/>
      <!-- 吉方位矢印 -->
      <line x1="112" y1="88" x2="218" y2="56" stroke="#b8882a" stroke-width="2.5"/>
      <polygon points="218,56 204,60 208,72" fill="#b8882a"/>
      <text x="140" y="52" font-family="Meiryo,sans-serif" font-size="11.5" fill="#b8882a" font-weight="bold">吉方位へ移動</text>
      <!-- 凶方位矢印(薄) -->
      <line x1="112" y1="98" x2="218" y2="118" stroke="#c0a888" stroke-width="1.5" stroke-dasharray="5 3"/>
      <polygon points="218,118 206,112 207,124" fill="#c0a888"/>
      <text x="140" y="138" font-family="Meiryo,sans-serif" font-size="10.5" fill="#c0a888">凶方位は避ける</text>
      <!-- 目的地(神社) -->
      <rect x="238" y="34" width="72" height="62" rx="3" fill="#fff" stroke="#e8c97a" stroke-width="1.5"/>
      <polygon points="274,34 238,55 310,55" fill="#e8c97a"/>
      <rect x="266" y="70" width="16" height="26" fill="#e0d0a0"/>
      <text x="274" y="58" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="9" fill="#7a5020">⛩</text>
      <text x="274" y="110" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="10" fill="#b8882a">吉方位の地</text>
      <!-- 効果説明 -->
      <rect x="342" y="22" width="220" height="144" rx="3" fill="#fff" stroke="#e0d5c0" stroke-width="1"/>
      <text x="358" y="46" font-family="Meiryo,sans-serif" font-size="12" fill="#b8882a" font-weight="bold">方位取り・祐氣取りの効果</text>
      <line x1="354" y1="52" x2="546" y2="52" stroke="#e8c97a" stroke-width="0.8"/>
      <text x="358" y="72"  font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 自分に必要な氣を受け取れる</text>
      <text x="358" y="94"  font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 縁・タイミングが味方してくれる</text>
      <text x="358" y="116" font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 努力が実りやすい流れができる</text>
      <text x="358" y="138" font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 大難を小難にすることができる</text>
      <text x="358" y="158" font-family="Meiryo,sans-serif" font-size="10" fill="#8a7a60">※ 神道と深く結びついた本来の方位取り</text>
    </svg>
  </div>

  <div class="two-col">
    <div class="card">
      <h3>
        <svg width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" stroke="#b8882a" stroke-width="1.5"/><line x1="12" y1="2" x2="12" y2="22" stroke="#b8882a" stroke-width="1.5"/><line x1="2" y1="12" x2="22" y2="12" stroke="#b8882a" stroke-width="1.5"/><polygon points="12,4 13.5,10 12,12 10.5,10" fill="#b8882a"/></svg>
        方位取りとは
      </h3>
      <p>引越しの際に吉方位を選び、その土地のエネルギーをいただくことで、自分に必要な氣を得て開運を促す方法です。</p>
    </div>
    <div class="card">
      <h3>
        <svg width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 2L14.5 9H22L16 13.5L18.5 21L12 16.5L5.5 21L8 13.5L2 9H9.5L12 2Z" stroke="#b8882a" stroke-width="1.5" fill="#fdf6e3"/></svg>
        祐氣取りとは
      </h3>
      <p>旅行や日帰り移動によって吉方位へ向かい、良い氣(祐氣)を受け取りに行く、日常からできる開運実践です。</p>
    </div>
  </div>
  <p>方位取りや祐氣取りは、単なる「移動による開運法」ではありません。土地の神様の力と深く結びついており、神道への理解がその効果を大きく左右します。この講座では、神道の視点も交えながら、本来の意味と正しい実践法をお伝えします。</p>
</div>
</div>

<hr class="divider">

<!-- 氣学の基礎 -->
<div class="section">
  <div class="label">氣学とは</div>
  <h2>九星気学の基礎知識</h2>
  <p>氣学は中国を起源とする占術で、生まれた年・月・日に割り当てられた「九星」と干支の組み合わせによって、性格・成功法則・吉凶方位などを読み解くものです。四柱推命や風水の根底にも流れる、東洋思想の重要な柱のひとつです。</p>
  <div class="stars-wrap">
    <div style="font-size:.82rem;color:var(--gold);margin-bottom:10px;letter-spacing:.1em;">▸ 九星の種類</div>
    <div class="stars-grid">
      <div class="star-item"><span class="star-num">一白</span><span class="star-name">水星</span></div>
      <div class="star-item"><span class="star-num">二黒</span><span class="star-name">土星</span></div>
      <div class="star-item"><span class="star-num">三碧</span><span class="star-name">木星</span></div>
      <div class="star-item"><span class="star-num">四緑</span><span class="star-name">木星</span></div>
      <div class="star-item"><span class="star-num">五黄</span><span class="star-name">土星</span></div>
      <div class="star-item"><span class="star-num">六白</span><span class="star-name">金星</span></div>
      <div class="star-item"><span class="star-num">七赤</span><span class="star-name">金星</span></div>
      <div class="star-item"><span class="star-num">八白</span><span class="star-name">土星</span></div>
      <div class="star-item"><span class="star-num">九紫</span><span class="star-name">火星</span></div>
    </div>
  </div>
  <p>ほとんどの方は生まれ年の九星(本命星)はご存知ですが、生まれた月や日にも九星が対応しており、それぞれがその人の性質に関わっています。自分の星と相性の良い氣を意図的に取り込むことで、開運を促し、困難を和らげることができます。</p>

  <!-- 五行イラスト -->
  <div class="illus-wrap">
    <svg width="500" height="210" viewBox="0 0 500 210" fill="none" xmlns="http://www.w3.org/2000/svg">
      <rect width="500" height="210" rx="4" fill="#fafaf7" stroke="#e0d5c0" stroke-width="1"/>
      <text x="20" y="28" font-family="Meiryo,sans-serif" font-size="12" fill="#b8882a" font-weight="bold">▸ 五行の相関(氣学の根本)</text>
      <!-- 五角形配置:木(上中) 火(右上) 土(右下) 金(左下) 水(左上) -->
      <defs><marker id="ar" markerWidth="7" markerHeight="7" refX="4" refY="3.5" orient="auto"><polygon points="0,0 7,3.5 0,7" fill="#b8882a" opacity=".7"/></marker></defs>
      <!-- 木 -->
      <circle cx="250" cy="62" r="30" fill="#e8f5e0" stroke="#4a7a4a" stroke-width="1.5"/>
      <text x="250" y="57" text-anchor="middle" font-family="serif" font-size="20">🌿</text>
      <text x="250" y="78" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="13" fill="#4a7a4a" font-weight="bold">木</text>
      <!-- 火 -->
      <circle cx="382" cy="132" r="30" fill="#fde8e0" stroke="#c04a2a" stroke-width="1.5"/>
      <text x="382" y="127" text-anchor="middle" font-family="serif" font-size="20">🔥</text>
      <text x="382" y="148" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="13" fill="#c04a2a" font-weight="bold">火</text>
      <!-- 土 -->
      <circle cx="328" cy="188" r="18" fill="#fdf0d8" stroke="#b8882a" stroke-width="1.5"/>
      <text x="328" y="194" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="13" fill="#b8882a" font-weight="bold">土</text>
      <!-- 金 -->
      <circle cx="172" cy="188" r="18" fill="#f0f0e8" stroke="#8a8a5a" stroke-width="1.5"/>
      <text x="172" y="194" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="13" fill="#8a8a5a" font-weight="bold">金</text>
      <!-- 水 -->
      <circle cx="118" cy="132" r="30" fill="#e0edf8" stroke="#2d5a7a" stroke-width="1.5"/>
      <text x="118" y="127" text-anchor="middle" font-family="serif" font-size="20">💧</text>
      <text x="118" y="148" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="13" fill="#2d5a7a" font-weight="bold">水</text>
      <!-- 相生の矢印 -->
      <path d="M268 74 Q320 78 366 116" stroke="#b8882a" stroke-width="1.5" fill="none" marker-end="url(#ar)" opacity=".7"/>
      <path d="M375 162 Q360 175 348 182" stroke="#b8882a" stroke-width="1.5" fill="none" marker-end="url(#ar)" opacity=".7"/>
      <path d="M310 192 Q250 200 190 192" stroke="#b8882a" stroke-width="1.5" fill="none" marker-end="url(#ar)" opacity=".7"/>
      <path d="M156 180 Q132 164 126 162" stroke="#b8882a" stroke-width="1.5" fill="none" marker-end="url(#ar)" opacity=".7"/>
      <path d="M120 102 Q164 66 222 62" stroke="#b8882a" stroke-width="1.5" fill="none" marker-end="url(#ar)" opacity=".7"/>
      <text x="250" y="200" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="10" fill="#8a7a60">▸ 相生(そうじょう)の流れ</text>
    </svg>
  </div>
</div>

<hr class="divider">

<!-- 日常実践 -->
<div id="practice">
<div class="section" style="background:var(--bg2);">
  <div class="label">日常実践</div>
  <h2>毎日できる<em>日盤の祐氣取り</em></h2>
  <p>大きな旅行に出かけなくても、日々の暮らしの中で少しずつ氣を積み重ねることができます。これが「開運体質」をつくる習慣です。</p>

  <!-- 地図イラスト -->
  <div class="illus-wrap">
    <svg width="540" height="170" viewBox="0 0 540 170" fill="none" xmlns="http://www.w3.org/2000/svg">
      <rect width="540" height="170" rx="4" fill="#fdf6e3" stroke="#e8c97a" stroke-width="1"/>
      <!-- 地図グリッド -->
      <g stroke="#e0d5c0" stroke-width=".8">
        <line x1="38" y1="28" x2="38" y2="148"/><line x1="74" y1="28" x2="74" y2="148"/>
        <line x1="110" y1="28" x2="110" y2="148"/><line x1="146" y1="28" x2="146" y2="148"/>
        <line x1="182" y1="28" x2="182" y2="148"/><line x1="218" y1="28" x2="218" y2="148"/>
        <line x1="18" y1="52"  x2="228" y2="52"/> <line x1="18" y1="88"  x2="228" y2="88"/>
        <line x1="18" y1="124" x2="228" y2="124"/>
      </g>
      <!-- 移動範囲円 -->
      <circle cx="110" cy="88" r="54" fill="rgba(184,136,42,.06)" stroke="#b8882a" stroke-width="1" stroke-dasharray="4 3"/>
      <!-- 自宅 -->
      <circle cx="110" cy="88" r="9" fill="#b8882a"/>
      <circle cx="110" cy="88" r="4" fill="#fff"/>
      <text x="110" y="111" text-anchor="middle" font-family="Meiryo,sans-serif" font-size="10" fill="#b8882a">自宅</text>
      <!-- 矢印(北東) -->
      <line x1="117" y1="81" x2="156" y2="48" stroke="#b8882a" stroke-width="2.2"/>
      <polygon points="156,48 144,53 149,63" fill="#b8882a"/>
      <!-- 目的地 -->
      <circle cx="160" cy="46" r="7" fill="#f0c040"/>
      <text x="170" y="36" font-family="Meiryo,sans-serif" font-size="10" fill="#7a5020">吉方位の地</text>
      <!-- 距離ラベル -->
      <text x="126" y="70" font-family="Meiryo,sans-serif" font-size="9.5" fill="#8a7a60">5〜15km</text>
      <!-- 右側説明 -->
      <rect x="248" y="18" width="274" height="134" rx="3" fill="#fff" stroke="#e0d5c0" stroke-width="1"/>
      <text x="264" y="42"  font-family="Meiryo,sans-serif" font-size="12.5" fill="#b8882a" font-weight="bold">日盤祐氣取りのポイント</text>
      <line x1="260" y1="49" x2="506" y2="49" stroke="#e8c97a" stroke-width=".8"/>
      <text x="264" y="68"  font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 自宅から直線5〜15kmを吉方位へ移動</text>
      <text x="264" y="90"  font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 毎日の通勤路は効果が薄い。少し遠出を</text>
      <text x="264" y="112" font-family="Meiryo,sans-serif" font-size="11.5" fill="#3a2e1e">▸ 効果は当日〜60日以内に発動</text>
      <text x="264" y="134" font-family="Meiryo,sans-serif" font-size="11" fill="#8a7a60">月盤・年盤も取れると、さらに強い氣を得られます</text>
    </svg>
  </div>

  <div class="steps">
    <div class="step"><div class="step-num">1</div><div class="step-body"><h4>自分の九星を確認する</h4><p>本命星(生まれ年)・月命星・日命星の3つを把握することが、氣学実践の第一歩です。講座内でご自身の星を正確に確認する方法をお伝えします。</p></div></div>
    <div class="step"><div class="step-num">2</div><div class="step-body"><h4>その日の吉方位を調べる</h4><p>今日の九星の配置(日盤)から、自分にとっての吉方位を読み解きます。方位は日によって変わるため、継続的に確認することが大切です。</p></div></div>
    <div class="step"><div class="step-num">3</div><div class="step-body"><h4>吉方位へ5〜15km移動する</h4><p>自宅から直線距離で5〜15kmほど、吉方位の方角へ移動します。毎日の通勤路と重なる場合は、少し遠出するのが効果的です。</p></div></div>
    <div class="step"><div class="step-num">4</div><div class="step-body"><h4>変化を観察する</h4><p>祐氣の効果は当日〜60日以内に、良いことが起こる・悪いことが減るという形で現れてきます。月盤・年盤の吉方位も取れると、さらに強い氣を得ることができます。</p></div></div>
  </div>
</div>
</div>

<hr class="divider">

<!-- 講座 -->
<div id="courses" class="courses-bg">
<div class="section-wide">
<div class="section-inner">
  <div class="label">講座案内</div>
  <h2>講座のご案内</h2>
  <p>対面・Zoom・通信教育(メール)の3形式に対応しています。ご自身のペースやライフスタイルに合わせてお選びいただけます。</p>

  <!-- 講座1 -->
  <div class="course-card">
    <div class="course-header">
      <div>
        <span class="course-no">Course 01</span>
        <div class="course-title-main">氣学講座1</div>
        <div class="course-subtitle">風水基礎と祐氣取り ― 吉方位・凶方位を自分で読み解き、開運旅行と引越しを完全マスター</div>
      </div>
      <div class="price-block">
        <span class="price-label">対面 / Zoom</span>
        <div><span class="price-main">33,000</span><span class="price-unit">円(税込)</span></div>
        <div class="price-sub">通信教育(メール)<br><strong>16,500円(税込)</strong></div>
      </div>
    </div>
    <div class="course-body">
      <div>
        <p>市販書籍とオリジナルテキストを使いながら、氣学の基礎から実践まで1日で学べる講座です。「なぜ凶方位を犯すと不運を招くのか」という本質的な問いにも、神道の観点からしっかりとお答えします。</p>
        <ul class="course-highlights">
          <li>氣学の基礎と九星の性質</li>
          <li>五行のはたらき</li>
          <li>吉方位・凶方位の種類と見極め方</li>
          <li>方位の効果範囲と時間の関係</li>
          <li>氣をしっかり受け取るためのコツ</li>
          <li>凶方位を犯した場合の対処法</li>
          <li>効果が出る時期の目安</li>
          <li>神道と方位の深い関係</li>
        </ul>
        <div class="time-box"><strong>受講時間:</strong>10:00 〜 18:00</div>
      </div>
      <div class="course-illus">
        <svg width="210" height="230" viewBox="0 0 210 230" fill="none" xmlns="http://www.w3.org/2000/svg">
          <circle cx="105" cy="88" r="70" fill="#fdf6e3" stroke="#e8c97a" stroke-width="1.5"/>
          <circle cx="105" cy="88" r="50" fill="none" stroke="#e8c97a" stroke-width="1" stroke-dasharray="3 3"/>
          <circle cx="105" cy="88" r="28" fill="#fff" stroke="#e0d5c0" stroke-width="1"/>
          <line x1="105" y1="18" x2="105" y2="158" stroke="#e8c97a" stroke-width="1"/>
          <line x1="35" y1="88" x2="175" y2="88" stroke="#e8c97a" stroke-width="1"/>
          <line x1="56" y1="39" x2="154" y2="137" stroke="#ecddb0" stroke-width=".7" stroke-dasharray="2 4"/>
          <line x1="154" y1="39" x2="56" y2="137" stroke="#ecddb0" stroke-width=".7" stroke-dasharray="2 4"/>
          <text x="105" y="22" text-anchor="middle" font-family="Meiryo" font-size="11" font-weight="bold" fill="#b8882a">北</text>
          <text x="105" y="165" text-anchor="middle" font-family="Meiryo" font-size="11" font-weight="bold" fill="#b8882a">南</text>
          <text x="26" y="93" text-anchor="middle" font-family="Meiryo" font-size="11" font-weight="bold" fill="#b8882a">西</text>
          <text x="184" y="93" text-anchor="middle" font-family="Meiryo" font-size="11" font-weight="bold" fill="#b8882a">東</text>
          <!-- 吉方位マーク -->
          <circle cx="148" cy="50" r="12" fill="#f0c040" opacity=".85"/>
          <text x="148" y="54" text-anchor="middle" font-family="Meiryo" font-size="11" fill="#7a5020" font-weight="bold">吉</text>
          <!-- 凶方位マーク -->
          <circle cx="62" cy="126" r="12" fill="#e8d0c0" opacity=".85"/>
          <text x="62" y="130" text-anchor="middle" font-family="Meiryo" font-size="11" fill="#8a4020" font-weight="bold">凶</text>
          <line x1="107" y1="86" x2="140" y2="58" stroke="#b8882a" stroke-width="2"/>
          <polygon points="140,58 130,63 136,71" fill="#b8882a"/>
          <circle cx="105" cy="88" r="7" fill="#b8882a"/>
          <circle cx="105" cy="88" r="3" fill="#fff"/>
          <text x="105" y="198" text-anchor="middle" font-family="Meiryo" font-size="10" fill="#8a7a60">方位盤の見方から実践まで</text>
          <rect x="28" y="168" width="154" height="14" rx="2" fill="#e0d5c0"/>
          <rect x="32" y="155" width="146" height="17" rx="2" fill="#c8b898"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- 講座2 -->
  <div class="course-card">
    <div class="course-header">
      <div>
        <span class="course-no">Course 02</span>
        <div class="course-title-main">氣学講座2</div>
        <div class="course-subtitle">時期の選び方 ― 行動の「タイミング」を制する者が、開運を制する</div>
      </div>
      <div class="price-block">
        <span class="price-label">対面 / Zoom</span>
        <div><span class="price-main">22,000</span><span class="price-unit">円(税込)</span></div>
        <div class="price-sub">通信教育(メール)<br><strong>11,000円(税込)</strong></div>
      </div>
    </div>
    <div class="course-body">
      <div>
        <p>完全オリジナルテキストを使い、「いつ動くか」を決定する法則を学びます。財布を使い始める日、ブログを開設する日、お店をオープンする日……行動のタイミングひとつで、その後の流れが大きく変わります。ネットでは語られていない奥義まで、じっくりお伝えします。</p>
        <ul class="course-highlights">
          <li>タイミング決定の法則</li>
          <li>方位の発生しない日取りの選び方</li>
          <li>吉方位効果が最大化される組み合わせ</li>
          <li>良い時期・悪い時期の見極め方</li>
          <li>吉方位取りの結果が出る時期の読み方</li>
          <li>演習問題(実践形式)</li>
        </ul>
        <div class="time-box"><strong>受講時間:</strong>10:00 〜 16:00</div>
      </div>
      <div class="course-illus">
        <svg width="210" height="230" viewBox="0 0 210 230" fill="none" xmlns="http://www.w3.org/2000/svg">
          <rect x="22" y="22" width="166" height="152" rx="4" fill="#fff" stroke="#e0d5c0" stroke-width="1.5"/>
          <rect x="22" y="22" width="166" height="38" rx="4" fill="#2a2318"/>
          <text x="105" y="47" text-anchor="middle" font-family="Meiryo" font-size="13" fill="#f0c040" font-weight="bold">◎ 吉日を選ぶ</text>
          <circle cx="68" cy="22" r="6" fill="#e0d5c0" stroke="#b8882a" stroke-width="1.5"/>
          <circle cx="142" cy="22" r="6" fill="#e0d5c0" stroke="#b8882a" stroke-width="1.5"/>
          <!-- 曜日 -->
          <text x="42"  y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#8a7a60">日</text>
          <text x="66"  y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">月</text>
          <text x="90"  y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">火</text>
          <text x="114" y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">水</text>
          <text x="138" y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">木</text>
          <text x="162" y="80" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">金</text>
          <line x1="28" y1="86" x2="182" y2="86" stroke="#e0d5c0" stroke-width=".8"/>
          <!-- 1行目 -->
          <text x="42"  y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#8a7a60">1</text>
          <text x="66"  y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">2</text>
          <text x="90"  y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">3</text>
          <text x="114" y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">4</text>
          <text x="138" y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">5</text>
          <circle cx="162" cy="100" r="11" fill="#f0c040" opacity=".85"/>
          <text x="162" y="104" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#7a5020" font-weight="bold">6</text>
          <!-- 2行目 -->
          <text x="42"  y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#8a7a60">7</text>
          <text x="66"  y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">8</text>
          <text x="90"  y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">9</text>
          <text x="114" y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">10</text>
          <circle cx="138" cy="122" r="11" fill="#b8882a" opacity=".9"/>
          <text x="138" y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#fff" font-weight="bold">11</text>
          <text x="162" y="126" text-anchor="middle" font-family="Meiryo" font-size="10.5" fill="#3a2e1e">12</text>
          <!-- 凡例 -->
          <circle cx="38" cy="156" r="8" fill="#f0c040"/>
          <text x="50" y="160" font-family="Meiryo" font-size="9.5" fill="#7a5020">最吉日</text>
          <circle cx="100" cy="156" r="8" fill="#b8882a"/>
          <text x="112" y="160" font-family="Meiryo" font-size="9.5" fill="#7a5020">吉日</text>
          <text x="105" y="210" text-anchor="middle" font-family="Meiryo" font-size="10" fill="#8a7a60">日取り選定の法則を習得</text>
        </svg>
      </div>
    </div>
  </div>

  <div class="note-box">
    ◎ 対面講座は3名以上でお申し込みいただくと、おひとり様 <strong>22,000円(税込)</strong> にてご受講いただけます。ご友人やご家族とのお申し込みもお気軽にどうぞ。
  </div>
</div>
</div>
</div>

<hr class="divider">

<!-- セッション -->
<div id="session">
<div class="section">
  <div class="label">個別セッション</div>
  <h2>氣学セッション</h2>
  <p>「今すぐ吉方位を知りたい」「引越しの時期と方角だけ確認したい」という方向けの個別相談です。事前にご生年月日や相談内容をメールにてお知らせください。</p>
  <div class="session-card">
    <div class="session-body">
      <h3>個別セッション(Zoom)</h3>
      <p>ご自身の本命星・月命星・日命星をもとに、今のあなたに必要な方位や時期を個別にお伝えします。</p>
      <p style="margin-top:12px;font-size:.88rem;color:var(--text-light);">※ セッションを受けるほど興味が深まった方には、ご自身でいつでも吉方位を読み解けるようになる「氣学講座」の受講もおすすめしています。知識が身につくと、ご家族や大切な方にも活かせます。</p>
    </div>
    <div class="session-price-box">
      <span class="price-label" style="color:var(--gold-light);">25分</span>
      <div><span class="price-main" style="color:var(--gold-light);font-size:1.8rem;">4,400</span><span class="price-unit" style="color:#c8b898;">円(税込)</span></div>
    </div>
  </div>
</div>
</div>

<hr class="divider">

<!-- CTA -->
<div id="contact" class="cta-section">
<div class="cta-inner">
  <div class="label">お申し込み</div>
  <h2>氣の流れを整えることが、<br><em>人生を変える最初の一歩</em>です</h2>
  <p>お申し込み・お問い合わせは、メールにてお気軽にどうぞ。希望の受講形式(対面 / Zoom / 通信教育)とご希望日程をお知らせください。</p>
  <a href="mailto:netshop@sakura-lav.com" class="btn">気学:メールでお申し込み・お問い合わせ</a>
</div>
</div>

<footer>
  <p>開運氣学講座 ― 方位の力で人生を拓く ―</p>
</footer>

</body>
</html>