.explanationMain {
    background-color: #faeceb; /*少し薄い赤*/
    font-size: 100%;
    grid-column: 1 / 6;
    grid-row: 3/40;
}

.yogoWrapper {
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(50px,auto);
    padding: 5px;
    grid-gap: 5px;
}

.yogo:nth-child(even) {
    background-color: #fad0fa;
}
.yogo:nth-child(odd) {
    background-color: #f995f9;
}

.yogoTitle {
    font-size: 100%;
}
.yogoText {
    font-size: 80%;
}

/*パンくずリスト関係のコピペ*/
.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-weight: bold; /*太字*/
}

.breadcrumb li:after { /* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #52b5ee; /*色*/
}

.breadcrumb li a:hover {
    text-decoration: underline;
}


