@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

sup {
  font-size: 65%;
}

.l-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-inner--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
@media (max-width: 768px) {
  .header__inner {
    height: 72px;
    padding: 0 20px;
  }
}
.header__logo {
  width: 317px;
  position: relative;
  z-index: 110;
}
@media (max-width: 768px) {
  .header__logo {
    width: 266px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 21px;
  height: 100%;
}
.header__nav-list > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav-link {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow-x: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to left, #1eb4f0 0%, #b13ff4 50.74%, #ff1496 100%);
  transition: all 0.3s ease;
  transform: translateX(-100%);
}
.header__nav-link:hover::after {
  transform: translateY(0);
}
.header__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 21px 3px 19px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header__contact > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.header__contact-icon {
  display: inline-block;
  content: "";
  width: 18px;
  height: 13.5px;
  background-image: url("/assets/img/common/icon_mail.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.header__contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #1eb4f0 0%, #b13ff4 50.74%, #ff1496 100%);
  z-index: 1;
  transition: all 0.3s ease;
}
.header__contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FA2CB4;
  z-index: 0;
}
.header__contact:hover::before {
  opacity: 0;
}
.header__contact svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.header__hamburger {
  display: none;
  width: 32px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.header__hamburger span:not(.header__hamburger-label) {
  display: block;
  width: 32px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.header__hamburger span:not(.header__hamburger-label):nth-child(1) {
  top: 8px;
}
.header__hamburger span:not(.header__hamburger-label):nth-child(2) {
  top: 15px;
}
.header__hamburger span:not(.header__hamburger-label):nth-child(3) {
  top: 22px;
}
.header__hamburger-label {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  line-height: 1;
}
.header__hamburger.is-open span:not(.header__hamburger-label):nth-child(1) {
  top: 15px;
  transform: translateX(-50%) rotate(30deg);
}
.header__hamburger.is-open span:not(.header__hamburger-label):nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:not(.header__hamburger-label):nth-child(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-30deg);
}
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 105;
  flex-direction: column;
  padding: 100px 20px 60px;
}
.header__mobile-nav.is-open {
  display: flex;
}
.header__mobile-nav-list {
  text-align: left;
  padding-bottom: 45px;
}
.header__mobile-nav-item {
  margin-bottom: 26px;
}
.header__mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.header__mobile-nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 16px 32px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.header__mobile-nav-contact > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.header__mobile-nav-contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #1eb4f0 0%, #b13ff4 50.74%, #ff1496 100%);
  z-index: 1;
  transition: all 0.3s ease;
}
.header__mobile-nav-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FA2CB4;
  z-index: 0;
}
.header__mobile-nav-contact:hover::before {
  opacity: 0;
}

@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: block;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.section {
  padding: 70px 0 120px;
}
.section--gray {
  background: #f5f5f5;
}
.section--dark {
  background: linear-gradient(135deg, #4a0e3c, #1a1a3e);
  color: #fff;
}
.section--dark2 {
  background: linear-gradient(135deg, #2d1b4e, #1a2744);
  color: #fff;
}
.section__title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
  line-height: 1.4;
}
.section__title--left {
  text-align: left;
}
.section__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.news-section {
  background: #F8F9FA;
  padding: 47px 0 41px;
}
.news-section__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.news-section__left {
  flex-shrink: 0;
}
.news-section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1;
}
.news-section__more {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  gap: 10px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}
.news-section__more:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .news-section__more {
    gap: 6px;
  }
}
.news-section__more-arrow {
  color: #FF1496;
  font-weight: 700;
}
.news-section__list {
  flex: 1;
}
@media (max-width: 768px) {
  .news-section__list {
    width: 100%;
  }
}
.news-section__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  line-height: 1.375;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.news-section__item:hover {
  opacity: 0.6;
}
.news-section__item:first-child {
  padding-top: 0;
}
.news-section__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news-section__date {
  font-size: 14px;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-section__item-title {
  flex: 1;
  font-size: 16px;
}
.news-section__item-arrow {
  color: #FF1496;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-section__item-arrow {
    top: calc(50% + 13px);
  }
}
.news-section__item[href$=".pdf"] .news-section__item-arrow {
  font-size: 0;
  width: 16px;
  height: 20px;
  background: url("/assets/img/common/icon_pdf.png") no-repeat center/contain;
}

