@charset 'UTF-8';

.kn-anchor-btn.-pink_background {
    color: #d3404f;
    border-color: #d3404f;
	background-color: #fff3f5;
}


/* アイコン付き科目ジャンプリンク */
.note-subject-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.note-subject-nav > li {
  margin: 0;
}

.note-subject-nav > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 80px;
  padding: 10px 6px;
  border: 1px solid #547bdb;
  border-radius: 8px;
  background: #fff;
  color: #547bdb;
  font-size: .12rem;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 200ms, opacity 200ms;
}

.note-subject-nav > li > a:hover {
  background: #dce6ff;
  text-decoration: none;
  opacity: 1;
}

.note-subject-nav > li > a img {
  display: block;
  width: 32px;
  height: 32px;
}

@media screen and (max-width:767px) {
  .kn-step.-description>li.block {
    display: block;
  }

  .note-subject-nav {
    justify-content: center;
  }

  .note-subject-nav > li > a {
    width: 68px;
    padding: 8px 4px;
    font-size: .11rem;
  }

  .note-subject-nav > li > a img {
    width: 28px;
    height: 28px;
  }
}