:root {
    --pressio-red: #d21d22;
    --text: #222;
    --muted: #666;
    --line: #e4e4e4;
    --panel-line: #d8dee5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: #ffffff;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.9;
}

.recruit-page {
    background-color: #fff;
    padding-top: 0;
}

.main {
    min-height: 0;
    padding: 0 0 32px;
}

.recruit-page .foot_contact {
    background: var(--pressio-red) !important;
    background-image: none !important;
}

.special-page h1,
.special-page h2,
.special-page h3,
.special-page p,
.special-page a {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.breadcrumb-band {
    margin-top: 84px;
    background: #eee;
    padding: 6px 0;
}

.breadcrumb {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.special-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 0 48px;
}

.page-title {
    margin: 0 0 42px;
    color: #000;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1.4;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--pressio-red);
}

.page-intro {
    margin: 0 0 54px;
    max-width: 920px;
    font-size: 16px;
    line-height: 1.75;
}

.interview-section+.interview-section {
    margin-top: 74px;
}

.section-title {
    margin: 0 0 30px;
    color: #000;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.05;
    padding: 20px 0 5px;
    border-bottom: 2px solid var(--pressio-red);
}

.section-title-text {
    display: inline;
    font-size: 25px;
    line-height: 1.05;
}

.section-date {
    display: inline;
    margin: 0;
    color: #444;
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: 2px;
    white-space: nowrap;
}

.section-subtitle {
    margin: 0 0 20px;
    position: relative;
    padding-left: 20px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 4px;
    height: 22px;
    background: var(--pressio-red);
}

.interview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 378px;
    gap: 30px;
    align-items: start;
}

.interview-layout.reverse {
    grid-template-columns: 378px minmax(0, 1fr);
}

.interview-layout.reverse .interview-copy {
    order: 2;
}

.interview-layout.reverse .interview-media {
    order: 1;
}

.interview-copy p {
    margin: 0 0 16px;
    font-size: 14px;
    text-align: justify;
    line-height: 1.9;
}

.interview-copy p:last-child {
    margin-bottom: 0;
}

.interview-media {
    position: relative;
    width: 100%;
    aspect-ratio: 378 / 252;
    border: 1px solid var(--panel-line);
    background: #f5f5f5;
    overflow: hidden;
}

.interview-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.requirements-section {
    margin-top: 74px;
}

.requirements-title {
    margin: 0 0 24px;
    color: #000;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--pressio-red);
}

.requirements-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 160px;
    padding: 0 24px;
    background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/02/TOKYOengineer.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.requirements-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.25s ease;
}

.requirements-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.46) 100%);
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.requirements-banner:hover::before {
    opacity: 0.88;
}

.requirements-banner:hover::after {
    background: rgba(255, 255, 255, 0.5);
}

.requirements-banner-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    color: #e4001b;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 10px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

@supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
    .requirements-banner-label {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

.requirements-banner:hover .requirements-banner-label {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
    .special-page {
        padding: 24px 20px 48px;
    }

    .section-title {
        font-size: 22px;
    }

    .interview-layout,
    .interview-layout.reverse {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .interview-layout.reverse .interview-copy,
    .interview-layout.reverse .interview-media {
        order: unset;
    }

}

@media (max-width: 767px) {
    .breadcrumb-band {
        margin-top: 0;
    }

    .main {
        padding-bottom: 24px;
    }

    .special-page {
        padding: 18px 16px 36px;
    }

    .page-title {
        margin-bottom: 34px;
        font-size: 24px;
    }

    .page-intro {
        margin-bottom: 42px;
        font-size: 14px;
    }

    .interview-section+.interview-section,
    .requirements-section {
        margin-top: 58px;
    }

    .section-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .section-date {
        display: inline;
        margin: 0;
    }

    .section-subtitle {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .section-subtitle::before {
        height: 18px;
    }

    .interview-copy p {
        font-size: 13px;
    }

    .requirements-banner {
        min-height: 160px;
        padding: 0 16px;
    }

    .requirements-banner-label {
        font-size: 20px;
        padding: 9px 12px;
        letter-spacing: 0.03em;
        line-height: 1.2;
    }
}