top
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>感謝呼吸ラボラトリ|現実の創造主になるための意識OSアップグレード</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="努力と消耗の人生(登場人物)から、抵抗のない創造の人生(映画監督/創造主)へシフトするための感謝呼吸メソッド。無料5日間メール講座配信中。" />
<style>
:root {
--bg: #050712;
--bg-alt: #0d1020;
--accent: #f6c453;
--accent-soft: rgba(246,196,83,0.12);
--text: #f7f7fb;
--text-muted: #a7a7c5;
--border: #23233a;
--max-width: 1080px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "YuGothic", "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
background: radial-gradient(circle at top, #222848 0, #050712 50%, #02030a 100%);
color: var(--text);
line-height: 1.7;
scroll-behavior: smooth;
}
a {
color: inherit;
text-decoration: none;
}
header {
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(18px);
background: linear-gradient(to bottom, rgba(5,7,18,0.9), rgba(5,7,18,0.6));
border-bottom: 1px solid var(--border);
}
.nav {
max-width: var(--max-width);
margin: 0 auto;
padding: 12px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: nowrap;
}
.nav__brand {
display: flex;
flex-direction: column;
gap: 2px;
}
.nav__title {
font-size: 14px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text-muted);
}
.nav__subtitle {
font-size: 13px;
color: var(--text-muted);
opacity: 0.85;
}
.nav__menu {
display: flex;
gap: 18px;
align-items: center;
font-size: 13px;
}
.nav__menu a.nav-link {
padding: 4px 0;
position: relative;
color: var(--text-muted);
}
.nav__menu a.nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height: 1px;
background: var(--accent);
transition: width 0.18s ease-out;
}
.nav__menu a.nav-link:hover::after {
width: 100%;
}
.nav__button {
padding: 6px 14px;
border-radius: 999px;
border: 1px solid var(--accent);
font-size: 12px;
background: radial-gradient(circle at top left, rgba(246,196,83,0.25), rgba(5,7,18,0.9));
color: #000;
background-color: var(--accent);
cursor: pointer;
white-space: nowrap;
display: inline-flex;
align-items: center;
justify-content: center;
}
main {
max-width: var(--max-width);
margin: 0 auto;
padding: 40px 20px 80px;
}
section {
padding: 48px 0;
border-bottom: 1px solid rgba(255,255,255,0.03);
}
.hero {
min-height: calc(100vh - 70px);
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
gap: 32px;
align-items: center;
}
.hero__eyebrow {
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 16px;
}
.hero__title {
font-size: clamp(26px, 3vw + 12px, 36px);
line-height: 1.4;
margin-bottom: 18px;
}
.hero__highlight {
color: var(--accent);
}
.hero__lead {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 24px;
}
.hero__cta {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-bottom: 18px;
}
.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 999px;
padding: 10px 22px;
background: linear-gradient(135deg, var(--accent), #ffe7a1);
border: none;
color: #241b03;
font-size: 14px;
font-weight: 500;
cursor: pointer;
box-shadow: 0 10px 35px rgba(0,0,0,0.6);
}
.btn-outline {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 999px;
padding: 9px 18px;
border: 1px solid var(--border);
background: rgba(5,7,18,0.7);
color: var(--text-muted);
font-size: 13px;
cursor: pointer;
}
.hero__note {
font-size: 12px;
color: var(--text-muted);
}
.hero__panel {
border-radius: 20px;
border: 1px solid var(--border);
padding: 18px 18px 16px;
background: radial-gradient(circle at top, rgba(246,196,83,0.15), rgba(7,9,20,0.9));
box-shadow: 0 18px 50px rgba(0,0,0,0.7);
}
.hero__panel-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--text-muted);
margin-bottom: 10px;
}
.hero__panel-main {
font-size: 13px;
margin-bottom: 10px;
}
.hero__panel-main strong {
color: var(--accent);
}
.hero__panel-list {
list-style: none;
font-size: 12px;
color: var(--text-muted);
display: grid;
gap: 4px;
margin-top: 6px;
}
.hero__panel-list li::before {
content: "●";
font-size: 7px;
display: inline-block;
margin-right: 6px;
color: var(--accent);
}
.section-label {
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 10px;
}
.section-title {
font-size: 22px;
margin-bottom: 14px;
}
.section-title span {
color: var(--accent);
}
.section-lead {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 20px;
}
.two-column {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
gap: 28px;
align-items: flex-start;
}
.card {
border-radius: 16px;
border: 1px solid var(--border);
padding: 16px 18px;
background: rgba(5,7,18,0.85);
}
.card--soft {
background: var(--bg-alt);
}
.card-title {
font-size: 15px;
margin-bottom: 6px;
}
.card-subtitle {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 10px;
}
.list-bullet {
margin-left: 1em;
padding-left: 0.2em;
font-size: 13px;
color: var(--text-muted);
}
.list-bullet li {
margin-bottom: 4px;
}
.pill-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.pill {
border-radius: 999px;
border: 1px solid var(--border);
padding: 4px 10px;
font-size: 11px;
color: var(--text-muted);
background: rgba(10,12,30,0.8);
}
.quote {
font-size: 13px;
color: var(--text-muted);
border-left: 2px solid var(--accent);
padding-left: 12px;
margin: 10px 0;
}
.quote em {
font-style: normal;
opacity: 0.9;
}
.story-list {
display: grid;
gap: 12px;
font-size: 13px;
color: var(--text-muted);
}
.story-item-title {
font-weight: 500;
color: var(--text);
margin-bottom: 2px;
}
.cta-block {
border-radius: 20px;
border: 1px solid var(--accent-soft);
padding: 22px 18px 20px;
background: radial-gradient(circle at top left, rgba(246,196,83,0.14), rgba(5,7,18,0.9));
text-align: left;
}
.cta-title {
font-size: 18px;
margin-bottom: 8px;
}
.cta-sub {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 14px;
}
.cta-steps {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 16px;
}
.cta-steps li {
margin-left: 1em;
margin-bottom: 4px;
}
footer {
border-top: 1px solid var(--border);
padding: 18px 20px 28px;
font-size: 11px;
color: var(--text-muted);
text-align: center;
background: rgba(3,4,10,0.9);
}
@media (max-width: 860px) {
.hero {
grid-template-columns: minmax(0, 1fr);
padding-top: 20px;
}
.hero__panel {
order: -1;
}
.two-column {
grid-template-columns: minmax(0, 1fr);
}
}
@media (max-width: 720px) {
.nav {
flex-wrap: wrap;
}
.nav__menu {
flex-wrap: wrap;
justify-content: flex-end;
gap: 12px;
margin-top: 6px;
font-size: 12px;
}
main {
padding-top: 28px;
}
section {
padding: 40px 0;
}
.cta-block {
text-align: left;
}
}
</style>
</head>
<body>
<header>
<div class="nav">
<div class="nav__brand">
<div class="nav__title">Gratitude Breathing Lab</div>
<div class="nav__subtitle">The Shift ─ 登場人物から創造主へ</div>
</div>
<nav class="nav__menu">
<a href="#hero" class="nav-link">HOME</a>
<a href="#philosophy" class="nav-link">PHILOSOPHY</a>
<a href="#method" class="nav-link">THE METHOD</a>
<a href="#future" class="nav-link">FUTURE & VISION</a>
<a href="#stories" class="nav-link">STORIES</a>
<a href="#program" class="nav-link">PROGRAM</a>
<a href="#lead" class="nav-link">無料講座</a>
<!-- ヘッダーCTA:リンク化 -->
<a class="nav__button" href="https://kansyakokyu.com/entry.html">
無料5日間講座に登録
</a>
</nav>
</div>
</header>
<main>
<!-- HERO -->
<section id="hero" class="hero">
<div>
<div class="hero__eyebrow">THE SHIFT ─ 意識のOSアップグレード</div>
<!-- ★ ここが新しく追加した「導きの一文」 -->
<p style="font-size:13px; color: var(--text-muted); margin-bottom:18px;">
ここに来たことにも、きっと意味があります。<br>
呼吸が静かになると、人は必要な場所へ導かれるからです。
</p>
<h1 class="hero__title">
もう、誰かの脚本通りに生きる<br />
「登場人物」は終わりだ。<br />
今日からあなたが、この人生の<br />
<span class="hero__highlight">現実の創造主(映画監督)</span>になる。
</h1>
<p class="hero__lead">
努力しても満たされず、頑張っても現実が動かない。<br />
その違和感の正体は、あなたの「やり方」ではなく、<br />
<strong>どの立場から現実を動かそうとしているか</strong>にあります。<br />
ここから始まるのは、登場人物としての人生から降り、<br />
<strong>映画監督として創造する人生へシフトするプロセス</strong>です。
</p>
<div class="hero__cta">
<button class="btn-primary" onclick="document.getElementById('lead').scrollIntoView({behavior:'smooth'})">
無料5日間メール講座に登録する
</button>
<button class="btn-outline" onclick="document.getElementById('method').scrollIntoView({behavior:'smooth'})">
メソッドの全体像を見る
</button>
</div>
<p class="hero__note">
※ 登録はいつでも解除できます。セールスだけのメールは送りません。
</p>
</div>
<aside class="hero__panel" aria-label="現実の創造主へのシフトの概要">
<div class="hero__panel-title">FROM CHARACTER TO CREATOR</div>
<div class="hero__panel-main">
感謝呼吸は、<strong>努力と消耗のループ</strong>から抜け出し、<br />
宇宙の知性と直結して「<strong>抵抗のない最高の現実</strong>」を創造するための、<br />
<strong>意識のOSアップグレードシステム</strong>です。
</div>
<ul class="hero__panel-list">
<li>内部意図(焦り・不安)を静める</li>
<li>外部意図(宇宙の巨大な流れ)を起動する</li>
<li>ゼロポイントで「叶う側の人生」に入る</li>
</ul>
</aside>
</section>
<!-- PHILOSOPHY -->
<section id="philosophy">
<div class="section-label">PHILOSOPHY</div>
<h2 class="section-title">なぜ、頑張れば頑張るほど<br />願いは遠ざかっていくのか?</h2>
<p class="section-lead">
やればやるほどうまくいかない。頑張るほど疲れる。<br />
夢に向かっているはずなのに、むしろ消耗していく。<br />
多くの人が苦しんでいるその原因は、<strong>努力の量</strong>でも、<strong>才能の有無</strong>でもありません。
</p>
<div class="two-column">
<div class="card card--soft">
<h3 class="card-title">内部意図 ─ 小さな自我が押し出す力</h3>
<p class="card-subtitle">
焦り・不安・欠乏感から現実を動かそうとすると、<br />
目に見えない「抵抗」が必ず生まれます。
</p>
<ul class="list-bullet">
<li>焦りで動く</li>
<li>不安で決める</li>
<li>足りないから求める</li>
<li>「叶っていない自分」から未来をつかみに行く</li>
</ul>
<p class="section-lead" style="margin-top:10px;">
これらはすべて、<strong>内部意図</strong>の表現です。<br />
内部意図が強くなるほど、現実は「押し返す力」を生み、<br />
あなたの努力は、自分をすり減らす方向に働いてしまいます。
</p>
</div>
<div class="card">
<h3 class="card-title">外部意図 ─ 宇宙の巨大な流れを使う力</h3>
<p class="card-subtitle">
いっぽうで、感謝・調和・手放しから動くとき、<br />
あなたの意識は「外部意図」とつながり始めます。
</p>
<ul class="list-bullet">
<li>「すでに満ちている」という感覚から選ぶ</li>
<li>結果にしがみつかず、プロセスを信頼する</li>
<li>自分だけで頑張ろうとしない</li>
<li>「自然とそうなる」流れの中に身を置く</li>
</ul>
<p class="section-lead" style="margin-top:10px;">
外部意図の領域では、<br />
あなたが無理に何かをつかみ取りに行くのではなく、<br />
<strong>結果のほうから、あなたに近づいてきます。</strong>
</p>
</div>
</div>
<p class="section-lead" style="margin-top:18px;">
感謝呼吸とは、<strong>内部意図を静止し、外部意図を起動するための精密なチューニング装置</strong>です。<br />
頑張り方を変えるのではなく、<strong>「どの立場から生きるか」を根本から変える技術</strong>だと言えます。
</p>
</section>
<!-- METHOD -->
<section id="method">
<div class="section-label">THE METHOD</div>
<h2 class="section-title">三位一体の絶対構造<br /><span>基礎呼吸 × 想像力 × 感謝息</span></h2>
<p class="section-lead">
創造主として生きるためには、<br />
「知識」「マインドセット」「スピリチュアル体験」のどれか一つでは足りません。<br />
感謝呼吸は、<strong>3つのモジュールがそろって初めて機能する“絶対構造”</strong>として設計されています。
</p>
<div class="two-column">
<div class="card card--soft">
<h3 class="card-title">① 基礎呼吸 ─ 抵抗の排除(ゼロポイント・アンカー)</h3>
<p class="card-subtitle">
どんなノイズの中でも、一瞬で意識を静寂に戻すための土台となる呼吸です。
</p>
<p class="section-lead">
感情が揺れたとき、情報に飲み込まれそうなとき、<br />
あなたを「ゼロポイント」に引き戻すアンカー。<br />
ここが整っていないと、人生はすぐに「登場人物」の視点へ戻ってしまいます。
</p>
</div>
<div class="card">
<h3 class="card-title">② 想像力 ─ 映画監督として“未来を選ぶ”</h3>
<p class="card-subtitle">
感情に流されず、「最高の結末(スライド)」を冷静に選び取るための技術です。
</p>
<p class="section-lead">
目の前の出来事に反応するのではなく、<br />
監督として「どんな世界を撮るのか?」を先に決める。<br />
その視点に立ったとき、現実ははじめて「編集可能」になります。
</p>
</div>
</div>
<div class="two-column" style="margin-top:20px;">
<div class="card card--soft">
<h3 class="card-title">③ 感謝息 ─ 叶った後の波動を今に持ってくる</h3>
<p class="card-subtitle">
願望実現とは、「叶っている周波数」に同調すること。<br />
感謝息は、そのための物理的な“波動発信装置”です。
</p>
<p class="section-lead">
まだ結果が出ていない現実の中で、<br />
「すでに叶っている」充足を、呼吸を通して身体に流し込む。<br />
そのとき、外部意図は静かに、しかし確実に動き始めます。
</p>
</div>
<div class="card">
<h3 class="card-title">+ 核睡眠法 ─ 無意識の掌握(人生の1/3を味方にする)</h3>
<p class="card-subtitle">
睡眠は、ただの休息時間ではありません。<br />
「現実を書き換える編集タイム」です。
</p>
<p class="section-lead">
核睡眠法では、寝入り・目覚め・睡眠中の意識の使い方を最適化し、<br />
無意識レベルでの自己編集を進めていきます。<br />
ここが変わると、<strong>朝の一呼吸で、その日全体のタイムラインが変わる</strong>ことを体感するでしょう。
</p>
</div>
</div>
<div class="pill-row">
<div class="pill">ゼロポイント</div>
<div class="pill">外部意図の起動</div>
<div class="pill">現実の編集</div>
<div class="pill">一体性の体感</div>
</div>
</section>
<!-- FUTURE & VISION -->
<section id="future">
<div class="section-label">FUTURE & VISION</div>
<h2 class="section-title">AI時代と150歳の肉体<br />意識が、肉体の設計図になる。</h2>
<p class="section-lead">
AIが加速させる情報と不安の渦。<br />
いま、地球上のあらゆる「振り子」が、これまでにない速度で揺れています。<br />
その中で流されず、飲み込まれず、むしろ流れを味方にして生きるために、<br />
<strong>意識の最新OSとしての「ゼロポイント」が必須</strong>の時代に入りました。
</p>
<div class="two-column">
<div class="card card--soft">
<h3 class="card-title">AI時代の「最終防壁」は、あなたの在り方。</h3>
<p class="section-lead">
情報量・選択肢・スピードは、これからも増え続けます。<br />
そのとき「何を信じるか」「何を選ぶか」を決めるのは、<br />
結局のところあなたの<strong>在り方(周波数)</strong>です。
</p>
<p class="section-lead">
感謝呼吸は、<br />
どれだけ外側のテクノロジーが進化しても奪われない、<br />
<strong>あなた自身の“内なるテクノロジー”</strong>を育てるためのメソッドです。
</p>
</div>
<div class="card">
<h3 class="card-title">150歳ビジョン ─ からだと時間感覚の再設計</h3>
<p class="section-lead">
ゼロポイント状態は、ストレスホルモンを抑え、<br />
自律神経と免疫を整え、細胞レベル(テロメア)での老化速度にも影響を与えます。<br />
それは大げさな奇跡ではなく、<br />
科学的にも少しずつ明らかになってきた「意識とからだの関係」です。
</p>
<p class="section-lead">
「150歳まで生きること」そのものが目的ではありません。<br />
<strong>いつ終わってもいいくらい満ちていて、<br />
しかし、まだまだ創造し続けたいと思える身体と時間感覚</strong>を取り戻すこと。<br />
それが、このプログラムが見ている未来です。
</p>
</div>
</div>
</section>
<!-- STORIES -->
<section id="stories">
<div class="section-label">STORIES</div>
<h2 class="section-title">論理を超えた証明<br />「在り方」が変わるとき、現実は静かに動き出す。</h2>
<p class="section-lead">
感謝呼吸の変化は、「結果」だけを見ると小さく見えるかもしれません。<br />
しかし、その内側で起きているのは、<strong>現実の見え方そのもののシフト</strong>です。
</p>
<div class="two-column">
<div class="card card--soft">
<h3 class="card-title">200円の宝くじが教えてくれた、ゼロポイント訓練。</h3>
<p class="quote">
<em>「宝くじ200円が当たらなくても、まったく平気な自分になった瞬間、<br />
現実の風向きが全部変わりました。」</em>
</p>
<p class="section-lead">
重要なのは「当たったかどうか」ではありません。<br />
「当たっても当たらなくても、自分の価値は何も変わらない」という、<br />
<strong>執着ゼロの状態</strong>が周波数を変えたのです。
</p>
</div>
<div class="card">
<h3 class="card-title">実践者たちの変容 ─ 何を得たかより「どう変わったか」</h3>
<div class="story-list">
<div>
<div class="story-item-title">● 不安が9割減り、毎朝の目覚めが変わった人</div>
<p>
「目覚めた瞬間の一呼吸で、その日の流れが決まる」ことを体感し、<br />
仕事の忙しさは変わらないのに、心の余白だけがどんどん増えていったケース。
</p>
</div>
<div>
<div class="story-item-title">● 経済的豊かさが「自然と」流れ込み始めた人</div>
<p>
必死に追いかけていた売上目標を手放した途端、<br />
自分でも驚くほどスムーズに依頼が舞い込み始めたケース。
</p>
</div>
<div>
<div class="story-item-title">● 指導者として「光の波紋」を広げるようになった人</div>
<p>
自分の変容だけでなく、周囲の人の呼吸と在り方まで変わっていく。<br />
そのプロセス自体が「最高の報酬」になっていったケース。
</p>
</div>
</div>
</div>
</div>
<p class="section-lead" style="margin-top:18px;">
現実が変わり始める前に、先に変わるのは「自分の位置」です。<br />
感謝呼吸は、その位置を「登場人物」から「創造主」へと静かに、しかし確実に移していきます。
</p>
</section>
<!-- PROGRAM & CTA to lead magnet -->
<section id="program">
<div class="section-label">PROGRAM</div>
<h2 class="section-title">選ばれた者のための「撮影機材」<br />本気で、創造主として生きる人へ。</h2>
<p class="section-lead">
ここまで読んで、ただ「いい話だな」と思うだけで終わる人もいます。<br />
一方で、「ここから先の人生を、本気で変えていきたい」と静かに決める人もいます。<br />
感謝呼吸のプログラムは、後者の方のために設計されています。
</p>
<div class="card card--soft">
<h3 class="card-title">プログラム全体像</h3>
<p class="section-lead">
詳細は専用ページでご案内していますが、構造としては以下のような段階があります。
</p>
<ul class="list-bullet">
<li>基礎プログラム:ゼロポイントと基礎呼吸を日常に根づかせる</li>
<li>マスタープログラム:想像力と感謝息で現実編集を加速させる</li>
<li>指導者プログラム:自分を超えて、光の波紋を広げていく</li>
</ul>
<p class="section-lead" style="margin-top:10px;">
詳しい内容・期間・費用などは、<br />
<strong>「本気で創造主として生きる覚悟ができた方」にのみ、個別にご案内</strong>しています。
</p>
</div>
<p class="section-lead" style="margin-top:18px;">
その前に、まずは<br />
「登場人物の視点を手放す5日間」から始めてみてください。<br />
無料で受け取れるメール講座が、最初の扉になります。
</p>
</section>
<!-- LEAD MAGNET -->
<section id="lead">
<div class="section-label">FREE LESSON</div>
<div class="cta-block">
<h2 class="cta-title">まずは5日間、<br />「登場人物」から降りる体験を。</h2>
<p class="cta-sub">
無料で受け取れる「5日間メール講座」では、<br />
あなたの意識OSが静かに書き換わり始めるプロセスを、<br />
1日ずつ、小さなステップでガイドしていきます。
</p>
<ul class="cta-steps">
<li>1日目:登場人物と映画監督の違い</li>
<li>2日目:内部意図と外部意図</li>
<li>3日目:基礎呼吸とゼロポイント</li>
<li>4日目:映画監督の想像力</li>
<li>5日目:感謝息で未来の周波数へ同調する</li>
</ul>
<!-- 登録リンク:aタグ -->
<a class="btn-primary" href="https://kansyakokyu.com/entry.html">
無料5日間メール講座に登録する
</a>
<p class="hero__note" style="margin-top:8px;">
※ 登録後すぐに、1通目のメールが届きます。いつでもワンクリックで解除できます。
</p>
</div>
</section>
</main>
<footer>
<h3 style="
font-size: 15px;
font-weight: 600;
margin-bottom: 14px;
color: var(--text-muted);
line-height: 1.6;
">
感謝とは、感情ではなく意識の周波数。<br>
ひとりの呼吸が静まり本来の周波数へ帰るたび、<br>
人と地球の未来線は静かに刷新されていく。
</h3>
© 感謝呼吸ラボラトリ / Gratitude Breathing Laboratory. All rights reserved.
</footer>
</body>
</html>