@charset "utf-8";
.l-wrapper {
    & *,
    & *::before,
    & *::after {
        box-sizing: border-box;
        border-style: solid;
        border-width: 0;
    }
    p,
    table,
    blockquote,
    address,
    pre,
    iframe,
    form,
    figure,
    dl {
        margin: 0;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: inherit;
        font-weight: inherit;
        margin: 0;
    }
    ul,
    ol {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    dd {
        margin-left: 0;
    }
    hr {
        box-sizing: content-box;
        /* 1 */
        height: 0;
        /* 1 */
        overflow: visible;
        /* 2 */
        border-top-width: 1px;
        margin: 0;
        clear: both;
        color: inherit;
    }
    pre {
        font-family: monospace, monospace;
        font-size: inherit;
    }
    address {
        font-style: inherit;
    }
    a {
        background-color: transparent;
        text-decoration: none;
        color: inherit;
    }
    abbr[title] {
        text-decoration: underline dotted;
    }
    b,
    strong {
        font-weight: bolder;
    }
    code,
    kbd,
    samp {
        font-family: monospace, monospace;
        font-size: inherit;
    }
    small {
        font-size: 80%;
    }
    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }
    sub {
        bottom: -0.25em;
    }
    sup {
        top: -0.5em;
    }
    svg,
    img,
    embed,
    object,
    iframe {
        vertical-align: bottom;
    }
    button,
    [type="button"],
    [type="reset"],
    [type="submit"] {
        cursor: pointer;
    }
    button:disabled,
    [type="button"]:disabled,
    [type="reset"]:disabled,
    [type="submit"]:disabled {
        cursor: default;
    }
     :-moz-focusring {
        outline: auto;
    }
    select:disabled {
        opacity: inherit;
    }
    option {
        padding: 0;
    }
    fieldset {
        margin: 0;
        padding: 0;
        min-width: 0;
    }
    legend {
        padding: 0;
    }
    progress {
        vertical-align: baseline;
    }
    textarea {
        overflow: auto;
    }
    [type="number"]::-webkit-inner-spin-button,
    [type="number"]::-webkit-outer-spin-button {
        height: auto;
    }
    [type="search"] {
        outline-offset: -2px;
    }
    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }
     ::-webkit-file-upload-button {
        -webkit-appearance: button;
        font: inherit;
    }
    label[for] {
        cursor: pointer;
    }
    details {
        display: block;
    }
    summary {
        display: list-item;
    }
    [contenteditable]:focus {
        outline: auto;
    }
    table {
        border-color: inherit;
        border-collapse: collapse;
    }
    caption {
        text-align: left;
    }
    td,
    th {
        vertical-align: top;
        padding: 0;
    }
    th {
        text-align: left;
    }
    figure {
        overflow: hidden;
    }
    figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wp-block-group__inner-container {
        display: contents !important;
    }
}

.overray .single-content h2,
.overray .single-content h3,
.overray .single-content h4,
.overray .single-content h5,
.overray .single-content h6,
.single-content dt {
    padding: 0;
    background-color: transparent !important;
    border-left: 0;
    margin: 0;
}

.single-content dt {
    color: currentColor;
}


/* movement */

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expand {
    0% {
        width: 0;
        opacity: 0;
    }
    1% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 44px;
        opacity: 1;
    }
}

@keyframes backExpand {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}


/* 共通パーツ */

 :root {
    --black-color: #222222;
    --blue-color: #3880ddff;
    --error-color: #f21717;
    --title-font: clamp(2.5rem, 0.921rem + 2.81vw, 3rem);
    --heading-font: clamp(1.75rem, 0.961rem + 1.4vw, 2rem);
    --medium-font: clamp(1.5rem, 0.711rem + 1.4vw, 1.75rem);
    --sub-font: clamp(1.25rem, 0.461rem + 1.4vw, 1.5rem);
    --text-font: clamp(0.875rem, 0.406rem + 0.83vw, 1rem);
    --move: all 0.3s ease;
}

@media screen and (max-width: 768px) {
     :root {
        --title-font: calc((clamp(2.5rem, 0.921rem + 2.81vw, 3rem)) * 0.8);
        --heading-font: calc((clamp(1.75rem, 0.961rem + 1.4vw, 2rem)) * 0.8);
        --medium-font: calc((clamp(1.5rem, 0.711rem + 1.4vw, 1.75rem)) * 0.8);
        --sub-font: calc((clamp(1.25rem, 0.461rem + 1.4vw, 1.5rem)) * 0.8);
        --text-font: calc((clamp(0.875rem, 0.406rem + 0.83vw, 1rem)) * 0.8);
    }
}

.page-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    max-width: 1185px;
    margin: 0 auto;
}

.m-inner {
    max-width: 985px;
    margin: 0 auto;
}

@media screen and (max-width: 1400px) {
    .l-inner {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1200px) {
    .l-inner {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .l-inner,
    .m-inner {
        max-width: 720px;
    }
}

@media screen and (max-width: 768px) {
    .l-inner,
    .m-inner {
        max-width: 540px;
    }
}

@media screen and (max-width: 576px) {
    .l-inner,
    .m-inner {
        max-width: 540px;
    }
}

.pc-only {
    display: block !important;
}

.tab-only {
    display: none !important;
}

.sp-only {
    display: none !important;
}

.pc-only-flex {
    display: flex !important;
}

.sp-only-flex {
    display: none !important;
}

@media screen and (max-width: 840px) {
    .pc-only {
        display: none !important;
    }
    .pc-only-flex {
        display: none !important;
    }
    .tab-only {
        display: block !important;
    }
}

@media screen and (max-width: 768px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .page-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sp-only {
        display: block !important;
    }
    .sp-only-flex {
        display: flex !important;
    }
}

main {
    font-family: "Inter", sans-serif !important;
    font-optical-sizing: auto;
    color: var(--black-color) !important;
    letter-spacing: normal !important;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    /* overflow: hidden; */
}

.recruit-btn-part {
    a {
        display: flex;
        align-items: center;
        gap: 4px;
        position: relative;
        font-size: 14px;
        font-weight: 500;
        height: auto;
        letter-spacing: 0.05em;
        line-height: 1;
        color: var(--black-color) !important;
        transition: all .3s ease;
		background-color: #def;
		padding: 1.5em 3.5em;
		border-radius: 1.5em;
        .direction {
            position: relative;
            width: 18px;
            height: 18px;
            background-color: var(--black-color);
            border-radius: 5rem;
            &::before {
                z-index: 1;
                content: '';
                position: absolute;
                top: 50%;
                left: 45%;
                width: 6px;
                height: 6px;
                border-top: 1px solid #fff;
                border-right: 1px solid #fff;
                transform: translate(-50%, -50%) rotate(45deg);
            }
        }
        &:hover {
            opacity: .7;
        }
    }
}

.recruit-cta {
    position: relative;
    background: url("../img/rt-cta.webp") no-repeat center / cover;
    background-size: 100%;
    aspect-ratio: 14 / 3;
    transition: all .8s ease;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        transition: all .8s ease;
    }
    &.in-view::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #222;
        animation: backExpand .8s 0.5s forwards ease;
    }
    .recruit-cta-area {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 45px;
        width: 100%;
        height: 100%;
        color: #fff;
        .recruit-cta-title {
            font-size: clamp(2.25rem, 1.461rem + 1.4vw, 2.5rem);
            font-weight: 700;
            height: auto;
            line-height: 1.4;
            color: #fff !important;
        }
        .recruit-cta-txt {
            display: flex;
            align-items: center;
            gap: 4px;
            p {
                position: relative;
                font-size: 14px;
                font-weight: 500;
                height: auto;
                letter-spacing: 0.05em;
                line-height: 1;
            }
            .direction {
                position: relative;
                width: 18px;
                height: 18px;
                background-color: #fff;
                border-radius: 5rem;
                &::before {
                    z-index: 1;
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 45%;
                    width: 4px;
                    height: 4px;
                    border-top: 1px solid var(--black-color);
                    border-right: 1px solid var(--black-color);
                    transform: translate(-50%, -50%) rotate(45deg);
                }
            }
        }
    }
}

