/* ================================================================
   ヘッダー
   Figma: node-id=1245:6354
================================================================ */

.cr-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}


/* ヘッダー内レイアウト: ロゴ左 / ナビ右 */

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

.inner.cr-header-inner {
    height: 100px;
}

#header_bottom_contents {
    height: 100px;
}


/* ---- ロゴ ---- */

.cr-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    opacity: 1;
}

.cr-logo-wrap:hover {
    opacity: 0.85;
}

.cr-logo-img {
    display: block;
    height: 28px;
    width: auto;
}


/* ---- PC用 ドロップダウンナビ ---- */

.cr-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cr-nav-dropdown {
    position: relative;
}

.cr-nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: #191919;
    letter-spacing: 0.16em;
    white-space: nowrap;
    line-height: 1;
    opacity: 1;
    position: relative;
}

.cr-nav-dropdown-btn::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ff0024;
    border-radius: 20px;
    transition: width 0.3s ease, left 0.3s ease;
}

.cr-nav-dropdown:hover .cr-nav-dropdown-btn::after {
    width: 100%;
    left: 0;
}

.cr-nav-dropdown:focus-within .cr-nav-dropdown-btn::after,
.cr-nav-dropdown-btn[aria-expanded="true"]::after {
    width: 100%;
    left: 0;
}

.cr-caret {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #191919;
}

.cr-nav-dropdown:hover .cr-caret,
.cr-nav-dropdown:focus-within .cr-caret {
    transform: rotate(180deg);
}

.cr-nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 12px 13px;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: #f4f4f4;
    border-radius: 4px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(-4px);
    z-index: 100;
}

.cr-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.cr-nav-dropdown:hover .cr-nav-dropdown-menu,
.cr-nav-dropdown:focus-within .cr-nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.cr-nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 1.2px;
    line-height: 1.5;
    transition: 0.15s;
    opacity: 1;
}

.cr-nav-dropdown-menu a::before {
    content: "";
    display: block;
    width: 10px;
    height: 3px;
    border-radius: 1.5px;
    background: #ff0024;
    flex-shrink: 0;
}

.cr-nav-dropdown-menu a:hover {
    /* opacity: 0.7; */
    color: #ff0024;
}


/* ----------------------------------------------------------------
   ハンバーガーボタン (SP)
---------------------------------------------------------------- */

.cr-hamburger-wrapper {
    position: fixed;
    top: 24px;
    right: max(16px, calc((100vw - 1080px) / 2 + 16px));
    z-index: 100000;
}

.cr-menu-trigger,
.cr-menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
}

.cr-menu-trigger {
    position: relative;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    padding: 0;
}

.cr-menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #191919;
    border-radius: 3px;
}

.cr-menu-trigger span:nth-of-type(1) {
    top: 0;
}

.cr-menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.cr-menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.cr-menu-trigger.is-active span {
    background-color: #191919;
}

.cr-menu-trigger.is-active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
}

.cr-menu-trigger.is-active span:nth-of-type(2) {
    opacity: 0;
}

.cr-menu-trigger.is-active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
}


/* ----------------------------------------------------------------
   SP モーダルナビ
---------------------------------------------------------------- */

.cr-modal {
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99999;
}

.cr-modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.cr-modal__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cr-modal-inner {
    height: 100%;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: contain;
}

.cr-modal-content-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 5% 64px 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cr-modal__content {
    display: flex;
    flex-direction: column;
}

.cr-modal-accordion-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 8px 0 10px;
}

.cr-modal-accordion {
    border-radius: 2px;
    overflow: hidden;
}

.cr-modal-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #f8f8f8;
    border: none;
    padding: 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3.52px;
    color: #191919;
    line-height: normal;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
}

.cr-modal-accordion-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cr-modal-accordion-trigger[aria-expanded="true"] .cr-modal-accordion-arrow {
    transform: rotate(180deg);
}

.cr-modal-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f8f8f8;
}

.cr-modal-accordion-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px 24px 32px;
}

.cr-modal-accordion-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #191919;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    line-height: 1.5;
    transition: opacity 0.2s, color 0.2s;
}

.cr-modal-accordion-link:hover {
    opacity: 1;
    color: #ff0024;
}

.cr-modal-accordion-dot {
    display: block;
    width: 10px;
    height: 3px;
    border-radius: 1.5px;
    background: #ff0024;
    flex-shrink: 0;
}


