@charset "UTF-8";

/* ==========================================================================
   Recruit ページ固有のスタイル定義
   ※ 外枠・PCパネル・スマホフレーム等のレイアウトは ../css/style.css から継承
   ========================================================================== */

/* 採用メインビジュアル・ヘッダー */
.recruit-main-section {
    padding: 30px 20px 15px 20px;
    text-align: center;
}

/* メインタイトル「Recruit」の袋文字スタイル (画像再現) */
.recruit-page-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.04em;
    -webkit-text-stroke: 2px #ea6182;
    text-shadow: 
        2.5px 2.5px 0px #231815,
        -1.5px -1.5px 0px #ea6182,
        1.5px -1.5px 0px #ea6182,
        -1.5px 1.5px 0px #ea6182,
        1.5px 1.5px 0px #ea6182;
}

.recruit-page-subtitle {
    font-size: 0.8rem;
    font-weight: 900;
    color: #231815;
    margin-top: 6px;
    letter-spacing: 0.08em;
}

/* 採用詳細セクション（大きなピンクカード構造） */
.recruit-detail-section {
    background-color: #ffffff;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 新卒採用：淡いピンク色の大きな外枠カード */
.recruit-pink-card {
    width: 88%;
    background-color: #fcaec0;
    border: 2.5px solid #231815;
    border-radius: 24px;
    box-shadow: 4px 4px 0px #231815;
    padding: 24px 16px 20px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 経験者採用：濃い鮮やかピンク色の大きな外枠カード (画像再現) */
.recruit-deep-pink-card {
    width: 88%;
    background-color: #ea6182;
    border: 2.5px solid #231815;
    border-radius: 24px;
    box-shadow: 4px 4px 0px #231815;
    padding: 24px 16px 20px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 見出し「新卒採用」「経験者採用」「選考の流れ」の袋文字スタイル (画像再現) */
.recruit-sub-title {
    font-size: 1.95rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-align: center;
    letter-spacing: 0.06em;
    -webkit-text-stroke: 2px #231815;
    text-shadow: 3px 3px 0px #231815;
}

.recruit-sub-title::after {
    display: none;
}

/* 内部の白いテキストボックス */
.recruit-inner-white-box {
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 16px 12px 20px 12px;
    box-sizing: border-box;
}

/* カプセル型職種ヘッダー (◀ 企画営業 ▶) */
.recruit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #ea6182;
    border-radius: 50px;
    padding: 6px 10px;
    margin-bottom: 22px;
    background-color: #ffffff;
}

/* 職種名テキスト（絶対改行禁止設定） */
.recruit-job-title {
    font-size: 0.95rem;
    font-weight: 900;
    color: #231815;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.nav-arrow {
    background: none;
    border: none;
    color: #ea6182;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
    flex-shrink: 0;
}

.nav-arrow:hover {
    transform: scale(1.2);
}

/* 職種詳細コンテンツ */
.recruit-card-content {
    display: flex;
    flex-direction: column;
}

.recruit-info-item {
    display: none;
}

.recruit-info-item.active {
    display: block;
}

/* ●職種 見出しスタイル */
.info-label {
    font-size: 0.92rem;
    font-weight: 900;
    color: #231815;
    margin: 14px 0 4px 0;
    text-align: left;
    display: flex;
    align-items: center;
}

.info-label:first-child {
    margin-top: 0;
}

.info-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: #231815;
    margin: 0 0 12px 0;
    line-height: 1.55;
    text-align: left;
    padding-left: 12px;
}

.info-val small {
    font-size: 0.75rem;
    color: #555555;
    display: block;
    margin-top: 2px;
}

.info-val:last-child {
    margin-bottom: 0;
}

/* 下部の大きな円形切り替えタブボタン (1, 2, 3) */
.recruit-card-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.tab-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    background-color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ea6182;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    outline: none;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

/* 淡いピンクカード内の丸タブボタン */
.recruit-pink-card .tab-dot {
    border-color: #ea6182;
    color: #ea6182;
}

.recruit-pink-card .tab-dot.active {
    background-color: #ea6182;
    color: #ffffff;
}

/* 濃いピンクカード内の丸タブボタン (画像再現) */
.recruit-deep-pink-card .tab-dot {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #ea6182;
}

.recruit-deep-pink-card .tab-dot.active {
    background-color: #fcaec0;
    border-color: #fcaec0;
    color: #ffffff;
}

.tab-dot:hover {
    transform: translateY(-2px);
}

/* ぴょんぴょん跳ねる跳躍アニメーション */
@keyframes bounce-jump {
    0%, 100% {
        transform: translateY(0);
    }
    35% {
        transform: translateY(-7px);
    }
    55% {
        transform: translateY(-2px);
    }
}

/* エントリーシートダウンロードボックス (スマホ対応ポップ・かわいいカプセル立体ボタン) */
.entry-sheet-download-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88%;
    margin-top: 24px;
    background-color: #fff6f8;
    border: 2px dashed #fcaec0;
    border-radius: 20px;
    padding: 16px 14px 18px 14px;
    box-sizing: border-box;
}

