@charset "UTF-8";
/* ===================================
共通
=================================== */
.all_area_wrap {
  margin-top: 80px;
  padding: 0 20px 95px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 800px) {
  .all_area_wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .all_area_wrap {
    padding: 0 20px 64px;
  }
}
.all_area_wrap .all_area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .all_area_wrap .all_area {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .all_area_wrap .all_area {
    gap: 80px;
  }
}
.all_area_wrap .all_area .left_area {
  max-width: 880px;
  width: 100%;
}
.all_area_wrap .all_area .right_area {
  flex-shrink: 0;
  width: 280px;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
@media screen and (max-width: 1024px) {
  .all_area_wrap .all_area .right_area {
    width: 250px;
  }
}
@media screen and (max-width: 800px) {
  .all_area_wrap .all_area .right_area {
    width: 100%;
  }
}

.section_ttl_wrap {
  max-width: 1240px;
  margin: auto;
}

.section_ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
.section_ttl::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #E03837;
}
@media screen and (max-width: 767px) {
  .section_ttl {
    font-size: 24px;
  }
}

/* ===================================
サイドバー
=================================== */
.aside_title {
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  margin-left: 16px;
  padding-top: 3px;
}
.aside_title::before {
  content: "•";
  color: #E03837;
  font-size: 22px;
  position: absolute;
  left: -16px;
  top: 0;
}

.aside_menu_box {
  margin-bottom: 16px;
}
.aside_menu_box .side_select_box {
  cursor: pointer;
  display: block;
  width: 100%;
  background-color: #FBF7EE;
  border-radius: 0;
  border: 1px solid #333;
  padding: 16px 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.3s, border 0.3s;
  background-image: url(../img/common/icon-arrow.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 12px;
}
@media (hover: hover) {
  .aside_menu_box .side_select_box:hover {
    color: #E03837;
    border: 1px solid #E03837;
    background-image: url(../img/common/icon-arrow_red.svg);
  }
}
.aside_menu_box .side_select_box option {
  background-color: #fff;
  color: #333;
}
.aside_menu_box .side_select_box option:first-of-type {
  color: #777;
}

/* ===================================
導入事例 一覧
=================================== */
.content_article_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .content_article_list {
    gap: 20px;
  }
}
@media screen and (max-width: 475px) {
  .content_article_list {
    flex-direction: column;
  }
}
.content_article_list > li {
  width: calc(50% - 16px);
  border: 1px solid #333;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .content_article_list > li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 475px) {
  .content_article_list > li {
    width: 100%;
  }
}
.content_article_list > li a {
  display: block;
  padding: 22px;
  padding-bottom: 30px;
  background-color: #FBF7EE;
}
@media screen and (max-width: 1024px) {
  .content_article_list > li a {
    padding: 20px 20px 30px;
  }
}
.content_article_list > li a .content_img {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 376/211;
  align-items: center;
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .content_article_list > li a .content_img {
    margin-bottom: 20px;
  }
}
.content_article_list > li a .content_img img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  width: 100%;
  height: auto;
}
.content_article_list > li a .content_ttl {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .content_article_list > li a .content_ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.content_article_list > li a .sub_ttl {
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .content_article_list > li:hover {
    color: #E03837;
  }
  .content_article_list > li:hover img {
    opacity: 0.8;
  }
}

.archive-pager {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .archive-pager {
    margin-top: 60px;
  }
}
.archive-pager .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.archive-pager .nav-links .page-numbers {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: underline;
  transition: 0.3s;
}
.archive-pager .nav-links .page-numbers.current, .archive-pager .nav-links .page-numbers.dots {
  pointer-events: none;
  text-decoration: none;
}
.archive-pager .nav-links .page-numbers.current {
  font-weight: 500;
}
.archive-pager .nav-links .page-numbers.prev, .archive-pager .nav-links .page-numbers.next {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 10px;
}
.archive-pager .nav-links .page-numbers.prev::before, .archive-pager .nav-links .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transition: 0.3s;
}
.archive-pager .nav-links .page-numbers.prev {
  margin-right: 5px;
}
.archive-pager .nav-links .page-numbers.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers.prev:hover::before {
    border-top: 1px solid #E03837;
    border-right: 1px solid #E03837;
  }
}
.archive-pager .nav-links .page-numbers.next {
  margin-left: 5px;
}
.archive-pager .nav-links .page-numbers.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers.next:hover::before {
    border-top: 1px solid #E03837;
    border-right: 1px solid #E03837;
  }
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers:hover {
    color: #E03837;
  }
}

/* ===================================
導入事例 記事詳細
=================================== */
/* 共通
==============================*/
.bread_area.single_cont {
  margin-top: 104px;
}
@media screen and (max-width: 1024px) {
  .bread_area.single_cont {
    margin-top: 80px;
  }
}

.all_area_wrap.single_cont {
  border-bottom: none;
}

