/* ==========================================================================
   共通・ベース設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #001a43;
    background-color: #fff;
    overflow-x: hidden;
}

.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 共通パーツ：見出し */
.p-section__header {
    margin-bottom: 50px;
    text-align: center;
}

.c-section-number {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.c-heading {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* 共通パーツ：ボタン */
.c-button-dark {
    display: inline-flex;
    align-items: center;
    background-color: #001a43;
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.c-button-dark:hover {
    background-color: #003366;
    transform: translateY(-2px);
}

/* ==========================================================================
   04 イベント情報
   ========================================================================== */
.p-top-section-events {
    padding: 100px 0 120px;
    background-color: #f9f9f9;
    text-align: center;
}

.p-event-grid--large {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 850px;
    margin: 0 auto 40px;
}

.p-event-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ==========================================================================
   05 インタビュー ライブラリー
   ========================================================================== */
.p-top-section-interview {
    padding-bottom: 100px;
}

.l-container--interview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.p-interview__gallery {
    flex: 0 0 420px;
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.p-interview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.p-interview__item {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.p-interview__deco-text {
    position: absolute;
    top: -35px;
    left: -25px;
    font-style: italic;
    font-size: 36px;
    color: #d4c08e;
    opacity: 0.7;
    z-index: -1;
}

/* ==========================================================================
   06 就職・キャリア：太めのシルバーフレーム
   ========================================================================== */
.p-top-section-career {
    padding: 80px 0;
    background-color: #fff;
}

.p-career-card {
    background: #fff;
    /* ★フレームをさらに太く設定（2px → 6px） */
    border: 6px solid #dcdcdc; 
    border-radius: 24px;
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    /* 枠が太いので、影はごく薄くして清潔感を維持 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.p-career-card__lead {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.p-career-card__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.p-career-data {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 50px;
    margin-bottom: 40px;
}

.p-career-data__item .label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.p-career-data__item .number {
    font-size: 48px;
    font-weight: bold;
    color: #d74026;
    line-height: 1;
}

.p-career-data__item .unit {
    font-size: 16px;
    font-weight: bold;
    color: #d74026;
    margin-left: 2px;
}

.p-career-card__note {
    font-size: 11px;
    color: #888;
    margin-bottom: 30px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 960px) {
    .l-container--interview {
        flex-direction: column-reverse;
        text-align: center;
    }
    .p-interview__gallery {
        width: 75%;
        margin-top: 40px;
    }
    .p-career-data {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .p-career-card {
        width: 92%;
        border-width: 4px; /* スマホでは少しだけ細くして圧迫感を軽減 */
        padding: 40px 20px;
    }
}