/* ====================================================================
   ページ専用スタイル（pages.css）
   
   【対象ページ】
   - index.html: Job Section, Interview Section（トップページ内セクション）
   - message.html: Message Page（メッセージページ全体）
   - data.html: Data Page（データページ全体）
   - interview.html: Interview Page（インタビューページ全体）
   - jobs.html: Jobs Page（職種ページ全体）
   - entry/: Entry Form（エントリーフォーム全体）
   
   【レスポンシブ対応】
   - PCサイズ（1024px以上）: このファイルで基本スタイル定義
   - タブレット・モバイル: responsive.cssで対応
   ==================================================================== */

/* ====================================================================
   1. トップページ - Job Section（募集職種セクション）
   ==================================================================== */
/* === Job Section Styles (from job-section.css) === */
.job-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.job-section .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0px;
}

.job-section-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 0;
}

.section-title-group {
    flex-shrink: 0;
    width: 180px;
}

.job-section .section-title-en {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.45;
    letter-spacing: 3%;
    color: #595757;
    margin: 0 0 3px 0;
}

.job-section .section-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.125;
    color: #595757;
    margin: 0;
}

.job-content {
    flex-grow: 1;
    max-width: 600px;
}

.section-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.93;
    color: #595757;
    margin: 26px 0 16px 0;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0;
    border-radius: 48px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
}

.job-item:hover {
    transform: translateY(-2px);
}

.job-item.status-open {
    background-color: #4F9CD4;
}

.job-item.status-closed {
    background-color: #C2C0C3;
}

.job-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 0.79;
    letter-spacing: 5%;
    color: #ffffff;
    margin-left: 50px;
    flex-grow: 1;
}

.job-status {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    padding: 2px 40px;
    border-radius: 16px;
    margin-right: 32px;
    flex-shrink: 0;
}

.job-item.status-open .job-status {
    background-color: #ffffff;
    color: #4F9CD4;
    border: none;
}

.job-item.status-closed .job-status {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* ====================================================================
   2. トップページ - Interview Section（社員インタビュー紹介セクション）
   ==================================================================== */
/* === Interview Section Styles (from interview-section.css) === */
.interview-section {
    background-color: #D0E4F3;
    padding: 56px 0 80px 0;
    overflow: hidden;
}

.interview-section .container {
    max-width: 1072px;
    margin: 0 auto;
    padding: 0 24px;
}

.interview-header {
    max-width: 760px;
    margin: 0 auto 60px auto;
    padding: 0 ;
    text-align: left;
}

.interview-header .section-title-en {
    font-family: var(--font-en);    
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.45;
    color: #595757;
    margin: 0 0 3px 0;
    text-align: left;
}

.interview-header .section-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.125;
    color: #595757;
    margin: 0;
    text-align: left;
}

.interview-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1084px;
}

.slider-arrow {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow.prev {
    left:0px;
    /* left: 50%;
    top: -40px;
    transform: translateX(-280px); */
}

.slider-arrow.next {
    right:0px;
    /* right: -4%;
    top: -40px;
    transform: translateX(-280px); */
}

.slider-arrow:hover {
    /* transform: translateX(-280px) scale(1.1); */
    display:unset;
}

.slider-arrow.next:hover {
    /* transform: none; */
    display:unset;
}

.slider-arrow svg {
    width: 14px;
    height: 28px;
}

.interview-slider {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 400px;
}

.interview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

.interview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(79, 156, 212, 0.2);
}

.interview-card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.interview-card:hover .card-tag {
    background-color: #4F9CD4;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 156, 212, 0.3);
}

.interview-card:hover .card-name {
    color: #4F9CD4;
    transform: translateY(-2px);
}

.interview-card:focus {
    outline: 2px solid #4F9CD4;
    outline-offset: 4px;
}

.interview-card:active {
    transform: translateY(-4px) scale(1.01);
}

.interview-card-main {
    width: 207px;
    z-index: 1;
}

