@charset "UTF-8";

/* footer scss
--------------------------------------------------------------------------*/

footer {
  width: 100%;
  background-color: #141414;
  /* --- コピーライト --- */
}
footer .footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 1500px;
  padding: 150px 0;
  margin: auto;
  /* --- 左側エリア (Blog, Service, Company) --- */
  /* --- 右側エリア (Logo) --- */
}
@media screen and (max-width: 1500px) {
  footer .footer {
    width: 100%;
    padding: 100px 50px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 25px;
  }
}
footer .footer .left .abobe {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer .left .abobe {
    flex-direction: column;
  }
}
footer .footer .left .abobe .cont:nth-child(2) {
  margin: 0 0 0 50px;
}
@media screen and (max-width: 768px) {
  footer .footer .left .abobe .cont:nth-child(2) {
    margin: 40px 0 0 0;
  }
}
footer .footer .left .abobe .cont .head {
  position: relative;
  padding: 0 0 20px;
}
footer .footer .left .abobe .cont .head:before {
  content: "";
  position: absolute;
  width: 30px;
  bottom: 0;
  left: 10px;
  border-bottom: 5px dotted white;
}
footer .footer .left .abobe .cont .head h2 {
  font-size: 30px;
  color: white;
}
@media screen and (max-width: 768px) {
  footer .footer .left .abobe .cont .head h2 {
    font-size: 24px;
  }
}
footer .footer .left .abobe .cont .body {
  padding: 20px 0 0 10px;
}
footer .footer .left .abobe .cont .body ul li {
  margin-bottom: 10px;
}
footer .footer .left .abobe .cont .body ul li a {
  font-size: 15px;
  color: white;
  text-decoration: none;
}
footer .footer .left .abobe .cont .body ul li a:hover {
  opacity: 0.7;
}
footer .footer .left .below {
  margin: 50px 0 0;
}
footer .footer .left .below .cont .head h2 {
  font-size: 30px;
  color: white;
}
@media screen and (max-width: 768px) {
  footer .footer .left .below .cont .head h2 {
    font-size: 24px;
  }
}
footer .footer .left .below .cont .body {
  margin: 25px 0 0;
}
footer .footer .left .below .cont .body ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer .left .below .cont .body ul li {
  margin: 0 25px 15px 0;
}
footer .footer .left .below .cont .body ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
footer .footer .left .below .cont .body ul li:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  footer .footer .right {
    margin-top: 50px;
    width: 100%;
    text-align: center;
  }
}
footer .footer .right .abobe .head a img {
  width: 200px;
  height: auto;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
  background-color: white;
}
footer .copyright span {
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 768px) {
  footer .copyright span {
    font-size: 14px;
  }
}
