@charset "UTF-8";

/* === 私の履歴書 === */

.resume-intro-text {
    text-align: center;
    font-size: min(2.4vw, 24px);
    line-height: 2em;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .resume-intro-text {
        padding: 20px 0 0;
        font-size: min(4vw, 18px);
        margin-bottom: 30px;
    }
}


.resume-inner-link {
    position: relative;
    padding-bottom: 80px;
}

.resume-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.resume-links__item {
    width: 31.33%;
}

.resume-links__item a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    min-height: 90px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    transition: 0.3s;
    box-sizing: border-box;
    width: 100%;
    font-size: min(2vw, 20px);
    position: relative;
}

@media (hover: hover) {
    .push-button:hover {
        box-shadow: 0 0 2px rgba(0, 64, 152, 0.4);
    }
}

.employee-card__figure {
    width: 30%;
    border-radius: 8px;
    margin-right: 5px;
}

.resume-links__item a:after {
    content: "";
    display: block;
    position: absolute;
    background: url('../img/resume_img/inner-menu-arrow.svg') no-repeat center/contain;
    width: 30px;
    height: 30px;
    right: 7px;
    bottom: 7px;
}

.employee-card__body {
    padding-left: 10px;
}

.employee-card__copy {
    font-size: min(1.2vw, 16px);
    line-height: 1.6;
}

.employee-card__name {
    padding: 10px 0 0;
    color: #004098;
    font-size: min(1.4vw, 20px);
    line-height: 1.2;
}

.employee-card__name span {
    font-family: var(--en-font);
    font-size: min(2vw, 30px);
    line-height: 1.2;
}

.employee-card__year {
    font-size: 13px;
}

.resume-block {
    padding-bottom: 80px;
}

.resume-block h2 span {
    font-family: var(--en-font);
    font-size: 40px
}

.resume-block h2~p {
    font-size: 20px;
    padding-bottom: 20px;
}

.profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px auto 0;
}


.profile__figure {
    width: 24%;
}

.profile__info {
    width: 24%;
}

.profile__interview {
    width: 48%;
}

.profile__name {
    font-size: 24px;
}

.profile__name span {
    font-family: var(--en-font);
    font-size: 40px
}

.profile__year {
    font-size: 16px;
    margin-bottom: 10px;
}

.profile__tag {
    display: inline-block;
    background-color: #F3FAFA;
    color: #0388C6;
    padding: 1px 8px;
    font-size: 0.8em;
    margin-bottom: 2px;
    border-radius: 4px;
    line-height: 1.8em;
}

.profile__desc {
    padding-bottom: 20px;
}

.profile__desc-list {
    padding-bottom: 20px;
}

.profile__desc-list ul li {
    padding-left: 17px;
    position: relative;
    line-height: 1.6em;
}

.profile__desc-list ul li:before {
    content: "";
    display: block;
    position: absolute;
    background: #0388C6;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    left: 0.2em;
    top: 0.6em;
}

.profile__interview-item {
    padding-bottom: 20px;
}

.profile__q {
    font-weight: 500;
    padding-bottom: 3px;
}

.profile__q.green {
    color: #04BB83;
}

.profile__q.blue {
    color: #0388C6;
}

.profile__a {
    font-size: 0.95m;
    line-height: 1.8em;

}

