/* ========================================
   今村証券 Vポイントサービス スタイルシート
   ======================================== */

/* リセット */
* {
    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: #333;
}

/* ========================================
   ヘッダー
   ======================================== */
.page-header {
    background-color: #003d7a;
    color: white;
    padding: 20px 0;
    border-bottom: 4px solid #0066cc;
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 1.8em;
    font-weight: normal;
}

/* ========================================
   パンくずリスト
   ======================================== */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9em;
    color: #666;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ========================================
   メインコンテナ
   ======================================== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* ========================================
   セクション見出し
   ======================================== */
.section-title {
    font-size: 1.8em;
    color: #003d7a;
    padding: 20px 0 15px;
    margin-bottom: 30px;
    border-bottom: 3px solid #0066cc;
    font-weight: normal;
}

.section-subtitle {
    font-size: 1.4em;
    color: #003d7a;
    padding: 30px 0 15px;
    margin-bottom: 20px;
    border-left: 5px solid #0066cc;
    padding-left: 15px;
    font-weight: normal;
}

/* ========================================
   リード文
   ======================================== */
.lead-text {
    font-size: 1.1em;
    line-height: 2;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid #0066cc;
}

/* ========================================
   統計情報
   ======================================== */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
    flex-wrap: wrap;
}

.stat-box {
    width: 200px;
    height: 210px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 3px solid;
}

/* 1つ目: 濃い青 */
.stat-box-1 {
    background: #014099;
    border-color: #014099;
}

.stat-box-1 .stat-number {
    color: #FFF20D;
}

/* 2つ目: 緑 */
.stat-box-2 {
    background: #014099;
    border-color: #014099;
}

.stat-box-2 .stat-number {
    color: #FFF20D;
}

/* 3つ目: オレンジ */
.stat-box-3 {
    background: #014099;
    border-color: #014099;
}

.stat-box-3 .stat-number {
    color: #FFF20D;
}

.stat-box .stat-number {
    font-size: 2.4em;
    font-weight: bold;
    display: block;
    line-height: 1.1;
}

.stat-box .stat-unit {
    font-size: 0.6em;
    margin-left: 3px;
}

.stat-box .stat-label {
    font-size: 0.85em;
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
    display: block;
    text-align: center;
    line-height: 1.4;
}


/* ========================================
   対象となるお客様
   ======================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.target-box {
    background: #ffffff;
    border: none;
    border-top: 5px solid #0066cc;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* 各ボックスに異なる色のアクセント */
.target-box:nth-child(1) {
    border-top-color: #014099;
}

.target-box:nth-child(2) {
    border-top-color: #014099;
}

.target-box:nth-child(3) {
    border-top-color: #014099;
}

.target-box h3 {
    color: #014099;
    font-size: 1.4em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 番号を右側に配置 */
.target-box:nth-child(1) h3::after {
    content: "01";
    font-size: 2em;
    color: #1976d2;
    font-weight: bold;
    opacity: 0.3;
}

.target-box:nth-child(2) h3::after {
    content: "02";
    font-size: 2em;
    color: #0288d1;
    font-weight: bold;
    opacity: 0.3;
}

.target-box:nth-child(3) h3::after {
    content: "03";
    font-size: 2em;
    color: #fbc02d;
    font-weight: bold;
    opacity: 0.3;
}

.target-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-box li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.7;
    color: #014099;
    font-size: 1em;
}

.target-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: bold;
    font-size: 1.2em;
}

.target-box:nth-child(2) li:before {
    color: #0288d1;
}

.target-box:nth-child(3) li:before {
    color: #fbc02d;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .target-grid {
        gap: 25px;
    }
    
    .target-box {
        padding: 30px 25px;
    }
    
    .target-box h3 {
        font-size: 1.2em;
    }
}

/* ========================================
   ポイントプログラム
   ======================================== */
.program-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.program-header {
    background-color: #003d7a;
    color: white;
    padding: 20px 30px;
    margin: -40px -40px 30px -40px;
    border-radius: 4px 4px 0 0;
}

.program-header-alt1 {
    background-color: #006bb3;
}

.program-header-alt2 {
    background-color: #0080cc;
}

.program-header h3 {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 10px;
    color: #FFF20D;	
}

.program-header .max-points {
    font-size: 2em;
    font-weight: bold;
    margin-top: 10px;
}