#about {
  background-image: url("/assets/img/top/bg_about.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 113px;
}

.about__intro p + p {
  margin-top: 17px;
}
.about__note {
  font-size: 12px;
  margin-top: 32px;
  line-height: 1.4;
  display: flex;
}
.about__note dt {
  flex: 0 0 auto;
}
.about__note02 {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
  list-style: none;
  padding-left: 0;
  counter-reset: note-num;
}
.about__note02 li {
  margin-bottom: 1px;
  counter-increment: note-num;
  padding-left: 3em;
  position: relative;
}
.about__note02 li::before {
  content: "＊" counter(note-num) "：";
  position: absolute;
  left: 0;
}
.about__greeting {
  margin-top: 58px;
  padding-top: 58px;
}
.about__greeting-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}
.about__greeting-block {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.about__greeting-block + .about__greeting-block {
  margin-top: 70px;
}
.about__greeting-photo {
  width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}
.about__greeting-img {
  width: 100%;
}
.about__greeting-role {
  font-size: 14px;
  line-height: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.about__greeting-name {
  font-size: 26px;
  line-height: 1.1076923077;
  text-align: left;
  color: #333;
  font-weight: 400;
}
.about__greeting-name small {
  font-size: 16px;
  font-weight: 400;
  margin-left: -3px;
}
.about__greeting-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  font-weight: 400;
}
.about__greeting-text p + p {
  margin-top: 18px;
}
.about__member {
  margin-top: 46px;
  padding-top: 46px;
}
.about__member-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin-bottom: 32px;
}
.about__member-category {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1;
}
.about__member-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.about__member-block + .about__member-block {
  margin-top: 57px;
}
.about__member-card {
  text-align: center;
  display: grid;
  grid-row: span 3;
  gap: 0;
  grid-template-rows: subgrid;
}
.about__member-card-img {
  width: 140px;
  border-radius: 0%;
  overflow: hidden;
  margin: 0 auto 20px;
}
.about__member-card-role {
  font-size: 14px;
  line-height: 1.4285714286;
  margin-bottom: 2px;
}
.about__member-card-name {
  font-size: 20px;
  font-weight: 500;
}
.about__member-card-name small {
  font-size: 14px;
  font-weight: 400;
  margin-left: -3px;
}

.currently__header {
  background-image: url("/assets/img/top/cover_currently.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.currently__header-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.currently__body {
  padding: 72px 0 48px;
  background-color: #F8F8FA;
}
.currently__heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.40625;
}
.currently__text {
  margin-bottom: 24px;
}
.currently__figure {
  text-align: center;
  margin: 40px 0;
}
.currently__figure-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.currently__figure.figure01 {
  margin-top: 25px;
  padding-bottom: 33px;
}
.currently__figure.figure01 .currently__figure-text {
  margin-bottom: 17px;
}
.currently__figure.figure01 .currently__figure-img {
  max-width: 800px;
  margin: 0 auto;
}
.currently__figure.figure02 .currently__figure-text {
  margin-bottom: 17px;
}
.currently__figure-caption {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}
.currently__block {
  margin: 0px 0 67px;
}
.currently__block .currently__heading {
  margin-bottom: 17px;
}
.currently__block .currently__text {
  margin-bottom: 17px;
}
.currently__block .currently__text:last-child {
  margin-bottom: 0;
}
.currently__two-col {
  display: grid;
  grid-template-columns: 40.2173913043% 1fr;
  gap: 50px;
  margin: 0px 0 68px;
}
.currently__two-col-image {
  margin: 0 0 0 auto;
}
.currently__two-col-text > p + p {
  margin-top: 20px;
}
.currently__disease-list {
  margin: 32px 0 32px;
}
.currently__disease-item {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
.currently__disease-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #7d41dc;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 10px;
}
.currently__disease-name {
  font-weight: 600;
  color: #7d41dc;
}
.currently__disease-desc {
  font-size: 16px;
  line-height: 1.4;
}