.interview-card-main .card-tag {
    background-color: #FFFFFF;
    border: 1px solid #4F9CD4;
    color: #4F9CD4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    padding: 2px 40px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card-main .card-image {
    width: 207px;
    height: 276px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.interview-card-main .card-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #595757;
    text-align: center;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card-medium {
    width: 156px;
    margin-top: 75px;
}

.interview-card-small {
    width: 134px;
    margin-top: 108px;
}

.interview-card-medium .card-tag {
    background-color: #FFFFFF;
    border: 1px solid #4F9CD4;
    color: #4F9CD4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size:10px;
    /* font-size: 16px; */
    line-height: 1.69;
    text-align: center;
    padding: 2px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    white-space: nowrap;
    width: 95px;
    height: 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card-medium .card-image {
    width: 156px;
    height: 211px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.interview-card-medium .card-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.69;
    color: #595757;
    text-align: center;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card-small .card-tag {
    background-color: #FFFFFF;
    border: 1px solid #4F9CD4;
    color: #4F9CD4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 1.93;
    text-align: center;
    padding: 2px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    white-space: nowrap;
    width: 95px;
    height: 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card-small .card-image {
    width: 134px;
    height: 176px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.interview-card-small .card-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.93;
    color: #595757;
    text-align: center;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================================================
   3. メッセージページ（message.html）- ヒーローセクション・コンテンツ
   ==================================================================== */
/* === Message Page Styles (from message-page.css) === */
.message-page main {
    padding-top: 0 !important;
}

.message-page section {
    padding: 0;
}

.message-hero-section {
    position: relative;
    width: 100%;
    height: 680px;
    background-image: url('../images/message_hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-hero-section .container {
    position: relative;
    max-width: 760px;
    width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-title-group {
    margin-bottom: 150px;
}

.message-hero-section .message-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 0.97;
    letter-spacing: 7%;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-align: left;
}

.message-hero-section .message-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 15%;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.ceo-info {
    position: absolute;
    bottom: 114px;
    left: 0;
    margin: 0;
}

.ceo-info .company-name,
.ceo-info .position {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 6px;
}

.ceo-info .ceo-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
}

.message-sign {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 114.97px;
    height: 34.73px;
    margin: 0;
}

.message-sign img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.message-content-section {
    padding: 40px 0 100px 0;
    background-color: #FFFFFF;
}

.message-content-section .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 100px 0;
}

.message-page-content {
    width: 100%;
    display: block;
}

.content-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.6;
    color: #4F9CD4;
    margin: 0 0 27px 0;
    text-align: left;
    width: 100%;
}

.message-content-section .message-text {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    flex: none !important;
}

.message-content-section .message-text p {
    font-family: 'Noto Sans JP', sans-serif;
    /* font-weight: 700; */
    font-weight:lighter;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 0px 0;
    text-align: left;
}

.message-content-section .message-text p:last-child {
    margin-bottom: 0;
}

/* ====================================================================
   4. データページ（data.html）- データ表示・可視化セクション
   ==================================================================== */
/* === Date Page Styles (from date-page.css, formerly data-display.css) === */

.date-page-section {
    padding: 40px 0 100px 0;
}

.data-hero-section {
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
}

.date-page-section .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0px;
}

.data-hero-content {
    text-align: left;
}

.data-title {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: 0.07em;
    color: #9FA0A0;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.data-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 2.46;
    color: #9FA0A0;
    margin: 0;
}

.data-display-section {
    padding: 0px 0 120px;
    background-color: #ffffff;
}

.data-display-section .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.data-grid {
    display: grid;
    grid-template-columns: 354px 354px;
    gap: 60px 52px;
    justify-content: center;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃えに変更 */
    text-align: left;
    width: 354px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.data-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.data-item:nth-child(5) {
    grid-column: 1;
}

.data-icon {
    flex-shrink: 0;
    width: 354px;
    height: 200px;
    display: flex;
    align-items: flex-start; /* 左揃えに変更 */
    justify-content: flex-start; /* 左揃えに変更 */
    background-color: #ffffff;
    border-radius: 0;
    margin-bottom: 10px;
}

.data-icon img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    width: auto !important; /* style.cssの320px固定を上書き */
    height: auto !important; /* style.cssの影響を上書き */
    margin: 0 !important;
}

.data-number {
    display: flex;
    align-items: baseline;
    justify-content: flex-start; /* 左揃えに変更 */
    gap: 8px;
    margin: 0 0 10px 0;
}

.data-number .number {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #4F9CD4;
    transition: all 0.3s ease;
}

.data-number .unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #4F9CD4;
    line-height: 1;
}

.data-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.69;
    color: #000000;
    margin: 0;
    width: 100%;
    max-width: 354px;
}

