@charset "utf-8";
/* ------------------------------------------------------------ Initialization of the browser style */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
span.strong,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
hr {
	padding: 0;
	margin: 0;
	font-style: normal;
	font-weight: normal;
	line-height: 160%;
	word-break: break-all;
	color: #fff;
}


/* ------------------------------------------------------------ body reset */

body {
	font-size: 16px;
	background-color: #000;
}

table {
	font-size: 100%;
}

strong {
	font-weight: normal;
}


/* ------------------------------------------------------------ Table Elements */

table,
th,
td {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ------------------------------------------------------------ Form Elements */

input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	padding: 10px 15px;
	box-sizing: border-box;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
}

button:hover {
	cursor: pointer;
}

label {
	cursor: pointer;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #707070;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #707070;
}
::placeholder{ /* Others */
 color: #707070;
}
*:focus {
	outline: none;
}

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

a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover,
a:hover img,
input[type="submit"]:hover {
	color: #000;
	text-decoration: none;
}

input[type="text"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
	border: 1px solid #d0d0d0;
	border-radius: inherit;
	outline: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

input[type="text"],
input[type="password"],
textarea {
	color: #fff;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

/* IE対応 */
select::-ms-expand {
    display: none;
}

.select_wrap {
	display: inline-block;
	position: relative;
}

.select_wrap::before {
	position: absolute; 
	content: ''; 
	top: 0; 
	bottom: 0; 
	margin: auto 0; 
	right: 15px; 
	display: block; 
	width: 7px; 
	height: 7px; 
	border-top: solid 1px #000; 
	border-right: solid 1px #000; 
	transform: rotate(135deg); 
}

.select_wrap select {
	padding: 12px 32px 12px 15px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

button {
	background: none;
}


/* ------------------------------------------------------------ etc */
a,
fieldset,
img {
	border: 0;
}

ol li,
ul li {
	list-style-type: none;
}

br.PC,
br.SP {
	width: 0;
	height: 0;
	line-height: 0;
}

/* ------------------------------------------------------------ img */
*:first-child+html img {
	vertical-align: bottom;
}

* html img {
	vertical-align: bottom;
}

img {
	margin-bottom: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	border: none;
}


/* ------------------------------------------------------------ input */
input {
	vertical-align: middle;
	display: inline;
}

*:first-child+html input {
	vertical-align: middle;
}

* html input {
	vertical-align: middle;
}

input[type="submit"] {
	margin: 0;
	padding: 0;
}


/* ------------------------------------------------------------ select */
select {
	vertical-align: middle;
}

*:first-child+html select {
	vertical-align: middle;
}

* html select {
	vertical-align: middle;
}


/* ------------------------------------------------------------ clear Fix */
.cfx:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.cfx {
	min-height: 0px;
}

* html .cfx {
	height: 0px;
}

/* ------------------------------------------------------------ iphone */
@media screen and (max-device-width: 480px) {
	body {
		-webkit-text-size-adjust: none;
	}
}