/* -----------------------------------------------------------
©PFU Limited
----------------------------------------------------------- */
@charset "UTF-8";

/* -----------------------------------------------------------
txt
----------------------------------------------------------- */
.fontBold {
  font-weight: 700;
}

.txtColorDeepBlue {
  color: var(--color_deepBlue);
}

.headerBlock {
  &.-left {
    align-items: flex-start;
  }
}

/* -----------------------------------------------------------
list
----------------------------------------------------------- */
.list.-relaxed .listItem {
  line-height: 200%;
}

/* -----------------------------------------------------------
caseStudyIntro
----------------------------------------------------------- */
.caseStudyIntro {
  position: relative;
}

.caseStudyIntro_imgArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 608px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: bottom;
  z-index: -2; /* コンテンツの後ろに配置 */
  @media (min-width: 561px) {
    height: 624px;
  }
  @media (min-width: 769px) {
    height: 704px;
  }
  @media (min-width: 1024px) {
    height: 716px;
  }

  .caseStudyIntro.-parallaxOff & {
    position: absolute;
    top: 0;
    left: 0;
    height: 240px;
    @media (min-width: 769px) {
      height: 320px;
    }
  }
}
.caseStudyIntro_content {
  position: relative;
  display: block;
  width: 100%;
  height: 240px;
  @media (min-width: 769px) {
    height: 320px;
  }
  z-index: 1;
}

/* -----------------------------------------------------------
caseStudyMedia
----------------------------------------------------------- */
.caseStudyMedia {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;

  @media (min-width: 769px) {
    flex-direction: row;
    align-items: flex-start;
  }

  &.-rowReverse {
    @media (min-width: 769px) {
      flex-direction: row-reverse;
    }
  }
}

.caseStudyMedia_imgArea {
  width: 100%;
  max-width: 458px;

  @media (min-width: 769px) {
    width: calc(700 / 1440 * 100%);
    flex-shrink: 0;
  }
}

.caseStudyMedia_imgArea img {
  width: 100%;
  height: auto;
}

.caseStudyMedia_txtArea {
}

/* -----------------------------------------------------------
caseStudyBox
----------------------------------------------------------- */
.caseStudyBox {
  border: 1px solid #032d60;
  padding: 40px;
}

/* -----------------------------------------------------------
customerOverview
----------------------------------------------------------- */
.customerOverview {
}

.customerOverview_list {
  display: grid;
  gap: 4px;
}

.customerOverview_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  @media (min-width: 769px) {
    grid-template-columns: 160px 1fr;
  }
}

.customerOverview_term,
.customerOverview_description {
  padding: 8px 24px;
  line-height: 150%;
}

.customerOverview_term {
  background-color: var(--color_deepBlue);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.customerOverview_description {
  background-color: #fff;
  color: var(--color_sumi);
  font-size: 1.6rem;
}

.customerOverview_link {
  color: var(--color_deepBlue);
  text-decoration: underline;
  word-break: break-all;
}
