@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src:
    local("NotoSansJP-Regular.otf"),
    url("/common/fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2"),
    url("/common/fonts/NotoSansJP/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src:
    local(""),
    url("/common/fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2"),
    url("/common/fonts/NotoSansJP/NotoSansJP-Bold.woff") format("woff");
}

/* ------------------------------------------------------------ */

:root {
  --color-brand_primary: #41a2a2;
  --color-brand_primary_hover: #4cbdbd;
  --color-brand_primary-light: #f2f8f8;
  --color-brand_secondary: #678;
  --color-brand_secondary_hover: #788da1;
  --color-brand_accent: #ee9922;
  --color-brand_accent_hover: #ffa424;
  --color-brand_01: #eef3f3;

  --color-primary_pfuBlue: #163182;
  --color-primary_pfuBlue-hover: #254bbe;
  --color-primary_darkGray-01: #333;
  --color-primary_darkGray-02: #4c4c4c;
  --color-primary_white: #fff;
  --color-secondary_skyBlue: #0079c8;
  --color-secondary_skyBlue-hover: #008ee9;
  --color-secondary_gray-01: #ccc;
  --color-secondary_gray-02: #e6e6e6;
  --color-secondary_gray-03: #ededed;
  --color-secondary_gray-04: #f4f4f4;
  --color-secondary_lightBlue-01: #d0d5e6;
  --color-secondary_lightBlue-02: #e7eaf2;
  --color-secondary_lightBlue-03: #f3f4f9;

  font-size: 10px;
  line-height: 1.5;
}

.main {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "メイリオ", "Droid Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
  color: var(--color-primary_darkGray-01);
}

h2 {
  font-size: 2.4rem;

  @media screen and (min-width: 561px) {
    font-size: 3.4rem;
  }
}

h3 {
  font-size: 1.6rem;

  @media screen and (min-width: 561px) {
    font-size: 2rem;
  }
}

p,
ul {
  font-size: 1.6rem;
}

img {
  width: 100%;
}

/* ------------------------------------------------------------ */

.mainVisual {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 800;
  background-image: url(/caora/healthcare2/pfu-assets/img/main-visual_bg_sp.webp);
  background-size: cover;
  background-position: center;

  @media screen and (min-width: 561px) {
    background-image: url(/caora/healthcare2/pfu-assets/img/main-visual_bg.webp);
    aspect-ratio: 2160 / 825;
  }
  @media screen and (min-width: 1440px) {
    max-height: 550px;
  }

  &::before {
    position: absolute;
    top: 58%;
    width: 100%;
    height: 34%;
    background: #fff;
    opacity: 0.85;
    translate: 0 -50%;
    content: "";

    @media screen and (min-width: 561px) {
      top: 56%;
      height: 48%;
      max-height: 275px;
    }
  }
}

.mainVisual_catchcopy {
  position: absolute;
  top: 17%;
  left: 50%;
  width: 85%;
  translate: -50% 0;

  @media screen and (min-width: 561px) {
    top: 22%;
    left: 50%;
    width: 37%;
    translate: -74% -50%;
  }
  @media screen and (min-width: 1440px) {
    max-width: 533px;
  }
}

.mainVisual_content {
  position: absolute;
  top: 60%;
  left: 54%;
  translate: -50% -50%;
  width: 97%;
  aspect-ratio: 624 / 494;

  @media screen and (min-width: 561px) {
    top: 55%;
    left: 50%;
    width: 57%;
    aspect-ratio: 817 / 482;
  }
  @media screen and (min-width: 1440px) {
    max-width: 821px;
  }
}

/* ------------------------------------------------------------ */

.eyebrow {
  width: fit-content;
  margin-inline: auto;
  padding: 8px 24px;
  border-radius: 8px;
  background-color: var(--color-brand_secondary);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;

  @media screen and (min-width: 561px) {
    font-size: 2rem;
  }
}

.h2,
.h3 {
  &.-center {
    text-align: center;
  }
}

.h2 {
  .eyebrow + & {
    margin-top: 8px;
  }

  & + * {
    margin-top: 24px;

    @media screen and (min-width: 561px) {
      margin-top: 40px;
    }
  }
}

.h3 {
  color: var(--color-brand_primary);
  font-weight: bold;

  &.-black {
    color: var(--color-primary_darkGray-01);
  }

  & + * {
    margin-top: 16px;
  }
}

.txt {
  &.-centerPc {
    @media screen and (min-width: 769px) {
      text-align: center;
    }
  }
  &.-lineHeight170 {
    line-height: 1.7;
  }
}