.gender-ratio {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 0 10px 0;
}

.gender-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gender-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #9FA0A0;
    letter-spacing: 0.02em;
}

.gender-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.gender-number .number {
    font-family: 'Poppins', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: #4F9CD4;
    transition: all 0.3s ease;
}

.gender-number .unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #4F9CD4;
    line-height: 1;
}

/* ====================================================================
   5. インタビューページ（interview.html）- 社員インタビュー詳細
   ==================================================================== */
/* === Interview Page Styles (from interview-page.css) === */
.interview-page {
    background-color: #ffffff;
}

.interview-content-section .container,
.interview-hero-section .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0px;
}

.interview-hero-section {
    padding: 40px 0 0 0px;
    background-color: #ffffff;
}

.interview-hero-content {
    text-align: left;
}

.interview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: 7%;
    color: #9FA0A0;
    margin: 0 0 8px 0;
}

.interview-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 2;
    color: #9FA0A0;
    margin: 0;
}

.interview-content-section {
    padding: 40px 0 100px;
    background-color: #ffffff;
}

.interview-profile {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 45px;
}

.profile-image {
    width: 320px;
    height: 386px;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.profile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 386px;
}

.profile-title {
    margin-bottom: 30px;
}

.title-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.7777777777777777;
    color: #595757;
    margin: 0;
}

.profile-info {
    position: relative;
    margin-top: 20px;
    width: 320px;
}

.profile-name-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.department-tag {
    background-color: #4F9CD4;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding: 2px 25px;
    border-radius: 16px;
    border: 1px solid #4F9CD4;
    white-space: nowrap;
    display: inline-block;
}

.profile-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #000000;
    margin: 0;
}

.interview-qa {
    margin-top: 60px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.qa-item {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.qa-item:last-child {
    margin-bottom: 0;
}

.question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
}

.q-mark {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #4F9CD4;
    flex-shrink: 0;
    margin-top: 3px;
    min-width: 19px;
}

.question {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #4F9CD4;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100% - 19px - 19px);
}

.answer {
    margin-left: 38px;
    max-width: calc(100% - 38px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.answer p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ====================================================================
   6. 職種ページ（jobs.html）- 職種詳細・募集要項
   ==================================================================== */
/* === Jobs Page Styles (from jobs-page.css) === */
.job-hero-section {
    position: relative;
    background: url('../images/jobs/jobs_main.jpg');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-hero-content {
    position: relative;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

.job-title {
    position: absolute;
    width: 330px;
    height: 64px;
    left: calc(50% - 307px/2 - 226.5px);
    top: 50%;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 900;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    transform: translateY(-50%);
}

.outline-section {
    background-color: #FFFFFF;
    padding: 40px 0;
}

.outline-section-header {
    max-width: 759px;
    margin: 0 auto 40px auto;
}

.outline-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 12%;
    color: #9FA0A0;
    margin: 0;
}

.outline-content {
    max-width: 759px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.outline-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outline-tag {
    background-color: #4F9CD4;
    border-radius: 40px;
    padding: 12px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: auto;
    box-sizing: border-box;
}

.outline-tag span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
}

.outline-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.875;
    color: #000000;
    margin: 0;
}

.feature-cards-section {
    background-color: #FFFFFF;
    padding: 20px 0 100px 0;
}

.feature-cards {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-card {
    background-color: #FFFFFF;
    border: 1.5px solid #4F9CD4;
    border-radius: 4px;
    padding: 18px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.7;
    color: #4F9CD4;
    margin: 0;
}

.feature-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-height: 1.875;
    color: #595757;
    margin: 0;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding-top: 0px;
}

.career-pass-section {
    background: linear-gradient(135deg, #4294C2 0%, #80B6DE 55%, #FFFFFF 100%);
    padding: 100px 0;
}

.career-pass-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1em;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 49px 0;
}

.career-pass-image {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.career-pass-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.career-pass-desktop {
    display: block;
}

.career-pass-mobile {
    display: none;
}

/* ====================================================================
   7. エントリーページ（entry/）- フォーム・確認画面・完了画面
   ==================================================================== */
/* === Entry Form Styles (from forms.css) === */
.alert {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid transparent;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert p {
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
}

.alert p + p {
    margin-top: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
    padding: 0px 0px 0px 0;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.entry-page-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    padding-top: 60px;
}

.entry-title-section {
    text-align: left;
    margin-bottom: 40px;
}

.entry-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    color: #9FA0A0;
    margin: 0 0 10px 0;
    letter-spacing: 0.07em;
}

.entry-sub-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    color: #9FA0A0;
    margin: 0;
}

.entry-content {
    background-color: #DFEDF7;
    padding: 60px 0 80px 0;
    margin: 40px 0 0 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.entry-description {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: left;
    padding: 0 0px;
}

.entry-description p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.93;
    color: #595757;
    margin: 0;
}

.entry-form-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0px;
}

.entry-form {
    background-color: #FFFFFF;
    border: 1px solid #9FA0A0;
    border-radius: 0;
    padding: 50px;
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
    border-bottom: 1px solid #9FA0A0;
    min-height: 70px;
    box-sizing: border-box;
}

.form-group:last-of-type {
    border-bottom: none;
}

.form-row {
    display: flex;
    align-items: center;
    min-height: 50px;
}

.form-label-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    flex-shrink: 0;
}

.form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.69;
    color: #000000;
    margin: 0;
}

