@charset "utf-8";

/* ====================================================
   LINE相談ページ 専用スタイル (line.css)
==================================================== */

/* Page Header - ネイビーのリッチなグラデーションデザイン */
.page-header {
    background: linear-gradient(135deg, #001a40 0%, #002b6b 50%, #004099 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0.04), transparent);
    transform: rotate(35deg);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #06C755; /* LINEカラーをアクセントに使用 */
}
.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 34px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.page-title-en {
    display: block;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    color: #06C755;
    letter-spacing: 0.15em;
    margin-top: 10px;
    font-weight: bold;
}

/* 通知カード（コンビニ決済警告枠） - プライバシーポリシー等と共通 */
.notice-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: none;
    border-left: 6px solid #c5a059;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 20px; /* 注意書きを分離したため、下の余白を50pxから20pxに調整 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.notice-card::before {
    content: '\f071'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 150px;
    color: rgba(197, 160, 89, 0.04);
    z-index: 0;
    line-height: 1;
}
.notice-icon {
    background: #c5a059;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    position: relative;
    z-index: 1;
}
.notice-body {
    flex: 1;
    position: relative;
    z-index: 1;
}
.notice-title {
    font-size: 22px;
    color: #0c2340;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 15px;
}
.notice-body p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}
/* 分離・独立させた対象外案件に関する注意書き */
.exclusion-note {
    font-size: 13px; /* 少し小さく設定 */
    color: #c53030;
    margin-bottom: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* LINEコンテンツエリア */
.line-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 4px solid #06C755;
}

/* 上部テキスト（イントロダクション） */
.line-intro {
    text-align: center;
    margin-bottom: 50px;
}
.line-brand-icon {
    font-size: 60px;
    color: #06C755;
    margin-bottom: 20px;
}
.line-intro p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}
.line-intro .highlight-text {
    font-weight: bold;
    color: #0c2340;
    font-size: 18px;
    background: linear-gradient(transparent 60%, rgba(6, 199, 85, 0.2) 60%);
    display: inline-block;
    padding: 0 5px;
}

/* QRコードとIDのボックス（横並び） */
.line-connect-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.line-qr-area,
.line-id-area {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.scan-label {
    font-size: 16px;
    font-weight: bold;
    color: #0c2340;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.scan-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #06C755;
}

/* QR画像 */
.qr-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ID表示 */
.id-display {
    background: #f0fdf4;
    border: 2px dashed #06C755;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 25px 0;
}
.id-label {
    font-size: 16px;
    color: #444;
    font-weight: bold;
}
.id-text {
    font-size: 28px;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    color: #0c2340;
    letter-spacing: 0.05em;
}

/* 指示テキスト */
.scan-instruction {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ダイレクトボタン（スマホ向け） */
.btn-line-direct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06C755;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    width: 100%;
}
.btn-line-direct:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}


/* レスポンシブ対応 (タブレット・スマホ) */
@media (max-width: 991px) {
    .page-header { padding: 50px 0; }
    .page-title { font-size: 26px; }
    .page-title-en { font-size: 12px; margin-top: 8px; }
    
    .notice-card { 
        padding: 25px; 
        flex-direction: column;
        gap: 20px;
        margin-bottom: 15px; /* スマホ向け余白調整 */
    }
    .notice-card::before { font-size: 100px; top: 20px; right: 10px; }
    .notice-icon { width: 50px; height: 50px; font-size: 22px; }
    .notice-title { font-size: 18px; padding-bottom: 12px; margin-bottom: 12px; }
    .notice-body p { font-size: 14px; }
    
    .exclusion-note {
        font-size: 12px; /* スマホではさらに小さく */
        margin-bottom: 40px;
    }

    .line-content { padding: 30px 20px; }
    .line-intro p { font-size: 14px; }
    .line-intro .highlight-text { font-size: 16px; }
    
    /* 横並びを縦並びに変更 */
    .line-connect-box {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .line-qr-area, .line-id-area {
        padding: 25px 15px;
    }
    .qr-image { width: 150px; height: 150px; }
    .id-display { padding: 15px 20px; margin: 20px 0; }
    .id-text { font-size: 24px; }
}