/* タイトル
==============================*/
.s_case_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .s_case_ttl {
    font-size: 24px;
  }
}

.title_foot_cat {
  margin-bottom: 40px;
}

.service_cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 20px;
}
.service_cat_list li {
  padding: 7px 10px;
  border-radius: 100px;
  border: 1px solid #333;
  background-color: #333;
}
@media (hover: hover) {
  .service_cat_list li :hover {
    color: #333;
    background-color: #fff;
    border: 1px solid #333;
    transition: 0.5s;
  }
}

/* 会社概要
==============================*/
.border_box {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #333;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .border_box {
    padding: 20px 20px 0;
    margin: 30px 0;
  }
}
.border_box .c_name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.96px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .border_box .c_name {
    font-size: 20px;
  }
}
.border_box .c_d_n {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
.border_box .t_small_flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.border_box .t_small_flex:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D8D2C7;
}
@media screen and (max-width: 767px) {
  .border_box .t_small_flex {
    gap: 3px;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .border_box .t_small_flex::before {
    width: 100%;
  }
}
.border_box .t_small_flex p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.64px;
}
.border_box .t_small_flex .type_cat_list {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
.border_box .t_small_flex .d_left_wrap {
  min-width: 150px;
}
.border_box .t_small_flex .d_left_wrap .d_left {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
  background-color: #FBF7EE;
}
.border_box .t_small_flex .d_right {
  position: relative;
  width: 79%;
  padding-left: 15px;
  background-color: #FBF7EE;
}
@media screen and (max-width: 767px) {
  .border_box .t_small_flex .d_right {
    padding-left: 20px;
    width: 100%;
  }
}

/* 課題と成果
==============================*/
.field_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .field_area {
    flex-direction: column;
    padding: 20px;
  }
}

.c_eye_catch + .field_area {
  margin-top: 40px;
}

.description_box {
  flex-shrink: 0;
  max-width: 45%;
}
@media screen and (max-width: 767px) {
  .description_box {
    max-width: 100%;
    width: 100%;
  }
}
.description_box .d_l_span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 9px;
  border: 1px solid #333;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .description_box .d_l_span {
    padding: 6px;
  }
}
.description_box .h {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .description_box .h {
    font-size: 20px;
    line-height: 1.5em;
  }
}
.description_box .d_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .description_box .d_text {
    font-size: 16px;
  }
}
.description_box.right .d_l_span {
  border: 1px solid #E03837;
  color: #E03837;
}
.description_box.right .h {
  color: #E03837;
}

.polygon {
  flex-shrink: 0;
  width: 22px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .polygon {
    transform: rotate(90deg);
  }
}

