/*-------------------------
  ブログ記事（PC）
-------------------------*/
.mainview {
  width: 100%;
  height: 320px;
  background-image: url(../../assets/img/blog-default-thumbnail.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.mainview::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mainview-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.mainview-titlewrap {
  z-index: 1;
  color: #FFF;
}

.mainview-title {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.484;
}

.mainview-title-ja {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.458;
  text-indent: 1em;
  position: relative;
}

.mainview-title-ja::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translate(0, -50%);
}

.mainview-titlewrap h1 {
  margin-top: 36px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
}

.mainview-tag-wrap {
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.mainview-tag {
  min-width: 150px;
  padding: 4px 10px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  margin-right: 16px;
}

.mainview-date {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}

.blog-content-wrap {
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px;
  column-gap: 48px;
}

.blog-article {
  flex-basis: 73.5%;
}

/* パンくず */
.breadcrumb-section {
  margin: 75px 15px 10px 15px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5em;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #333;
  padding-top: 20px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item.nowrap {
  white-space: nowrap;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s;
}

.breadcrumb-item a:hover {
  color: #757575;
}

.breadcrumb-item::after {
  content: ">";
  margin-left: 0.5em;
  color: #6c757d;
}

.breadcrumb-item.active {
  color: #6c757d;
  pointer-events: none;
}

.breadcrumb-item.active::after {
  content: "";
}

/* 記事内メニュー */
.article-menu {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 48px;
}

.article-menu-header {
  display: flex;
  align-items: center;
}

.article-menu-icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  background-color: #000;
  display: flex;
  align-items: center;
}

.article-menu-icon .fa-list {
  color: #FFF;
  font-size: 15.5px;
  width: 15.5px;
  height: 15.5px;
}

.article-menu-btn .fa-solid {
  color: #808080;
  font-size: 16px;
  margin-left: 0.25em;
}

.article-menu-title {
  margin-left: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.article-menu-btn {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
  color: #808080;
  font-size: 14px;
  font-weight: 900;
  line-height: 175%;
  cursor: pointer;
  transition: all, 0.5s;
}

.article-menu-btn:hover {
  opacity: 0.5;
}

.article-menu-btn svg {
  margin-left: 5px;
}

.article-menu-list ul {
  margin: 8px 0 16px 16px;
}

.article-menu-list ul>li>ul {
  margin-left: 16px;
}

.article-menu-list li {
  margin-bottom: 8px;
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}

.article-menu-list ul>li:before {
  content: "";
  width: 9px;
  height: 10px;
  background-image: url(../../assets/img/li-1.svg);
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}

.article-menu-list ul>li>ul>li:before {
  content: "";
  width: 9px;
  height: 10px;
  background-image: url(../../assets/img/li-2.svg);
  background-size: contain;
  position: absolute;
  top: 9px;
  left: 0;
}

.btn-to-list {
  margin-top: 32px;
  padding-bottom: 16px;
  text-align: right;
}

.btn-to-list-a {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  display: inline-block !important;
}

.btn-to-list-a:hover {
  color: #757575 !important;
}

.btn-to-list-a .fa-arrow-right {
  font-size: 16px;
  margin-left: 0.25em;
}

/* 記事のCSS */
.article-contents {
  font-size: 16px;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 175%;
  word-break: break-all;
}

.article-tag-wrap {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}

.article-tag {
  margin-right: 16px;
  min-width: 150px;
  background-color: #000;
  padding: 4px 10px;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.article-date {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.article-contents h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 8px 0 6px 0;
  position: relative;
  border-bottom: 6px solid #000;
}

.article-contents h2::after {
  content: '';
  width: 100px;
  height: 6px;
  background-color: #000;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.article-contents h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 16px;
  position: relative;
}

.article-contents h3::before {
  content: '';
  width: 8px;
  height: 30px;
  background-color: #808080;
  position: absolute;
  top: 0;
  left: 0;
}

.article-contents h3.h3-thumbsup {
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  padding-left: 56px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  margin-bottom: -24px;
}

.article-contents h3.h3-thumbsup::before {
  content: '';
  width: 48px;
  height: 48px;
  background-image: url(../../assets/img/thumbs-up-solid.svg);
  background-color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
}

.article-contents h4 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-bottom: 4px;
  color: #808080;
  border-bottom: 1px solid #808080;
}

.article-contents hr {
  padding: 0;
  border: 0;
  margin-top: 24px;
  margin-bottom: 24px;
  height: 8px;
  background-image: repeating-linear-gradient(-45deg, #808080 0, #808080 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

.article-contents p {
  margin-bottom: 1em;
}

.article-contents a:not(.relative-wrap) {
  display: inline;
  color: #000;
  font-weight: 900;
  transition: all 0.5s;
}

.article-contents a:not(.relative-wrap):hover {
  color: #757575;
}

.article-contents img {
  max-width: 100%;
  width: 800px;
  border-radius: 8px;
  display: block;
  margin: 24px auto;
  object-fit: contain;
}

.article-contents small {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.article-contents strong,
.article-contents b {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.75;
  background: linear-gradient(transparent 70%, rgba(255, 128, 0, 0.3) 30%);
}

.article-contents blockquote {
  border: 2px solid #000;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.10);
  padding: 32px;
  margin-top: 48px;
  margin-bottom: 24px;
  position: relative;
}

.article-contents blockquote::before {
  content: '';
  width: 75px;
  height: 50px;
  background-image: url(../../assets/img/QuotationMark.svg);
  position: absolute;
  top: -32px;
  left: 32px;
}

.article-contents ul,
.article-contents ol {
  margin: 40px 0 40px 16px;
}

.article-contents ul>li,
.article-contents ol>li {
  margin-bottom: 8px;
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}

.article-contents ul>li>ul,
.article-contents ol>li>ol {
  margin: 8px 0 0 16px;
}

.article-contents ul>li:before {
  content: "";
  width: 9px;
  height: 10px;
  background-image: url(../../assets/img/li-1.svg);
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}

.article-contents ul>li>ul>li:before {
  content: "";
  width: 9px;
  height: 10px;
  background-image: url(../../assets/img/li-2.svg);
  background-size: contain;
  position: absolute;
  top: 9px;
  left: 0;
}

.article-contents ol {
  counter-reset: item;
}

.article-contents ol>li {
  counter-increment: item;
}

.article-contents ol>li:not(ol > li > ol > li):before {
  position: absolute;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  content: counter(item) "";
  left: -5px;
  top: 4px;
  color: #fff;
  width: 16px;
  height: 16px;
  font-size: 10px;
  text-align: center;
  border-radius: 100%;
  box-sizing: border-box;
  line-height: 6px;
  background: #000;
  padding: 5px;
}

.article-contents ol>li>ol {
  counter-reset: item2;
}

.article-contents ol>li>ol>li {
  counter-increment: item2;
  position: relative;
}

.article-contents ol>li>ol>li:before {
  position: absolute;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  content: counter(item2, lower-alpha) ".";
  left: 0;
  top: 4px;
  color: #000;
  width: 16px;
  height: 16px;
  font-size: 14px;
  line-height: 1;
}

.article-contents table {
  margin-top: 24px;
  margin-bottom: 24px;
  line-height: 1.5;
  border-bottom: 4px solid #000;
  table-layout: fixed;
  width: 100%;
}

.article-contents thead {
  background-color: #F4FBF8;
}

.article-contents tbody {
  border-top: 4px solid #000;
}

.article-contents th {
  text-align: center;
}

.article-contents tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #808080;
}

.article-contents th,
td {
  padding: 8px 16px;
  vertical-align: middle;
}

.article-contents span[style*="text-decoration: underline;"] {
  text-decoration: none !important;
  background: linear-gradient(transparent 70%, #cfe8de 0%);
  display: inline;
}

/* 関連記事部分 */
.relative-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  background-color: #F5F5F5;
  width: 100%;
  transition: all, 0.5s;
  cursor: pointer;
}

.relative-wrap .relative-left {
  flex: 1;
  padding: 24px 16px 24px 24px;
}

.relative-wrap .relative-right {
  width: 313px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  transition: all, 0.5s;
}

.relative-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}

.relative-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.relative-right img {
  height: 100%;
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  margin: 0;
}

.relative-right .relative-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 24px 0px 0px 0px;
  background-color: #000;
  color: #FFF;
  font-size: 14px;
  font-weight: 900;
  padding: 4px 16px 4px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.relative-btn .fa-arrow-right {
  color: #FFF;
  font-size: 16px;
  margin-left: 0.25em;
}

.relative-wrap:hover {
  background-color: rgba(38, 177, 112, 0.05);
}

.relative-wrap:hover .relative-right {
  opacity: 0.5;
}

/* CTA部分 */

.meeting-cta-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 12px;
  padding: 8px 0 6px 0;
  position: relative;
  border-bottom: 6px solid #000;
}

.meeting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 10px;
}

.meeting-image {
  object-fit: cover;
  height: 100%;
}

.meeting-image img {
  margin: 0;
  border-radius: 0;
}

.meeting-description {
  padding: 12px;

}

.content-cta {
  margin-top: 24px;
  margin-bottom: 24px;
  border-bottom: 6px solid #000;
}

.content-cta .title {
  font-family: 'Noto Sans JP', sans-serif;
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  background-color: #000;
  text-align: center;
  padding: 12px;
}

.content-cta .body-cta {
  display: flex;
  column-gap: 32px;
  padding: 32px;
  background-color: rgba(38, 177, 112, 0.05);
}

.content-cta .box-img {
  flex-basis: 50%;
}

.content-cta .box-img img {
  max-width: 100%;
  object-fit: contain;
  margin: 0;
}

.content-cta .box-info {
  flex-basis: 50%;
}

.content-cta ul {
  margin: 0;
}

.content-cta .bottom-bttn {
  margin-top: 16px;
  width: calc(100% - 21px);
  position: relative;
  height: 48px;
  background-color: #000;
  transition: all, 0.5s;
  text-align: center;
}

.content-cta .bottom-bttn span {
  line-height: 58px;
}

.content-cta .bottom-bttn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 21px solid #000;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translate(0, -50%);
  transition: all, 0.5s;
}

.content-cta .bottom-bttn a {
  height: 48px;
  width: 100%;
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
}

.content-cta .bottom-bttn:hover {
  background-color: #757575;
  color: #FFF;
}

.content-cta .bottom-bttn:hover a {
  color: #FFF;
}

.content-cta .bottom-bttn:hover::after {
  border-left: 21px solid #757575;
}

.content-cta .bottom-bttn .fa-arrow-right {
  width: 21px;
  height: 24px;
  margin-left: 0.25em;
  color: #FFF;
}

.top-mini-cta a {
  font-weight: 500 !important;
}

.article-contents .pdf {
  border-radius: 16px 16px 0px 0px;
  width: 380px;
  margin: 24px auto 24px auto;
  filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.10));
}

