/* CSS Document */

/* ===================================================================
CSS information

 File Name  : layout.css
=================================================================== */
body {
	text-align: center;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#topsen{
	margin:0px;
	max-width:100%;
	height:3px;
	border: 1px solid #999;
	background-color:#666;
}
#container {
	background-color: #FFF;
	text-align: left;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
}
#bmei {
	text-align: left;
	font-size:22px;
	font-weight:800;
	color:#666;
}
#pankuzu{
	text-align:right;
    font-size: 10px;
}
#wrap {
	margin: 0 auto;
	max-width: 510px;
	display: inline-block;
	padding: 0px;
	margin-bottom: 6px;
	float: left;
}

#wrap1 {
	margin: 0 auto;
	max-width:800px;
	display: inline-block;
	padding: 0px;
	margin-bottom: 6px;
}
.ivsyou{
	float: left;
	margin-right: 1em;
}
.ivsyouclear{
	clear: both;
}
#header {
	margin:0px;
	width:auto;
	height:24px;
	border: 1px solid #999;
	padding-left:16px;
	font-size:18px;
	background-color:rgba(102,102,102,1);
	color:#FFF;
}
#header1 {
	margin:0px;
	height:24px;
	border: 1px solid #999;
	padding-left:16px;
	font-size:18px;
	color:#000000;
}
#bukkenmei{
	padding-left:50px;
	font-size:20px;
	height:56px;
}
#main{
	width:auto;
	}
#footer {
	padding-top: 20px;
	clear: both;
	height: 95px;
}

/* CSS パンくずリスト */

.breadcrumb {
  margin-left: 0;
  padding-left: 0;
}
.breadcrumb li{
  position: relative;
  display:inline-block; /*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
  margin-right: 12px;
}
.breadcrumb li:after{/*三角の部分*/
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    border-style: solid;
    border-color: transparent;
    border-left-color: #aedfc6;/*背景色*/
    border-width: 14px 12px;
    width: 0;
    height: 0;
}

.breadcrumb li a {
    display: inline-block;
    padding: 0 3px 0 7px;
    height: 28px;
    line-height: 28px;
    text-decoration: none;
    color: #747772;
    background: #aedfc6;/*背景色*/
    font-size: 13px;
}

.siro{
	color:#FFF;
}
.aka{
    font-size: 19px;
    font-weight: bold;
    color: #FB7103;
  height:30px;
  line-height:30px;
}
input[type=checkbox] {
  transform: scale(1.2);

}
.checkb {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkb-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}

input[type=checkbox],input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 15px;
    vertical-align: -0.8rem;
    transition:all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: .4rem;
    outline: none;
    border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: .2s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 10px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
/* Radio */
input[type=radio] {
    border-radius: 50%;
     vertical-align:middle;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;

    transform: scale(0);
    transition: all ease-out 250ms;
}
/* 色は青色のみ */
input[type=checkbox].blue,input[type=radio].blue {
    border: 3px solid #2196f3;
    width: 22px;
    height: 22px;
    margin-bottom: 0px;
    margin-top: 2px;
    margin-right: 10px;
}
input[type=checkbox].blue:checked,input[type=checkbox].blue:indeterminate,input[type=radio].blue:checked:before {
    background: #2196f3;
}	
