/* tokusho */

.keyVisual {
    height: 180px;
    position: relative;
    background: #1A69A8;
	margin-bottom: 50px;
}
.keyVisual  h2 {
    color: #FFF;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
}
.keyVisual  h2 .txt01 {
    min-width: 145px;
    top: 80px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 30px;
    font-family: Tahoma, Geneva, sans-serif;
}
.keyVisual  h2 span {
    display: block;
    position: absolute;
    left: 50%;
    transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
}
.keyVisual  h2 .txt02 {
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
.keyVisual  h2 .txt02 {
    bottom: 80px;
    transform: translate(-50%,80px);
    -webkit-transform: translate(-50%,80px);
}
body.on .keyVisual h2 .txt01:before {
    left: 0;
    right: 0;
}
.keyVisual h2 .txt01:before {
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -7px;
    right: 50%;
    background: #FFF;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-property: left, right;
    -webkit-transition-property: left, right;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    content: "";
}

table{
  border-collapse: collapse;
  width: 100%;
}
.tokusho th,
.tokusho td{
  padding: 10px;
  border: solid 1px #ccc;

  box-sizing:border-box;
}
.tokusho th {
  background: #1A69A8;
  color: #fff;
  
}
@media screen and (max-width: 640px) {
  .tokusho {
    width: 100%;
  }
  table.tokusho th,
  table.tokusho td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tokusho tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}