.caption {
  font-size: 1.4rem;
}

.txtLink {
  font-size: inherit;
  text-decoration: underline;

  &:hover {
    color: var(--color-primary_pfuBlue);
  }
}

/* ------------------------------------------------------------ */

.list {
  &.-jpAsterisk {
  }
}

.list_item {
  font-size: inherit;

  .list.-jpAsterisk > & {
    padding-left: 1em;
    text-indent: -1em;

    &::before {
      content: "※";
    }
  }
}

/* ------------------------------------------------------------ */

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 6.22%;

  @media screen and (min-width: 561px) {
    padding-block: 40px;
  }

  &:first-of-type {
    padding-top: 64px;

    @media screen and (min-width: 561px) {
      padding-top: 80px;
    }
  }
  &:last-of-type {
    padding-bottom: 64px;

    @media screen and (min-width: 561px) {
      padding-bottom: 80px;
    }
  }

  &.-eraseSidePaddingUnder768 {
    padding-inline: 0;

    @media screen and (min-width: 769px) {
      padding-inline: 6.22%;
    }
  }
}

.section_inner {
  width: 100%;
  max-width: 1200px;
}

/* ------------------------------------------------------------ */

.imgWrapper {
  width: 100%;
}

.img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* ------------------------------------------------------------ */

.movieLink {
  display: block;
  position: relative;
  overflow: hidden;
  outline-offset: 2px;

  &::before {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(70 / 280 * 100%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--color-brand_primary);
    translate: -50% -50%;
    content: "";

    @media screen and (min-width: 561px) {
      width: 118px;
    }
  }
  &::after {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(22 / 280 * 100%);
    aspect-ratio: 1 / calc(2 / sqrt(3));
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    translate: -40% -50%;
    content: "";

    @media screen and (min-width: 561px) {
      width: 28px;
    }
  }

  &:hover {
    &::before {
      background-color: var(--color-brand_primary_hover);
    }
  }
}

.movieLink_img {
  transition: transform 0.3s;

  .movieLink:hover & {
    transform: scale(1.05);
  }
}

/* ------------------------------------------------------------ */

.modaal-video-wrap {
  margin: auto;

  @media screen and (min-width: 561px) {
    margin-inline: 50px;
  }
}

.modaal-overlay {
  z-index: 9998;
}

/* ------------------------------------------------------------ */

.box {
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--color-brand_primary-light);

  @media screen and (min-width: 561px) {
    padding: 40px;
  }

  &.-bgWhite {
    border: 1px solid var(--color-brand_primary);
    background-color: #fff;
  }
  &.-bgGray {
    background-color: var(--color-secondary_gray-04);
  }
}

/* ------------------------------------------------------------ */

.card {
  display: grid;
  grid-template-rows: auto auto auto;
  align-items: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.04);

  @media screen and (min-width: 769px) {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 24px;
  }
}

.card_img {
  width: calc(134 / 184 * 100%);
  max-width: 184px;
  margin-inline: auto;

  @media screen and (min-width: 769px) {
    grid-row: 1 / -1;
    width: 100%;
  }
}

.card_ttl {
  margin-top: 24px;

  @media screen and (min-width: 769px) {
    margin-top: 0;
  }
}

.card_txt {
  margin-top: 8px;
}

/* ------------------------------------------------------------ */

.tileCardList {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 40px;

  @media screen and (min-width: 561px) {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media screen and (min-width: 769px) {
    gap: 40px;
  }
}

.tileCardList_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;

  &.-col2 {
    grid-column: 1 / -1;
  }

  &.-noImg {
    grid-row: span 2;
  }
}

.tileCard_img {
}

.tileCard_headingArea {
  display: flex;
  align-items: center;
  gap: 8px;

  .tileCard_img + & {
    margin-top: 16px;
  }
}

.tileCard_headingNum {
  display: grid;
  align-content: center;
  flex-shrink: 0;
  width: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--color-brand_primary-light);
  font-weight: bold;
  font-size: 1rem;
  color: var(--color-brand_primary);
  text-align: center;

  @media screen and (min-width: 561px) {
    width: 66px;
    font-size: 1.4rem;
  }

  span {
    font-size: 2rem;
    line-height: 1;

    @media screen and (min-width: 561px) {
      font-size: 2.4rem;
    }
  }
}

.tileCard_heading {
}

.tileCard_txt {
  margin-top: 8px;
}

/* ------------------------------------------------------------ */

