@charset "utf-8";

/* -------------------------------------------------------------------
#ABOUT12
------------------------------------------------------------------- */
#ABOUT12 {
  padding-bottom: 70px;
}





/* nav-section */
.nav-section {
  padding-bottom: 80px;
}
.nav-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: flex-start;
}
.nav-section ul li {
  width: 25%;
}
.nav-section ul li:nth-of-type(n + 5) {
  margin-top: 20px;
}
.nav-section ul li a {
  position: relative;
  border-radius: 1.5em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3;
  background-color: #e4e4e4;
  text-align: center;
  transition: all .3s;
  margin-right: 10px;
}
.nav-section ul li a::after {
  content: "";
  background-image: url(../../../img/common/icon-common-button-bottom-black.png);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  width: 0.9em;
  height: 0.55em;
  transition: background-image .3s;
}
.nav-section ul li a:hover {
  background-color: #000;
  color: #fff;
}
.nav-section ul li a:hover::after {
  background-image: url(../../../img/common/icon-common-button-bottom-white.png);
}





/* content */
.content {
  padding-bottom: 80px;
}
.content .heading-style-2 {
  background-color: #000;
  color: #fff;
}
.content h3 {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.content table + h3 {
  margin-top: 40px;
}
.content table {
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.content table tbody tr th,
.content table tbody tr td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #000;
}
.content table tbody tr th {
  width: 170px;
  font-weight: 700;
  text-align: center;
  background-color: #e4e4e4;
}
.content table tbody tr td {
  padding-right: 2em;
  padding-left: 2em;
}
.content p {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}





@media screen and (max-width: 1400px) {
  /* nav-section */
  .nav-section ul li a {
    font-size: 1.43vw;
  }
}