@charset "utf-8";
/* reset ---------- */
html {
    font-size: 16px;
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    color:#101010;
    margin: 0 auto;
}

body {
    padding: 0;
    margin: 0;
}

a {
    color: #101010;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* set ---------- */
header h1 img {
    max-width: 100%;
}

header h1 img.pc {
    display: block;
}

header h1 img.sp {
    display: none;
}


.sec  {
    max-width: 1040px;
    width: 100%;
    height: auto;
    margin: 40px auto;
}

.sec .inner h3 {
    max-width: 734px;/* -padding */
    width: 100%;
    height: auto;
    padding: 4px 8px;
    margin: 0 auto 20px;
    background: #C3ECF5;
    font-size: 28px;
}

.sec .inner table {
    max-width: 750px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-collapse: collapse;
}

.sec .inner table thead tr th,
.sec .inner table tbody tr td {
    padding: 8px;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.sec .inner table thead tr th {
    background: #eff9fd;
}

.sec .inner table tbody tr.row02 {
    text-align: center;
}

.sec .inner table tbody tr td.col05 {
    text-align: right;
}

footer {
    width: 100%;
    height: auto;
    margin: 20px auto;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin-bottom: 20px;
}

footer li {
    display: inline-block;
    padding-left: 8px;
}

footer li:after {
    display: inline-block;
    content: "";
    border-right: 1px solid;
    padding-left: 8px;
    height: 12px;
    vertical-align: middle;
}
footer li:last-child:after {
    content: "";
    padding-left: 0;
    border: none;
}
footer p {
    width: 100%;
    height: auto;
    background: #00396d;
    text-align: center;
    color: #fff;
    line-height: 4.0;
    font-size: 12px;
}

/* sp ---------- */
@media screen and (max-width:749px) {

    .sec {
        max-width: 96%;
    }

    header h1 img.pc {
        display: none;
    }
    
    header h1 img.sp {
        display: block;
    }

    .sec .inner h3 {
        max-width: 96%;
    }

    .sec .inner table thead,
    .sec .inner table tbody tr td.col01,
    .sec .inner table tbody tr td.col04 {
        display: none;
    }

    .sec .inner table tbody tr td {
        display: block;
        border: none;
        border-bottom: 1px solid #bbb;
        text-align: right;
    }

    .sec .inner table tbody tr td.product {
        text-align: center;
    }

    .sec .inner table tbody tr td::before {
        content: attr(label);
	    float: left;
	    clear:both;
    }    
} 