/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
    list-style:none;
}

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;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* html
---------------------------------------------------- */
html {
	font-size: 62.5%;
}
h1, h2, h3, h4, h5, h6, strong {
     font-weight: 500;
} 

/* ヘッダー
---------------------------------------------------- */
header {
	width: 100%;
	background: url(../images/header-bg.png) 0 0 repeat-x;
	background-size: contain;
	margin-bottom: 2px;
	position: relative;
}
header h1 {
	max-width: 719px;
	padding: 7px 12px;
}
header .badge {
	display: none;
}

/* ボディー
---------------------------------------------------- */
body {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6em;
	font-weight: 300;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 全体構造
---------------------------------------------------- */
.inner {
	margin: 0 7px;
}

.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	flex-flow: column;
}
.row-column-reverse {
	flex-flow: column;
}
.column {
	flex-flow: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	text-align: center;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
	text-align: center;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
	text-align: center;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: center;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	text-align: center;
}

.w50,
.w49,
.w48,
.w33,
.w25,
.w20 {
	width: 100%;
}

/* 画像
---------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
	-webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 155px;
	background: url(../images/footer-bg.png) 0 0 repeat-x;
	text-align: center;
	font-size: 11px;
	font-size: 1.rem;
	color: #929292;
}
footer .logo {
	padding-top: 40px;
}

/* レティーナ用画像
---------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
header {
	background: url(../images/header-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
footer {
	background: url(../images/footer-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
}


/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {

/* ヘッダー
---------------------------------------------------- */
header {
	height: 84px;
}
header h1 {
	margin: 15px 0 0 0/*16.28571%*/;
}

	
header .inner {
		position: relative;
	}
header .badge {
	display: block;
	width: auto;
	position: absolute;
	top: -25px;
	right: 0/*225px*/;
	z-index: 8000;
}
header .badge img {
	width: 125px;
}	

/* 全体構成
---------------------------------------------------- */
.flex div {
	margin:0 1%;
}

.row {
	flex-flow: row;
	flex: 1;
	-webkit-flex: 1;
}

.row-column {
	flex-flow: row;
}
.row-column-reverse {
	flex-flow: row-reverse;
}

/* 上揃え */
.top {	
	-webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
	/* 下揃え */
.bottom {	
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
	/* 真ん中揃え */
.centre {	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
	/* ベースライン揃え */
.baseline {	
	-webkit-box-align: baseline;
    -ms-flex-align: baseline;
	-webkit-align-items: baseline;
    align-items: baseline;
}
	/* ストレッチ揃え */
.stretch {	
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
	-webkit-align-items: stretch;
    align-items: stretch;
}

.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w33 {
	width: 33%;
}
.w25 {
	width: 25%;
}
.w20 {
	width: 20%;
}

/* 共通
---------------------------------------------------- */
.wrap {
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
}
}

@media all and (min-width: 820px) {

/* ヘッダー
---------------------------------------------------- */
header .badge img {
	width: 145px;
}	
}
/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 1140px) {

}
