@charset "UTF-8";
/* Page-specific styles go here. */
.hero .full {
    position: relative;
    overflow: hidden;
}
.hero .hero_slide--controller {
    position: absolute;
    z-index: 11;
    bottom: 90px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(var(--container), 100% - 48px);
}
.hero .hero_slide--controller .hero_slide--copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.hero .hero_slide--controller .h1-text {
    --headline-text-width: 100%;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    font-size: 78px;
    color: #fff;
    line-height: 1.08;
}
.hero .hero_slide--controller .h1-text svg {
    display: block;
    width: var(--headline-text-width);
    height: auto;
}
.hero .hero_slide--controller .h1-text span {
    font-size: 70px;
}
.hero .hero_slide--navs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-bottom: 12px;
}
.hero .hero_slide--nav {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.hero .hero_slide--nav::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}
.hero .hero_slide--nav-prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}
.hero .hero_slide--nav[disabled] {
    opacity: 0.45;
    cursor: default;
}
.hero .hero_slide {
    aspect-ratio: 1440/897;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.hero .hero_slide ::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(180deg, rgba(6, 64, 46, 0) 33.5%, rgba(6, 37, 40, 0.56) 83.06%, rgba(5, 9, 33, 0.7) 100%);
}
.hero .hero_slide .hero_slide--item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s linear;
}
.hero .hero_slide .hero_slide--item.is-visible {
    opacity: 1;
}
.hero .hero_slide .hero_slide--item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transform: scale(1);
    transition: transform 3s linear;
}
.hero .hero_slide .hero_slide--item.is-zooming img {
    transform: scale(1.05);
}

@media (max-width: 1080px) {
    .hero .hero_slide--controller {
        width: calc(100% - 48px);
        bottom: 56px;
    }
    .hero .hero_slide--navs {
        margin-bottom: 6px;
    }
    .hero .hero_slide--nav {
        width: 30px;
        height: 30px;
    }
    .hero .hero_slide--controller .h1-text {
        font-size: clamp(44px, 6vw, 64px);
    }
    .hero .hero_slide--controller .h1-text span {
        font-size: clamp(38px, 5.2vw, 56px);
    }
}
@media (max-width: 767px) {
    .hero .hero_slide {
        aspect-ratio: 39/49;
    }
    .hero .hero_slide--controller {
        width: calc(100% - 32px);
        bottom: 60px;
        align-items: flex-end;
    }
    .hero .hero_slide--controller .h1-text {
        font-size: clamp(30px, 8vw, 42px);
    }
    .hero .hero_slide--controller .h1-text span {
        font-size: clamp(26px, 7vw, 36px);
    }
    .hero .hero_slide--nav {
        width: 28px;
        height: 28px;
    }
    .hero .hero_slide--navs {
        display: none;
    }
}
.message {
    position: relative;
    padding-top: 260px;
    margin-top: -10vw;
    z-index: 10;
}
.message ::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0 10vw, 100% 0, 100% calc(85% - 10vw), 0 85%);
    background-image: var(--bg-image-gradation);
    background-size: cover;
}
.message .msg_inner {
    color: #fff;
}
.message .msg_contents a img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
@media (any-hover: hover) {
    .message .msg_contents a:hover img {
        transform: scale(1.03);
    }
}
.message .msg_contents a .absolute {
    background-image: linear-gradient(180deg, rgba(0, 160, 130, 0) 0%, rgba(22, 103, 126, 0.68) 54.808%, #1a477c 100%);
    background-size: cover;
}

@media (max-width: 767px) {
    .message {
        position: relative;
        padding-top: calc(10vw + 50px);
        margin-top: -10vw;
        z-index: 10;
    }
    .message ::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        clip-path: polygon(0 10vw, 100% 0, 100% calc(85% - 10vw), 0 85%);
        background-image: var(--bg-image-gradation);
        background-size: cover;
    }
    .message .msg_inner {
        color: #fff;
    }
    .message .msg_contents {
        gap: 1.5rem;
    }
    .message .msg_contents a img {
        width: 100%;
        object-fit: cover;
    }
    .message .msg_contents a .absolute {
        background-image: linear-gradient(180deg, rgba(0, 160, 130, 0) 0%, rgba(22, 103, 126, 0.68) 54.808%, #1a477c 100%);
        background-size: cover;
    }
}
.job_interview {
    position: relative;
    padding: 92px 0 70px;
}

.job_interview__inner {
    margin: 0 auto;
    margin-right: calc(50% - 50vw);
    --job-breakout-right: max(0px, calc((100vw - 100%) / 2));
    display: grid;
    grid-template-columns: 324px minmax(0, 1fr);
    column-gap: 27px;
}

.job_interview__intro {
    padding-top: 44px;
}

.section_header_h3 {
    margin: 0;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .section_header_h3 {
        font-size: 20px;
    }
}
.section_header-wrap {
    margin-top: 16px;
}

.section_header__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #00a082;
}