@media screen and (min-width: 768px) {
    .recruit-cta:hover {
        opacity: 1;
        background-size: 110%;
        &::before {
            background: rgba(0, 0, 0, 0);
        }
    }
}

@media screen and (max-width: 768px) {
    .recruit-cta {
        aspect-ratio: 4.46 / 2.85;
        .recruit-cta-area {
            gap: 25px;
            .recruit-cta-title {
                font-size: 20px;
            }
        }
    }
}


/* !共通パーツ */

.rt-mv {
    position: relative;
    padding-top: 100px;
    .l-inner {
        display: flex;
        flex-direction: column;
        gap: 60px;
        .rt-title {
            font-size: var(--title-font);
            font-weight: 700;
            line-height: 1.4;
        }
        .rtm-img-area {
            position: relative;
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            .ltm-img {
                height: auto;
                border-radius: 12px;
                object-fit: cover;
                &:nth-of-type(1) {
                    width: 38%;
                }
                &:nth-of-type(2) {
                    width: 28%;
                }
                &:nth-of-type(3) {
                    width: 28%;
                }
            }
        }
    }
    &::before {
        z-index: -1;
        content: '';
        position: absolute;
        bottom: -65%;
        left: 50%;
        width: 100vw;
        height: 100%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #F5F5F5 37%, rgba(245, 245, 245, 0.00) 70%);
    }
}

@media screen and (max-width: 768px) {
    .rt-mv {
        padding-top: 80px;
        .l-inner {
            gap: 40px;
            .rtm-img-area {
                flex-wrap: wrap;
                gap: 20px 0;
                .ltm-img {
                    border-radius: 8px;
                    &:nth-of-type(1) {
                        width: 100%;
                    }
                    &:nth-of-type(2) {
                        width: 48%;
                        aspect-ratio: 1 / 1;
                    }
                    &:nth-of-type(3) {
                        width: 48%;
                        aspect-ratio: 1 / 1;
                    }
                }
            }
        }
    }
}

