/*@import url('reset.css');*/

/* default
==============================*/
:root {
  --white: rgb(255 255 255);
  --black: rgb(0 0 0);

  --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: #ffeb3b;
  --secondary-light: #fff9c4;
  --secondary-dark: #f57f16;
  --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: #f9a825;
  --secondary-900: #f57f16;

  --txt-main: rgb(0 0 0 / .87);
  --txt-light: rgb(0 0 0 / .60);
  --txt-disabled: rgb(0 0 0 / .28);
  --txt-link: rgb(41 98 255);

  --radius-xs: 8px;
  --radius-xm: 12px;
  --radius-xl: 16px;
  --radius-round: 100vh;
  --radius-circle: 50%;

  --breakpoint-xl: 1280px;
  --breakpoint-xm: 960px;
  --breakpoint-xs: 770px;

  --heading-2xl: 7.5rem;
  /*120px*/
  --heading-xl: 3rem;
  /*48px*/
  --heading-xm: 2rem;
  /*32px*/
  --heading-xr: 1.75rem;
  /*28px*/
  --heading-xs: 1.5rem;
  /*24px*/
  --heading-2xs: 1.375rem;
  /*22px*/

  --typo-xl: 1.25rem;
  /*20px*/
  --typo-xm: 1.125rem;
  /*18px*/
  --typo-xs: 1rem;
  /*16px*/
  --cption: 0.875rem;
  /*14px*/

  --button-xm: 1.125rem;
  /*18px*/
}

html {
  font-size: 16px;
}

body {
  padding-top: 70px;
  line-height: 2;
  font-size: var(--typo-bd);
  color: var(--txt-main);
  background: #f6f7f8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .2s;
}

/* font
==============================*/
.font-museo {
  font-family: "museo-sans", sans-serif;
  font-weight: 500;
}

/* icon
==============================*/
.ico-mui,
.ico-aft::after,
.ico-bef::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: var(--typo-h4);
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* maxWidth
==============================*/
[data-mw] {
  max-width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
}

[data-mw="xl"] {
  width: var(--breakpoint-xl);
}

[data-mw="xm"] {
  width: var(--breakpoint-xm);
}

@media (770px >=width) {
  [data-mw] {
    max-width: calc(100% - 32px);
  }
}

/* card
==============================*/
.card-white,
.card-blue {
  padding: 24px;
  border-radius: 12px;
}

.card-white {
  background: var(--white);
  display: flex;
}

.card-blue {
  background: var(--primary-bg);
}

.bgwhite {
  background: var(--white);
}

/* layout
==============================*/
.cent {
  display: grid;
  place-items: center;
}

[data-mgn="top8"] {
  margin-top: 8px;
}

[data-mgn="top16"] {
  margin-top: 16px;
}

[data-mgn="top24"] {
  margin-top: 24px;
}

[data-mgn="top32"] {
  margin-top: 32px;
}

[data-mgn="top40"] {
  margin-top: 40px;
}

[data-mgn="top48"] {
  margin-top: 48px;
}

[data-mgn="btm8"] {
  margin-bottom: 8px;
}

[data-mgn="btm16"] {
  margin-bottom: 16px;
}

[data-mgn="btm24"] {
  margin-bottom: 24px;
}

[data-mgn="btm32"] {
  margin-bottom: 32px;
}

[data-mgn="btm40"] {
  margin-bottom: 40px;
}

[data-mgn="btm48"] {
  margin-bottom: 48px;
}

[data-mgn="left-auto"] {
  margin-left: auto;
}

[data-mgn="right-auto"] {
  margin-right: auto;
}

/* text
==============================*/
.root #page .p-wrap {
  margin-bottom: 24px;
}

.root .h-xs {
  font-size: var(--heading-xs);
  font-weight: bold;
}

.root #page .p-xl {
  font-size: var(--typo-xl);
  font-weight: 500;
}

