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

/* RESET */
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, input, textarea {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
/*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;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
img {
	display:block;
}
a {
	text-decoration:none;
}
div, img, section, header, footer, span {
	box-sizing:border-box;
}


/* RESPONSIVE */
.box100 {
	width:100%;
}
.box100 .fullwidth {
	padding:1.5%;
	width:100%;
}
img.responsive {
	width:100%;
}
		/*PC*/
@media(min-width: 600px) {
.box50 {
	padding:1.5%;
	width:50%;
}
.box25 {
	padding:1.5%;
	width:25%;
}
.box70 {
	padding:1.5%;
	width:66.6%;
}
.box30 {
	padding:1.5%;
	width:33.3%;
}
}
		/*PHONE*/
@media(max-width: 599px) {
.box70, .box30, .box50 {
	width:100%;
	clear:both;
	display:block;
	padding:4%;
}
.box25 {
	padding:1.5%;
	width:50%;
}
}

/* CLASSES */
.wrap {
	width:100%;
	max-width:1000px;
	margin:auto;
	clear:both;
}
.clear {
	clear:both;
	height:0;
}
.fleft {
	float:left
}
.fright {
	float:right
}
.fmarginl {
	padding:0 10px 10px 0 !important;
}
.fmarginr {
	padding:0 0 10px 10px !important;
}