@charset "UTF-8";
:root {
  --color-green: #009c77;
  --color-green-bright: #20bcb0;
  --color-green-light: #eaf4ef;
  --color-lime: #95c51b;
  --color-grass: #70c978;
  --color-ink: #222222;
  --color-text: #3c3c3c;
  --color-muted: #666666;
  --color-line: #e5e5e5;
  --color-paper: #ffffff;
  --color-soft: #f7fbf9;
  --layout-design: 1366px;
  --layout-content: 1232px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--color-paper);
  background-image: linear-gradient(to right, rgba(232, 238, 235, 0.5) 1px, transparent 1px), linear-gradient(to bottom, rgba(232, 238, 235, 0.5) 1px, transparent 1px);
  background-position: center top;
  background-repeat: repeat;
  background-size: 37.5px 37.5px;
}

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

a > p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[id] {
  scroll-margin-top: 120px;
}

.l-container {
  width: min(var(--layout-content), 100% - 80px);
  margin-inline: auto;
}

.l-top {
  position: relative;
  overflow-x: hidden;
  background-image: url("../images/img_com-bgArch.svg");
  background-position: center 573px;
  background-repeat: no-repeat;
  background-size: max(1551px, 113.55vw) auto;
}

.l-top::before {
  content: none;
}

.l-top::after {
  content: none;
}

.l-top > * {
  position: relative;
  z-index: 2;
}

.l-lower {
  position: relative;
  margin-top: -105px;
  overflow-x: hidden;
}

.l-lower > * {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  .l-lower {
    margin-top: -84px;
  }
}
@media screen and (max-width: 600px) {
  .l-container {
    width: calc(100% - 40px);
  }
}
.c-sectionLabel {
  margin: 0;
}

.c-sectionTitle {
  display: grid;
  gap: 0px;
}

.c-sectionTitle h2 {
  position: relative;
  margin: 0;
  padding-left: 38px;
}

.c-sectionTitle h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 4px;
  background: #20bcb0;
}

.c-moreLink {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 56px;
  align-items: center;
  gap: 11px;
  width: fit-content;
  transform-origin: right center;
  transition: transform 0.25s ease;
}

.c-moreLink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: calc(100% - 64px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.c-moreLink::after {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: url("../images/icon_service-plus-link-circle.svg") center/contain no-repeat;
}

.c-moreLink:hover,
.c-moreLink:focus-visible {
  transform: scale(1.05);
}

.c-moreLink:hover::before,
.c-moreLink:focus-visible::before {
  transform: scaleX(1);
}

.c-moreLink--white::after {
  background: url("../images/icon_com-arrow-circle.png") center/contain no-repeat;
  box-shadow: none;
}

.c-ribbonLabel {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  margin: 0;
  margin-left: -8px;
  padding-inline: 18px 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.c-ribbonLabel--lime {
  min-width: 179px;
  background-image: url("../images/img_aboutIntro-ribbon-lime.svg");
}

.c-ribbonLabel--green {
  min-width: 179px;
  background-image: url("../images/img_aboutIntro-ribbon-green.svg");
}

.c-ribbonLabel--mint {
  min-width: 154px;
  background-image: url("../images/img_aboutIntro-ribbon-mint.svg");
}

.c-ribbonLabel p {
  margin: 0;
}

.c-sectionNav {
  display: grid;
  gap: var(--section-nav-gap, 36px);
  padding-inline: var(--section-nav-padding-inline, 35px);
}

.c-sectionNav__head {
  display: grid;
  gap: 20px;
}

.c-sectionNav__heading {
  margin-bottom: 0;
}

.c-sectionNav__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.c-sectionNav__body {
  display: block;
  margin-top: 27px;
}

.c-sectionNav__list {
  display: grid;
  grid-template-columns: var(--section-nav-grid-template, repeat(3, minmax(0, 1fr)));
  gap: var(--section-nav-list-gap, 20px 42px);
  align-items: start;
}

.c-sectionNav__item {
  width: 100%;
  min-width: 0;
}

.c-sectionNav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--section-nav-link-min-height, 60px);
  padding: var(--section-nav-link-padding, 21px 23px 22px 28px);
  border: 1px solid transparent;
  border-radius: 2px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 16px 32px rgba(0, 156, 119, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.c-sectionNav__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.c-sectionNav__link:hover,
.c-sectionNav__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 156, 119, 0.18);
}

.c-sideVisualLead {
  margin-left: 24px;
  display: grid;
  justify-content: center;
  grid-template-columns: var(--side-visual-columns, 372px 530px);
  gap: var(--side-visual-gap, 42px);
  align-items: start;
}

.c-plusPage--patient,
.c-plusPage--caremanager {
  width: min(1160px, 100%) !important;
  margin-inline: auto;
}

.c-sideVisualLead__media {
  aspect-ratio: var(--side-visual-media-aspect, 372/542);
  overflow: hidden;
}

.c-plusPage--patient .c-sideVisualLead__media {
  aspect-ratio: var(--side-visual-media-aspect, 372/474);
}

