/* セクションのスタイル */
.section_intro, .section_intro2, .section_line, .section_howto01 {
  background-color: #fff;
  /* セクションの背景色を設定 */
  padding: 30px 20px;
  /* セクションの内側の余白を設定 */
  margin: 20px auto;
  /* セクションの外側の余白を設定 */
}
/* タイトルのスタイル */
.inPost h3 {
  margin-bottom: 20px;
  padding: 5px 0 5px 15px;
  border-left: 5px solid #ff5905;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3em;
}
.inPost h4 {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 16px;
  border-bottom: solid 1px #8d8d8d;
  color: #3c3c3c;
  padding-bottom: 10px;
}
.inPost p {
  line-height: 1.65em;
}
.inPost strong {
  font-weight: bold;
  color: #d01717;
}
.inPost strong.gpt {
  text-decoration: underline;
  color: #75a89b;
  text-decoration: underline;
}
.section_intro {
  margin-top: 0px;
}
.section_intro2 {
  background: #fff8de;
  border-radius: 10px;
}
/* リストのスタイル */
ul.info-list {
  list-style-type: disc;
  /* リストのマーカーを変更 */
  padding-left: 20px;
  /* リストの左側の余白を設定 */
}
ul.info-list li {
  margin-bottom: 1em;
  margin-left: 0.5em;
}
/* テキストリストのスタイル */
ol.step-list {
  list-style-type: decimal;
  /* リストのマーカースタイルを数字に設定 */
  padding-left: 30px;
  /* リストの左側の余白を設定 */
  margin: 0;
  /* リストの外側の余白を削除 */
}
ol.step-list li {
  margin-bottom: 1em;
  /* 各項目の下側の余白を設定 */
  line-height: 1.4;
  /* テキスト間の行の高さを設定 */
  color: #333;
  /* テキストの色を設定 */
}
/* ボタンのスタイル */
a.line-button {
  display: block;
  max-width: 225px;
  text-align: center;
  padding: 20px 10px;
  background-color: #06c755;
  margin: 40px auto 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
/* 画像のスタイル */
.image-container {
  text-align: center;
}
.image-box {
  display: block;
  margin: 0 auto;
}
.image-box img {
  max-width: 100%;
  /* 画像を親要素に合わせてサイズ調整 */
  height: auto;
}
.section_line {
  background: #f7f7f7;
}
.section_line .image-box {
  max-width: 344px;
}
.section_line__inner__col:nth-child(1) {
  margin-bottom: 15px;
}
.section_line .desc {
  text-decoration: underline;
  color: #d01717;
  text-align: center;
}
.section_line .line-qr {
  display: none;
  margin: 50px auto 20px;
}
.section_line .line-qr img {
  width: 150px;
  display: block;
  margin: 0 auto;
}
.section_howto01 {
  background: #f7f7f7;
}
.section_howto01 .image-box {
  max-width: 339px;
}
.section_howto01__inner__col:nth-child(1) {
  margin-bottom: 15px;
}
.section_howto01 .desc {
  text-decoration: underline;
  color: #d01717;
}
/* ブレークポイントでのスタイル変更（768px以上の場合） */
@media screen and (min-width: 768px) {
  .section_intro, .section_line, .section_howto01 {
    margin: 20px auto;
    /* セクションを中央に配置 */
    padding: 30px 30px;
    /* セクションの内側の余白を設定 */
  }
  .section_intro2 {
    margin: 30px auto;
    /* セクションの外側の余白を設定 */
  }
  .image-box img {
    margin-right: 20px;
    /* テキストと画像の間隔を設定 */
  }
  .inPost h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .section_line__inner {
    display: flex;
  }
  .section_line__inner__col:nth-child(1) {
    width: 55%;
  }
  .section_line__inner__col:nth-child(2) {
    width: 45%;
  }
  .section_line .line-qr {
    display: block;
  }
  .section_line .line-button {
    display: none;
  }
  .section_howto01__inner {
    display: flex;
  }
  .section_howto01__inner__col:nth-child(1) {
    width: 55%;
  }
  .section_howto01__inner__col:nth-child(2) {
    width: 45%;
  }
}
.check ul {
  border: solid 2px #ff721e;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  margin-top: 2em;
}
.check ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
}
.check ul li a {
  text-decoration: underline;
  color: #983900;
}
.check ul li:before {
  /*リストのアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "★";
  /*"\f05a";*/
  position: absolute;
  left: 1em;
  color: #ff721e;
  /*左端からのアイコンまでの距離*/
  /*アイコン色*/
}
.check ul li:after {
  /*タブ*/
  background: #ff721e;
  color: #fff;
  font-family: "Font Awesome 5 Free", 'Avenir', 'Arial', sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  POINT';
  /*アイコンコード＋文字*/
  letter-spacing: 0.05em;
  /*字間*/
}
