/* 基本設定 */
:root {
    --navy: #002147;
    --blue: #004b8d;
    --accent: #00d4ff;
    --red: #e11d48;
    --risk-bg: #fff5f5;
    --sol-bg: #f0f9ff;
    --rainbow: linear-gradient(to right, #4facfe 0%, #00f2fe 20%, #72df52 40%, #f9d423 60%, #ff4e50 80%, #a18cd1 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.2rem; color: var(--navy); text-align: center; margin-bottom: 40px; font-weight: bold; line-height: 1.4; }
.center { text-align: center; }
.mb_10 { margin-bottom: 10px; }
.mb_30 { margin-bottom: 30px; }
.small { font-size: 0.6em; }

/* 共通フォントリセット（iPhone Safari明朝体対策） */
input, select, textarea, button { font-family: inherit; }

/* BLOCK 1: Hero */
.hero {
    background: var(--navy);
    background-image: linear-gradient(rgba(0,33,71,0.85), rgba(0,33,71,0.85)), url('https://hr-ai-lab.jp/tmp/common/img/image_0.jpg');
    background-size: cover;
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}
.emergency-badge {
    display: inline-block; background: var(--red); color: #fff; padding: 5px 20px; font-weight: bold; border-radius: 30px; margin-bottom: 20px; letter-spacing: 2px;
}
.hero-sub { color: var(--accent); font-weight: bold; margin-bottom: 15px; font-size: 1.1rem; }
.hero-title { font-size: 3.2rem; line-height: 1.3; margin-bottom: 25px; font-weight: 900; }
.hero-lead { font-size: 1.3rem; margin-bottom: 30px; font-weight: bold; }
.hero-description p { margin-bottom: 10px; font-size: 1.1rem; }
.btn-primary { 
    display: inline-block; background: #fff; color: var(--navy); margin-top: 30px;
    padding: 20px 60px; border-radius: 50px; font-weight: bold; font-size: 1.3rem; text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4); transition: transform 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); }

