@charset "utf-8";

/* ====================================================================================
【PC】【SP】共通パーツ
======================================================================================= */
body {
background: #F8FBFA;
	color: #45534E;
	margin:0;
	padding:0;
	font-family: 'Noto Sans JP', sans-serif;
}

.font_n {
font-family: 'Noto Sans JP', sans-serif;
}
.font_e {
font-family: 'Cardo', serif;
}
.font_m {
font-family: 'Noto Serif JP', serif;
}


/* スクロールバー -----------------*/
.00000 ul::-webkit-scrollbar {
    width: 6px;
}
.00000 ul::-webkit-scrollbar-track {
	border-radius: 0;
	background: #E4E4E4;
}
/*スクロールバーの色・角丸指定*/
.00000 ul::-webkit-scrollbar-thumb {
	border-radius: 0;
	background:#bbb;
}


/* ふわっとスライド表示
=======================================================================*/
.move {
	transform : translate(0, 50px);
	transition: all 1s ease-out;

	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

.move-on {
	transform : translate(0, 0);
	
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.move-on:nth-of-type(2) {
	moz-transition-delay: 300ms;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
}
.move-on:nth-of-type(3) {
	moz-transition-delay: 500ms;
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
}
.move-on:nth-of-type(4) {
	moz-transition-delay: 700ms;
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
}
.move-on:nth-of-type(5) {
	moz-transition-delay: 900ms;
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
}
.move-on:nth-of-type(9) {
	moz-transition-delay: 1100ms;
    -webkit-transition-delay: 1100ms;
    -o-transition-delay: 1100ms;
    -ms-transition-delay: 1100ms;
}
.move-on:nth-of-type(10) {
	moz-transition-delay: 1300ms;
    -webkit-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
}


/* ====================================================================================
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;*/
	 
	 font-weight: normal;
}

body {
    line-height: 1.8;
}

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

ol, ul{
    list-style:none;
	margin:0;
	padding:0;
}

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