ul {
    margin: 0 0 0 1.5em;
    padding: 0;
}

.footer-grid .footer-links {
    margin: 0;
}

.w-full.rounded-lg.shadow-lg {
    width: 51.36%;
    aspect-ratio: 16/9;
}

.font-bold {
    font-weight: bold;
}

.mbl-4 {
    margin-left: 16px;
    margin-bottom: 16px;
}

/* CSS */
.recruit_message_section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.recruit_message_img_wrap {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.recruit_message_img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.recruit_message_img:hover {
    transform: scale(1.05);
}

.recruit_message_text {
    flex: 2 1 500px;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    /* jQueryでアニメーション */
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.recruit_message_text.visible {
    opacity: 1;
    transform: translateY(0);
}

.recruit_message_title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2a4d69;
    font-weight: 700;
    border-left: 5px solid #2a4d69;
    padding-left: 0.6rem;
}

.recruit_message_signature {
    margin-top: 2rem;
    font-weight: 600;
    text-align: right;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .recruit_message_section {
        flex-direction: column;
        text-align: center;
    }

    .recruit_message_text {
        text-align: left;
        margin-top: 1.5rem;
    }

    .recruit_message_signature {
        text-align: center;
    }
}


.confirmation-text {
    margin-bottom: 40px;
}

/* よくあるご質問のスタイル改善 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.faq-question h3::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    display: block;
    content: 'Q.';
    color: #bf3232;
}

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

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    color: #3182ce;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background-color: #f8fafc;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.faq-answer p::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    margin: 0 0 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}



/* 採用情報ページ専用スタイル */
.recruit-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('/assets/img/recruit/recruit_hero.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.recruit-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.recruit-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.recruit-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.recruit-section {
    padding: 5rem 0;
}

.recruit-section:nth-child(even) {
    background-color: #f8fafc;
}

.recruit-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.recruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recruit-card {
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.recruit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.recruit-card-image {
    height: 200px;
    overflow: hidden;
}

.recruit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.recruit-card:hover .recruit-card-image img {
    transform: scale(1.05);
}

.recruit-card-content {
    padding: 1.5rem;
}

.recruit-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recruit-card-description {
    color: #4a5568;
    margin-bottom: 1rem;
}

.recruit-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.recruit-value {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.recruit-value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    padding: 1rem;
    background-color: #ebf8ff;
    border-radius: 50%;
    color: #3182ce;
}

.recruit-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.recruit-table th,
.recruit-table td {
    padding: 1rem;
    border: 1px solid #b6bac0;
}

.recruit-table th {
    background-color: #e7eef8;
    font-weight: 700;
    text-align: left;
    width: 30%;
}

.recruit-table td {
    background-color: #fff;
}

.recruit-table ul li::marker {
    color: #ff750b;
}

/* 採用プロセスのスタイル修正 */
/* 採用プロセスのスタイル修正 - 矢印バージョン（修正版） */
.recruit-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    gap: 3.5rem;
}

.recruit-process-step {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

/* 矢印のスタイル - 修正版 */
.recruit-process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -2.5rem;
    font-size: 2rem;
    color: #3182ce;
    transform: translateY(-50%);
    z-index: 2;
}

.recruit-process-number {
    width: 3rem;
    height: 3rem;
    background-color: #3182ce;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: -3.5rem auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px #fff;
}

.recruit-process-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #3182ce;
}




.recruit-testimonials {
    margin-top: 3rem;
}

.recruit-testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.recruit-testimonial:last-child {
    margin-bottom: 0;
}

.recruit-testimonial-image {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.recruit-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-testimonial-content {
    flex: 1;
    min-width: 300px;
}

.recruit-testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.recruit-testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #3182ce;
    line-height: 1;
}

.recruit-testimonial-author {
    font-weight: 700;
}

.recruit-testimonial-position {
    color: #718096;
}

/* 応募フォーム専用スタイル */
.application-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background-color: #fff;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #718096;
}

.form-error {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #e53e3e;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e53e3e;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-input.error+.form-error,
.form-select.error+.form-error,
.form-textarea.error+.form-error {
    display: block;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.form-progress-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding-bottom: 1.5rem;
}

.form-progress-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
}

