@charset "utf-8";

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }       
        body {
            font-family: 'Hiragino Sans', 'Meiryo', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* ヘッダー */
        .header {
            background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
            color: white;
            padding: 15px 20px;
            text-align: center;
        }
        
        .logo {
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        /* ファーストビュー */
        .hero {
            background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.3;
        }     
        .hero .price {
            font-size: 48px;
            font-weight: bold;
            color: #ffeb3b;
            margin: 10px 0;
        }       
        .hero .sub {
            font-size: 20px;
            margin-bottom: 20px;
        }      
        .hero-image {
            width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }      
        .cta-button {
            background: #ffeb3b;
            color: #1565c0;
            font-size: 20px;
            font-weight: bold;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.2s;
            display: inline-block;
            text-decoration: none;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
        }
        
        .free-trial {
            background-color: #EF3033;
            color: white;
            font-size: 14px;
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        /* メリットセクション */
        .benefits {
            padding: 50px 20px 30px;
            background: white;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 40px;
            color: #1565c0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
        }
        
        .benefit-icon {
            font-size: 40px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .benefit-content h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #1565c0;
        }
        
        .benefit-content p {
            font-size: 16px;
            color: #666;
        }
        
        /* 料金プラン */
        .pricing {
            padding: 50px 20px;
            background: #e3f2fd;
        }
        
        .price-card {
            background: white;
            border-radius: 15px;
            padding: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .price-card h3 {
            font-size: 24px;
            color: #1565c0;
        }
        
        .price-amount {
            font-size: 48px;
            font-weight: bold;
            color: #1e88e5;
            margin-bottom: 10px;
        }
        
        .price-note {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .store-search {
            background: #1e88e5;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            max-width: 300px;
        }
        
        /* ユーザーの声 */
        .reviews {
            padding: 50px 20px;
            background: white;
        }
        
        .review-card {
            background: #f9f9f9;
            border-left: 4px solid #1e88e5;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        
        .review-stars {
            color: #ffb300;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .review-text {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .review-author {
            font-size: 14px;
            color: #999;
            text-align: right;
        }
        
        /* 使い方 */
        .howto {
            padding: 50px 20px;
            background: #f5f5f5;
        }
        
        .step {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .step-number {
            background: #1e88e5;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #1565c0;
        }
        
        .step-content p {
            font-size: 14px;
            color: #666;
        }
        
        /* FAQ */
        .faq {
            padding: 50px 20px;
            background: white;
        }
        
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }
        
        .faq-question {
            font-size: 16px;
            font-weight: bold;
            color: #1565c0;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* CTA固定ボタン */
        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 15px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            text-align: center;
            z-index: 1000;
        }
        
        .fixed-cta .cta-button {
            width: 100%;
            max-width: 400px;
        }
        
        /* フッター */
        .footer {
            background: #263238;
            color: white;
            padding: 30px 20px 80px;
            text-align: center;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }
        
        .copyright {
            font-size: 12px;
            color: #999;
        }

