@charset "UTF-8";
:root {
  --black: #1b2228;
  --black_rgb: 27, 34, 40;
  --black2: #6e7c89;
  --gray: #eff3f5;
  --yellow: #f4cd2e;
  --green: #32ad3a;
  --lightgreen: #3db161;
  --middlegreen: #3db061;
  --blue: #0eb6e9;
  --red: #e04f49;
  --white: #fff;
  --deppblue: #27313b;
  --middleblue: #397fc2;
  --fadedorange: #f29d52;
  --aquablue: #00c4ce;
  --textColor: #55616b;
  --radius: 20px;
  --Bebas: "Bebas Neue", sans-serif;
}

.article_wrapper p,
.article_wrapper a,
.article_wrapper span,
.article_wrapper li {
  line-height: 1.8;
}



::input-placeholder {
  font-weight: 200;
  color: #d5d5d5;
}

::placeholder {
  font-weight: 200;
  color: #d5d5d5;
}

::input-placeholder {
  font-weight: 200;
  color: #d5d5d5;
}

/* font */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/anymind/font/BebasNeue-Regular.ttf") format("truetype");
  font-display: block;
}
/* basic width */
.basic_width {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .basic_width {
    padding: 0 24px;
  }
}
/* section title */
.section_title {
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 980px) {
  .section_title {
    font-size: 32px;
  }
}
@media screen and (max-width: 760px) {
  .section_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 420px) {
  .section_title {
    font-size: 24px;
  }
}
/* button */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  border: solid 1px #dce2e8;
  border-radius: 48px;
}
@media screen and (max-width: 640px) {
  .btn {
    padding: 0 16px;
  }
}
.btn.icon {
  gap: 8px;
}
.btn.icon img {
  width: 18px;
}
.btn.fill {
  color: white;
  border-color: white;
}
.btn.hoverBtn {
  will-change: border;
  transition: border 0.2s ease;
}
.btn.hoverBtn:hover {
  border-color: var(--black);
}
.btn.hoverFillBtn {
  will-change: background-color, color;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn.hoverFillBtn img {
  will-change: mix-blend-mode;
  transition: mix-blend-mode 0.2s ease;
}
.btn.hoverFillBtn:hover {
  color: var(--black);
  background-color: white;
}
.btn.hoverFillBtn:hover img {
  mix-blend-mode: difference;
}

/* cover background */
.cover_bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* fix ratio */
.fix_ratio {
  position: relative;
  width: 100%;
}

.fix_ratio::before {
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9. 9/16*100 = 56.25 */
  content: "";
}

.fix_ratio_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* hover opacity (animation) */
.hoverOpacity, ga.post_card:hover, .single .post_link {
  cursor: pointer;
  will-change: opacity;
  transition: opacity 0.2s ease-in-out;
}

.hoverOpacity:hover, ga.post_card:hover, .single .post_link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 760px) {
  .hoverOpacity:hover, ga.post_card:hover, .single .post_link:hover {
    opacity: 1;
  }
}
/* hover scale (animation) */
.hoverScale {
  transition: transform 0.15s ease-in-out;
}

