@charset "utf-8";


/*--------------------------------------------------------------
  使い方ページ
--------------------------------------------------------------*/

#howtouse {
  margin: 0;
  padding: 1rem 0 3rem 0;

  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  background-color: #fbfbf6;
  color: #615f51;
  font-size: 1.0rem;
  line-height: 1.8rem;
  font-weight: 400;
  text-align: justify;
}


/* 基本 */
.howtoblock {
  width: 960px;
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: start !important;
  align-items: start !important;
}

.howtoblock h1 {
  margin: 8rem 0 4rem 0;
  text-align: start;

  font-size: clamp(2.0rem, 2.2vw, 3.2rem);
  line-height: 1.2;
  font-weight: 400;
}

.howtoblock h2 {
  margin: 8rem 0 2rem 0;
  text-align: start;
}

.howtoblock h2::first-letter {
  color: rgb(var(--main-color) / 1.0);
}

.howtoblock h4 {
  margin: 8rem 0 2rem 0;
  padding: 0 0.5rem 0 0.5rem;
  text-align: start;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
}

.howtoblock h4::first-letter {
  padding: 0 0.4rem 0 0.8rem;

  color: rgb(var(--main-color) / 1.0);
  font-size: 2.0rem;
  line-height: 1;
  font-weight: 500;

  border-left: 2px solid rgb(var(--main-color) / 1.0);
}


.howtoblock p {
  font-size: 1.0rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #747267;
}

.howtoblock a {
  text-decoration: none;
  color: #747267;
  font-size: unset;
}

.howtoblock li {
  margin: 0 0 0 1.8rem;
  padding: 0;
  font-size: 1.0rem;
  line-height: 1.8rem;
  font-weight: 400;
  text-indent: 0rem;
}


.howtoblock li ul,
.howtoblock li ol {
  margin: 1rem 0 0 0;
  text-align: start;
}

.howtoblock li p,
.howtoblock li p {
  margin: 1rem 0 0 0;
  text-align: start;
}


/* 内包リスト用 */
.howtoblock ol.indentlist,
.howtoblock ul.indentlist {
  margin-left: 1.5rem;
  font-size: 1.0rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #747267;
}

.howtoblock ol.indentlist li,
.howtoblock ul.indentlist li {
  margin-top: 0rem;
  padding: 0;
  font-size: 1.0rem;
  line-height: 1.8rem;
  font-weight: 400;
}

@media (max-width: 767.98px) {

  /* sm 以下の画面サイズの場合のスタイル */
  .howtoblock {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  .howtoblock {
    width: 100%;
    margin: 0;
    padding: 1rem
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}