/* 基本スタイル */
:root {
    --primary-color: #007bff; /* メインカラー (例: ブルー系) */
    --secondary-color: #6c757d; /* サブカラー (例: グレー系) */
    --accent-color: #ffc107; /* アクセントカラー (例: イエロー系) */
    --light-bg: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #ffffff;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --header-height: 70px;
}

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




/* ===== レスポンシブ対応 ===== */

	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}


@media (max-width: 768px) {
	.sp{
		display: block!important;
	}
	
	.pc{
		display: none!important;
	}
}

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 2.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: darken(var(--primary-color), 10%);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.logo img {
    height: 50px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.bg-light {
    background-color: var(--light-bg);
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* ヘッダー */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 25px;
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.apply-button-header {
    background-color: var(--accent-color);
    color: var(--dark-text);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.apply-button-header:hover {
    background-color: darken(var(--accent-color), 10%);
    transform: scale(1.05);
}


/* 1. ヒーローセクション */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sales_hero_top_sp.jpg"); /* 仮の画像 */
    background-size: cover;
    background-position: center;
    height: 100vh; /* ビューポートの高さに合わせる */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: var(--header-height); /* ヘッダーの高さを考慮 */
}




@media (min-width: 769px) {
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/top2_pc_bg.webp"); /* 仮の画像 */
	background-size: cover;
        background-repeat: no-repeat;
        background-position-y: 2rem;
	}
}





.hero-content {
    max-width: 800px;
}

.catchphrase {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons .btn {
    margin: 0 10px;
}
.hero-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-text);
    border: none;
}
.hero-buttons .btn-primary:hover {
    background-color: darken(var(--accent-color), 10%);
}
.hero-buttons .btn-secondary {
    border-color: var(--light-text);
    color: var(--light-text);
}
.hero-buttons .btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--dark-text);
}


/* 2. 法人営業部とは？ */
.about-section .about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
    font-size: 1.1rem;
}

.achievements {
    flex: 1;
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.achievements h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.achievements h3 i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.achievements ul {
    list-style: none;
}

.achievements ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}
.achievements ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

/* 3. 働くメリット */
.merits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.merit-item {
    background-color: var(--light-text);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.merit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.merit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

/* 4. 仕事内容 */
.job-description-section .job-details {
    display: flex;
    gap: 40px;
}

.job-main {
    flex: 1.5;
}

.job-main ul {
    list-style: none;
}

.job-main ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.job-main ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px; /* アイコンの幅を固定 */
    text-align: center;
}


.job-schedule {
    flex: 1;
}

.job-schedule .timeline {
    list-style: none;
    position: relative;
    padding-left: 30px; /* 縦線のスペース */
}

.job-schedule .timeline::before { /* タイムラインの縦線 */
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.job-schedule .timeline li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px; /* 丸点のスペース */
}

.job-schedule .timeline li::before { /* 各項目の丸点 */
    content: '';
    position: absolute;
    left: -8.5px; /* (縦線の幅 / 2) + (丸点の半径) */
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--light-text);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.job-schedule .timeline .time {
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}


/* 5. 先輩スタッフの声 */
.interview-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: var(--light-text);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.interview-image {
    flex-shrink: 0;
}
.dummy-image.staff-image {
    width: 180px;
    height: 180px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}

.staff-image img{
    width: 100%;
    border-radius: 50%;
}

/*
.interview-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}
*/
.interview-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
	font-size: 2rem;
}

.interview-content dl dt {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--dark-text);
}
.interview-content dl dd {
    margin-left: 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
    color: var(--secondary-color);
}


/* 6. 求める人物像 */
.ideal-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ideal-list li {
    font-size: 1.1rem;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ideal-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.4rem;
}

/* 7. 募集要項 */
.requirements-table {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.req-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.req-row:last-child {
    border-bottom: none;
}

.req-label {
    flex-basis: 30%;
    font-weight: bold;
    color: var(--primary-color);
}

.req-data {
    flex-basis: 70%;
}
.req-data ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}
.req-data ul li {
    margin-bottom: 5px;
}

