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

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #0a0a0a;
    line-height: 1.4;
}

/* モニターバナー */
.monitor-banner {
    background: #FF0000;
    background: linear-gradient(135deg, #FF0000 0%, #DC0000 50%, #CC0000 100%);
    color: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(255,0,0,0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 3px 12px rgba(255,0,0,0.3);
    }
    50% { 
        opacity: 0.95;
        box-shadow: 0 3px 15px rgba(255,0,0,0.4);
    }
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.banner-price {
    font-size: 1.2rem;
    font-weight: 900;
    background-color: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 35px;
}

.hero-title .highlight {
    color: #C9A84C;
    display: block;
    margin-top: 15px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 35px;
}

.hero-location {
    font-size: 1.05rem;
    opacity: 0.75;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #06C755, #05A847);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-large {
    font-size: 1.1rem;
    padding: 22px 50px;
}

.btn-sub {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

/* 悩みセクション */
.problems {
    background-color: #f9f9f9;
}

.problems-list {
    max-width: 700px;
    margin: 0 auto 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #ffffff;
    padding: 22px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.problem-check {
    color: #C9A84C;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.problem-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.problems-result {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 50px;
}

.problems-result strong {
    color: #C9A84C;
    font-weight: 900;
}

/* 原因セクション */
.reason {
    background-color: #ffffff;
}

.reason-content {
    max-width: 800px;
    margin: 0 auto;
}

.reason-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
}

/* ピラミッド */
.pyramid {
    margin: 50px auto;
    max-width: 600px;
}

.pyramid-level {
    padding: 30px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 10px;
}

.pyramid-top {
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.pyramid-middle {
    background: linear-gradient(135deg, #d0d0d0, #c0c0c0);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.pyramid-bottom {
    background: linear-gradient(135deg, #C9A84C, #B89840);
    color: #ffffff;
    width: 100%;
}

.pyramid-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pyramid-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* 説明テキスト */
.reason-explanation {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.reason-explanation p {
    margin-bottom: 25px;
}

.reason-quote {
    background-color: #ffffff;
    border-left: 4px solid #C9A84C;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.reason-highlight {
    font-size: 1.15rem;
    font-weight: 700;
    color: #C9A84C;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 30px 0;
}

/* 差別化セクション */
.features {
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.feature-number {
    display: inline-block;
    background: linear-gradient(135deg, #C9A84C, #B89840);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
    line-height: 1.4;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* 実績セクション */
.results {
    background-color: #ffffff;
}

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

.result-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.result-header {
    margin-bottom: 25px;
}

.result-profile {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C9A84C;
}

.result-before, .result-after, .result-issue {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.result-before h4, .result-after h4, .result-issue h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.result-before ul, .result-after ul {
    list-style: none;
    padding-left: 0;
}

.result-before li, .result-after li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.result-before li:last-child, .result-after li:last-child {
    border-bottom: none;
}

.result-change {
    color: #FF0000;
    font-weight: 700;
}

.result-comment {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #C9A84C;
    font-style: italic;
    color: #555;
}

/* 料金セクション */
.pricing {
    background-color: #f9f9f9;
}

.program-flow {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #0a0a0a;
}

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

.phase-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.phase-number {
    display: inline-block;
    background: linear-gradient(135deg, #C9A84C, #B89840);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.phase-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.phase-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.phase-list {
    list-style: none;
    padding-left: 0;
}

.phase-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.phase-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

.program-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.pricing-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-recommended {
    border: 3px solid #C9A84C;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-label {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.pricing-detail {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-sessions {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-time {
    font-size: 0.95rem;
    color: #666;
}

.pricing-regular {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-regular-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.pricing-regular-price {
    font-size: 2rem;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pricing-per {
    font-size: 0.85rem;
    color: #999;
}

.pricing-monitor {
    text-align: center;
    background: linear-gradient(135deg, #C9A84C, #B89840);
    padding: 25px;
    border-radius: 10px;
    color: #ffffff;
}

.pricing-monitor-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-monitor-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.pricing-discount {
    font-size: 1rem;
    font-weight: 700;
}

.pricing-notes {
    max-width: 700px;
    margin: 0 auto 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
}

.pricing-notes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.pricing-notes ul {
    list-style: none;
    padding-left: 0;
}

.pricing-notes li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-notes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

.pricing-notes-highlight {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border-left: 4px solid #FF0000;
    color: #856404;
    font-weight: 700;
}

.pricing-cta {
    text-align: center;
}

/* FAQ */
.faq {
    background-color: #ffffff;
}

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

.faq-item {
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-q, .faq-a {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.faq-q {
    background: linear-gradient(135deg, #C9A84C, #B89840);
    color: #ffffff;
}

.faq-a {
    background-color: #0a0a0a;
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0 25px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-answer-text {
    line-height: 1.8;
    color: #555;
}

/* トレーナー紹介 */
.trainer {
    background-color: #f9f9f9;
}

.trainer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.trainer-image {
    flex-shrink: 0;
}

.trainer-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trainer-info {
    flex: 1;
}

.trainer-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.trainer-age {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.trainer-title {
    font-size: 1.1rem;
    color: #C9A84C;
    font-weight: 700;
    margin-bottom: 30px;
}

.trainer-profile h4, .trainer-message h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #0a0a0a;
}

.trainer-profile ul {
    list-style: none;
    padding-left: 0;
}

.trainer-profile li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.trainer-profile li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-weight: 700;
}

.trainer-message p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.trainer-message p:last-child {
    font-weight: 700;
    color: #C9A84C;
}

/* アクセス */
.access {
    background-color: #ffffff;
}

.access-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.access-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.access-item {
    margin-bottom: 20px;
}

.access-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 5px;
}

.access-text {
    font-size: 1.05rem;
    color: #333;
}

.access-map iframe {
    border-radius: 10px;
}

/* 最終CTA */
.final-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 0;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
}

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.final-cta-buttons {
    margin-bottom: 30px;
}

.final-cta-note {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.8;
}

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

.footer-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* トップに戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A84C, #B89840);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .monitor-banner {
        padding: 12px 0;
    }
    
    .banner-content {
        gap: 10px;
    }
    
    .banner-text {
        font-size: 0.95rem;
    }
    
    .banner-price {
        font-size: 1.05rem;
        padding: 4px 12px;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 18px 30px;
    }
    
    .features-grid, .results-grid, .pricing-grid, .phase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trainer-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .trainer-image img {
        margin: 0 auto 30px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .final-cta-text {
        font-size: 1.05rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
