
/* 変数定義 */
:root {
    --primary: #558b2f;
    --primary-dark: #0a7036;
    --primary-light: #f1f8e9;
    --section-bg: #f9fbf7;
    --solution: #910000;
    --stext: #f7ff00;
    --orange: #ff9800;
    --demo-blue: #0056b3; /* デモボタン用の青色を追加 */
    --text: #333;
    --white: #ffffff;
}

/* 基本設定 */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーロー */
.page .hero-full {
    background-image: url('../img/career/eye.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-overlay {
	background-color: rgba(0, 0, 0, 0.55);
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 0 10px 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content h1 {
	font-size: 3.2rem;
	line-height: 1.3;
	margin-bottom: 25px;
	text-shadow: 0 2px 15px rgba(0,0,0,0.6);
	position: static;
	color: white;
	font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    font-weight: bold;
}

.badge-outline {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 25px;
}

/* セクション共通 */
.page section {
	margin-top: 0;
	margin-bottom: 0;
	padding: 100px 0;
}

.page h2.section-title {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2rem;
	font-weight: bold;
	background-color: transparent;
	padding: 0;
	color: initial;
}

.section-title span {
    color: var(--primary);
    border-bottom: 3px solid var(--orange);
}

.bg-green-light {
    background-color: var(--section-bg);
}

/* ダークグリーン背景セクション */
.section-dark-green{
    background-color: var(--primary-dark);
    color: var(--white);
}

.page .section-dark-green h2.section-title{
    color: var(--white);
}

.section-dark-green .section-title {
    color: var(--white);
}

.section-dark-green .section-title span {
    color: var(--white);
    border-bottom: 3px solid var(--orange);
}

/* 悩みセクション */
.problem-minimal-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 150px;
}

.problem-item {
    text-align: center;
    flex: 1;
}

.problem-item p{
	font-size:20px;
}

.icon-circle {
    font-size: 50px;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.solution-inner {
    display: inline-block;
    border: 3px solid var(--solution);
    padding: 30px 60px;
    position: relative;
    border-radius: 10px;
    background: var(--white);
    text-align: center;
}

.solution-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--solution);
    color: var(--white);
    padding: 2px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
}

.solution-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--solution);
    margin: 0;
}

.solution-message {
    text-align: center;
}

/* 概要セクション */
.summary-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.summary-image {
    flex: 1;
    overflow: hidden;
}

.summary-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--white);
}

.summary-text {
    flex: 1.2;
    text-align: left;
}

.summary-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--white);
    margin: 0;
}

.summary-text strong {
    color: var(--stext);
    font-weight: bold;
}

/* 特長カード */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card .icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: block;
}

.page .card h3 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 1.2rem;
	padding: 0;
	background-color: transparent;
}

.card-text {
    text-align: left;
    font-size: 0.95rem;
}

/* 期待できる効果 */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary);
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 10px;
}

.page .benefit-card h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--primary);
	padding: 0;
	background-color: transparent;
}

/* デモ案内セクション */
.demo-invite {
    text-align: center;
}

.demo-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-demo {
    display: inline-block;
    background: var(--demo-blue); /* 色を青色に変更 */
    color: var(--white);
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
    transition: 0.3s;
    font-size: 1.2rem;
}

.btn-demo:hover {
    transform: translateY(-3px);
    background: #004494; /* ホバー時は少し濃い青 */
}

/* CTAセクション */
.cta-section {
    text-align: center;
    padding: 120px 0;
}

.page h2.cta-title {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
	background-color: transparent;
	padding: 0;
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--orange);
    color: var(--white);
    padding: 25px 80px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
    font-size: 24px;
		margin: 1em 0;
}

.btn-cta:hover {
    transform: translateY(-5px);
    background: #ffb74d;
}

/* ボタン（共通・旧来用） */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255,152,0,0.5);
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

/* レスポンシブ */
.pc-only {
    display: block;
}

@media (max-width: 992px) {
    .summary-flex {
        flex-direction: column;
        padding: 20px;
        gap: 40px;
    }
    .summary-text {
        text-align: left;
    }
    .summary-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .pc-only {
        display: none;
    }
    .problem-minimal-grid {
        flex-direction: column;
        gap: 30px;
    }
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .solution-inner {
        padding: 25px 20px;
        width: 100%;
    }
    .summary-text p {
        font-size: 1rem;
    }
    .btn-cta {
        padding: 20px 40px;
        width: 100%;
    }
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}