#member{
  position: relative;
}
.member_form_box{
  background-color: #f0f2f3;
  margin: auto;
  width: 92%;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  padding-bottom: 100px;
  border: 1px solid #004663;
}
.member_form{
  font-size: 1.1em;
}
.member_form #password{
  padding: 3px 7px;
  border: 1px solid #004663;
  text-align: left;
  background-color: #fff;
  margin-top: 10px;
  width: 60%;
  min-width: 200px;
}
.member_form #password:focus {
  outline: 0;
  border: 1px solid #009fe0;
}

.member_form button{
  display: block;
  background-color: #004663;
  color: #fff;
  min-width: 200px;
  width: 60%;
  margin-top: 10px;
  padding: 0.5em 2em;
  margin-inline: auto;
  font-weight: bold;
  position: relative;
}

.member_form button span {
    position: relative;
    z-index: 2;
}


.member_form button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #015b81;
  /*背景色*/
  width: 100%;
  height: 0;
  transition: .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.member_form button:hover::after {
  height: 100%;
  background-color: #015b81;
}

.logout button{
    position: absolute;
  top: 10px;
  right: 10px;
  z-index: 200;
  background-color: #fff;
  color: #004663;
  padding: 0.5em 0.5em 0.5em 0.5em;
  font-weight: bold;
}

.logout button::before{
content: '';
display: inline-block;
width: 1.1em;
height: 1em;
background-image: url(../images/logout.png);
background-repeat: no-repeat;
background-size: contain;
vertical-align: middle;
}
.mgb50{
  margin-bottom: 50px;
}
.info_tpc ul,
.info_cmp ul{
    padding-bottom: 1em;
    margin-top: 30px;
    border-bottom: 1px solid rgba(100, 100, 100, .4);
    line-height: 1.5;
}
.info_tpc a,
.info_cmp a {
    font-weight: bold;
}

.info_btn_tpc p.hide,
.info_btn_cmp p.hide {
    display: none;
}

.info_btn_tpc p,
.info_btn_cmp p{
    margin-top: 10px;
    color: #006787;
    text-align: right;
    font-weight: bold;
    cursor: pointer;
}

.info_btn_tpc p:hover,
.info_btn_cmp p:hover {
    text-decoration: underline;
}

.info_tpc ul:nth-child(n+4) ,
.info_cmp ul:nth-child(n+4) {
    display: none;
}

.info_tpc.show ul:nth-child(n+4) ,
.info_cmp.show ul:nth-child(n+4) {
    display: block;
    animation: 0.7s fadeIn1;
}
th.compename{
height: 2em;
}

.pc_tr{
  display: none;
}

@media screen and (min-width: 1024px) {
  .member_form_box{
    width: 50%;
  }
  .logout button{
  right: 2%;
  font-size: 1.1em;
  }
  .pc_tr{
    display: table-row;
  }
  
}