@charset "UTF-8";

#main .btn a {
  display: block;
  border: 1px solid var(--i_btn_color);
  padding: 0.5rem;
  transition: all ease .3s;
  text-decoration: none;
  background: var(--i_btn_color);
  color: var(--i_btn_txt_color);
}
header .header_contents .header_col1 .btn {
    padding: 0;
    background: none;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            line-height: 1.8;
            color: #000000;
            background-color: #ECF0F0;
        }

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

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

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-subtitle {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 30px;
        }

        /* 悩みセクション */
        .pain-points {
            background-color: white;
            padding: 80px 0;
        }

        .pain-points h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 50px;
        }

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

        .pain-card {
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #E74C3C;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .pain-card:hover {
            transform: translateY(-5px);
        }

        .pain-card h3 {
            color: #E74C3C;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .empathy-box {
            background-color: #E3F2FD;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #1a237e;
        }

        .empathy-box h3 {
            color: #1a237e;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* サービス概要 */
        .service-overview {
            background: linear-gradient(135deg, #ECF0F0 0%, #ffffff 100%);
            padding: 80px 0;
        }

        .service-overview h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 30px;
        }

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

        .step-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 5px solid #2ECC71;
        }

        .step-number {
            background: #2ECC71;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* プラン紹介 */
        .plans {
            background-color: white;
            padding: 80px 0;
        }

        .plans h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 50px;
        }

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

        .plan-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .plan-header {
            padding: 30px;
            text-align: center;
            color: white;
        }

        .plan-card:nth-child(1) .plan-header {
            background: linear-gradient(135deg, #1a237e, #3949AB);
        }

        .plan-card:nth-child(2) .plan-header {
            background: linear-gradient(135deg, #2ECC71, #27AE60);
        }

        .plan-card:nth-child(3) .plan-header {
            background: linear-gradient(135deg, #FFD700, #FFA000);
        }

        .plan-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .plan-subtitle {
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .plan-price-note {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .plan-content {
            padding: 30px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #ECF0F0;
            position: relative;
            padding-left: 30px;
        }

        .plan-features li::before {
            content: "✓";
            color: #2ECC71;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .plan-button {
            display: block;
            width: 100%;
            padding: 15px;
            background: #2ECC71;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .plan-button:hover {
            background: #1a237e;
        }

        /* よくある質問 */
        .faq {
            background: linear-gradient(135deg, #ECF0F0 0%, #ffffff 100%);
            padding: 80px 0;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 50px;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .faq-question {
            background: #1a237e;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
        }

        .faq-answer {
            padding: 20px;
            background: white;
        }

        /* CTA セクション */
        .cta {
            background: linear-gradient(135deg, #1a237e 0%, #2196F3 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: #2ECC71;
            color: white;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
        }

        .cta-button:hover {
            background: #FFD700;
            color: #1a237e;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .pain-grid, .plans-grid {
                grid-template-columns: 1fr;
            }

            .approach-steps {
                grid-template-columns: 1fr;
            }
        }