@charset "UTF-8";
/* CSS Document */

header {
  background: #0D2A35;
}

.sec1 {
  width: 90%;
  padding: 150px 0 100px;
  margin: 0 auto;
}

.title__area {
  margin-bottom: 50px;
}

.title__area p {
  font-family: var(--en);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}

.title__area h2 {
  font-weight: 400;
}

.tablearea {
  width: 100%;
  overflow-x: scroll;
}

table {
  width: 1200px;
  margin: 0 auto 25px;
  border-collapse: collapse;
  border: none;
}

td,
th {
  border: none;
  border-left: 5px solid #F7F9FB;
  border-top: 5px solid #F7F9FB;
  padding: 15px 0;
  text-align: center;
  width: calc(100% / 7);
  vertical-align: middle;
}

.long td,
.long th {
  padding: 40px 0;
}

td:first-child,
th:first-child {
  border-left: none;
}

tr:first-child td,
tr:first-child th {
  border-top: none;
}

.table__header th {
  background: #0D2A35;
  color: #FFFFFF;
  font-family: var(--en);
  font-weight: 600;
}

.white {
  background: #FFFFFF;
}

.pink {
  background: #96004B;
  color: #FFFFFF;
}

.lightblue {
  background: #B1DEDE;
}

.bule {
  background: #005D81;
  color: #FFFFFF;
}

.purple {
  background: #7C5498;
  color: #FFFFFF;
}

.grey {
  background: #ECEFF1;
}

.large {
  font-size: 2.2rem;
  font-weight: 700;
}

.medium {
  font-size: 1.8rem;
  font-weight: 700;
}

.normal {
  font-size: 1.6rem;
  font-weight: 600;
}

.small {
  font-size: 1.4rem;
  font-weight: 400;
}

.relative {
  position: relative;
}

.top {
  transform: translateY(10px);
}

.top::before {
  position: absolute;
  content: "";
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #7C5498;
  display: block;
}

.top::after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #7C5498;
  display: block;
  border-bottom: solid 5px #F7F9FB;
}

.bottom {
  transform: translateY(-10px);
}

.bottom::before {
  position: absolute;
  content: "";
  top: -8px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #005D81;
  display: block;
}

.bottom::after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #005D81;
  display: block;
}

@media (max-width: 1280px) {
  table {
    width: 900px;
  }

  .large {
    font-size: 2.0rem;
    font-weight: 700;
  }

  .medium {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .normal {
    font-size: 1.4rem;
    font-weight: 600;
  }

  .small {
    font-size: 1.2rem;
    font-weight: 400;
  }
}