.c-sideVisualLead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-medicalPage__panel .c-sideVisualLead__body {
  padding-top: 18px;
  padding-left: 3px;
}

.c-sideVisualLead__body {
  display: grid;
  gap: var(--side-visual-body-gap, 35px);
  padding-top: var(--side-visual-body-padding-top, 24px);
}

.c-sideVisualLead__heading {
  display: grid;
  gap: var(--side-visual-heading-gap, 18px);
}

.c-sideVisualLead__headlineRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--side-visual-headline-gap, 9px);
}

.c-sideVisualLead__headlineAccent {
  margin: 0;
}

.c-sideVisualLead__lead {
  display: grid;
  gap: var(--side-visual-lead-gap, 30px);
}

.c-outlinePanel {
  background: #ffffff;
  border: 1px solid #dceeee;
  border-radius: 10px;
}

.is-fade-ready .js-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-fade-ready .js-fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* モーション軽減設定では即表示（アニメーションしない） */
@media (prefers-reduced-motion: reduce) {
  .is-fade-ready .js-fadeIn {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .c-moreLink {
    grid-template-columns: auto 44px;
  }
  .c-moreLink::after {
    width: 44px;
    height: 44px;
  }
  .c-ribbonLabel {
    min-height: 46px;
    margin-inline-start: -6px;
    padding-inline-start: 24px;
    padding-inline-end: 18px;
  }
  .c-sideVisualLead {
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: var(--side-visual-gap-sp, 28px);
  }
  .c-sideVisualLead__media {
    max-width: var(--side-visual-media-max-width-sp, 372px);
    margin-inline: auto;
  }
  .c-sideVisualLead__body {
    gap: var(--side-visual-body-gap-sp, 24px);
    padding-top: 0;
  }
  .c-sideVisualLead__heading {
    gap: var(--side-visual-heading-gap-sp, 16px);
  }
  .c-sideVisualLead__lead {
    gap: var(--side-visual-lead-gap-sp, 24px);
  }
}
@media screen and (max-width: 600px) {
  .c-sectionNav__link {
    min-height: var(--section-nav-link-min-height-sp, 54px);
    padding: var(--section-nav-link-padding-sp, 18px 20px);
  }
  .c-ribbonLabel {
    min-height: 40px;
    margin-inline-start: -4px;
    padding-inline-start: 20px;
    padding-inline-end: 16px;
  }
  .c-sideVisualLead__headlineAccent {
    margin: 0;
  }
}
.p-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.p-breadcrumb__separator {
  flex: 0 0 auto;
  width: 6px;
  height: 8px;
  background: url("../images/icon_com-breadcrumb-arrow.svg") center/contain no-repeat;
}

.c-lowerFv {
  position: relative;
  box-sizing: border-box;
  height: 100vh;
  padding-top: 150px;
  overflow: hidden;
}

.c-lowerFv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(26, 44, 40, 0.34), rgba(30, 40, 38, 0.56));
  pointer-events: none;
}

.c-lowerFv__media,
.c-lowerFv__media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.c-lowerFv__media img {
  object-fit: cover;
}

.c-lowerFv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 34px;
  height: 100%;
  padding-left: 10px;
  padding-bottom: 92px;
  pointer-events: none;
}

.c-lowerFv__inner a {
  pointer-events: auto;
}

.c-lowerFv__heading,
.c-lowerFv__heading *,
.p-breadcrumb,
.p-breadcrumb * {
  pointer-events: auto;
}

.p-breadcrumb,
.c-lowerFv__heading {
  z-index: 1;
}

.c-lowerFv__heading {
  display: grid;
  position: absolute;
  top: 23%;
  transform: translateY(-50%);
  left: 0;
}

.c-lowerFv .p-breadcrumb {
  position: absolute;
  top: 0;
  right: 0;
}

.c-lowerMarquee {
  pointer-events: none;
  display: inline-flex;
  gap: 0.35em;
  margin: 0;
  user-select: none;
  white-space: nowrap;
  animation: lowerMarquee 22s linear infinite;
  will-change: transform;
}

.c-lowerMarquee::after {
  content: "For your health. For the community.";
}

.c-lowerIntroStage {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -353px;
  padding-top: 168px;
  background-image: url("../images/img_com-bgArch-lower.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: max(1366px, 100vw) auto;
}

@keyframes lowerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.175em));
  }
}
.p-lowerSection {
  padding-top: 120px;
}

.c-lowerHeading {
  display: grid;
  gap: 10px;
  margin-bottom: 42px;
}

.c-lowerHeading--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

.c-lowerHeading--center {
  justify-items: center;
  text-align: center;
}

.c-lowerEyebrow {
  display: inline-flex;
  align-items: center;
}

