@charset "utf-8";
/*
コンテナー：1
---------------------------------------------------------*/
.sideber__ctr{
    box-shadow:0px 0px 4px 2px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin-bottom: 30px;
}
.sideber__head {
    padding: 1.5rem;
    text-align: center;
    border-bottom: solid .2rem rgba(0, 0, 0, 0.05);
    font-weight: bold;
    color: #656565;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.sideber__head__title {
}
.sideber__head__btn {
    position: absolute;
    right: 15px;
}
.sideber__head__btn a{
    background: #e8e8e8;
    color: #000;
    border-radius: 2px;
    font-size: 13px;
    padding: 0.4rem 1rem .5rem;
    transition: .3s ease-out;
}
.sideber__head__btn a:hover{
    background: #dd3f3f;
    color: #fff;
}
.sideber__body {
    padding: 0 1.5rem;
    display: flex;
}
.sideber__body__wrap {
    display: flex;
    flex-flow: column;
}
.sideber__item {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: solid .1rem rgba(0, 0, 0, 0.07);
}
.l_front-page #sideber{
    max-width: 80rem;
    margin: 0 auto;
}
@media screen and (max-width: 1024px) {
    .sideber__ctr{
        margin-bottom: 5rem
    }
    .sideber__body__wrap {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .sideber__item{
        width: calc((100% - 20px)/2);
    }
    .sideber__item:last-child,
    .sideber__item:nth-last-child(2)	{
        border-bottom: none;
    }
}
@media screen and (min-width: 640px) {
    .l_front-page .sideber__ctr{
        margin-bottom: 5rem
    }
    .l_front-page .sideber__body__wrap {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .l_front-page .sideber__item{
        width: calc((100% - 20px)/2);
    }
    .l_front-page .sideber__item:last-child,
    .l_front-page .sideber__item:nth-last-child(2)	{
        border-bottom: none;
    }
}
.sideber__item__img {
    width: 11.5rem;
    margin: 0rem 1rem 0em 0;
    overflow: hidden;
    height: 8rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 150%;
    transition: .3s ease-out;
}
.sideber__item:hover .sideber__item__img {
    background-size: 170%;
}
.sideber__item__img img {
    width: 120%;
}
.sideber__item__title {
    font-size: 1.4rem;
    letter-spacing: 0;
    font-weight: bold;
    color: #656565;
    line-height: 1.4;
    flex: 1;
    text-align: justify;
    transition: .3s ease-out;
}
.sideber__item:hover .sideber__item__title{
    color: #c33838;
}

@media screen and (max-width: 640px) {
    .sideber__item {
        width: 100%;
    }
    .sideber__item:nth-last-child(2)	{
        border-bottom: solid .1rem rgba(0, 0, 0, 0.07);
    }
}

/*
コンテナー：2
---------------------------------------------------------*/
.sideber__ctr2 {
    display: flex;
    flex-flow: column;
}
.sideber__banner {
    margin-bottom: 30px;
    border: solid .2rem rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 2.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    transition: .3s ease-out;
}
.sideber__banner:hover {
    background: #eff4fc;
}
.sideber__banner__item1 {
}
.sideber__banner__item2 {
    font-size: 3.5rem;
    color: #db7a0a;
}
.sideber__banner__titl {
    font-weight: bold;
    color: #005f00;
    font-size: 1.9rem;
    padding-bottom: .4em
}
.sideber__banner__text {
    color: #000;
    padding-left: .1em;
    font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
    .sideber__ctr2  {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .sideber__banner {
        width: calc((100% - 4%)/2);
    }
}
@media screen and (max-width: 640px) {
    .sideber__ctr2  {
        justify-content: center;
    }
    .sideber__banner {
        width: 100%;
        max-width: 40rem;
        margin: 0rem 0 2rem;
    }
}
@media screen and (min-width: 640px) {
    .l_front-page .sideber__ctr2  {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .l_front-page .sideber__banner {
        width: calc((100% - 4%)/2);
    }
}