@charset "UTF-8";

:root {
    --primary-white: #FFFFFF;
    --primary-gray: #F2F2F2;
    --primary-blue: #016FD7;
    --primary-orange: #FE9028;
    --primary-black: #222222;
    --section-padding: 72px 5.3%;
}

@media screen and (min-width: 768px) {
    :root {
        --section-padding: 108px 3em;
    }
}


/* recruit message*/

.recruit-message .inner {
    background-color: var(--primary-gray, #F2F2F2);
}

.secTxtWrapper.recruitMessage {
    grid-template-columns: auto 4em 1fr;
    column-gap: 0px;
}

.secTxt.recruitMessage {
    margin-top: 0px;
    grid-area: 4/1/5/4;
}

.secWrapper.recruitMessage {
    margin-top: 0px;
}

/* recruit charm */

.item.charm {
    background-color: var(--primary-gray, #F2F2F2);
    padding: 40px 1.5em;
    max-width: 640px;
}

.itemTitleWrapper.charm {
    padding: 0;
    flex-direction: column;
    gap: 0.5em;
}

.itemSubTitle.charm {
    border-left: none;
    border-bottom: 1px solid var(--primary-black, #222222);
}

/* recruit charm  レスポンシブ*/

@media screen and (min-width:768px) {

    .itemList.charm {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .item.charm {
        padding: 60px 2.25em;
        width: 100%;
    }
}

@media screen and (min-width:1024px) {

    .item.charm {
        width: 32%;
    }

    .itemList.charm {
        flex-direction: row;
        align-items: stretch;
        gap: 2%;
    }

}

/* recruit description */

.recruit-description .inner {
    background-color: var(--primary-gray, #F2F2F2);
}

.secImg.description {
    margin-top: 40px;
}

/* recruit description レスポンシブ */

@media screen and (min-width:768px) {

    .secImg.description {
        width: 100%;
        height: 360px;
        margin-top: 64px;
    }

}

@media screen and (min-width:1024px) {

    .secWrapper.description {
        flex-direction: column;
        align-items: center;
    }

}


/* AI */

.container {
    /* max-width: 800px; */
    margin: 0 auto;
}

.timeline-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 32px;
    position: relative;
}

.timeline-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --------------------------------------------------
       タイムライン コンテナ
    -------------------------------------------------- */
.timeline {
    position: relative;
    padding-left: 20px;
    margin-top: 72px;
}

/* タイムライン縦ライン */
.timeline::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 39px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), #93c5fd);
    z-index: 1;
}

/* --------------------------------------------------
       日程グループ (DAY)
    -------------------------------------------------- */
.day-group {
    position: relative;
    margin-bottom: 36px;
    z-index: 2;
}

.day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 8px rgba(0, 117, 223, 0.25);
    margin-bottom: 16px;
}

/* --------------------------------------------------
       ステップカード
    -------------------------------------------------- */
.step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-left: 40px;
    margin-bottom: 16px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 117, 223, 0.12);
}

/* タイムライン上のドット */
.step-card::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 24px;
    width: 13px;
    height: 13px;
    background-color: #ffffff;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 3;
}

/* ステップタイトル */
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.step-number {
    background-color: var(--accent-light);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.4rem;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.step-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-main);
}

/* ステップ詳細リスト */
.step-details {
    list-style: none;
}

.step-details li {
    position: relative;
    padding-left: 18px;
    font-size: 1.8rem;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.step-details li:last-child {
    margin-bottom: 0;
}

/* リストアイコン・弾丸 */
.step-details li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--primary-blue);
    font-weight: bold;
}

.step-details li.time-info::before {
    /* content: "🕒"; */
    font-size: 1.8rem;
    left: 0;
}

@media screen and (min-width:1224px) {
    .page-strength .inner {
        padding: 10em 8em;
    }

    .timeline {
        /* margin-top: 72px; */
    }
}

/* --------------------------------------------------
       時刻・作業項目 分割テーブル表現
    -------------------------------------------------- */
.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table th,
.detail-table td {
    padding: 10px 12px;
    font-size: 1.8rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.detail-table tr:last-child th,
.detail-table tr:last-child td {
    border-bottom: none;
}

.detail-table th.col-header {
    background-color: transparent;
    color: var(--text-sub);
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 6px;
}

.detail-table th.item-name {
    width: 25%;
    background-color: var(--accent-light);
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.detail-table td.time-cell {
    width: 35%;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
}

.detail-table td.work-cell {
    color: var(--text-main);
    font-weight: 500;
}

/* --------------------------------------------------
       レスポンシブ対応
    -------------------------------------------------- */
@media (max-width: 600px) {
    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 19px;
    }

    .step-card {
        margin-left: 36px;
        padding: 16px;
    }

    .step-card::before {
        left: -23px;
    }

    .step-title {
        font-size: 1.05rem;
    }
}


.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 32px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 12px auto 0;
    border-radius: 2px;
}

.Img {
    margin-top: 32px;
}

/* --------------------------------------------------
       料金表カード
    -------------------------------------------------- */
.price-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--card-shadow);
    margin-top: 72px;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-black);
}

.price-badge {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
}

.price-category {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

/* テーブルデザイン */
.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--primary-black);
}

.price-table th {
    background-color: var(--accent-light);
    color: var(--primary-dark);
    font-weight: 700;
    width: 40%;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.price-table td {
    font-size: 1.8rem;
    color: var(--text-main);
}

/* ハイライトされた価格表示 */
.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-sub);
}

.price-note {
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--text-sub);
    text-align: right;
}

/* --------------------------------------------------
       レスポンシブ対応
    -------------------------------------------------- */
@media (max-width: 600px) {
    .price-card {
        padding: 0;
    }

    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-table th,
    .price-table td {
        display: block;
        width: 100%;
        padding: 10px 12px;
    }

    .price-table th {
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .price-table td {
        border-bottom: none;
    }

    .price-table tr {
        border-bottom: 1px solid var(--border-color);
        display: block;
        padding-bottom: 8px;
    }

    .price-note {
        margin-top: 20px;
        font-size: 1.2rem;
        color: var(--text-sub);
        text-align: right;
    }
}