.form-required {
    background-color: #4F9CD4;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1em;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    min-width: 35px;
    height: 17px;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.form-input {
    flex: 1;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #9FA0A0;
    border-radius: 4px;
    padding: 0 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
    margin-left: 20px;
    max-width: 500px;
}

.form-input:focus {
    outline: none;
    border-color: #4F9CD4;
}

.form-input.error {
    border-color: #ff4757;
    background-color: #fff5f5;
}

.form-input.error:focus {
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-input.valid {
    border-color: #2ed573;
    background-color: #f8fff8;
}

.form-input.valid:focus {
    border-color: #2ed573;
    box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.1);
}

.error-message {
    display: none;
    color: #ff4757;
    font-size: 12px;
    margin-top: 8px;
    margin-left: 180px;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.error-message.show {
    display: block;
}

.file-input-wrapper {
    flex: 1;
    margin-left: 20px;
    max-width: 480px;
}

.form-file-input {
    display: none;
}

/* === ファイルアップロードエリア === */
.file-input-area {
    min-height: 80px;
    background-color: #FFFFFF;
    border: 2px dashed #9FA0A0;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.file-input-area:hover {
    border-color: #4F9CD4;
    background-color: #f8fafe;
}

.file-input-area.dragover {
    border-color: #4F9CD4;
    background-color: #e8f4fd;
    transform: scale(1.02);
}

.file-input-area.has-file {
    border-color: #2ed573;
    background-color: #f8fff8;
}

.file-input-area.error {
    border-color: #ff4757;
    background-color: #fff5f5;
}

.file-input-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.file-input-text {
    font-size: 14px;
    color: #595757;
    font-weight: 400;
}

.file-input-formats {
    font-size: 12px;
    color: #9FA0A0;
    font-weight: 300;
}

.file-selected-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #f0f8ff;
    border: 1px solid #4F9CD4;
    border-radius: 6px;
    margin-top: 8px;
}

.file-selected-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex: 1;
    margin-right: 8px;
    word-break: break-all;
}

.file-selected-size {
    font-size: 12px;
    color: #666;
    margin-right: 12px;
    flex-shrink: 0;
}

.file-remove-btn {
    width: 24px;
    height: 24px;
    border: none;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.file-remove-btn:hover {
    background-color: #ff3742;
}

/* === プライバシーポリシーセクション === */
.policy-section {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 30px 0px !important;
    border-bottom: none !important;
    gap: 40px !important;
}

.policy-content {
    flex: 1;
}

.policy-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.69;
    color: #000000;
    margin: 0 0 20px 0;
}

.policy-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #4F9CD4;
    text-decoration: underline;
}

