@charset "utf-8";

/* ==========================================================================
Reset & Base Setting
========================================================================== */
/* default style reset
-------------------------------------*/
*{-webkit-box-sizing: border-box;box-sizing: border-box;}
html{background:#fff;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:separate;border-spacing:0;}
fieldset,img{border:0;}
img{vertical-align:top;}
address,caption,em,strong,th{font-style:normal;font-weight:normal;}
ol,ul,li{list-style:none;}
caption,th,td{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{font-size:100%;}
a{text-decoration: none; color:#333;}

/* body setting
-------------------------------------*/
body{
	font-size:75%;
	text-align:left;
    line-height:1;
    font-family: ryo-text-plusn,'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',YuGothic,'Yu Gothic','Arial',sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #404040;
}

html:not(:target) body{
	font-size:12px;
}

/* layout
------------------------------------- */
.wrap{
    width: 1200px;
    margin: 0 auto;
}

.fadein {
    opacity : 0;
    -webkit-transform : translate(0, 80px);
            transform : translate(0, 80px);
    -webkit-transition : all 2000ms;
    transition : all 2000ms;
}
.fadein.scrollin {
    opacity : 1;
    -webkit-transform : translate(0, 0);
            transform : translate(0, 0);
}

.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}