.hoverScale:hover {
  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 760px) {
  .hoverScale:hover {
    transform: none;
  }
}
/* fade in up (animation) */
@keyframes fadeInUp {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
/* fade in down (animation) */
@keyframes fadeInDown {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.titleUp {
  opacity: 0;
  backface-visibility: hidden;
  transform: translateY(30px), translate3d(0, 0, 0);
  animation: titleUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}

@keyframes titleUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.titleDown {
  opacity: 0;
  backface-visibility: hidden;
  transform: translateY(-30px), translate3d(0, 0, 0);
  animation: titleDown 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}

@keyframes titleDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.showUp {
  opacity: 0;
  backface-visibility: hidden;
  transform: translateY(30px), translate3d(0, 0, 0);
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}

/*
 * Single
 */
.hero {
  height: 120px;
  margin-top: 0;
}
g{
  /*
   * post
   */
}
.post_section {
  position: relative;
  z-index: 3;
  display: flex;
  margin: 0 auto 80px;
}
@media screen and (max-width: 760px) {
  .post_section {
    display: block;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 480px) {
  .post_section.basic_width {
    padding: 0;
  }
}
.post_section_wrapper {
  box-sizing: border-box;
  flex: 1;
  max-width: 880px;
  padding: 40px 40px 0;
  margin-left: auto;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid #eef3f7;
  border-radius: 2px;
}
@media screen and (max-width: 760px) {
  .post_section_wrapper {
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .post_section_wrapper {
    padding: 32px 24px 0;
  }
}
.hero_sub_title_wrapper {
  display: block;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .hero_sub_title_wrapper {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .hero_sub_title_wrapper {
    padding: 0 24px;
  }
}
.hero_sub_title {
  margin-right: 64px;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .hero_sub_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 760px) {
  .hero_sub_title {
    margin-right: 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .hero_sub_title {
    font-size: 18px;
  }
}
g{
  /*
   * post details
   */
}
.post_details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post_category {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  color: var(--white);
  background-color: var(--black);
  border-radius: 3px;
}
.post_category.people-ja + .post_category.people-ja {
  margin-left: 8px;
}
@media screen and (max-width: 760px) {
  .post_category {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
.post_category:nth-child(2) {
  margin-left: 8px;
}
@media screen and (max-width: 760px) {
  .post_category:nth-child(2) {
    margin-left: 0;
  }
}
.post_category:only-child {
  margin-right: 0;
}
.post_business {
  padding: 0 10px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  color: var(--white);
  border-radius: 3px;
}
@media screen and (max-width: 760px) {
  .post_business {
    margin-bottom: 8px;
    margin-left: 0;
  }
}
.post_business.AnyMindGroup {
  background-color: #e04f49;
}
.post_business.PublisherGrowth {
  background-color: #3980c3;
}
.post_business.DigitalMarketing {
  background-color: #5cc9ec;
}
.post_business.CreatorGrowth {
  background-color: #ffab2d;
}
.post_business.InfluencerMarketing {
  background-color: #b077e9;
}
.post_business.EcommerceD2C {
  background-color: #3db161;
}
.post_business.HRTech {
  background-color: #90c535;
}
.post_date {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6e7c89;
}
@media screen and (max-width: 760px) {
  .post_date {
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .post_date {
    width: 100%;
    margin-top: 8px;
  }
}
.post_share_link {
  width: 22px;
  margin-left: 16px;
}
@media screen and (max-width: 760px) {
  .post_share_link {
    display: none;
  }
}
.post_share_link.fb {
  margin-left: auto;
}
.post_share_link_sp {
  display: none;
  width: 22px;
  margin-left: 20px;
}
@media screen and (max-width: 760px) {
  .post_share_link_sp {
    display: block;
  }
}
.post_share_link_sp.fb {
  margin-left: auto;
}
.post_share_icon {
  width: 100%;
}
.post_share_icon_sp {
  width: 100%;
}
g{
  /*
   * post content
   */
}
.wp-block-group {
  position: relative;
}
.post_title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .post_title {
    margin-top: 24px;
    font-size: 20px;
  }
}
.post_description {
  margin-top: 24px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5em;
  color: #6e7c89;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .post_description {
    margin-top: 16px;
    font-size: 14px;
  }
}
.post_thumbnail {
  max-width: 100%;
  margin: 24px auto 0;
  border-radius: 2px;
}
@media screen and (max-width: 480px) {
  .post_thumbnail {
    margin: 16px auto 0;
  }
}
.post_content {
  padding-bottom: 40px;
  margin-top: 24px;
  border-bottom: 1px solid #f0f0f1;
}
@media screen and (max-width: 480px) {
  .post_content {
    padding-bottom: 24px;
  }
}
.post_heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}
@media screen and (max-width: 480px) {
  .post_heading {
    font-size: 18px;
  }
}
.blog_heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
}
@media screen and (max-width: 480px) {
  .blog_heading {
    font-size: 20px;
  }
}
.post_sub_heading {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8em;
}
.post_sub_heading .indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 480px) {
  .post_sub_heading {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.blog_sub_heading {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.33em;
}
.blog_sub_heading .indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 480px) {
  .blog_sub_heading {
    font-size: 18px;
    line-height: 1.6em;
  }
}
.post_text {
  font-size: 15px;
  line-height: 1.8em;
  color: var(--textColor);
}
.post_text b,
.post_text strong {
  color: var(--black);
}
.post_text a {
  display: inline;
  color: #469fd6;
  text-decoration: underline;
  word-break: break-all;
}
.post_text .indent {
  display: block;
  padding-left: 1em;
  line-height: 1.8em;
  text-indent: -1em;
}
@media screen and (max-width: 480px) {
  .post_text {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.post_sub_text {
  font-size: 12px;
  line-height: 1.4;
  color: #6e7c89;
}
.blog_question {
  position: relative;
  padding-left: 46px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 560px) {
  .blog_question {
    padding-left: 32px;
    font-size: 14px;
  }
}
.blog_question::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(0.8em - 1px);
  left: 0;
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--black);
}
@media screen and (max-width: 560px) {
  .blog_question::before {
    width: 24px;
  }
}
.post_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 560px) {
  .post_card {
    display: block;
  }
}
.post_card img {
  display: block;
  width: 156px;
  height: auto;
  min-height: 88px;
  object-fit: cover;
}
@media screen and (max-width: 560px) {
  .post_card img {
    width: 100%;
    min-height: 144px;
  }
}
.post_card div {
  width: calc(100% - 172px);
}
@media screen and (max-width: 560px) {
  .post_card div {
    width: 100%;
    margin-top: 16px;
  }
}
.post_img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 2px;
}
.img_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.img_block.two img {
  display: block;
  width: calc(50% - 8px);
  margin-top: 16px;
}
@media screen and (max-width: 560px) {
  .img_block.two img {
    width: calc(50% - 4px);
    margin-top: 8px;
  }
}
.img_block.three img {
  display: block;
  width: calc((100% - 32px) / 3);
  margin-top: 16px;
}
@media screen and (max-width: 560px) {
  .img_block.three img {
    width: calc((100% - 16px) / 3);
    margin-top: 8px;
  }
}
.post_link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  hyphens: auto;
  line-height: 1.8em;
  color: #469fd6;
  text-decoration: underline;
  word-break: break-all;
  overflow-wrap: anywhere;
  transition: opacity 0.2s ease-in-out;
}
.post_gray {
  padding: 24px;
  background-color: #f6f8fa;
  border-radius: 5px;
}
@media screen and (max-width: 560px) {
  .post_gray {
    padding: 16px;
  }
}
.post_black {
  padding: 24px;
  color: var(--white) !important;
  background-color: var(--deppblue);
  border-radius: 5px;
}
.post_black * {
  color: var(--white) !important;
}
.post_black .post_ul li::before, .single .post_black.post_ul li::before {
  background-color: var(--white);
}
@media screen and (max-width: 560px) {
  .post_black {
    padding: 16px;
  }
}
.post_separator {
  margin-top: 32px;
  margin-bottom: 32px;
  border-top: 2px solid #f6f8fa;
}
.post_spacer {
  height: 1px;
  margin: 48px 0 0;
}
.blog_profile {
  display: flex;
  align-items: flex-start;
  padding: 24px;
  margin: 40px auto;
  border: 1px solid #dee5ec;
}
@media screen and (max-width: 767px) {
  .blog_profile {
    display: block;
    margin: 32px auto;
  }
}
.blog_profile_img {
  position: relative;
  width: 240px;
  min-width: 240px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .blog_profile_img {
    width: 100%;
    margin: 0 auto;
  }
}
.blog_profile_logo {
  width: auto;
  width: 140px;
}
.blog_profile_block {
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .blog_profile_block {
    margin-top: 16px;
    margin-left: 0;
  }
}
.blog_profile_block_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
@media screen and (max-width: 940px) {
  .blog_profile_block_top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.blog_profile_block_top .company {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 940px) {
  .blog_profile_block_top .company {
    margin-top: 12px;
  }
}
.blog_profile_block_top .name {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.blog_profile_block_top .position {
  font-style: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.blog_profile_block .description {
  font-size: 14px;
}
.post_ul {
  counter-reset: number 0;
}
.post_ul li {
  position: relative;
  display: block;
  padding-left: 1.5em;
  font-size: 15px;
  line-height: 1.8em;
}
.post_ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(0.9em - 3px);
  left: calc(0.5em - 3px);
  display: block;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--black);
  border-radius: 50%;
}
.post_ol li {
  position: relative;
  display: block;
  padding-left: 1.5em;
  font-size: 15px;
  line-height: 1.8em;
  counter-increment: number 1;
}
.post_ol li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: initial;
  font-weight: bold;
  content: counter(number) ". ";
  border-radius: 50%;
}
.blog_downloads {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 712px) {
  .blog_downloads {
    display: block;
  }
}
.blog_downloads .post_text {
  color: var(--white);
}
.blog_downloads .btn {
  display: block;
  margin-top: 24px;
  background-color: var(--white);
  border: 1px solid var(--white);
}
.blog_downloads .black {
  width: calc(50% - 8px);
  padding: 24px;
  margin-top: 24px;
  color: var(--white);
  background-color: #27313b;
  border-radius: 5px;
}
@media screen and (max-width: 760px) {
  .blog_downloads .black {
    width: 100%;
  }
}
.blog_downloads .black .btn {
  color: #27313b;
}
.blog_downloads .red {
  width: calc(50% - 8px);
  padding: 24px;
  margin-top: 24px;
  color: var(--white);
  background-color: #e04f49;
  border-radius: 5px;
}
@media screen and (max-width: 712px) {
  .blog_downloads .red {
    width: 100%;
  }
}
.blog_downloads .red .btn {
  color: #e04f49;
}
.blog_downloads .file {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background-image: url("/wp-content/themes/anymind/img/icon/blog_clipboard.svg");
}
.blog_downloads .mail {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background-image: url("/wp-content/themes/anymind/img/icon/blog_mail-opened.svg");
}
.post_footer_link {
  font-size: 15px;
  font-weight: 600;
  line-height: 64px;
  color: #469fd6;
}
.post_footer_link_arrow {
  font-size: 20px;
}
gcode:not(.hljs) {
  padding: 2px 3px;
  font-family: monospace;
  color: rgb(23, 43, 77);
  overflow-wrap: break-word;
  white-space: pre-wrap;
  background: #dcdfe4;
  border-radius: 3px;
}
gblockquote {
  position: relative;
  padding: 20px 55px;
  margin: 0;
  background-color: #f6f8fa;
  border-radius: 8px;
}
gblockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: serif;
  font-size: 400%;
  line-height: 1em;
  color: #868a8f;
  content: "“";
}
gblockquote::after {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: serif;
  font-size: 400%;
  line-height: 0;
  color: #868a8f;
  content: "”";
}
g{
  /*
   * latest news
   */
}
.post_latest_news {
  margin-bottom: 56px;
}
@media screen and (max-width: 760px) {
  .post_latest_news {
    margin-bottom: 24px;
  }
}
.post_latest_news_title_wrapper {
  display: flex;
  align-items: center;
}
.post_latest_news_title_border {
  width: 24px;
  height: 4px;
  margin-right: 16px;
  background-color: var(--red);
}
.latest_news_tiles {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media screen and (max-width: 760px) {
  .latest_news_tiles {
    margin-bottom: 24px;
  }
}
.latest_news_tiles .news_tile_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
}
.latest_news_tiles .news_tile_details {
  flex-wrap: wrap;
  align-items: flex-start;
}
.latest_news_tiles .news_tile_title {
  display: box;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.latest_news_tiles .news_tile_date {
  display: block;
  order: 0;
}
.latest_news_tiles .news_tile_business {
  order: 1;
}
.latest_news_tiles .news_tile_category {
  order: 1;
}
g{
  /*
   * CTA
   */
}
.post_cta {
  margin-top: 32px;
}
.post_cta.document {
  box-sizing: border-box;
  background: transparent url("/wp-content/themes/anymind/img/cta_download_b.png") left top no-repeat;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
}
.post_cta.document .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px 32px 0;
  background: transparent url("/wp-content/themes/anymind/img/cta_download_im.png") left center no-repeat;
  background-size: cover;
  background-size: 200px auto;
}
@media screen and (max-width: 1100px) {
  .post_cta.document .inner {
    flex-direction: column;
    background-size: 300px auto;
  }
}
@media screen and (max-width: 1024px) {
  .post_cta.document .inner {
    background-size: 230px auto;
  }
}
@media screen and (max-width: 860px) {
  .post_cta.document .inner {
    padding: 24px 24px 300px;
    background-position: left bottom;
    background-size: auto;
  }
}
@media screen and (max-width: 420px) {
  .post_cta.document .inner {
    background-size: 100%;
  }
}
.post_cta.document .inner_left {
  width: 50%;
  max-width: 402px;
  margin-left: 30%;
}
@media screen and (max-width: 1100px) {
  .post_cta.document .inner_left {
    max-width: none;
    margin-left: 40%;
  }
}
@media screen and (max-width: 860px) {
  .post_cta.document .inner_left {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .post_cta.document .inner_right {
    width: 50%;
    margin-top: 16px;
    margin-left: 40%;
  }
}
@media screen and (max-width: 860px) {
  .post_cta.document .inner_right {
    width: 100%;
    margin-left: 0;
  }
}
.post_cta__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--white);
}
@media screen and (max-width: 420px) {
  .post_cta__title {
    font-size: 20px;
  }
}
.post_cta__text {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8em;
  color: var(--white);
}
.post_cta__btn {
  width: 136px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  color: #27313b;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
}

