@charset "utf-8";

.storage_area {
  background: #f7f7f7;
  padding: 40px 40px 30px;
}

.storage_area_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.storage_logo img {
  width: 315px;
}

.storage_logo {
  display: flex;
  margin-bottom: 10px;
}

.storage_text {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.storage_btn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.storage_btn {
  background: black;
  border-radius: 20px;
  width: 120px;
  height: 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 14px;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storage_btn:hover {
  opacity: 0.7;
}

.storage_btn:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .storage_area {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .storage_area_wrap {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    padding: 100px 0;
    width: 90%;
    margin: auto;
  }

  .storage_logo img {
    max-width: 280px;
    width: 100%;
  }

  .storage_logo {
    margin-bottom: 30px;
  }

  .storage_text {
    margin-bottom: 40px;
  }

  .storage_btn_area {
    margin-bottom: 0;
  }

  .storage_area {
    padding: 0;
  }
}
