  @charset "utf-8";
/* CSS Document */
.anchorList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -26px 0 0;
}
@media screen and (max-width: 768px) {
  .anchorList {
    flex-direction: column;
    margin: 0;
  }
}
.anchorList__item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  margin: 26px 0 0;
  padding: 0 1%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .anchorList__item {
    width: 100%;
    margin: 0;
    padding: 13px 1%;
    border-bottom: 1px solid #008d54;
  }
  .anchorList__item:first-child {
    padding-top: 0;
  }
}
.anchorList__item::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 30px;
  transform: translateY(-50%);
  border-left: 1px solid #008d54;
  content: "";
}
@media screen and (max-width: 768px) {
  .anchorList__item::after {
    display: none;
  }
}
.anchorList__link {
  display: inline-block;
  position: relative;
  padding: 0 28px 0 0;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.35;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .anchorList__link {
    font-size: 1.4rem;
  }
}
.anchorList__link::after {
  display: block;
  position: absolute;
  top: 40%;
  right: 0;
  width: 12px;
  height: 12px;
  transform: rotate(135deg) translateY(100%);
  border: 1px solid;
  border: thin solid;
  border-color: #008d54 #008d54 transparent transparent;
  content: "";
}
@media screen and (max-width: 768px) {
  .anchorList__link::after {
    width: 11px;
    height: 11px;
  }
}
.anchorList__link:hover {
  border-color: #008d54;
  color: #008d54;
}
.anchorList__link:hover span {
  border-color: #008d54;
  color: #008d54;
}
.anchorList__link span {
  display: inline-block;
  border-bottom: 1px solid transparent;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.anchorList__link {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: bold;
}
.downloadBox {
  display: flex;
  justify-content: space-between;
  border: solid 1px #231815;
  padding: 3.03% 5.96%;
}
@media screen and (max-width: 768px) {
  .downloadBox {
    display: contents;
  }
}
.downloadBox .imgArea {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .downloadBox .imgArea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.downloadBox .imgArea img {
  width: 100%;
}
.downloadBox .txtArea {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .downloadBox .txtArea {
    width: 100%;
  }
}
.downloadBox .txtArea .txtArea__title {
  letter-spacing: 0.07em;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 20px 0;
  font-weight: bold;
}
.downloadBox .txtArea li {
  margin: 5px 0;
}
.downloadBox ul.flex__list {
 display: flex;
}
@media screen and (max-width: 768px) {
 .downloadBox ul.flex__list {
  display: contents;
 }
}
.downloadBox ul.flex__list li {
 margin-left: 40px;
}
.downloadBox ul.flex__list li:first-child {
 margin-left: 0;
}
@media screen and (max-width: 768px) {
 .downloadBox ul.flex__list li {
  margin-left: 0;
 }
}
.downloadBox .txtArea li.indent {
  margin-left: 1rem;
}
.downloadBox .txtArea a {
  line-height: 1.6;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
  opacity: 1;
  display: block;
}
.downloadBox .txtArea a span {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.downloadBox .txtArea a::before {
  border: thin solid;
  border-color: #008d54 #008d54 transparent transparent;
  left: 0;
  display: block;
  position: absolute;
  top: 7px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  content: "";
  transition: 0.3s;
}