@charset "UTF-8";
/* CSS Document */

/* ==================================================
BASE (RESET)
================================================== */
html { box-sizing: border-box; width: 100%; margin: 0; padding: 0; }
*, *::after, *::before { box-sizing: inherit; }
body { position: relative; width: 100%; margin: 0; padding: 0; text-align: center; }
#allWrap { width: 100%; margin: 0 auto; text-align: center;}

h1, h2, h3, h4, h5, h6, p { font-size: 100%; font-weight: inherit; margin: 0; padding: 0; }
ul, ol, dl { margin: 0; padding: 0; vertical-align: baseline; background: transparent; }
ol, li { list-style: none; }
dt, dd { font-weight: inherit; font-style: normal; margin: 0; padding: 0; }
table{ border-collapse: collapse; border-spacing: 0; }
th, td { font-size: inherit; font-weight: normal; font-style: normal; empty-cells: show; }
input, select { vertical-align: middle; }
input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; }
pre { white-space: pre-wrap; }
em, strong, i, b { font-style: normal; font-weight: inherit; }
figure { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent;}
img { font-size: 0; line-height: 0; border: 0; vertical-align: bottom; }
img, object, embed, video {max-width: 100%;}
a { font-size: inherit; margin: 0; padding: 0; background: transparent; }
/*レスポンシブ対応*/
img { width: 100%; height: auto; }
img[src$=".svg"] { width: 100%; height: auto; }

*:focus {
  outline: none;
}


/* ==================================================
FONT
================================================== */
body {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.01em;
	color: #000;
	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	font-feature-settings: 'liga'; /* IEサポート */
	background-color:inherit;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
}

/* ==================================================
LINK
================================================== */
a { line-height: 1.2; text-decoration: none; opacity: 1.0; transition: .3s;
 -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
/*a:link { color: #fff; }
a:visited { color: #fff; }
a:hover { color:rgba(255,255,255,0.50)}
a:active { color: #fff; }*/



/* ==================================================
PC/SP 表示切り替え
================================================== */
html { font-size: 75%;/*12px*/ }
.sp_only { }
.pc_only { display:none !important }

@media screen and (min-width: 768px) {
    html { font-size: 81.25%;/*13px*/ }
    .sp_only { display:none !important }
    .pc_only { display:block !important }
}

/* ==================================================
OTHERS
================================================== */
.clearfix::before, .clearfix::after { display: table; content: ''; }
.clearfix::after { clear: both; }