.post_summary {
  position: relative;
  margin-top: 24px;
}
.post_summary_item {
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-style: solid;
  border-width: 3px;
  border-radius: 9px;
}
.post_summary_item.gray {
  border-color: #dee5ec;
}
.post_summary_item.gray .post_summary_item_left {
  background-color: #eef3f7;
  border-right: 3px solid #dee5ec;
}
.post_summary_item.red {
  border-color: #ffc2c2;
}
.post_summary_item.red .post_summary_item_left {
  background-color: #ffecec;
  border-right: 3px solid #ffc2c2;
}
.post_summary_item_left {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #27313b;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 7px;
}
@media screen and (max-width: 460px) {
  .post_summary_item_left {
    width: 20%;
  }
}
.post_summary_item_right {
  box-sizing: border-box;
  width: 85%;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #27313b;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 7px;
}
@media screen and (max-width: 460px) {
  .post_summary_item_right {
    width: 80%;
  }
}
.post_summary_item_right .post_text {
  font-size: 14px;
  font-weight: 400;
  color: #27313b;
}
.post_summary_connector_line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
}
@media screen and (max-width: 460px) {
  .post_summary_connector_line {
    width: 20%;
  }
}
.post_summary_connector_line hr {
  z-index: 1;
  height: 16px;
  margin: 0;
  border: 2px solid #dee5ec;
}