.root .p-xm {
  font-size: var(--typo-xm);
  font-weight: 500;
}

.root .p-xs {
  line-height: 1.75;
  font-size: var(--typo-xs);
  font-weight: 500;
}

.root .h-xs,
.root .p-xm:not(:last-child) {
  margin-bottom: 16px;
}

.bq {
  margin-top: 16px;
  padding: 8px;
  font-style: italic;
  border-radius: 8px;
  background: #f5f5f5;
}

.wbr {
  line-height: inherit;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* image
==============================*/
.sec-fig {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.fit,
.sec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fit-contain {
  object-fit: contain;
}

/* button
==============================*/
.btn,
#page .btn {
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2.7px;
  font-weight: bold;
  border-radius: 6px;
  background: var(--primary-main);
  color: var(--white);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn.xs {
  padding: 10px 12px;
  line-height: 150%;
  font-size: var(--typo-xs);
  letter-spacing: 0;
}

.btn.xm {
  padding: 12px 16px;
  padding-left: 40px;
  font-size: var(--typo-xm);
}

.btn.position-right {
  margin-left: auto;
}

.btn .ico-mui {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: var(--radius-circle);
  background: var(--white);
  color: var(--primary-main);
  display: grid;
  place-items: center;
}

.btn:hover {
  opacity: .7;
}

@media (770px >=width) {
  .btn {
    letter-spacing: 0;
    gap: 8px;
  }

  .btn.xm {
    padding: 6px 12px;
    font-size: 15px;
  }
}

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

.anc:hover {
  opacity: .7;
}

/* numList
==============================*/
.numList {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.numList-li {
  counter-increment: num;
  display: flex;
  gap: 24px;
}

.numList-li-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.numList-li-meta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.numList-li-meta-hgroup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.numList-li-meta-ti {
  font-size: var(--heading-xs);
  font-weight: bold;
}

.numList-li-meta-ti.br {
  padding-left: 16px;
  border-left: 4px solid #2F4DA1;
}

.numList-li-meta-ti:not(.nn)::before {
  content: counter(num, decimal-leading-zero);
  margin-right: 16px;
  font-size: 32px;
  font-weight: 500;
  font-family: "museo-sans", sans-serif;
  color: var(--primary-main);
  vertical-align: bottom;
}

.numList-li-meta-ti small {
  font-size: 18px;
}

.numList-li-meta-ti-tag {
  padding: 4px 12px;
  line-height: 1.5;
  border-radius: 8px;
  background: #EC6C60;
  color: #fff;
}

.numList-li-meta-ti-tag.line {
  background: #45A739;
}

.numList-li-meta-ti-tag.native {
  background: #157BDE;
}

.numList-li-meta-dsc {
  font-size: var(--typo-xm);
}

.numList-li-meta-dsc.fsn {
  font-size: var(--typo-xs);
}

.numList-li-fig {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  align-self: baseline;
}

.numList-li-meta-list {
  margin: 24px 0;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
}

.numList-li-meta-list-item {
  margin-left: 1em;
  padding: 6px 0;
  line-height: 1.5;
  list-style: disc;
}

.numList-li-meta-list-item.notis {
  margin: 0;
  line-height: 1.8;
  font-size: 90%;
  counter-increment: nums;
  list-style: none;
  color: #666;
  display: flex;
}

.numList-li-meta-list-item.notis::before {
  content: '*' counter(nums);
  margin-right: 8px;
}


.numList-li-logo,
.numList-li-img {
  width: 100%;
}

.numList-li-fig {
  border-radius: 12px;
  overflow: hidden;
}

.numList-li-img {
  border-radius: 12px;
}

.numList-li-meta-app {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.numList-li-meta-app-li-link-img {
  width: 180px;
  transition: .2s;
}

.numList-li-meta-app-li-link-img:hover {
  opacity: .7;
}

@media (770px >=width) {
  .numList-li {
    padding: 16px;
    flex-direction: column-reverse;
    position: relative;
  }

  .numList-li-fig {
    width: 100%;
    gap: 8px;
  }

  .numList-li-logo {
    width: auto;
    height: 60px;
    object-fit: contain;
  }

  .numList-li-img {
    height: 174px;
  }

  .numList-li-meta-wrap {
    gap: 0;
  }

  .numList-li-meta-ti {
    margin-bottom: 8px;
    font-size: var(--typo-xl);
  }

  .numList-li-meta-ti::before {
    margin-right: 8px;
    font-size: var(--heading-xs);
  }

  .numList-li-meta-dsc.pa {
    font-size: 14px;
  }

  .numList-li-meta-app {
    margin-top: 16px;
  }

  .numList-li-meta-app-li p {
    font-size: 14px;
  }
}

.rowlist {
  margin: 0 auto 80px;
  padding: 64px 0 0;
  display: flex;
  align-items: center;
}

.rowlist-fig {
  width: 480px;
  max-width: 40%;
  margin-right: -8px;
  border-radius: 12px;
  overflow: hidden;
}

.rowlist-img {
  width: 100%;
}

.rowlist-meta {
  flex: 1;
  padding: 24px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rowlist-meta-wrap-ti {
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 12px;
  line-height: 1.5;
  font-size: var(--typo-xl);
  font-weight: bold;
  border-radius: 8px;
  background: #E67474;
  color: #fff;
}

.rowlist-meta-wrap-ti.line {
  background: #45A739;
}

.rowlist-meta-wrap-ti.browser {
  background: #EC6800;
}

.rowlist-meta-wrap-ti.native {
  background: #157BDE;
}

@media (1100px >=width) {
  .rowlist {
    width: var(--breakpoint-xm);
    max-width: calc(100% - 48px);
    padding: 16px 0 0;
  }

  .rowlist-fig {
    display: none;
  }
}


/* faq
==============================*/
.faq {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-li-question {
  margin-bottom: 8px;
}

.faq-li-answer {
  display: flex;
}

.faq-li-question::before,
.faq-li-answer::before {
  margin-right: 8px;
  font-size: var(--heading-xs);
  font-weight: bold;
  font-family: "museo-sans", sans-serif;
  color: var(--primary-main);
}

.faq-li-question::before {
  content: 'Q';
}

.faq-li-answer::before {
  content: 'A';
}

.faq-answer-link {
  display: block; /* 明示的にブロック要素として扱いたい場合（デフォルトもblock） */
}

/* notice
==============================*/
.root #page .notice-head {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.root #page .notice-head-icon {
  width: 160px;
  aspect-ratio: 1/1;
  font-size: 36px;
  font-weight: bold;
  background: var(--primary-main);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
}

.root #page .notice-head-meta-ti {
  font-size: var(--heading-xl);
  font-weight: bold;
  color: var(--primary-main);
}

.root #page .notice-head-meta-tag_pc {
  font-size: var(--heading-xs);
  font-weight: bold;
}

.root #page .notice-head-meta-tag_sp {
  display: none;
}

.root #page .notice-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.root #page .notice-content-fig {
  width: 200px;
}

.root #page .notice-content-txt {
  width: 820px;
  margin-bottom: 20px;
}

