/* =======================
 PC
=======================*/
@media (min-width: 762px) {
    :root {
        --color-purple: #754AA4;
        --color-purple-dark: #460092;
        --color-purple-light: #F4EEFB;
        --color-purple-line: #D0BCE5;
        --color-text: #46385f;
        --color-white: #ffffff;
        --color-gray: #8d8d8d;
        --shadow-soft: 0 12px 30px rgba(71, 45, 116, 0.08);
        --radius-lg: 10px;
        --radius-md: 10px;
    }
    *, *::before, *::after {
        box-sizing: border-box;
    }
    html, body {
        margin: 0;
        padding: 0;
    }
    body {
        font-family: 'Noto Sans JP', sans-serif;
        color: var(--color-text);
    }
    a {
        color: inherit;
        text-decoration: none;
    }
    img {
        display: block;
        max-width: 100%;
    }
    /* =========================
   FV
========================= */
    .fv {
        position: relative;
        /* min-height: 100vh; */
        padding: 36px 4% 40px 20px;
        background: url(../img/bg_pc.png) no-repeat left #ffffff;
        /* background-size: cover; */
        background-attachment: fixed;
    }
    .fv::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 55%,
            rgba(255, 255, 255, 0.35) 78%,
            rgba(255, 255, 255, 0.75) 92%,
            #ffffff 100%
  );
  pointer-events: none;
}
    .fv::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.78) 88%, #ffffff 100%);
        pointer-events: none;
    }
    .fv__inner {
        position: relative;
        z-index: 1;
        /* max-width: 1280px; */
        /* min-height: calc(100vh - 76px); */
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .fv__panel-area {
        width: 562px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
    }
    /* =========================
   求人メインパネル
========================= */
    .job-panel {
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(4px);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(131, 88, 198, 0.12);
    }
    .job-panel__head {
        padding: 15px 24px 12px;
        text-align: center;
        color: var(--color-white);
        background: linear-gradient(115deg, #7d55bf 0%, #936ad3 80%);
    }
    .job-panel__title {
        margin: 0;
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.4;
        text-align: center;
    }
    .job-panel__title .mini_d{
        font-size:20px;
    }
    .job-panel__note {
        margin: 4px 0 0;
        font-size: 12.5px;
        line-height: 1.5;
        letter-spacing: 1px;
        opacity: 0.9;
        font-feature-settings: "palt";
        text-align: center;
    }
    .job-panel__body {
        padding: 16px 27px 20px;
    }
    .job-link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 64px;
        padding: 14px 16px;
        background: #fbf9ff;
        border: 1px solid var(--color-purple-line);
        border-radius: 6px;
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .job-link + .job-link {
        margin-top: 6px;
    }
    .job-link:hover {
        background: #f5efff;
        border-color: #b9a1e4;
    }
    .job-link__label {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 97px;
        padding: 7px 10px 8px;
        border-radius: 999px;
        background: var(--color-purple);
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        line-height: 1;
        white-space: nowrap;
    }
    .job-link__text {
        flex: 1 1 auto;
        color: var(--color-purple-dark);
        font-size: 23px;
        font-weight: 400;
        line-height: 1.45;
    }
    .job-link__text small {
        font-size: 14px;
        font-weight: 400;
    }
    .job-link__icon {
        flex: 0 0 auto;
        width: 16px;
        height: 16px;
    }
    .job-link__icon img {
        width: 100%;
        height: 100%;
    }
    .no-link{
        opacity:0.5;
        pointer-events: none;
        background:#e9e9e9;
    }
    .job-link__soon{
        font-size: 13px;
        background:#8b8b8b;
        color:#fff;
        padding: 0 8px 3px;
        border-radius:30px;
    }
    /* =========================
   バナーパネル
========================= */
    .banner-box{
        opacity:0.9;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255);
        backdrop-filter: blur(4px);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(131, 88, 198, 0.08);
    }
    .banner-box a img{
        transition: 0.2s ease;
    }
    .banner-box a img{
        width: 220px;
        margin:0 auto;
        padding: 10px 0px 10px;
    }
    .banner-box a :hover{
        opacity:0.6;
    }
    /* =========================
   下部共通ボックス
========================= */
    .sub-box, .request-box {
        padding: 18px 30px 18px;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(4px);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(131, 88, 198, 0.08);
    }
    /* =========================
   下部リンクボックス
========================= */
    .sub-links {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sub-links__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #e8e1f2;
        transition: transform 0.2s ease;
        position: relative;
    }
    .sub-links__item :before{
        content:"";
        width: 4px;
        height: 4px;
        background: #414141;
        border-radius: 999px;
    }
    .sub-links__item:last-child {
        border-bottom: none;
    }
    a.sub-links__item :hover{
        opacity:0.6;
    }
    .sub-links__item a:hover{
        opacity:0.6;
    }
    .sub-links__main {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        font-size: 15px;
        line-height: 1.5;
    }
    .sub-links__main span.mini{
        font-size:1.1rem;
        margin-left:2px;
    }
    .sub-links__main img {
        width: 14px;
        height: 14px;
        flex: 0 0 auto;
    }
    .pdf-link {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        border: 1px solid var(--color-purple-line);
        border-radius: 999px;
        background: var(--color-purple-light);
        color: #460092!important;
        font-size: 12px;
        font-weight: 400;
        white-space: nowrap;
    }
    .pdf-link .pdf{
        border-radius: 999px;
        background: #AF8ED5;
        padding: 0 11px;
        margin: 0 0 0 4px;
        color: #fff;
        line-height: 1.7;
    }
    .pdf-link:before{
        display:none;
    }
    /* =========================
   掲載希望ボックス
========================= */
    .request-box__title {
        margin: 0 0 14px;
        padding: 7px 14px;
        border-radius: 999px;
        background: #a6a6a6;
        color: #fff;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
    }
    .request-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .request-link {
        position: relative;
        /* min-height: 88px; */
        padding-right: 22px;
        border-right: 1px solid #c9c9c9;
        transition:0.2s;
        margin-bottom: 4px;
    }
    .request-link:hover{
        opacity:0.6;
    }
    .request-link__name {
        display: block;
        /* margin-bottom: 1px; */
        font-size: 14px;
        font-weight: 500;
        line-height: 1.45;
    }
    .request-link__desc {
        display: block;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 400;
        font-feature-settings: "palt";
    }
    .request-link__icon {
        position: absolute;
        right: 8px;
        bottom: 0;
        width: 14px;
        height: 14px;
    }
    .request-link__icon img {
        width: 100%;
        height: 100%;
    }
}

/* 1400px未満だけ少し左にずらす */
@media (max-width: 1390px) {
  .fv {
    background-position: 20% center;
  }
}