.post_headline_h2 {
  padding-top: 80px;
  padding-bottom: 16px;
  margin-top: -40px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3em;
  color: var(--black);
  border-bottom: 1px solid #0e1a25;
}
@media screen and (max-width: 460px) {
  .post_headline_h2 {
    font-size: 18px;
  }
}

.post_headline_h2:lang(ja) {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", meiryo, sans-serif;
}

.post_headline_h3 {
  position: relative;
  padding-top: 80px;
  padding-left: 10px;
  margin-top: -40px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--black);
}
.post_headline_h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 4px;
  height: calc(100% - 80px);
  content: "";
  background: #0e1a25;
}
@media screen and (max-width: 460px) {
  .post_headline_h3 {
    font-size: 16px;
  }
}

.post_headline_h3:lang(ja) {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", meiryo, sans-serif;
}

.post_headline_h4 {
  padding-top: 80px;
  margin-top: -40px;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--black);
}
@media screen and (max-width: 460px) {
  .post_headline_h4 {
    font-size: 14px;
  }
}

.post_headline_h4:lang(ja) {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", meiryo, sans-serif;
}

.post_index {
  box-sizing: border-box;
  padding: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
  background-color: #f6f8fa;
  border: 1px solid #dee5ec;
  border-radius: 5px;
}
.post_index_title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color: var(--black);
  text-transform: uppercase;
}
.post_index_outer {
  padding: 0;
  margin: 0 0 1.5em;
  counter-reset: item;
}
.post_index_outer .post_link {
  display: inline;
  font-size: 16px;
  font-weight: 400;
}
.post_index_outer > li {
  padding: 0 0 0 2em;
  margin: 0;
  font-size: 16px;
  line-height: 1.8em;
  color: var(--black);
  text-indent: -1.5em;
  list-style-type: none;
  counter-increment: item;
}
.post_index_outer > li::before {
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: 700;
  text-align: right;
  content: counter(item) ".";
}
.post_index_outer > li > ul {
  padding-left: 20px;
  margin-left: 0;
  text-indent: -1.2em;
  list-style: none;
}
.post_index_outer > li > ul > li {
  list-style-position: inside;
}
.post_index_outer > li > ul > li::before {
  display: inline-block;
  width: 0;
  height: 100%;
  margin-right: -5px;
  margin-left: 20px;
  content: "‐";
}
.post_index_outer > li > ol {
  padding: 0 0 0 1.2em;
  text-indent: 0;
}
.post_index_outer > li > ol > li {
  list-style-type: decimal;
}

