@charset "utf-8";

/* ===================================================
  sec01
====================================================== */
#sec01{
  margin-top: 90px;
  padding-bottom: 100px;
  background: #b6ced0;
}
#sec01 h2 span{
  color: var(--white);
}

#sec01 h2 span::before{
  background-color: var(--white);
}

#sec01 h3{
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 24px;
  text-align: center;
  font-weight: normal;
  border-bottom: 1px solid var(--text-main);
}

#sec01 h3 span{
  margin-right: 15px;
  font-weight: bold;
}

#sec01 p{
  text-align: center;
}

@media screen and (max-width: 768px) {
  #sec01 p{
    text-align: left;
  }
}


/* ===================================================
  sec02
====================================================== */

#sec02 table {
  width: 100%;
  border-collapse: collapse;
}
#sec02 table th,
#sec02 table td {
  padding: 15px;
  color: var(--text-sub);
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid var(--accent);
}
#sec02 table th {
  width: 250px;
  font-weight: normal;
  text-align: center;
  background-color: var(--beige);
}

@media screen and (max-width: 768px) {

  #sec02 table{
    border-bottom: 1px solid var(--accent);
  }
  #sec02 table th,
  #sec02 table td{
    display: block;
    width: 100%;
  }
  #sec02 table th{
    text-align: left;
  }
  #sec02 table td{
    border-top: 0;
    border-bottom: 0;
  }


}