@charset "UTF-8";
/**
サイト共通の基本設定
こちらにはmixinや変数等のCSSを直接記述しない部品のみ設置可能です。
 */
/**
カラムレイアウト
 */
@media screen and (max-width: 1024px) {
  .col__container--sptab1-pc2 {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab1-pc2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .col__container--sptab1-pc3 {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab1-pc3 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .col__container--sptab2-pc4 {
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab2-pc4 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

/**
chapterとjumperを入れられる
 */
.contents {
  background-color: #f5f5f5;
  padding-bottom: 20px;
}
.contents__chapter {
  width: calc(100% - 40px);
  margin: 20px auto 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

/**
タイトル+枠
 */
.chapter {
  background: #fff;
}
.chapter__outer {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: 0 auto;
}
.chapter__inner {
  margin-top: 60px;
}
.chapter__title--alpha {
  color: #1a1a1a;
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .chapter__title--alpha {
    display: flex;
    justify-content: center;
  }
}
.chapter__title--bravo {
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .chapter__title--bravo {
    display: flex;
    justify-content: center;
  }
}
.chapter__title--charlie {
  background-color: #0068b7;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 7px 15px;
}
.chapter__title--charlie::before {
  content: "▼";
}
.chapter__title--delta {
  border: 1px solid #333;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 5px 15px;
}
.chapter__body {
  margin: 30px 5px;
}
.chapter__text {
  line-height: 2;
}

/**
画面スクロールについてくる
アンカーリンク用のバー
 */
.jumper {
  position: sticky;
  top: 0;
  background-color: #666666;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.2;
  z-index: 10;
}
.jumper__body {
  width: calc(100% - 20px);
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}
.jumper__top {
  padding: 20px 15px 20px 0;
}
.jumper__top-link {
  transition: all 0.5s ease;
  display: flex;
  border: 1px solid #fff;
  color: #fff;
  align-items: center;
  padding: 3px 5px;
}
.jumper__top-link:before {
  content: "▲";
}
@media screen and (min-width:600px) {
  .jumper__top-link:before {
    font-size: 90%;
    padding-right: 3px;
  }
}
@media (any-hover: hover) {
  .jumper__top-link:hover {
    color: #666666;
    background-color: #fff;
  }
}
@media screen and (max-width:599px) {
  .jumper__top-text {
    display: none;
  }
}
.jumper__anchor {
  flex-grow: 1;
  position: relative;
  overflow: auto hidden;
}
.jumper__anchor::-webkit-scrollbar {
  height: 5px;
}
.jumper__anchor::-webkit-scrollbar-thumb {
  background-color: rgb(166, 167, 174);
  border-radius: 10px;
}
.jumper__anchor::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
.jumper__anchor-list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}
.jumper__anchor-item {
  flex-shrink: 0;
  display: flex;
}
.jumper__anchor-link {
  display: flex;
  padding: 24px 15px;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.jumper__anchor-link:before {
  content: "▼";
  font-size: 90%;
  padding-right: 3px;
}
.jumper__english, .jumper__my-page {
  padding: 20px 0 20px 15px;
}
.jumper__english-link, .jumper__my-page-link {
  transition: all 0.5s ease;
  display: flex;
  border: 1px solid #fff;
  color: #fff;
  align-items: center;
  padding: 3px 5px;
}
@media (any-hover: hover) {
  .jumper__english-link:hover, .jumper__my-page-link:hover {
    color: #666666;
    background-color: #fff;
  }
}

.js-jumper__unhover:not(.js-jumper__current) {
  opacity: 0.5;
}
.js-jumper__current {
  color: #0068b7;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.page-title__main {
  text-align: center;
}

.page-title__main_top {
  font-size: 22px;
}

.notes_list {
  display: grid;
  gap: 20px;
}
.notes_item {
  font-size: 18px;
  display: flex;
}
.notes_dot {
  display: block;
}
@media screen and (max-width: 600px) {
  .notes_list {
    gap: 10px;
  }
  .notes_item {
    font-size: 16px;
  }
}