.table {
  &.-small {
  }

  .section.-eraseSidePaddingUnder768 &.-scrollable {
    overflow-x: hidden;
  }
}

.table_main {
  width: 100%;
  color: var(--color-primary_darkGray-01);
  font-size: 1.6rem;
  line-height: 1.5em;

  .section.-eraseSidePaddingUnder768 .table.-scrollable & {
    width: calc(100% - 6.22%);
    margin-left: 6.22%;
    padding-right: 6.22%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    @media screen and (min-width: 769px) {
      width: 100%;
      margin-left: 0;
      padding-right: 0;
      overflow-x: visible;
    }
  }
}

.table_inner {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--color-secondary_gray-01);

  .table.-scrollable & {
    width: calc(768px - 768px * 0.0622 * 2);

    @media screen and (min-width: 769px) {
      width: 100%;
    }
  }
}

.table_col {
  .specs_table &:first-of-type {
    width: 162px;

    @media screen and (min-width: 769px) {
      width: 272px;
    }
  }
}

.table_headerRow {
  border-top: 1px solid var(--color-secondary_gray-01);
  border-bottom: 1px solid var(--color-secondary_gray-01);
  background-color: var(--color-brand_primary-light);
}

.table_header {
  padding: 29px 30px;
  font-weight: bold;
  text-align: center;

  .table.-small & {
    padding: 10px;
  }
}

.table_bodyRow {
  border-bottom: 1px solid var(--color-secondary_gray-01);
}

.table_subHeader {
  padding: 29px 30px;
  vertical-align: middle;
  text-align: left;
  background-color: var(--color-brand_primary-light);

  .table.-small & {
    padding: 10px;
  }
}

.table_data {
  padding: 29px 30px;
  text-align: left;

  .table.-small & {
    padding: 10px;
  }
}

/* ------------------------------------------------------------ */

.btnGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 300px));
  gap: 16px;
  justify-content: center;
}

/* ------------------------------------------------------------ */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid var(--color-brand_primary);
  background-color: var(--color-brand_primary);
  padding: 16px 20px;
  color: #fff;

  @media screen and (min-width: 769px) {
    max-width: 300px;
  }

  &:hover {
    background-color: var(--color-brand_primary_hover);
  }

  &:focus-visible {
    outline: solid 2px var(--color-primary_darkGray-01);
    outline-offset: 2px;
  }

  &.-arrow {
    position: relative;
    padding-left: 54px;

    &::before {
      position: absolute;
      top: 50%;
      left: 20px;
      width: 12px;
      aspect-ratio: 1 / 1;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      translate: 0 -50%;
      rotate: 45deg;
      content: "";
    }
  }

  &.-arrowPc {
    padding-left: 20px;

    @media screen and (min-width: 561px) {
      padding-left: 54px;
    }

    &::before {
      content: none;

      @media screen and (min-width: 561px) {
        content: "";
      }
    }
  }

  &.-bgSecondary {
    border-color: var(--color-brand_secondary);
    background-color: var(--color-brand_secondary);
    color: #fff;

    &:hover {
      background-color: var(--color-brand_secondary_hover);
    }

    &.-arrow {
      &::before {
        border-color: #fff;
      }
    }
  }
  &.-bgAccent {
    border-color: var(--color-brand_accent);
    background-color: var(--color-brand_accent);
    color: var(--color-primary_darkGray-01);

    &:hover {
      background-color: var(--color-brand_accent_hover);
    }

    &.-arrow {
      &::before {
        border-color: var(--color-primary_darkGray-01);
      }
    }
  }
  &.-bgWhite {
    border-color: var(--color-brand_primary);
    background-color: #fff;
    color: var(--color-brand_primary);

    &:hover {
      background-color: var(--color-brand_01);
    }

    &.-arrow {
      &::before {
        border-color: var(--color-brand_primary);
      }
    }
  }
}

.btn_txt {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;

  @media screen and (min-width: 561px) {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------ */

.floatingBnr {
  position: fixed;
  bottom: 0;
  z-index: 20;
  width: 100%;

  @media screen and (min-width: 561px) {
    right: 0;
    bottom: 104px;
    width: calc(300px + 24px * 2);
    padding: 24px;
    background-color: var(--color-secondary_gray-04);
    transition: transform 0.3s;
  }

  &.-hide {
    @media screen and (min-width: 561px) {
      transform: translateX(264px);
    }
  }
  
  &.-onFooter {
    position: absolute;
    
    @media screen and (min-width: 561px) {
      bottom: 104px;
    }
  }
}

.floatingBnr_inner {
  display: flex;

  @media screen and (min-width: 561px) {
    flex-direction: column;
  }
}

.floatingBnr_close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -52px;
  right: 8px;
  width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--color-brand_secondary);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  content: "";

  @media screen and (min-width: 561px) {
    top: -16px;
    right: 21px;
    width: 32px;
  }

  &:hover {
    background-color: var(--color-brand_secondary_hover);
  }

  &:focus-visible {
    outline: 3px solid var(--color-primary_darkGray-01);
    outline-offset: 2px;
  }
}