.entry-sheet-pop-title {
    font-size: 0.88rem;
    font-weight: 900;
    color: #ea6182;
    margin: 0 0 12px 0;
    letter-spacing: 0.05em;
    text-align: center;
    display: inline-block;
    animation: bounce-jump 1.5s ease-in-out infinite;
}

.entry-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.entry-btn {
    flex: 1;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    border: 2.5px solid #231815;
    border-radius: 50px;
    box-shadow: 3px 3px 0px #231815;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.entry-btn.btn-pdf {
    background-color: #00a8ff;
}

.entry-btn.btn-xls {
    background-color: #2ecc71;
}

.entry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 3px 5px 0px #231815;
}

.entry-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #231815;
}

.btn-icon {
    font-size: 1.05rem;
}

/* 選考フローセクション (画像完全再現) */
.recruit-flow-section {
    background-color: #ffffff;
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flow-lead-subtitle {
    font-size: 0.88rem;
    font-weight: 800;
    color: #231815;
    margin: 0 0 28px 0;
    text-align: center;
    letter-spacing: 0.04em;
}

.flow-container {
    width: 86%;
    display: flex;
    flex-direction: column;
}

.flow-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.flow-detail-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.flow-detail-list li.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* 順番にふわっと表示される順次ディレイ設定 */
.flow-detail-list li:nth-child(1) { transition-delay: 0.05s; }
.flow-detail-list li:nth-child(2) { transition-delay: 0.15s; }
.flow-detail-list li:nth-child(3) { transition-delay: 0.25s; }
.flow-detail-list li:nth-child(4) { transition-delay: 0.35s; }
.flow-detail-list li:nth-child(5) { transition-delay: 0.45s; }
.flow-detail-list li:nth-child(6) { transition-delay: 0.55s; }

/* シンプルな黒丸バッジ */
.flow-badge-wrapper {
    width: 32px;
    height: 32px;
    background-color: #231815;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.flow-badge-num {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
}

.flow-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.flow-step-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #231815;
    margin: 0 0 8px 0;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.flow-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #231815;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.flow-text-note {
    margin-top: 10px;
}

.flow-link-underline {
    color: #231815;
    text-decoration: underline;
    font-weight: 800;
}

/* 応募書類送付先 黒ボード (画像再現) */
.flow-address-board {
    background-color: #231815;
    color: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 14px;
    width: 100%;
    box-sizing: border-box;
}

.flow-address-board h5 {
    font-size: 0.98rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.04em;
}

.flow-address-board p {
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.55;
    margin: 0;
    color: #ffffff;
}

/* 社員インタビュー */
.recruit-interview-section {
    background-color: #ffffff;
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.interview-container {
    width: 82%;
    background-color: #ffffff;
    border: 2.5px solid #231815;
    border-radius: 18px;
    box-shadow: 6px 6px 0px #231815;
    padding: 28px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interview-oval-frame {
    width: 130px;
    height: 180px;
    border: 2.5px solid #231815;
    border-radius: 65px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.15);
}

.interview-oval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.interview-profile strong {
    font-size: 1.05rem;
    font-weight: 900;
    color: #231815;
    margin-bottom: 3px;
}

.interview-profile span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666666;
}

.interview-quote {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444444;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 22px 0;
    font-style: italic;
    background-color: #fcfcfc;
    padding: 12px;
    border-radius: 8px;
    border: 1.5px solid #eeeeee;
}

.interview-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.interview-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ea6182;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2.5px solid #231815;
    border-radius: 50px;
    padding: 10px 24px;
    box-shadow: 3.5px 3.5px 0px #231815;
    transition: transform 0.2s ease;
}