.rt-lead {
    padding-top: 120px;
    padding-bottom: 240px;
    /* overflow: hidden; */
    .l-inner {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        gap: 40px;
        .rtl-txt-content {
            width: 46%;
            height: auto;
            .rtl-title {
                display: block;
                position: relative;
                font-size: 14px;
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 0;
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rtl-heading {
                margin-top: 54px;
                font-size: var(--heading-font);
                line-height: 1.4;
                font-weight: 700;
            }
            .rtl-desc {
                font-size: 16px;
                font-weight: 500;
                line-height: 1.9;
                margin: 24px 0px 48px 0px;
            }
        }
        .rtl-img-area {
            max-width: 770px;
            width: 65%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 24px;
            margin-right: calc(50% - 50vw);
            .rtl-img {
                width: 49%;
                height: auto;
                object-fit: cover;
                border-radius: 12px;
                &:nth-of-type(2) {
                    border-radius: 12px 0 0 12px;
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .rt-lead {
        padding-top: 90px;
        padding-bottom: 60px;
        .l-inner {
            flex-direction: column;
            gap: 30px;
            .rtl-txt-content {
                width: 100%;
                .rtl-title {
                    font-size: 14px;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                    }
                }
                .rtl-heading {
                    margin-top: 44px;
                }
                .rtl-desc {
                    margin: 18px 0px 48px 0px;
                }
            }
            .rtl-img-area {
                width: 100%;
                gap: 12px;
                margin-right: 0;
                .rtl-img {
                    width: 48%;
                    border-radius: 8px;
                    &:nth-of-type(2) {
                        border-radius: 12px;
                    }
                }
            }
        }
    }
}

.rt-information {
    position: relative;
    padding: 90px 40px 90px 0;
    border-radius: 64px 0px 0px 0px;
    width: calc(100vw - 40px);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw + 40px);
    &.--01 {
        background: linear-gradient(180deg, #F5F5F5 37%, rgba(245, 245, 245, 0.00) 40%);
    }
    &.--02 {
        background: linear-gradient(180deg, #F5F5F5 70%, rgba(245, 245, 245, 0.00) 80%);
    }
}

@media screen and (max-width: 768px) {
    .rt-information {
        padding: 60px 10px 60px 0;
        border-radius: 40px 0px 0px 0px;
        width: calc(100vw - 10px);
        margin-left: calc(50% - 50vw + 10px);
        &.--01 {
            background: linear-gradient(180deg, #F5F5F5 37%, rgba(245, 245, 245, 0.00) 40%);
        }
        &.--02 {
            background: linear-gradient(180deg, #F5F5F5 70%, rgba(245, 245, 245, 0.00) 80%);
        }
    }
}

.rt-environment {
    padding-bottom: 48px;
    .rte-txt-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        .rte-title {
            order: 1;
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 54px;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 0;
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rte-heading {
            order: 2;
            width: 47%;
            height: auto;
            font-size: var(--heading-font);
            font-weight: 700;
            line-height: 1.4;
        }
        .rte-desc {
            order: 3;
            width: 47%;
            height: auto;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.9;
        }
    }
    .rte-link-list {
        width: 100%;
        height: auto;
        margin-top: 65px;
        display: flex;
        flex-wrap: wrap;
        justify-content: centers;
        gap: 30px 4%;
        .rte-link-item {
            min-width: 164px;
            width: 22%;
            height: auto;
            border-radius: 8px;
            overflow: hidden;
            background-color: #fff;
            transition: all.3s ease;
            &:hover {
                opacity: .7;
            }
        }
        .rte-link-img {
            width: 100%;
            height: auto;
            aspect-ratio: 2.1 / 1.2;
            object-fit: cover;
        }
        p {
            padding: 24px 20px;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.4;
            color: var(--black-color);
        }
    }
    .rte-btn {
        margin-top: 48px;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .rt-environment {
        padding-bottom: 50px;
        .rte-txt-content {
            .rte-title {
                font-size: 14px;
                margin-bottom: 44px;
                text-align: center;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    background: var(--blue-color);
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rte-heading {
                width: 100%;
            }
            .rte-desc {
                margin-top: 15px;
                width: 100%;
            }
        }
        .rte-link-list {
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 20px 0;
            justify-content: space-between;
            .rte-link-item {
                min-width: auto;
                width: 48%;
                border-radius: 6px;
            }
            .rte-link-img {
                aspect-ratio: 2.1 / 1.2;
                object-fit: cover;
            }
            p {
                padding: 20px 18px;
            }
        }
        .rte-btn {
            margin-top: 30px;
            justify-content: center;
        }
    }
}

.rt-member {
    padding-top: 48px;
    padding-bottom: 48px;
    .rte-txt-content {
        .rte-title {
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 60px;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 0;
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
    }
    .rtm-list {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        gap: 25px 5%;
        flex-wrap: wrap;
        .rtm-item {
            min-width: 138px;
            width: 16%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
            .rtm-img {
                width: 100%;
                height: auto;
                aspect-ratio: 1.5 / 2;
                border-radius: 8px;
                object-fit: cover;
            }
            .name {
                font-size: 16px;
                font-weight: 700;
                line-height: 1.4;
                span {
                    display: block;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1.4;
                    letter-spacing: 0.04rem;
                }
            }
        }
    }
    .rte-btn {
        margin-top: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .rt-member {
        padding-top: 40px;
        padding-bottom: 40px;
        .rte-txt-content {
            .rte-title {
                font-size: 14px;
                margin-bottom: 44px;
                text-align: center;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
        .rtm-list {
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px 0;
            .rtm-item {
                width: 49%;
                gap: 15px;
                .rtm-img {
                    aspect-ratio: 1.5 / 2;
                    border-radius: 6px;
                }
            }
        }
        .rte-btn {
            margin-top: 30px;
        }
    }
}

.rt-interview {
    padding-top: 60px;
    .rti-txt-content {
        .rti-title {
            display: block;
            position: relative;
            font-size: 20px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            margin-bottom: 60px;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
    }
    .rti-link-list {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        .rti-link-item {
            width: 100%;
            height: auto;
            .rti-link {
                width: 100%;
                height: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: var(--black-color);
                transition: all .3s ease;
                &:hover {
                    opacity: .7;
                }
                .rti-link-img {
                    width: 36%;
                    height: auto;
                    object-fit: contain;
                }
                .rti-link-txtarea {
                    width: 59%;
                    height: auto;
                    .rti-date {
                        font-size: 14px;
                        font-weight: 400;
                    }
                    .rti-link-title {
                        margin-top: 10px;
                        font-size: var(--medium-font);
                        font-weight: 700;
                        line-height: 1.2;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rt-interview {
        padding-top: 40px;
        .rti-txt-content {
            .rti-title {
                font-size: 18px;
                margin-bottom: 44px;
                line-height: 1.6;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
        .rti-link-list {
            width: 100%;
            gap: 30px;
            .rti-link-item {
                .rti-link {
                    flex-direction: column;
                    gap: 15px;
                    .rti-link-img {
                        width: 100%;
                    }
                    .rti-link-txtarea {
                        width: 100%;
                    }
                }
            }
        }
    }
}

.rt-topic {
    padding-bottom: 90px;
    .l-inner {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
    }
    .rtt-txt-content {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        .rtt-title {
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 0;
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rtt-heading {
            margin-top: 54px;
            font-size: var(--heading-font);
            line-height: 1.4;
            font-weight: 700;
        }
    }
    .rtt-link-list {
        margin-top: 30px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-around;
        .rtt-link-item {
            width: 28%;
            height: auto;
            .rtt-link {
                display: block;
                width: 100%;
                height: auto;
                color: var(--black-color);
                transition: all .3s ease;
                &:hover {
                    opacity: .7;
                }
                .rtt-link-img {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 2.8 / 1.82;
                    object-fit: cover;
                    border-radius: 18px;
                }
                .rtt-link-title {
                    margin-top: 8px;
                    font-size: 16px;
                    font-weight: 600;
                    height: auto;
                    line-height: 1.4;
                    text-align: center;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rt-topic {
        padding-bottom: 60px;
        .rtt-txt-content {
            .rtt-title {
                font-size: 14px;
                text-align: center;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rtt-heading {
                text-align: center;
                margin-top: 44px;
            }
        }
        .rtt-link-list {
            margin-top: 30px;
            flex-direction: column;
            gap: 30px;
            .rtt-link-item {
                width: 100%;
                .rtt-link {
                    .rtt-link-img {
                        border-radius: 12px;
                    }
                    .rtt-link-title {
                        margin-top: 10px;
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

.rt-faq {
    padding-top: 90px;
    padding-bottom: 60px;
    .m-inner {
        display: flex;
        justify-content: space-between;
        align-items: start;
        .rtf-txt-content {
            width: 250px;
            display: flex;
            flex-direction: column-reverse;
            height: auto;
            .rtf-title {
                display: block;
                position: relative;
                font-size: 14px;
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 0;
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rtf-heading {
                margin-top: 54px;
                font-size: var(--heading-font);
                line-height: 1.4;
                font-weight: 700;
            }
        }
        .rtf-list {
            width: 68%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            .rtf-item {
                width: 100%;
                height: auto;
                background-color: #fff;
                border-radius: 4px;
                overflow: hidden;
                .question {
                    padding: 24px;
                    font-size: 16px;
                    font-weight: 700;
                    height: auto;
                    line-height: 1.4;
                    transition: all .3s ease;
                    cursor: pointer;
                    &:hover {
                        opacity: .7;
                    }
                }
                .answer-area {
                    transition: all .3s ease;
                    opacity: 0;
                    width: 100%;
                    height: 0;
                    .answer {
                        padding: 24px;
                        font-size: 16px;
                        font-weight: 400;
                        height: auto;
                        line-height: 1.6;
                    }
                    &.active {
                        opacity: 1;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rt-faq {
        padding-top: 60px;
        padding-bottom: 40px;
        .m-inner {
            flex-direction: column;
            gap: 30px;
            .rtf-txt-content {
                width: 100%;
                .rtf-title {
                    font-size: 14px;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rtf-heading {
                    margin-top: 44px;
                    text-align: center;
                }
            }
            .rtf-list {
                width: 100%;
                gap: 25px;
                .rtf-item {
                    .question {
                        padding: 25px;
                    }
                    .answer-area {
                        .answer {
                            padding: 0 25px 25px 25px;
                        }
                    }
                }
            }
        }
    }
}

.rt-summary {
    padding-top: 90px;
    .rts-txt-content {
        .rts-title {
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            margin-bottom: 60px;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rts-link-area {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            .rts-link {
                margin-top: 48px;
                max-width: 518px;
                width: 100%;
                height: auto;
                padding: 24px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: relative;
                font-size: 14px;
                font-weight: 400;
                line-height: 1.4;
                border-radius: 8px;
                border: 1px solid #dddddd;
                color: var(--black-color);
                transition: all .3s ease;
                &:hover {
                    opacity: .7;
                }
                .direction {
                    position: relative;
                    width: 48px;
                    height: 48px;
                    border-radius: 5rem;
                    background-color: #f5f5f5;
                    &::before {
                        z-index: 1;
                        content: '';
                        position: absolute;
                        top: 50%;
                        left: 48%;
                        width: 6px;
                        height: 6px;
                        border-top: 1px solid var(--black-color);
                        border-right: 1px solid var(--black-color);
                        transform: translate(-50%, -50%) rotate(45deg);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rt-summary {
        padding-top: 60px;
        .rts-txt-content {
            .rts-title {
                font-size: 14px;
                margin-bottom: 44px;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rts-link-area {
                .rts-link {
                    margin-top: 30px;
                    padding: 20px;
                    border-radius: 6px;
                    .direction {
                        width: 30px;
                        height: 30px;
                        &::before {
                            left: 46%;
                            width: 6px;
                            height: 6px;
                        }
                    }
                }
            }
        }
    }
}

.rt-splide {
    height: auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    .splide__slide {
        width: 310px !important;
        height: auto;
        aspect-ratio: 3 / 2;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.rt-materials {
    padding-top: 120px;
    padding-bottom: 120px;
    .l-inner {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .rtm-txt-content {
            width: 33%;
            display: flex;
            flex-direction: column-reverse;
            height: auto;
            align-items: center;
            .rtm-title {
                display: block;
                position: relative;
                font-size: 14px;
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rtm-heading {
                margin-top: 54px;
                font-size: var(--heading-font);
                line-height: 1.4;
                font-weight: 700;
            }
        }
        .speakerdeck-iframe {
            aspect-ratio: 7.16 / 4.96;
            margin-top: 24px !important;
            width: 60% !important;
            height: auto !important;
        }
    }
}

@media screen and (max-width: 1024px) {
    .rt-materials {
        padding-top: 60px;
        padding-bottom: 60px;
        .l-inner {
            flex-direction: column;
            gap: 30px;
            .rtm-txt-content {
                width: 100%;
                .rtm-title {
                    font-size: 14px;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rtm-heading {
                    margin-top: 44px;
                }
            }
            .speakerdeck-iframe {
                width: 100% !important;
            }
        }
    }
}


/* page-corporate-philosophy（私たちについて） */

.rcp-top {
    padding-top: 64px;
    .rcp-title {
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
    .rcp-top-img {
        width: 100%;
        height: 560px;
        margin-top: 64px;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        img {
            object-fit: cover;
            object-position: 50% 30%;
        }
    }
}

@media screen and (max-width: 768px) {
    .rcp-top {
        padding-top: 30px;
        .rcp-title {
            font-size: 24px
        }
        .rcp-top-img {
            height: 300px;
            margin-top: 30px;
        }
    }
}

.rcp-lead {
    /* margin: 0 48px; */
    margin: 0 calc(50% - 50vw + 48px);
    padding-top: 96px;
    padding-bottom: 64px;
    background: #f5f5f5;
    .rcpl-rinen {
        .rcpl-title {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
        }
        .rcpl-txtarea {
            margin-top: 24px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 34px;
            .rcpl-content {
                width: 100%;
                height: auto;
                display: flex;
                justify-content: space-between;
                align-items: start;
                .rcpl-heading {
                    width: 47%;
                    height: auto;
                    font-size: var(--medium-font);
                    font-weight: 700;
                    line-height: 1.4;
                }
                .rcpl-desc {
                    width: 47%;
                    height: auto;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 1.6;
                }
            }
        }
    }
    .rcpr-slogan {
        padding-top: 96px;
        .rcpr-title {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
        }
        .rcpr-slogan-list {
            margin-top: 24px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 48px;
            .rcpl-slogan-item {
                position: relative;
                font-size: var(--medium-font);
                font-weight: 700;
                line-height: 1.4;
                display: flex;
                align-items: start;
                gap: 45px;
                &::before {
                    content: '';
                    display: block;
                    clip-path: polygon(100% 50%, 0 0, 0 100%);
                    width: 20px;
                    height: 27px;
                    background-color: var(--black-color);
                    margin-top: 6px;
                }
                .sp-size {
                    display: contents;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rcp-lead {
        /* margin: 0 20px; */
        margin: 0 calc(50% - 50vw + 20px);
        padding-top: 60px;
        padding-bottom: 60px;
        .rcpl-rinen {
            .rcpl-title {
                font-size: 14px;
            }
            .rcpl-txtarea {
                margin-top: 30px;
                gap: 30px;
                .rcpl-content {
                    flex-direction: column;
                    gap: 18px;
                    .rcpl-heading {
                        width: 100%;
                    }
                    .rcpl-desc {
                        width: 100%;
                    }
                }
            }
        }
        .rcpr-slogan {
            padding-top: 90px;
            .rcpr-title {
                font-size: 14px;
            }
            .rcpr-slogan-list {
                margin-top: 30px;
                gap: 30px;
                .rcpl-slogan-item {
                    gap: 10px;
                    flex-wrap: wrap;
                    &::before {
                        width: 16px;
                        height: 17px;
                        margin-top: 6px;
                    }
                    .sp-size {
                        display: block;
                        font-size: .85em;
                        width: 100%;
                    }
                }
            }
        }
    }
}

.rcp-service {
    padding-top: 36px;
    padding-bottom: 36px;
    .rcps-inner {
        max-width: 1080px;
        width: 100%;
        height: auto;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .rcps-txtarea {
            width: 49%;
            height: auto;
            .rcps-title {
                font-size: clamp(1rem, 0.605rem + 0.7vw, 1.125rem);
                font-weight: 500;
                line-height: 1.4;
            }
            .rcps-heading {
                margin-top: 10px;
                font-size: var(--sub-font);
                font-weight: 700;
                height: auto;
                line-height: 1.4;
            }
            .rcps-desc {
                margin-top: 20px;
                font-size: 18px;
                font-weight: 400;
                line-height: 1.6;
            }
            .rcps-btn-area {
                margin-top: 40px;
                .rcps-btn {
                    width: 250px;
                    height: auto;
                    padding: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1.4;
                    background-color: #3880dd;
                    color: #fff;
                    border-radius: 8px;
                    transition: all .3s ease;
                    &:hover {
                        opacity: .7;
                    }
                }
            }
        }
        .rcps-img {
            width: 41%;
            height: auto;
            object-fit: contain;
        }
    }
}

@media screen and (max-width: 768px) {
    .rcp-service {
        padding-top: 60px;
        padding-bottom: 60px;
        .rcps-inner {
            flex-direction: column;
            .rcps-txtarea {
                width: 100%;
                display: contents;
                .rcps-title {
                    order: 1;
                    width: 100%;
                    font-weight: 700;
                    font-size: clamp(1rem, 0.605rem + 0.7vw, 1.125rem);
                }
                .rcps-heading {
                    order: 3;
                    margin-top: 10px;
                    margin-top: 20px;
                }
                .rcps-desc {
                    order: 4;
                    margin-top: 15px;
                    font-size: 16px;
                }
                .rcps-btn-area {
                    order: 5;
                    margin-top: 30px;
                    .rcps-btn {
                        border-radius: 4px;
                    }
                }
            }
            .rcps-img {
                order: 2;
                width: 70%;
                margin: auto;
            }
        }
    }
}

.rcp-detail {
    /* margin: 0 48px; */
    margin: 0 calc(50% - 50vw + 48px);
    padding-top: 48px;
    padding-bottom: 64px;
    background: #f5f5f5;
    .rcpd-know {
        .rcpd-know-title {
            position: relative;
            font-size: var(--medium-font);
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 54px;
            text-align: center;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rcpd-know-content {
            width: 100%;
            height: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: stretch;
            gap: 24px 0;
            .rcpd-know-box {
                padding: 64px 30px;
                width: 31%;
                height: auto;
                background-color: #fff;
                border-radius: 12px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 24px;
                .box-title {
                    text-align: center;
                    font-weight: 700;
                    line-height: 1;
                    background: linear-gradient(82deg, #005fffff 0%, #374e9aff 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    display: inline-block;
                    span {
                        display: block;
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 1.4;
                        margin-bottom: 24px;
                    }
                }
                .box-note {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.4;
                }
                .box-img {
                    width: 40px;
                    height: auto;
                    object-fit: contain;
                    img {
                        width: 100%;
                        height: auto;
                        object-fit: contain !important;
                    }
                }
                &.--01 {
                    width: 48%;
                    .box-title {
                        font-size: var(--title-font);
                    }
                }
                &.--02 {
                    width: 23%;
                    .box-title {
                        font-size: var(--title-font);
                    }
                }
                &.--03 {
                    width: 23%;
                    .box-title {
                        font-size: var(--title-font);
                    }
                }
                &.--04 {
                    width: 31%;
                    .box-title {
                        font-size: var(--title-font);
                    }
                }
                &.--05 {
                    width: 31%;
                    .box-title {
                        font-size: calc((var(--title-font)) * 0.83);
                    }
                }
                &.--06 {
                    width: 31%;
                    .box-title {
                        font-size: calc((var(--title-font)) * 1.3);
                    }
                }
            }
        }
    }
    .rcpd-materials {
        padding-top: 96px;
        .m-inner {
            width: 100%;
            height: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            .rcpd-materials-title {
                font-size: var(--medium-font);
                font-weight: 700;
                line-height: 1.4;
            }
            .rcpd-materials-desc {
                font-size: 14px;
                font-weight: 500;
                height: auto;
                line-height: 1.9;
            }
            .speakerdeck-iframe {
                margin-top: 24px !important;
                width: 100% !important;
                height: auto !important;
                border: 0px;
                aspect-ratio: 7.16 / 4.96;
            }
        }
    }
    .rcpd-abs {
        padding-top: 96px;
        .rcpd-abs-title {
            position: relative;
            font-size: var(--medium-font);
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 54px;
            text-align: center;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rcpd-abs-table {
            max-width: 780px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            margin: auto;
            .rcpd-abs-box {
                width: 100%;
                height: auto;
                padding: 24px 0;
                display: flex;
                align-items: start;
                justify-content: space-between;
                border-top: 1px solid #e3e3e3;
                .rcpd-abs-heading {
                    width: 150px;
                    height: auto;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 1.6;
                }
                .rcpd-abs-desc {
                    width: calc(100% - 170px);
                    font-size: 18px;
                    font-weight: 400;
                    height: auto;
                    line-height: 1.6;
                    .rcpd-abs-desc-list {
                        list-style: disc;
                        width: 100%;
                        font-size: 18px;
                        font-weight: 400;
                        height: auto;
                        line-height: 1.6;
                        padding-left: 18px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .rcp-detail {
        /* margin: 0 20px; */
        margin: 0 calc(50% - 50vw + 20px);
        padding-top: 60px;
        padding-bottom: 60px;
        .rcpd-know {
            .rcpd-know-title {
                margin-bottom: 44px;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rcpd-know-content {
                gap: 20px 0;
                .rcpd-know-box {
                    padding: 30px 20px;
                    border-radius: 12px;
                    gap: 15px;
                    .box-title {
                        span {
                            margin-bottom: 15px;
                        }
                    }
                    .box-img {
                        width: 30px;
                    }
                    &.--01 {
                        width: 100%;
                    }
                    &.--02 {
                        width: 48%;
                    }
                    &.--03 {
                        width: 48%;
                    }
                    &.--04 {
                        width: 100%;
                    }
                    &.--05 {
                        width: 100%;
                    }
                    &.--06 {
                        width: 100%;
                    }
                }
            }
        }
        .rcpd-materials {
            padding-top: 60px;
            .m-inner {
                gap: 10px;
                flex-direction: column;
                .speakerdeck-iframe {
                    margin-top: 20px !important;
                }
            }
        }
        .rcpd-abs {
            padding-top: 60px;
            .rcpd-abs-title {
                margin-bottom: 44px;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rcpd-abs-table {
                .rcpd-abs-box {
                    flex-direction: column;
                    gap: 8px;
                    padding: 15px 0;
                    .rcpd-abs-heading {
                        width: 100%;
                        font-size: 18px;
                        font-weight: 700;
                    }
                    .rcpd-abs-desc {
                        width: 100%;
                    }
                }
            }
        }
    }
}


/* @media screen and (max-width: 768px) {
    .rcp-detail {
        margin: 0 20px;
        padding-top: 60px;
        padding-bottom: 60px;
        .rcpd-know {
            .rcpd-know-title {
                margin-bottom: 44px;
                &::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                }
            }
            .rcpd-know-content {
                gap: 20px 0;
                .rcpd-know-box {
                    padding: 30px 20px;
                    border-radius: 12px;
                    gap: 15px;
                    .box-title {
                        span {
                            margin-bottom: 15px;
                        }
                    }
                    .box-img {
                        width: 30px;
                    }
                    &.--01 {
                        width: 100%;
                    }
                    &.--02 {
                        width: 48%;
                    }
                    &.--03 {
                        width: 48%;
                    }
                    &.--04 {
                        width: 100%;
                    }
                    &.--05 {
                        width: 100%;
                    }
                    &.--06 {
                        width: 100%;
                    }
                }
            }
        }
        .rcpd-materials {
            padding-top: 60px;
            .m-inner {
                gap: 10px;
                .speakerdeck-iframe {
                    margin-top: 20px !important;
                }
            }
        }
        .rcpd-abs {
            padding-top: 60px;
            .rcpd-abs-title {
                margin-bottom: 44px;
                &::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                }
            }
            .rcpd-abs-table {
                .rcpd-abs-box {
                    flex-direction: column;
                    gap: 8px;
                    padding: 15px 0;
                    .rcpd-abs-heading {
                        width: 100%;
                        font-size: 18px;
                        font-weight: 700;
                    }
                    .rcpd-abs-desc {
                        width: 100%;
                    }
                }
            }
        }
    }
} */


/* page-recruit-service（サービス紹介） */

.rrs-top {
    padding-top: 64px;
    .rrs-title {
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
    .rrs-top-img {
        width: 100%;
        height: 560px;
        margin-top: 64px;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        img {
            object-fit: cover;
            object-position: 50% 10%;
        }
    }
}

@media screen and (max-width: 768px) {
    .rrs-top {
        padding-top: 30px;
        .rrs-title {
            font-size: 24px
        }
        .rrs-top-img {
            height: 300px;
            margin-top: 30px;
        }
    }
}

.rrs-service {
    padding-top: 36px;
    padding-bottom: 36px;
    .rrss-inner {
        max-width: 1080px;
        width: 100%;
        height: auto;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .rrss-txtarea {
            width: 49%;
            height: auto;
            .rrss-title {
                font-size: clamp(1rem, 0.605rem + 0.7vw, 1.125rem);
                font-weight: 500;
                line-height: 1.4;
            }
            .rrss-heading {
                margin-top: 10px;
                font-size: var(--sub-font);
                font-weight: 700;
                height: auto;
                line-height: 1.4;
            }
            .rrss-desc {
                margin-top: 20px;
                font-size: 18px;
                font-weight: 400;
                line-height: 1.6;
            }
            .rrss-btn-area {
                margin-top: 40px;
                .rrss-btn {
                    width: 250px;
                    height: auto;
                    padding: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1.4;
                    background-color: #3880dd;
                    color: #fff;
                    border-radius: 8px;
                }
            }
        }
        .rrss-img {
            width: 41%;
            height: auto;
            object-fit: contain;
        }
    }
}

@media screen and (max-width: 768px) {
    .rrs-service {
        padding-top: 60px;
        padding-bottom: 60px;
        .rrss-inner {
            flex-direction: column;
            .rrss-txtarea {
                width: 100%;
                display: contents;
                .rrss-title {
                    order: 1;
                    width: 100%;
                    font-weight: 700;
                    font-size: clamp(1rem, 0.605rem + 0.7vw, 1.125rem);
                }
                .rrss-heading {
                    order: 3;
                    margin-top: 10px;
                    margin-top: 20px;
                }
                .rrss-desc {
                    order: 4;
                    margin-top: 15px;
                    font-size: 16px;
                }
                .rrss-btn-area {
                    order: 5;
                    margin-top: 30px;
                    .rrss-btn {
                        border-radius: 4px;
                    }
                }
            }
            .rrss-img {
                order: 2;
                width: 70%;
                margin: auto;
            }
        }
    }
}

.rrs-detail {
    /* margin: 0 48px; */
    margin: 0 calc(50% - 50vw + 48px);
    padding-top: 96px;
    padding-bottom: 64px;
    background: #f5f5f5;
    .rrsd-title {
        position: relative;
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 54px !important;
        text-align: center;
        &.in-view::before {
            content: '';
            position: absolute;
            bottom: -30px;
            animation: expand 1s 0.5s forwards;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 6px;
            background: var(--blue-color);
        }
    }
    .rrsd-area {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 48px;
        .rrsd-link {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .rrsd-link-left {
                position: relative;
                font-size: var(--sub-font);
                font-weight: 700;
                line-height: 1;
                display: flex;
                align-items: center;
                gap: 8px;
                color: #055ac8ff;
                text-decoration: underline;
                transition: all .3s ease;
                &:hover {
                    opacity: .7;
                }
                &::before {
                    content: '';
                    display: block;
                    clip-path: polygon(100% 50%, 0 0, 0 100%);
                    width: 10px;
                    height: 13px;
                    background-color: var(--black-color);
                }
            }
            .rrsd-link-right {
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0.05em;
                line-height: 1;
                display: flex;
                align-items: center;
                gap: 4px;
                color: var(--black-color);
                transition: all .3s ease;
                &:hover {
                    opacity: .7;
                }
                .rrsd-link-img {
                    width: 10px;
                    height: auto;
                    object-fit: contain;
                    margin: auto;
                }
            }
        }
        .ssrd-desc {
            margin-top: 24px;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
            .ssrd-desc-list {
                width: 100%;
                height: auto;
                list-style-type: disc;
                padding-left: 18px;
                margin: 20px 0;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rrs-detail {
        /* margin: 0 20px; */
        margin: 0 calc(50% - 50vw + 20px);
        padding-top: 60px;
        padding-bottom: 60px;
        .rrsd-title {
            margin-bottom: 44px !important;
            &.in-view::before {
                bottom: -20px;
                width: 40px;
                height: 4px;
            }
        }
        .rrsd-area {
            gap: 30px;
            .rrsd-link {
                flex-direction: column;
                align-items: start;
                gap: 10px;
                .rrsd-link-left {
                    gap: 4px;
                    line-height: 1.4;
                    &::before {
                        width: 8px;
                        height: 10px;
                    }
                }
                .rrsd-link-right {
                    .rrsd-link-img {
                        width: 10px;
                    }
                }
            }
            .ssrd-desc {
                margin-top: 15px;
            }
        }
    }
}


/* page-working-environment(働く環境) */

.rwe-top {
    padding-top: 64px;
    .rwe-title {
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
    .rwe-desc {
        text-align: center;
        margin-top: 24px;
        font-size: 16px;
        font-weight: 600;
        height: auto;
        line-height: 1.9;
    }
    .rwe-top-img {
        width: 100%;
        height: 560px;
        margin-top: 64px;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        img {
            object-fit: cover;
        }
    }
}

@media screen and (max-width: 768px) {
    .rwe-top {
        padding-top: 30px;
        .rwe-title {
            font-size: 24px
        }
        .rwe-desc {
            width: 100%;
            font-size: 16px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }
        .rwe-top-img {
            height: 300px;
            margin-top: 30px;
        }
    }
}

.rwe-detail {
    /* margin: 0 48px; */
    margin: 0 calc(50% - 50vw + 48px);
    padding-bottom: 64px;
    background: #f5f5f5;
    .rwe-promise {
        padding-top: 140px;
        .m-inner {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: start;
            .rwep-title {
                width: 26%;
                height: auto;
                display: block;
                position: relative;
                font-size: var(--medium-font);
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 0;
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rwep-area {
                width: 70%;
                height: auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 48px 0;
                .rwep-box {
                    width: 47%;
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 24px;
                    .rwep-heading {
                        font-size: var(--sub-font);
                        font-weight: 700;
                        line-height: 1.4;
                    }
                }
                .rwep-desc {
                    font-size: 16px;
                    font-weight: 500;
                    height: auto;
                    line-height: 1.6;
                }
            }
        }
    }
    .rwe-feature {
        padding-top: 140px;
        .rwef-title {
            display: block;
            position: relative;
            font-size: var(--medium-font);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 54px;
            text-align: center;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rwef-list {
            margin-top: 24px;
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 48px 0;
            .rwef-item {
                width: 47%;
                height: auto;
                background-color: #fff;
                border-radius: 8px;
                overflow: hidden;
                .rwef-img {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 4.68 / 2.8;
                    object-fit: covevr;
                }
                .rwef-txtarea {
                    padding: 48px;
                    width: 100%;
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 24px;
                    .rwef-heading {
                        font-size: var(--sub-font);
                        font-weight: 700;
                        line-height: 1.6;
                    }
                    .rwef-desc {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                        margin: 24px 0px 0px 0px;
                    }
                }
            }
        }
    }
    .rwe-system {
        padding-top: 140px;
        .m-inner {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: start;
            .rwes-title {
                width: 23%;
                height: auto;
                display: block;
                position: relative;
                font-size: var(--medium-font);
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 0;
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rwes-list {
                width: 67%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 48px;
                align-items: start;
                .rwes-item {
                    width: 100%;
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 24px;
                    .rwes-heading {
                        font-size: var(--sub-font);
                        font-weight: 700;
                        line-height: 1.6;
                    }
                    .rwes-desc {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .rwe-detail {
        .rwe-promise {
			padding-top: 140px;
            .m-inner {
                flex-direction: column;
                gap: 44px;
                .rwep-title {
                    width: 100%;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwep-area {
                    width: 100%;
                }
            }
        }
        .rwe-feature {
            .rwef-list {
                .rwef-item {
                    .rwef-txtarea {
                        gap: 0;
                        padding: 25px 20px;
                    }
                }
            }
        }
        .rwe-system {
            .m-inner {
                flex-direction: column;
                gap: 44px;
                .rwes-title {
                    width: 100%;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwes-list {
                    width: 100%;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rwe-detail {
        /* margin: 0 20px; */
        margin: 0 calc(50% - 50vw + 20px);
        padding-bottom: 120px;
        .rwe-promise {
            padding-top: 140px;
            .m-inner {
                flex-direction: column;
                gap: 44px;
                .rwep-title {
                    width: 100%;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwep-area {
                    width: 100%;
                    flex-direction: column;
                    gap: 25px 0;
                    .rwep-box {
                        width: 100%;
                        gap: 12px;
                    }
                }
            }
        }
        .rwe-feature {
            padding-top: 140px;
            .rwef-title {
                margin-bottom: 44px;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                }
            }
            .rwef-list {
                margin-top: 0;
                gap: 30px 0;
                .rwef-item {
                    width: 100%;
                    border-radius: 6px;
                    .rwef-txtarea {
                        padding: 25px 20px;
                        gap: 12px;
                        .rwef-heading {
                            font-size: 18px;
                        }
                        .rwef-desc {
                            margin: 0px;
                            line-height: 1.8;
                        }
                    }
                }
            }
        }
        .rwe-system {
            padding-top: 140px;
            .m-inner {
                flex-direction: column;
                gap: 44px;
                .rwes-title {
                    width: 100%;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwes-list {
                    width: 100%;
                    gap: 30px;
                    .rwes-item {
                        gap: 12px;
                    }
                }
            }
        }
    }
}

.rwe-bottom-area {
    /* margin: 0 48px; */
    margin: 0 calc(50% - 50vw + 48px);
    padding-top: 48px;
    padding-bottom: 64px;
    background: #f5f5f5;
    .swe-salary {
        .rwe-salary-content {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: start;
            .rwe-salary-title {
                width: 23%;
                height: auto;
                display: block;
                position: relative;
                font-size: var(--medium-font);
                font-weight: 700;
                line-height: 1;
                &.in-view::before {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    animation: expand 1s 0.5s forwards;
                    left: 0;
                    width: 0;
                    height: 6px;
                    background: var(--blue-color);
                }
            }
            .rwe-salary-txt {
                width: 67%;
                height: auto;
                .rwe-salary-desc {
                    margin-top: 30px;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 1.6;
                    .rwe-salary-desc-box {
                        margin-bottom: 60px;
                        width: 100%;
                        height: auto;
                        display: flex;
                        flex-direction: column;
                        gap: 24px;
                        .rwe-salary-desc-heading {
                            font-size: var(--sub-font);
                            font-weight: 700;
                            line-height: 1.6;
                        }
                        .rwe-salary-desc-list {
                            width: 100%;
                            height: auto;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.8;
                            ul {
                                list-style-type: disc;
                                padding-left: 16px;
                            }
                        }
                    }
                }
            }
        }
        .rwe-salary-note {
            width: 100%;
            height: auto;
            margin-top: 90px;
            padding: 40px;
            font-size: clamp(1.125rem, 0.73rem + 0.7vw, 1.25rem);
            font-weight: 400;
            line-height: 1.4;
            background-color: #fff;
            border-radius: 30px;
        }
    }
}

@media screen and (max-width: 1024px) {
    .rwe-bottom-area {
        .swe-salary {
            .rwe-salary-content {
                flex-direction: column;
                gap: 44px;
                .rwe-salary-title {
                    width: 100%;
                    text-align: center;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwe-salary-txt {
                    width: 100%;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rwe-bottom-area {
        /* margin: 0 20px; */
        margin: 0 calc(50% - 50vw + 20px);
        padding-top: 60px;
        padding-bottom: 60px;
        .swe-salary {
            .rwe-salary-content {
                flex-direction: column;
                gap: 44px;
                .rwe-salary-title {
                    width: 100%;
                    &.in-view::before {
                        bottom: -20px;
                        width: 40px;
                        height: 4px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
                .rwe-salary-txt {
                    width: 100%;
                    .rwe-salary-desc {
                        margin-top: 0;
                        line-height: 1.8;
                        .rwe-salary-desc-box {
                            margin-bottom: 30px;
                        }
                    }
                }
            }
            .rwe-salary-note {
                margin-top: 30px;
                padding: 20px;
                border-radius: 20px;
                font-size: 18px;
                line-height: 1.8;
            }
        }
    }
}

.rwe-benefit {
    padding-top: 140px;
    padding-bottom: 120px;
    .rweb-title {
        display: block;
        position: relative;
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1;
        margin-bottom: 54px !important;
        text-align: center;
        &.in-view::before {
            content: '';
            position: absolute;
            bottom: -30px;
            animation: expand 1s 0.5s forwards;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 6px;
            background: var(--blue-color);
        }
    }
    .rweb-list {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 24px 0;
        .rweb-item {
            width: 30%;
            height: auto;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
            border: 1px solid #dddddd;
            border-radius: 8px;
            .rweb-heading {
                font-size: 18px;
                font-weight: 600;
                line-height: 1.4;
            }
            .rweb-desc {
                font-size: 14px;
                font-weight: 400;
                line-height: 1.4;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rwe-benefit {
        padding-top: 140px;
        padding-bottom: 120px;
        .rweb-title {
            margin-bottom: 44px !important;
            text-align: center;
            &.in-view::before {
                bottom: -20px;
                width: 40px;
                height: 4px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        .rweb-list {
            gap: 20px 0;
            .rweb-item {
                width: 48%;
                padding: 20px 10px;
                gap: 8px;
                border-radius: 6px;
                .rweb-heading {
                    font-size: 16px;
                }
            }
        }
    }
}


/* cadreer-information（募集要項） */

.rci-top {
    padding-top: 64px;
    .rci-title {
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        margin: auto !important;
    }
    .rci-desc {
        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        font-weight: 600;
        height: auto;
        line-height: 1.9;
    }
    .rci-top-img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        margin-top: 64px;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    }
}

@media screen and (max-width: 768px) {
    .rci-top {
        padding-top: 30px;
        .rci-title {
            font-size: 24px;
        }
        .rci-desc {
            width: 100%;
            font-size: 16px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }
        .rci-top-img {
            height: 300px;
            margin-top: 30px;
        }
    }
}

.rci-detail {
    padding-top: 120px;
    padding-bottom: 120px;
    .m-inner {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: start;
        .rcid-title {
            width: 23%;
            height: auto;
            display: block;
            position: relative;
            font-size: var(--medium-font);
            font-weight: 700;
            line-height: 1;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 0;
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .rcid-list {
            width: 67%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: start;
            .rcid-item {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 12px;
                .rcid-heading {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                    font-size: var(--sub-font);
                    font-weight: 700;
                    line-height: 1.6;
                    position: relative;
                    &::before {
                        content: '';
                        display: block;
                        width: 6px;
                        height: 20px;
                        background-color: var(--black-color);
                    }
                }
                .rcid-desc {
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 1.6;
                    .rcid-desc-list {
                        width: 100%;
                        height: auto;
                        line-height: 1.6;
                        list-style: disc;
                        padding-left: 18px;
                        &.pt02 {
                            list-style: none;
                            padding-left: 0;
                            display: flex;
                            flex-direction: column;
                            gap: 25px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .rci-detail {
        padding-top: 90px;
        padding-bottom: 90px;
        .m-inner {
            flex-direction: column;
            gap: 44px;
            .rcid-title {
                width: 100%;
                text-align: center;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .rcid-list {
                width: 100%;
                gap: 30px;
                .rcid-item {
                    gap: 12px;
                    .rcid-heading {
                        gap: 14px;
                        &::before {
                            width: 4px;
                            height: 20px;
                        }
                    }
                    .rcid-desc {
                        line-height: 1.8;
                    }
                }
            }
        }
    }
}


/* entry（エントリー） */

.re-top {
    padding-top: 64px;
    .re-title {
        font-size: var(--medium-font);
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
    .re-top-img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        margin-top: 64px;
    }
}

@media screen and (max-width: 768px) {
    .re-top {
        padding-top: 60px;
        .re-title {
            font-size: 24px
        }
    }
}

.re-content {
    padding-top: 60px;
    .re-form-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 64px 48px 48px 48px;
        background-color: #f5f5f5;
        border-radius: 64px 64px 0 0;
        .re-form {
            width: 100%;
            height: auto;
            .form-group {
                margin-bottom: 24px;
            }
        }
        .input-form {
            display: block;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0em;
            line-height: 1.4;
            margin-bottom: 10px;
            &.required::after {
                content: " *";
                color: #e74c3c;
                margin-left: 4px;
                font-weight: bold;
            }
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            width: 100%;
            height: auto;
            padding: 12px;
            border: 0;
            border-radius: 4px;
            background-color: #fff;
            font-size: 16px;
        }
        input::placeholder {
            color: #bbb;
            font-size: 14px;
        }
        /*── ラジオグループ ──*/
        .radio-group input[type="radio"] {
            margin-right: 8px;
            accent-color: #000;
        }
        /*── ファイル入力 ──*/
        /* ── ファイル入力の見た目を完全カスタマイズ ── */
        input[type="file"] {
            display: block;
            max-width: 350px;
            width: 100%;
            height: auto;
            padding: 15px;
            margin: 0;
            border: 1px dashed #ccc;
            border-radius: 2px;
            background-color: #fff;
            color: transparent;
            position: relative;
            cursor: pointer;
            font-size: 16px;
        }
        /* ブラウザデフォルトのボタン部分を隠す */
        input[type="file"]::-webkit-file-upload-button,
        input[type="file"]::file-selector-button {
            display: none;
        }
        /* 枠内中央に出すテキスト */
        input[type="file"]:not([data-file])::before {
            content: "ファイルを選択";
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            color: #555;
            font-size: 16px;
            pointer-events: none;
        }
        input[type="file"][data-file]::before {
            content: attr(data-file);
            /* position: absolute; */
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            font-size: 16px;
            color: var(--black-color);
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            pointer-events: none;
        }
        /*── テキストエリア ──*/
        textarea {
            max-width: 350px;
            width: 100%;
            height: auto;
            padding: 15px;
            border: 0;
            border-radius: 2px;
            font-size: 16px;
            resize: vertical;
            background-color: #fff;
        }
        textarea::placeholder {
            color: #bbb;
            font-size: 14px;
        }
        /*── チェックボックス ──*/
        .checkbox-group {
            max-width: 300px;
            width: 100%;
            height: auto;
            margin: auto;
            label {
                display: flex;
                align-items: center;
                font-size: 14px;
                font-weight: 500;
                line-height: 1.4;
                color: #000;
            }
            input[type="checkbox"] {
                margin-right: 8px;
                accent-color: #000;
            }
        }
        .policy-link {
            color: #3274ecff;
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
        /*── 送信ボタン ──*/
        .submit-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 270px;
            width: 100%;
            height: auto;
            padding: 15px;
            margin: auto;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0em;
            color: #fff;
            line-height: 1.4;
            border-radius: 4px;
            cursor: pointer;
            background-color: #111;
            transition: background-color .2s;
        }
        .submit-btn:hover {
            background-color: #333;
        }
    }
}

@media screen and (max-width: 768px) {
    .re-content {
        padding-top: 60px;
        .re-form-container {
            padding: 60px 20px 60px 20px;
            border-radius: 30px 30px 0 0;
            .re-form {
                .form-group {
                    margin-bottom: 30px;
                }
            }
            /*── 送信ボタン ──*/
            .submit-btn {
                max-width: none;
            }
        }
    }
}


/* page-topic */

.r-topic {
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    .r-topic-txt {
        width: 46%;
        height: auto;
        .r-topic-title {
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            &.in-view::before {
                content: '';
                position: absolute;
                bottom: -30px;
                animation: expand 1s 0.5s forwards;
                left: 0;
                width: 0;
                height: 6px;
                background: var(--blue-color);
            }
        }
        .r-topic-heading {
            margin-top: 54px;
            font-size: var(--heading-font);
            line-height: 1.4;
            font-weight: 700;
        }
        .r-topic-btn {
            margin-top: 24px;
        }
    }
    .r-topick-content {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        margin-top: 48px;
        .rtc-article {
            width: 29%;
            height: auto;
            .rtc-link {
                width: 100%;
                height: auto;
                color: var(--black-color);
                .rtc-thumbnail {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 2.93 / 2;
                    object-fit: cover;
                }
                .rtc-title {
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1.4;
                    margin-top: 24px;
                }
                .rtc-time {
                    display: block;
                    margin-top: 12px;
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 1.4;
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .r-topic {
        padding-top: 90px;
        padding-bottom: 60px;
        .r-topic-txt {
            width: 100%;
            text-align: center;
            .r-topic-title {
                font-size: 14px;
                &.in-view::before {
                    bottom: -20px;
                    width: 40px;
                    height: 4px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            .r-topic-heading {
                margin-top: 44px;
                text-align: center;
            }
            .r-topic-btn {
                margin-top: 24px;
                .r-topic-link {
                    justify-content: center;
                }
            }
        }
        .r-topick-content {
            margin-top: 50px;
            flex-direction: column;
            gap: 30px;
            .rtc-article {
                width: 100%;
            }
        }
    }
}


/* topic singel */

.rt-single {
    padding-top: 120px;
    .rts-title-area {
        width: 100%;
        height: auto;
        text-align: center;
        .rts-title {
            font-size: var(--heading-font);
            font-weight: 700;
            line-height: 1.4;
        }
        .rts-date {
            display: block;
            margin-top: 24px;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.4;
        }
    }
    .rts-content {
        max-width: 800px;
        width: 100%;
        height: auto;
        padding: 64px 48px 48px 48px;
        margin-top: 48px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 64px 64px 0 0;
        background-color: #f5f5f5;
        text-align: left;
        .rts-thumbnail {
            width: 100%;
            height: auto;
            margin-bottom: 24px;
        }
        .rts-h2 {
            font-size: var(--heading-font);
            font-weight: 700;
            line-height: 1.4;
            margin: 20px 0;
            letter-spacing: 0.05rem;
        }
        .rtsc-desc {
            margin: 10px 0;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
            letter-spacing: 0.05rem;
            .weight-font {
                font-weight: 700;
            }
            .rtsc-link {
                color: #007cff;
                text-decoration: underline;
            }
        }
        .rtsc-img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        .rts-list {
            width: 100%;
            height: auto;
            padding-left: 18px;
            &.number {
                list-style: auto;
            }
            .rts-item {
                margin: 10px 0;
            }
            .weight-font {
                font-weight: 700;
            }
        }
        .line {
            width: 100%;
            height: 1px;
            background-color: #ccc;
            margin: 10px 0;
        }
    }
}

@media screen and (max-width: 1024px) {
    .rt-single {
        padding-top: 60px;
        .rts-content {
            padding: 48px 24px;
            margin-top: 30px;
            border-radius: 48px 48px 0 0;
        }
    }
}

.pdf-splide {
    border-radius: 10px;
    /* overflow: hidden; */
}

.pdf-splide .splide__slide {
    width: 100%;
    height: auto;
    text-align: center;
}

.pdf-splide .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 7.16 / 4.96 !important;
}


/* 矢印共通のスタイル */

.splide__arrows {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
    pointer-events: none;
}

.splide__arrows button {
    pointer-events: all;
    position: relative;
    width: 6.2%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: all .3s ease;
    &:hover {
        opacity: .7;
    }
}

.splide__arrows button svg {
    display: none;
}

.splide__arrows button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-radius: 2px;
}

.pdf-splide-prev::before {
    transform: translate(-33%, -50%) rotate(-135deg);
}

.pdf-splide-next::before {
    transform: translate(-67%, -50%) rotate(45deg);
}

.splide__arrows button:disabled {
    opacity: 0;
    pointer-events: none;
}

.ua-container .more-btn {
    position: relative;
    margin: 50px auto 0 auto;
    max-width: 335px;
    width: 100%;
    height: auto;
    padding: 19px 20px 23px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    border-radius: 5rem;
    transition: all .3s ease;
}

.ua-container .more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    border-radius: .3px;
    border-top: 3px solid #F99770;
    border-right: 3px solid #F99770;
    transition: all .3s ease;
}

@media screen and (min-width: 1024px) {
    .ua-container .more-btn:hover {
        color: #fff;
    }
    .ua-container .more-btn:hover::before {
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }
}

@media screen and (max-width: 768px) {
    .pdf-splide {
        border-radius: 8px;
    }
    .pdf-splide .splide__track {
        width: 100%;
    }
    .pdf-splide .splide__slide {
        width: 100%;
    }
    .pdf-splide .splide__slide img {}
    .splide__arrows button {
        position: relative;
        width: 40px;
    }
    .splide__arrows button:disabled {
        opacity: 0;
    }
    .ua-container .more-btn {
        padding: 13px 20px 14px 20px;
        display: flex;
        font-size: 18px;
        line-height: 100%;
    }
    .ua-container .more-btn::before {
        right: 20px;
    }
}

#cta_bottom,#footer_cta{display:none;}
.form-group {margin: 2em 0;}
#lp-submit-btn {margin:2em auto;padding:1em 2em;}
.wpcf7-list-item {display: block;}
#resume{color:#888;padding-left:8.5em;}
.container {contain: layout;}

/* Recruit LP Menu for PC */
@media screen and (min-width: 1000px) {
	#relp-stickymenuarea {
		position: sticky;
		top: 64px;
		left: 0;
		width: 100%; 
		height: 64px;
		z-index: 100;
		background-color: rgba(254,254,254,0.9);
		padding: 1.2em 32px;
		border-radius: 32px;
	}

	.relp-dark-button {
		background-color: #4444ff;
		color: #fff;
		padding: 1em 1.5em;
		font-weight: 800;
		border-radius: 8px;
		width: 10em;
		transition: filter 0.3s ease;
	}
	.relp-dark-button:hover {
		filter: brightness(1.75);
	}
	.relp-light-button {
		background-color: #fff;
		color: #4444ff;
		border: 1px solid #4444ff;
		padding: 1em 1.5em;
		border-radius: 8px;
		width: 10em;
		transition: filter 0.3s ease;
	}
	.relp-light-button:hover {
		filter: brightness(0.85);
	}
	.relp-menuitems {
		color: #333;
		margin: 0 0.5em;
	}
}

/* Recruit LP Menu for Tablet */
@media screen and (max-width: 999px) {
	#relp-stickymenuarea {
		position: sticky;
		top: 64px;
		left: 0;
		width: 100%; 
		height: 64px;
		z-index: 100;
		background-color: rgba(254,254,254,0.9);
		padding: 1.2em 8px;
		border-radius: 4px;
	}
	.relp-dark-button {
		padding: 0 .8em;
		background-color: #3333ff;
    	color: #fff;
    	font-weight: 800;
    	border-radius: .5em;
	}
}

/* Recruit LP Menu for Moblie */
@media screen and (max-width: 768px) {
	#relp-stickymenuarea {
		position: sticky;
		top: 64px;
		left: 0;
		width: 100%; 
		height: 64px;
		z-index: 100;
		background-color: rgba(254,254,254,0.9);
		padding: 0.5em 8px;
		border-radius: 4px;
	}
	.relp-dark-button {
		padding: 0 .8em;
		background-color: #3333ff;
    	color: #fff;
    	font-weight: 800;
    	border-radius: .5em;
	}
}