
/* breakpoint
----------------------------*/
.dispSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .dispSp {
    display: block;
  }
}
.dispTab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .dispTab {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .dispPc {
    display: none;
  }
}

/* 診断レポート
----------------------------*/
#diagnosis-results {
  background-color: #ff6f47;
}
.shindan-report {
  /* font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif; */
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.6;
  margin: 40px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .shindan-report {
    width: 90%;
    margin: 20px auto;
  }
}

.shindan-report h1 {
  font-size: 35px;
  font-weight: normal;
  text-align: center;
  /* border-bottom: 2px solid #ff6f47; */
  /* display: inline-block; */
  margin-bottom: 20px;
  color: #ff6f47;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 767px) {
  .shindan-report h1 {
    text-align: center;
    font-size: 6vw;
    display: flex;
    justify-content: center;
    line-height: 1.4;
  }
}
.shindan-report h2 {
  font-size: 28px;
  font-weight: normal;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .shindan-report h2 {
    font-size: 4.5vw;
  }
}
.shindan-report h3 {
  margin-top: 40px; 
  border-bottom: 1px solid #333;
  /* font-size: 24px;
  margin: 30px auto 5px; */
}
@media screen and (max-width: 767px) {
  .shindan-report h3 {
    font-size: 6vw;
  }
}
.shindan-report p {
  /* font-family: "Noto Sans", sans-serif; */
  line-height: 1.7;
  margin-top: 30px;
}
.shindan-report .shindan-report-lead h2 {
  font-size: 25px;
  border-bottom: none;
}
.shindan-report .shindan-report-title {
  text-align: center;
}
.shindan-report .shindan-report-date {
  text-align: right;
  font-size: 18px;
}
.shindan-report .prescription-step h3 {
  font-size: 28px;
  font-weight: normal;
  margin: 35px auto 10px;
}
@media screen and (max-width: 767px) {
  .shindan-report .prescription-step h4 {
    font-size: 4vw;
    margin-bottom: 8px;
  }
}
.findings-box  {
    border: 1px solid #dedede;
    border-top: none;
    box-sizing: border-box;
}
.shindan-report .findings-box p {
  margin: 0;
  line-height: 2;
}
.shindan-report .prescription-step p {
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .shindan-report .report-description {
    margin-top: 10px 0 20px;
    font-size: 3.5vw;
  }
}
.sub-word {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .sub-word {
    margin: 4px auto 8px;
    text-align: center;
    font-size: 6vw;
    line-height: inherit;
  }
}
@media screen and (max-width: 767px) {
  .shindan-report .sub-description {
    font-size: 3.5vw;
    line-height: inherit;
  }
}

@media screen and (max-width: 767px) {
  .shindan-report .findings-box {
    padding: 0em 1em;
    margin: 0 auto 5px;
    font-size: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .shindan-report .prescription-step {
    padding: 1em;
    margin: 15px auto 5px;
    font-size: 5vw;
  }
}

.shindan-report .shindan-report-title {
  margin-top: 30px;
}
.shindan-report section {
  margin-top: 80px;
}
.shindan-report .shindan-report-sec01 .summary-box .text-small {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .shindan-report .shindan-report-sec01 .summary-box .text-small {
    font-size: 3.5vw;
  }
}
.shindan-report .shindan-report-sec01 .summary-box .text-strong {
  font-size: 44px;
  line-height: normal;
  font-weight: bold;
  font-family: "Kosugi Maru", sans-serif;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .shindan-report .shindan-report-sec01 .summary-box .text-strong {
    margin: 0 auto;
    text-align: center;
    font-size: 9vw;
  }
}
.shindan-report .accordion-container .accordion-item {
  margin-top: 15px;
  overflow: hidden;
}
.shindan-report .accordion-container .accordion-item input {
  display: none;
}
@media screen and (max-width: 767px) {
  .shindan-report .accordion-container .accordion-item {
    margin: 15px 0;
  }
}
.shindan-report .accordion-container .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  cursor: pointer;
  background-color: #eeeeee;
  transition: background-color 0.3s ease;
}
.shindan-report .accordion-container .accordion-header:hover {
  background-color: #f0f0f0;
}
.shindan-report .accordion-container .icon-plus {
  position: relative;
  width: 1em;
  height: 1em;
}
.shindan-report .accordion-container .icon-plus::before, .shindan-report .accordion-container .icon-plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #333;
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.shindan-report .accordion-container .icon-plus::after {
  transform: translateY(-50%) rotate(90deg);
}
.shindan-report .accordion-container input:checked + .accordion-header .icon-plus::after {
  transform: translateY(-50%) rotate(0deg);
}
.shindan-report .accordion-container .findings-box {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease;
  padding: 0 1em;
}
.shindan-report .accordion-container input:checked ~ .findings-box {
  max-height: 2000px;
  height: 100%;
  /* padding: 0px 1em; */
  padding: 0px 1em 2em;
}
.shindan-report .prescription-step h3 {
  padding-left: 40px;
  position: relative;
}
.prescription-step {
  padding: 1rem;
  margin: 30px auto;
  border: 1px solid #72a7f8;
  border-radius: 7px;
  background-color: #f6f7ff;
}
.shindan-report .prescription-step h3::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("report-icon-check.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.shindan-report .support-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.shindan-report .support-table th, .shindan-report .support-table td {
  border: 1px solid #B3B3B3;
  padding: 12px;
  /* font-size: 16px; */
  vertical-align: top;
  /* font-family: "Noto Sans", sans-serif; */
}
@media screen and (max-width: 767px) {
  .shindan-report .support-table th, .shindan-report .support-table td {
    /* font-size: 16px; */
  }
}
.shindan-report .support-table th {
  color: #fff;
  text-align: center;
  background-color: #ccc;
  font-weight: bold;
}
.shindan-report .support-table td {
  text-align: left;
}
.shindan-report hr {
  margin: 30px auto;
  color: #ccc;
}

