@charset "UTF-8";

/* =========================================
   基本設定 / 色の定義（ここを黄色系に変更）
   ========================================= */
:root {
    /* メインカラー：明るい黄色 */
    --color-primary: #FFD700; 
    /* アクセントカラー：少し濃い山吹色/オレンジ */
    --color-secondary: #FF8C00; 
    
    /* 通常のテキスト色 */
    --color-text: #333333;
    /* 黄色背景の上に乗せるテキスト色（濃い茶色/黒） */
    --color-text-on-yellow: #4a3b00; 
    
    --color-bg-gray: #fffcf2; /* 背景グレーを少し黄色味がかったオフホワイトに変更 */
    --color-white: #ffffff;
    --font-base: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* 共通コンポーネント */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

/* 背景色を黄色味のあるグレーに変更 */
.bg-gray {
    background-color: var(--color-bg-gray);
}

/* 見出しの色を濃い黄色（アクセントカラー）に変更 */
.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.section-lead {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

/* オレンジボタン（メインのCVボタンとして目立たせる） */
.btn-orange {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.btn-orange:hover {
    background-color: #e67e00; /* ホバー時に少し濃く */
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
}

/* 青ボタン（黄色背景に合うように、白背景＋黄色枠に変更） */
.btn-blue {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}
.btn-blue:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}


.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    min-width: 260px;
    font-size: 18px;
}
.btn-lg span { font-size: 14px; font-weight: normal; }

.btn-xl {
    min-width: 300px;
    font-size: 20px;
    padding: 15px 40px;
}
.btn-xl span { font-size: 15px; font-weight: normal; }

/* グリッドシステム */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-title {
        font-size: 32px;
    }
    .section {
        padding: 80px 0;
    }
}

/* スマホのみ表示・PCのみ表示 */
.sp-only { display: block; }
.pc-only { display: none; }
@media (min-width: 768px) {
    .sp-only { display: none; }
    .pc-only { display: block; }
}


/* =========================================
   セクション別スタイル
   ========================================= */

/* ヘッダー（背景を少し黄色味がかった白に） */
.header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 240, 0.95); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴの色を濃い黄色に */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}
.logo span { font-size: 14px; color: #999; }

/* Heroエリア（ここが一番変わります！） */
.hero {
    position: relative;
    padding: 140px 0 80px;
    /* 背景を青から「明るい黄色〜少し濃い黄色」のグラデーションに変更 */
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFC107 100%);
    /* 文字色を白から「濃い茶色/黒」に変更して読みやすく */
    color: var(--color-text-on-yellow);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    /* 背景が明るいので透過度を調整 */
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
}
.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 影を少し柔らかく */
}

@media (min-width: 768px) {
    .hero { padding: 180px 0 100px; }
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    .hero-content {
        flex: 1;
        text-align: left;
    }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons {
        flex-direction: row;
    }
    .hero-image { flex: 1; }
}

/* カードのスタイル */
.card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* アイコンの色を黄色/オレンジ系に変更 */
.card-icon {
    font-size: 50px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}
/* 円形アイコンの背景を黄色に変更 */
.card-icon-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--color-primary);
    color: var(--color-text-on-yellow); /* アイコンの中の文字色 */
    border-radius: 50%;
    font-size: 36px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-secondary); /* 見出し色変更 */
}

.card-text {
    font-size: 14px;
    text-align: left;
}

/* C. フロー */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flow-step {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #f0eee0; /* 枠線を少し黄色系に */
}

.step-icon {
    font-size: 40px;
    color: var(--color-secondary); /* アイコン色変更 */
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-secondary); /* 見出し色変更 */
}

.step-text { font-size: 14px; }

