
.site-header {
    width: 100%;
    background: #E8D2BE;
    display: block;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.back {
  width: 100%;
  font-weight: bold;
  font-size: 30px;
  color: #E94F47;
  margin-left: 40px;
}

/*新着情報一覧*/
.news-title {
  font-size: 35px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.news-wrap {
  font-size: 20px;
  width: 760px;
  margin-right: auto;
  margin-left: 20px;
}

.news-list {
  display: flex;
  border-bottom:  1px dashed #c6c6c6;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.news-list dt {
  font-size: 20px;
  margin-right: 20px;

}

.news-list dd a:hover {
  color:#E94F47;
}

.site-footer {
  margin-top: 50px;
  position: absolute;
  width: 100%;
  display: flex;
  background: #E8D2BE 0% 0% no-repeat padding-box;
  border-top: 2px solid #E94F47;
  padding: 15px;
  opacity: 1;
  text-align: center;
  display: inline;
}

/*タブレット用*/
@media (min-width: 768px) {
    .style-nav ul li {
        display: inline-block;
    }
    .style-nav ul {
        text-align: center;
    }

    /*=== 画像の表示エリア ================================= */

.slide {
    position: relative;
    overflow: hidden;
    /* 画像のサイズに合わせて変更ください */
    width: 768px;
    height: 500px;
    margin-top: 5em;
    /* サンプルは中央寄せの背景：白 */
    background: #E8D2BE;
}

}

/*デスクトップ用*/
@media (min-width: 1024px) {

    main {
        max-width: 900px;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        margin: auto;
    }

    /*=== 画像の表示エリア ================================= */
    .slide {
        position: relative;
        overflow: hidden;
        /* 画像のサイズに合わせて変更ください */
        width: 1000px;
        height: 600px;
        margin: auto;
        margin-top: 6.4em;
        background: #E8D2BE;
    }

    /*=== 画像の設定 ======================================= */

    .slide img {
        display: block;
        left: 100%;
        animation: slideAnime 12s ease infinite;
    }

    .header {
        height: 142px;
    }
    .style-logo {
        float: left;
    }
    .style-nav {
        float: right;
    }


    #about {
        text-align: left;
    }

    /*flex container*/
    .service_icon {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-around;
        flex-flow: row wrap;
    }

    /*inside container*/
    .service_icon img {
        width: 210px;
        height: auto;
        margin-top: 15px;
    }


    #management_img {
        display: inline;
        max-width: 600px;
    }

    #management_img img {
        max-width: 600px;
    }


}