@charset "UTF-8";

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

body {
	/* -webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt'; */
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

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,
i,
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;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

img {
	max-width: 100%;
	/* width: 100%; */
	height: auto;
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: bottom;
}


/* ================================
	typography
================================ */
html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	line-height: 1.5;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

* {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}



/* ================================
	Link
================================ */
a {
	/* color: #333; */
}

a,
a:link {
	text-decoration: none;
	color: inherit;
}

a:visited {}

a:hover {
	/* opacity: 0.8 */
}

a img:hover {
	/* opacity: 0.8 */
}

a:active {}

a:focus {}


/*====================================
clearfix
====================================*/
.cf::after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

* html .clear {
	height: 1px;
	/* Hides from IE-mac \*/
	/*/
  height: auto;
  overflow: hidden;
/* End hide from IE-mac */
}


/*====================================
float
====================================*/
.fl_l {
	float: left;
	display: block;
}

.fl_c {
	float: left;
	display: block;
	margin: 0 auto;
}

.fl_r {
	float: right;
	display: block;
}


/* ================================
general
================================ */
.pc_only {
	display: block;
}

.sp_only {
	display: none;
}


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

	.sp_only {
		display: block;
	}
}

@media print,
screen and (max-width: 767px) {
	img {
		width: 100%;
	}
}