/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero_bg.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.highlight {
    color: #1e40af;
    position: relative;
}

.highlight-orange {
    color: #ea580c;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #64748b;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-container {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ea580c;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
}

.cta-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.hero-image {
    position: relative;
    text-align: center;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.guidebook-cover {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.guidebook-cover:hover {
    transform: scale(1.05);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    animation: float 3s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: 1s;
}

.stat-item:nth-child(3) {
    animation-delay: 2s;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ea580c;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* 問題共感セクション */
.problem {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.solution-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e40af;
    line-height: 1.8;
}

/* 価値セクション */
.value {
    padding: 100px 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.value-item {
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    border-color: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

.value-summary {
    text-align: center;
    background: #f1f5f9;
    padding: 40px;
    border-radius: 16px;
}

.summary-text {
    font-size: 1.2rem;
    color: #475569;
}

.page-count {
    color: #ea580c;
    font-size: 1.4rem;
}

/* 成功事例セクション */
.success {
    padding: 100px 0;
    background: #f8fafc;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.success-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.chart-container {
    text-align: center;
    margin-bottom: 30px;
}

.success-chart {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.success-note {
    text-align: center;
    font-style: italic;
    color: #64748b;
}

/* 対象者セクション */
.target {
    padding: 100px 0;
    background: white;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: #e2e8f0;
    transform: translateX(10px);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* フォームセクション */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.benefit-item {
    font-size: 1rem;
    opacity: 0.9;
}

/* 次ステップセクション */
.next-step {
    padding: 100px 0;
    background: #f8fafc;
}

.next-step-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.next-step-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #475569;
}

.workshop-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.workshop-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 12px;
}

.workshop-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #475569;
}

.workshop-details {
    font-size: 1.1rem;
    color: #64748b;
}

.workshop-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
}

.workshop-link:hover {
    text-decoration: underline;
}

.workshop-note {
    margin-top: 12px;
    font-weight: 600;
    color: #ea580c;
}

/* FAQ セクション */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1e40af;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #64748b;
    line-height: 1.7;
}

/* 会社情報セクション */
.company {
    padding: 100px 0;
    background: #f8fafc;
}

.company-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.company-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.company-ceo {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #64748b;
}

.company-credentials {
    text-align: left;
    display: inline-block;
}

.company-credentials p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #475569;
}

/* 最終CTA セクション */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    text-align: center;
}

.final-cta .cta-button {
    background: white;
    color: #ea580c;
    border: 3px solid white;
}

.final-cta .cta-button:hover {
    background: #f8fafc;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.final-cta .cta-icon {
    filter: brightness(0) saturate(100%) invert(45%) sepia(69%) saturate(1746%) hue-rotate(8deg) brightness(96%) contrast(94%);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* フッター */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .target-item {
        min-width: auto;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* フォーカス状態の改善 */
.cta-button:focus,
input:focus,
button:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* ローディング状態 */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ホバーエフェクトの改善 */
.value-item,
.problem-item,
.success-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* グラデーションテキスト */
.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 特典セクション */
.bonus {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.bonus-intro {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus::before {    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero_bg.png') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.bonus-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #ea580c;
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.bonus-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.bonus-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 0;
}

.bonus-free {
    color: #ea580c;
    font-weight: 900;
    font-size: 1.5rem;
    position: relative;
}

.bonus-free::after {
    content: '完全無料';
    position: absolute;
    left: 120px;
    top: 0;
    color: #16a34a;
    text-decoration: none;
    font-weight: 900;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.bonus-benefits {
    margin-bottom: 40px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #ea580c;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: #f1f5f9;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.1);
}

.bonus-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.bonus-item-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.bonus-item-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.bonus-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 2px dashed #e2e8f0;
}

.bonus-note {
    font-size: 1.1rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .bonus-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .bonus-title {
        font-size: 1.8rem;
    }
    
    .bonus-subtitle {
        font-size: 1.1rem;
    }
    
    .bonus-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .bonus-item-content h4 {
        font-size: 1.1rem;
    }
    
    .bonus-free::after {
        position: static;
        display: block;
        margin-top: 10px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 60px 0;
    }
    
    .bonus-container {
        padding: 25px 15px;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-icon {
        font-size: 3rem;
    }
    
    .bonus-item {
        padding: 15px;
    }
}



/* 自己紹介セクション */
.profile {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.profile-image {
    text-align: center;
}

.profile-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.profile-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 30px;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 5px;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.experience-item {
    margin-bottom: 40px;
}

.experience-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 10px;
    border-left: 5px solid #ea580c;
}

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.experience-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.experience-item strong {
    color: #ea580c;
    font-weight: 700;
}

.profile-achievements {
    text-align: center;
    margin-top: 40px;
}

.achievements-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievements-image:hover {
    transform: scale(1.02);
}

/* お客様の声セクション */
.testimonial {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-content {
    background: #ffffff;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #f1f5f9;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.testimonial-main {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.testimonial-image {
    text-align: center;
}

.testimonial-photo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.client-info {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 5px solid #ea580c;
}

.client-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.client-name {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.testimonial-quote p {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #e2e8f0;
}

.testimonial-quote .highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 700;
    color: #92400e;
}

.testimonial-quote .result-highlight {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-left: 4px solid #16a34a !important;
    font-weight: 700;
    color: #166534;
    font-size: 1.2rem;
}

.testimonial-proof {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #cbd5e1;
}

.proof-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.proof-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.proof-caption {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }
    
    .profile-info {
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 40px 20px;
    }
    
    .testimonial-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-title {
        font-size: 1.8rem;
    }
    
    .experience-item h4 {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
    
    .experience-item li {
        font-size: 0.95rem;
        padding: 10px 0 10px 20px;
    }
}


/* 特典セクションのGPTイメージ */
.bonus-image {
    margin: 30px 0;
    text-align: center;
}

.gpt-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gpt-image:hover {
    transform: translateY(-5px);
}

/* 成功事例セクションに統合されたお客様の声 */
.testimonial-integration {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.testimonial-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ea580c;
}

.client-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.client-name {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 20px;
}

.result-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #16a34a;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.result-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #15803d;
    margin: 0;
}

.proof-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
}

.proof-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
}

.proof-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.proof-caption {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin-top: 15px;
    padding: 15px;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

/* お客様の声画像コンテナ */
.testimonial-image-container {
    margin: 30px 0;
    text-align: center;
}

.testimonial-full-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .testimonial-integration {
        margin: 30px 0;
        padding: 25px 15px;
    }
    
    .testimonial-subtitle {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .result-highlight {
        font-size: 1.1rem;
    }
    
    .gpt-image {
        border-radius: 10px;
    }
    
    .testimonial-image-container {
        margin: 20px 0;
    }
    
    .testimonial-full-image {
        border-radius: 8px;
    }
}

