/* 既存スタイル上書き */
#main_col {
  margin: auto;
}
a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (max-width: 800px) {
  .post_content .lp_headline {
    margin-top: 60px !important;
  }
}


/* コンテンツヘッダー ---------------------------------------------------- */
#single_post_header .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
#single_post_header .category_button {
  min-width: 0;
  cursor: pointer;
}
#single_post_header .category_button-sub {
  background: #666;
}
#single_post_header .category_button-sub:hover {
  background: var(--main_color);
}


/* 導線 ---------------------------------------------------- */
.post-custom__link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px auto 0;
}
.post-custom__link a {
  color: var(--main_color);
}
.post-custom__link a:hover {
  color: #fff;
}
@media screen and (max-width: 800px) {
  .post-custom__link {
    margin-top: 40px;
  }
}


/* 募集要項 / 給与・福利厚生 ---------------------------------------------------- */
.data_table {
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.data_table dt {
  width: 170px;
  padding: 10px 20px;
  background: #efefef;
  border: 1px solid #ccc;
  border-bottom: none;
}
.data_table dd {
  width: calc(100% - 170px);
  margin: 0;
  padding: 10px 20px;
  border-top: 1px solid #ccc;
}
.data_table dd h4 {
  margin: 0;
  font-size: 1em;
}
@media screen and (max-width: 600px) {
  .data_table {
    flex-direction: column;
    border: 1px solid #ccc;
    border-bottom: none;
  }
  .data_table dt,
  .data_table dd {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  .data_table dd {
    padding: 20px;
  }
}


/* 採用プロセス ---------------------------------------------------- */
.process__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 0 !important;
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  list-style: none;
}
.process__item-content {
  flex: 1;
}
.process__item-step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 80px;
  height: 80px;
  background: #ddd;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}
.process__item-step--text {
  font-size: 12px;
}
.process__item-step--num {
  font-size: 24px;
}
.process__item-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.process__item-content p {
  margin-bottom: 5px;
}
@media screen and (max-width: 800px) {
  .process__list {
    gap: 20px;
  }
  .process__item p {
    margin: .5em 0 0;
  }
  .process__item-step {
    gap: 2px;
    width: 60px;
    height: 60px;
  }
  .process__item-step--text {
    font-size: 10px;
  }
  .process__item-step--num {
    font-size: 20px;
  }
  .process__item-content h3 {
    font-size: 18px;
  }
}


/* 企業情報 ---------------------------------------------------- */
.post-custom__company .case_study_info {
  width: 100%;
  padding: 50px 60px;
}
@media screen and (max-width: 800px) {
  .post-custom__company .case_study_info {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 600px) {
  .post-custom__company .case_study_info dl {
    flex-wrap: wrap;
  }
  .post-custom__company .case_study_info dt,
  .post-custom__company .case_study_info dd {
    width: 100%;
  }
}


/* 関連求人 ---------------------------------------------------- */
#related_post .tag-main {
  display: block;
  max-width: calc(100% - 60px);
  padding: 10px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 30px;
  transition: all .25s;
}
#related_post .tag-main:hover {
  background: var(--main_color);
}
#related_post .post_list .title {
  margin: 0;
}
#related_post .post_list .description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}
#related_post .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
#related_post .tags-item {
  display: block;
  padding: 5px;
  background: #000;
  color: #fff;
  font-size: 10px;
  transition: all .25s;
}
#related_post .tags-item--sub {
  background: #666;
}
#related_post .tags-item:hover {
  background: var(--main_color);
}
@media screen and (max-width: 800px) {
  #related_post .tag-main {
    max-width: calc(100% - 40px);
    left: 20px;
  }
}