/* css reset */
@charset "utf-8";
html, body, div, span, iframe, object,
h1, h2, h3, h4, h5, h6, p, img, a,
ol, ul, li,
form, label,
table, tbody, tfoot, thead, tr, th, td,
article,footer, header, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
  text-decoration: none;
  vertical-align: baseline;
}
/* レスポンシブ */
@media screen and (max-width:480px){
/*画面幅が480pxまでの時*/
	}
@media screen and (min-width:781px){
/*画面幅が781px以上の時*/
}

/* 共通CSS */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

html {
    min-height: 100%;
    position: relative;
}

.wrapper {
    padding: 80px 0;
    margin-bottom: 80px;
}

    .wrapper-title {
        margin-bottom: 30px;
        border-bottom: 1px solid #a2aab0;
    }

    .wrapper-title h3{
        font-size: 25px;
        color: #3e3e3b;
    }

    .wrapper-title p {
        font-size: 13px;
        color: #a2aab0;
    }
  
    .my-frame {
        text-align: center;
        margin: 0 auto;
        width: 1000px;
    }

    .my-frame2 {
        position: relative;
	top: 0;
	left:50px;
        margin: 0 auto;
        width: 1000px;
    }

    .my-frame3 {
        margin: 0 auto;
        width: 1200px;
    }

/* header */
header {
    width: 100%;
    height: 40px;
    background-color: #ebeced;
    position: fixed;
    z-index: 1;
}

.header-logo h1{
    float:left;
    padding-right: 15px;
    font-size: 18px;
}

.header-logo a {
    color: #4c586f;
    line-height: 60px;
}

    .menu-icon {
        display: none;
    }

    .menu-right {
        float:right;
        line-height: 60px;
    }

    .menu-right a {
        color: #4c586f;
    }

    .menu-right a:hover {
        color: #a2aab0;
    }

/* boxs */
.boxs {
        display: flex;
    }

    .box {
        display: inline-block;
        width: 20%;
        height: 200px;
        border:1px solid #ebeced;
        margin: 0 5px;
        text-align: center;
        color: #3e3e3b;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
        }

    .box:hover {
        color: #4c586f;
    }
    .icon{
        font-size: 80px;
        height: 130px;
        line-height: 130px;
    }
    .box p {
        font-size: 20px;
        font-weight: bold;
    }

/* boxs2 */
.boxs2 {
        display: flex;
    }

    .box2 {
        display: inline-block;
        width: 20%;
        height: 200px;
        border:1px solid #ebeced;
        margin: 0 5px;
        text-align: center;
        color: #3e3e3b;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
        }

    .box2:hover {
        color: #4c586f;
    }
    .icon2{
        font-size: 80px;
        height: 130px;
        line-height: 130px;
    }
    .box2 p {
        font-size: 20px;
        font-weight: bold;
    }

/* footer */
footer {
    height: 40px;
    background-color: #4c586f;
    text-align: right;
    bottom: 0;
    position: absolute;
    width: 100%;
}
    footer p {
        line-height: 40px;
        color: #fff;
        font-size: 12px;    
}

