@charset "UTF-8";
/***************　others　  ***************/
/***************　mixin　  ***************/
.border {
  font-size: 18px;
  color: #ff6e6e;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .border {
    font-size: 24px;
  }
}
@media screen and (min-width: 2561px) {
  .border {
    font-size: 1.25vw;
    margin-bottom: 60px;
  }
}
.border span {
  display: inline-block;
  position: relative;
}
.border span::after {
  width: 100%;
  height: 10px;
  position: absolute;
  content: "";
  background-color: #ff6e6e;
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 3px, transparent 0, transparent 6px);
  left: 0;
  bottom: -10px;
}
@media screen and (min-width: 2561px) {
  .border span::after {
    height: 20px;
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 6px, transparent 0, transparent 12px);
    bottom: -20px;
  }
}

.btn:nth-of-type(1),.btn:nth-of-type(2) {
  width: 90%;
  height: 60px;
  background: #2196F3 url(/homework/common/images/arrow-link.svg) no-repeat;
  background-size: 31.5px auto;
  background-position: right 10px center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}
.btn:nth-of-type(2){
  width: 90%;
  height: 60px;
  background:#00BCD4 url(/homework/common/images/arrow-link.svg) no-repeat;
  background-size: 31.5px auto;
  background-position: right 10px center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

@media screen and (min-width: 768px) {
  .btn:nth-of-type(1),.btn:nth-of-type(2) {
    background-size: auto auto;
    background-position: right 20px center;
  }
}
@media screen and (min-width: 2561px) {
  .btn:nth-of-type(1),.btn:nth-of-type(2) {
    background-size: 126px auto;
    background-position: right 40px center;
  }
}
@media screen and (min-width: 1025px) {
  .btn:nth-of-type(1),.btn:nth-of-type(2) {
    width: 100%;
  }
}
@media screen and (min-width: 2561px) {
  .btn:nth-of-type(1),.btn:nth-of-type(2) {
    height: 120px;
    font-size: 0.8333333333vw;
  }
}
/*.btn {
  width: 90%;
  height: 60px;
  background: #ffbb00 url(/homework/common/images/arrow-link.svg) no-repeat;
  background-size: 31.5px auto;
  background-position: right 10px center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .btn {
    background-size: auto auto;
    background-position: right 20px center;
  }
}
@media screen and (min-width: 2561px) {
  .btn {
    background-size: 126px auto;
    background-position: right 40px center;
  }
}
@media screen and (min-width: 1025px) {
  .btn {
    width: 100%;
  }
}
@media screen and (min-width: 2561px) {
  .btn {
    height: 120px;
    font-size: 0.8333333333vw;
  }
}*/
.btn a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  opacity: 0.5;
}