@charset "utf-8";

@import url(./global/_variable.css);


.bg_feature {
  a {
    background-color: var(--color_feature);
  }
}

.bg_list {
  padding-block-start: 30px;
  a {
    background-color: #D32D26;
  }
}


.beginning_temp {
  padding-block-start: 20px;
  h1 {
    font-size: 1.5em;
    font-weight: 700;
    padding-top: 10px;
  }
  h2 {
    font-size: 1.4em;
    font-weight: 700;
    padding-top: 10px;
  }
  h3 {
    font-size: 1.3em;
    font-weight: 700;
    padding-top: 10px;
  }
  h4 {
    font-size: 1.2em;
    font-weight: 700;
    padding-top: 10px;
  }
  h5 {
    font-size: 1.1em;
    font-weight: 700;
    padding-top: 10px;
  }
  h6 {
    font-size: 1.0em;
    font-weight: 700;
    padding-top: 10px;
  }
  ol {
    list-style: decimal;
    padding-left: 1em;
  }
  ul {
    list-style: disc;
    padding-left: 1.0em;
  }
  table {
    width: 100%;
    border-top: #666 solid 1px;
    border-left: #666 solid 1px;
    th,td {
      border-right: #666 solid 1px;
      border-bottom: #666 solid 1px;
      padding: 5px;
    }
  }
}

.hd_topics {
  color: var(--color_feature);
  border-left: var(--color_feature) solid 18px;
}

.sequence_temp {
  padding-block-start: 30px;
  display: grid;
  row-gap: 30px;
}

.hd_sub {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3em;
  border-bottom: var(--color_feature) solid 1px;
  padding-block-start: 20px;
  padding-block-end: 8px;
}

.box_slide {
  margin-inline: -20px;
  .splide {
    position: relative;
    .splide__track {
      .splide__list {
        .splide__slide {
          .img_slide {
            aspect-ratio: 3 / 2;
            overflow: hidden;
            border-radius: 16px;
            width: 100%;
            height: auto;
            img {
              object-fit: cover;
              width: 100%;
              height: 100%;
            }
          }
          .cap_slide {
            font-size: 1.4rem;
            line-height: 1.4em;
            padding-top: 5px;
          }
        }
      }
    }
    .splide__pagination {
      position: absolute;
      bottom: -20px;
      left: 0px;
      width: 100%;
      li {
        padding: 0 4px;
        .splide__pagination__page {
          width: 10px;
          height: 10px;
          padding: 0px;
          border-radius: 100%;
          border: none;
          background-color: #CCC;
        }
        .is-active {
          background-color: var(--color_primary);
        }
      }
    }
    .splide__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 300;
      img {
        height: 27px;
        width: auto;
        filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.7));
      }
    }
    .splide__arrow--next {
      right: 10px;
    }
    .splide__arrow--prev {
      left: 10px;
      img {
        transform: rotate(180deg);
      }
    }
  }
}