/* 8. 応募方法 */
.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    position: relative;
}
.step:not(:last-child)::after { /* ステップ間の矢印（簡易的） */
    content: '\f061'; /* Font Awesome right arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -25px; /* gapの半分 + 矢印の幅の半分 */
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
}
/* 最後の要素の矢印は非表示 */
.step:last-child::after {
    display: none;
}
/* Gridでアイテム数が変わった場合に矢印を調整する必要あり。ここでは簡易的に。 */


.step-number {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.step h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.step small {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.apply-action {
    text-align: center;
}
.apply-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* 9. よくある質問（FAQ） */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden; /* アニメーションのため */
}

.faq-question {
    width: 100%;
    background-color: var(--light-text);
    padding: 20px;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #fdfdfd;
}
.faq-answer p {
    padding: 20px 0;
    margin-bottom: 0;
    border-top: 1px dashed #e0e0e0;
}

/* 10. お問い合わせ */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 10px;
}

.chat-support {
    text-align: center;
}

.chat-window {
    display: none; /* 初期状態は非表示 */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    overflow: hidden;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
    height: 300px; /* 仮の高さ */
    overflow-y: auto; /* 内容が増えたらスクロール */
    display: flex;
    flex-direction: column;
}
.chat-body p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}
.chat-body textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    resize: none;
    min-height: 80px;
    font-family: var(--font-family);
}
.chat-body .btn-primary {
    align-self: flex-end;
}


/* フッター */
.footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    text-align: center;
    padding: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .nav-links { display: none; /* モバイルではハンバーガーメニューにする想定 */ }
    .catchphrase { font-size: 2.8rem; }
    .about-section .about-content { flex-direction: column; }
    .job-description-section .job-details { flex-direction: column; }
    .interview-item { flex-direction: column; text-align: center; }
    .interview-image { margin-bottom: 20px; }
    .apply-steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .step:not(:last-child)::after { display: none; } /* モバイルでは矢印非表示 */
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .hero-section { padding-top: 60px; }
    .catchphrase { font-size: 1.9rem; text-align: left;}
    h1 { font-size: 2.2rem; }
    h2, .section-title { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .section-padding { padding: 60px 0; }
    .merits-grid { grid-template-columns: 1fr; }
    .req-row { flex-direction: column; }
    .req-label { margin-bottom: 5px; flex-basis: auto;}
    .req-data { flex-basis: auto; }
    .apply-steps { grid-template-columns: 1fr; }
    .chat-window { width: 90%; bottom: 10px; right: 5%; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.5rem; }
    .apply-button-header { padding: 8px 15px; font-size: 0.9rem; }
    .hero-buttons .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .achievements { padding: 20px; }
    .merit-item { padding: 20px; }
    .interview-item { padding: 20px; }
    .dummy-image.staff-image { width: 120px; height: 120px; font-size: 1.2rem;}
    .faq-question { padding: 15px; font-size: 1rem;}
    .faq-answer p { padding: 15px 0;}
}

/* アニメーション効果 (オプション) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s ease-out forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* エントリーフォーム */

.form-title{
	margin: 70px 0 40px;
}

#entry h1{
	  text-align: center;
	  color: #333;
	margin-bottom: 50px;
}

.entry_innner{
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--light-text);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}


        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        input[type="text"],
        input[type="tel"],
        input[type="date"],
        select {
            width: calc(100% - 22px)!important;
            padding: 10px!important;
            margin-bottom: 20px!important;
            border: 1px solid #ccc!important;
            border-radius: 4px!important;
            box-sizing: border-box!important;
		    font-size: 18px;
        }
        .radio-group label {
            font-weight: normal;
            margin-right: 15px;
			margin-bottom: 10px;
		    position: relative;
		    top: 5px;
        }
        .radio-group input[type="radio"] {
            margin-right: 5px;
        }
        button[type="submit"] {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--light-text);
    cursor: pointer;
    font-size: 16px;
    min-width: 200px;
        }
        button[type="submit"]:hover {
            background-color: #218838;
        }
        .form-group {
            margin-bottom: 1.5em;
        }

.radio-group{
	display: flex;
	align-items: center;
}


/*エントリーフォームend*/