.pdf .fa-arrow-right {
  font-size: 20px;
  margin-left: 0.25em;
}

.article-contents .pdf-img {
  border-radius: 0%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0 !important;
}

.article-contents .pdf a {
  display: block !important;
  background-color: #000;
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  border-radius: 0px 0px 16px 16px;
  text-align: center;
  padding: 10px;
}

.article-contents .pdf a:hover {
  color: #FFF;
  background-color: #757575;
}

.article-contents .pdf-img.hovered {
  opacity: 0.5;
  transition: all 0.5s;
}

/* hubspot 埋め込み */
.hbspt-form {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

/*-------------------------
  ブログ記事（タブレット）
-------------------------*/
@media screen and (max-width: 900px) {
  .blog-content-wrap {
    flex-direction: column;
    margin-right: 18px;
    margin-left: 18px;
  }

  .blog-article {
    margin-bottom: 48px;
  }
}

/*-------------------------
  ブログ記事（SP）
-------------------------*/
@media screen and (max-width: 768px) {
  .mainview {
    height: auto;
    min-height: 390px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
  }

  .breadcrumb {
    font-size: 12px;
    padding-top: 0;
  }

  .blog-content-wrap {
    margin-right: 0;
    margin-left: 0;
  }

  .mainview-titlewrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .body-cta {
    flex-direction: column;
  }

  .content-cta .box-img img {
    margin-bottom: 32px;
  }

  .relative-wrap {
    flex-direction: column;
  }

  .relative-wrap .relative-left {
    flex-basis: 100%;
    padding: 24px 24px 16px 24px;
  }

  .relative-wrap .relative-right {
    width: 100%;
  }

  .article-contents .pdf {
    width: 100%;
  }

  .meeting-grid {
  grid-template-columns: 1fr;
}

  /* hubspot 埋め込み */
  .hbspt-form {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
}