@charset "utf-8";

/* ==================================================================

    maintenance.css

=================================================================== */

/* --------------------------------
■共通
-------------------------------- */

/* --------------------------------
■maintenance_sec
-------------------------------- */
.maintenance_sec .beige_box {
    padding: 70px 7%;
    margin: 50px auto;
}

@media only screen and (max-width: 1080px) {

    .maintenance_sec .beige_box {
        padding: 50px 4%;
    }
}

@media only screen and (max-width: 767px) {

    .maintenance_sec .beige_box {
        padding: 32px 4% 42px;
        margin: 30px auto;
    }
}

.maintenance_sec dl dd.text:last-child {
    margin-bottom: 0;
}
.maintenance_sec dl dd.text + dt.title {
    margin-top: 48px
}

@media only screen and (max-width: 767px) {

    .maintenance_sec dl dd.text + dt.title {
        margin-top: 30px
    }
}

.stepbar {
    margin-top: 32px;
}
.stepbar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
    .stepbar ul::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: calc(100% - 7em);
        height: 1px;
        background-color: var(--bg-color-blue);
        z-index: -1;
    }
    .stepbar ul::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 7em;
        height: 1px;
        background-image: repeating-linear-gradient(270deg, #284b7d, #284b7d 6px, #F3F1EE 6px, #F3F1EE 12px);
        background-position: left top;
        background-repeat: repeat-x;
        background-size: 100% 1px;
        z-index: -1;
    }
.stepbar ul li {
    width: 8%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stepbar ul li span {
    background: var(--bg-color-white);
    border: 1px solid #284B7D;
    color: var(--text-color-blue);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-s);
    font-family: 'Noto Sans JP', "游ゴシック Medium", sans-serif !important;
    line-height: 1.2;
}

.stepbar ul li:first-of-type {
    width: 12%;
}
    .stepbar ul li:first-of-type span {
        background: var(--bg-color-blue);
        border: 1px solid #284B7D;
        color: #fff;
    }

.stepbar ul li:last-of-type {
    width: 7em;
    height: 1em;
}
    .stepbar ul li:last-of-type span {
        background: transparent;
        border: none;
        height: auto;
        position: absolute;
        top: 1.5em;
        left: 0;
    }

@media only screen and (max-width: 767px) {

    .stepbar {
        margin-top: 10px;
    }
        .stepbar ul::before {
            width: calc(100% - 3em);
        }
        .stepbar ul::after {
            width: 3em;
            background-image: repeating-linear-gradient(270deg, #284b7d, #284b7d 4px, #F3F1EE 4px, #F3F1EE 8px);
        }
    .stepbar ul li {
        width: 12%;
    }
        .stepbar ul li:first-of-type {
            width: 14%;
        }
        .stepbar ul li:last-of-type {
            width: 3em;
        }
    .stepbar ul li span {
        font-size: 1.1rem;
        line-height: 1.2;
    }
}