/* ================================================================
   フッター
   Figma: node-id=1202:4764
================================================================ */

.cr-footer {
    background: #191919;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 10px;
}

.cr-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 64px;
}


/* ---- 左: ロゴ + SNS ---- */

.cr-footer-left {
    display: flex;
    flex-direction: row;
    gap: 48px;
    flex-shrink: 0;
}

.cr-footer-logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    opacity: 1;
}

.cr-footer-logo img {
    display: block;
    height: 41px;
    width: auto;
}

.cr-footer-logo:hover {
    opacity: 0.7;
}

.cr-footer-sns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cr-footer-sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: opacity 0.2s;
}

.cr-footer-sns-link img {
    display: block;
    width: 32px;
    height: 32px;
}

.cr-footer-sns-link:hover {
    opacity: 0.6;
}


/* ---- 右: 3カラムナビ ---- */

.cr-footer-nav {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.cr-footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 100px;
}

.cr-footer-nav-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.08em;
    line-height: 1.5;
    white-space: nowrap;
}

.cr-footer-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cr-footer-nav-links a {
    font-size: 13px;
    font-weight: 300;
    color: #c4c4c4;
    text-decoration: none;
    letter-spacing: 0.08em;
    line-height: 1.5;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.2s;
}

.cr-footer-nav-links a:hover {
    opacity: 0.7;
}


/* ---- コピーライト ---- */

.cr-footer-copyright {
    margin: 0;
    padding-top: 24px;
    text-align: center;
    font-size: 11px;
    font-weight: 300;
    color: #c4c4c4;
    letter-spacing: 0.08em;
    line-height: 1;
}


/* ---- 募集要項テーブル（共通パーツ） ---- */

.dd-table {
    width: 100%;
}

.dd-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 32px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.dd-label {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 240px;
    flex-shrink: 0;
}

.dd-label-marker {
    display: block;
    width: 12px;
    height: 8px;
    background: #ff0024;
    flex-shrink: 0;
}

.dd-label-text {
    font-size: 20px;
    font-weight: 700;
    color: #191919;
    letter-spacing: 0.08em;
    line-height: 1.5;
    white-space: nowrap;
}

.dd-value {
    flex: 1 1 0;
    min-width: 0;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.dd-value p {
    margin: 0 0 4px;
}

.dd-value p:last-child {
    margin-bottom: 0;
}

.dd-rich p {
    line-height: 1.5;
}

.dd-skills-label {
    margin: 12px 0 4px;
    font-weight: 700;
    font-size: 16px;
}

.dd-skills-label:first-child {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .dd-row {
        flex-direction: column;
        gap: 12px;
        padding: 24px 16px;
    }

    .dd-label {
        width: auto;
    }

    .dd-label-text {
        font-size: 16px;
    }

    .dd-value {
        font-size: 14px;
    }
}


/* ---- 矢印付きテキストリンク（線が伸びる） ---- */

.cr-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3.2px;
    color: #ff0024;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}

.cr-text-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #ff0024;
    border-radius: 100px;
    transition: width 0.6s ease;
}

.cr-text-btn:hover {
    opacity: 1;
}

.cr-text-btn:hover img,
.cr-text-btn:hover svg {
    transform: scale(1.2, 1.2);
}

.cr-text-btn:hover::after {
    width: 2000px;
}


/* ================================================================
   その他の共通コンポーネント
================================================================ */

.cr-note-list {
    margin: 12px 0 0;
}

.cr-job-link {
    display: inline-block;
    border: 1px solid #191919;
    padding: 6px 10px;
    color: #191919;
    font-size: 12px;
    text-decoration: none;
}

