@charset "utf-8";
/* CSS Document */

html {
    font-size: 14px;
}

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;
	font-weight: normal;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif; /*全体の書体を指定する*/
    line-height: 1.5; /*全体の行の高さは文字の1.5(倍)とする*/
    text-align: justify; /*行末を揃える*/
    -webkit-text-size-adjust: 100%;
	font-size: 14px;
}

body * {

    box-sizing: border-box; /*paddingやborderの大きさもwidthとheightに含める*/
    background-repeat: no-repeat; /*背景は基本的にリピートしない*/
}

img,
embed,
iframe,
object,
audio,
video {
    max-width: 100%; /*親要素の幅からはみ出させない*/
    height: auto; /*一括指定(以降imgの大きさはwidthのみ指定すればよい)*/
	vertical-align: top;
}

a {
    display: block; /*デフォルトのdisplay:inline;で表示することが少ないため(ボタンなど)*/
    text-decoration: none; /*装飾は一切つけない*/
    color: inherit; /*親要素に指定した色を受け継ぐ*/
}


a:hover {
    opacity: .8; /*マウスオーバー時の透明度を指定*/
}

p a {
    display: inline; /*pタグ内のリンクは文字列として表示する*/
    color: #00f; /*カラーを指定*/
    text-decoration: underline; /*下線をつける*/
}

p a:hover {
    opacity: 0.7; 
}

small {
    display: block; /*改行して表示することが多いため*/
    font-size: 1rem; /*全体に指定したフォントサイズより小さい値を指定*/
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
ul,
ol {
	list-style: none;
}
nav ul {
	list-style:none;
}
td,
th {
	padding: 0;
	text-align: left;
}
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;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
.inner {
    width: 1000px; /*インナーの幅を指定*/
    position: relative; /*本来配置される位置を基準とする*/
    left: 50%; /*親要素の幅の半分右にずらす*/
    margin: 0 0 0 -500px; /*この要素の半分左にずらす*/
}
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;
}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}
.fl {
    float: left; /*class="fl"と指定するだけで左に回り込ませる*/
}

.fr {
    float: right; /*class="fr"と指定するだけで右に回り込ませる*/
}

.clearfix:after { /*回り込み解除*/
    display: block;
    content: "";
    clear: both;
}

/* header ---------------------------------------- */

/* footer ---------------------------------------- */

/* content ---------------------------------------- */

/* sidebar ---------------------------------------- */

/* ------------------------------------------------ */

