/****** ここから導入事例用 *******/
/***** 枠組み *****/
.ins-wrap {
  width: 96%;
  max-width: 1100px;
  padding: 20px 0 40px;
  margin: 0 auto;
}
.ins-wrap,
.ins-wrap * {
  box-sizing: border-box;
}

/***** メイン *****/
#primary {
  float: left;
  width: 100%;
}
#primary .postlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#primary .postlist::after {
  clear: both;
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  content: "";
}

/***** 記事一覧 *****/
.pre-wrap .post-box {
  position: relative;
  display: inline-block;
  width: calc(33% - 11px);
  margin: 25px 20px 25px 0;
  vertical-align: top;
  color: #3c3c3c;
  background-color: #ffffff;
  border: 1px #d5d5d5 solid;
  border-radius: 7px;
  transition: background-color 0.2s ease;
}
.pre-wrap .post-box:nth-child(3n) {
  margin-right: 0;
}
.pre-wrap .post-box:hover {
  text-decoration: none;
  background-color: #f3fdfb;
  border-color: #14b4b4;
}
.pre-wrap .post-box:hover .postlist-title {
  text-decoration: none !important;
}
.pre-wrap .post-box .post-image {
  position: relative;
  height: 188px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.pre-wrap .post-box .post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.pre-wrap .post-box .postlist-info {
  position: relative;
  height: calc(100% - 188px);
  padding: 25px 30px;
  overflow: hidden;
  border-radius: 0 3px 3px 0;
}
.pre-wrap .post-box .postlist-info::after {
  position: absolute;
  right: -15px;
  bottom: 15px;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent transparent #14b4b4;
  border-style: solid;
  border-width: 30px 30px 0;
  border-radius: 0 5px 0 0;
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.pre-wrap .post-box .postlist-title {
  margin: 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
}
.pre-wrap .post-box .post-intro {
  display: none;
}
.pre-wrap .post-box:hover .postlist-title {
  text-decoration: underline;
}
.pre-wrap .post-box .post-category {
  margin-top: 15px;
}
.pre-wrap .post-box .post-category > li {
  display: inline-block;
  width: 70px;
  padding: 1px 0;
  margin: 0 5px 5px 0;
  font-size: 12px;
  text-align: center;
  background: #efefef;
}

/* 1つ目は大きく表示 */
.pre-wrap .ins-wrap > .post-box {
  display: table;
  width: 100%;
  margin: 0 0 35px;
}
.pre-wrap .ins-wrap > .post-box::after {
  clear: both;
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  content: "";
}
.pre-wrap .ins-wrap > .post-box .post-image,
.pre-wrap .ins-wrap > .post-box .postlist-info {
  display: table-cell;
  padding: 50px 63px 30px;
  vertical-align: middle;
}
.pre-wrap .ins-wrap > .post-box .post-image {
  width: 50%;
  height: 337px;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 5px 0 0 5px;
}
.pre-wrap .ins-wrap > .post-box .post-image > img {
  width: 131%;
  margin-left: -36px;
}
.pre-wrap .ins-wrap > .post-box .postlist-title {
  margin: 15px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
.pre-wrap .ins-wrap > .post-box .post-intro {
  display: block;
  margin-bottom: 20px;
}
.pre-wrap .ins-wrap > .post-box .postlist-info::before {
  display: block;
  width: 80px;
  padding-top: 2px;
  font-size: 13px;
  font-weight: bold;
  color: #38acab;
  text-align: center;
  content: "PICK UP!";
  border: 2px #38acab solid;
}

@media screen and (width <= 960px) {
  .pre-wrap .post-box {
    width: calc(33% - 12px);
  }
  .pre-wrap .ins-wrap > .post-box .post-image,
  .pre-wrap .ins-wrap > .post-box .postlist-info {
    padding: 25px 30px;
  }
  .pre-wrap .ins-wrap > .post-box .post-image > img {
    width: 209%;
    margin-top: -40px;
    margin-bottom: -33px;
    margin-left: -161px;
  }
  .pre-wrap .ins-wrap > .post-box .post-intro {
    display: block;
    margin-bottom: 15px;
  }
}
@media screen and (width <= 670px) {
  .pre-wrap .post-box {
    margin: 25px 0;
  }
  .pre-wrap .ins-wrap > .post-box .post-image > img {
    width: 140%;
    margin-top: -27px;
    margin-left: -50px;
  }
}

/***** 個別記事 *****/
.post-single .post-single-box {
  width: 80%;
  margin: 13px 0 0;
  margin: 0 auto;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}
.post-single .post-single-box img {
  max-width: 100%;
  height: auto;
}
.post-single .post-single-box .post-single-header {
  padding: 30px 30px 0;
  color: #3c3c3c;
}
.post-single .post-single-box .post-single-date * {
  font-size: 13px;
  vertical-align: middle !important;
}
.post-single .post-single-box .post-single-date .single-date {
  margin-right: 10px;
}
.post-single .post-single-box .post-single-title {
  margin: 20px auto 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #14b4b4;
}
.post-single .post-single-box .post-single-txt {
  padding: 30px;
}
.post-single .post-single-box .post-single-txt p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}
.post-single .post-single-box .post-single-txt .ins-spacer-top {
  margin-top: 25px;
}
.post-single .post-single-box .post-single-txt img {
  margin: 30px auto 25px;
}
.post-single .post-single-box .post-single-image {
  height: 430px;
  margin-top: 25px;
  overflow: hidden;
  line-height: 0;
}
.post-single .post-single-box .post-single-image img {
  width: 100%;
  height: auto;
}

/* 見出し */
.post-single .post-single-box .post-single-txt h2 {
  padding: 20px 30px;
  margin: 30px -30px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #ffffff;
  background-color: #14b4b4;
}

/* 小見出し */
.post-single .post-single-box .post-single-txt h3 {
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #3c3c3c;
}

/* 最初にくる、最後にくる、○○のあとの○○ */
.post-single .post-single-box .post-single-title:last-child {
  margin-bottom: 0;
}
.post-single .post-single-box .post-single-txt h2:first-child,
.post-single .post-single-box .post-single-txt h3:first-child,
.post-single .post-single-box .post-single-txt img:first-child,
.post-single .post-single-box .post-single-txt h2 + img,
.post-single .post-single-box .post-single-txt img + h2,
.post-single .post-single-box .post-single-txt img + h3 {
  margin-top: 0;
}
.post-single .post-single-box .post-single-txt h3 + img {
  margin-top: 10px;
}
.post-single .post-single-box .post-single-txt h2:last-child,
.post-single .post-single-box .post-single-txt h3:last-child {
  margin-bottom: 0;
}
.post-single .post-single-box .post-single-txt img:last-child {
  margin-bottom: -5px;
}

/* 会社プロフィール */
.post-single-prttl,
.post-single-pr {
  color: #3c3c3c;
}
.post-single-prttl {
  margin: 0 30px 10px;
  font-weight: bold;
}
.post-single-pr {
  margin: 0 30px 30px;
  line-height: 1.8;
}
.post-single-pr dt,
.post-single-pr dd {
  display: inline-block;
  vertical-align: top;
}
.post-single-pr dt {
  width: 13%;
}
.post-single-pr dd {
  width: 87%;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.post-single-pr dd::before {
  margin-right: 0.3em;
  content: "：";
}

/***** ページャー（一覧系） *****/
.page-navlist {
  margin: 15px auto 10px;
  text-align: center;
}
.page-navlist a,
.page-navlist span {
  display: inline-block;
  vertical-align: middle;
}
.page-navlist a,
.page-navlist .current {
  min-width: 2em;
  padding: 2px 2px 0;
  margin: 0 2px;
  border-radius: 3px;
}
.page-navlist a {
  position: relative;
  background-color: #ffffff;
  border: 1px #e3e3e3 solid;
}
.page-navlist a:hover,
.page-navlist .current {
  color: #ffffff;
  text-decoration: none;
  background-color: #3296d2;
  border-color: #3296d2;
}
.page-navlist .next,
.page-navlist .prev {
  padding: 2px 15px 0;
}
.page-navlist .next::after,
.page-navlist .prev::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: baseline;
  content: "";
  border-color: #3296d2;
  border-style: solid;
  border-width: 1px 0 0 1px;
}
.page-navlist .next:hover::after,
.page-navlist .prev:hover::before {
  border-color: #ffffff;
}
.page-navlist .prev::before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.page-navlist .next::after {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/***** ページャー（個別記事） *****/
.post-single-pager {
  padding-bottom: 35px;
  text-align: center;
}
.post-single-pager > span,
.post-single-pager a {
  display: inline-block;
  vertical-align: middle;
}
.post-single-pager [hidden] {
  display: none !important;
}
.post-single-pager a,
.post-single-pager .no-navlink {
  padding: 8px 30px 6px;
  margin: 0 10px;
  text-align: center;
  border-radius: 5px;
}
.post-single-pager a {
  color: #3296d2;
  background-color: #ffffff;
  border: 1px #3296d2 solid;
  transition: background-color 0.2s ease;
}
.post-single-pager a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #3296d2;
}
.post-single-pager .next-post a::after,
.post-single-pager .next-post span::after,
.post-single-pager .prev-post a::before,
.post-single-pager .prev-post span::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: baseline;
  content: "";
  border-color: #3296d2;
  border-style: solid;
  border-width: 1px 0 0 1px;
}
.post-single-pager span a:hover::before,
.post-single-pager span a:hover::after {
  border-color: #ffffff;
}
.post-single-pager .prev-post a::before,
.post-single-pager .prev-post span::before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.post-single-pager .next-post a::after,
.post-single-pager .next-post span::after {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* disabled */
.post-single-pager .no-navlink {
  display: inline-block;
  color: #999999;
  background-color: #e3e3e3;
  border: 1px #e3e3e3 solid;
}
.post-single-pager .next-post .no-navlink::after,
.post-single-pager .prev-post .no-navlink::before {
  border-color: #999999;
}

@media screen and (width <= 670px) {
  .post-single .post-single-box {
    width: 100%;
  }
}

/***** CTAバナー *****/
.document-download {
  margin: 0 32px 32px;
  font-size: 16px;
  text-align: left;
}
.document-download-container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 8px 32px 8px 0;
  margin: 0 auto;
  background-color: #168989;
  border-radius: 16px;
}
.document-download-container::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: #007078;
  opacity: 0;
  transition-duration: 0.1s;
}
.document-download-container:hover {
  text-decoration: none;
}
.document-download-container:hover::after {
  opacity: 1;
}
.document-download-container:hover .document-download-image {
  transform: scale(1.02) rotate(3deg);
}
.document-download-left {
  z-index: 1;
  flex-shrink: 0;
  margin-left: 60px;
}
.document-download-heading {
  margin-bottom: 16px;
  color: #ffffff;
}
.document-download-heading .attention {
  color: #ffe041;
}
.document-download-title {
  margin-block: 4px 8px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}
