@charset "UTF-8";
/* CSS Document */
a {
  color: #242424;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #28bf20;
  outline: none;
  text-decoration: none;
}

.text-green { color: #28bf20; }

.checkbox {
	display: flex;
	flex-wrap:wrap;
	padding: 0 2px;
	justify-content:center;
}

.checkbox02 {
	display: flex;
	flex-wrap:wrap;
	justify-content:left;
	font-size: 14px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic;
	color: #262626;
}

.checktitle {
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	margin-bottom: 4px;
	padding: 1px 0;
	font-size: 14px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic;
	background-color: #f6f6f6;
	color: #262626;
}

.checkline {
	width: 100%;
	margin: 4px 14px 0;
	padding: 6px 6px 0;
	margin-bottom: 6px;
	border: solid 1px #ddd;
}

ul.image{
  display: flex;
  flex-wrap: wrap;
	list-style: none;
}
ul.image li{
  position: relative;
  width: 18%;
	list-style: none;
	margin: 5px;
}

ul.image li:before{
  content: "";
  display: block;
  padding-top: 100%;
}

ul.image img{
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	object-fit: cover;
}

ul.image a:hover img{
  opacity: 0.4;
	transition: 0.5s;
}

.ans-label {
    color: #4a4b4b;
    font-weight: 600;
    /*margin-bottom: 0px;*/
    padding-top: 7px;
}

.title a:hover img{
  opacity: 0.4;
	transition: 0.5s;
}

.card-gallery {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 100%;
  height: 80px;
  padding-top: 10px;
  border-radius: 5px;
  margin-top: -15px;
  background-color: #f6f6f6;
}

.ans-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:  flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
   -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*margin-bottom: 1em;*/
  padding: 2px 18px 0;
  font-size: 13px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic;
}
input[type="radio"], input[type="checkbox"] {
    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 1em;
    margin-left: 0;
}
input[type="checkbox"]:focus{
  outline: thin dotted;
}
input[type="checkbox"] {
  position: relative;
  width: 19px;
  height: 18px;
  border: 1px solid #666;
  border-radius: 2px;
  background-color: #ffffff;
  margin-top: 1px;
  margin-bottom: 1em;
  border-radius: 3px;
}
input[type="checkbox"]::after {
  content: '';
  width: 70%;
  height: 45%;
  border-radius: 0;
  margin: auto;
  position: absolute;
  top: 3px;
  left: 3px;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
input[type="checkbox"]:checked {
  background-color: #27BF1F;
}
input[type="checkbox"]:checked::after {
  border-left: 3px solid;
  border-bottom: 3px solid;
  border-color: #ffffff;
  border-radius: 0;
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
          transform: rotate(-45deg) translate3d(0, 0, 0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@media screen and (max-width:600px){
	.checkbox {
	display: flex;
	flex-wrap:wrap;
	padding: 0 2px;
	justify-content: left;
}
	
	ul.image li{
  position: relative;
  width: 25%;
	list-style: none;
	margin: 5px;
}

}
