.doc_section:not(:first-child) {
  margin-top: 80px;
}
.doc_block:not(:first-child) {
  margin-top: 50px;
}
.doc_inner:not(:first-child) {
  margin-top: 30px;
}
.doc_box:not(:first-child) {
  margin-top: 10px;
}
.doc_right {
  text-align: right;
}
.doc_img {
  margin: 10px 0;
}

.num_list {
  counter-reset: num 0;
}
.num_list_item:not(:first-child) {
  margin-top: 30px;
}
.num_list_title {
  counter-increment: num 1;
  font-weight: 600;
}
.num_list_title::before {
  content: counter(num) ".";
}

.block_num_list {
  counter-reset: numbl 0;
  padding-left: 1em;
  text-indent: -1em;
}
.block_num_list_num_item {
  counter-increment: numbl 1;
}
.block_num_list_num_item::before {
  content: counter(numbl) ".";
}

.inner_num_list {
  counter-reset: numin 0;
}
.inner_num_list_num_item {
  counter-increment: numin 1;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.inner_num_list_num_item::before {
  content: "(" counter(numin) ")";
}

.company_table th, .company_table td {
  padding-bottom: 10px;
}
.company_table th {
  width: 90px;
  font-weight: 600;
  padding-right: 1em;
}
.company_table td {
  width: calc(100% - 90px);
}
.company_block {
  border: 1px solid #4B3C09;
  padding: 20px;
}
.company_block:not(:first-child) {
  margin-top: 12px;
}
.company_block_title {
  margin-bottom: 5px;
  font-weight: 600;
  text-align: center;
}

.link_list a {
  text-decoration: underline !important;
  padding-left: 15px;
  position: relative;
}

.mynavi{
  display:block;
}
.mynavi p{
  margin-right:0;
  margin-bottom:10px;
}

@media screen and (min-width: 769px) {
  .link_list a:hover {
    text-decoration: none !important;
  }

  .mynavi{
    display:flex;
    justify-content: flex-start;
    align-items: center;
  }
  .mynavi p{
    margin-right:20px;
    margin-bottom:0;
  }
  
}
.link_list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #4B3C09;
  border-right: 1px solid #4B3C09;
  position: absolute;
  left: -2px;
  top: calc(50% - 3px);
  transform: rotate(45deg);
}