.program-header p {
    margin-top: 10px;
    opacity: 0.9;
}

/* ========================================
   ポイント詳細リスト
   ======================================== */
.point-details {
    margin: 30px 0;
}

.point-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 15px 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0066cc;
}

.point-row .point-label {
    font-size: 1.1em;
    color: #333;
}

.point-row .point-value {
	margin: 0 0 0 auto;
	font-size: 1.8em;
    font-weight: bold;
    color: #0066cc;
    white-space: nowrap;
}

.point-value img {
    vertical-align: middle;
    margin-right: 8px;  /* テキストとの間隔 */
}

/* ========================================
   テーブル
   ======================================== */
.table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border: 1px solid #e0e0e0;
}

table th {
    background-color: #003d7a;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: normal;
    border: 1px solid #003d7a;
}

table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
}

table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* ========================================
   注意事項
   ======================================== */
.notice-box {
    background-color: #fff9e6;
    border: 2px solid #ffcc00;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.notice-box h4 {
    color: #cc6600;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: normal;
}

.notice-box ul {
    margin-left: 20px;
    color: #666;
}

.notice-box li {
    margin: 8px 0;
    line-height: 1.8;
    text-indent: -1em;
}

/* ========================================
   留意事項
   ======================================== */

.lililist ul {
    margin-left: 20px;
    color: #000000;
}

.lililist li {
    margin: 8px 0;
    line-height: 1.8;
    text-indent: -1em;




/* ========================================
   ご利用方法
   ======================================== */
.flow-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.flow-box {
    background: #ffffff;
    padding: 35px;
    margin: 0;
    border-radius: 8px;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* 1つ目: 青 */
.flow-box:nth-child(1) {
    border-color: #1976d2;
    background: rgba(1, 64, 153, 0.1);
}

/* 2つ目: 黄色 */
.flow-box:nth-child(2) {
    border-color: #fbc02d;
	background: rgba(255, 242, 13, 0.1);
}

/* ハイライト */
.highlight-point {
    color: #014099;
    background: linear-gradient(transparent 50%, #FFF20D 50%, #FFF20D 75%, transparent 75%);
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 4px;
}


.flow-box h3 {
    color: #003d7a;
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.flow-box ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
}

.flow-box li {
    margin: 0 0 20px 0;
    padding-left: 60px;
    position: relative;
    line-height: 1.8;
    font-size: 1.05em;
    color: #555;
    counter-increment: step-counter;
}

.flow-box li:last-child {
    margin-bottom: 0;
}

/* ステップ番号のスタイル */
.flow-box li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #1976d2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* 2つ目のボックスは黄色の番号 */
.flow-box:nth-child(2) li::before {
    background: #fbc02d;
    color: #333;
}

/* ステップをつなぐ線 */
.flow-box li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 45px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e0e0e0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .flow-box {
        padding: 30px 25px;
    }
    
    .flow-box h3 {
        font-size: 1.2em;
    }
    
    .flow-box li {
        font-size: 1em;
        padding-left: 55px;
    }
    
    .flow-box li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    
    .flow-box li:not(:last-child)::after {
        left: 16.5px;
    }
}
/* ========================================
   CTA（お問い合わせ）
   ======================================== */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    margin: 60px 0 0;
}

.cta-section h2 {
    font-size: 1.8em;
    color: #003d7a;
    margin-bottom: 30px;
    font-weight: normal;
}

.cta-description {
    font-size: 1.1em;
    color: #666;
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 50px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    transition: background-color 0.3s;
    border: 2px solid #0066cc;
}

.btn:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

.btn-outline {
    background-color: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-outline:hover {
    background-color: #f0f7ff;
}

/* ========================================
   フッター
   ======================================== */
.page-footer {
    background-color: #003d7a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.page-footer p {
    margin: 8px 0;
    opacity: 0.9;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.4em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .section-subtitle {
        font-size: 1.2em;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        min-width: 100%;
        margin: 10px 0;
    }

    .stat-box .stat-number {
        font-size: 2.5em;
    }

    .point-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .program-header {
        margin: -40px -20px 30px -20px;
    }

    .program-section {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    table {
        font-size: 0.9em;
    }

    table th,
    table td {
        padding: 10px;
    }
}