        :root {
            --bg-color: #f4f9ff; /* 全体の薄い水色背景 */
            --accent-blue: #00a0e9;
            --accent-yellow: #fff9c4;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Noto Sans JP', sans-serif;
            background-color: var(--bg-color);
            color: #333;
        }

        /* ロゴ部分 */
        header {
            padding: 25px 5%;
            font-family: 'Montserrat', sans-serif;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* ヒーローエリア（写真と文字の重なり） */
        .hero-section {
            padding: 0 5%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero-card {
            background-color: #fff;
            border-radius: 25px; /* 角丸ボックス */
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            min-height: 450px;
            display: flex;
            align-items: center;
            position: relative;

            /* 背景写真の設定：左側を白く塗りつぶすグラデーションを重ねる */
            background-image: 
                linear-gradient(to right, #fff 0%, #fff 40%, rgba(255,255,255,0) 80%), 
                url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
        }

        .hero-content {
            padding-left: 60px;
            z-index: 10;
            max-width: 600px;
        }

        .hero-content .small-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            margin-bottom: 25px;
            display: block;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 5rem;
            color: #000; /* 黒文字 */
            margin: 0;
            line-height: 1;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #333;
            margin-top: 20px;
            font-weight: bold;
            line-height: 1.5;
        }

        /* コンテンツエリア */
        .container {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 5%;
            text-align: center;
        }

        .section-title {
            font-size: 1.6rem;
            margin-bottom: 25px;
            display: inline-block;
            border-bottom: 3px solid var(--accent-blue);
            padding-bottom: 8px;
        }

        .intro-text {
            font-size: 1rem;
            line-height: 2;
            color: #666;
            margin-bottom: 60px;
        }

        /* サービスカード（4列並び） */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .card {
            background: white;
            border: 1px solid #e0e6ed;
            border-radius: 15px;
            padding: 40px 10px;
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
        }

        .card i {
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 1rem;
            margin: 0;
            font-weight: bold;
        }

        /* 閲覧者限定（黄色いカード） */
        .card.locked {
            background-color: var(--accent-yellow);
            border: 1px dashed #ffd600;
        }

        .card.locked i {
            color: #fbc02d;
        }

        /* レスポンシブ（スマホ対応） */
        @media (max-width: 850px) {
            .hero-card {
                /*background: #fff;  スマホでは写真を消して白背景にする（文字優先） */
                min-height: auto;
                padding: 40px 0;
            }
            .hero-content { padding-left: 30px; }
            .hero-content h1 { font-size: 3rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 500px) {
            .services-grid { grid-template-columns: 1fr; }
        }
        /* --- 共通：サブページの「トップへ戻る」ボタンエリア --- */
        /* ボタンを囲むエリアの設定 */
        .back-area {
            margin-top: 60px;
            padding-bottom: 60px;
            text-align: center;
            clear: both; /* 他の要素との干渉を防ぐ */
        }

        /* ボタン自体の形状設定（共通） */
        .btn-back {
            display: inline-block;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            padding: 12px 35px;
            border: 1px solid #ddd;
            border-radius: 50px; /* ← これが効けば丸いボタンになります */
            background-color: #fff;
            transition: all 0.3s ease;
            line-height: 1; /* 行の高さを固定して形を安定させる */
        }

        /* ホバー時の動き */
        .btn-back:hover {
            background-color: #333;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }