
p.intro {
    display: block;
    width: fit-content;
    margin: 1em auto;
}

.fv {
    background: linear-gradient(rgb(0 0 0 / .2), rgb(0 0 0 / .2) 75%, rgb(0 43 49 / 1) 100%), url(../feature_1.jpg);
    background-size: cover;
    background-position: 50% 30%;
}

/**************************************************

    採用情報

**************************************************/

#info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em 1em;
}

.rec-con {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 0;
    position: relative;
}

.rec-con::before {
    position: absolute;
    content: '';
    top: -32px;
    left: 50%;
    height: 48px;
    aspect-ratio: 1 / 1;
    background: url(pin.svg) no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 20;
}

.rec-con > .box {
    background: white;
    padding: 56px 20px 48px;
    width: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), calc(100% - 92px) 100%, 0 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 10;
}

.rec-con > .box::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    aspect-ratio: 150 / 95;
    width: 100px;
    height: auto;
    background-image: url(turn-pages.svg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.rec-con .box h2.base-h2 {
    position: absolute;
    top: 24px;
    left: 20px;
    font-size: 1.2rem;
    background: var(--color-main);
    color: white;
    width: calc(100% - 40px);
    padding: 0 24px;
    margin: 0 0 .5em;
    text-align: center;
}

.rec-con > .box .in-charge {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-main);
    margin: 0;
}

.rec-con > .box .in-charge b {
    display: block;
    position: relative;
    width: fit-content;
    padding: 0 .5em;
    margin: 0 auto 8px;
    font-size: 2rem;
    font-weight: bold;
    background-image: linear-gradient(to bottom, transparent 50%, rgb(61 109 121 / .15) 50%);
    z-index: 10;
}

#part-time.rec-con > .box .in-charge b::before {
    position: absolute;
    content: '!';
    bottom: -.2em;
    right: -.1em;
    transform: rotate(20deg);
    z-index: 20;
}

.rec-con > .box > img {
    width: 100%;
    display: block;
    margin-top: auto;
}

.rec-con .fukidashi {
    text-align: center;
    position: relative;
    width: fit-content;
    display: block;
    margin: 1em auto 0;
    padding: 0 1em;
}

.rec-con .fukidashi::before {
    position: absolute;
    content: '';
    height: 70%;
    width: 1px;
    background: var(--color-main);
    left: 0;
    bottom: -.5em;
    transform: rotate(-30deg);
}

.rec-con .fukidashi::after {
    position: absolute;
    content: '';
    height: 70%;
    width: 1px;
    background: var(--color-main);
    right: 0;
    bottom: -.5em;
    transform: rotate(30deg);
}

.rec-con .fukidashi b {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
}

.rec-con .btn1 {
    margin-right: auto;
    margin-left: auto;
}

#mid-car.rec-con .btn1 {
    justify-content: center;
}