@charset "UTF-8";

#page #title {
  margin: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page #title h1 {
  color: var(--primary-color);
  font-size: 4rem;
}
#page #title h1::after {
  content: attr(data-title);
  margin-bottom: 3px;
  color: #000;
  font-size: 1.4rem;
}
#page #title img {
  border-radius: 10px;
}
#page section {
  margin: 80px 0;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
}
#page table {
  margin-bottom: 50px;
  width: 100%;
  border-collapse: collapse;
}
#page tr {
  border-bottom: solid 1px #a7a3a3;
}
#page th, #page td {
  padding: 20px 0;
  vertical-align: top;
}
#page th {
  padding-right: 100px;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  #page h2 {
    margin-bottom: 0;
    font-size: 2.8rem;
  }
  #page #title {
    margin: 40px 0;
    flex-direction: column-reverse;
    gap: 20px;
  }
  #page #title h1, #page #title picture {
    width: 100%;
  }
  #page #title h1 {
    font-size: 3.6rem;
    text-align: center;
  }
  #page section {
    margin: 40px 0;
    padding: 30px;
  }
  #page table {
    margin-bottom: 30px;
  }
  #page th, #page td {
    padding: 15px 0;
    width: 100%;
    display: block;
  }
  #page th {
    padding-bottom: 10px;
    border-bottom: none;
    font-size: 1.8rem;
  }
  #page td {
    padding-top: 0;
  }
}