.post_content {
  font-size: 15px;
  line-height: 1.8em;
}
.post_content strong {
  font-weight: 700;
}
.post_content a {
  display: inline;
}

.has-black-color {
  color: var(--black);
}
.has-black-color b,
.has-black-color strong {
  color: var(--black);
}

.has-cyan-bluish-gray-color {
  color: #abb8c3;
}
.has-cyan-bluish-gray-color b,
.has-cyan-bluish-gray-color strong {
  color: #abb8c3;
}

.has-white-color {
  color: #fff;
}
.has-white-color b,
.has-white-color strong {
  color: #fff;
}

.has-pale-pink-color {
  color: #f78da7;
}
.has-pale-pink-color b,
.has-pale-pink-color strong {
  color: #f78da7;
}

.has-vivid-red-color {
  color: var(--red);
}
.has-vivid-red-color b,
.has-vivid-red-color strong {
  color: var(--red);
}

.has-luminous-vivid-orange-color {
  color: var(--fadedorange);
}
.has-luminous-vivid-orange-color b,
.has-luminous-vivid-orange-color strong {
  color: var(--fadedorange);
}

.has-luminous-vivid-amber-color {
  color: var(--yellow);
}
.has-luminous-vivid-amber-color b,
.has-luminous-vivid-amber-color strong {
  color: var(--yellow);
}

