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

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


input[type=text]:focus, select:focus, input[type=file]:focus{
	outline: 2px solid #333333;
}
textarea:focus{
	outline: 2px solid #333333;
}
/*---------------
 * 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{
	display: block;
	width: auto;
	padding: 5.5px 30px 5.5px 9px;
	-moz-padding-start: calc(12px - 3px);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* --------------------------
 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;
}
.radio:hover{
	text-decoration: underline;
}
input[type=radio]{
	/*display: none;*/
	opacity: 0;
	position: absolute;
}


input[type=radio]:checked + label{
	color: #000000;
}
input[type=radio] + label{
	position:relative;
	margin-right: 15px;
	padding-top: 0px;
	padding-left: 25px;
	line-height: 1.3;
	z-index: 2;
}
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%;
}


input[type=radio]:focus + label::before{
}
input[type=radio]:focus + label{
	opacity: 1;
	text-decoration: underline;
	text-decoration-color: #000;
	text-decoration-thickness: 1px;
	/*text-underline-offset: 5px;*/
}
input[type=radio]:focus + label::before{
	border: 1px solid #000000;
}


input[type=radio]:active + label::before{
	border: 1px solid #999;
}
input[type=radio]:hover + label::before{
	border: 1px solid #999;
}

/* --------------------------
 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;
}
.checkbox:hover{
	text-decoration: underline;
}
input[type=checkbox] + label{
	color: #000000;
	margin-right: 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;*/
	opacity: 0;
	position: absolute;
	z-index: 2;
}

input[type=checkbox]:checked + .checkbox:before{
	opacity: 1;
}
input[type=checkbox]:focus + label{
	/*opacity: 1;*/
	text-decoration: underline;
	text-decoration-color: #000;
	text-decoration-thickness: 1px;
	/*text-underline-offset: 5px;*/
}

input[type=checkbox]:focus + .checkbox:after{
	border: 2px solid #000000;
}

/* --------------------------
 text, textarea
----------------------------*/
input[type=text]{
	display: block;
	border: solid 1px #cccccc;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 3px;
	padding: 4.6px 9px;
	vertical-align: baseline;
	width: 100%;

	-moz-padding-start: calc(12px - 3px);
	line-height: 1.5;
	font-size: 1rem;
	color: #212529;
}

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){
}

