/* フッター */
a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}


.footer {
  background-color: white;
  height: 400px;
  display: flex;
  border-top: 5px solid green;
}

.footer-area {
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr 1fr; /* 2カラム */
  grid-template-columns: 1fr 1fr; /* 2カラム */
  column-gap: 450px; /* ボックス同士の間隔 */
  
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .footer-area {
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr 1fr; /* 2カラム */
    grid-template-columns: 1fr 1fr; /* 2カラム */
    column-gap: 300px; /* ボックス同士の間隔 */

    overflow: unset;
  }
}

.footer-left {
  border: 1px none #333;
  padding: 20px;
  width: 280px; /* 幅を揃える */
}

.footer-left__company-text {
  color: black;
  font-size: 26px;
  line-height: normal;
}

.footer-left__company-cate {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  line-height: normal;
}

.footer-left__text {
  color: black;
  font-size: 14px;
  line-height: normal;
}

.footer-right {
  border: 1px none #333;
  padding: 20px;
  width: 280px; /* 幅を揃える */
}

.footer-right__text {
  color: black;
  font-size: 14px;
  text-align: right;
  height: 40px;
  line-height: normal;
}

.footer-right__text a {
  color: black;
}

.footer-copyright-area {
  margin-left: 20px;
}

.footer-copyright {
  color: black;
  font-size: 12px;
  line-height: normal;
}