@charset "UTF-8";

body {
    font-family: 游ゴシック体, YuGothic, sans-serif;
    font-size: 3rem;
    line-height: 2rem;
    letter-spacing: 0.2rem;
	width:100%;
}

section{
	width:90%;
	max-width:800px;
	margin: 0 auto;
	margin-bottom:2rem;
}
a{
    text-decoration:none;
}

li a{
    color: #333;
    display: block;
    height: 100%;
    width: 100%
}


h2 {
    position: relative;
    padding: 3rem;
    border: 5px solid #333;
    background-color: white;
    color: #333;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    margin-bottom:6rem;
}

h2:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 25px;
    width: 15px;
    border-right: 3px solid #333;
    background-color: white;
    content: "";
}

/*List*/
ul {
list-style: none;
padding-left: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
   }

li{
  padding: 3rem;
  border-radius: 3px;
  border: 5px solid #333;
  margin-bottom:3rem;
  box-shadow: 4px 4px #333;
}

li.yh{
  background:url(img/ic_y.png) no-repeat 3% center;
  background-size:auto 4rem;
  padding-left: 6rem;
}

li.mn{
  background:url(img/ic_m.png) no-repeat 3% center;
  background-size:auto 4rem;
  padding-left: 6rem;
}

li.kb{
  background:url(img/ic_k.png) no-repeat 3% center;
  background-size:auto 4rem;
  padding-left: 6rem;
}

/*Form*/
input[type="text"],
input[type="number"],
input[type="submit"],
textarea {
  font-size: 3rem;
  width: 100%;
  padding: 2rem;
  margin-bottom:1.4rem;
  box-sizing: border-box;
  text-align:center;
  letter-spacing: 0.4rem;
  border: 5px solid #333;
}

input[type="submit"]{
background:#333;
color:#FFF;
}



.txtL{text-align:left;}
.txtR{text-align:right;}
.txtC{text-align:center;}


/* 800px以上 */
@media screen and (min-width: 896px) {
.col21 li{width:100%!important;}
/*.col21 li{width:48%;}*/

/* 900px以下 */
@media screen and (max-width: 896px) {
.col21 li{width:100%!important;}
}