.case__header {
  background-image: url("/assets/img/top/cover_case.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 71px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.case__header-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.case__header-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-top: 11px;
}
.case__body {
  padding: 72px 0 94px;
  background-image: url("/assets/img/top/bg_case.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.case__heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}
.case__text {
  margin-bottom: 17px;
}
.case__figure {
  text-align: center;
  margin: 40px 0;
}
.case__figure-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.case__figure.figure03 {
  margin-top: 28px;
}
.case__figure.figure03 .case__figure-text {
  margin-bottom: 17px;
}
.case__figure.figure03 .case__figure-img {
  max-width: 464px;
  margin: 0 auto;
}
.case__figure.figure04 {
  margin-bottom: 73px;
}
.case__figure.figure04 .case__figure-text {
  margin-bottom: 17px;
}
.case__figure.figure04 .case__figure-img {
  max-width: 770px;
  margin: 0 auto;
}
.case__figure-text {
  font-size: 18px;
  margin-bottom: 24px;
}
.case__figure-caption {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  text-align: right;
}

.result__header {
  background-image: url("/assets/img/top/cover_result.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result__header-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.result__header-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-top: 14px;
}
.result__body {
  padding: 74px 0 72px;
  background-color: #F8F8FA;
  background-image: url("/assets/img/top/bg_result.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.result__heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.40625;
}
.result__block-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 1.4;
}
.result__text {
  margin-bottom: 24px;
}
.result__block {
  margin-bottom: 70px;
}
.result__block.secondary {
  margin-bottom: 74px;
}
.result__block.tertiary {
  margin-bottom: 50px;
}
.result__block .result__heading {
  margin-bottom: 21px;
}
.result__block .result__text {
  margin-bottom: 17px;
}
.result__figure {
  text-align: center;
  margin: 40px 0;
}
.result__figure-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.result__figure.figure05 {
  margin-top: 27px;
  margin-bottom: 38px;
}
.result__figure.figure05 .result__figure-text {
  padding-left: 2em;
  position: relative;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 21px;
}
.result__figure.figure05 .result__figure-text::before {
  content: "図5";
  position: absolute;
  left: 0;
  top: 0;
}
.result__figure.figure05 .result__figure-img {
  max-width: 460px;
  margin: 0 auto;
}
.result__figure.figure06 {
  margin-top: 27px;
  margin-bottom: 38px;
}
.result__figure.figure06 .result__figure-text {
  margin-bottom: 17px;
}
.result__figure.figure06 .result__figure-img {
  max-width: 800px;
  margin: 0 auto;
}
.result__figure.figure07 {
  margin-top: 27px;
  margin-bottom: 38px;
}
.result__figure.figure07 .result__figure-text {
  margin-bottom: 17px;
}
.result__figure.figure07 .result__figure-img {
  max-width: 460px;
  margin: 0 auto;
}
.result__figure-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.result__figure-img {
  max-width: 800px;
  margin: 0 auto;
}
.result__figure-caption {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  text-align: right;
}
.result__timeline {
  margin: 24px 0 27px;
}
.result__timeline-list {
  padding-left: 6px;
}
.result__timeline-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.result__timeline-item {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 16px;
  padding: 0px 0 6px 16px;
  border-left: 1px solid #C4D2D3;
}
.result__timeline-year {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}
.result__timeline-desc {
  font-size: 18px;
}
.result__note {
  margin-top: 38px;
  font-size: 12px;
  line-height: 1.6;
}
.result__note-title {
  margin-bottom: 8px;
  padding-left: 1.5em;
  position: relative;
}
.result__note-title::before {
  content: "＊";
  position: absolute;
  left: 0;
}
.result__note-link {
  text-decoration: underline;
  display: block;
  padding-left: 4.5em;
  text-align: left;
}
.result__note-link:hover {
  opacity: 0.6;
}
.result__note-link::before {
  content: "＊ 文献：";
  position: absolute;
  left: 0;
}
.result__note-list {
  list-style: none;
  padding-left: 0;
  counter-reset: note-num;
}
.result__note-list li {
  margin-bottom: 1px;
  counter-increment: note-num;
  padding-left: 1.6em;
  position: relative;
}
.result__note-list li::before {
  content: counter(note-num) "：";
  position: absolute;
  left: 0;
}

.partner {
  padding: 67px 0 100px;
  background: #fff;
}
.partner__title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 19px;
}
.partner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 64px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer {
  padding: 32px 0 18px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #D9E6E7;
}
.footer__logo {
  margin: 0 auto 27px;
  width: 317px;
}
.footer__copyright {
  font-size: 12px;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  gap: 4px;
  border-radius: 50%;
  background-color: #1EB4F0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 90;
  text-decoration: none;
  line-height: 1.2;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top__arrow {
  width: 19px;
  height: 11px;
  margin-bottom: 2px;
}
.page-top__arrow img {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: #888;
}
.breadcrumb .l-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.breadcrumb a {
  color: #333;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb__separator {
  margin: 0 8px;
  color: #ccc;
  flex-shrink: 0;
}
.breadcrumb .l-inner > span:last-child {
  /* ページタイトルが長いときは折り返して下段へ */
  min-width: 0;
  word-break: break-word;
}

.news-list {
  padding: 30px 0 100px;
}
.news-list__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 23px;
}
.news-list__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  line-height: 1.375;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.news-list__item:hover {
  opacity: 0.6;
}
.news-list__item:first-child {
  border-top: 1px solid #ddd;
}
.news-list__date {
  font-size: 14px;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-list__item-title {
  flex: 1;
  font-size: 16px;
}
.news-list__item-arrow {
  color: #FF1496;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-list__item-arrow {
    top: calc(50% + 13px);
  }
}
.news-list__item[href$=".pdf"] .news-list__item-arrow {
  font-size: 0;
  width: 16px;
  height: 20px;
  background: url("/assets/img/common/icon_pdf.png") no-repeat center/contain;
}

body#news-detail {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body#news-detail .header {
  flex-shrink: 0;
}
body#news-detail .breadcrumb {
  flex-shrink: 0;
}
body#news-detail .footer {
  flex-shrink: 0;
}
body#news-detail .news-detail {
  flex-grow: 1;
}

