@charset "utf-8";
/* ===================================================================
CSS information

 file name  :  default.css
 style info :  基本スタイル指定
=================================================================== */
/**********
//html body and base setting
**********/
html {
    overflow-y: scroll;
    font-size:62.5%;
    padding:0;
    margin:0;
    width:100%;
}
body {
    position:relative;
    overflow: hidden;
	font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	font-weight: 400;
	background: #fff;
    color:#333;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    width:100%;
    height:100%;
    margin:auto;
	text-rendering: optimizeLegibility;
    font-kerning: normal;               
    font-variant-ligatures: common-ligatures contextual;
    font-feature-settings: "kern", "liga", "clig", "calt";
}
p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
    line-height: 1.8;
}
body *::-moz-selection {
    background: #ccc;
}
body *::selection {
    background: #ccc;
}
a {
	color: #333;
    outline:none;
	transition: all .5s ease;
}
a:link,
a:visited {
    text-decoration: none;
}
a:active,
a:hover {
    text-decoration: none;
}
sup {
    vertical-align:super;
    font-size: .5em;
}
hr {
    margin: 0;
}
figure{
	position: relative;
}
section{
	position: relative;
}

/**********
//Fluid Image
**********/
img {
    max-width:100%;
    width:auto;
    height:auto;
    vertical-align:top;
}
img.fullImg {
    width:100%;
    max-width: 100%;
    height:auto;
}

/**********
//selection
**********/
*::selection {
    color:#333;
    background: #aaa;
}
*::-moz-selection {
    color:#333;
    background: #aaa;
}

/**********
//IE11スクロールバー調整
**********/
@-ms-viewport
{
    width: auto;
    initial-scale: 1;
}

@media only screen and (max-width: 1440px) {
}
@media only screen and (max-width: 1366px) {
}