.document-download-right {
  z-index: 1;
}
.document-download-image {
  width: 100%;
  max-width: 570px;
  margin-top: 16px;
  transform: translateY(1px);
  transition: transform 0.15s ease;
}
.document-download-image img {
  width: 100%;
}
.document-download .co-btn-new {
  width: 300px;
  padding-right: 16px;
  line-height: 100%;
}
.document-download .co-btn-new::after {
  width: 16px;
  height: 16px;
  margin: 0;
  background: url(/web/img/common/icon/download_icon_00.png) center / contain
    no-repeat;
  border-top: none;
  border-right: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.document-download-container:hover .co-btn-new {
  top: 2px;
  background-color: #f38423;
  box-shadow: 0 1px #c76612;
}

@media screen and (width <= 940px) {
  .document-download-right {
    order: 1;
    max-width: 360px;
  }
  .document-download-image {
    margin-top: 0;
  }
  .document-download-left {
    order: 2;
    margin: 0;
  }
  .document-download-title {
    font-size: 32px;
    font-weight: 400;
  }
  .document-download-heading {
    margin-bottom: 20px;
  }
  .document-download-container {
    flex-wrap: wrap;
    padding: 32px;
    text-align: center;
  }
}
@media screen and (width <= 670px) {
  .document-download {
    display: none;
  }
}

/***** 関連記事 *****/
.wp-rp-wrap {
  padding: 25px 30px;
  border-top: 1px #e6e6e6 solid;
}
.wp-rp-wrap .related-post-title {
  margin-bottom: 15px;
  font-weight: bold;
  color: #3c3c3c;
}
.wp-rp-wrap .related-post li {
  display: block;
  width: 100%;
  height: 99px;
  margin-top: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px #e3e3e3 solid;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.wp-rp-wrap .related-post li:hover {
  background-color: #f3fdfb;
  border-color: #14b4b4;
}
.wp-rp-wrap .related-post li > a {
  display: table;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.wp-rp-wrap .related-post li > a:hover {
  text-decoration: none;
}
.wp-rp-wrap .related-post li .wp-rp-thumbnail {
  position: relative;
  display: table-cell;
  width: 23%;
  line-height: 0;
  vertical-align: middle;
  border-radius: 3px 0 0 3px;
}
.wp-rp-wrap .related-post li .wp-rp-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.wp-rp-wrap .related-post li .wp-rp-text {
  display: table-cell;
  padding: 0 15px;
  vertical-align: middle;
}
.wp-rp-wrap .related-post li .wp-rp-title,
.wp-rp-wrap .related-post li .wp-rp-excerpt {
  display: block;
}
.wp-rp-wrap .related-post li .wp-rp-title {
  margin: 6px 0 5px;
  font-size: 16px;
  font-weight: bold;
  color: #3c3c3c;
}

/* TAB・SP */
@media screen and (width <= 940px) {
  .pre-wrap .ins-wrap > .post-box .post-image,
  .pre-wrap .post-box .post-image,
  .post-single .post-single-box .post-single-image {
    height: auto;
  }
  .pre-wrap .ins-wrap > .post-box .post-image img,
  .pre-wrap .post-box .post-image img,
  .post-single .post-single-box .post-single-image img {
    position: static;
  }
}

/* TAB */
@media screen and (width >= 671px) and (width <= 940px) {
  .ins-wrap {
    padding: 20px 0 30px;
  }
  .pre-wrap .ins-wrap > .post-box .postlist-title {
    font-size: 18px;
  }
  .pre-wrap .post-box .post-image {
    height: 150px;
  }
  #secondary {
    width: 24%;
  }

  /***** 個別記事 *****/
  .post-single .post-single-box {
    margin-bottom: 20px;
  }

  /***** ページャー *****/
  .post-single-pager a,
  .post-single-pager .no-navlink {
    padding: 8px 20px 6px;
  }

  /***** 関連記事 *****/
  .wp-rp-wrap .related-post li .wp-rp-thumbnail {
    width: 34%;
  }
}

/* SP */
@media screen and (width <= 670px) {
  .ins-wrap {
    width: 100%;
    padding: 20px;
  }
  #primary,
  #secondary,
  .pre-wrap .post-box,
  .pre-wrap .ins-wrap > .post-box {
    float: none;
    width: 100%;
  }

  /***** 記事一覧 *****/
  .pre-wrap .post-box,
  .pre-wrap .ins-wrap > .post-box {
    margin: 0 0 20px;
  }
  .pre-wrap .ins-wrap > .post-box .post-image,
  .pre-wrap .ins-wrap > .post-box .postlist-info {
    display: block;
    width: 100%;
  }
  .pre-wrap .post-box .postlist-info {
    height: auto !important;
    padding: 5px 30px 25px;
  }
  .pre-wrap .ins-wrap > .post-box .postlist-info::before {
    margin-top: 20px;
  }
  .pre-wrap .ins-wrap > .post-box .post-image {
    border-radius: 5px 5px 0 0;
  }
  .pre-wrap .ins-wrap > .post-box .postlist-info::after {
    display: none;
  }
  .pre-wrap .ins-wrap > .post-box .postlist-title {
    font-size: 16px;
  }
  .pre-wrap .ins-wrap > .post-box .post-intro {
    margin-bottom: 20px;
  }

  /***** 個別記事 *****/
  .post-single .post-single-box {
    margin: 0 0 20px;
  }
  .post-single .post-single-box .post-single-header {
    padding: 20px 20px 0;
  }
  .post-single .post-single-box .post-single-txt {
    padding: 20px;
  }

  /* 見出し */
  .post-single .post-single-box .post-single-txt h2 {
    margin: 20px -20px;
  }

  /* 会社プロフィール */
  .post-single-prttl {
    margin: 20px 20px 10px;
  }
  .post-single-pr {
    margin: 0 20px;
  }
  .post-single-pr dt {
    display: inline;
  }
  .post-single-pr dt::after {
    margin-left: 3px;
    content: "：";
  }
  .post-single-pr dd {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .post-single-pr dd::before {
    display: none;
  }

  /***** ページャー *****/
  .page-navlist {
    margin: 15px -10px 10px;
  }
  .page-navlist .next,
  .page-navlist .prev {
    padding: 2px 2px 0;
    text-indent: -200px;
  }
  .page-navlist a,
  .page-navlist .current {
    margin: 0 1px;
  }
  .page-navlist .next::after,
  .page-navlist .prev::before {
    position: absolute;
    top: 0.6em;
  }
  .page-navlist .next::after {
    right: 0.7em;
  }
  .page-navlist .prev::before {
    right: 0.4em;
  }
  .post-single-pager a,
  .post-single-pager .no-navlink {
    padding: 5px 10px 3px;
    margin: 0 5px;
    font-size: 12px;
  }
  .post-single-pager {
    margin-top: 30px;
  }
  .post-single-pager span a::before,
  .post-single-pager span span::before {
    width: 7px;
    height: 7px;
  }
  .post-single-pager .top-postlist {
    display: none;
  }
}
.co-topicpath li:not(:last-child)::after {
  margin-right: 7px;
}
.post-single-txt figure {
  text-align: center;
}
