@charset "UTF-8";

/* ========================================
   Find Hubページ共通
======================================== */

.fh-page {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  box-sizing: border-box;
}

.fh-page *,
.fh-page *::before,
.fh-page *::after {
  box-sizing: border-box;
}

.fh-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 24px 60px;
  text-align: left;
  overflow-wrap: break-word;
  word-break: normal;
}

/* ========================================
   ページタイトル
======================================== */

.fh-title-box {
  width: 100%;
  margin: 0 0 40px;
  padding: 18px 16px;
  border-top: 5px solid #7a00df;
  border-bottom: 5px solid #7a00df;
}

.fh-title {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.fh-title-break {
  display: block;
}

/* ========================================
   本文
======================================== */

.fh-text {
  margin: 0 0 24px;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: left;
}

/* ========================================
   セクション見出し
======================================== */

.fh-section-title {
  margin: 48px 0 20px;
  padding: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
}

/* ========================================
   対象製品
======================================== */

.fh-product {
  margin: 0 0 24px;
  padding: 0;
}

.fh-product-row {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: left;
}

/* ========================================
   操作手順
======================================== */

.fh-steps {
  margin: 0 0 24px;
  padding: 0;
}

.fh-step {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: left;
}

.fh-step-number {
  display: block;
  flex: 0 0 1.8em;
  margin: 0;
  padding: 0;
}

.fh-step-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

/* ========================================
   注記
======================================== */

.fh-note {
  margin: 40px 0 0;
  padding: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;
}

/* ========================================
   スマートフォン
======================================== */

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

  .fh-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }

  .fh-title-box {
    margin: 0 0 28px;
    padding: 14px 8px;
    border-top-width: 4px;
    border-bottom-width: 4px;
  }

  .fh-title {
    font-size: 22px;
    line-height: 1.45;
  }

  .fh-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .fh-section-title {
    margin: 36px 0 16px;
    font-size: 21px;
    line-height: 1.5;
  }

  .fh-product {
    margin-bottom: 20px;
  }

  .fh-product-row {
    font-size: 16px;
    line-height: 1.8;
  }

  .fh-steps {
    margin-bottom: 20px;
  }

  .fh-step {
    font-size: 16px;
    line-height: 1.8;
  }

  .fh-step-number {
    flex-basis: 1.8em;
  }

  .fh-note {
    margin-top: 32px;
    font-size: 13px;
    line-height: 1.7;
  }

}

/* ========================================
   小さいスマートフォン
======================================== */

@media screen and (max-width: 480px) {

  .fh-title {
    font-size: 19px;
    line-height: 1.5;
  }

  .fh-section-title {
    font-size: 19px;
  }

}