.cr-pagination {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cr-pagination a,
.cr-pagination .is-current {
    border: 1px solid #cbd5e1;
    padding: 4px 8px;
    min-width: 30px;
    text-align: center;
    text-decoration: none;
    color: #191919;
    font-size: 13px;
}

.cr-pagination .is-current {
    background: #191919;
    color: #ffffff;
    border-color: #191919;
}

.cr-filter-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cr-filter-tabs a,
.cr-filter-tabs .is-active {
    display: inline-block;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    font-size: 13px;
    color: #191919;
    text-decoration: none;
}

.cr-filter-tabs .is-active {
    background: #191919;
    border-color: #191919;
    color: #ffffff;
}


/* ---- パンくず共通パーツ ---- */

.breadcrumb-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.dl-breadcrumb {
    width: 100%;
    min-width: 0;
}

.dl-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    font-size: 12px;
    font-weight: 600;
    color: #191919;
    letter-spacing: 0.05em;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.dl-breadcrumb li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.dl-breadcrumb li:last-child {
    flex: 1 1 0;
    overflow: hidden;
}

.dl-breadcrumb li:last-child a,
.dl-breadcrumb li:last-child span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-breadcrumb li+li::before {
    content: '';
    display: inline-block;
    width: 1.5px;
    height: 12px;
    background: #260a0a;
    margin: 0 12px;
    flex-shrink: 0;
}

.dl-breadcrumb a {
    color: #191919;
}


/* ---- ページタイトル共通パーツ ---- */

.dl-page-title-wrap {
    --dl-line-thickness: 4px;
    --dl-title-font-size: 50px;
    --dl-title-line-height: 1.2;
    --dl-title-line-box: calc(var(--dl-title-font-size) * var(--dl-title-line-height));
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
    padding-left: 16px;
}

.dl-page-title-line {
    width: 1000px;
    height: var(--dl-line-thickness);
    flex-shrink: 0;
    position: absolute;
    left: -1000px;
    top: calc((var(--dl-title-line-box) - var(--dl-line-thickness)) / 2);
    overflow: hidden;
}

.dl-page-title-line-inner {
    width: 100%;
    height: 100%;
    background: #ff0024;
    border-radius: 100px;
    transform: translateX(-100%);
    animation: titleLineSlide 0.8s linear 3s forwards;
}

.body_active .dl-page-title-line-inner {
    animation: titleLineSlide 0.8s linear 0.3s forwards;
}

@keyframes titleLineSlide {
    to { transform: translateX(0); }
}

/* ---- 装飾見出し（左右赤ライン + タイトル）共通パーツ ---- */

.cr-deco-heading {
    --cr-dh-line-thickness: 4px;
    --cr-dh-font-size: 50px;
    --cr-dh-line-height: 1.2;
    --cr-dh-line-box: calc(var(--cr-dh-font-size) * var(--cr-dh-line-height));
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
    width: max-content;
    max-width: 100%;
    padding-left: 0;
}

.cr-deco-heading-line-left {
    width: 1000px;
    height: var(--cr-dh-line-thickness);
    flex-shrink: 0;
    position: absolute;
    left: -1016px;
    top: calc((var(--cr-dh-line-box) - var(--cr-dh-line-thickness)) / 2);
    overflow: hidden;
}

.cr-deco-heading-line-left-inner {
    width: 100%;
    height: 100%;
    background: #ff0024;
    border-radius: 100px;
    transform: translateX(-100%);
}

.cr-deco-heading.is_active .cr-deco-heading-line-left-inner {
    animation: crDecoLineSlide 0.8s linear 0.3s forwards;
}

.cr-deco-heading-title {
    margin: 0;
    font-size: var(--cr-dh-font-size);
    font-weight: 800;
    color: #191919;
    letter-spacing: 0.08em;
    line-height: var(--cr-dh-line-height);
    white-space: nowrap;
    flex-shrink: 0;
}

.cr-deco-heading-title .cr-deco-heading-red {
    color: #ff0024;
}

.cr-deco-heading-line-right {
    width: 2000px;
    height: var(--cr-dh-line-thickness);
    flex-shrink: 0;
    position: absolute;
    right: -2000px;
    bottom: calc((var(--cr-dh-line-box) - var(--cr-dh-line-thickness)) / 2);
    overflow: hidden;
}

.cr-deco-heading-line-right-inner {
    width: 100%;
    height: 100%;
    background: #ff0024;
    border-radius: 100px;
    transform: translateX(-100%);
}

.cr-deco-heading.is_active .cr-deco-heading-line-right-inner {
    animation: crDecoLineSlide 1.6s linear 1.4s forwards;
}

@keyframes crDecoLineSlide {
    to { transform: translateX(0); }
}


/* ---- インタビューカード（共通パーツ） ---- */

.cr-top-interview-card {
    width: 300px;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: #000;
    pointer-events: all;
}

.cr-top-interview-card:hover {
    opacity: 1;
}

.cr-top-interview-card:hover img {
    opacity: 1;
    transform: scale(1.1, 1.1);
}

.cr-top-interview-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.cr-top-interview-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cr-top-interview-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    color: #999;
    font-size: 14px;
}

