@charset "utf-8";
/* CSS Document */
.c-other-content__block th {
  background: #009fe8;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}
.c-other-content__block td {
  border: solid 1px #ccc;
  padding: 10px;
}
.tbl-r05 {
			margin: 1rem 0;
		}
		
@media screen and (min-width: 768px) {
  table {
    table-layout: fixed;
    width: 100%;
  }

  /* 1列目 */
  th:nth-child(1),
  td:nth-child(1) {
    width: 100px;  /* 狭め */
  }

  /* 2列目と3列目 */
  th:nth-child(2),
  td:nth-child(2),
  th:nth-child(3),
  td:nth-child(3) {
    width: 220px;  /* 広め */
  }
}		
		
		
@media screen and (max-width: 640px) {
  .tbl-r05 .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 td {
    display: block;
    width: 100%;
  }
  .tbl-r05 td:first-child {
    background: #009fe8;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}
		
.checked-box { 
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 10px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
  margin: 2em 0;
}

.checked-box h3 {
  margin-top: 0;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
}

.checked-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.checked-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8em;
}

.checked-icon {
  width: 18px;
  height: 18px;
  background-color: #009fe8;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: 0.3em;
}

.checked-text {
  line-height: 1.6;
  min-width: 0;
  word-break: break-word;
}
