@charset "UTF-8";
.contents {
  margin: 20px auto 80px;
}
.contents h3 {
  font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 10px;
}
.contents p {
  text-align: justify;
  letter-spacing: -0.5px;
}
.contents .indent {
  padding-left: 28px;
}
.contents .arrow {
  color: #253d94;
}
.contents .ribbon {
  margin: 0;
  display: inline-block;
  position: relative;
  height: 48px;
  /*高さ*/
  line-height: 48px;
  /*高さ*/
  text-align: center;
  padding: 0 25px 0 20px;
  /*文字の左右の余白*/
  font-size: 20px;
  /*文字サイズ*/
  background: var(--color-primary);
  /*背景色*/
  color: #FFF;
  /*文字色*/
  box-sizing: border-box;
  letter-spacing: -1.5px;
}
.contents .ribbon:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: -1px;
  border-width: 24px 12px 24px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.contents .toc {
  max-width: 850px;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
  background-color: #fafafa;
}
.contents .toc h2 {
  font-size: 20px;
  font-weight: bold;
}
.contents .toc .toc-list {
  display: flex;
  gap: 20px;
}
.contents .toc .toc-list ul {
  width: calc(50% - 10px);
}
.contents .toc .toc-list ul li {
  letter-spacing: -0.5px;
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  padding: 5px 0 10px;
}
.contents .toc .toc-list ul li:not(:last-child) {
  border-bottom: solid 1px #cbcbcb;
}
.contents .checkpoint {
  margin-bottom: 70px;
}
.contents .checkpoint .check-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffff82;
  text-align: center;
  line-height: 28px;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
}
.contents .checkpoint .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: solid 2px #cccccc;
}
.contents .checkpoint .section-title h2 {
  padding-bottom: 2px;
}
.contents .checkpoint .check-title {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}
.contents .checkpoint .checkpoint-content {
  padding-top: 20px;
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  line-height: 1.75;
}
.contents .checkpoint .checkpoint-content h3 {
  margin-bottom: 20px;
}
.contents .checkpoint .checkpoint-content .highlight-box p {
  text-align: right;
}
.contents .checkpoint .checkpoint-content .highlight-box .q-underline {
  font-weight: bold;
  border-bottom: solid 1px #4c5494;
  padding-bottom: 5px;
}
.contents .checkpoint .checkpoint-content .pro-insight {
  background-color: #f5faff;
  padding: 20px;
  border: solid 1px #a7a8a9;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-img {
  width: 10%;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-img img {
  width: 100%;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text {
  width: calc(90% - 20px);
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title p {
  font-size: 18px;
  font-weight: bold;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title .text-s {
  font-size: 16px;
  font-weight: 500;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title .pro {
  display: inline-block;
  color: #fff;
  background: #af7f2e;
  transform: rotate(-3deg);
  padding: 1px 5px;
  margin-top: -3px;
  font-weight: 500;
}
.contents .checkpoint .checkpoint-content .pro-insight .pro-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.4px;
}
.contents .checkpoint .checkpoint-content .type-cards {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  letter-spacing: -1.2px;
}
.contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header {
  background-color: #569fd7;
  color: #fff;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
  font-weight: bold;
  padding: 4px;
}
.contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header .text-yellow {
  color: var(--color-accent-yellow);
  font-size: 24px;
  font-weight: bold;
}
.contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header .text-s {
  font-size: 16px;
}
.contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-content {
  background-color: #fafaf0;
  padding: 20px 24px 30px;
}
.contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-content .merit-demerit {
  display: flex;
  gap: 20px;
}
.contents .checkpoint .checkpoint-content .review-sources ul {
  font-weight: bold;
}
.contents .checkpoint .checkpoint-content .review-sources ul li a {
  color: var(--color-primary);
}
.contents .checkpoint .checkpoint-content .table-wrapper {
  padding-top: 10px;
}
.contents .checkpoint .checkpoint-content .table-wrapper .text-green {
  color: #009600;
}
.contents .checkpoint .checkpoint-content .table-wrapper table {
  border-collapse: collapse; /* セルの線を重ねる */
  text-align: center;
  color: #000;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.contents .checkpoint .checkpoint-content .table-wrapper table th, .contents .checkpoint .checkpoint-content .table-wrapper table td {
  border: solid 2px #222; /* 枠線指定 */
}
.contents .checkpoint .checkpoint-content .table-wrapper table .reform td:not(.bg-brown) {
  background-color: #fffff5;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .wall-painting td:not(.bg-blue) {
  background-color: #faffff;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .vertical-spans span {
  display: inline-block;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  min-width: 20px;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .vertical-spans .h-80 {
  min-height: 80px;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .vertical-spans .h-120 {
  min-height: 120px;
}
.contents .checkpoint .checkpoint-content .table-wrapper table th {
  font-weight: 500;
}
.contents .checkpoint .checkpoint-content .table-wrapper table th:not(.jp-order) {
  padding: 10px 15px;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  white-space: normal;
  word-break: break-all;
}
.contents .checkpoint .checkpoint-content .table-wrapper table td {
  font-weight: bold;
  padding: 10px 15px;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .company-name a {
  color: var(--color-primary);
}
.contents .checkpoint .checkpoint-content .table-wrapper table .jp-order {
  font-size: 14px;
  color: #464646;
  font-weight: 500;
  padding-bottom: 5px;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .bg-brown,
.contents .checkpoint .checkpoint-content .table-wrapper table .bg-blue {
  line-height: 1.3;
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .bg-brown {
  background-color: #c8aa8c;
  color: #fff;
}
.contents .checkpoint .checkpoint-content .table-wrapper table .bg-blue {
  background-color: #8ca0c8;
  color: #fff;
}
.contents .checkpoint .checkpoint-content .table-wrapper .table-note {
  padding: 10px 5px;
  display: flex;
  gap: 10px;
}
.contents .checkpoint .checkpoint-content .table-wrapper .table-note p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.contents .checkpoint .checkpoint-content .table-wrapper .table-note .table-note-row {
  display: flex;
  gap: 10px;
}
.contents .operator-message .section-title {
  padding-bottom: 20px;
  border-bottom: solid 2px #cccccc;
}
.contents .operator-message .section-title h2 {
  color: #fff;
  font-size: 18px;
  background-color: var(--color-secondary);
  letter-spacing: -1px;
}
.contents .operator-message .operator-message-content {
  padding-top: 20px;
}
.contents .operator-message .operator-message-content h3 {
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1.5;
}
.contents .operator-message .operator-message-content p {
  margin-top: 25px;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .contents {
    margin: 0 auto 60px;
  }
  .contents h3 {
    font-size: 19px;
  }
  .contents .ribbon {
    margin: 0;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0 20px 0 10px;
    font-size: 16px;
  }
  .contents .ribbon:after {
    border-width: 20px 12px 20px 0px;
  }
  .contents .toc {
    padding: 20px 20px;
  }
  .contents .toc h2 {
    font-size: 18px;
  }
  .contents .toc .toc-list {
    flex-direction: column;
    gap: 0;
  }
  .contents .toc .toc-list ul {
    width: 100%;
    margin: 0;
  }
  .contents .toc .toc-list ul li {
    font-size: 14px;
    padding: 10px 0 15px;
    border-bottom: solid 1px #cbcbcb;
    letter-spacing: -0.7px;
  }
  .contents .checkpoint .check-number {
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  .contents .checkpoint .section-title {
    border-bottom: none;
    padding-bottom: 5px;
    gap: 5px;
  }
  .contents .checkpoint hr {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .contents .checkpoint .check-title {
    font-size: 28px;
  }
  .contents .checkpoint .checkpoint-content {
    padding-top: 4px;
    font-size: 16px;
    line-height: 1.8;
  }
  .contents .checkpoint .checkpoint-content .highlight-box {
    margin-top: 20px;
    font-size: 15px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight {
    margin: 30px 0;
    gap: 10px;
    padding: 20px 15px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-img {
    padding-top: 0;
    width: 22%;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-img img {
    width: 100%;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text {
    width: calc(78% - 20px);
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title {
    gap: 6px;
    letter-spacing: -0.6px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title p {
    font-size: 18px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title .text-s {
    font-size: 14px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text .pro-title .pro {
    padding: 1px 8px;
    margin-top: -2px;
    font-size: 16px;
  }
  .contents .checkpoint .checkpoint-content .pro-insight .pro-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.5px;
  }
  .contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header {
    font-size: 18px;
  }
  .contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header .text-yellow {
    font-size: 22px;
  }
  .contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-header .text-s {
    font-size: 16px;
  }
  .contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-content {
    padding: 20px;
  }
  .contents .checkpoint .checkpoint-content .type-cards .type-card .type-card-content .merit-demerit {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contents .checkpoint .checkpoint-content .review-sources ul {
    font-weight: bold;
  }
  .contents .checkpoint .checkpoint-content .review-sources ul li a {
    display: inline-block;
    white-space: normal;
    word-break: break-all;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table {
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table th {
    padding: 6px !important;
    margin: 0;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table th:not(.jp-order) {
    height: 160px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table .sp-vertical-spans span {
    display: inline-block;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    min-height: 36px;
    min-width: 20px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table td {
    padding: 6px 5px;
    margin: 0;
    line-height: 1.3;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table td.company-name a, .contents .checkpoint .checkpoint-content .table-wrapper table td.company-name span {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table .display-vertical-spans span {
    display: block;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table .jp-order {
    font-size: 12px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper table .bg-brown,
  .contents .checkpoint .checkpoint-content .table-wrapper table .bg-blue {
    padding: 10px 5px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper .table-note {
    padding: 10px 5px;
    flex-direction: column;
    gap: 0;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper .table-note p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
  }
  .contents .checkpoint .checkpoint-content .table-wrapper .table-note .table-note-row {
    gap: 15px;
  }
  .contents .operator-message .section-title {
    padding-bottom: 0;
    border-bottom: none;
  }
  .contents .operator-message .section-title h2 {
    font-size: 18px;
  }
  .contents .operator-message .operator-message-content {
    padding-top: 14px;
  }
  .contents .operator-message .operator-message-content h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .contents .operator-message .operator-message-content p {
    margin-top: 16px;
    line-height: 1.75;
    font-size: 16px;
  }
}/*# sourceMappingURL=content.css.map */