.cr-top-interview-card-info {
    position: absolute;
    left: 0;
    margin-left: 25px;
    width: calc(100% - 25px);
    bottom: 0;
    display: flex;
    align-items: stretch;
    z-index: 2;
}

.cr-top-interview-card-info::before {
    content: "";
    display: block;
    width: 19px;
    flex-shrink: 0;
    background: #fff;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.cr-top-interview-card-body {
    background: #fff;
    width: 100%;
    height: 106px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px 0 12px;
    box-sizing: border-box;
}

.cr-top-interview-card-tags {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.cr-top-interview-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff0024;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.04px;
    padding: 4px 10px 2px;
    border-radius: 2px;
    line-height: 1.4;
}

.cr-top-interview-card-tag-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #5c5c5c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.04px;
    padding: 4px 10px 2px;
    border-radius: 2px;
    line-height: 1.4;
}

.cr-top-interview-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.44px;
    line-height: 1.4;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


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

@media screen and (max-width: 1400px) {
    .cr-nav-dropdown-menu {
        left: initial;
        right: 0;
    }
}

@media screen and (max-width: 1000px) {
    .cr-footer-left {
        flex-direction: column;
        gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .dl-page-title-wrap {
        --dl-title-font-size: 32px;
    }

    .cr-cta-inner {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .cr-header {
        padding: 0;
    }
    .inner.cr-header-inner {
        height: 84px;
    }
    .cr-modal-header {
        height: 84px;
    }
    #header_bottom_contents {
        height: 84px;
    }
    .cr-menu-trigger {
        width: 40px;
        height: 24px;
    }
    .cr-menu-trigger.is-active {
        width: 20px;
        height: 20px;
    }
    .cr-menu-trigger span {
        border-radius: 2px;
    }
    .cr-menu-trigger.is-active span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
        width: 21px;
    }
    .cr-menu-trigger.is-active span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
        width: 21px;
    }
    .cr-logo-img {
        height: 22px;
    }
    .cr-footer-logo img {
        height: 32px;
    }
    .breadcrumb-area {
        height: 36px;
    }
    .dl-breadcrumb ol {
        font-size: 11px;
        letter-spacing: 0.05em;
    }
    .dl-page-title-wrap {
        --dl-title-font-size: 32px;
        margin-bottom: 32px;
        margin-left: 16px;
    }
    .cr-deco-heading {
        --cr-dh-font-size: 28px;
        margin-top: 80px;
        margin-bottom: 0;
        margin-left: 16px;
        padding-left: 0;
        gap: 16px;
    }
    .cr-deco-heading-title {
        font-size: 28px;
        white-space: normal;
    }
    .cr-deco-heading-line-right {
        right: -1859px;
    }
    .cr-footer-inner {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
    }
    .cr-footer-nav {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }
    .cr-footer-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 20px;
    }
    .cr-footer-nav-links a {
        white-space: nowrap;
        color: #ffffff;
        font-size: 14px;
    }
    .cr-footer-nav-title {
        font-size: 18px;
    }
    .cr-footer-nav-section {
        gap: 12px;
    }
    /* インタビューカード */
    .cr-top-interview-card {
        width: 260px;
        height: 360px;
    }
    .cr-top-interview-card-info {
        margin-left: 21px;
        width: calc(100% - 21px);
    }
    .cr-top-interview-card-body {
        height: 96px;
        padding: 10px 8px 0 10px;
    }
    .cr-top-interview-card-tag,
    .cr-top-interview-card-tag-sub {
        font-size: 11px;
        padding: 3px 8px 1px;
    }
    .cr-top-interview-card-title {
        font-size: 15px;
    }
}

@media screen and (max-width: 450px) {
    /* インタビューカード */
    .cr-top-interview-card {
        width: 240px;
        height: 336px;
    }
    .cr-top-interview-card-info {
        margin-left: 21px;
        width: calc(100% - 21px);
    }
    .cr-top-interview-card-info::before {
        width: 19px;
    }
    .cr-top-interview-card-body {
        height: auto;
        gap: 8px;
        padding: 12px 8px 12px 12px;
    }
    .cr-top-interview-card-tag,
    .cr-top-interview-card-tag-sub {
        font-size: 12px;
        letter-spacing: 0.96px;
        padding: 4px 10px 2px;
    }
    .cr-top-interview-card-title {
        font-size: 16px;
        letter-spacing: 1.28px;
    }
}