/* BLOCK 1後半: Survey Data */
.survey-data { padding: 60px 0; background: #f8fafc; border-bottom: 4px solid var(--red); }
.survey-title { text-align: center; color: var(--red); font-weight: bold; font-size: 1.8rem; margin-bottom: 40px; line-height: 1.4; }
.survey-title span { font-size: 1.2rem; color: #333; display: block; margin-top: 10px; }
.survey-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.survey-box { flex: 1; min-width: 280px; background: #fff; padding: 30px 20px; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--red); }
.survey-box.blue-box { border-top-color: var(--blue); }
.survey-head { font-weight: bold; color: #333; font-size: 1.1rem; }
.survey-number { font-size: 4.5rem; font-weight: 900; color: var(--red); line-height: 1; margin: 15px 0; font-family: Impact, sans-serif; }
.survey-number.blue { color: var(--blue); }
.survey-desc { font-size: 0.95rem; text-align: left; color: #555; }

/* BLOCK 2: Problem */
.problem { padding: 80px 0; background: #fff; }
.check-list { list-style: none; max-width: 750px; margin: 0 auto; }
.check-list li { 
    background: #f8fafc; padding: 18px 25px; margin-bottom: 12px; 
    border-radius: 8px; border-left: 5px solid var(--red);
    display: flex; align-items: center; font-size: 1.1rem; font-weight: bold;
}
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); margin-right: 15px; font-size: 1.2rem; }
.problem-footer { text-align: center; margin-top: 40px; font-weight: bold; color: var(--red); font-size: 1.2rem; }
.marker-yellow { background: linear-gradient(transparent 50%, #E8CA14 50%); padding: 0 2px; }

/* BLOCK 3: Deep Dive (Risks) */
.deep-dive { padding: 80px 0; background: #f8fafc; }
.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.risk-card { background: #fff; border: 2px solid #fee2e2; border-radius: 15px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.risk-header { color: var(--red); font-weight: bold; font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.risk-text { font-size: 0.95rem; margin-bottom: 20px; color: #444; }
.solution-box { background: var(--sol-bg); padding: 20px; border-radius: 10px; border-left: 4px solid var(--accent); }
.solution-box strong { color: var(--blue); display: block; margin-bottom: 8px; font-size: 1.1rem; }
.solution-box p { font-size: 0.95rem; color: #333; }

/* BLOCK 4 & 6: Benefits */
.benefits { padding: 80px 0; background: #fff; }
.benefits-container { max-width: 900px; margin: 0 auto; background:rgba(255,255,255,0.8) ; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.benefits-title { text-align: center; color: var(--blue); font-size: 1.5rem; font-weight: bold; margin-bottom: 30px; }
.benefit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 15px; }
.benefit-card { background: #fff; padding: 15px 20px; border-radius: 8px; font-weight: bold; display: flex; align-items: center; gap: 15px; border: 1px solid #e2e8f0; }
.benefit-card i { color: #10b981; font-size: 1.4rem; }

/* BLOCK 5: Program */
.program { padding: 100px 0; background: var(--navy); color: #fff; }
.section-title.white { color: #fff; margin-bottom: 60px; }
.seminar-flex { display: flex; gap: 30px; justify-content: center; position: relative; }
@media (min-width: 769px) {
    .seminar-flex::after { content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; color: var(--accent); z-index: 2; }
}
.seminar-box { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); padding: 40px; border-radius: 20px; transition: 0.3s; }
.seminar-box:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); border-color: var(--accent); }
.date-tag { background: var(--accent); color: var(--navy); display: inline-block; padding: 8px 20px; border-radius: 30px; font-weight: bold; margin-bottom: 20px; }
.seminar-box h3 { font-size: 1.6rem; margin-bottom: 10px; color: #fff; }
.seminar-sub { font-size: 1rem; color: var(--accent); font-weight: bold; margin-bottom: 25px; }
.program-detail { list-style: none; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.program-detail li { position: relative; padding-left: 25px; margin-bottom: 15px; font-size: 0.95rem; opacity: 0.9; }
.program-detail li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent); font-size: 0.9rem; top: 3px; }

/* BLOCK 7: Target */
.target { padding: 80px 0; background: #fff; }
.target-box { max-width: 800px; margin: 0 auto; background: #f8fafc; padding: 50px; border-radius: 15px; border-top: 5px solid var(--blue); }
.target-list li { list-style: none; padding: 18px 0; border-bottom: 1px dashed #cbd5e1; display: flex; align-items: center; gap: 15px; font-weight: bold; font-size: 1.1rem; color: #333; }
.target-list li:last-child { border-bottom: none; }
.target-list li i { color: var(--blue); font-size: 1.5rem; width: 30px; text-align: center; }
.target-footer { text-align: center; margin-top: 30px; font-weight: bold; color: var(--red); font-size: 1.2rem; }

/* BLOCK 8: Instructors */
.instructors { padding: 80px 0; background: #f8fafc; }
.instructor-intro { text-align: center; margin-bottom: 50px; font-size: 1.1rem; font-weight: bold; }
.instructor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.inst-card { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 5px solid var(--accent); text-align: center; }
.inst-card img { border-radius: 50%; max-width: 150px; height: auto; margin-bottom: 15px; }
.inst-name { font-size: 1.4rem; font-weight: bold; color: var(--navy); margin-bottom: 5px; }
.inst-title { font-size: 0.9rem; color: var(--blue); font-weight: bold; margin-bottom: 15px; }
.inst-desc { font-size: 0.9rem; text-align: left; color: #555; }

/* BLOCK 9: CTA */
.cta { padding: 100px 0; text-align: center; background: #f1f5f9; }
.cta h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 30px; line-height: 1.4; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-highlight { font-size: 1.3rem; font-weight: bold; color: var(--red); margin: 30px 0; }
.apply-info { background: var(--navy); color: #fff; display: inline-block; padding: 10px 30px; border-radius: 30px; font-weight: bold; margin-bottom: 40px; }
.note { font-size: 0.85rem; color: #666; margin-top: 10px; text-align: left; }

.footer { background: #1a1a1a; color: #999; padding: 50px 0; text-align: center; }
.footer p { margin-bottom: 10px; }


.pc_no{
	display: none;
}

/* Responsive */
@media (max-width: 768px) {
	
.pc_no{
	display: block;
}	
	
.cta h2 {
    font-size: 2rem;

}	
	
	
    .hero-title { font-size: 2rem; }
    .hero-lead { font-size: 1.1rem; }
    .section-title { font-size: 1.6rem; }
    .survey-number { font-size: 3.5rem; }
    .risk-grid, .seminar-flex { flex-direction: column;
}
    .risk-grid {
    display:block;
}
	.risk-card {
		margin-bottom: 10PX;
	}
	
	
.marker-yellow {
    background: none;
}	

    .seminar-flex::after { content: "\f0d7"; top: auto; bottom: -30px; left: 50%; transform: translateX(-50%); }
    .benefits-container, .target-box { padding: 30px 20px; }
    .target-list li { font-size: 1rem; }
	
	.benefit-list {
		display: block;
	}	
	
	.benefit-card {
		margin-bottom: 12px;
	}


}

.benefits {
	    background-image: url('https://hr-ai-lab.jp/tmp/common/img/happy.png'); 
	background-size:cover;
	background-attachment: fixed;
}

.target {
	    background-image: url('https://hr-ai-lab.jp/tmp/common/img/happy2.jpg');
	background-position: bottom;
	background-repeat: no-repeat; 
	background-size:100% auto;
	background-attachment: fixed;
}

.target-box {
    background:rgba(255,255,255,0.9);

}


/* style.css の末尾などに追記 */

/* 数字要素に幅を持たせ、カウントアップ時に文字が揺らぐのを防ぐ */
.survey-number span {
    display: inline-block;
    /*text-align: right;*/
    width: 1.5em; /* 桁数に合わせて調整してください。91.8%ならこの程度 */
}

/* 4.1%など小数点がつく場合のための調整 */
#count_guideline, #count_utilization {
    width: 2em; 
}