.has-light-green-cyan-color {
  color: var(--lightgreen);
}
.has-light-green-cyan-color b,
.has-light-green-cyan-color strong {
  color: var(--lightgreen);
}

:root .has-vivid-green-cyan-color {
  color: var(--green);
}
:root .has-vivid-green-cyan-color b,
:root .has-vivid-green-cyan-color strong {
  color: var(--green);
}

.has-pale-cyan-blue-color {
  color: var(--blue);
}
.has-pale-cyan-blue-color b,
.has-pale-cyan-blue-color strong {
  color: var(--blue);
}

.has-vivid-cyan-blue-color {
  color: var(--middleblue);
}
.has-vivid-cyan-blue-color b,
.has-vivid-cyan-blue-color strong {
  color: var(--middleblue);
}

.has-vivid-purple-color {
  color: #9b51e0;
}
.has-vivid-purple-color b,
.has-vivid-purple-color strong {
  color: #9b51e0;
}

p.has-background {
  padding: 1.5em;
}

.has-black-background-color {
  background-color: var(--black);
}
.has-black-background-color b,
.has-black-background-color strong {
  background-color: var(--black);
}

.has-cyan-bluish-gray-background-color {
  background-color: #abb8c3;
}
.has-cyan-bluish-gray-background-color b,
.has-cyan-bluish-gray-background-color strong {
  background-color: #abb8c3;
}

