/* common打消し */
.detail p {
  margin: 0;
}
figure {margin: 0;}

/* -----------------
  全体
----------------- */
.sp_block {
  display: none;
  @media screen and (max-width: 767px) {
    display: block;
  }
}
.main_txt {
  font-size: 15px;
  padding: 0 1em 1em;
  line-height: 1.7;
  @media screen and (max-width: 767px) {
    font-size: 14px;
  }
}

/* パンくずリスト */
.pankuzu {
  height: 18px;
}

/* -----------------
  header
----------------- */

/* -----------------
  article
----------------- */
/* head */
.case_ttl {
  width: 100%;
  padding: 0.6em 1em 0.4em;
  background: #E8EEFF;
  font-size: 22px;
  font-weight: bold;
  color: #00335E;
  margin-bottom: 1em;
  @media screen and (max-width: 767px) {
    font-size: 18px;
  }
}
.case_intro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  @media screen and (max-width: 767px) {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.case_list {
  display: flex;
  justify-content: flex-start;
  gap: 5px 10px;
  font-size: 12px;
}
.case_list--item {
  padding: 0.5em 1em;
  border-radius: 50px;
  background: #49407D;
  color: #fff;
}
.case_main {
  text-align: center;
}

/* セクション */
.case_section:not(:last-child) {
  padding-bottom: 1em;
}

/* 見出し */
.sub-title {
  margin-bottom: 0.75em;
  @media screen and (max-width: 767px) {
    padding-top: 10px;
  }
}

/* 番号付きタイトル */
.case_strength {
  counter-reset: num 0;
}
.case_strength--title {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #E8EEFF;
  font-size: 16px;
  color: #0C0052;
  font-weight: bold;
  margin: 1.5em 0 1em;
  &::before {
    counter-increment: num 1;
    content: counter(num);
    min-width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0C0052;
    color: #fff;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    height: 48px;
    font-size: 14px;
    gap: 10px;
    &::before {
      min-width: 32px;
    }
  }
}

/* 製品紹介 */
.case_product {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-top: 2em;
}
.case_product--item {
  max-width: calc(50% - 10px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.case_product--title {
  width: 100%;
  padding: 0.5em 1em;
  display: flex;
  align-items: strech;
  gap: 15px;
  background: #E8EEFF;
  font-size: 16px;
  font-weight: bold;
  &::before {
    content: "";
    width: 6px;
    background: #0C0052;
  }
  @media screen and (max-width: 767px) {
    font-size: 14px;
  }
}

/* ホームページ制作のポイント */
.case_point {
  width: 100%;
  border: 25px solid #F5F5F5;
  padding: 10px 25px 25px;
  @media screen and (max-width: 767px) {
    border: 15px solid #F5F5F5;
    padding: 5px 15px 15px;
  }
}
.case_point--img {
  text-align: center;
  margin: 30px auto 0;
  @media screen and (max-width: 767px) {
    margin-bottom: 30px;
  }
}
.case_point--btn a {
  max-width: 328px;
  width: 100%;
  padding: 1em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C2BFD4;
  color: #0C0052;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-inline: auto;
  position: relative;
  font-size: 14px;
  &::before {
    content: "";
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0C0052;
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
  }
  &::after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    position: absolute;
    right: 1.76em;
    top: 50%;
    transform: translateY(-50.5%);
  }
  &:hover {
    opacity: 0.8;
  }
  @media screen and (max-width: 767px) {
    font-size: 12px;
  }
}