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

/* --------------------------
 common
----------------------------*/
button, input, select, textarea{
	/*font-family: inherit;*/
	font-size: 100%;
}

/*---------------
 * Form file
 *--------------*/
::file-selector-button{
	font:inherit
}
::-webkit-file-upload-button{
	font:inherit;
	-webkit-appearance:button
}

input[type=file]{
	display:block;
	width:90%;
	padding:.375rem .75rem;
	font-size:1rem;
	font-weight:400;
	line-height:1.5;
	color:#212529;
	background-color:#fff;
	background-clip:padding-box;
	border:1px solid #ced4da;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	border-radius:.25rem;
	transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out
	overflow: hidden
}
@media(prefers-reduced-motion:reduce){
	input[type=file]{
		transition:none
	}
}
input[type=file]:not(:disabled):not([readonly]){
	cursor:pointer
}
input[type=file]:focus{
	/*
	color:#212529;
	background-color:#fff;
	border-color:#86b7fe;
	outline:0;
	box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
	box-shadow:0 0 0 0.2rem rgba(0,117,255,0.5)
	*/
	/*
	outline: 2px solid #333333;
	*/
}
input[type=file]::-webkit-date-and-time-value{
	height:1.5em
}
input[type=file]::-moz-placeholder{
	color:#6c757d;
	opacity:1
}
input[type=file]::placeholder{
		color:#6c757d;
		opacity:1
	}
input[type=file]:disabled{
	background-color:#e9ecef;
	opacity:1
}
input[type=file]::file-selector-button{
	padding:.375rem .75rem;margin:-.375rem -.75rem;
	-webkit-margin-end:.75rem;
	margin-inline-end:.75rem;
	color:#212529;
	background-color:#e9ecef;
	pointer-events:none;
	border-color:inherit;
	border-style:solid;
	border-width:0;
	border-inline-end-width:1px;
	border-radius:0;
	transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media(prefers-reduced-motion:reduce){
	input[type=file]::file-selector-button{
		transition:none
	}
}
input[type=file]:hover:not(:disabled):not([readonly])::file-selector-button{
	background-color:#dde0e3
}
input[type=file]::-webkit-file-upload-button{
	padding:.375rem .75rem;
	margin:-.375rem -.75rem;
	-webkit-margin-end:.75rem;
	margin-inline-end:.75rem;
	color:#212529;
	background-color:#e9ecef;
	pointer-events:none;
	border-color:inherit;
	border-style:solid;
	border-width:0;
	border-inline-end-width:1px;
	border-radius:0;
	-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
	input[type=file]::-webkit-file-upload-button{
		-webkit-transition:none;transition:none
	}
}
input[type=file]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{
	background-color:#dde0e3
}

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

select.txt{
	/*width: 100%;*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/*font-size: 18px;*/
	border: 1px solid #999;
	background: #eee;
	background: url("../images/carat-d-white.png"), -webkit-linear-gradient(top, #fff 0%,#fff 100%);
	background: url("../images/carat-d-white.png"), linear-gradient(to bottom, #fff 0%,#fff 100%);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 15px, 100%;

	padding: 5px 30px 5px 10px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	vertical-align: baseline;
	//box-sizing: border-box;
}

/* --------------------------
 radio
----------------------------*/
.radio{
	/*position: relative;*/
	display: inline-block;
	padding: 0px 0 0px 0px;
	vertical-align: bottom;

	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	font-size: 0px;
	line-height: 0;
}

.radio:hover{
	text-decoration: underline;
}

input[type=radio]{
	display: none;
}

input[type=radio]:checked + label{
	color: #000000;
}

input[type=radio] + label{
	padding-left: 25px;
	position:relative;
	padding-top: 0px;

	font-size: 15px;
	line-height: 1.3;

}

input[type=radio] + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #999;
	border-radius: 50%;
}

input[type=radio]:checked + label::before{
	animation: pulsate .6s ease-out; /* スピードなど */
	border: 1px solid #666; /* 波紋カラーなど */
}
@keyframes pulsate{
	0%  { transform: scale(1, 1); border: 1px solid #fff; }
	50% { opacity: 1; background: rgba(221, 221, 221, 0.8); border: 1px solid #fff; }
	100%{ transform: scale(2.0, 2.0); opacity: 0.0; border: 1px solid #fff; }
}

input[type=radio]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: #777;
	border-radius: 50%;
}

/* --------------------------
 checkbox
----------------------------*/
.checkbox{
	position: relative;
	display: inline-block;
	padding: 0px 0 0px 25px;
	vertical-align: top;
	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	font-size: 0px;
	line-height: 0;
}

.checkbox:hover{
	text-decoration: underline;
}

input[type=checkbox] + label{
	/*color: #000000;*/
	font-size: 15px;
	line-height: 1.3;
}

input[type=checkbox]:checked + .checkbox:after{
	animation: pulsate2 .6s ease-out; /* スピードなど */
	border: 1px solid #999; /* 波紋カラーなど */
}

@keyframes pulsate2{
	0%  { transform: scale(1, 1); border: 1px solid #fff; }
	50% { opacity: 1; background: rgba(221, 221, 221, 0.8); border: 1px solid #fff; }
	100%{ transform: scale(2.0, 2.0); opacity: 0.0; border: 1px solid #fff; }
}

.checkbox:after{
	/* ボックス */
	-webkit-transition: border-color 0.1s linear;
	transition: border-color 0.1s linear;
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	margin-top: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #999;
	box-sizing: border-box;
	content: '';
}

.checkbox:before{
	/* チェック */
	-webkit-transition: opacity 0.1s linear;
	transition: opacity 0.1s linear;
	position: absolute;
	top: 0px;
	left: 5px;
	display: block;
	margin-top: 0px;
	width: 6px;
	height: 12px;
	border-right: 3px solid #777;
	border-bottom: 3px solid #777;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]{
	display: none;
}
input[type=checkbox]:checked + .checkbox:before{
	opacity: 1;
}

/* --------------------------
 text, textarea
----------------------------*/
input[type=text]{
	font-size: 14px;
	border: solid 1px #999;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 3px;
}

textarea{

	font-size: 13px;
	border: solid 1px #999;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 3px;
	height: 100px;
	width: 90%;
}

/* --------------------------
 placeholder
----------------------------*/
input::placeholder{
	/*color: red;*/
}

/* IE */
input:-ms-input-placeholder{
	/*color: red;*/
}

/* Edge */
input::-ms-input-placeholder{
	/*color: red;*/
}

/* --------------------------
 responsive
----------------------------*/
@media screen and (max-width:959px){
}

@media screen and (max-width:767px){
}

@media screen and (max-width:479px){

	input[type=radio] + label{
	}

	input[type=radio] + label::before{
	}

	input[type=radio]:checked + label::after{
	}

	.checkbox{
	}

	.checkbox:before{
	}

	.checkbox:after{
	}
}

@media screen and (max-width:321px){
}

