@charset "UTF-8";
/* 2列用 */
#evetable table { width: 100%; }
#evetable table {
   table-layout:fixed;
}
#evetable table th {
   width: 12%;
   padding: 3px 1%;
   background-color: #f0f8ff;
   border-top: 1px solid #ccc;
   border-bottom: 1px solid #ccc;
   border-left: 1px solid #ccc;
   border-right: 1px solid #ccc;
   margin-top: 10px;
}
#evetable table td {
   width: 37%;
   padding: 5px 3%;
   background-color: white;
   border: 1px solid #ccc;
}
/*スマホ用補正*/
@media screen and (max-width: 640px) {
#evetable table th {
   width: 11%;
   font-size: 8px;
   font-size: 0.8rem;
   line-height: 150%;
   padding: 3px 0.5%;
}
#evetable table td {
   width: 40%;
   padding: 5px 1.5%;
}
#evetable table td p {
   font-size: 12px;
   font-size: 1.2rem;
}
#evetable table td p.mini {
   font-size: 8px;
   font-size: 0.8rem;
}
}