@media screen and (max-width: 355px) {
    .cr-deco-heading-title {
        font-size: 7.6vw;
    }
    .cr-deco-heading {
        --cr-dh-font-size: 7.6vw;
    }
    .cr-deco-heading-line-right {
        right: -1865px;
    }
}


/* ---- CTA「ケイアイで働く」セクション（共通パーツ） ---- */

.cr-cta {
    position: relative;
    background: #e10020 url('../img/bg_entry.svg') center / cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

.cr-cta-inner {
    width: 1011px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cr-cta-body {
    flex-shrink: 0;
}

.cr-cta-title {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1.4;
}

.cr-cta-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #fff;
}

.cr-cta-buttons {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.cr-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: 56px;
    padding: 0 40px;
    border: 1px solid #fff;
    border-radius: 100px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.cr-cta-btn svg {
    width: 18px;
    height: 18px;
}

.cr-cta-btn--outline {
    border: 3px solid #ffffff;
    color: #fff;
    background: #ff0024;
}

.cr-cta-btn--outline:hover {
    background: #fff;
    color: #ff0024;
    opacity: 1;
}

.cr-cta-btn--primary {
    color: #191919;
    background: #fff;
    border: 3px solid #ffffff;
}

.cr-cta-btn--primary:hover {
    background: #ff0024;
    border-color: #ffffff;
    color: #fff;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .cr-cta {
        padding: 56px 0;
    }

    .cr-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .cr-cta-title {
        font-size: 28px;
        letter-spacing: 2.24px;
        margin-bottom: 17px;
    }

    .cr-cta-text {
        font-size: 14px;
        letter-spacing: 1.12px;
        line-height: 1.6;
    }

    .cr-cta-buttons {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        justify-content: center;
    }

    .cr-cta-btn {
        width: auto;
        max-width: none;
        min-width: 0;
        flex: 1 1 0;
        height: 64px;
        justify-content: center;
        padding: 8px 27px;
        font-size: 18px;
        letter-spacing: 2.16px;
    }

    .cr-cta-btn--primary {
        min-width: 0;
    }
}

@media screen and (max-width: 450px) {
    .cr-cta-buttons {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .cr-cta-btn {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 10px;
    }

    .cr-cta-btn--primary {
        min-width: 0;
        width: auto;
        flex: 1 1 0;
    }
}


/* ================================================================
   固定エントリーボタン（キャリア採用ページ共通）
   PC: 右下に丸型 / SP: 画面下部バー
================================================================ */

/* ---- PC: 右下固定の丸型ボタン ---- */

.cr-float-entry-pc {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 160px;
    height: 160px;
    background: #ff0024;
    border: 4px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    color: #fff;
    z-index: 900;
    transition: 0.25s;
}

.cr-float-entry-pc:hover {
    opacity: 1;
    background: #fff;
    color: #ff0024;
    border-color: #ff0024;
}

.cr-float-entry-pc-sub {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2.56px;
    line-height: 1.5;
}

.cr-float-entry-pc-main {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.5;
}

.cr-float-entry-pc svg {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    transition: none;
}

.cr-float-entry-pc svg path {
    stroke: currentColor;
    transition: none;
}

/* ---- SP: 下部固定バー ---- */

.cr-float-entry-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .cr-float-entry-pc {
        display: none;
    }

    .cr-float-entry-sp {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 72px;
        background: rgba(25, 25, 25, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        align-items: center;
        justify-content: center;
        z-index: 900;
        transition: opacity 0.25s, transform 0.25s;
    }

    .cr-float-entry-sp.is-hidden-by-footer {
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
    }

    .cr-float-entry-sp-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ff0024;
        border: 3px solid #fff;
        border-radius: 100px;
        padding: 16px 40px;
        color: #fff;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 2.16px;
        line-height: normal;
        text-decoration: none;
        transition: opacity 0.25s;
    }

    .cr-float-entry-sp-btn:hover {
        opacity: 0.85;
    }

    .cr-float-entry-sp-btn svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}