@charset "UTF-8";
/*@import url('reset.css');*/
/* default
==============================*/
:root {
  --white: rgb(255 255 255);
  --black: rgb(0 0 0);
  --primary-brand: #05226a;
  --primary-main: #2f4da1;
  --primary-light: #bbdefb;
  --primary-dark: #1045a1;
  --primary-bg: #f4f6fc;
  --primary-50: #e3f2fd;
  --primary-100: #bbdefb;
  --primary-200: #90c9f9;
  --primary-300: #63b4f6;
  --primary-400: #42a4f5;
  --primary-500: #2f4da1;
  --primary-600: #1f87e5;
  --primary-700: #1a75d2;
  --primary-800: #1764c0;
  --primary-900: #1045a1;
  --secondary-main: #ec6800;
  --secondary-light: #fff9c4;
  --secondary-dark: #c55601;
  --secondary-50: #fffde7;
  --secondary-100: #fff9c4;
  --secondary-200: #fff59d;
  --secondary-300: #fef075;
  --secondary-400: #fceb55;
  --secondary-500: #ffeb3b;
  --secondary-600: #fdd835;
  --secondary-700: #fbc02d;
  --secondary-800: #ec6800;
  --secondary-900: #c55601;
  --gray-50: #f4f6f8; /* Lightest */
  --gray-100: #e2e9f2;
  --gray-200: #c5d3e6;
  --gray-300: #a1b3cd;
  --gray-400: #798cac;
  --gray-500: #5a6b8b; /* Mid-tone */
  --gray-600: #445371;
  --gray-700: #2a3449;
  --gray-800: #202838;
  --gray-900: #151a23; /* Darkest */
  --txt-main: #161718;
  --txt-light: #282a2c;
  --txt-disabled: rgb(0 0 0 / 0.28);
  --txt-link: rgb(41 98 255);
  /* ===== 横幅 ===== */
  --breakpoint-2xl: 1440px;
  --breakpoint-xl: 1280px;
  --breakpoint-xm: 770px;
  --breakpoint-xs: 560px;
  /* ===== ボタン幅 ===== */
  --radius-xs: 8px;
  --radius-xm: 12px;
  --radius-xl: 16px;
  --radius-round: 100vh;
  --radius-circle: 50%;
  /* ===== Heading&Text ===== */
  /* PC (1280px以上) */
  --heading-lg: 2.5rem; /* 40px h2 */
  --heading-md: 2rem; /* 32px h3*/
  --heading-sm: 1.5rem; /* 24px h4*/
  --heading-xs: 1.375rem; /* 22px h4*/
  --text-xl: 1.125rem; /* 18px */
  --text-md: 1rem; /* 16px */
  --text-sm: 0.875rem; /* 14px */
  /*タブレット*/
  /* スマホ (770px以下) */
  /* ===== コンテンツのタイトル ===== */
  /* 改行
  ==============================*/
  /* デフォルト設定: 770px よりも大きい場合（改行させない） */
  /*  style.cssで改行変換されていたため戻す対応*/
  /* オレンジボタンの仕様
  ==============================*/
}
@media (max-width: 1280px) {
  :root {
    --heading-lg: 32px;
    --heading-md: 28px;
    --heading-sm: 22px;
    --heading-xs: 20px;
    --text-xl: 18px;
    --text-md: 16px;
    --text-sm: 14px;
  }
}
@media (max-width: 770px) {
  :root {
    --heading-lg: 24px; /* 24px */
    --heading-md: 22px; /* 22px */
    --heading-sm: 22px; /* 22px */
    --heading-xs: 18px; /* 18px */
    --text-xl: 16px; /* 16px */
    --text-md: 15px; /* 15px */
    --text-sm: 13px; /* 13px */
  }
}
:root h2 {
  font-size: var(--heading-lg);
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 1.6px;
}
:root h3 {
  font-size: var(--heading-md);
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 1.28px;
}
:root h4 {
  font-size: var(--heading-sm);
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 1.2px;
}
:root h5 {
  font-size: var(--heading-xs);
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 1.15px;
}
:root .xm {
  font-size: var(--text-xm);
  line-height: 160%;
  letter-spacing: 0.64px;
}
:root .md {
  font-size: var(--text-md);
  line-height: 160%;
  letter-spacing: 0.64px;
}
:root .sm {
  font-size: var(--text-sm);
  line-height: 160%;
  letter-spacing: 0.64px;
}
:root .txt-box {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
:root .container-body .head-ti {
  font-family: "Avenir Next", sans-serif;
  color: var(--primary-brand);
}
:root .br_sp {
  display: none;
}
@media (max-width: 770px) {
  :root .br_sp {
    display: block;
  }
}
:root .br_tab {
  display: none;
}
@media (max-width: 1280px) {
  :root .br_tab {
    display: block;
  }
}
@media (max-width: 768px) {
  :root h3 br {
    display: block;
  }
}
:root .orenge-link {
  text-align: center;
}
:root .orenge-link .appeal_text {
  color: var(--secondary-main);
  position: relative;
  width: fit-content;
  margin: auto auto 4px;
}
:root .orenge-link .appeal_text::before {
  content: "";
  width: 1px;
  height: 17px;
  background-color: var(--secondary-main);
  display: inline-block;
  vertical-align: middle;
  transform: rotate(-45deg) translateX(-6px) translateY(-8px);
  transform-origin: center center;
}
:root .orenge-link .appeal_text::after {
  content: "";
  width: 1px;
  height: 17px;
  background-color: var(--secondary-main);
  display: inline-block;
  vertical-align: middle;
  transform: rotate(45deg) translateX(6px) translateY(-8px);
  transform-origin: center center;
}
:root .orenge-link-btn {
  display: flex;
  padding: 12px 20px 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 54px;
  background: #ec6800;
  width: fit-content;
  margin: auto;
  color: var(--white);
  font-weight: bold;
  line-height: 200%;
  font-size: var(--text-xl);
  /* base */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}
:root .orenge-link-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  :root .orenge-link-btn {
    margin: auto;
    letter-spacing: 1px;
  }
}
:root .contact_button {
  margin: 0 !important;
  margin-left: auto !important;
}

