#recruit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.recruit-header-menu {
    display: flex;
    gap: 20px;
}

.recruit-header-menu-item {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.recruit-header-menu-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.recruit-header-menu-item:hover {
    color: var(--navy);
}

.recruit-header-menu-item:hover::after {
    width: 100%;
}

.apply-content {
    text-decoration: none;
    color: #666;
}

#recruit-header-title {
    width: 300px;
}

#recruit-main-visual-desktop {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0 4%;
}

#recruit-main-visual-mobile {
    display: none;
}


/* greeting */
.recurit-content-area {
    text-align: left;
    margin: 50px 0;
    padding: 0 5%;
}

.recurit-content-area h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: -4px;
    position: relative;
}

.recurit-content-subtitle {
    font-size: 18px;
    color: #999;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}

.recurit-content-subtitle::before {
    content: "";
    position: absolute;
    left: 2%;
    top: 58%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

#recruit-greeting-contents {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

#recruit-greeting-content-left img {
    width: 300px;
    height: auto;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#recruit-greeting-content-left img:hover {
    transform: scale(1.05);
}

#recruit-greeting-content-right {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}

#recruit-greeting-content-right p {
    margin-bottom: 20px;
}

#recruit-greeting-content-right p:first-child {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    position: relative;
    padding-left: 15px;
    transition: transform 0.3s ease;
}

#recruit-greeting-content-right p:first-child:hover {
    transform: scale(1.01);
}

#recruit-greeting-content-right p:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 4px;
    height: 4.7em;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    border-radius: 2px;
}

/* cross talk */
#recruit-talk-contents {
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recruit-talk {
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 1100px;
}

.recruit-talk img {
    width: 100%;
    display: block;
    object-fit: cover;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.recruit-talk:hover img {
    transform: scale(1.03);
}

.read-more-btn {
    position: absolute;
    bottom: 12px;
    right: 47%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.talk-content {
    padding: 30px 65px;
    display: none;
}

.talk-content.show {
    display: block;
}


.talk-question-num {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 5px;
    letter-spacing: 1px;
}

.talk-question {
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
    margin: 0 0 20px;
    border-left: 4px solid #0077b6;
    padding-left: 10px;
}

.talk-answer {
    margin: 15px 0;
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
    position: relative;
    padding-left: 3em;
}

.talk-answer-together {
    margin: 15px 0;
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
    position: relative;
    padding-left: 6em;
    margin-bottom: 30px;
}

.speaker-a {
    font-weight: bold;
    color: #0077b6;
    position: absolute;
    left: 0;
}

.speaker-b {
    font-weight: bold;
    color: var(--orange);
    position: absolute;
    left: 0;
}

/* 募集 */

.job-se-card {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    background: var(--se-bg);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    box-shadow: var(--se-shadow);
    overflow: hidden;
}

.job-se-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    padding: 28px 28px 12px;
    background:
        radial-gradient(1200px 1200px at 100% -200px, rgba(14, 165, 233, 0.08), transparent 60%),
        linear-gradient(#fff, #fff);
    border-bottom: 1px solid var(--se-border);
}

.job-se-block {
    border: 1px solid #ddd;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

.job-se-block h2 {
    margin: 0;
    padding: 14px 18px;
    font-size: 1.1rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.job-se-block h2::after {
    content: "＋";
    position: absolute;
    right: 18px;
    transition: transform 0.3s ease;
}

.job-se-block h2.active::after {
    content: "－";
}

.job-se-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    margin: 0;
    padding: 0 18px;
    list-style: disc;
}

.job-se-list.open {
    max-height: 1000px;
    padding: 12px 18px;
}

.job-se-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0;
    color: var(--se-text);
    letter-spacing: .01em;
}

.job-se-sub {
    margin: 6px 0 0;
    color: var(--se-accent);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .9rem;
}

.job-se-tags {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.job-se-tags li {
    padding: 6px 10px;
    border: 1px solid var(--se-border);
    border-radius: 8px;
    font-size: .85rem;
    color: var(--se-muted);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.job-se-tags li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
}

.job-se-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px 28px 8px;
    border-bottom: 1px dashed var(--se-border);
}

.job-se-meta-item {
    background: #f9fbfd;
    border: 1px solid var(--se-border);
    border-radius: 8px;
    padding: 12px 14px;

}

.job-se-meta .label {
    display: block;
    font-size: .75rem;
    color: var(--se-muted);
    margin-bottom: 4px;
    letter-spacing: .04em;
}

.job-se-meta .value {
    font-weight: 600;
    color: var(--se-text);
    font-size: .95rem;
}

.job-se-body {
    padding: 20px 28px 8px;
}

.job-se-block+.job-se-block {
    margin-top: 32px;
}

.job-se-block h2 {
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: var(--se-text);
    padding-left: 10px;
    border-left: 4px solid var(--se-accent);
}

.job-se-list {
    margin: 0;
    padding-left: 1.2em;
    color: var(--se-text);
    line-height: 1.9;
    font-size: .95rem;
}

.job-se-list li {
    margin: 0 auto;
}

.job-se-list.two-col {
    columns: 3;
    column-gap: 20px;
    margin-left: 1.2rem;
}



@media (max-width: 1200px) {
    .job-se-list.two-col {
        columns: 2;
    }
}

.job-se-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    padding-left: 1.2rem;
    margin: 0;
    font-size: .95rem;
}

.job-se-steps li {
    position: relative;
    padding-left: 36px;
    margin: 10px 0;
    line-height: 1.8;
}

.job-se-steps li {
    margin-bottom: 1.5em;
}

.step-title {
    font-weight: bold;
    display: block;
}

.step-caption {
    font-size: 0.9em;
    color: #666;
}

.job-se-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    font-size: .8rem;
    color: #fff;
    background: var(--se-accent);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(14, 165, 233, .2);
}

.job-se-footer {
    padding: 20px 28px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid var(--se-border);
}

.job-se-note {
    margin: 0;
    color: var(--se-muted);
    font-size: .9rem;
}

/* 応募フォーム */
.recruit-form-wrapper {
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 1100px;
}

.recruit-form-wrapper .wpcf7-form {
    max-width: 1100px;
    min-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border-radius: none;
    border: none;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}