@charset "UTF-8";
/***************************************************
　　　　　　　スタイルシートリセット
***************************************************/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	line-height: 1.5;
	font-weight: normal;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display:block;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000; 
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* 追加 */
hr {
    display: block;
    height: 1px;
    border: 0;   
    border-top:1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
img{
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}

/*************** グリッド システムの使い方 ***************
①グリッドレイアウトしたいコンテンツを.rowで囲む
②合計値が12になるようにclassを指定
③20%は.col-20pとする(5カラム用)
*******************************************************/
.row{width: 100%; overflow: hidden;}
.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3,.col-20p, .col-2, .col-1{float: left;}
.col-12{width: 100%;}
.col-11{width: 91.666667%;}
.col-10{width: 83.333333%;}
.col-9{width: 75%;}
.col-8{width: 66.6666667%;}
.col-7{width: 58.3333333%;}
.col-6{width: 50%;}
.col-5{width: 41.6666667%;}
.col-4{width: 33.3333333%;}
.col-3{width: 25%;}
.col-20p{width: 20%;}
.col-2{width: 16.6666666%;}
.col-1{width: 8.3333333%;}


/***************************************************
　　　　　　　プリント時表示しない 
***************************************************/
@media print{
    .no_print{
        display: none;
    }
}