.has-white-background-color {
  background-color: #fff;
}
.has-white-background-color b,
.has-white-background-color strong {
  background-color: #fff;
}

.has-pale-pink-background-color {
  background-color: #f78da7;
}
.has-pale-pink-background-color b,
.has-pale-pink-background-color strong {
  background-color: #f78da7;
}

.has-vivid-red-background-color {
  background-color: var(--red);
}
.has-vivid-red-background-color b,
.has-vivid-red-background-color strong {
  background-color: var(--red);
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--fadedorange);
}
.has-luminous-vivid-orange-background-color b,
.has-luminous-vivid-orange-background-color strong {
  background-color: var(--fadedorange);
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--yellow);
}
.has-luminous-vivid-amber-background-color b,
.has-luminous-vivid-amber-background-color strong {
  background-color: var(--yellow);
}

.has-light-green-cyan-background-color {
  background-color: var(--lightgreen);
}
.has-light-green-cyan-background-color b,
.has-light-green-cyan-background-color strong {
  background-color: var(--lightgreen);
}

.has-vivid-green-cyan-background-color {
  background-color: var(--green);
}
.has-vivid-green-cyan-background-color b,
.has-vivid-green-cyan-background-color strong {
  background-color: var(--green);
}

.has-pale-cyan-blue-background-color {
  background-color: var(--blue);
}
.has-pale-cyan-blue-background-color b,
.has-pale-cyan-blue-background-color strong {
  background-color: var(--blue);
}

:root .editor-styles-wrapper .has-vivid-cyan-blue-background-color {
  background-color: var(--middleblue);
}
:root .editor-styles-wrapper .has-vivid-cyan-blue-background-color b,
:root .editor-styles-wrapper .has-vivid-cyan-blue-background-color strong {
  background-color: var(--middleblue);
}

.has-vivid-purple-background-color {
  background-color: #9b51e0;
}
.has-vivid-purple-background-color b,
.has-vivid-purple-background-color strong {
  background-color: #9b51e0;
}

.wp-block {
  margin-top: 24px;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-table {
  margin-bottom: 32px;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table.is-style-regular {
  border-bottom: none;
}
.wp-block-table.is-style-stripes {
  border-bottom: 1px solid #f0f0f0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
  border-color: transparent;
}
.wp-block-table .has-fixed-layout {
  width: 100%;
  table-layout: fixed;
}
.wp-block-table .has-black-background-color {
  background-color: var(--black) !important;
}
.wp-block-table .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3 !important;
}
.wp-block-table .has-white-background-color {
  background-color: #fff !important;
}
.wp-block-table .has-pale-pink-background-color {
  background-color: #f78da7 !important;
}
.wp-block-table .has-vivid-red-background-color {
  background-color: var(--red) !important;
}
.wp-block-table .has-luminous-vivid-orange-background-color {
  background-color: var(--fadedorange) !important;
}
.wp-block-table .has-luminous-vivid-amber-background-color {
  background-color: var(--yellow) !important;
}
.wp-block-table .has-light-green-cyan-background-color {
  background-color: var(--lightgreen) !important;
}
.wp-block-table .has-vivid-green-cyan-background-color {
  background-color: var(--green) !important;
}
.wp-block-table .has-pale-cyan-blue-background-color {
  background-color: var(--blue) !important;
}
.wp-block-table .has-vivid-cyan-blue-background-color {
  background-color: var(--middleblue) !important;
}
.wp-block-table .has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}
.wp-block-table .has-black-color {
  color: var(--black) !important;
}
.wp-block-table .has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}
.wp-block-table .has-white-color {
  color: #fff !important;
}
.wp-block-table .has-pale-pink-color {
  color: #f78da7 !important;
}
.wp-block-table .has-vivid-red-color {
  color: var(--red) !important;
}
.wp-block-table .has-luminous-vivid-orange-color {
  color: var(--fadedorange) !important;
}
.wp-block-table .has-luminous-vivid-amber-color {
  color: var(--yellow) !important;
}
.wp-block-table .has-light-green-cyan-color {
  color: var(--lightgreen) !important;
}
.wp-block-table .has-vivid-green-cyan-color {
  color: var(--green) !important;
}
.wp-block-table .has-pale-cyan-blue-color {
  color: var(--blue) !important;
}
.wp-block-table .has-vivid-cyan-blue-color {
  color: var(--middleblue) !important;
}
.wp-block-table .has-vivid-purple-color {
  color: #9b51e0 !important;
}
.wp-block-table .has-text-align-left {
  text-align: left;
}
.wp-block-table .has-text-align-center {
  text-align: center;
}
.wp-block-table .has-text-align-right {
  text-align: right;
}
.wp-block-table thead {
  border-bottom: 3px solid;
}
.wp-block-table tfoot {
  border-top: 3px solid;
}
.wp-block-table th {
  padding: 0.5em;
  font-weight: 700;
  word-break: break-word;
  border: 1px solid;
}
.wp-block-table td {
  padding: 0.5em;
  font-weight: 400;
  word-break: break-word;
  border: 1px solid;
}
.wp-block-table figcaption {
  font-size: 13px;
  color: #555;
  text-align: center;
}

