@charset "UTF-8";
/* ===============================
   共通パーツ（投稿ページ専用）
=============================== */
/* 投稿記事内容
------------------------------*/
@media (max-width: 767px) {
  .c-post {
    background: #fff;
  }
}

.c-post-block {
  max-width: 1040px;
  background: #fff;
  margin: 0 auto;
  padding: 80px min(8.3%, 120px);
}
@media (max-width: 767px) {
  .c-post-block {
    padding: 60px 24px;
  }
}

.c-post-header {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .c-post-header {
    padding-bottom: 60px;
  }
}

.c-post-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-post-header__wrapper {
    display: block;
  }
}

.c-post-header__thumbnail {
  width: 46%;
}
@media (max-width: 767px) {
  .c-post-header__thumbnail {
    width: 100%;
  }
}

.c-post-header__content {
  width: 50%;
}
@media (max-width: 767px) {
  .c-post-header__content {
    width: 100%;
    margin-top: 12px;
  }
}

.c-post-header__category {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
}

.c-post-header__heading {
  margin-top: 16px;
  font-size: min(2.4rem, 2.6041666667vw);
  font-weight: 700;
  line-height: 1.6;
  color: #39677E;
}
@media (max-width: 767px) {
  .c-post-header__heading {
    font-size: 2rem;
  }
}

.c-post-meta {
  display: flex;
  align-items: center;
}

.c-post-category {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #047FAC;
  padding-right: 16px;
}

.c-post-category {
  display: flex;
  flex-wrap: wrap;
}
.c-post-category span, .c-post-category a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #39677E;
  border: 1px solid #39677E;
  border-radius: 16px;
  padding: 0.4em 0.7em;
  margin: 0 16px 16px 0;
}
.c-post-category span.active, .c-post-category a.active {
  background: #39677E;
  color: #fff;
}
@media (max-width: 767px) {
  .c-post-category span, .c-post-category a {
    font-size: 1.4rem;
    margin: 0 1.9em 1em 0;
  }
}

.c-post-header__company {
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-post-header__hp {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #39677E;
  text-decoration: underline;
}

.c-post-header__industry {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #555;
}

.c-post-header__status {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F28B7D;
  margin-top: 16px;
}

.c-post-header__status--fin {
  color: #555;
}

.c-post-header__info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.c-post-header__info dt, .c-post-header__info dd {
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
}
.c-post-header__info dt:nth-of-type(n + 2), .c-post-header__info dd:nth-of-type(n + 2) {
  margin-top: 8px;
}
.c-post-header__info dt {
  width: 50px;
}
.c-post-header__info dd {
  width: calc(100% - 50px);
}

.c-post-header__button {
  margin-top: 16px;
}

.c-post-date {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #555;
  padding-left: 16px;
  border-left: 1px solid #E0E0E0;
}

.c-post-title {
  margin-top: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #39677E;
}

.c-post-thumbnail {
  margin-top: 24px;
}
.c-post-thumbnail img {
  width: 100%;
  aspect-ratio: 800/450;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-post-lead {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.c-post-content {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.c-post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  background: #6EA0A5;
  padding: 8px 16px;
  margin: 40px 0;
}
.c-post-content h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #39677E;
  margin: 40px 0;
}
.c-post-content p {
  margin: 40px 0;
}
.c-post-content p:first-child {
  margin-top: 0;
}
.c-post-content ol {
  counter-reset: count 0;
}
.c-post-content ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-post-content ol li::before {
  content: counter(count) ".";
  counter-increment: count 1;
}
.c-post-content ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-post-content ul li::before {
  content: "・";
}

.c-post-button {
  padding: 80px 0 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-post-button {
    padding: 60px 0 150px;
  }
}

/* 目次
------------------------------*/
div#ez-toc-container {
  width: 100%;
  margin: 40px 0;
  padding: 5% 5%;
  background: #FAFBFB;
  border: none;
  font-weight: 500;
}
div#ez-toc-container .ez-toc-title-container p {
  font-size: 2.4rem;
  margin-bottom: 0.6em;
  display: block;
}
div#ez-toc-container ul li {
  border-bottom: 1px solid #E0E0E0;
  text-indent: unset;
  list-style: none;
}
div#ez-toc-container ul li::before {
  display: none;
}
div#ez-toc-container ul li a {
  color: #39677E;
  font-size: 1.6rem;
  padding: 0.5em 0;
}
div#ez-toc-container ul li a::before {
  display: none;
}
@media (max-width: 767px) {
  div#ez-toc-container {
    padding: 12%;
  }
}

/* 関連記事
------------------------------*/
.c-relation__block {
  background: #fff;
  padding: 80px 0;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .c-relation__block {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.c-relation__heading {
  font-size: min(3.2rem, 3.0769230769vw);
  font-weight: 700;
  line-height: 1;
  color: #39677E;
  text-align: center;
}

.c-relation__buttom {
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  .c-relation__buttom {
    padding: 60px 0 150px;
  }
}

.c-relation__button {
  text-align: center;
}

/* ===============================
  導入事例
=============================== */
/* ===============================
  セミナー/イベント
=============================== */
/* セミナー概要
------------------------------*/
.seminar-info {
  margin-top: 40px;
}

.seminar-info__heading {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  background: #6EA0A5;
  color: #fff;
  padding: 6px 16px;
}

.seminar-info__table {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #E0E0E0;
}
.seminar-info__table dt, .seminar-info__table dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 20px 16px;
}
.seminar-info__table dt:not(:last-of-type), .seminar-info__table dd:not(:last-of-type) {
  border-bottom: 1px solid #E0E0E0;
}
.seminar-info__table dt {
  width: 30%;
  background: #FAFBFB;
  border-right: 1px solid #E0E0E0;
  color: #39677E;
  font-weight: 700;
}
.seminar-info__table dd {
  width: 70%;
}

.seminar-info__note {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

.seminar__button {
  text-align: center;
  margin-top: 80px;
}
.seminar__button a {
  max-width: 240px;
}

/* 登壇者
------------------------------*/
.speaker {
  margin-top: 40px;
  padding: 40px;
  background: #FAFBFB;
}
@media (max-width: 767px) {
  .speaker {
    padding: 40px 16px;
  }
}

.speaker__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #39677E;
  padding-bottom: 8px;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 767px) {
  .speaker__title {
    text-align: center;
  }
}

.speaker__header {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.speaker__icon {
  width: 120px;
}
@media (max-width: 767px) {
  .speaker__icon {
    width: 105px;
  }
}

.speaker__info {
  width: calc(100% - 120px);
  padding-left: 24px;
}
@media (max-width: 767px) {
  .speaker__info {
    width: calc(100% - 105px);
  }
}

.speaker__company {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

.speaker__occupation {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 2px;
}

.speaker__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 2px;
}

.speaker__profile {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ===============================
  お知らせ
=============================== */
/* ===============================
  AIナレッジ
=============================== */
.pickup {
  position: relative;
}
.pickup::before {
  content: "";
  position: absolute;
  background: #FAFBFB;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0%;
}
.pickup > * {
  position: relative;
  z-index: 10;
}
/*# sourceMappingURL=post.css.map */