


/* ----------------------------------------
anchor　ページ内リンク
---------------------------------------- */
ul.anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin:100px auto 60px;
}

ul.anchor li {
  font-size:1.6rem;
  line-height: 1;
  text-align: left;
  position: relative;
  padding:5px 20px 5px 40px;
  border-right:1px solid #e5ebeb;}

ul.anchor li:last-child {border-right: none;}

ul.anchor li::before{
  position: absolute;
  top:calc(50% - 4px);
  left:15px;
  content: "";
  display: block;
  border-bottom: solid 2px #008b56;
  border-right: solid 2px #008b56;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translateY(-50%);
}

ul.anchor li a.hover {
  color:#008b56;
  text-decoration: underline;
}

/* ----------------------------------------
table
---------------------------------------- */
.c-article table {
  width: 100%;
  font-size:1.6rem;
  line-height: 1.75;
  margin:40px 0 80px;}

.c-article table th,table td {
  padding:20px 40px;
  border: 1px solid #e5ebeb;
  border-collapse: collapse;}

.c-article table th {
  width:215px;
  background: #f2f6f6;
  text-align: center;
  vertical-align: top;
}

.c-article:last-child table {margin-bottom:120px;}


/* ----------------------------------------
table内コンテンツ調整
---------------------------------------- */
.c-article table ol {
  margin:0 0 0 20px;
  list-style-type: decimal;
}

.c-article table dl {
  display: flex;
  flex-wrap: wrap;
}

.c-article table dl dt {width:3em;}
.c-article table dl dd {width:calc(100% - 3em);}