.post_text + .post_text,
.post_text + .post_img,
.post_text + .post_ul,
.post_text + .post_ul,
.post_sub_text + .post_text,
.post_sub_text + .post_img,
.post_sub_text + .post_ul,
.post_sub_text + .post_ol,
.post_img + .post_text,
.post_img + .post_sub_text,
.post_img + .post_ul,
.post_img + .post_ol,
.post_heading + .post_card,
.post_heading + .post_ul,
.post_heading + .post_ol,
.post_heading + .blog_question,
.post_sub_heading + .post_card,
.post_sub_heading + .post_ul,
.post_sub_heading + .post_ol,
.post_sub_heading + .blog_question,
.post_ul + .post_text,
.post_ul + .post_sub_text,
.post_ul + .post_img,
.post_ul + .post_ol,
.post_ol + .post_text,
.post_ol + .post_sub_text,
.post_ol + .post_img,
.post_ol + .post_ol,
.blog_question + .post_text,
.blog_question + .post_img,
.blog_question + .post_ul,
.blog_question + .post_text,
.blog_question + .post_ul {
  margin-top: 24px;
}

.post_sub_text + .post_sub_text,
.sub_img + .post_sub_text {
  margin-top: 12px;
}

.post_text + .post_heading,
.post_text + .post_sub_heading,
.post_text + .post_card,
.post_text + .blog_question,
.post_sub_text + .post_heading,
.post_sub_text + .post_sub_heading,
.post_sub_text + .post_card,
.post_sub_text + .blog_question,
.post_img + .post_heading,
.post_img + .post_sub_heading,
.post_img + .post_card,
.post_img + .blog_question,
.post_card + .post_text,
.post_card + .post_img,
.post_card + .post_heading,
.post_card + .post_sub_heading,
.post_card + .post_ul,
.post_card + .post_ol,
.post_card + .blog_question,
.post_ol + .post_heading,
.post_ol + .post_sub_heading,
.post_ol + .post_card,
.post_ol + .blog_question,
.post_ul + .post_heading,
.post_ul + .post_sub_heading,
.post_ul + .post_card,
.post_ul + .blog_question {
  margin-top: 32px;
}

.post_heading + .post_text,
.post_heading + .post_img,
.post_heading + .post_sub_text,
.post_sub_heading + .post_text,
.post_sub_heading + .post_img,
.post_sub_heading + .post_sub_text,
.post_text + .post_sub_text,
.post_card + .post_card,
.post_card + .post_sub_text {
  margin-top: 16px;
}

/*# sourceMappingURL=single.css.map */
