@charset "UTF-8";
/**
 * mixins and functions
 * @version 1.0
 */
/* ------------------------
wp content
------------------------ */
.tag-service-wrap {
  width: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .tag-service-wrap {
    margin-bottom: 30px;
  }
}

.tag-service {
  border: 1px solid #b8ced1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
}
.tag-service dt,
.tag-service dd {
  padding: 0.3em 1em;
}
.tag-service dt {
  min-width: 100px;
  color: #618e93;
  background: #f4f7f8;
  white-space: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tag-service dd .tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
.tag-service dd .tag-list li {
  padding-right: 0.5em;
  position: relative;
}
.tag-service dd .tag-list li::after {
  content: "/";
  font-size: 1em;
  padding-left: 0.5em;
  opacity: 0.4;
}
.tag-service dd .tag-list li:last-of-type {
  padding-right: 0;
  margin-right: 0;
}
.tag-service dd .tag-list li:last-of-type::after {
  display: none;
}
.tag-service.is-single-page {
  border-radius: 100vh;
  margin-top: 0;
}
.tag-service.is-single-page dt {
  color: #FFF;
  background: #88aeb2;
}
@media screen and (max-width: 768px) {
  .tag-service {
    border-radius: 3px;
    margin-top: 15px;
  }
  .tag-service dt,
  .tag-service dd {
    font-size: 11px;
  }
  .tag-service dt {
    min-width: 80px;
  }
  .tag-service dd .tag-list li {
    padding-right: 0.3em;
  }
  .tag-service dd .tag-list li::after {
    padding-left: 0.3em;
  }
  .tag-service dd .tag-list li:last-of-type {
    padding-right: 0;
    margin-right: 0;
  }
  .tag-service dd .tag-list li:last-of-type::after {
    display: none;
  }
}

/* --------------------------------
採用事例 一覧ページ
-------------------------------- */
.l-caseStudy-list01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.l-caseStudy-list01__block {
  width: 48%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
.l-caseStudy-list01__block a {
  color: inherit;
}
.l-caseStudy-list01__head {
  width: 100%;
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  padding-bottom: 25px;
}
.l-caseStudy-list01__head .image {
  width: 200px;
  min-width: 200px;
  height: 126px;
  overflow: hidden;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.l-caseStudy-list01__head .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-caseStudy-list01__head .title {
  width: auto;
  font-size: 30px;
  font-weight: 700;
  padding-right: 0.5em;
}
.l-caseStudy-list01__post-list {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .l-caseStudy-list01__post-list {
    margin-bottom: 20px;
  }
}
.l-caseStudy-list01__post-list {
  width: 100%;
  flex-grow: 1;
}
.l-caseStudy-list01__post-item {
  line-height: 1.4;
  padding-bottom: 0.8em;
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}
.l-caseStudy-list01__post-item:last-of-type {
  padding-bottom: 0;
}
.l-caseStudy-list01__post-item {
  padding-left: 0;
  text-indent: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5em;
  position: relative;
}
.l-caseStudy-list01__post-item::before {
  content: "";
  display: block;
  width: 0.5em;
  min-width: 0.5em;
  height: 1em;
  margin-top: 0.26em;
  background-color: #cc3333;
  mask-image: url("/wp-content/themes/elwsc/images/icon/icon_arrow01.svg");
  -webkit-mask-image: url("/wp-content/themes/elwsc/images/icon/icon_arrow01.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center center;
  -webkit-mask-position: center center;
}
.l-caseStudy-list01__post-item a {
  display: block;
  width: 100%;
}
.l-caseStudy-list01__post-item a:hover {
  opacity: 1;
  color: #cc3333;
}
.l-caseStudy-list01__btn {
  width: 100%;
}
.l-caseStudy-list01__btn a {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .l-caseStudy-list01 {
    flex-wrap: wrap;
    gap: 40px;
  }
  .l-caseStudy-list01__block {
    display: block;
    width: 100%;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 20px 20px 30px;
  }
  .l-caseStudy-list01__head {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
  }
  .l-caseStudy-list01__head .image {
    width: 90%;
    min-width: auto;
    height: 38vw;
    margin: auto;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .l-caseStudy-list01__head .title {
    width: 100%;
    font-size: 20px;
    padding-right: 0;
  }
  .l-caseStudy-list01__post-list {
    width: 100%;
  }
  .l-caseStudy-list01__post-item a:hover {
    opacity: 1;
    color: inherit;
  }
  .l-caseStudy-list01__post-item a:active {
    opacity: 1;
    color: #cc3333;
  }
  .l-caseStudy-list01__btn {
    width: 100%;
  }
}

/* --------------------------------
採用事例 タクソノミーページ
-------------------------------- */
.l-taxonomy-case-study {
  padding-bottom: 0;
}

.l-caseStudy-list_tax {
  background: #ecf2f3;
  padding: 60px 0 100px;
  z-index: 1;
  position: relative;
}
.l-caseStudy-list_tax__item {
  background: #FFF;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 60px 60px;
  margin-bottom: 40px;
}
.l-caseStudy-list_tax__item:last-of-type {
  margin-bottom: 0;
}
.l-caseStudy-list_tax__item .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 30px;
}
.l-caseStudy-list_tax__item .head .text {
  width: auto;
}
.l-caseStudy-list_tax__item .head .text .title {
  font-size: 30px;
  line-height: 1.4;
}
.l-caseStudy-list_tax__item .head .image {
  width: 100%;
  max-width: 280px;
  height: 208px;
  background: #eeeeee;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999999;
}
.l-caseStudy-list_tax__item .head .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-caseStudy-list_tax__content {
  position: relative;
}
.l-caseStudy-list_tax .technology {
  margin-top: 20px;
  color: #666666;
}
.l-caseStudy-list_tax .technology:not(:has(.item)) {
  display: none;
}
.l-caseStudy-list_tax .technology .item {
  padding-bottom: 0.5em;
}
.l-caseStudy-list_tax .technology .item:last-of-type {
  padding-bottom: 0;
}
.l-caseStudy-list_tax .read-btn {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .l-caseStudy-list_tax {
    padding: 30px 0 100px;
  }
  .l-caseStudy-list_tax__item {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 30px 20px 35px;
    margin-bottom: 30px;
  }
  .l-caseStudy-list_tax__item:last-of-type {
    margin-bottom: 0;
  }
  .l-caseStudy-list_tax__item .head {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
  }
  .l-caseStudy-list_tax__item .head .text {
    width: 100%;
    max-width: 100%;
  }
  .l-caseStudy-list_tax__item .head .text .title {
    font-size: 20px;
    line-height: 1.4;
  }
  .l-caseStudy-list_tax__item .head .image {
    width: 80%;
    max-width: 100%;
    margin: auto;
    height: 46vw;
    border-radius: 10px;
  }
  .l-caseStudy-list_tax .technology {
    margin-top: 10px;
  }
  .l-caseStudy-list_tax .technology .item {
    padding-bottom: 0.2em;
  }
  .l-caseStudy-list_tax .read-btn {
    padding-top: 25px;
  }
}

/* --------------------------------
採用事例 詳細ページ
-------------------------------- */
.l-postType-case_study {
  /* タクソノミページのコンテンツ */
}
.l-postType-case_study h2 {
  background: none;
  margin: 0;
  padding: 0;
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
}
.l-postType-case_study h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #88aeb2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-postType-case_study h2 .text {
  display: inline-block;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  background: #88aeb2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0.5em 1em;
  z-index: 1;
}
.l-postType-case_study h2:first-of-type {
  margin-top: 0;
}
.l-postType-case_study h2.before .text, .l-postType-case_study h2.dev .text, .l-postType-case_study h2.after .text {
  display: inline-block;
  padding-left: 2.5em;
  position: relative;
}
.l-postType-case_study h2.before .text::before, .l-postType-case_study h2.dev .text::before, .l-postType-case_study h2.after .text::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 100%;
  background-color: #FFF;
  mask-image: url("/wp-content/themes/elwsc/images/icon/icon_doc.svg");
  -webkit-mask-image: url("/wp-content/themes/elwsc/images/icon/icon_doc.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 80% auto;
  -webkit-mask-size: 80% auto;
  mask-position: center center;
  -webkit-mask-position: center center;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0.8em;
  transform: translateY(-50%);
}
.l-postType-case_study h2.dev .text::before {
  mask-image: url("/wp-content/themes/elwsc/images/icon/icon_setting.svg");
  -webkit-mask-image: url("/wp-content/themes/elwsc/images/icon/icon_setting.svg");
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
}
.l-postType-case_study h2.after .text::before {
  mask-image: url("/wp-content/themes/elwsc/images/icon/icon_star.svg");
  -webkit-mask-image: url("/wp-content/themes/elwsc/images/icon/icon_star.svg");
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .l-postType-case_study h2 {
    background: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .l-postType-case_study h2::after {
    height: 1px;
  }
  .l-postType-case_study h2 .text {
    font-size: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0.5em 0.8em;
  }
  .l-postType-case_study h2:first-of-type {
    margin-top: 0;
  }
}
.l-postType-case_study .tax-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.l-postType-case_study .tax-content ul {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .l-postType-case_study .tax-content ul {
    margin-bottom: 20px;
  }
}
.l-postType-case_study .tax-content ul li {
  line-height: 1.4;
  padding-bottom: 0.8em;
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}
.l-postType-case_study .tax-content ul li:last-of-type {
  padding-bottom: 0;
}
.l-postType-case_study .tax-content ul li {
  list-style: none;
}
.l-postType-case_study .tax-content ul li::before {
  content: "・";
  display: inline;
}
.l-postType-case_study .tax-content ol {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .l-postType-case_study .tax-content ol {
    margin-bottom: 20px;
  }
}
.l-postType-case_study .tax-content ol {
  padding-left: 1.5em;
}
.l-postType-case_study .tax-content ol li {
  line-height: 1.4;
  padding-bottom: 0.8em;
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}
.l-postType-case_study .tax-content ol li:last-of-type {
  padding-bottom: 0;
}
.l-postType-case_study .tax-content ol li {
  list-style: normal;
  padding-left: 0;
  text-indent: 0;
}
/*# sourceMappingURL=index.css.map */