@charset "UTF-8";
/*
Theme Name: GALAXY RTB
Description: Galaxy　RTB仕様(アフィリエイトサイト向け)はマルチカラム仕様のRTB専用テーマです。スマートフォン対応のレスポンシブテンプレートで、自由度の高い絞込み検索パネルを設定可能な所が特徴です。</a>.
Theme URI: http://
Author: RTBA team
Author URI: http://
Version: 2.1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: white, blog, one-column, two-columns, right-sidebar,left-sidebar,three-column
*/

#header .sitetitle {
    /* スマホタイトルの背景色を変更する場合下記を有効にする*/
    /* background-color: #fff; */
}
@media (min-width: 992px) {
    #header .sitetitle {
        background-color: transparent;
    }   
}

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>【限定オファー】憧れの髪、諦めないで。無料体験から始める増毛コース</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
    <style>
        /* グローバルスタイル */
        body {
            font-family: 'Inter', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .container {
            max-width: 850px;
            margin: 20px auto;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* 見出しスタイル */
        h1, h2, h3 {
            text-align: center;
            font-weight: 700;
            color: #1a2a4e;
            margin-bottom: 25px;
        }
        h1 {
            font-size: 2.8em;
            line-height: 1.3;
            color: #004d9a;
            padding-top: 20px;
        }
        h2 {
            font-size: 2.2em;
            color: #005a8d;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8em;
            color: #d1136b;
            margin-top: 30px;
        }

        /* ヒーローセクション */
        .hero {
            background: linear-gradient(135deg, #e0f2ff 0%, #cce0ff 100%);
            padding: 50px 20px;
            border-radius: 15px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid #a0c4ff;
        }
        .hero::before { /* 背景のパターン */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.5;
        }
        .hero p {
            font-size: 1.3em;
            text-align: center;
            color: #444;
            margin-bottom: 40px;
            font-weight: 500;
        }

        /* CTAボタン */
        .cta-button-container {
            text-align: center;
            margin: 40px 0;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ff4500);
            color: #ffffff;
            font-size: 1.8em;
            font-weight: bold;
            padding: 18px 45px;
            border-radius: 60px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: bounce 2s infinite ease-in-out;
        }
        .cta-button:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 30px rgba(255, 69, 0, 0.6);
        }
        .cta-button::after { /* ホバー時の光沢エフェクト */
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: skewX(-20deg);
            transition: left 0.5s ease-out;
        }
        .cta-button:hover::after {
            left: 100%;
        }

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

        /* ベネフィットセクション */
        .benefits {
            margin-bottom: 50px;
        }
        .benefits ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            justify-content: center;
        }
        .benefits li {
            background-color: #f0f8ff;
            border: 2px solid #a0d8f2;
            padding: 30px;
            border-radius: 18px;
            text-align: center;
            font-size: 1.2em;
            font-weight: bold;
            color: #005a8d;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .benefits li:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .benefits li strong {
            display: block;
            margin-top: 10px;
            font-size: 1.1em;
        }
        .benefits li span {
            font-size: 2em;
            color: #28a745;
            display: block;
            margin-bottom: 10px;
        }

        /* オファーボックス */
        .offer-box {
            background: linear-gradient(160deg, #fff0f5 0%, #ffdde1 100%);
            border: 4px solid #ff69b4;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
        }
        .offer-box::before { /* コーナーのリボン */
            content: '限定オファー！';
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: #f7b731;
            color: white;
            padding: 5px 30px;
            font-weight: bold;
            font-size: 1.1em;
            transform: rotate(45deg);
            transform-origin: 0% 0%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .offer-box h3 {
            color: #d1136b;
            font-size: 2.5em;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .offer-box .highlight-text {
            font-size: 1.5em;
            font-weight: bold;
            color: #444;
            margin-bottom: 15px;
        }
        .offer-box .price {
            font-size: 4.5em;
            font-weight: bold;
            color: #ff4500;
            margin: 15px 0 20px;
            display: block;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }
        .offer-box .price small {
            font-size: 0.4em;
            font-weight: normal;
            color: #666;
            vertical-align: super;
        }
        .offer-box .small-text {
            font-size: 1em;
            color: #888;
            margin-top: 15px;
        }
        .offer-box .strike-through {
            text-decoration: line-through;
            color: #aaa;
            font-size: 0.9em;
            margin-right: 10px;
        }

        /* お客様の声セクション */
        .testimonials {
            margin: 60px 0;
        }
        .testimonial-item {
            background-color: #f9f9f9;
            border-left: 6px solid #004d9a;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
        }
        .testimonial-item p {
            font-style: italic;
            font-size: 1.15em;
            color: #555;
            margin-bottom: 15px;
        }
        .testimonial-item .customer-info {
            text-align: right;
            font-weight: bold;
            color: #004d9a;
            margin-top: 10px;
            font-size: 1.05em;
        }

        /* Q&Aセクション */
        .faq {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        .faq-item h4 {
            color: #005a8d;
            margin: 0;
            font-size: 1.3em;
            text-align: left;
        }
        .faq-item p {
            margin: 8px 0 0 25px;
            color: #666;
            font-size: 1.05em;
        }

        /* フッター */
        .footer {
            text-align: center;
            padding: 25px;
            font-size: 0.85em;
            color: #999;
            border-top: 1px solid #eee;
            margin-top: 50px;
            background-color: #f9f9f9;
            border-radius: 0 0 12px 12px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .container {
                padding: 20px;
                margin: 10px auto;
            }
            h1 {
                font-size: 2.2em;
            }
            h2 {
                font-size: 1.8em;
            }
            .hero p {
                font-size: 1.1em;
            }
            .cta-button {
                font-size: 1.4em;
                padding: 15px 30px;
            }
            .benefits ul {
                grid-template-columns: 1fr;
            }
            .benefits li {
                padding: 20px;
                font-size: 1em;
            }
            .offer-box {
                padding: 30px;
            }
            .offer-box h3 {
                font-size: 2em;
            }
            .offer-box .price {
                font-size: 3.5em;
            }
            .testimonial-item, .faq-item {
                padding: 18px;
            }
            .testimonial-item p, .faq-item p {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.6em;
            }
            .hero p {
                font-size: 1em;
            }
            .cta-button {
                font-size: 1.2em;
                padding: 12px 25px;
            }
            .offer-box h3 {
                font-size: 1.6em;
            }
            .offer-box .price {
                font-size: 2.8em;
            }
        }
    </style>
</head>
