@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, iin, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*------------------------------------------------------------
font
------------------------------------------------------------*/

/* Windows 用 Medium 指定の游ゴシック */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}


body, table, input, textarea, select, option {
	/* ゴシック体指定 */
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-family: "MeiryoUI", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;*/
	letter-spacing: .04em;
}

@media screen and (max-width: 767px) {
	body, table, input, textarea, select, option {
		letter-spacing: .02em;
	}
}

/*------------------------------------------------------------
Padding
------------------------------------------------------------*/
.pt10{
	padding-top: 10px;
}
.pt20{
	padding-top: 20px;
}

.ptb20{
	padding: 20px 0;
}
.plr5{
	padding: 0 5px;
}
.pl10{
	padding-left: 10px;
}
/*------------------------------------------------------------
Margin
------------------------------------------------------------*/
.mg0{
	margin: 0;
}

.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt30{
	margin-top: 30px;
}
.ml5{
	margin-left: 5px;
}
.mb20{
	margin-bottom: 20px;
}

/*------------------------------------------------------------
Width
------------------------------------------------------------*/
.full-width {
  width: 100%;
}

/*------------------------------------------------------------
text
------------------------------------------------------------*/
.al_left{
	text-align: left;
}
.al_right{
	text-align:right;
}

/*------------------------------------------------------------
button
------------------------------------------------------------*/
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button:focus {
  outline: none;
	
}

/*------------------------------------------------------------
a
------------------------------------------------------------*/
a {
	text-decoration: none;
	cursor: pointer;
}