.interview-link-btn:hover {
    transform: scale(1.03);
}

/* 応募エントリーボタン・吹き出し */
.recruit-apply-section {
    background-color: #ffffff;
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.apply-balloon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: 82%;
}

.apply-bubble {
    width: 100%;
    background-color: #ea6182;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 12px;
    border: 2.5px solid #231815;
    box-shadow: 3.5px 3.5px 0px #231815;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.65;
    position: relative;
    animation: bounce-jump 1.6s ease-in-out infinite;
}

.apply-bubble::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 7px 0;
    border-style: solid;
    border-color: #231815 transparent;
}

.apply-bubble::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 6px 0;
    border-style: solid;
    border-color: #ea6182 transparent;
    z-index: 1;
}

.apply-contact-container {
    width: 82%;
    display: flex;
    justify-content: center;
}

.apply-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #231815;
    border-radius: 50px;
    background-color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 4px 4px 0px #231815;
}

.apply-btn:hover {
    transform: scale(1.02);
}

.apply-btn-text {
    font-size: 1.05rem;
    font-weight: 900;
    color: #231815;
    margin-right: 12px;
}

.apply-btn-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #231815;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.95rem;
}

/* マイナビバッジ用メインテキスト調整 */
.badge-title-mynavi {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 4px;
    word-break: keep-all;
}

/* マイナビロゴ画像（大きめの丸型アイコン） */
.mynavi-icon-wrapper {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 4px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    border: 3px solid #ffffff;
    flex-shrink: 0;
}

.mynavi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   社員インタビューセクション (スクリーンショット完全再現)
   ========================================================================== */
.recruit-interview-section {
    padding: 25px 16px 35px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interview-lead-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: #231815;
    margin: 4px 0 20px 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.interview-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* スライダーエリア (◀ 楕円写真 ▶) */
.interview-slider-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 18px;
    position: relative;
}

/* 縦長楕円形フレーム */
.interview-oval-frame {
    width: 220px;
    height: 280px;
    border-radius: 50% / 40%;
    overflow: hidden;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.interview-oval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* 顔が切れないように写真をフレーム内で下に下げて表示 */
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 左右ピンク矢印ボタン (◀ ▶) */
.interview-nav-btn {
    background: none;
    border: none;
    color: #ea6182;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.15s ease, color 0.15s ease;
    user-select: none;
    outline: none;
}

.interview-nav-btn:hover {
    transform: scale(1.3);
    color: #d84b6f;
}

.interview-nav-btn:active {
    transform: scale(0.95);
}

/* 部署・入社年プロファイル */
.interview-profile-box {
    text-align: center;
    margin-bottom: 16px;
}

.interview-dept {
    font-size: 1.05rem;
    font-weight: 900;
    color: #231815;
    margin: 0 0 4px 0;
    letter-spacing: 0.04em;
}

.interview-year {
    font-size: 0.88rem;
    font-weight: 700;
    color: #444444;
    margin: 0;
}

/* インタビュー動画はこちら カプセルボタン */
.interview-btn-container {
    margin-bottom: 22px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-btn-wrapper {
    position: relative;
    display: inline-block;
}

/* 重なる「準備中」バッジ */
.preparing-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    z-index: 10;
    background-color: #ffd13b;
    color: #231815;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: 20px;
    border: 2px solid #231815;
    box-shadow: 2px 2px 0px #231815;
    transform: rotate(10deg);
    letter-spacing: 0.05em;
    pointer-events: none;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: rotate(10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.08); }
}

.interview-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ea6182;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 3px 6px rgba(234, 97, 130, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.interview-video-btn.disabled {
    opacity: 0.85;
    cursor: default;
}

.interview-video-btn:hover {
    background-color: #d84b6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(234, 97, 130, 0.4);
}

.play-circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #ea6182;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1;
    padding-left: 2px;
}

/* インタビュー小見出し（大きく・太く・中央揃え・綺麗な改行） */
.interview-sub-heading {
    font-size: 1.05rem;
    font-weight: 900;
    color: #231815;
    text-align: center;
    line-height: 1.55;
    margin: 0 0 16px 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: 0.04em;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* インタビュー本文テキスト */
.interview-text-box {
    width: 92%;
    text-align: justify;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.interview-text-box.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

.interview-body-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #231815;
    margin: 0;
    word-break: break-word;
    white-space: pre-wrap;
    letter-spacing: 0.03em;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
