@charset "UTF-8";

/* ================================================ */
/*  Base																						*/
/* ================================================ */

img {
	width: 100%;
}


/* border-box */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*
p {
	margin-block-start: 0px !important;
	margin-block-end: 0px !important;
}
*/


/*++++++++++++++++++++++++++
	リンクの枠消し
++++++++++++++++++++++++++*/

*:focus {
	outline: none;
}

a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}

/*++++++++++++++++++++++++++
	Link : Text
++++++++++++++++++++++++++*/
a {
	text-decoration: none;
	color: #000;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}


/*++++++++++++++++++++++++++
	font
++++++++++++++++++++++++++*/

em {
	font-style: normal;
}

.gothic {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.mincho {
	font-family: 'Noto Serif JP', serif;
}

.marugo {
	font-family: "M PLUS Rounded 1c";
}

.gothic_bold {
	font-family: "M PLUS 1p";
}

h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}


/*++++++++++++++++++++++++++
	切り替え
++++++++++++++++++++++++++*/
@media screen and (min-width: 600px) {
	.pc {
		display: block;
	}

	.sp {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

dl, dt, dd, ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}


