@charset "UTF-8";
/* ======================
history main
========================*/

.main {
    background-color: #F3EEE6;
}

/* ======================
history
========================*/

/* 縦線（スマホは左） */
.history__main {
    position: relative;
}

.history__list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0px;
    width: 2px;
    background: #333;
    border-radius: 2px;
}

.history__item {
    position: relative;
    margin-top: 36px;
    padding-left: 20px;
    /* 線＋点の右に余白 */
}

.history__item:first-of-type {
    margin-top: 0;
}

/* 点 */
.history__item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0px;
    width: 16px;
    height: 16px;
    background: #398A32;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fff;
    z-index: 2;
}

/* txt */
.history__content {
    margin-top: 36px;
}

.history__content:first-of-type {
    margin-top: 0px;
}

.time {
    margin-top: 10px;
    padding: 2px 8px;
    width: fit-content;
    color: #fff;
    background-color: #398A32;
}

.history__title {
    margin: 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* history pc */
@media screen and (min-width: 769px) {
    .history__list::before {
        left: 50%;
    }

    .history__item {
        width: calc(50% - 36px);
        padding-left: 0;
        margin-top: 48px;
    }

    .history__item:nth-child(odd)::before {
        left: calc(100% + 29px);
    }

    .history__item:nth-child(even)::before {
        left: -43px;
    }

    .history__item:nth-child(even) {
        margin-left: auto;
        text-align: left;
    }

    /* txt */
    .history__content {
        margin-top: 0;
    }

    .time {
        margin-top: 20px;
        padding: 2px 8px;
    }

    .history__title {
        font-size: 2.0rem;
    }
}/* pc 769px */

/* ========================
owner
======================== */
.ownerImg__pc {
    display: none;
}

.owner__title {
    margin: 20px auto;
    font-size: 1.8rem;
    font-weight: 700;
}

/* owner pc */
@media screen and (min-width: 769px) {
    .ownerImg__sp {
        display: none;
    } 

    .ownerImg__pc {
        display: block;
    }

    .owner__main {
        display: grid;
        gap: 48px;
        grid-template-columns: 2fr 3fr;
    }

    .owner__title {
        margin: 0 0 20px 0;
        font-size: 2.0rem;
    }
}/* pc 769px */