/* 本文
==============================*/
.case_single_content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .case_single_content {
    margin-top: 50px;
  }
}
.case_single_content img {
  width: auto;
  margin-top: 40px;
}
.case_single_content h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .case_single_content h2 {
    font-size: 22px;
  }
}
.case_single_content h2 + h2,
.case_single_content h3 + h2,
.case_single_content h4 + h2,
.case_single_content h5 + h2,
.case_single_content p + h2,
.case_single_content figure + h2,
.case_single_content .s_c_cta_box + h2,
.case_single_content ul + h2,
.case_single_content ol + h2 {
  margin-top: 60px;
}
.case_single_content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  border-left: 5px solid #333;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .case_single_content h3 {
    font-size: 20px;
  }
}
.case_single_content h2 + h3,
.case_single_content h3 + h3,
.case_single_content h4 + h3,
.case_single_content h5 + h3,
.case_single_content p + h3,
.case_single_content figure + h3,
.case_single_content .s_c_cta_box + h3,
.case_single_content ul + h3,
.case_single_content ol + h3 {
  margin-top: 45px;
}
.case_single_content h4 {
  display: flex;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
.case_single_content h4::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-top: 15px;
  width: 60px;
  height: 1px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .case_single_content h4 {
    font-size: 18px;
  }
  .case_single_content h4::before {
    width: 30px;
  }
}
.case_single_content h2 + h4,
.case_single_content h3 + h4,
.case_single_content h4 + h4,
.case_single_content h5 + h4,
.case_single_content p + h4,
.case_single_content figure + h4,
.case_single_content .s_c_cta_box + h4,
.case_single_content ul + h4,
.case_single_content ol + h4 {
  margin-top: 30px;
}
.case_single_content h5 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .case_single_content h5 {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.case_single_content h2 + h5,
.case_single_content h3 + h5,
.case_single_content h4 + h5,
.case_single_content h5 + h5,
.case_single_content p + h5,
.case_single_content figure + h5,
.case_single_content .s_c_cta_box + h5,
.case_single_content ul + h5,
.case_single_content ol + h5 {
  margin-top: 30px;
}
.case_single_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
.case_single_content p mark {
  font-weight: 700;
  background: linear-gradient(0deg, rgb(246, 209, 201) 30%, rgba(246, 209, 201, 0) 30%);
}
.case_single_content p strong {
  font-weight: 700;
}
.case_single_content p a {
  color: #E03837;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .case_single_content p {
    font-size: 16px;
  }
}
.case_single_content h2 + p,
.case_single_content h3 + p,
.case_single_content p + p,
.case_single_content figure + p,
.case_single_content .s_c_cta_box + p,
.case_single_content ul + p,
.case_single_content ol + p {
  margin-top: 30px;
}
.case_single_content h4 + p,
.case_single_content h5 + p,
.case_single_content p.has-medium-font-size + p {
  margin-top: 15px;
}
.case_single_content figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .case_single_content figure figcaption {
    line-height: 1.5em;
  }
}
.case_single_content h2 + figure,
.case_single_content h3 + figure,
.case_single_content p + figure,
.case_single_content figure + figure,
.case_single_content .s_c_cta_box + figure,
.case_single_content ul + figure,
.case_single_content ol + figure {
  margin-top: 30px;
}
.case_single_content h4 + figure,
.case_single_content h5 + figure {
  margin-top: 15px;
}
.case_single_content > ul, .case_single_content ol {
  list-style: initial;
  padding-left: 1.5em;
}
.case_single_content > ul > li, .case_single_content ol > li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .case_single_content > ul > li, .case_single_content ol > li {
    margin-bottom: 5px;
  }
}
.case_single_content > ol {
  list-style: decimal;
}
.case_single_content h2 + ul,
.case_single_content h3 + ul,
.case_single_content p + ul,
.case_single_content figure + ul,
.case_single_content .s_c_cta_box + ul,
.case_single_content ul + ul,
.case_single_content ol + ul {
  margin-top: 30px;
}
.case_single_content h4 + ul,
.case_single_content h5 + ul {
  margin-top: 15px;
}
.case_single_content h2 + ol,
.case_single_content h3 + ol,
.case_single_content p + ol,
.case_single_content figure + ol,
.case_single_content .s_c_cta_box + ol,
.case_single_content ul + ol,
.case_single_content ol + ol {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .case_single_content h2 + ol,
.case_single_content h3 + ol,
.case_single_content p + ol,
.case_single_content figure + ol,
.case_single_content .s_c_cta_box + ol,
.case_single_content ul + ol,
.case_single_content ol + ol {
    margin-top: 20px;
  }
}
.case_single_content h4 + ol,
.case_single_content h5 + ol {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .case_single_content h4 + ol,
.case_single_content h5 + ol {
    margin-top: 10px;
  }
}
.case_single_content p.has-medium-font-size + ul, .case_single_content p.has-medium-font-size + ol, .case_single_content p.has-medium-font-size + figure {
  margin-top: 10px;
}

/* SNSシェア
==============================*/
.sns_area {
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 37px 0;
  border: 1px solid #333;
  margin-top: 80px;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .sns_area {
    padding: 20px 0;
    margin-top: 50px;
    gap: 20px 32px;
  }
}
.sns_area p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  margin-right: 13px;
}
@media screen and (max-width: 767px) {
  .sns_area p {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}
.sns_area a {
  width: 40px;
  height: 40px;
}

/* その他の導入事例
==============================*/
.case_rand_area_wrap {
  padding: 80px 20px 100px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .case_rand_area_wrap {
    padding: 40px 20px 80px;
  }
}

.case_rand_area {
  max-width: 1240px;
  margin: auto;
}
.case_rand_area .section_ttl {
  color: #fff;
  margin-bottom: 30px;
}

.column_list {
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .column_list {
    gap: 20px;
    flex-direction: column;
  }
}
.column_list > li {
  width: calc(33.3333333333% - 22px);
}
@media screen and (max-width: 767px) {
  .column_list > li {
    width: 100%;
  }
}
.column_list > li a {
  display: block;
  height: 100%;
  padding: 23px;
  border: 1px solid #fff;
  transition: 0.3s;
}
.column_list > li a .a_eye_catch {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 376/211;
  align-items: center;
  display: flex;
  background-color: #fff;
  transition: 0.3s;
}
.column_list > li a .a_eye_catch img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  width: 100%;
  height: auto;
}
.column_list > li a .c_list_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
.column_list > li a .c_rand_name {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media (hover: hover) {
  .column_list > li a:hover .a_eye_catch {
    opacity: 0.6;
  }
  .column_list > li a:hover .c_list_ttl {
    color: #E03837;
  }
  .column_list > li a:hover .c_rand_name {
    color: #E03837;
  }
}

@media screen and (max-width: 604px) {
  .p_description_box .p_description_inner .p_d_cta .p_d_cta_txt br {
    display: none;
  }
  .p_description_box .p_description_inner .p_d_cta .p_d_cta_btn a {
    padding: 16px 8px;
  }
}