@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    color: #333;
}

/* 段落の基本スタイル */
p {
    text-align: left;
}

#container {
    text-align: center;
    width: 750px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* ヘッダーセクション */
.header-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 0;
    color: white;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

.header-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
}

.header-subtitle {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.header-text {
    font-size: 20px;
    margin-bottom: 40px;
}

/* セクションスタイル */
.section {
    padding: 60px 40px;
    background-color: #f8f8f8;
}

.section-white {
    padding: 60px 40px;
    background-color: #ffffff;
}

/* 見出しスタイル */
h2 {
    font-size: 38px;
    color: #1e40af;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.4;
}

h3 {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 25px;
    font-weight: bold;
}

/* プロフィールセクション */
.profile-section {
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 40px;
    gap: 30px;
    background: #f0f9ff;
    padding: 30px;
    border-radius: 15px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3b82f6;
}

.profile-content {
    flex: 1;
    text-align: left;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.profile-achievements {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
}

.profile-achievements li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.profile-achievements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* 問題提起セクション */
.problem-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 2;
}

.problem-list li {
    list-style: none;
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
}

.problem-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 28px;
}

/* 共感セクション */
.empathy-section {
    background-color: #fef3c7;
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 650px;
}

.empathy-title {
    font-size: 32px;
    color: #92400e;
    margin-bottom: 30px;
    font-weight: bold;
}

.empathy-content {
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

.empathy-list {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.empathy-list p {
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

/* ミッションセクション */
.mission-number {
    font-size: 64px;
    color: #ef4444;
    font-weight: bold;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* 約束セクション */
.promise-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 600px;
}

.promise-item {
    margin: 25px 0;
    text-align: left;
}

.promise-number {
    font-size: 48px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.promise-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 真の原因セクション */
.truth-section {
    background: #fee2e2;
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 650px;
}

.truth-title {
    font-size: 32px;
    color: #991b1b;
    margin-bottom: 30px;
}

/* 比較表 */
.comparison-table {
    display: flex;
    gap: 20px;
    max-width: 650px;
    margin: 30px auto;
}

.comparison-column {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.comparison-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-column.bad {
    border-top: 5px solid #ef4444;
}

.comparison-column.good {
    border-top: 5px solid #10b981;
}

/* お客様の声 */
.voice-box {
    background-color: white;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.voice-header {
    font-size: 24px;
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.voice-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.voice-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* マインド教育セクション */
.mind-section {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    padding: 60px 40px;
    margin: 40px 0;
}

.mind-title {
    font-size: 36px;
    color: #5b21b6;
    margin-bottom: 30px;
    font-weight: bold;
}

.imagine-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
}

.imagine-title {
    font-size: 28px;
    color: #5b21b6;
    margin-bottom: 20px;
}

.imagine-list {
    text-align: left;
    font-size: 20px;
    line-height: 2;
}

.imagine-list li {
    list-style: none;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.imagine-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 24px;
}

/* CTA セクション */
.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 60px 40px;
    color: white;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
}

.cta-subtitle {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 40px;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
}

.cta-list {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-list li {
    margin: 15px 0;
}

.condition-text {
    font-size: 16px;
    margin-top: 30px;
    opacity: 0.9;
}

/* メールフォーム */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 500px;
}

.inputText {
    box-sizing: border-box;
    text-align: center;
    height: 60px;
    width: 100%;
    font-size: 20px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 20px;
}

.formBtn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    width: 100%;
}

.formBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* 限定バッジ */
.limited-badge {
    background-color: #ef4444;
    color: white;
    padding: 10px 30px;
    display: inline-block;
    margin: 20px 0;
    font-size: 18px;
    border-radius: 30px;
    font-weight: bold;
}

/* 強調テキスト */
.highlight {
    background: linear-gradient(transparent 60%, #fef08a 60%);
    font-weight: bold;
    padding: 0 5px;
}

.red-text {
    color: #ef4444;
    font-weight: bold;
}

.blue-text {
    color: #3b82f6;
    font-weight: bold;
}

/* フッター */
.footer-links {
    text-align: center;
    margin: 30px auto;
    padding: 15px 0;
    background-color: #f3f4f6;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 20px;
    font-size: 14px;
}

/* アニメーション */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* レスポンシブ対応 */
@media screen and (max-width: 750px) {
    .profile-section {
        flex-direction: column;
    }
    
    .comparison-table {
        flex-direction: column;
    }
}