@charset "UTF-8";
/***************　contents　  ***************/
/***************　mixin　  ***************/
.point {
  font-size: 18px;
  color: #ff6e6e;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .point {
    font-size: 24px;
    font-size: 1.25vw;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 2561px) {
  .point {
    margin-bottom: 60px;
  }
}
.point span {
  display: inline-block;
  position: relative;
}
.point 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) {
  .point span::after {
    height: 20px;
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 6px, transparent 0, transparent 12px);
    bottom: -20px;
  }
}

.btn-other {
  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-other {
    background-size: auto auto;
    background-position: right 20px center;
  }
}
@media screen and (min-width: 2561px) {
  .btn-other {
    background-size: 126px auto;
    background-position: right 40px center;
  }
}
@media screen and (min-width: 1025px) {
  .btn-other {
    width: 100%;
  }
}
@media screen and (min-width: 2561px) {
  .btn-other {
    height: 120px;
    font-size: 0.8333333333vw;
  }
}
.btn-other a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn-other:hover {
  opacity: 0.5;
}

section {
  padding: 40px 0 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  section {
    margin-bottom: 60px;
  }
}
section:nth-of-type(even) {
  background-color: #E4F5F9;
  padding: 40px 0;
}
section p {
  margin-bottom: 40px;
}

#homework-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-items: inherit;
}
#homework-list .homework-list-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
}
@media screen and (min-width: 1025px) {
  #homework-list .homework-list-contents {
    width: 33.3333333333%;
  }
}
#homework-list .homework-list-contents h3 {
  width: 100%;
  color: #00cf6e;
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
  padding: 15px 0;
  position: relative;
}
#homework-list .homework-list-contents h3::before, #homework-list .homework-list-contents h3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 90%;
  height: 95%;
  background-color: #00cf6e;
  -webkit-mask: url("../common/images/content-index-border.svg");
  mask: url("../common/images/content-index-border.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}
#homework-list .homework-list-contents h3::after {
  top: inherit;
  left: inherit;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  #homework-list .homework-list-contents h3 {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1025px) {
  #homework-list .homework-list-contents h3 {
    padding: 15px 0;
  }
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents h3 {
    padding: 30px 0;
  }
}
#homework-list .homework-list-contents h3 span {
  font-size: 12px;
}
#homework-list .homework-list-contents img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}
#homework-list .homework-list-contents .type {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents .type {
    margin-bottom: 20px;
  }
}
#homework-list .homework-list-contents .type li {
  color: #fff;
  text-align: center;
  line-height: 2;
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 50vw;
}
#homework-list .homework-list-contents .type .st {
  background-color: #00a5cf;
}
#homework-list .homework-list-contents .type .tec {
  background-color: #e9cb53;
}
#homework-list .homework-list-contents p {
  margin-bottom: 0;
}
#homework-list .homework-list-contents .btn {
  height: 60px;
  background-color: #00cf6e;
  margin-top: 15px;
  transition: 0.5s;
}
#homework-list .homework-list-contents .btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
#homework-list .homework-list-contents .btn a::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  height: 12px;
  width: 19px;
  -webkit-mask: url("/homework/common/images/tip-link.svg");
  mask: url("/homework/common/images/tip-link.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin-right: 20px;
  margin-top: -3px;
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents .btn a::before {
    height: 24px;
    width: 38px;
  }
}
#homework-list .homework-list-contents .btn a:hover {
  background-color: #fff;
  color: #00cf6e;
  position: relative;
  border: solid 1px #00cf6e;
}
#homework-list .homework-list-contents .btn a:hover::before {
  content: "";
  background-color: #00cf6e;
  display: inline-block;
  height: 12px;
  width: 19px;
  -webkit-mask: url("/homework/common/images/tip-link.svg");
  mask: url("/homework/common/images/tip-link.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin-right: 20px;
  margin-top: -3px;
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents .btn a:hover::before {
    height: 24px;
    width: 38px;
  }
}
@media screen and (min-width: 1025px) {
  #homework-list .homework-list-contents .btn {
    margin-top: 30px;
  }
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents .btn {
    margin-top: 60px;
    height: 120px;
    font-size: 16px;
    font-size: 0.8333333333vw;
  }
}
#homework-list .homework-list-contents:nth-last-of-type(odd) {
  background-color: #00cf6e;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) h3 {
  color: #fff;
  position: relative;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) h3::before, #homework-list .homework-list-contents:nth-last-of-type(odd) h3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 90%;
  height: 95%;
  background-color: #fff;
  -webkit-mask: url("../common/images/content-index-border.svg");
  mask: url("../common/images/content-index-border.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) h3::after {
  top: inherit;
  left: inherit;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
#homework-list .homework-list-contents:nth-last-of-type(odd) .btn {
  background-color: #fff;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) .btn a {
  width: 100%;
  height: 100%;
  color: #00cf6e;
  position: relative;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) .btn a::before {
  content: "";
  background-color: #00cf6e;
  display: inline-block;
  height: 12px;
  width: 19px;
  -webkit-mask: url("/homework/common/images/tip-link.svg");
  mask: url("/homework/common/images/tip-link.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin-right: 20px;
  margin-top: -3px;
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents:nth-last-of-type(odd) .btn a::before {
    height: 24px;
    width: 38px;
  }
}
#homework-list .homework-list-contents:nth-last-of-type(odd) .btn a:hover {
  background-color: #00A830;
  color: #fff;
  position: relative;
}
#homework-list .homework-list-contents:nth-last-of-type(odd) .btn a:hover::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  height: 12px;
  width: 19px;
  -webkit-mask: url("/homework/common/images/tip-link.svg");
  mask: url("/homework/common/images/tip-link.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin-right: 20px;
  margin-top: -3px;
}
@media screen and (min-width: 2561px) {
  #homework-list .homework-list-contents:nth-last-of-type(odd) .btn a:hover::before {
    height: 24px;
    width: 38px;
  }
}

.center svg {
  width: 52.5535px;
  height: 61.4015px;
}
@media screen and (min-width: 1025px) {
  .center svg {
    width: 105.107px;
    height: 122.803px;
  }
}

#progress {
  margin-top: 40px;
}
#progress .bace-contents {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#progress .bace-contents figure {
  width: calc((100% - 40px) / 3);
}
#progress .bace-contents figure img {
  width: 100%;
  border-radius: 50% 50% 56% 44%/41% 57% 43% 59%;
}
#progress .bace-contents figure:nth-last-of-type(2) img {
  border-radius: 36% 64% 39% 61%/61% 38% 62% 39%;
}
#progress .bace-contents .txt {
  margin-top: 30px;
}