.job_interview__title-line {
    display: block;
    width: 238px;
    margin-top: 2px;
}

.job_interview__lead {
    margin: 30px 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.job_interview__link {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 0;
    color: #00a082;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .job_interview__link:hover {
        opacity: 0.7;
    }
}

.job_interview__link-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00a082;
    color: #fff;
}

.job_interview__link-icon::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}

.job_interview__slider {
    --card-width: 240px;
    --card-gap: 28px;
    width: calc(100% + var(--job-breakout-right));
    min-width: 0;
}

.job_interview__viewport {
    width: 100%;
    overflow: hidden;
}

.job_interview__track {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--card-gap);
    transition: transform 0.45s ease;
}

.job_interview__slide {
    flex: 0 0 var(--card-width);
    margin-top: var(--offset, 0px);
}

.job-card {
    position: relative;
    display: block;
    width: 100%;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    color: #fff;
    text-decoration: none;
}
@media (any-hover: hover) {
    .job-card:hover .job-card__image {
        transform: scale(1.03);
    }
}

.job-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.job-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 160, 130, 0) 12%, rgba(22, 103, 126, 0.68) 54.808%, #1a477c 100%);
}

.job-card__body {
    position: absolute;
    inset: auto 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
}

.job-card__copy {
    min-width: 0;
}

.job-card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.job-card__desc {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.job-card__desc span {
    display: block;
}

.job-card__arrow {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    color: #fff;
}

.job-card__arrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}

.job-card--profile {
    height: 334px;
    border-radius: 20px;
    border: 0;
}

.job-card--profile .job-card__image {
    border-radius: 20px;
}

.job-card--profile .job-card__overlay {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(4, 20, 39, 0) 57.867%, #041427 100%), rgba(255, 255, 255, 0.1);
    mix-blend-mode: normal;
}

.job-card__body--profile {
    inset: auto 25px 25px;
    gap: 20px;
}

.job-card__profile-info {
    width: 186px;
}

.job-card__badge {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #00a082 0%, rgba(0, 160, 130, 0) 100%);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.job-card__joined {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1;
}

.job-card__bio {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-card__arrow--sm {
    width: 24px;
    height: 24px;
}

.job-card__arrow--sm::before {
    width: 6px;
    height: 6px;
}

.job_interview__controls {
    width: min(1507px, 100% - 80px);
    margin: 16px auto 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 21px;
    padding-right: clamp(16px, 2.2vw, 32px);
}

.job_interview__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job_interview__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
}

.job_interview__dot.is-active {
    background: #00a082;
    border-color: #00a082;
}