@media (1100px >=width) {
  .root #page .notice-head-icon {
    min-width: 100px;
    max-width: 100px;
    font-size: 26px;
  }

  .root #page .notice-head-meta-ti {
    font-size: var(--heading-xs);
  }
}

@media (770px >=width) {
  .root #page .notice-head {
    margin-bottom: 16px;
    justify-content: flex-start;
    gap: 8px;
  }

  .root #page .notice-head-icon {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    margin: 0;
    font-size: var(--typo-xs);
  }

  .root #page .notice-head-meta-ti {
    max-width: 100%;
    margin: 0;
    font-size: var(--typo-xl);
    font-weight: bold;
  }

  .root #page .notice-head-meta-tag_pc {
    display: none;
  }

  .root #page .notice-head-meta-tag_sp {
    width: 100%;
    margin: 0 0 24px;
    font-size: var(--typo-xm);
    font-weight: bold;
    display: block;
  }

  .root #page .notice-content {
    flex-direction: column;
  }

  .root #page .notice-content-fig {
    order: 2;
  }

  .root #page .notice-content-txt {
    order: 1;
    width: 100%;
    margin: 0;
    font-size: var(--typo-xs);
    font-weight: bold;
  }
}



/* common
==============================*/
.root {
  background: #fff;
}

@media (1100px >=width) {
  body {
    padding-top: 58px !important;
  }
}