.form-progress-step.active::before {
    background-color: #4f46e5;
}

.form-progress-step.completed::before {
    background-color: #48bb78;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-required {
    color: #e53e3e;
    margin-left: 0.25rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: #f0fff4;
    border-radius: 0.375rem;
    border: 1px solid #c6f6d5;
}

.form-success-icon {
    display: block;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #48bb78;
}

.form-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2f855a;
}

.form-success-message {
    margin-bottom: 1.5rem;
    color: #2f855a;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-button {
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 100%;
    text-align: center;
}

.file-upload-button:hover {
    background-color: #edf2f7;
}

.file-upload-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.file-upload-preview {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
}

.file-upload-preview.active {
    display: flex;
    align-items: center;
}

.file-upload-preview-icon {
    margin-right: 0.5rem;
    color: #4a5568;
}

.file-upload-preview-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload-preview-remove {
    margin-left: 0.5rem;
    color: #e53e3e;
    cursor: pointer;
}

.job-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.job-tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.job-tab:hover {
    color: #3182ce;
}

.job-tab.active {
    color: #3182ce;
    border-bottom-color: #3182ce;
    font-weight: 700;
}

.job-content {
    display: none;
}

.job-content.active {
    display: block;
}

@media (max-width: 768px) {
    .w-full.rounded-lg.shadow-lg {
        width: 100%;
    }

    .recruit-hero-title {
        font-size: 2rem;
    }

    .recruit-hero-subtitle {
        font-size: 1rem;
    }

    .recruit-section-title {
        font-size: 1.5rem;
    }

    .recruit-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
    }

    .recruit-process::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #e2e8f0;
        z-index: 0;
    }

    .recruit-process-step {
        position: relative;
        flex: 0 0 calc(33.333% - 2rem);
        min-width: 250px;
        padding: 2rem 1rem;
        text-align: center;
        background-color: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        z-index: 1;
    }

    .recruit-process-number {
        width: 3rem;
        height: 3rem;
        background-color: #3182ce;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.25rem;
        margin: -3.5rem auto 1.5rem;
        position: relative;
        z-index: 2;
        box-shadow: 0 0 0 5px #fff;
    }

    .recruit-process-title {
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #3182ce;
    }

    .recruit-testimonial-text {
        padding: 0;
    }

    .recruit-testimonial-text::before {
        content: '"';
        position: absolute;
        left: -16px;
        top: 0;
        font-size: 2rem;
        color: #3182ce;
        line-height: 1;
    }

    .recruit-testimonial {
        flex-direction: column;
        text-align: center;
    }

    .recruit-testimonial-image {
        margin: 0 auto;
    }

    .job-tab {
        flex: 1 0 50%;
        text-align: center;
    }

    /* モバイル表示時は横向きの矢印を縦向きに変更 */
    .recruit-process-step:not(:last-child)::after {
        content: '↓';
        top: auto;
        right: 50%;
        bottom: -3rem;
        transform: translateX(50%);
    }
}


@media (max-width: 992px) {
    .w-full.rounded-lg.shadow-lg {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .recruit-process {
        flex-direction: column;
        align-items: center;
        gap: 5rem;
    }

    .recruit-process-step {
        width: 100%;
        max-width: 100%;
    }

    /* モバイル表示時は横向きの矢印を縦向きに変更 */
    .recruit-process-step:not(:last-child)::after {
        content: '↓';
        top: auto;
        right: 50%;
        bottom: -3rem;
        transform: translateX(50%);
    }
}


.birthday-input {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    width: 250px;
    /* フォーム全体の幅 */
    background: #fff;
    transition: all 0.2s ease-in-out;

}

.birthday-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.birthday-input input::placeholder {
    color: #a0aec0;
}

.birthday-input .separator {
    margin: 0 4px;
    color: #666;
    font-size: 16px;
}

/* フォーカス時に全体の枠を強調 */
.birthday-input:focus-within {
    border-color: #4f46e5;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}