.job_interview__arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job_interview__nav {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #00a082;
    border-radius: 50%;
    background: transparent;
    color: #00a082;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.job_interview__nav::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}

.job_interview__nav--prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.job_interview__nav[disabled] {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 1400px) {
    .job_interview__inner {
        width: calc(100% - 48px);
        column-gap: 24px;
    }
    .job_interview__controls {
        width: calc(100% - 48px);
    }
}
@media (max-width: 1080px) {
    .job_interview {
        padding: 72px 0 56px;
    }
    .job_interview__inner {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 24px;
    }
    .job_interview__intro {
        padding-top: 0;
    }
    .job_interview__eyebrow {
        font-size: 24px;
    }
    .job_interview__title {
        font-size: 42px;
    }
    .job_interview__lead {
        font-size: 18px;
    }
    .job_interview__slide {
        margin-top: 0;
    }
    .job_interview__slider {
        width: 100%;
    }
    .job_interview__controls {
        width: calc(100% - 48px);
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .job_interview {
        padding: 80px 0 50px;
    }
    .job_interview::after {
        height: 44px;
    }
    .job_interview__inner {
        width: 100%;
    }
    .job_interview__title {
        font-size: 34px;
    }
    .job_interview__title-line {
        width: 180px;
    }
    .job_interview__lead {
        font-size: 16px;
    }
    .job_interview__viewport {
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    .job_interview__viewport::-webkit-scrollbar {
        display: none;
    }
    /* .job_interview__track {
        transition: none;
    } */
    .job_interview__controls {
        width: 100%;
    }
}
.our-business {
    position: relative;
    padding-top: calc(10vw + 30px);
    padding-bottom: calc(10vw + 80px);
    isolation: isolate;
}
.our-business ::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 10vw, 100% 100%, 0 calc(100% - 10vw));
    background-color: var(--bg-lightgreen);
    background-size: cover;
}

.our-business__slider {
    width: 100vw;
    margin: 48px calc(50% - 50vw) 0;
}

.our-business__viewport {
    width: 100%;
    overflow: hidden;
    padding-inline: clamp(16px, 4vw, 64px);
}

.our-business__track {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 32px;
    transition: transform 0.45s ease;
    padding-bottom: 15px;
}

.our-business__slide {
    flex: 0 0 min(830px, 100vw - clamp(32px, 8vw, 140px));
}

.our-business__slider--controller {
    width: min(var(--container), 100% - 80px);
    margin: 20px auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.our-business__progress {
    flex: 1 1 auto;
    height: 3px;
    background: rgba(159, 177, 174, 0.5);
    position: relative;
    overflow: hidden;
}

.our-business__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #00a082;
    transition: width 0.45s ease;
}

.our-business__arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.our-business__nav {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #00a082;
    border-radius: 50%;
    background: transparent;
    color: #00a082;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.our-business__nav::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: -2px;
}

.our-business__nav--prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.our-business__nav[disabled] {
    opacity: 0.35;
    cursor: default;
}

.project-story-card {
    position: relative;
    display: block;
    width: 100%;
    border: 3px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #000000;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    transition: border 0.45s ease;
}
@media (any-hover: hover) {
    .project-story-card:hover .project-story-card__media .project-story-card__image {
        transform: scale(1.03);
    }
    .project-story-card:hover {
        border: 3px solid #00a082;
    }
}

.project-story-card__media {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.project-story-card__media .project-story-card__image {
    transition: transform 0.45s ease;
}

.project-story-card__image,
.project-story-card__overlay-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-story-card__content {
    position: relative;
    background: #ffffff;
    padding: 40px;
}

.project-story-card__category {
    margin: 0;
    color: #00a082;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.project-story-card__body {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.project-story-card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.project-story-card__title span {
    display: block;
}

.project-story-card__arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00a082;
    position: relative;
}

.project-story-card__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.project-story-card__step {
    position: absolute;
    left: 40px;
    top: -15px;
    margin: 0;
    padding: 8px 20px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00a082;
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.05em;
}

.project-story-card__step::before,
.project-story-card__step::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15px;
    height: 31px;
    background: #00a082;
}

