@charset "UTF-8";
/* CSS Document */
/*===================================================
    土台作成用CSS
===================================================*/
/*//////////////////////////////////////////////////
    Base set
///////////////////////////////////////////////////*/

* {
            box-sizing: border-box;
        -ms-box-sizing: border-box;
       -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html, body {
    width: 100%;
}

body {
    font-family: Meiryo,"メイリオ",Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro", Osaka,MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
    text-align: left;
    color: #1E1E1E;
	background-color: #ffffff;
	position: relative;
    z-index: 1;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 0.1px;
}
body.family {
    min-width: 850px;
}
.wrap {
    overflow: hidden;
}
.spBreak {
    display: none;
}
/* --------------------------------------------------------
    clearfix
-------------------------------------------------------- */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}
/* --------------------------------------------------
    画像
-------------------------------------------------- */
img {
    width: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
}

/* --------------------------------------------------
    マウスオーバーPCのみ
-------------------------------------------------- */
@media (min-width: 769px) {

    nav > p:hover {
        opacity: 0.6;
    }
    #pagetop:hover {
        opacity: 0.7;
        -ms-filter: "alpha(opacity=70)";
    }

}
/*//////////////////////////////////////////////////
    Base layout(PC)
///////////////////////////////////////////////////*/
/* --------------------------------------------------

ヘッダー(header)
	
-------------------------------------------------- */
header .headTop {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    border-bottom: 1px solid #cccccc;
}
header .headTop h1 {
    display: table;
    padding: 5px 0;
    color: #000000;
    cursor: pointer;
}
header .headTop h1 img {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    height: 40px;
    margin: 0px 15px 0px 0px;
}
header .headTop h1 span {
    display: table-cell;
    vertical-align: middle;
    padding: 13px 0 0;
    font-size: 18px;
}
/* --------------------------------------------------

main_cont
	
-------------------------------------------------- */
.container {
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}
.table01 {
	width: 100%;
}

.category {
	width: 14.5%;
}

.table01 tr th {
	padding: 5px;
	text-align: center;
	font-weight: bold;
	border: solid 1px #aaa;
	background: #eee;
}
.table01 tr td {
	padding: 5px;
	text-align: left;
	border: solid 1px #aaa;
	vertical-align: middle;
}
/* --------------------------------------------------

フッター(footer)
	
-------------------------------------------------- */
footer {
    position: relative;
    border-top: 1px solid #E5E5E5;
}
    footer .footTxt {
        max-width: 1020px;
        margin: 0 auto;
        padding: 25px 10px;
        font-size: 11px;
    }
    footer .copy {
        padding: 20px 10px;
        font-size: 12px;
        text-align: center;
        border-top: 1px solid #E5E5E5;
    }

/* --------------------------------------------------
    pagetop
-------------------------------------------------- */
#pagetop {
    position: fixed;
    right: 40px;
    bottom: 20px;
    width: 74px;
    cursor: pointer;
    z-index: 99;
}
#pagetop.ftPos {
    position: absolute;
    top: -35px;
    right: 40px;
    bottom: auto;
}