/* ------------------------------------------------------------ */

.anchorLinkNav {
  background-color: #fff;
  border-bottom: 1px solid var(--color-secondary_gray-01);
  font-weight: bold;

  @media screen and (min-width: 561px) {
    height: 54px;
  }
}

.dropdownNav_select {
  padding: 0 75px 0 24px;
  background-color: #fff;
  color: var(--color-primary_darkGray-01);
  font-size: 1.6rem;

  &:focus-visible {
    outline: solid 2px var(--color-primary_darkGray-01);
  }
}

.dropdownNav_option {
  background-color: var(--color-secondary_gray-04);
  color: var(--color-primary_darkGray-01);
}

.dropdownNav_arrow {
  border-left: none;
}

.dropdownNav_icoImg {
  width: 20px;
  
  > path {
    stroke: var(--color-brand_primary);
  }
}

.scrollableNav_arrow {
  @media (hover: hover) {
    &:hover {
      .scrollableNav_icoImg path {
        stroke: var(--color-brand_primary);
      }
    }
  }
  @media (hover: none) {
    &:active {
      .scrollableNav_icoImg path {
        stroke: var(--color-brand_primary);
      }
    }
  }

  &.-disable {
    .scrollableNav_icoImg path {
      stroke: var(--color-secondary_gray-01);
    }

    &:focus-visible {
      outline: solid 2px var(--color-primary_darkGray-01);
    }
  }
}

.anchorLink {
  color: var(--color-primary_darkGray-01);

  &:focus-visible {
    outline-color: var(--color-primary_darkGray-01);
  }

  @media (hover: hover) {
    &:hover {
      color: var(--color-primary_darkGray-01);
    }
  }
  @media (hover: none) {
    &:active {
      color: var(--color-primary_darkGray-01);
    }
  }
}

.scrollableNav_anchorLink {
  position: relative;
  padding-inline: 12px 32px;

  &::after {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    aspect-ratio: 1 / 1;
    border-left: 2px solid var(--color-brand_primary);
    border-bottom: 2px solid var(--color-brand_primary);
    translate: 0 -50%;
    rotate: -45deg;
    content: "";
  }
}

/* ----------------------------------------------------------- */

.pageTopBtn {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9000;
  width: 44px;
  height: 44px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s,
    visibility 0s linear 0.2s;

  &.-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s;
  }

  @media screen and (min-width: 561px) {
    display: block;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  &.-onFooter {
    position: absolute;
  }

  &:hover {
    @media screen and (min-width: 561px) {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    }
  }

  &:focus-visible {
    outline: 2px solid var(--color-primary_darkGray-01);
    outline-offset: 2px;
  }
}

.pageTopBtn_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;

  @media screen and (min-width: 561px) {
    opacity: 0.8;
  }

  &::before {
    position: absolute;
    top: 56%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: solid 1px var(--color-secondary_skyBlue);
    border-left: solid 1px var(--color-secondary_skyBlue);
    transform: translate(-50%, -50%) rotate(45deg);
    content: "";

    @media screen and (min-width: 561px) {
      width: 16px;
      height: 16px;
      border-width: 2px;
      border-color: #999;
    }
  }

  @media (hover: hover) {
    &:hover {
      @media screen and (min-width: 561px) {
        opacity: 1;
      }

      &::before {
        @media screen and (min-width: 561px) {
          border-color: var(--color-secondary_skyBlue);
        }
      }
    }
  }

  @media (hover: none) {
    &:active {
      @media screen and (min-width: 561px) {
        opacity: 1;
      }

      &::before {
        @media screen and (min-width: 561px) {
          border-color: var(--color-secondary_skyBlue);
        }
      }
    }
  }
}

/* ----------------------------------------------------------- */

.phantom {
  transform: translateY(50px);
  transition:
    opacity 1s,
    transform 1s;
  opacity: 0;

  &.-animated {
    transform: translateY(0);
    opacity: 1;
  }
}
