*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{
    width: 100%;
}
main{
    width: 100%;
    overflow: hidden;
}

/*    パンくずリスト    */
.breadcrumb {
    padding: 2.5px;
    margin-left: 6%;
}
.breadcrumb li {
    display: inline;
    list-style: none;
    font-size: 10px;
    text-align: -webkit-match-parent;
}
.breadcrumb li a {
    text-decoration: none;
}
.breadcrumb span {
    font-size: 11px;
}
.breadcrumb li:after {
    content: '>';
    padding: 0 5px;
    color: #555;
}
.breadcrumb li:last-child:after {
    content: '';
}
/*    パンくずリスト終了    */


/*    メインコンテンツ    */
.kiwame-title{
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    margin: 0 0 3%;
}
.kiwame-title h2{
    font-weight: bold;
    font-size: 200%;
}


.main-contents{
    width: 90%;
    max-width: 1500px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 3%;
}
.main-contents h2 {
    font-weight: bold;
    font-size: 25px;
}
.main-contents li{
    display: table;
    width: 100%;
}
.left{
    width: 18%;
}
.middle{
    width: 46%;
}
.right{
    
}
.left,.middle,.right{
    display: table-cell;
    border: 1px solid #999;
    border-bottom: 0px;
    vertical-align: middle;
}
.last{
    border-bottom: 1px solid #999;
}
.left,.middle{
    border-right: 0px;
}
.left h3{
    font-weight: bold;
    font-size: 150%;
}
.middle p{
    font-weight: bold;
    font-size: 130%;
}
.main-contents li a{
    text-decoration: none;
    color: red;
    font-size: 100%;
    font-weight: normal;
}
.right{
    padding: 1.5% 0;
}
.last {
    border-bottom: 1px solid #999;
}


@media screen and (max-width: 888px){
    .left,.middle,.right{
        font-size: 1.5vw;
    }
    
    .middle{
        width: 42%;
    }
    
    .middle p{
        font-size: 180%;
    }
    
    .main-contents li .middle a{
        font-size: 1.9vw;
    }

    .main-contents h2 {
        font-size: 14px;
    }

    .right p{
        font-size: 123%;
    }
}

@media screen and (max-width: 600px){
    .kiwame-title h2{
        font-size: 120%;
    }
    .sub-title{
        font-size: 80%;
    }
}

/*    メインコンテンツ終了    */