/* ▼▼▼ ここから ▼▼▼ */
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-title {
        font-size: 32px;
    }
    .section {
        padding: 80px 0;
    }

    .hero { padding: 180px 0 100px; }
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    .hero-content {
        flex: 1;
        text-align: left;
    }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons {
        flex-direction: row;
    }
    .hero-image { flex: 1; }

    .testimonial-card {
        flex-direction: row;
        text-align: left;
    }

    .flow-steps {
        flex-direction: row;
        justify-content: space-between;
    }
    .flow-step {
        flex: 1;
    }
    /* 矢印 */
    .flow-step:not(:last-child)::after {
        /* content: "\f054"; */
        /* font-family: "Font Awesome 6 Free"; */
        /* font-weight: 900; */
        
        content: "＞"; /* 文字の「＞」に変更 */
        font-family: sans-serif;
        font-weight: bold;

        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: var(--color-primary);
    }

    .cta-title { font-size: 36px; }
    .cta-buttons { flex-direction: row; justify-content: center; }
} 
/* ▲▲▲ ここまで（最後の「}」を忘れずに！） ▲▲▲ */
/* =========================================
   追加・修正スタイル：強みセクションの画像位置揃え
   ========================================= */
   .strength-image {
    /* 1. 横幅は親要素(カード)いっぱいに */
    width: 100%;
    /* 2. 画像が小さくなりすぎないように最大幅を設定（お好みで調整） */
    max-width: 250px; 
    
    /* 【重要】3. 高さを固定値で揃える */
    height: 200px; /* この数値は画像のバランスを見て調整してください */

    /* 【重要】4. 固定した枠の中に、画像をはみ出さずに収める */
    object-fit: contain;

    /* 5. 枠内での配置位置（ここでは「下揃え」気味にしています） */
    /* center center なら完全中央、center bottom なら下揃え */
    object-position: center bottom; 
    
    /* 6. 下のテキストとの間隔 */
    margin-bottom: 20px;
}

/* E. 実績 */
.logos-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0.8; /* 少し濃く */
}
.logos-area img { height: 40px; width: auto; }

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0eee0;
}
.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary); /* 写真の枠を黄色に */
}
.testimonial-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.testimonial-author {
    font-size: 14px;
    color: var(--color-secondary);
}
@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
        text-align: left;
    }
}

/* F. 料金 */
.pricing-table-wrapper {
    overflow-x: auto;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pricing-table th,
.pricing-table td {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}
/* テーブルヘッダーの背景を黄色系に */
.pricing-table th {
    background: #fffbeb; 
    color: var(--color-secondary);
}
/* 強調カラムの背景を濃い黄色系に */
.pricing-table .highlight-col {
    background: #fff3cd;
    font-weight: 700;
    color: var(--color-text-on-yellow);
    border-color: #ffeeba;
}
.pricing-table .price {
    font-size: 20px;
    font-weight: 700;
}
.note-text {
    font-size: 12px;
    text-align: right;
    margin-top: 10px;
    color: #999;
}

/* G. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #f0eee0;
}
.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question .icon {
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: var(--color-secondary); /* アイコン色変更 */
    transition: transform 0.3s;
}
details[open] .faq-question .icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    background: #fffcf2; /* 回答エリアの背景を少し黄色に */
    border-radius: 0 0 8px 8px;
}

/* H. CTA Bottom、Footer（背景を濃い黄色/オレンジに、文字を白に） */
.cta-bottom,
.footer {
    background: var(--color-secondary); /* 背景を濃い黄色/オレンジに */
    color: var(--color-white); /* 文字を白に */
    text-align: center;
}
.cta-bottom {
    padding: 60px 0;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}
.cta-subtitle {
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--color-white);
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
/* CTAエリア内のボタンの色調整 */
.cta-bottom .btn-orange {
    background-color: var(--color-white);
    color: var(--color-secondary);
}
.cta-bottom .btn-orange:hover {
    background-color: #f0f0f0;
}
.cta-bottom .btn-blue {
    border-color: var(--color-white);
    color: var(--color-white);
    background: transparent;
}
.cta-bottom .btn-blue:hover {
    background-color: rgba(255,255,255,0.2);
}


@media (min-width: 768px) {
    .cta-title { font-size: 36px; }
    .cta-buttons { flex-direction: row; justify-content: center; }
}

/* Footer */
.footer {
    padding: 40px 0 20px;
}
.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}
.footer-logo span { color: rgba(255,255,255,0.7); }
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.footer-links a {
    color: var(--color-white);
    opacity: 0.8;
}
.footer-links a:hover { opacity: 1; }

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

/* Googleフォーム埋め込み調整用 */
.form-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto; /* 中央寄せ */
}
.form-wrapper iframe {
    width: 100%; /* 幅を親要素に合わせる */
    max-width: 100%;
}
