/* -------------------------------------------------- */
/* 表示制限 */
/* -------------------------------------------------- */

/* ▼ PC */
@media (min-width: 769px) {

  /* スマホのみ要素を非表示 */
  .only-sp {
    display: none !important;
  }

}

/* ▼ スマホ */
@media (max-width: 768px) {

  /* PCのみ要素を非表示 */
  .only-pc {
    display: none !important;
  }

}

/* -------------------------------------------------- */
/* 共通 */
/* -------------------------------------------------- */

/* メインコンテンツ */
.main-content {
  background: #f6f9fa;
  margin: 0 10%;
}

/* フレックスレイアウト */
.d-flex {
  display: flex;
}

/* フレックスアイテム */
.d-flex>.container {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}

/* アイテム：幅を内部要素に合わせる */
.d-flex>.container.fit-content {
  width: fit-content;
}

/* 箇条書きリスト */
body ul {
  margin: 0;
  padding-left: 20px;
}

/* -------------------------------------------------- */
/* 説明エリア（左部） */
/* -------------------------------------------------- */

/* タイトル */
body h2 {
  margin-top: 0;
}

/* リスト：先頭 */
ul.list__indent>li {
  list-style-type: disc;
}

/* 縦横センタリング */
.centering {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------- */
/* フォームエリア（右部） */
/* -------------------------------------------------- */

/* コンテナ */
.form-section {
  /*display: flex;*/
  flex-direction: column;
}

/* 説明 */
.form-text {
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}

/* iframe */
body iframe {
  width: 100%;
  flex: 1;
}

/* ▼ スマホ */
@media (max-width: 768px) {

  /* メインコンテンツ */
  .main-content {
    margin: 0;
  }

  /* フレックスレイアウト*/
  .d-flex {
    display: block;
  }

  /* iframe */
  body iframe {
    min-height: 100vh;
  }

}