/* パンくずリスト
==============================*/
.root .breadcrumb {
  width: var(--breakpoint-2xl);
  margin-top: 16px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.root .breadcrumb-ul {
  width: max-content;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
}

.root .breadcrumb-li:not(:last-child)::after {
  content: "chevron_right";
  margin-left: 8px;
}

.root .breadcrumb-li:last-child {
  font-weight: bold;
}

.root .breadcrumb-li-anc:hover {
  text-decoration: underline;
  color: var(--primary-main);
}

/* FV部分
==============================*/
.container-heads-hero {
  position: relative;
  height: 658px;
}
@media (max-width: 770px) {
  .container-heads-hero {
    height: 658px;
  }
}
.container-heads-hero .container-heads-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.container-heads-hero .container-heads-hgroup {
  width: 1440px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  transform: translate(-50%, -50%);
}
@media (max-width: 770px) {
  .container-heads-hero .container-heads-hgroup {
    top: 47%;
    justify-content: space-between;
    height: 86%;
  }
}
@media (max-width: 770px) {
  .container-heads-hero .container-heads-hgroup .title-box {
    margin-top: 8px;
  }
}
.container-heads-hero .container-heads-hgroup .title {
  margin-bottom: 32px;
}
.container-heads-hero .container-heads-hgroup .subtitle {
  font-size: var(--heading-md);
  font-weight: bold;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .container-heads-hero .container-heads-hgroup .subtitle {
    font-size: 18px;
  }
}

/* セクション共通の余白
==============================*/
section {
  padding: 80px 16px 104px;
}
@media (max-width: 770px) {
  section {
    padding: 56px 16px;
  }
}

.default_ti {
  text-align: center;
  margin: auto auto 48px;
}
@media (max-width: 770px) {
  .default_ti {
    margin: auto auto 24px;
  }
}

/* about
==============================*/
.about {
  background-color: #f8f8f8;
  padding: 16px 16px 80px;
}
@media (max-width: 770px) {
  .about {
    padding: 16px 16px 40px;
  }
}
.about .about-content {
  padding-top: 64px;
  max-width: var(--breakpoint-xl);
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .about .about-content {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 770px) {
  .about .about-content {
    padding-top: 56px;
  }
}
.about .about-content .textbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}
@media (max-width: 960px) {
  .about .about-content .textbox {
    width: 100%;
  }
}
.about .about-content .textbox .title {
  margin-bottom: 0;
}
.about .about-content .textbox .text-link {
  text-decoration: underline;
  color: var(--primary-main);
  margin: 8px auto auto 0;
}
@media (max-width: 960px) {
  .about .about-content .textbox .text-link {
    margin: auto 0 auto auto;
  }
}
.about .about-content .textbox .ico-mui {
  color: var(--primary-main);
}
.about .about-content .imgbox {
  width: 47%;
  margin-left: 3%;
}
@media (max-width: 960px) {
  .about .about-content .imgbox {
    width: 100%;
    text-align: center;
    margin-left: 0%;
  }
}

/* issues
==============================*/
.issues {
  background-color: #f3f7fc;
}
.issues .issues-content {
  max-width: 1312px;
  margin: auto;
}
.issues .issues-content .ti-box {
  text-align: center;
}
@media (max-width: 770px) {
  .issues .issues-content .sub-ti {
    font-size: var(--text-xm);
  }
}
.issues .issues-box {
  display: flex;
  gap: 56px;
  flex: 1 0 0;
  flex-wrap: wrap;
}
@media (max-width: 1343px) {
  .issues .issues-box {
    justify-content: space-around;
    gap: 40px;
    margin: auto;
  }
}
@media (max-width: 1311px) {
  .issues .issues-box {
    justify-content: space-around;
    max-width: 840px;
  }
}
.issues .issues-box .issues-card {
  display: flex;
  width: 400px;
  padding: 16px 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  background: var(--white);
  /* base */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 1343px) {
  .issues .issues-box .issues-card {
    width: calc(50% - 20px);
    max-width: 400px;
  }
}
@media (max-width: 770px) {
  .issues .issues-box .issues-card {
    width: 100%;
    max-width: 560px;
    gap: 16px;
  }
}
.issues .issues-box .issues-q {
  text-align: center;
}
.issues .issues-box .issues-q .issues-sub-ti {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 4px;
}
.issues .issues-box .issues-q .issues-sub-ti .issues-text {
  font-family: "Avenir Next", sans-serif;
  letter-spacing: 0.32px;
  color: #90a9ee;
  line-height: 180%;
}
.issues .issues-box .issues-q .issues-sub-ti .issues-number {
  font-size: 20px;
  font-family: "Avenir Next", sans-serif;
  font-weight: 600;
  color: #90a9ee;
}
.issues .issues-box .issues-q .ti-question {
  color: var(--primary-main);
  margin: 8px auto 12px;
}
@media (max-width: 770px) {
  .issues .issues-box .issues-q .ti-question {
    margin: 4px auto 12px;
  }
}
.issues .issues-box .issues-q .issues-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.issues .issues-box .issues-q .issues-img .Triangle-img {
  width: 24px;
}
.issues .issues-box .issues-a {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 770px) {
  .issues .issues-box .issues-a {
    gap: 12px;
  }
}
.issues .issues-box .issues-a .ti-anser {
  text-align: center;
}
.issues .issues-box .issues-a .issues-list li {
  list-style-type: disc;
  margin-left: 24px;
  color: var(--primary-main);
  font-weight: bold;
  line-height: 160%;
}

/* module
==============================*/
.module .module-content {
  max-width: var(--breakpoint-xl);
  margin: auto;
}
.module .module-content .ti-box {
  margin: auto auto 48px;
  width: 968px;
}
@media (max-width: 1000px) {
  .module .module-content .ti-box {
    width: 100%;
  }
}
.module .module-content .ti-box .default_ti {
  margin-bottom: 16px;
}
.module .module-box {
  display: flex;
  gap: 40px;
  flex: 1 0 0;
  flex-wrap: wrap;
}
@media (max-width: 1311px) {
  .module .module-box {
    max-width: 968px;
    margin: auto;
  }
}
.module .module-card {
  display: flex;
  width: 400px;
  flex-direction: column;
  gap: 8px;
}
.module .module-card .module-ti {
  text-align: center;
}
@media (max-width: 1311px) {
  .module .module-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .module .module-card {
    width: 100%;
  }
}

/* case
==============================*/
.case {
  position: relative;
  background-image: url(../media2/phr-app-dev/healthcare-app/case_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 64px;
}
@media (max-width: 600px) {
  .case {
    background-image: url(../media2/phr-app-dev/healthcare-app/case_bg_sp.jpg);
  }
}
.case .case-content {
  max-width: 1328px;
  margin: auto;
}
.case .case-content .case-box {
  display: flex;
  gap: 48px;
  flex: 1 0 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 1327px) {
  .case .case-content .case-box {
    max-width: 968px;
    margin: auto auto 16px;
    gap: 40px;
  }
}
@media (max-width: 550px) {
  .case .case-content .case-box {
    gap: 32px;
  }
}
.case .case-content .case-box .case-card {
  display: flex;
  width: 400px;
  padding: 24px 24px;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background: var(--white);
  /* base */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.case .case-content .case-box .case-card .case-img {
  width: 269px;
}
.case .case-content .case-box .case-card .case-ti {
  margin: 32px auto 12px;
  text-align: center;
}
@media (max-width: 1327px) {
  .case .case-content .case-box .case-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .case .case-content .case-box .case-card {
    width: 100%;
  }
}

/* flow
==============================*/
.flow .flow-content {
  max-width: 1440px;
  margin: auto;
  text-align: center;
}
.flow .ti {
  color: var(--primary-brand);
}

/* faq （MA_services2020/_assets/css/common.cssから引き継ぎ、最新版にスタイル調整）
==============================*/
.faq {
  background-color: #f8f8f8;
}
.faq .faq-content {
  max-width: 1200px;
  margin: auto;
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* FAQ内の調整 */
}
.faq .faq-list .faq-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
}
@media (max-width: 770px) {
  .faq .faq-list .faq-card {
    padding: 16px;
  }
}
.faq .faq-list .faq-card .question {
  margin-bottom: 8px;
  font-weight: bold;
  line-height: 160%;
  display: flex;
}
.faq .faq-list .faq-card .answer-card {
  display: flex;
  background: #f4f6fc;
  border-radius: 12px;
  padding: 12px 16px;
}
@media (max-width: 770px) {
  .faq .faq-list .faq-card .answer-card {
    padding: 8px 16px;
  }
}
.faq .faq-list .faq-card .answer-card .answer {
  display: flex;
}
.faq .faq-list .question::before,
.faq .faq-list .answer::before {
  margin-right: 6px;
  font-weight: bold;
  font-family: "Avenir Next", sans-serif;
  color: var(--primary-main);
}
.faq .faq-list .question::before {
  content: "Q.";
  font-size: 20px;
  font-weight: 600;
  margin-top: 1px;
  line-height: 120%;
}
@media (max-width: 770px) {
  .faq .faq-list .question::before {
    font-size: 18px;
    line-height: 160%;
  }
}
.faq .faq-list .answer::before {
  content: "A.";
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
}
@media (max-width: 770px) {
  .faq .faq-list .answer::before {
    font-size: 16px;
  }
}
.faq .faq-list .faq-answer-link {
  display: block;
}
.faq .faq-list .faq-answer-list {
  display: block;
  margin: 8px 8px 0;
}
.faq .faq-list .text_link_faq {
  display: block;
  line-height: 175%;
  font-size: 14px;
  margin-top: 4px;
  color: #2a2c2d;
}
.faq .faq-list .faq-answer-list .text_link_faq::before {
  content: "▶︎ ";
}
.faq .faq-list .faq-answer-link li {
  list-style-type: disc !important;
}/*# sourceMappingURL=common.css.map */