@charset "UTF-8";

/* ============================================================
   規約・手順ドキュメント系ページ固有
   （page-policy.php / page-comment-terms.php / page-comment-function.php）

   本文プロースは page-shell.css が担当。ここにあるのは
   このグループにしか出てこない2つのパーツ:
     .stepbar … 縦に連なる手順ステップ
     .box26   … タイトル付きの囲みボックス
   ============================================================ */

/* ---------- 手順ステップ ---------- */
.stepbar {
    width: 100%;
    max-width: 820px;
    margin: 8px 0 32px;
}

.stepbar img {
    transition: none;
    opacity: 1;
}

.stepbar .stepbarwrap {
    margin: 0 0 34px;
    position: relative;
}

.stepbar .stepbarwrap:last-of-type {
    margin-bottom: 0;
}

.stepbar .stepbarwrap .steptitle {
    display: inline-flex;
    align-items: center;
}

/* 丸ではなく、ホームの幾何に合わせたコバルトの四角 */
.stepbar .stepbarwrap .steptitle .stepcircle {
    display: inline-block;
    width: 11px;
    height: 11px;
    content: "";
    border-radius: 0;
    background-color: var(--c-cobalt);
    border: none;
    flex: none;
}

.stepbar .stepbarwrap .steptitle .stepnum {
    padding-left: 16px;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--c-cobalt);
}

.stepbar .stepbarwrap .steptxt {
    padding-left: 32px;
}

.stepbar .stepbarwrap .steptxt .steptxt-title {
    font-family: var(--f-body);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.015em;
    color: var(--c-ink);
    margin: 14px 0 8px;
}

.stepbar .stepbarwrap .steptxt .steptxt-txt {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: var(--c-ink-soft);
}

/* ステップ同士をつなぐ縦線 */
.stepbar .stepbarwrap .stepline {
    width: 1px;
    height: calc(100% + 34px);
    background-color: var(--c-line);
    position: absolute;
    top: 18px;
    left: 5px;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
    display: none;
}

/* ---------- タイトル付き囲みボックス ---------- */
.box26 {
    width: 100%;
    max-width: 820px;
    position: relative;
    margin: 28px 0 36px;
    padding: 30px 32px;
    background-color: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
}

.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 24px;
    padding: 0 10px;
    line-height: 1.6;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    background: var(--c-paper);
    color: var(--c-cobalt);
    font-weight: 400;
}

.box26 p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--c-ink);
}

/* ---------- 改訂履歴 ---------- */
.revision-area {
    width: 100%;
    margin-top: 56px;
    text-align: right;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    color: var(--c-ink-mute);
}

@media screen and (max-width: 768px) {
    .stepbar .stepbarwrap .steptxt {
        padding-left: 26px;
    }

    .stepbar .stepbarwrap .steptxt .steptxt-title {
        font-size: 17px;
    }

    .box26 {
        padding: 24px 20px;
    }

    .box26 .box-title {
        left: 16px;
    }
}