.resume-block .trigger-btn {
    position: relative;
    width: 90%;
    margin: 20px auto 0;
    max-width: 550px;
    min-height: 80px;
    border-radius: 8px;
    background-image: linear-gradient(60deg, #0388c6 0%, #04bb83 40%, #04bb83 60%, #0388c6 100%);
    background-size: 250% auto;
    background-position: center right;
    transition: all .4s;
    color: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    ;
}

.resume-block .trigger-btn:after {
    content: "";
    display: block;
    position: absolute;
    background: url('../img/company_img/check-icon.png') no-repeat center/contain;
    width: 80px;
    height: 26px;
    right: 10px;
    top: 50%;
    transform-origin: center center;
    transform: scale(1) translateY(-50%);
    transition: all .2s;
}

@media (hover: hover) {
    .resume-block .trigger-btn:hover {
        background-position: center left;
    }
}


/* ===  === */
.modal-profile {
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.modal-profile__image {
    width: 100px;
}

.modal-profile__text {
    width: calc(100% - 120px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

}

.modal-profile__text p.hero {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-profile__text p.name {
    font-size: 20px;
    margin-bottom: 6px;
    color: #004098;
    line-height: 1;
}

.modal-profile__text p span {
    font-family: var(--en-font);
    font-size: 32px
}

.resume-modal__section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.resume-modal__image-wrapper {
    flex: 0 0 25%;
}

.resume-modal__image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* コンテンツエリア */
.resume-modal__content {
    flex: 1;
}

/* ヘッダー（数字とサブタイトル） */
.resume-modal__header {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.resume-modal__number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border: 2px solid;
    border-radius: 50%;
    font-weight: 500;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 24px;
}

.resume-modal__subtitle {
    font-size: 1.3rem;
    font-weight: 600;
}

.step-before {
    color: #04BB83;
    font-weight: 600;
    font-family: var(--en-font);
    position: relative;
}

.step-before:before {
    content: "";
    display: block;
    position: absolute;
    background: #04BB83;
    width: 240px;
    height: 2px;
    left: 68px;
    bottom: 12px;
}

.step-before .resume-modal__number {
    border-color: #04BB83;
}

.step-after {
    color: #0388C6;
    font-weight: 600;
    font-family: var(--en-font);
    position: relative;
}

.step-after:before {
    content: "";
    display: block;
    position: absolute;
    background: #0388C6;
    width: 240px;
    height: 2px;
    left: 68px;
    bottom: 12px;
}

.step-after .resume-modal__number {
    border-color: #0388C6;
}

.resume-modal__main-title {
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 0.02em;
}

.resume-modal__text {
    font-size: 0.95rem;
    text-align: justify;
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.8em;
}

@media (max-width: 768px) {
    .resume-inner-link {
        padding-bottom: 50px;
    }

    .resume-links__item {
        width: 100%;
        margin-bottom: 5px;
    }

    .resume-links__item a {
        min-height: 60px;
        width: 100%;
        font-size: min(2vw, 20px);
    }

    .employee-card__figure {
        width: 70px;
        border-radius: 8px;
        margin-right: 8px;
    }

    .resume-links__item a:after {
        width: 20px;
        height: 20px;
        right: 7px;
        bottom: 7px;
    }

    .employee-card__body {
        padding-left: 10px;
    }

    .employee-card__copy {
        font-size: min(3.8vw, 15px);
        line-height: 1.4;
    }

    .employee-card__name {
        padding: 5px 0 0;
        color: #004098;
        font-size: 14px;
    }

    .employee-card__name span {
        font-family: var(--en-font);
        font-size: 24px;
    }

    .resume-block {
        padding-bottom: 50px;
    }

    .resume-block h2 span {
        font-family: var(--en-font);
        font-size: 33px
    }

    .resume-block h2~p {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .profile {
        margin: 30px auto 0;
    }


    .profile__figure {
        width: 38%;
    }

    .profile__info {
        width: 58%;
    }

    .profile__interview {
        width: 100%;
    }

    .profile__name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .profile__name span {
        font-family: var(--en-font);
        font-size: 30px
    }

    .profile__tag {
        display: inline-block;
        background-color: #F3FAFA;
        color: #0388C6;
        padding: 1px 8px;
        font-size: 0.8em;
        margin-bottom: 2px;
        border-radius: 4px;
        line-height: 1.8em;
    }

    .profile__desc {
        padding-bottom: 20px;
    }

    .profile__desc-list {
        padding-bottom: 20px;
    }

    .profile__desc-list ul li {
        padding-left: 17px;
        position: relative;
        line-height: 1.6em;
    }

    .profile__desc-list ul li:before {
        content: "";
        display: block;
        position: absolute;
        background: #0388C6;
        width: 8px;
        height: 8px;
        border-radius: 2px;
        left: 0.2em;
        top: 0.6em;
    }

    .profile__interview-item {
        padding-bottom: 20px;
    }

    .profile__q {
        font-weight: 500;
        padding-bottom: 3px;
    }

    .profile__q.green {
        color: #04BB83;
    }

    .profile__q.blue {
        color: #0388C6;
    }

    .profile__a {
        font-size: 0.95m;
        line-height: 1.8em;

    }

    .resume-block .trigger-btn {
        position: relative;
        width: 90%;
        margin: 10px auto 0;
        max-width: 350px;
        min-height: 50px;
        font-size: 1em;
    }

    .resume-block .trigger-btn:after {
        content: "";
        display: block;
        position: absolute;
        background: url('../img/company_img/check-icon-sp.png') no-repeat center/contain;
        width: 20px;
        height: 20px;
        right: 5px;
        top: 92%;
        transform-origin: center center;
        transform: scale(1) translateY(-100%);
        transition: all .2s;
    }

    .modal-profile {
        padding: 10px;
        margin-bottom: 30px;
    }

    .modal-profile__image {
        width: 75px;
    }

    .modal-profile__text {
        width: calc(100% - 85px);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;

    }

    .modal-profile__text p.hero {
        font-size: min(3.8vw, 20px);
        line-height: 1.4em;
        margin-bottom: 5px;
    }

    .modal-profile__text p.name {
        font-size: 14px;
        margin-bottom: 0;
        color: #004098;
    }

    .modal-profile__text p span {
        font-family: var(--en-font);
        font-size: 20px
    }

    .resume-modal__section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .resume-modal__image-wrapper {
        flex: none;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .resume-modal__image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    /* コンテンツエリア */
    .resume-modal__content {
        flex: 1;
    }

    /* ヘッダー（数字とサブタイトル） */
    .resume-modal__header {
        display: flex;
        align-items: center;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }

    .resume-modal__number {
        width: 40px;
        height: 40px;
        border: 2px solid;
        border-radius: 50%;
        font-weight: 500;
        margin-right: 12px;
        flex-shrink: 0;
        font-size: 24px;
    }

    .resume-modal__subtitle {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .step-before {
        color: #04BB83;
        font-weight: 600;
        font-family: var(--en-font);
        position: relative;
    }

    .step-before:before {
        width: 140px;
        height: 2px;
        left: 52px;
        bottom: 10px;
    }

    .step-after {
        color: #0388C6;
        font-weight: 600;
        font-family: var(--en-font);
        position: relative;
    }

    .step-after:before {
        width: 140px;
        height: 2px;
        left: 52px;
        bottom: 10px;
    }

    .resume-modal__main-title {
        font-size: min(4.6vw, 1.35rem);
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 10px;
        color: #333;
        letter-spacing: 0.02em;
    }

    .resume-modal__text {
        font-size: 0.95rem;
        text-align: justify;
        margin: 0;
        white-space: pre-wrap;
        line-height: 1.6em;
    }
}