.project-story-card__step::before {
    left: -14px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.project-story-card__step::after {
    right: -14px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

@media (max-width: 1080px) {
    .our-business__slider {
        width: 100vw;
    }
    .our-business__slider--controller {
        width: calc(100% - 48px);
    }
    .project-story-card__media {
        height: clamp(240px, 42vw, 350px);
    }
    .project-story-card__content {
        padding: 28px;
    }
    .project-story-card__category {
        font-size: 18px;
    }
    .project-story-card__title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .our-business {
        padding: 70px 0 80px 0;
    }
    .our-business__slider {
        width: 100vw;
    }
    .our-business__viewport {
        overflow: visible;
        padding-bottom: 0;
        padding-inline: 16px;
    }
    .our-business__track {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 0;
        transition: none;
        transform: none !important;
    }
    .our-business__slide {
        flex: 0 0 auto;
        width: 100%;
    }
    .our-business__slide[data-clone="true"] {
        display: none;
    }
    .our-business__slider--controller {
        width: calc(100% - 32px);
        display: none;
    }
    .project-story-card__content {
        padding: 20px;
    }
    .project-story-card__body {
        gap: 16px;
    }
    .project-story-card__category {
        font-size: 16px;
    }
    .project-story-card__title {
        font-size: 18px;
        line-height: 1.6;
    }
    .project-story-card__arrow {
        width: 34px;
        height: 34px;
    }
    .project-story-card__step {
        left: 20px;
        font-size: 14px;
        padding: 8px 14px;
        height: 28px;
    }
    .project-story-card__step::before,
    .project-story-card__step::after {
        height: 28px;
    }
}
.environment {
    padding: 120px 0 140px;
}

.environment_contents {
    margin-top: 42px;
}

.environment_cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.environment_card {
    background: rgba(201, 201, 201, 0.2);
    border-radius: 12px;
    padding: 40px 32px;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.45s ease;
}
@media (any-hover: hover) {
    .environment_card:hover {
        background-color: #eaeaea;
    }
    .environment_card:hover .environment_card__label {
        color: #00a082;
    }
}

.environment_card__label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    transition: color 0.45s ease;
}

.environment_card__icon {
    position: relative;
    flex: 0 0 auto;
}

.environment_card__icon--circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00a082;
}

.environment_card__icon--circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.environment_card__icon--plain {
    width: 18px;
    height: 18px;
}

.environment_card__icon--plain::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 15px;
    width: 18px;
    height: 2px;
    background: #00a082;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.environment_card__icon--plain::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 2px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #00a082;
    border-right: 2px solid #00a082;
}

