@charset "UTF-8";
.interview-cooperation {
  display: flex;
  padding: 0px 50px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.interview-cooperation .interview-cooperation-logo {
  display: flex;
  gap: 8px;
}
.interview-cooperation a {
  color: #000 !important;
  text-decoration: underline;
}

.fw .f-inner.story-section-wrapper {
  display: flex !important;
  padding: 48px 0px 0px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.c-mv__text {
  padding-top: 20px;
  padding-bottom: 20px;
}

.story-interview-shared-decision.fw .m-article:nth-child(odd),
.story-interview-patient-initiative.fw .m-article:nth-child(odd) {
  background-color: rgba(244, 245, 245, 0.55);
}

.story-interview-shared-decision.fw .m-article:nth-child(even),
.story-interview-patient-initiative.fw .m-article:nth-child(even) {
  background-color: transparent;
}

.c-mv__image {
  height: auto;
  align-self: stretch;
}
.c-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像のアスペクト比を維持 */
}

.treatment-choice-chart {
  margin: 40px 0;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}
.treatment-choice-chart .chart-title {
  text-align: center;
  margin-bottom: 30px;
}
.treatment-choice-chart .chart-title h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
}
.treatment-choice-chart .chart-title p {
  font-size: 16px;
  color: #666;
  margin: 0;
}
.treatment-choice-chart .pentagon-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.treatment-choice-chart .pentagon-chart .pentagon-container {
  position: relative;
  width: 400px;
  height: 400px;
}
.treatment-choice-chart .pentagon-chart .pentagon-container .pentagon-svg {
  width: 100%;
  height: 100%;
}
.treatment-choice-chart .pentagon-chart .pentagon-container .pentagon-svg .chart-label {
  font-size: 12px;
  font-weight: bold;
  fill: #333;
}
.treatment-choice-chart .pentagon-chart .pentagon-container .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
.treatment-choice-chart .chart-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.treatment-choice-chart .chart-details .detail-section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.treatment-choice-chart .chart-details .detail-section.orange {
  background: linear-gradient(90deg, #FFF 0%, #FFF4E0 100%);
}
.treatment-choice-chart .chart-details .detail-section.cyan {
  background: linear-gradient(90deg, #FFF 0%, #E3F3F9 100%);
}
.treatment-choice-chart .chart-details .detail-section.purple {
  background: linear-gradient(90deg, #FFF 0%, #EBE6EE 100%);
}
.treatment-choice-chart .chart-details .detail-section.green {
  background: linear-gradient(90deg, #FFF 0%, #E6F3EE 100%);
}
.treatment-choice-chart .chart-details .detail-section.red {
  background: linear-gradient(90deg, #FFF 0%, #FCEBE2 100%);
}
.treatment-choice-chart .chart-details .detail-section .detail-content {
  display: flex;
  padding: 16px 8px;
  gap: 8px;
  justify-content: space-around;
  align-items: center;
}
.treatment-choice-chart .chart-details .detail-section .detail-content img {
  width: 200px;
}
.treatment-choice-chart .chart-details .detail-section .detail-content .detail-content-heading {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: bold;
}
.treatment-choice-chart .chart-details .detail-section .detail-content p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.2;
}
.treatment-choice-chart .chart-details .detail-section .detail-content p sup {
  font-size: 10px;
}
.treatment-choice-chart .chart-details .detail-section .detail-content small {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 8px;
  line-height: 1;
}
.treatment-choice-chart .detail-section-header {
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  padding: 8px 0;
}
.treatment-choice-chart .detail-section-header p {
  font-size: 14px;
  line-height: 1;
}
.treatment-choice-chart .chart-references {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.treatment-choice-chart .chart-references .references-text {
  font-size: 10px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 15px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: reference-counter;
}
.treatment-choice-chart .chart-references .references-text li {
  counter-increment: reference-counter;
  margin-bottom: 4px;
  padding-left: 16px;
  text-indent: -16px;
}
.treatment-choice-chart .chart-references .references-text li:before {
  content: counter(reference-counter) ") ";
  font-weight: normal;
}
.treatment-choice-chart .chart-references .note-text {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .interview-cooperation {
    flex-direction: column;
    padding: 0px 20px;
    align-items: flex-start;
  }
  .fw .f-inner.story-section-wrapper {
    padding: 40px 16px 0;
  }
  .fw .m-article_l .f-inner {
    padding-right: 16px;
  }
  .c-mv__column {
    margin-top: 16px;
  }
  .treatment-choice-chart {
    padding: 15px;
  }
  .treatment-choice-chart .pentagon-chart {
    flex-direction: column;
  }
  .treatment-choice-chart .pentagon-chart .pentagon-container {
    width: 300px;
    height: 300px;
  }
  .treatment-choice-chart .pentagon-chart .pentagon-container .pentagon-svg .chart-label {
    font-size: 10px;
  }
  .treatment-choice-chart .pentagon-chart .pentagon-container .center-text {
    font-size: 12px;
  }
  .treatment-choice-chart .chart-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .treatment-choice-chart .chart-details .detail-section {
    align-items: center;
  }
  .treatment-choice-chart .chart-details .detail-section .detail-content {
    flex-direction: column;
    padding: 10px;
  }
  .treatment-choice-chart .chart-details .detail-section .detail-content .detail-content-heading {
    text-align: center;
  }
  .treatment-choice-chart .chart-details .detail-section .detail-content img {
    width: 150px;
  }
  .treatment-choice-chart .chart-details .detail-section .detail-content p {
    font-size: 12px;
  }
}
.story-interview-shared-decision.fw .m-article_frame:after,
.story-interview-patient-initiative.fw .m-article_frame:after {
  border: none !important;
}

.padding-0 {
  padding: 0 !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.bg-orange {
  background-color: #F8B100;
}

.bg-cyan {
  background-color: #11B8D7;
}

.bg-purple {
  background: #432165;
}

.bg-green {
  background: #65BFA3;
}

.bg-red {
  background: #E66543;
}

.orenge {
  color: #F8B100 !important;
}

.cyan {
  color: #11B8D7 !important;
}

.purple {
  color: #432165 !important;
}

.green {
  color: #65BFA3 !important;
}

.red {
  color: #E66543 !important;
}

.font-size-18 {
  font-size: 18px !important;
}/*# sourceMappingURL=story.css.map */