.row {
    max-width: 60%;
    text-align: left;
    margin: auto;
}

.clean-vertical-card__title {
    color: #CC9D2D;
    margin-top: 10px;
    font-weight: bold;

}

.clean-vertical-card {
    margin: 30xpx;
    background-color: #fffbf2;
    position: relative;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    transition: .4s;
    padding: 20px;
    border-radius: 10px;
}

.box20 {
    position: relative;
    padding: 0.25em 1em;
    margin: 2em 0;
    top: 0;
}

.clean-vertical-card:before,
.clean-vertical-card:after {
    position: absolute;
    top: 0;
    content: '';
    width: 10px;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}

.clean-vertical-card:before {
    border-left: dotted 2px #CC9D2D;
    border-top: dotted 2px #CC9D2D;
    border-bottom: dotted 2px #CC9D2D;
    left: 0;
}

.clean-vertical-card:after {
    border-top: dotted 2px #CC9D2D;
    border-right: dotted 2px #CC9D2D;
    border-bottom: dotted 2px #CC9D2D;
    right: 0;
}

.clean-vertical-card p {
    margin: 0;
    padding: 0;
}

.tm-copy {
    font-weight: 200;
    font-size: 17px;
}

.clean-vertical-card:hover {
    background: #fbf3e2;
}

.align-items-start {
    display: flex;
}

a {
    text-decoration: none;
    color: inherit;
    /* 通常時の色を継承（任意で変更可） */
}

.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 90px;

}

.breadcrumb li {
    display: flex;
    /*横に並ぶように*/
    list-style: none;
    font-size: small;
    margin-top: 10px;

}

.breadcrumb li:after {
    /* >を表示*/
    content: '>';
    padding: 0 0.2em;

}

.breadcrumb li:last-child:after {
    content: '';
}

li[itemprop="itemListElement"] a {
    color: rgb(5, 5, 5);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #C01F17;
}

@media screen and (max-width: 1000px) {
    .row {
        max-width: 90%;
    }
    .tm-copy {
        font-size: 15px;
    }
    .clean-vertical-card__title {
        font-size: 20px;
    }


}
@media screen and (max-width: 600px) {

    .clean-vertical-card {
        margin: 20px 0px 20px 0px;
    }

    .span-url {
        max-width: 90%;
        margin-left: 15px;
    }

    .breadcrumb {
        margin-left: 15px;
    }

    .breadcrumb li {
        font-size: small;
        margin-top: 50px;
    }
}