.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 769px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

@media (min-width: 769px) {
  .col-md {
    flex: 1 0 0%;
  }
}

.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn:focus {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn:active:focus {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.card {
  --bs-card-border-width: 0;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0;
  --bs-card-height: ;
  --bs-card-bg: none;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

.align-top {
  vertical-align: top !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.position-relative {
  position: relative !important;
}

.w-100 {
  width: 100% !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.align-items-center {
  align-items: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */
@media (min-width: 769px) {

  .flex-md-row {
    flex-direction: row !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
}

.list-disc {
  font-size: 16px;
  line-height: 1.625;
}

@media (max-width: 768px) {
  .list-disc {
    font-size: 10px;
    line-height: 1.5;
  }
}

.list-disc li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .list-disc li {
    padding-left: 12px;
    margin-bottom: 10px;
  }
}

.list-disc li:before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #d7092f;
  border-radius: 50%;
  content: "";
}

@media (max-width: 768px) {
  .list-disc li:before {
    top: 5px;
    width: 6px;
    height: 6px;
  }
}

.highlight-yellow {
  display: inline-block;
  line-height: 1.2;
  background-color: #ffe98d;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.row>div,
.row>li {
  padding-right: 10px;
  padding-left: 10px;
}

.row-0 {
  margin-right: 0;
  margin-left: 0;
}

.row-0>div,
.row-0>li {
  padding-right: 0;
  padding-left: 0;
}

.row-5 {
  margin-right: -5px;
  margin-left: -5px;
}

.row-5>div,
.row-5>li {
  padding-right: 5px;
  padding-left: 5px;
}

.row-10 {
  margin-right: -10px;
  margin-left: -10px;
}

.row-10>div,
.row-10>li {
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .row-5-md {
    margin-right: -5px;
    margin-left: -5px;
  }

  .row-5-md>div,
  .row-5-md>li {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media (min-width: 1250px) {
  .row-lg-25 {
    margin-right: -25px;
    margin-left: -25px;
  }

  .row-lg-25>div,
  .row-lg-25>li {
    padding-right: 25px;
    padding-left: 25px;
  }

  .row-lg-36 {
    margin-right: -36px;
    margin-left: -36px;
  }

  .row-lg-36>div,
  .row-lg-36>li {
    padding-right: 36px;
    padding-left: 36px;
  }
}

.container-all {
  width: 100%;
}

@media (min-width: 769px) {
  .container-all {
    min-width: 1220px;
  }
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {

  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.container {
  max-width: none;
}

@media (min-width: 769px) {
  .container {
    width: 1200px;
  }
}

.btn-red {
  padding: 16px 15px 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.52;
  text-align: center;
  color: #fff;
  background-color: #d7092f;
  border-radius: 32px;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .btn-red {
    padding: 9px 10px;
    font-size: 10px;
  }
}

.btn-red:link,
.btn-red:focus,
.btn-red:hover,
.btn-red:visited {
  color: #fff;
}

.btn-red:focus,
.btn-red:hover {
  background-color: #ef0f4a;
  text-decoration: none;
}

.btn-red.external {
  position: relative;
  padding-right: 50px;
  padding-left: 50px;
}

@media (max-width: 768px) {
  .btn-red.external {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.btn-red.external:after {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 21px;
  height: 20px;
  margin-top: auto;
  margin-bottom: auto;
  background: url("/svcsol/survey/images/icon_external.svg") no-repeat 0 0/contain;
  content: "";
}

@media (max-width: 768px) {
  .btn-red.external:after {
    right: 13px;
    width: 12px;
    height: 11px;
  }
}

.btn-red.btn-lg {
  padding-right: 70px;
  padding-left: 70px;
  font-size: 26px;
  border-radius: 20px;
  /* border-radius: 100vmax; */
}

@media (max-width: 768px) {
  .btn-red.btn-lg {
    padding-right: 40px;
    padding-left: 40px;
    font-size: 13px;
  }
}

.btn-red.btn-lg small {
  font-size: 21px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .btn-red.btn-lg small {
    font-size: 9px;
  }
}

.btn-red.btn-lg.external:after {
  opacity: 0.7;
  right: 27px;
  width: 28px;
  height: 30px;
}

@media (max-width: 768px) {
  .btn-red.btn-lg.external:after {
    right: 13px;
    width: 14px;
    height: 13px;
  }
}

.btn-red .icon {
  position: absolute;
  top: 0;
  right: calc(100% - 67px);
  bottom: 0;
  opacity: 0.7;
  margin-top: auto;
  margin-bottom: auto;
}

@media (max-width: 768px) {
  .btn-red .icon {
    right: calc(100% - 35px);
  }
}

@media (max-width: 768px) {
  .btn-red .icon-download-document {
    width: 28px;
    height: 31px;
  }
}

.mw-600 {
  max-width: 600px;
}

.py-lg {
  padding-top: 102px;
  padding-bottom: 102px;
}

@media (max-width: 768px) {
  .py-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-fv {
  position: relative;
  padding-top: 55px;
  padding-bottom: 12px;
  margin: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .section-fv {
    padding-top: 33px;
    padding-bottom: 8px;
  }
}

.section-fv:before,
.section-fv:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #83a5be;
  content: "";
}

.section-fv:before {
  z-index: -2;
  background: linear-gradient(#63bbfa 0, #2377c1 100%);
}

.section-fv:after {
  right: calc(50vw - 68px);
  left: auto;
  z-index: -1;
  width: 110%;
  height: 200%;
  background-color: #83a5be;
  mix-blend-mode: multiply;
  transform: skewX(-24deg);
}

@media (max-width: 768px) {
  .section-fv:after {
    right: calc(50vw + 26px);
  }
}

.section-fv.pb-lg {
  padding-bottom: 95px;
}

@media (max-width: 768px) {
  .section-fv.pb-lg {
    padding-bottom: 60px;
  }
}

@media (min-width: 769px) {
  .section-fv.pb-lg .title-section {
    margin-top: -6px;
  }
}

.section-fv .title-section {
  margin-bottom: 26px;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .section-fv .title-section {
    margin-bottom: 16px;
    font-size: 24px;
    border-left-width: 4px;
  }
}

.section-fv .title-section.border-left {
  padding-left: 22px;
  border-left: 8px solid #d7092f;
}

@media (max-width: 768px) {
  .section-fv .title-section.border-left {
    padding-left: 12px;
    border-left-width: 4px;
  }
}

.section-fv .lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 768px) {
  .section-fv .lead {
    font-size: 11px;
    line-height: 1.63;
  }
}

.section-fv .card-inner {
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .section-fv .card-inner {
    flex-direction: column;
  }
}

.section-fv .card-inner .logo-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 333px;
  padding: 25px 68px 21px 48px;
  margin-bottom: 23px;
  color: #fff;
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container {
    width: 340px;
    max-width: 100%;
    padding: 20px 53px 16px 27px;
    margin: 14px auto 7px;
  }
}

.section-fv .card-inner .logo-container:hover {
  text-decoration: none;
}

.section-fv .card-inner .logo-container:hover:before {
  background: linear-gradient(to left, #2f75b7 5%, rgba(0, 117, 184, 0) 90%);
}

.section-fv .card-inner .logo-container:before {
  position: absolute;
  top: 0;
  right: 23px;
  bottom: 0;
  left: -10px;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  content: "";
  transform: skewX(336deg);
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container:before {
    right: 18px;
    left: -18px;
  }
}

.section-fv .card-inner .logo-container.external:after {
  position: absolute;
  top: 13px;
  right: 23px;
  width: 14px;
  height: 13px;
  background: url("/svcsol/survey/images/icon_external.svg") no-repeat 0 0/contain;
  content: "";
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container.external:after {
    top: 10px;
    right: 18px;
    width: 11px;
    height: 10px;
  }
}

.section-fv .card-inner .logo-container .text {
  position: relative;
  margin-top: 3px;
  margin-right: 15px;
  font-size: 18px;
  line-height: 1.556;
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container .text {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.538;
  }
}

.section-fv .card-inner .logo-container .logo {
  position: relative;
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container .logo {
    width: 119px;
    height: 46px;
  }
}

@media (max-width: 768px) {
  .section-fv .card-inner .logo-container .icon-arrow {
    width: 13px;
    height: 11px;
  }
}

.section-fv .img-main-visual {
  width: 315px;
}

@media (max-width: 768px) {
  .section-fv .img-main-visual {
    width: 206px;
  }
}

.section-fv .img-main-visual img {
  position: relative;
  z-index: 1;
}

.section-fv .img-main-visual .img-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: multiply;
}

.section-report .detail {
  position: relative;
  padding: 73px 60px 80px 47px;
  margin-top: -64px;
  background-color: #f5f1de;
}

@media (max-width: 768px) {
  .section-report .detail {
    padding: 60px 15px 30px;
    margin-top: -20px;
  }
}

.section-report .detail__title {
  position: absolute;
  top: -19px;
  left: 40px;
  display: inline-block;
  min-width: 147px;
  padding: 17px 8px 16px 16px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-align: center;
  color: #fff;
  background-color: #ff7900;
}

@media (max-width: 768px) {
  .section-report .detail__title {
    left: 12px;
    padding: 12px 10px;
    font-size: 18px;
  }
}

.section-report .detail__title:before,
.section-report .detail__title:after {
  position: absolute;
  content: "";
}

.section-report .detail__title:before {
  top: 0;
  left: -14px;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 19px 14px;
  border-color: transparent transparent #a85000;
}

@media (max-width: 768px) {
  .section-report .detail__title:before {
    left: -10px;
    border-left-width: 10px;
  }
}

.section-report .detail__title:after {
  bottom: 0;
  left: -5px;
  width: 5px;
  height: calc(100% - 18px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.341' height='38' viewBox='0 0 4.341 38'%3E%3Cpath id='Path_1357' data-name='Path 1357' d='M21 0V38L16.659 0Z' transform='translate(-16.659)' fill='%23bfb7a7'/%3E%3C/svg%3E") no-repeat 100% 100%/cover;
}

.section-report .detail__date {
  position: absolute;
  top: 27px;
  right: 25px;
  display: inline-block;
  padding-left: 30px;
  font-size: 18px;
  color: #727272;
}

@media (max-width: 768px) {
  .section-report .detail__date {
    top: 15px;
    right: 15px;
    padding-left: 15px;
    font-size: 13px;
  }
}

.section-report .detail__date:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin-top: auto;
  margin-bottom: auto;
  background: url("/svcsol/survey/images/icon_clock.svg") no-repeat 50% 50%/contain;
  content: "";
}

@media (max-width: 768px) {
  .section-report .detail__date:before {
    width: 12px;
    height: 12px;
  }
}

/* 202410 add */
.section-report .detail .table-container div.overview-image {
  flex-basis: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.section-report .detail .table-container div.overview-image img {
  max-width: 100%;
}

.section-report .detail .table-container table {
  max-width: 100%;
  margin-left: 42px;
}

@media (max-width: 768px) {
  .section-report .detail .table-container table {
    margin-top: 20px;
    margin-left: 0;
  }
}

.section-report .detail .table-container table tr:first-of-type th,
.section-report .detail .table-container table tr:first-of-type td {
  border-top: 1px solid #4cb4f7;
}

.section-report .detail .table-container table tr th,
.section-report .detail .table-container table tr td {
  padding-top: 13px;
  padding-bottom: 12px;
  font-size: 18px;
  line-height: 1.667;
  border-bottom: 1px solid #4cb4f7;
}

@media (max-width: 768px) {

  .section-report .detail .table-container table tr th,
  .section-report .detail .table-container table tr td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
  }
}

.section-report .detail .table-container table tr th {
  width: 174px;
  padding-right: 10px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .section-report .detail .table-container table tr th {
    width: 100px;
  }
}

.section-report .detail .table-container table .border-left {
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

@media (max-width: 768px) {
  .section-report .detail .table-container table .border-left {
    padding-left: 10px;
  }
}

.section-report .detail .table-container table .border-left:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 21px;
  background-color: #ff912e;
  content: "";
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .section-report .detail .table-container table .border-left:before {
    width: 3px;
  }
}

.section-report .btn-container {
  padding: 40px 0 47px;
  margin-top: 80px;
  border: solid #d7092f;
  border-width: 1px 0;
}

@media (max-width: 768px) {
  .section-report .btn-container {
    padding-top: 20px;
    padding-bottom: 25px;
    margin-top: 40px;
  }
}

.section-report .btn-container__title {
  margin-bottom: 46px;
  font-size: 24px;
  font-weight: bold;
  color: #d7092f;
}

@media (max-width: 768px) {
  .section-report .btn-container__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.section-report .list-container {
  position: relative;
  padding: 38px 50px 42px;
  margin-top: 94px;
  background-color: #f3f5f6;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section-report .list-container {
    padding: 20px 15px 25px;
    margin-top: 50px;
  }
}

.section-report .list-container:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 227px;
  height: 6px;
  background-color: #d7092f;
  content: "";
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .section-report .list-container:before {
    height: 4px;
  }
}

.section-report .list-container__title {
  margin-bottom: 34px;
  font-size: 26px;
  font-weight: bold;
  color: #155a95;
}

@media (max-width: 768px) {
  .section-report .list-container__title {
    margin-bottom: 18px;
    font-size: 20px;
  }
}

.section-report .list-container__list {
  max-width: 518px;
  font-size: 16px;
  line-height: 1.625;
}

@media (max-width: 768px) {
  .section-report .list-container__list {
    font-size: 11px;
  }
}

.section-report .list-container__list li {
  display: flex;
  align-items: flex-start;
  padding-top: 13px;
  padding-bottom: 13px;
  border: dashed #707070;
  border-width: 1px 0;
}

.section-report .list-container__list li+li {
  border-top-width: 0;
}

.section-report .list-container__list li .li-header {
  display: flex;
  align-items: center;
  margin-top: 2px;
  margin-right: 10px;
  font-size: 30px;
  line-height: 1.01;
  color: #d7092f;
}

@media (max-width: 768px) {
  .section-report .list-container__list li .li-header {
    margin-top: 0;
    font-size: 22px;
  }
}

/* add 202502 */

.list-container__survey ul {
  list-style: none outside;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.list-container__survey ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 1rem;
  color: #333;
  /* background-color: #fff; */
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px dashed #070707;
}

.list-container__survey ul li:nth-child(-n + 2) {
  border-top: 1px dashed #070707;
}

.list-container__survey ul li::before {
  content: "";
  display: inline-block;
  background-color: #d7092f;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0.5rem 1rem 0.5rem 0;
}

/* 主な調査項目のリスト微調整 */
.list-container__survey.p-survey ul li {
  border: 0;
  padding: 0.5rem 0.5rem;
}

@media (max-width: 768px) {

  .list-container__survey ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .list-container__survey ul li:nth-child(2) {
    border-top: 0;
  }

}

.section-report .list-container__list li .li-header .label {
  padding: 4px 4px 5px;
  margin-right: 3px;
  font-size: 12px;
  white-space: nowrap;
  color: #fff;
  background-color: #155a95;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-report .list-container__list li .li-header .label {
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .section-report .list-container__list-after li {
    border-top-width: 0;
  }
}

.section-result {
  padding-top: 90px;
}

@media (max-width: 768px) {
  .section-result {
    padding-top: 40px;
  }
}

.section-result__body {
  padding-top: 35px;
  padding-bottom: 80px;
  background: #f3f5f6;
  border-top: 1px solid #d7092f;
}

@media (max-width: 768px) {
  .section-result__body {
    padding-top: 15px;
    padding-bottom: 35px;
    font-size: 22px;
  }
}

.section-result .title-section {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #595757;
}

@media (max-width: 768px) {
  .section-result .title-section {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.4;
  }
}

.section-result .title-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 23px;
  font-size: 71px;
  line-height: 1.01;
  color: #d7092f;
}

@media (max-width: 768px) {
  .section-result .title-section__header {
    margin-bottom: 8px;
    font-size: 46px;
  }
}

.section-result .title-section__header .label {
  padding: 11px 9px;
  margin-right: 7px;
  margin-bottom: 7px;
  font-size: 28px;
  white-space: nowrap;
  color: #fff;
  background: #155a95;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .section-result .title-section__header .label {
    padding: 6px 7px;
    margin-right: 5px;
    margin-bottom: 3px;
    font-size: 22px;
  }
}

.section-result .title-secondary {
  margin-bottom: 32px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: #155a95;
}

@media (max-width: 768px) {
  .section-result .title-secondary {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.section-result .img-container {
  padding: 28px 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .section-result .img-container {
    padding: 12px 5px;
  }
}

@media (min-width: 769px) {
  .section-result .img-container-md {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section-result .img-container .title {
  max-width: 465px;
  width: 100%;
  padding-top: 13px;
  padding-bottom: 18px;
  margin-right: auto;
  margin-bottom: 15px;
  margin-left: auto;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .section-result .img-container .title {
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

.section-result .list-container {
  padding: 23px 30px 25px;
  /* margin-top: 47px; */
  border: solid #707070;
  border-width: 1px 0;
}

@media (max-width: 768px) {
  .section-result .list-container {
    padding: 15px 10px;
    margin-top: 30px;
  }
}

/* summary-report_caption */
.section-result .summary-report_caption {
  text-align: right;
  font-size: 1.0rem;
  padding: 0.5rem 0.75rem 0 0;
}

.section-result .summary-report_caption::before {
  content: '※';
}

.summary-report_link::after {
  display: inline-block;
  width: 12px;
  height: 11px;
  margin-left: 5px;
  content: "";
  background: url(/svcsol/survey/images/com_icn05.png) no-repeat left top;
  background-size: 12px 11px;
}

.section-cta {
  position: relative;
  padding-top: 38px;
  padding-bottom: 32px;
  font-size: 16px;
  line-height: 1.875;
  color: #fff;
}

@media (max-width: 768px) {

  .section-cta {
    padding-top: 21px;
    padding-bottom: 27px;
    font-size: 8px;
  }
}

.section-cta:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #003664;
  mix-blend-mode: multiply;
  content: "";
}

.section-cta .title-section {
  margin-bottom: 27px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.63;
  color: #6cc1ff;
}

@media (max-width: 768px) {
  .section-cta .title-section {
    margin-bottom: 12px;
    font-size: 11px;
  }
}

.section-cta .title-secondary {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-cta .title-secondary {
    margin-bottom: 12px;
    font-size: 10px;
  }
}

.section-cta .btn-container {
  max-width: 416px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .section-cta .btn-container {
    max-width: 221px;
    margin-bottom: 20px;
  }
}

.section-cta .border-left {
  padding-bottom: 2px;
  padding-left: 15px;
  border-left: 3px solid #707070;
}

@media (max-width: 768px) {
  .section-cta .border-left {
    padding-left: 11px;
  }
}

.section-cta .link {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 768px) {
  .section-cta .link {
    font-size: 9px;
  }
}

.section-cta .link .icon-email {
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .section-cta .link .icon-email {
    width: 32px;
    height: 18px;
    margin-top: 3px;
    margin-right: 4px;
  }
}

/* 2023/03/15 add */
@media (min-width: 769px) {
  .img-container table {
    width: 100%;
    border-color: #dddddd;
    font-size: 14.5px;
    line-height: 1.625;
  }
}

@media only screen and (max-width: 768px) {

  .scrol,
  .scroll {
    overflow: scroll;
  }

  .scroll-x {
    overflow-x: auto;
  }

  .img-container table {
    font-size: 11px;
  }
}

.img-container table th,
.img-container table td {
  padding: 10px;
  border-style: solid;
  border-color: #dddddd;
  border-width: 0 0 1px 1px;
}

.img-container table th {
  text-align: center;
  font-weight: bold;
}

.img-container table td:nth-child(odd) {
  background-color: #f1f3f3;
}

/* add 2024/04 start */

.img-container table.p-table-isys2024 tr th.info_lv1 {
  color: #fff;
  background-color: #00aaee;
}

.img-container table.p-table-isys2024 td:nth-child(n+2) {
  text-align: left;
}

.img-container table.p-table-isys2024 .info_strong {
  color: #155a95;
  font-weight: bold;
}

.img-container table.p-table-isys2024 tr.aR td,
.img-container table.p-table-isys2024 tr td.aR {
  text-align: right;
}

.img-container table.p-table-isys2024 td:nth-child(odd),
.img-container table.p-table-isys2024 td:nth-child(even) {
  background-color: #fff;
}

.img-container table.p-table-isys2024 td:nth-child(1) {
  background-color: #f1f3f3;
  white-space: nowrap;
}

/* .img-container table.p-table-isys2024 td:nth-child(2) {
  background-color: #c9efff;
} */
.img-container table.p-table-isys2024 td.p-nocolor {
  background-color: #fff;
}

/* テーブルセル内右上配置※注記、箇条書きリスト調整用 */
.container-all .p-pos-r {
  position: relative;
}

.container-all .p-pos-r .p-pos-abs {
  position: absolute;
}

.container-all .p-pos-r .p-pos-abs.note-text01 {
  top: 4px;
  right: 8px;
  font-size: 11px;
}

.child-list.v-child-list-typeb {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.child-list.v-child-list-typeb li {
  text-align: left;
  background: transparent url(/common/images/com_icn08.png) no-repeat 0 0.75em;
}

/* add 2024/04 end */

.img-container table td:first-child {
  font-weight: bold;
}

.img-container table tr:last-child th,
.img-container table tr:last-child td .img-container table.p-table-isys2024 tr:last-child th,
.img-container table.p-table-isys2024 tr:last-child td {
  border: none;
  background-color: #ffffff;
}

.img-container table tr:first-child th:first-child {
  border-top: 0;
  border-left: 0;
}

.info_lv1 {
  background-color: #ff7900;
  color: #ffffff;
}

.info_lv2 {
  background-color: #155a95;
  color: #ffffff;
}

.info_red {
  font-weight: bold;
  color: #d7092f;
}

.info_blue {
  font-weight: bold;
  color: #155a95;
}

.info_score {
  font-size: 13px;
}