/* タブレット 1600px */
@media only screen and (max-width: 1600px) {
  .results_wrap {
    padding-bottom: 12.5vw; /* 200px * 0.0625 */
  }
  .results_wrap .case-study_wrap {
    /* width: 68.75vw; */
    width: 56.25vw; /* 900px * 0.0625 */
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1024px) {
  .results_wrap .case-study_wrap {
    width: 100%;
  }
}

.results-box h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
}

.results-box h4 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 4px;
}

.results-title {
  font-size: 42px;
  margin-top: 50px;
  border-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1600px) {
  .results-title {
    font-size: 2.625vw; /* 42px * 0.0625 */
    margin-top: 3.125vw;
  }
  .results-sub-title {
    font-size: 2vw; /* 32px * 0.0625 */
    margin-top: 0.625vw; /* 10px * 0.0625 */
  }
  .results-box h3 {
    font-size: 24px;
  }
  .results-box h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .results-sub-title {
    font-size: 4vw; /* 32px * 0.0625 */
    margin-top: 0.625vw; /* 10px * 0.0625 */
  }
  .results-box h3 {
    margin-top: 4vw;
    font-size: 5vw;
  }
  .results-box h4 {
    margin-top: 3.5vw;
    font-size: 4vw;
  }
}

/* @media only screen and (max-width: 1600px) {
  .results-content p {
    font-size: 1.125vw;
    margin-top: 1.875vw;
  }
  .results-content ol {
    font-size: 1.375vw;
  }
} */
@media only screen and (max-width: 1600px) and (max-width: 1024px) {
  .results-content ol {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1600px) {
  .results-content ol p {
    font-size: 1.125vw; /* 18px * 0.0625 */
    margin-left: -1.375vw; /* -22px * 0.0625 */
  }
  .results-content ul h4 {
    font-size: 1.125vw; /* 18px * 0.0625 */
    margin-top: 1.25vw; /* 20px * 0.0625 */
  }
  .results-content ul p {
    font-size: 1.125vw; /* 18px * 0.0625 */
  }
  .results-content h3.wis_service {
    font-size: 1.375vw; /* 22px * 0.0625 */
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1024px) {
  .results-content h3.wis_service {
    font-size: 1.5vw;
  }
}


@media screen and (max-width: 767px) {
  .disclaimer {
    width: 100% !important;
    font-size: 2.2vw !important;
  }
}

@media screen and (max-width: 767px) {
  #user-number-display .disclaimer {
    /* font-size: 2.4vw !important; */
  }
}

.action-sec h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
}
.action-sec h4 { font-size: 22px; }
.action-sec .disclaimer { width: 80%; margin: 0 auto; margin-top: 100px;}
.action-sec .disclaimer h4 { font-size: 16px; }
.action-buttons .render-meta { margin-top: 100px; }
.results-content ul li { font-size: 16px; }

@media only screen and (max-width: 767px) {
  .action-sec h3 {
    margin-top: 4vw;
    font-size: 5vw;
  }
  .action-sec h4 { font-size: 20px; }
  .action-sec .disclaimer { margin-top: 20px; }
  .action-buttons .render-meta { margin-top: 40px; }
  .results-content ul li { font-size: 14px; }
}