@media (770px >=width) {
  body {
    padding-top: 0 !important;
  }

  .root {
    padding: 56px 0 0;
  }
}

/* パンくずリスト
==============================*/
.root .breadcrumb {
  max-width: 100%;
  margin-top: 16px;
  padding: 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
}

.root .breadcrumb-ul {
  width: max-content;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.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);
}


/* 第二階層 レイアウト
==============================*/
.container {
  background: url("../../img/fv-bg.png") no-repeat top right / 750px;
}

.root .container-heads {
  margin-bottom: 80px;
  background: transparent !important;
}

.root .container-heads-hero {
  height: 340px;
  position: relative;
}

.root .container-heads-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.root .container-heads-hero-logo {
  width: 400px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.root .container-heads-hero-logo.xl {
  width: 750px;
}

.root .container-heads-hgroup {
  padding-top: 28px;
}

.root .container-heads-hgroup-ti {
  font-size: var(--heading-xl);
  font-weight: bold;
  color: var(--primary-main);
}

.container-heads-hgroup-ck {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
}

.root .container-heads-hgroup-dsc {
  letter-spacing: 6px;
  font-size: var(--typo-xl);
}

.root .container-heads-hgroup-dsc-en {
  margin-bottom: 8px;
  font-family: "museo-sans", sans-serif;
  font-weight: 500;
  color: var(--primary-main);
  opacity: .7;
}

.root .container-heads-hgroup-dsc-jp {
  color: #666;
}


.root .container-head {
  margin-bottom: 80px;
}

.root .hero {
  padding: 80px 0;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (1050px <=width) {
  .container-heads-hgroup-ti.nw {
    white-space: nowrap;
  }
}

@media (770px >=width) {
  .container {
    background-size: 100%;
  }

  .root .container-heads {
    margin-bottom: 56px;
  }

  .root .container-heads-hero {
    height: 140px;
  }

  .root .container-heads-hero-logo {
    width: 200px;
  }

  .root .container-heads-hero-logo.xl {
    width: 350px;
  }

  .root .container-heads-hgroup-ti {
    line-height: 1.5;
    font-size: var(--heading-xm);
  }

  .container-heads-hgroup-ck {
    font-size: 20px;
  }

  .root .hero.aps {
    background-image: url(../media/patient-app/mv_xs.jpg) !important;
  }
}

.root .hero-ti,
.root .hero-dsc {
  width: fit-content;
  margin: auto;
  padding: 0 16px;
  background: rgba(255 255 255 / .95);
}

.root .hero-ti {
  min-width: 500px;
  font-size: var(--heading-xl);
  font-weight: bold;
  color: var(--primary-main);
}

.root .hero-ti-min {
  margin: -32px 0 0px;
  padding: 0 0 8px;
  line-height: 3;
  font-size: var(--heading-xs);
  font-weight: normal;
  display: block;
}

.root .hero-dsc {
  padding-bottom: 8px;
  font-size: var(--typo-xs);
  letter-spacing: 6px;
}

@media (770px >=width) {
  .root .container-head {
    margin-bottom: 40px;
  }

  .root .hero {
    padding: 40px 16px;
  }

  .root .hero-ti {
    width: 100%;
    min-width: 0;
    padding-top: 8px;
    text-align: center;
    font-size: var(--heading-xs);
  }

  .root .hero-ti.min {
    font-size: 20px;
  }

  .root .hero-ti-min {
    margin: 0;
    padding: 0 0 16px;
    line-height: 1.5;
    font-size: var(--typo-xm);
    font-weight: bold;
  }

  .root .hero-dsc {
    width: 100%;
    padding-bottom: 8px;
    font-size: var(--typo-xs);
    letter-spacing: 0;
  }
}

.root .entry {
  padding: 32px 0;
  text-align: center;
  margin-top: 18px;
  background: var(--page-color);

  @media screen and (max-width: 1100px) {
    margin-top: 0px;
  }
}

.root .entry-ti {
  padding: 0;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
}

@media (770px >=width) {
  .root .entry-ti {
    text-align: center;
    font-size: 30px;
  }
}

.root .sec,
.root .sec-blue,
.root .sec-sky {
  width: 100%;
  margin: 0 auto 80px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.root .sec-mgn0 {
  margin: 0 auto;
}

.root .sec-blue {
  padding: 80px 0;
  background: var(--primary-bg) url("../media/common/bg_sv1.png") no-repeat right top / 880px auto;
}

.root .sec-sky {
  padding: 80px 0;
  background: #F0F5FF;
}

.root .sec-head {
  margin: 0 0 24px;
  background: transparent !important;
}

.root .sec-head.set-en {
  padding: 120px 0 0;
}

.root .sec-head.set-en.np {
  padding: 0;
}

.root .sec-head-ti-en {
  font-size: var(--heading-2xl);
  font-weight: 500;
  white-space: nowrap;
  color: var(--primary-main);
  opacity: .1;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.root .sec-head-ti {
  width: fit-content;
  margin: 0 0 16px;
  padding: 0 16px 16px 0;
  line-height: 1.7;
  font-size: var(--heading-xm);
  font-weight: bold;
  border-bottom: 2px solid var(--primary-main);
  color: var(--primary-main);
}

.root .sec-head-ti.wt {
  white-space: nowrap;
}

.root.page-color .sec-head-ti {
  border-color: var(--page-color);
  color: var(--page-color);
}

.sec-head-ti-important{
  border-color: var(--primary-main)!important;
  color: var(--primary-main) !important;
}

.root .sec-head-ti:has(.wbr) {
  width: min-content;
  max-width: 100%;
}

.root .sec-head-ti .wbr {
  color: inherit;
}

.root .sec-head-dsc {
  font-size: var(--heading-xs);
}

@media (770px >=width) {

  .root .sec,
  .root .sec-blue,
  .root .sec-sky {
    margin: 0 auto 40px;
  }

  .root .sec-mgn0 {
    margin: 0 auto;
  }

  .root .sec-head.set-en {
    padding: 40px 0 0;
  }

  .root .sec-blue,
  .root .sec-sky {
    padding: 64px 0;
  }

  .root .sec-head-ti-en {
    font-size: 42px;
    top: -8px;
    left: 16px;
  }

  .root .sec-head-ti {
    font-size: var(--heading-xs);
  }

  .root .sec-head-ti:has(.wbr) {
    width: fit-content;
  }

  .root .sec-head-ti .wbr {
    word-break: inherit;
  }

  .root .sec-head-ti.wt {
    white-space: wrap;
  }

  .root .sec-head-dsc {
    font-size: var(--heading-2xs);
  }
}

/* linq-pad
==============================*/
.root .about-img {
  margin: 16px 0 0;
}

.root .series {
  background: url(../media/common/bg_sec-bottom2.png);
  background-size: 100% auto;
}

.root .value {
  padding: 120px 0;
}

@media (770px >=width) {
  .root .series {
    background-size: 300% auto;
  }

  .root .value {
    padding: 64px 0
  }

  .root .value .h-xs {
    line-height: 1.75;
    font-size: var(--typo-xl);
  }
}


/* linq-dx
==============================*/
#linq-dx .numList-li:first-child .numList-li-img {
  object-fit: cover;
}


/* 第三階層 レイアウト
==============================*/
.caseStudy-ti {
  text-align: center;
  font-size: var(--heading-xm);
  color: var(--page-color);
}

.caseStudy {
  width: var(--breakpoint-xl);
  max-width: 95%;
  margin: auto;
  padding: 24px;
  border-radius: 12px;
  background: var(--primary-bg);
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
}

.caseStudy.link {
  padding-bottom: 112px;
}

.caseStudy-meta {
  flex: 1;
}

.caseStudy-shop {
  font-size: var(--heading-xs);
  font-weight: bold;
}

.caseStudy-txt {
  font-size: var(--typo-xm);
}

.caseStudy-txt:not(:last-child) {
  margin-bottom: 16px;
}

.caseStudy-fig {
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.caseStudy-btn {
  margin: auto;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}

@media (1100px >=width) {
  .caseStudy-fig {
    width: 260px;
  }
}

@media (770px >=width) {
  .caseStudy {
    flex-direction: column;
  }

  #page .caseStudy-shop {
    max-width: 100%;
    margin: 0 0 8px
  }

  #page .caseStudy-txt {
    width: 100%;
    margin: 0;
    font-size: var(--typo-xs);
  }

  .caseStudy-fig {
    width: 100%;
  }
}

.root .sec-head-ti4 {
  width: fit-content;
  margin: 0 0 16px;
  padding-left: 16px;
  line-height: 1.7;
  font-size: var(--heading-xs);
  font-weight: bold;
  border-left: 4px solid var(--primary-main);
  color: var(--primary-main);
}

.root .splide {
  margin: 56px 0;
}

.root .splide__slide {
  min-width: 320px;
  max-width: 400px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.root .app-image {
  margin: 0 auto 24px;
  border-radius: 10px;
  overflow: hidden;
}

.root .app-image.min {
  width: 220px;
  margin: 0 auto;
}

.root .app-name {
  font-size: var(--heading-xs);
  line-height: 1.75;
}

.root .app-desc {
  margin-bottom: 8px;
}

.app-desc.em4 {
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-self: baseline;
}

.root .btn {
  margin-top: auto;
}

.linq-palette-app .app-name,
.linq-palette-app .btn .ico-mui {
  color: #478CD1;
}

.linq-palette-app .btn {
  background: #478CD1;
}

.shokuji-palette-app .app-name,
.shokuji-palette-app .btn .ico-mui {
  color: #FC8020;
}

.shokuji-palette-app .btn {
  background: #FC8020;
}

.hospital .app-name,
.hospital .btn .ico-mui {
  color: #183EC4;
}

.hospital .btn {
  background: #183EC4;
}

.ld .app-name {
  font-size: 18px;
  color: #161718;
}

.ld .app-tag {
  margin-bottom: 8px;
  font-size: 14px;
  color: #2F4DA1;
}

@media (770px >=width) {
  .root .splide__slide {
    min-width: 70%;
    margin-right: 32px !important;
  }

  .root .app-name {
    font-size: var(--typo-xl);
    line-height: 1.5;
  }

  .root .app-desc {
    line-height: 1.75;
  }
}


.si_sec:not(:last-child) {
  margin-bottom: 40px;
}

.icon-ti {
  width: fit-content;
  margin-bottom: 32px;
  padding-bottom: 16px;
  line-height: 1.7;
  font-size: var(--heading-xm);
  font-weight: bold;
  border-bottom: 2px solid #2F4DA1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-ti-ico {
  width: 38px;
  height: 38px;
  object-position: center;
}

@media (770px >=width) {
  .icon-ti {
    font-size: var(--heading-xs);
  }
}