.c-cardPanel {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.c-problemGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.c-problemCard {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 26px 28px;
}

.c-problemCard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #44bc9a, #79d78b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.c-problemCard__icon::before,
.c-featureCard__index::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.c-featureGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.c-featureCard {
  overflow: hidden;
}

.c-featureCard__media {
  aspect-ratio: 354/300;
  overflow: hidden;
  border-radius: 10px;
}

.c-featureCard > .c-featureGrid {
  display: block;
  width: 100%;
  aspect-ratio: 354/300;
  overflow: hidden;
  border-radius: 10px;
}

.c-featureCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-featureCard > .c-featureGrid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-featureCard__body {
  display: grid;
  gap: 18px;
  padding: 26px 26px 28px;
}

.c-featureCard__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #62c36f;
}

.c-flowList {
  display: grid;
  gap: 20px;
}

.c-flowStep {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 34px;
}

.c-flowStep:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 89px;
  top: calc(100% - 6px);
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, #a4dcae, rgba(98, 197, 169, 0));
}

.c-flowStep__marker {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 112px;
  padding-top: 22px;
  padding-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b0e0b9, #44bc9a);
}

.c-flowStep__body {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.c-faq {
  display: grid;
  gap: 18px;
}

.c-faqSection {
  background: #f2f9f2;
}

.c-faqSection__inner {
  display: grid;
  gap: 62px;
  padding-top: 89px;
  padding-bottom: 150px;
}

.c-faqSection__heading {
  margin-bottom: 0;
  margin-left: 40px;
}

@media screen and (max-width: 600px) {
  .c-faqSection__heading {
    margin-left: 0px;
  }
}
.c-faqSection__content {
  width: min(100%, 900px);
  margin-inline: auto;
}

.c-faq__item {
  overflow: hidden;
}

.c-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 30px;
  cursor: pointer;
}

.c-faq__question::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.c-faq__item.is-open .c-faq__question::after {
  transform: rotate(-135deg);
}

.c-faq__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.c-faq__item.is-open .c-faq__answer {
  max-height: 220px;
  padding-top: 0;
  padding-bottom: 28px;
}

.c-faq--static {
  gap: 25px;
}

.c-faq--static .c-faq__item {
  border-radius: 8px;
  background: #ffffff;
}

.c-faq--static .c-faq__question {
  position: relative;
  grid-template-columns: auto 1fr;
  gap: 21px;
  padding: 23px 18px 19px 22px;
  cursor: default;
}

.c-faq--static .c-faq__question::after {
  display: none;
}

.c-faq--static .c-faq__question::before {
  content: "";
  position: absolute;
  right: 45px;
  bottom: 0;
  left: 18px;
  height: 1px;
  background: #e6efea;
}

.c-faq--static .c-faq__answer {
  max-height: none;
  gap: 22px;
  padding: 16px 45px 34px 22px;
  overflow: visible;
  transition: none;
}

.c-faq__questionText,
.c-faq__answerText {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

.c-symbol {
  display: inline-flex;
  justify-content: center;
  width: 28px;
  position: relative;
  top: 4px;
}

.c-infoTable {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.c-infoTable__row {
  display: grid;
  align-items: center;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 30px;
  border-bottom: 1px solid #dce6df;
}

.c-infoTable__row:last-child {
  border-bottom: 0;
}

.p-lowerCtaLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.p-lowerCtaLinks .c-moreLink::before {
  transform: scaleX(1);
}

@media screen and (max-width: 1100px) {
  .c-lowerFv {
    padding-top: 108px;
  }
  .c-lowerMarquee {
    animation-duration: 18s;
  }
  .c-featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 900px) {
  .p-lowerSection {
    padding-top: 92px;
  }
  .c-faqSection__inner {
    gap: 56px;
    padding-top: 132px;
    padding-bottom: 108px;
  }
  .c-problemGrid,
  .c-featureGrid {
    grid-template-columns: 1fr;
  }
  .c-flowStep,
  .c-infoTable__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .c-flowStep__marker {
    width: 100%;
    max-width: 160px;
  }
  .c-flowStep:not(:last-child)::after {
    left: 80px;
  }
}
@media screen and (max-width: 600px) {
  .c-lowerFv {
    padding-top: 108px;
  }
  .c-lowerFv__heading {
    top: 30%;
    transform: translateY(-50%);
  }
  .c-lowerHeading--inline {
    gap: 10px 14px;
  }
  .c-lowerFv__inner {
    gap: 24px;
    padding-top: 0;
    padding-bottom: 12.3333333333vw;
  }
  .c-lowerMarquee {
    animation-duration: 15s;
  }
  .c-faqSection__inner {
    gap: 40px;
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .c-faqSection__content {
    width: 100%;
  }
  .c-problemCard,
  .c-flowStep,
  .c-faq__question,
  .c-infoTable__row {
    padding-right: 22px;
    padding-left: 22px;
  }
  .c-flowStep {
    gap: 16px;
  }
  .c-flowStep:not(:last-child)::after {
    left: 56px;
    top: calc(100% - 4px);
  }
  .c-flowStep__marker {
    width: 100%;
    max-width: 112px;
  }
  .c-faq--static .c-faq__question,
  .c-faq--static .c-faq__answer {
    padding-right: 16px;
    padding-left: 16px;
    gap: 16px;
  }
  .c-faq--static .c-faq__question::before {
    right: 16px;
    left: 16px;
  }
}
