@charset "UTF-8";

/***************************************************/
/* !Base setting */
/***************************************************/

html {
	background: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
	min-width: 320px;
}

body {
	background: #fff;
	color: #333;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
	/* font-family: "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "メイリオ", Meiryo, serif; */
	font-feature-settings : "palt";
	font-size: 14px;
	overflow-x: hidden;
	word-break: break-all;
}

a {
	transition: opacity 0.5s ease;
	text-decoration: none;
}
a:hover   { opacity: 0.5; }

@media screen and (max-width: 768px) {
	
	a:hover   { opacity: 1; }

}

::selection      {}
::-moz-selection {}

::-webkit-input-placeholder {}
::-moz-placeholder          {}
:-ms-input-placeholder      {}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="color"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border: 1px solid #000;
	box-shadow: none;
	border-radius: 0;
	display: inline-block;
	margin: 0;
	padding: 5px;
	vertical-align: middle;
	width: 300px;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}
input[type="search"]:focus {
	outline-offset: -2px;
}
input[type="search"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"],
input[type="reset"],
button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border: 1px solid #000;
	box-shadow: none;
	border-radius: 999px;
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 5px 10px;
	vertical-align: middle;
}

input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	padding-left: 23px;
	position: relative;
}
input[type="checkbox"] + label::before {
	background: url(../images/forms/ico_chk.jpg) 50% 50%  no-repeat scroll;
	background-size: 100% auto;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
}
input[type="checkbox"]:checked + label::before {
	background-image: url(../images/forms/ico_chk_checked.jpg);

}
input[type="checkbox"]:disabled + label::before {
	background-image: url(../images/forms/ico_chk_discheck.jpg);
}

input[type="radio"] {
	display: none;
}
input[type="radio"] + label {
	padding-left: 23px;
	position: relative;
}
input[type="radio"] + label::before {
	background: url(../images/forms/ico_radio.png) 50% 50%  no-repeat scroll;
	background-size: 100% auto;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
}
input[type="radio"]:checked + label::before {
	background-image: url(../images/forms/ico_radio_checked.png);
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff url(../images/forms/ico_select.png) right 5px top 50%  no-repeat scroll;
	background-size: 10px auto;
	border: 1px solid #000;
	border-radius: 0;
	position: relative;
	padding: 5px 20px 5px 5px;
}
select[multiple="multiple"] {
	background: #fff;
}
