@charset "UTF-8";
/* CSS Document */
li {
  list-style: none;
}
/* ↓ button01 ↓ */
.button01 li a {
  border: none;
  border-bottom: 1px solid #dededf;
  margin: 0 auto;
  padding: 1.5em 2em;
}
.button01 li a:hover {
  color: var(--secondaryColor);
  text-decoration: none;
  background-color: transparent;
}
.button01 li a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--mainColor);
  border-right: solid 2px var(--mainColor);
  transform: translateY(-50%) rotate(45deg);
  color: #fff;
}
.button01 li a:hover:after {
  right: 1.4rem;
  border-top: solid 2px var(--mainColor);
  border-right: solid 2px var(--mainColor);
}
/*
.button01 li:last-child a {
  border-bottom: none;
}
*/
.button01 li a:visited {
  text-decoration: none;
}
/* ↑ button01 ↑ */
.company li {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bg_grid {
    background-image:
      linear-gradient(to right, #f8f8f8 1px, transparent 1px), linear-gradient(to bottom, #f8f8f8 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .button01 a {
    font-size: 18px;
  }
  .button01 li a {
    justify-content: left;
  }
  .container.back {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .button01 li a {
    background: transparent;
  }
}
@media screen and (min-width: 1200px) {
  #company {
    background-image: url("../img/company_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 150px;
  }
  .company .button01 {
    display: flex;
    flex-wrap: wrap;
    /*    gap: 60px;*/
    margin: 80px 0 100px;
  }
  /*  .company .button01 li {
    width: calc((100% - 60px) / 2);
    margin: 0;
  }*/
  .button01 li a {
    width: 60%;
    border-bottom: 1.5px solid var(--secondaryColor);
    justify-content: left;
    /*    padding: 1.5em 0em;*/
    background: none;
  }
  .button01 li a:after {
    right: 4rem;
    width: 14px;
    height: 14px;
    top: 50%;
  }
  .button01 li a:hover:after {
    right: 2rem;
    border-top: solid 2px var(--mainColor);
    border-right: solid 2px var(--mainColor);
  }
  .button01 li:last-child a {
    border-bottom: 1.5px solid var(--secondaryColor);
  }
}