body#news {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body#news .header {
  flex-shrink: 0;
}
body#news .breadcrumb {
  flex-shrink: 0;
}
body#news .footer {
  flex-shrink: 0;
}
body#news .news-list {
  flex-grow: 1;
}

.news-detail {
  padding: 40px 0 100px;
}
.news-detail__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
.news-detail__date {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}
.news-detail__body {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 1.8;
}
.news-detail__back {
  text-align: center;
}
.news-detail__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
.news-detail__back a:hover {
  color: #e91e90;
}
.news-detail__back-arrow {
  color: #FF1496;
  font-weight: 700;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 50px 0;
  }
  .section__title {
    font-size: 32px;
    margin-bottom: 19px;
  }
  .news-section {
    padding: 40px 0 44px;
  }
  .news-section__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news-section__inner {
    flex-direction: column;
    gap: 23px;
  }
  .news-section__title {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .news-section__item {
    flex-wrap: wrap;
    gap: 5px 20px;
    padding-top: 19px;
  }
  .news-section__item-arrow {
    right: -2px;
  }
  .news-section__date {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .news-section__item-title {
    font-size: 16px;
    line-height: 1.375;
  }
  #about {
    background-image: url("/assets/img/top/bg_about_sp.png");
    padding: 43px 0 66px;
  }
  .about__intro p + p {
    margin-top: 11px;
  }
  .about__greeting {
    padding-top: 30px;
    margin-top: 30px;
  }
  .about__greeting-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .about__greeting-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 13px;
  }
  .about__greeting-block + .about__greeting-block {
    margin-top: 42px;
  }
  .about__greeting-photo {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .about__greeting-role {
    font-size: 14px;
    line-height: 1.4;
    gap: 6px;
    margin-bottom: 9px;
  }
  .about__greeting-name {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
  }
  .about__greeting-name small {
    font-size: 14px;
  }
  .about__greeting-text {
    font-size: 16px;
    line-height: 1.8;
  }
  .about__greeting-text p + p {
    margin-top: 11px;
  }
  .about__member {
    margin-top: 30px;
    padding-top: 30px;
  }
  .about__member-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .about__member-block + .about__member-block {
    margin-top: 49px;
  }
  .about__member-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    text-align: left;
  }
  .about__member-card .about__member-card-img {
    grid-row: 1/-1;
    width: 120px;
    margin-bottom: 0;
  }
  .about__member-card .about__member-card-role {
    align-self: end;
    line-height: 1.4;
    height: 100%;
  }
  .about__member-card .about__member-card-name {
    align-self: start;
    height: 100%;
  }
  .about__member-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .about__member-category {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .about__note {
    flex-direction: column;
    margin-top: 30px;
  }
  .currently__header {
    padding: 48px 0;
    background-image: url("/assets/img/top/cover_currently_sp.jpg");
  }
  .currently__header-title {
    font-size: 32px;
  }
  .currently__body {
    padding: 42px 0 58px;
  }
  .currently__heading {
    font-size: 26px;
    margin-bottom: 13px;
  }
  .currently__two-col {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 60px;
  }
  .currently__two-col-text > p + p {
    margin-top: 11px;
  }
  .currently__block {
    margin-bottom: 52px;
  }
  .currently__block:last-child {
    margin-bottom: 0;
  }
  .currently__block .currently__heading {
    margin-bottom: 13px;
  }
  .currently__block .currently__text {
    margin-bottom: 10px;
  }
  .currently__disease-list {
    margin: 24px 0 24px;
  }
  .currently__disease-item {
    margin-bottom: 4px;
  }
  .currently__disease-name {
    font-size: 18px;
  }
  .currently__disease-desc {
    font-size: 16px;
  }
  .currently__figure.figure01 {
    margin-bottom: 25px;
  }
  .currently__figure.figure02 {
    margin-bottom: 0px;
  }
  .case__header {
    padding: 35px 20px 37px;
    background-image: url("/assets/img/top/cover_case_sp.jpg");
  }
  .case__header-title {
    font-size: 32px;
    line-height: 1.1875;
  }
  .case__header-subtitle {
    font-size: 20px;
    line-height: 1.1;
    margin-top: 17px;
  }
  .case__body {
    padding: 43px 0 43px;
    background-image: url("/assets/img/top/bg_case_sp.png");
  }
  .case__heading {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .case__text {
    margin-bottom: 12px;
  }
  .case__figure.figure03 {
    margin-top: 27px;
    margin-bottom: 27px;
  }
  .case__figure.figure03 .case__figure-text {
    line-height: 1.4;
    text-align: left;
    padding-left: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .case__figure.figure03 .case__figure-text::before {
    content: "図3";
    position: absolute;
    left: 0;
    top: 0;
  }
  .case__figure.figure04 {
    margin-top: 37px;
    margin-bottom: 62px;
  }
  .case__figure.figure04 .case__figure-text {
    margin-bottom: 17px;
    line-height: 1.4;
    text-align: left;
    padding-left: 2em;
    position: relative;
  }
  .case__figure.figure04 .case__figure-text::before {
    content: "図4";
    position: absolute;
    left: 0;
    top: 0;
  }
  .result__header {
    padding: 48px 20px 48px;
    background-image: url("/assets/img/top/cover_result_sp.jpg");
  }
  .result__header-title {
    font-size: 32px;
    line-height: 1.1875;
  }
  .result__header-subtitle {
    font-size: 20px;
    line-height: 1.1;
  }
  .result__body {
    padding: 41px 0 20px;
    background-image: url("/assets/img/top/bg_result_sp.png");
  }
  .result__heading {
    font-size: 26px;
  }
  .result__text {
    margin-bottom: 12px;
  }
  .result__block {
    margin-bottom: 55px;
  }
  .result__block .result__heading {
    margin-bottom: 13px;
  }
  .result__block .result__text {
    margin-bottom: 10px;
  }
  .result__block.secondary {
    margin-bottom: 59px;
  }
  .result__block.tertiary {
    margin-bottom: 44px;
  }
  .result__block-subtitle {
    font-size: 22px;
    line-height: 1.4;
  }
  .result__timeline {
    margin: 24px 0 31px;
  }
  .result__timeline-item {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .result__timeline-year {
    font-size: 16px;
    margin-bottom: -4px;
  }
  .result__timeline-desc {
    font-size: 16px;
  }
  .result__note-title {
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .result__note-list {
    font-size: 12px;
    line-height: 1.4;
  }
  .result__note-list > li + li {
    margin-top: 4px;
  }
  .result__figure.figure05 {
    margin-bottom: 30px;
  }
  .result__figure.figure06 {
    margin-top: 32px;
  }
  .result__figure.figure06 .result__figure-text {
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
    padding-left: 2em;
    position: relative;
  }
  .result__figure.figure06 .result__figure-text::before {
    content: "図6";
    position: absolute;
    left: 0;
    top: 0;
  }
  .result__figure.figure07 {
    margin-top: 35px;
  }
  .result__figure.figure07 .result__figure-text {
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
    padding-left: 2em;
    position: relative;
  }
  .result__figure.figure07 .result__figure-text::before {
    content: "図7";
    position: absolute;
    left: 0;
    top: 0;
  }
  .partner {
    padding: 40px 0 80px;
  }
  .partner__title {
    font-size: 26px;
    margin-bottom: 13px;
  }
  .partner__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 290px;
    margin: 0 auto;
  }
  .footer {
    padding: 20px 0 20px;
  }
  .footer__logo {
    width: 266px;
    height: auto;
    margin: 0 auto 23px;
  }
  .footer__copyright {
    font-size: 12px;
    line-height: 1.2;
  }
  .news-list__title {
    font-size: 26px;
    text-align: center;
  }
  .news-list__item {
    flex-wrap: wrap;
    gap: 5px 20px;
    padding-top: 19px;
  }
  .news-list__item-arrow {
    right: -2px;
  }
  .news-list__date {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .news-list__item-title {
    font-size: 16px;
    line-height: 1.375;
  }
  .news-detail__title {
    font-size: 26px;
    text-align: center;
  }
  .page-top {
    bottom: 20px;
    right: 20px;
  }
}
#news {
  background-color: #F8F9FA;
  background-image: url("/assets/img/news/bg_news.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #news {
    background-image: url("/assets/img/news/bg_news_sp.png");
  }
}

#news-detail {
  background-color: #F8F9FA;
  background-image: url("/assets/img/news/bg_news_d.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #news-detail {
    background-image: url("/assets/img/news/bg_news_d_sp.png");
  }
}

body.top-pc-debug {
  position: relative;
}
body.top-pc-debug::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  height: 13319px;
  background-image: url("/src/top/all.jpg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}
body.top-sp-debug {
  position: relative;
}
body.top-sp-debug::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 17525px;
  background-image: url("/src/top/all_sp.jpg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/*# sourceMappingURL=style.css.map */
