@charset "utf-8";
/* CSS Document */
/* ===== ベース ===== */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.7;
}
.p-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.p-table th,
.p-table td {
  border: 1px solid #ddd;
  padding: 14px 16px;
  vertical-align: top;
}

.p-table thead th {
  background: #009fe8;
  color: #ffffff;
  font-weight: bold;
  text-align: left;
}

.p-table tbody td:first-child {
  font-weight: bold;
  white-space: nowrap;
}

/* ===== PC表示 ===== */
@media (min-width: 769px) {
  .p-table tbody td:first-child {
    background: #009fe8;
    color: #ffffff;
	  vertical-align: middle;
  }
}

/* ===== スマホ表示（省スペース） ===== */
@media (max-width: 768px) {

  /* 表のまま使う（カード化しない） */
  .p-table {
    font-size: 14px;
  }

  .p-table thead {
    display: none;
  }

  .p-table tr {
    border-bottom: 1px solid #ddd;
  }

  .p-table th,
  .p-table td {
    padding: 8px 10px;
  }

  /* 学年列 */
  .p-table tbody td:first-child {
  background: #009fe8;
  color: #ffffff;
    font-weight: bold;
	  vertical-align: middle;
	  
  }

  /* お届け内容 */
  .p-table tbody td:last-child {
    line-height: 1.5;
  }
}
/* STEP見出し */
.howto-step {
  margin: 0 0 20px;
}

.howto-step img {
  width: 100%;
  max-width: 680px;   /* PCでもデカくなりすぎない */
  height: auto;
  display: block;
	
}
/* STEP3などイメージ用（小さめ） */
.howto-step--small img {
  max-width: 240px;
  margin: 0;
}
@media (max-width: 768px) {
  .howto-step.howto-step--small img {
    max-width: 160px;
	  margin: 0 auto;
  }
}

/* キャプション */
.howto-step figcaption {
  margin-top: 6px;
}

/* 表示切り替え */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  .howto-step img {
    max-width: 100%;}
}
.t_img2 {
    font-size: 0.85rem;
    line-height: 3;
}
ul.custom-list {
  margin-top: 1em;    /* 上余白 */
  margin-bottom: 1em; /* 下余白 */
  padding: 1rem;
  line-height: 1.8;   /* 行間を広げる */
  border: 2px solid #009fe8;
	background-color: #F8FEFC;
}


ul.custom-list li {
  margin-bottom: 0.3em; /* 各リスト項目の間隔 */
}	