/* === チェックボックスグループ === */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
    width: 100%;
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 1px solid #9FA0A0;
    border-radius: 2px;
    background-color: #FFFFFF;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #4F9CD4;
    border-color: #4F9CD4;
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.checkbox-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.69;
    color: #000000;
}

/* === 送信ボタンエリア === */
.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

/* === 送信ボタン === */
.btn-submit {
    width: 182px;
    height: 51px;
    background-color: #4F9CD4;
    color: #FFFFFF;
    border: none;
    border-radius: 27px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3a7db0;
}

.btn-submit .arrow {
    font-weight: 700;
    font-size: 20px;
}

/* ====================================================================
   8. 職種ページ - 募集要項セクション（Figma完全再現・2カラムdiv構造）
   ==================================================================== */
/* === Recruitment Section Styles (Figma完全再現・2カラムdiv構造) === */
.recruitment-section {
  background: #fff;
  padding: 60px 0 100px 0;
}

.recruitment-header {
  max-width: 760px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.recruitment-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #9FA0A0;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.recruitment-label {
  display: inline-block;
  background: #4F9CD4;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 40px;
  padding: 0 17px;
  margin-left: 0;
  letter-spacing: 0;
  line-height: 1.93;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.recruitment-content {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 0;
}

.recruitment-row {
  position: relative;
  width: 100%;
  height: 46px;
  border-bottom: 1px solid #9FA0A0;
  display: flex;
  align-items: flex-start;
  padding: 0 0 0px 0px;
  margin: 14px 0px 0px 0px;
}

.recruitment-row:last-child {
  border-bottom: none;
}

.recruitment-item-label {
  position: absolute;
  left: 58px;
  top: 0;
  width: 80px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.93;
  text-align: left;
  height: 27px;
  display: flex;
  align-items: center;
}

.recruitment-item-content {
  position: absolute;
  left: 262px;
  top: 0;
  width: calc(760px - 262px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.75;
  text-align: left;
  min-height: 27px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

/* 複数行コンテンツの場合の高さ調整 */
.recruitment-row:nth-child(2) {
  height: 62px;
}

.recruitment-row:nth-child(6) {
  height: 62px;
}

.recruitment-row:nth-child(12) {
  height: 143px;
}

.recruitment-row:nth-child(13) {
  height: 81px;
}

.recruitment-row:nth-child(2) .recruitment-item-content,
.recruitment-row:nth-child(6) .recruitment-item-content,
.recruitment-row:nth-child(12) .recruitment-item-content,
.recruitment-row:nth-child(13) .recruitment-item-content {
  align-items: flex-start;
  padding-top: 0;
}

/* ====================================================================
   9. エントリーページ - 確認画面専用スタイル
   ==================================================================== */
/* === 確認画面フォーム === */
.confirm-form {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 40px 60px;
    box-shadow: 0px;
}

.confirm-content {
    margin-bottom: 40px;
}

.confirm-item {
    display: flex;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    align-items: flex-start;
}

.confirm-item:last-child {
    border-bottom: none;
}

.confirm-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    min-width: 140px;
    margin-right: 40px;
    flex-shrink: 0;
}

.confirm-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    flex: 1;
    word-break: break-word;
}

.file-size {
    color: #666666;
    font-size: 14px;
    margin-left: 8px;
}

/* === 確認画面ボタン === */
.confirm-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.confirm-buttons form {
    margin: 0 !important;
}

.btn-secondary {
    background-color: transparent;
    color: #666666;
    border: 2px solid #CCCCCC;
    border-radius: 27px;
    padding: 12px 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #F8F9FA;
    border-color: #999999;
    color: #333333;
}

/* ====================================================================
   10. エントリーページ - 送信完了画面専用スタイル
   ==================================================================== */
/* === 送信完了画面フォーム === */
.thanks-form {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.thanks-content {
    text-align: center;
    color: #595757;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #595757;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 16px;
    line-height: 1.6;
    color: #595757;
    margin-bottom: 16px;
}

.thanks-contact {
    margin-bottom: 40px;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #595757;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #595757;
    margin-bottom: 8px;
}

.contact-info .company-name {
    font-weight: 600;
}

.thanks-button {
    text-align: center;
}

.thanks-button .btn-submit {
    width: 280px !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
    display: inline-block !important;
} 