@media (max-width: 1080px) {
    .environment {
        padding: 96px 0 120px;
    }
    .environment_cards {
        gap: 24px;
    }
    .environment_card {
        padding: 32px 24px;
        min-height: 110px;
    }
    .environment_card__label {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .environment {
        padding: 64px 0 80px;
    }
    .environment_contents {
        margin-top: 28px;
    }
    .environment_cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .environment_card {
        min-height: 86px;
        padding: 24px 20px;
    }
    .environment_card__label {
        font-size: 17px;
        letter-spacing: 0.04em;
    }
}
.recruit-entry {
    padding: 175px 0 120px;
    clip-path: polygon(0 10vw, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(100deg, #00a082 0%, #3477b2 100%);
}

.recruit-entry__inner {
    width: min(var(--container), 100% - 48px);
}

.recruit-entry__heading {
    color: #fff;
    text-align: center;
}

.recruit-entry__eyebrow {
    margin: 0;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
}

.recruit-entry__sub {
    margin: 16px 0 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
}

.recruit-entry__panels {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.recruit-entry__panel {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    background: rgba(201, 201, 201, 0.2);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: background 0.45s ease;
}

.recruit-entry__panel-main {
    min-width: 0;
    flex: 1 1 auto;
}

@media (any-hover: hover) {
    .recruit-entry__panel:has(.recruit-entry__job-link:hover) {
        background: rgba(201, 201, 201, 0.05);
    }
}

.recruit-entry__job-link {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    text-decoration: none;
}

.recruit-entry__job-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.recruit-entry__job-image {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 auto;
}

.recruit-entry__job-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.recruit-entry__job-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex: 0 0 auto;
    position: relative;
}

.recruit-entry__job-arrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

.recruit-entry__actions {
    width: 437px;
    flex: 0 0 437px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recruit-entry__action {
    background: #fff;
    border-radius: 60px;
    min-height: 80px;
    padding: 10px 20px 10px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.45s ease;
}

@media (any-hover: hover) {
    .recruit-entry__action:hover {
        opacity: 0.8;
    }
}

.recruit-entry__action-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.recruit-entry__action-copy--single {
    gap: 0;
}

.recruit-entry__mynavi-logo {
    width: 200px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.recruit-entry__mynavi-logo img {
    display: block;
    max-width: 100%;
}

.recruit-entry__mynavi-logo--2027 {
    position: relative;
}

.recruit-entry__mynavi-logo--2027 .recruit-entry__mynavi-base,
.recruit-entry__mynavi-logo--2027 .recruit-entry__mynavi-word {
    position: absolute;
    inset: 0;
    margin: auto;
}

.recruit-entry__mynavi-base {
    width: 200px;
}

.recruit-entry__mynavi-word {
    width: 188px;
}

.recruit-entry__action-note {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.recruit-entry__action-main {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.recruit-entry__action-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00a082;
    position: relative;
    flex: 0 0 auto;
}

.recruit-entry__action-arrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

@media (max-width: 1200px) {
    .recruit-entry__job-title {
        font-size: 22px;
    }
    .recruit-entry__actions {
        width: 390px;
        flex-basis: 390px;
    }
}
@media (max-width: 1080px) {
    .recruit-entry {
        padding: 90px 0 96px;
    }
    .recruit-entry__panels {
        margin-top: 48px;
        gap: 20px;
    }
    .recruit-entry__panel {
        padding: 28px 24px;
        flex-direction: column;
        align-items: stretch;
    }
    .recruit-entry__actions {
        width: 100%;
        flex-basis: auto;
    }
}
@media (max-width: 767px) {
    /* recruit-entry SP専用の追記はこのブロック内で調整 */
    /* .recruit-entry {
        SP override placeholder
    } */
    .recruit-entry {
        padding: 72px 0 80px;
    }
    .recruit-entry__inner {
        width: calc(100% - 32px);
    }
    .recruit-entry__eyebrow {
        font-size: 42px;
    }
    .recruit-entry__sub {
        margin-top: 12px;
        font-size: 18px;
    }
    .recruit-entry__panels {
        margin-top: 36px;
        gap: 16px;
    }
    .recruit-entry__panel {
        padding: 20px 16px;
        border-radius: 0px;
        gap: 20px;
        border: none;
        background: none;
    }
    .recruit-entry__panel:first-of-type {
        border-bottom: 1px solid #fff;
    }
    .recruit-entry__job-link {
        gap: 16px;
        flex-direction: column;
    }
    .recruit-entry__job-main {
        gap: 12px;
    }
    .recruit-entry__job-image {
        width: 140px;
        height: 140px;
    }
    .recruit-entry__job-title {
        font-size: 20px;
    }
    .recruit-entry__job-arrow {
        width: 28px;
        height: 28px;
    }
    .recruit-entry__action {
        min-height: 64px;
        border-radius: 38px;
        padding: 10px 14px 10px 22px;
        gap: 0;
    }
    .recruit-entry__mynavi-logo {
        width: 140px;
        height: 20px;
    }
    .recruit-entry__mynavi-base {
        width: 140px;
    }
    .recruit-entry__mynavi-word {
        width: 132px;
    }
    .recruit-entry__action-note {
        font-size: 14px;
        letter-spacing: 0.04em;
    }
    .recruit-entry__action-main {
        font-size: 17px;
        letter-spacing: 0.04em;
    }
    .recruit-entry__action-arrow {
        width: 28px;
        height: 28px;
    }
}
/*# sourceMappingURL=top.css.map */
