/*--------------------------------------                        
   学校一覧リンクリスト用
--------------------------------------*/      
.school-list dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}
.school-list dl dd {
    width: calc(100% / 5);
    min-width: 150px;
    text-align: center;
    border-radius: 0.5rem;
    border-bottom: 1px solid #ccc;
    border-right: solid 1px #ccc;
}
.school-list dl dd a {
    display: block;
    padding: 1rem;
}
/* 小学校 */
.school-list.elementary dl dd:nth-of-type(odd) {
    background-color:#f0f0ff;
}
.school-list.elementary  dl dd:hover {
    background-color: #bcbcff !important;
}
/* 中学校 */
.school-list.junior dl dd:nth-of-type(odd) {
    background-color: #f0fff0;
}
.school-list.junior dl dd:hover  {
    background-color: #90ee90;
}
/* 幼稚園 */
.school-list.kindergarten dl dd:nth-of-type(odd) {
    background-color: #fff0f0;
}
.school-list.kindergarten dl dd:hover {
    background-color: #ffb6c1;
}
/* その他 */
.school-list.education dl dd:nth-of-type(odd) {
    background-color: #f0f0f0;
}
.school-list.education dl dd:hover {
    background-color: #c0c0c0;
}
/*--------------------------------------                        
RSS用CSS：sideテンプレ                        　　　　　　　　　　
--------------------------------------*/                        
/* まとめ行なしの場合 */                        
.plugin-rsses.rsses-side .rsses-block-inner {                        
padding-bottom: 1rem;                        
}                        
.plugin-rsses.rsses-side .rsses-block-inner-title {                        
font-weight: bold;                        
}                        
/* まとめ行ありの場合 */                        
.plugin-rsses.rsses-side .title {                        
font-weight: bold;                        
}                        
.plugin-rsses.rsses-side .rsses-block-inner .row {                        
padding-bottom: 0.5rem;                        
}                        "