@charset "UTF-8";

/*=============================================================
 02_base
=============================================================*/

body {
	font-family: MyYuGothicM, YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-weight: 500;
	color: #333333;
	box-sizing: border-box;
}

@font-face {
	font-family: 'NotoSansCJKjp';
	font-weight: 500;
	src:url("../fonts/NotoSansCJKjp-Regular.woff2") format('woff2'),
			url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}
@font-face {
	font-family: 'NotoSansCJKjp';
	font-weight: 600;
	src:url("../fonts/NotoSansCJKjp-Medium.woff2") format('woff2'),
			url('../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}
@font-face {
	font-family: 'NotoSansCJKjp';
	font-weight: 700;
	src:url("../fonts/NotoSansCJKjp-Bold.woff2") format('woff2'),
			url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}










/*! Media QueriesとJSの連携
================================================ */


/* PC用 */

.media-queries {
	display: none;
	font-family: "pc";
}


/* SP用 */

@media screen and (max-width: 600px) {
	.media-queries {
		font-family: "sp";
	}
}


/*! clearfix
================================================ */

.cf:after {
	display: block;
	clear: both;
	content: "";
}


/*! base
================================================ */

html {
	overflow: auto;
	-webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	min-width: 320px;
	line-height: 1;
	overflow: hidden;
	color: #262626;
	font-weight: 500;
	font-size: 1.3rem;
	text-align: justify;
	text-justify: inter-ideograph;
	letter-spacing: .04em;
	-webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 600px) {
	body {
		min-width: 1100px;
		font-size: 1.5rem;
	}
}

table {
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #262626;
	text-decoration: none;
	outline: none;
}
.motion a,
.motion a:hover,
.motion a img,
.motion a:hover img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.txt {
	font-size: 1.3rem;
	line-height: 1.4615;
}

@media screen and (max-width: 600px) {
	.viewPc {
		display: none;
	}
}
@media screen and (min-width: 600px) {
	.viewSp {
		display: none !important;
	}
	.viewPc {
		display: inline-block;
	}
	.txt {
		font-size: 1.5rem;
		line-height: calc(25/15);
	}
}




button,
input[type=text],
input[type=email],
input[type=password],
input[type=submit],
input[type=reset],
textarea {
	padding: 0;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	background-color: transparent;
	letter-spacing: 0.05em;
}

select {
	border-radius: 0;
}

input[type=radio],
input[type=checkbox] {
	margin-right: 0.5em;
}



