@charset "UTF-8";
/* =============================================
 Base / Reset
============================================= */
* {
  box-sizing: border-box;
}

body {
  max-width: 100%;
  min-width: inherit;
  letter-spacing: 1px;
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", Meiryo, "MS PGothic", sans-serif;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* =============================================
 Utility
============================================= */
.mg-left::first-letter {
  margin-left: -10px;
}

.mb20 {
  margin-bottom: 20px;
}

h3.mg-left::first-letter {
  margin-left: -10px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.article-img-center {
  margin-bottom: 20px;
}

.is-hidden {
  display: none !important;
}

/* =============================================
 Layout
============================================= */
/* =============================================
 Type Parts      ※typeとの共通パーツの汚染対策
============================================= */
.header-inside {
  position: relative;
  height: 43px;
  padding: 15px;
  text-align: right;
  font-size: 0;
  background-color: #ffe700;
}

/* =============================================
 Common Parts
============================================= */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.white-btn {
  display: block;
  border: 1px solid #181977;
  background: white;
  border-radius: 5px;
  padding: 10px 8px 10px 10px;
  font-size: 13px;
  color: #181977 !important;
  text-align: center;
  position: relative;
}

.white-btn.download::after {
  content: "";
  background: url(../common/img/parts/icon-download.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 11px;
  display: inline-block;
  margin: auto 3px;
}

.blue-btn {
  padding: 10px 33px 10px 20px;
  background: #181878;
  border-radius: 7px;
  max-width: 100%;
  font-size: 12px;
  color: white !important;
  line-height: 1.8;
  position: relative;
  cursor: pointer;
}

.blue-btn.edit::after {
  content: "";
  background: url(../common/img/parts/icon-edit.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 13px;
  display: inline-block;
  bottom: 11px;
  margin: 0 0 1px 3px;
  position: absolute;
}

.blue-btn.download {
  background: #fff;
}

.btn-edit span img {
  width: 12px;
  height: 12px;
  padding-top: 2px;
}

.btn-src span img {
  width: 13px;
  height: 13px;
  padding-top: 1px;
}

.btn-download {
  position: relative;
  padding-right: 20px;
}

.btn-download span::after {
  content: "";
  background: url("../common/img/parts/icon-download.png") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 1px;
  vertical-align: middle;
}

.btn-download img {
  display: none;
}

.sort-tag-list {
  margin-bottom: 30px;
}

.sort-tag-list__title {
  font-size: 20px;
  font-weight: bold;
  background: none;
  border: none;
  color: black;
  text-align: center;
}

.sort-tag-list__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.sort-tag-list__links .item {
  margin: 0 1% 15px;
  padding: 5px 0 3px;
  background: #ddd;
  color: black;
  border-radius: 5px;
  width: 31%;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sort-tag-list__links input {
  display: none;
}

.sort-tag-list__links input[type="checkbox"]:checked + .item {
  background: #171179;
  color: white;
}

.post-links2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.post-links2 .post-link2 {
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #b5b5b5;
  width: 48%;
  color: #000;
  position: relative;
}

.post-links2 .post-link2__title {
  border: none;
  background: none;
  margin: 0 0 25px;
  padding: 0;
  width: 100%;
  height: 52px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-links2 .post-link2__text {
  margin: 0 0 5px;
  line-height: 1.2;
  position: relative;
}

.post-links2 .post-link2__text span {
  font-size: 10px;
  line-height: 1.5;
}

.post-links2 .post-link2__text .newmark {
  position: absolute;
  top: -20px;
}

.post-links2 .post-link2__text .date {
  margin-bottom: 10px;
  color: #b5b5b5;
}

.post-links2 .post-link2__text .tag {
  margin: 10px 0;
  display: block;
  color: #b5b5b5;
  height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-links2 .post-link2__imgBox {
  width: 100%;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(495 / 690 * 100%);
}

.post-links2 .post-link2__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.post-links2 .post-link2.is-hidden2 {
  display: none;
}

.post-links2::after {
  content: "";
  display: block;
  width: 32%;
}

/* =============================================
 Shortcodes
============================================= */
/* ショートコード 記事画像 */
.article-image {
  text-align: center;
  display: table;
  margin: 10px auto;
}

.article-image__imgBox img {
  max-width: 100%;
}

.article-image__caption {
  display: table-caption;
  caption-side: bottom;
  padding: 5px;
}

.article-image__caption p {
  margin: 0;
  text-align: left;
}

.article-image__caption__heading {
  font-weight: bold;
}

.article-image__caption--bg-gray {
  background-color: #eee;
}

.article-image.isResponsive {
  display: block;
}

.article-image.isResponsive .article-image__imgBox {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.article-image.isResponsive .article-image__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.article-image.isResponsive .article-image__caption {
  display: block;
}

/* 青/角丸テキストリンク */
.blue_round_button {
  width: 100%;
  font-weight: bold;
  color: #fff !important;
  margin: 0 0 20px !important;
  padding: 10px 65px 10px 40px;
  display: inline-block;
  position: relative;
  background-color: #171179;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 200ms ease;
}

.blue_round_button:hover {
  opacity: 0.6;
}

.blue_round_button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
  position: absolute;
  right: 32px;
  top: 11px;
  font-size: 20px;
  z-index: 10;
}

/* 囲みテキスト(書類のポイント用途) */
.resume_pointbox {
  width: 100%;
  position: relative;
  padding: 30px;
  margin-bottom: 40px;
}

.resume_pointbox.write {
  border: 3px solid #638c0b;
}

.resume_pointbox.write_off {
  border: 3px solid #da5353;
}

.resume_pointbox.talks {
  border: 3px solid #004986;
}

.resume_pointbox p:last-child {
  margin-bottom: 0;
}

.resume_pointbox .title {
  font-weight: bold;
  position: absolute;
  font-size: 18px !important;
  left: 5px;
  top: -18px;
  padding: 0 9px;
  background: white;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

.resume_pointbox.write .title {
  color: #638c0b;
}

.resume_pointbox.write_off .title {
  color: #da5353;
}

.resume_pointbox.talks .title {
  color: #004986;
}

.resume_pointbox .title::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}

.resume_pointbox.write .title::before {
  background-image: url(../common/img/layout/write.png);
}

.resume_pointbox.write_off .title::before {
  background-image: url(../common/img/layout/write_off.png);
}

.resume_pointbox.talks .title::before {
  background-image: url(../common/img/layout/talks.png);
}

/* 囲みテキスト(Before＆After) */
.before_after {
  padding: 30px;
  margin: 0 10px 45px;
  position: relative;
}

.before_after.before {
  border: 2px solid #da5353;
}

.before_after.after {
  border: 2px solid #004986;
}

.before_after img {
  width: 60px;
  height: auto;
  position: absolute;
  top: -30px;
  left: -15px;
}

.before_after p:last-child {
  margin-bottom: 0;
}

.profile-box {
  margin: 20px 0;
}

.profile-box__img {
  margin: 0 15px 15px 0;
  float: left;
}

.profile-box span {
  display: block;
}

.profile-box .name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 2px;
  text-shadow: 0 0.1px #000;
}

.profile-box .shoulder {
  color: #747474;
  font-size: 12px;
}

.profile-box .text {
  font-size: 12px;
  margin-top: 10px;
}

.box-apply {
  margin: 50px auto;
  background-color: #f5f5f5;
  text-align: center;
  padding: 40px 10px;
  position: relative;
  width: 100%;
}

.box-apply .text {
  font-size: 14px;
  display: block;
  max-width: 320px;
  margin: 0 auto;
}

.box-apply .btn-edit span, .box-apply .btn-src span {
  border-radius: 5px;
  color: #fff !important;
  font-size: 12px;
  max-width: 100%;
  padding: 18px 0 18px 7px;
  line-height: 30px;
}

.box-apply .btn-edit, .box-apply .btn-src {
  width: 100%;
}

.box-apply > a:first-of-type {
  max-width: 306px;
  background: #181878;
  margin: 30px auto 16px;
  padding: 5px;
  border-radius: 5px;
}

.box-apply > a:last-of-type {
  margin-top: 30px;
}

.box-apply a {
  width: 90% !important;
}

.box-apply a.btn-download {
  border-radius: 5px;
  padding: 10px 7px;
  border: 1px solid #181977;
  margin: 4px auto;
  max-width: 306px;
  background: white;
}

.box-apply a.btn-download.only {
  background-color: #fff;
}

.box-apply .btn span img {
  padding-top: 8px;
}

.box-apply .btn-edit span img {
  padding-top: 8px;
}

.box-apply .btn-download span img {
  padding-top: 3px;
}

.box-apply::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-apply1.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.box-apply::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-apply2.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
}

.entry-box {
  z-index: 0;
  background-color: #f5f5f5;
  margin: 30px 0;
  text-align: center;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.entry-box .text {
  margin-bottom: 30px;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  position: relative;
}

.entry-box .text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: -4px;
  bottom: 3px;
  background-color: #ffe603;
  z-index: -1;
}

.entry-box::before, .entry-box::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
}

.entry-box::before {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-apply1.png) no-repeat;
  top: 0;
  left: 0;
}

.entry-box::after {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-apply2.png) no-repeat;
  bottom: 0;
  right: 0;
}

.entry-box a {
  margin: 0 auto 30px;
  padding: 8px 50px;
  font-size: 12px;
}

/* =============================================
 Page / Single 固有
============================================= */
.page-404 .category-block {
  padding: 0;
}

.page-404 h3 {
  border: 0;
}

/* =============================================
 未整理
============================================= */
#contents {
  font-size: 14px;
}

.container {
  max-width: 980px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  position: relative;
}

.post p {
  font-size: 14px !important;
}

.page-container {
  overflow: hidden;
  background: #fff;
}

.section-col {
  position: relative;
  width: 100%;
  min-height: 1px;
  float: left;
  padding: 0;
}

.column-sp-4 {
  width: 33.33333333%;
}

.column-sp-6 {
  width: 50%;
}

.column-sp-8 {
  width: 66.66666666%;
}

.cattop-bg {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner2.png) repeat;
  background-size: 800px 168px;
}

.banner.container .banner-inner {
  position: relative;
}

#banner .banner-inner {
  margin-left: -15px;
  margin-right: -15px;
}

#banner img {
  width: 150px;
  float: right;
}

.banner_top {
  border-bottom: 3px solid #181978;
}

.banner_top_bgr {
  width: 21px;
  margin: 0 auto;
  margin-top: -3px;
  position: absolute;
  z-index: 999;
  left: 48%;
  text-align: center;
}

.tag img {
  border: none !important;
}

.page-title.tensyokumae {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner_sp.png) repeat;
  border-bottom: 1px solid #181978;
  border-top: 1px solid #181978;
  margin-top: 20px;
}

.icon_bgr {
  width: 18px;
  margin: 0 auto;
  margin-top: -1px;
  height: 9px;
}

.page-title.tensyokumae .banner-inner {
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 14px 45px;
}

.page-title.tensyokumae .banner-inner img {
  margin: 0 auto;
}

.page-title .banner {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.banner.container {
  background: none;
}

.banner-bottom {
  width: auto !important;
}

#banner.tensyokumae .banner::after {
  background: none !important;
  content: "";
  width: 40px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 48%;
  background-size: 21px 12px;
}

.banner.container p.banner-inner {
  top: 0;
  left: 0;
}

.banner-head p {
  color: #181978;
  margin-top: 37px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.banner-head .num {
  position: relative;
  float: left;
  width: 45px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  background-color: #fee700;
  vertical-align: middle;
  border-right: 5px solid #fff;
  z-index: 99;
}

.banner-head .num img {
  vertical-align: middle;
  margin-top: 7px;
  height: 24px;
  width: auto !important;
}

.banner-head .text-header h2, .banner-head .text-header h1 {
  width: 100%;
  margin-left: 5px;
  font-size: 28px;
  padding-left: 42px;
  height: 20px;
  position: absolute;
  letter-spacing: 2px;
  line-height: 40px;
}

.banner-head {
  width: 100%;
}

.banner .banner-body {
  width: 100%;
  position: relative;
  display: flex;
  padding: 20px 0 0 0;
}

.banner .text-header {
  padding-top: 0;
  background: #181978;
  margin-left: 5px;
  height: 40px;
  position: relative;
}

.banner.container .row {
  margin: 0;
}

.banner-body .banner-text {
  width: 60%;
  font-size: 14px;
  float: left;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.7;
}

.banner-image {
  width: 48%;
  position: relative;
  top: 0;
  text-align: center;
  overflow: hidden;
  margin-top: -6px;
}

.banner-image img {
  width: 280px;
}

.junbi .sections-blog .section-col:last-of-type .section {
  border-bottom: none;
}

/* feature
   ========================================================================== */
#feature {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #171179;
}

#feature ul li {
  width: 33.3333333%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid #171178;
}

#feature ul li:first-of-type {
  border-left: none;
}

#feature ul li:last-of-type {
  border-right: none !important;
}

#feature ul a {
  color: #171178;
  width: 100%;
  display: block;
  padding: 21px 5px 13px;
}

#feature ul li:last-child {
  border-right: 1px solid #171178;
}

#feature ul li img {
  vertical-align: middle;
  margin-top: 10px;
  margin-left: 0;
  height: 10px;
  width: auto;
  transition: all 200ms ease;
}

#feature ul li:hover img {
  transform: translateY(5px);
}

#feature ul li:hover {
  opacity: 0.6;
}

/* Sections
   ========================================================================== */
.sections {
  margin-top: 0;
}

.section-title.sectiontitle1 {
  background-image: url("https://type.jp/tensyoku-knowhow/common/img/parts/section_title_1.png");
  background-repeat: no-repeat;
  background-size: auto 74px;
  background-position: left;
  background-color: #181878;
  height: 74px;
  overflow: hidden;
}

.section-title.sectiontitle2 {
  background-image: url("https://type.jp/tensyoku-knowhow/common/img/parts/section_title_2.png");
  background-repeat: no-repeat;
  background-size: auto 74px;
  background-position: left;
  background-color: #181878;
  height: 74px;
  overflow: hidden;
  letter-spacing: 0 !important;
}

.section-title.sectiontitle3 {
  background-image: url("https://type.jp/tensyoku-knowhow/common/img/parts/section_title_3.png");
  background-repeat: no-repeat;
  background-size: auto 74px;
  background-position: left;
  background-color: #181878;
  height: 74px;
  overflow: hidden;
}

.section-title .num {
  position: relative;
  float: left;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr-title.png) no-repeat;
  background-position-x: -8px;
  /* 2018.12.01 */
  font-weight: bold;
  background-size: cover;
  text-align: center;
  height: 74px;
  width: 67px;
}

.section-title .num img {
  vertical-align: middle;
  padding-right: 13px;
  height: 35px;
  image-rendering: auto;
  margin-top: 20px;
}

.text-header p {
  color: #fff;
  font-size: 12px;
  margin-bottom: 1px;
  margin-top: 12px;
  letter-spacing: 1px;
}

.text-header h1 {
  color: #fff;
  margin-left: 80px;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

@media only screen and (min-width: 321px) {
  .text-header h2 {
    color: #fff;
    margin-left: 80px;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 7px;
  }
}

@media only screen and (max-width: 320px) {
  .text-header h2 {
    color: #fff;
    margin-left: 80px;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 7px;
  }
}

.sections .header {
  max-width: 980px;
  margin: 0 auto;
}

.col-header {
  width: 100%;
}

.section-des {
  font-size: 14px;
  height: auto;
  text-align: justify;
  width: 100%;
  float: left;
}

.section-des br {
  display: none;
}

.section-des .image img {
  position: relative;
  width: 100%;
  float: right;
}

.section-des .text {
  padding: 15px 0 15px 15px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.7;
}

.sections-row {
  background-size: cover;
  position: relative;
  padding: 0;
  padding-top: 2px;
}

.sections-row .section-image {
  height: 67px;
  float: left;
  padding-right: 15px;
}

.sections-row .section-col {
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-section.png);
  margin: 0 0 2px 0;
}

.sections-row .section-body .title {
  color: #000;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
}

.sections-row .section-body {
  vertical-align: middle;
  float: left;
  margin: 25px 0 15px 0;
}

.sections-row .section-body .title img {
  text-align: right;
  position: absolute;
  top: 42%;
  right: 15px;
  transition: all 200ms ease;
  bottom: 40%;
  height: 13px;
  width: 13px;
}

.sections-row .section-col:hover {
  opacity: 0.6;
}

.sections-row .section-col:hover .title img {
  transform: translateX(5px);
}

.section-footer {
  text-align: center;
  margin: 20px auto 43px;
}

.section-footer .btn-default img {
  width: 13px;
  height: 13px;
  position: absolute;
  top: calc(calc(100% / 2) - calc(13px / 2));
}

.section-footer .btn-default:hover {
  opacity: 0.6;
}

.section-footer .button {
  width: 273px;
  margin: 0 auto;
  max-width: 100%;
}

.sections .sections-subtitle {
  height: 130px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr-sub-sp.png) no-repeat;
  position: relative;
  padding: 22px 15px;
  background-position: center;
  display: block;
  background-size: 100% 100%;
  margin-bottom: 7px;
}

.sections .sections-subtitle h3 {
  width: 100%;
  font-size: 16px;
  border-left: 3px solid #171178;
  padding: 1px 0 0 10px;
  margin-bottom: 5px;
  line-height: 19px;
  display: block;
  letter-spacing: 0;
}

.sections .sections-subtitle p {
  font-size: 14px;
  line-height: 1.5;
}

.sections-blog {
  margin-top: 0;
}

article .sections-blog .section-col.flex {
  text-align: center;
}

.sections-blog .section-col .section {
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
}

.sections-blog .meta-blog {
  color: #747474;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
  margin-top: -2px;
}

.sections-blog .meta-blog .meta-title {
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
  overflow: hidden;
  clear: both;
  height: 48px;
}

.newmark {
  background: #e84e30;
  color: #fff;
  padding: 0 5px;
  font-size: 11px;
}

.sections-blog .excerpt {
  color: #000;
  line-height: 1.5;
  font-size: 12px;
  text-align: justify;
  letter-spacing: 1px;
  padding-right: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sections-blog .excerpt p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sections-blog .section-col .section:hover {
  opacity: 0.6;
}

.sections-normal .section-col .section img {
  height: auto;
  width: 100%;
  max-width: inherit;
}

.sections-normal .section-col .section .section-body {
  padding-left: 15px;
}

.sections-vertical .section-col .section {
  padding: 15px 10px;
}

.sections-vertical .section-image {
  float: left;
  flex-grow: 0;
  flex-shrink: 0;
  width: 74px;
  height: auto;
}

.sections-vertical .section-body {
  float: left;
  text-align: justify;
  padding-left: 15px;
  width: 100%;
  padding-top: 5px;
}

.sections-vertical .section-image img {
  height: 100%;
  width: 100%;
  border: 1px solid #ddd;
}

.sections-sub .section-col {
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-section.png);
  padding: 11.5px 15px;
  margin-bottom: 2px;
}

.sections-sub .section-col .title img {
  float: right;
  transition: all 200ms ease;
  width: 13px;
  height: 13px;
  margin-top: 3px;
}

.sections-sub .section-col .title {
  color: #000;
  font-size: 14px;
}

.sections-blog .section-image {
  width: 158px;
  height: 83px;
  float: left;
  overflow: hidden;
  flex-shrink: 0;
}

.sections-blog .section-image.book {
  width: 72px !important;
  height: 110px !important;
  position: relative;
}

.sections-blog .section-image.book img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sections-blog .section-body {
  width: 100%;
  float: left;
}

.sections-vertical .section-image a img {
  height: auto;
  width: 100%;
  border: 1px solid #ddd;
}

.sections-new .section-image {
  width: 157px;
  height: 85px;
}

.sections-new .section-body {
  width: 100%;
  padding-top: 0;
}

.sectionss-new .excerpt {
  color: #a5a5a5;
}

.section-col.image-max .section-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.junbi .sections-row .section-col {
  padding: 0;
}

.section .tag {
  position: absolute;
  top: 20px;
  left: -5px;
}

.section .tag-text {
  position: absolute;
  top: 22px;
  left: 10px;
  font-size: 19px;
  color: #fff;
}

.section .more {
  display: none;
}

.image-max .section-body {
  width: 100%;
  margin: 20px 0;
  padding: 0;
}

.section-title .image {
  position: absolute;
  right: 0;
  top: -5px;
  overflow: hidden;
}

.section-cate {
  margin-top: 20px;
}

.author {
  font-size: 12px;
  color: #000;
}

.sections-sub .section-col:hover {
  opacity: 0.6;
}

.sections-sub .section-col:hover .title img {
  transform: translateX(5px);
}

.other-header {
  text-align: center;
  position: relative;
}

.other-header h4 {
  color: #181978;
  font-size: 14px;
  margin: 0 auto 40px;
}

.other-header img {
  width: 13px;
  margin: 4px 0 0 5px;
  height: 13px;
}

.other-header h4 span {
  border-bottom: 1px solid #4b4f97;
}

.other .section-image .image-banner {
  border: 1px solid #958f8f;
  max-width: initial;
}

.skill-up .sections-blog .section-col .section {
  border-bottom: 1px dotted #ccc;
  display: flex;
}

.sections-new.sections-blog .excerpt {
  color: #747474;
}

.sections-blog.sections-vertical {
  margin-top: 0;
}

/* footer.
   ========================================================================== */
.page-footer {
  position: relative;
}

#page-top a {
  background: #919191;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 5px;
  opacity: 0.7;
  font-size: 32px;
}

#page-top {
  position: fixed;
  bottom: 50px;
  right: 15px;
  font-size: 100%;
  z-index: 999999;
}

#page-top a img {
  vertical-align: middle;
}

.footer-switch {
  font-size: 10px;
  font-size: 1rem;
  padding: 13px 0 10px;
  text-align: center;
  border-bottom: 1px solid #354153;
}

.footer-switch > a {
  display: inline-block;
  color: #a5aab2;
}

.footer-switch > a::before {
  display: inline-block;
  width: 13px;
  height: 11px;
  margin-right: 7px;
  content: "";
  vertical-align: -0.2rem;
  background-image: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/parts/parts_sprite.png);
  background-position: -44px -29px;
  background-size: 81px 61px;
}

.footer-pulldown {
  font-size: 10px;
  font-size: 1rem;
  padding: 13px 0 10px;
  text-align: center;
  border-bottom: 1px solid #354153;
}

.footer-pulldown > a {
  display: inline-block;
  color: #a5aab2;
}

.footer-pulldown > a::after {
  display: inline-block;
  width: 14px;
  height: 8px;
  content: "";
  vertical-align: -0.2rem;
  background-image: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/parts/parts_sprite.png);
  background-position: -62px -51px;
  background-size: 81px 60px;
  position: absolute;
  right: 13px;
  margin-top: 4px;
}

.footer-nav-row {
  display: table;
  width: 100%;
  border-bottom: 1px solid #354153;
}

.footer-nav-row > a {
  font-size: 10px;
  font-size: 1rem;
  display: table-cell;
  height: 39px;
  text-align: center;
  vertical-align: middle;
  color: #a5aab2;
}

.footer-nav-row .col {
  width: 50%;
  border-right: 1px solid #354153;
}

.footer-nav-row .col:last-child {
  border-right: none;
}

/* breadcrumbs footer.
   ========================================================================== */
.breadcrumbs {
  background-color: #fafafa;
}

.breadcrumbs .breadcrumbs-inner {
  margin: 0 auto;
  padding: 5px 0 0;
  color: #555;
  width: 100%;
}

.breadcrumbs .breadcrumbs-inner .current a {
  color: #8a8a8a;
}

.breadcrumbs .breadcrumbs-inner li {
  zoom: 1;
  font-size: 11px;
  margin-right: 20px;
  padding-left: 20px;
  vertical-align: middle;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon_breadcrumbs_bg.png) left center no-repeat;
  display: inline;
  background-size: 6px;
}

.breadcrumbs.pc_none {
  display: block;
  padding: 5px 15px 60px;
}

/*side*/
.side .sections-row .section-body .title {
  font-size: 14px;
  font-weight: bold;
}

.side .sections-row .section-body {
  margin: 0;
}

.side .sections-row .section-col {
  height: auto;
}

.side {
  padding-right: 0;
}

.side .section-col {
  padding: 0;
}

.side .section-title .image {
  top: -18px;
  right: 0;
}

.side .section-cate .side-col {
  margin-bottom: 30px;
}

.side .sections-row .section-body .title img {
  top: 30%;
  width: 13px;
  height: 13px;
}

.header-side {
  text-align: center;
  width: 100%;
  margin: 20px 0 20px 0;
  position: relative;
}

.header-side p {
  font-size: 5vw !important;
  color: #181b76;
  font-weight: bold;
}

.header-side p::before {
  content: "";
  width: 20px;
  height: 4px;
  background-color: #171178;
  position: absolute;
  top: 50%;
  left: 16%;
}

.header-side p::after {
  content: "";
  width: 20px;
  height: 4px;
  background-color: #171178;
  position: absolute;
  top: 50%;
  right: 16%;
}

.entry-title {
  position: relative;
  border-bottom: 3px solid #181978;
  border-top: 3px solid #181978;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner_sp.png) repeat;
  padding: 31px 22px 28px 22px;
  height: auto;
  text-align: left;
}

.entry-title::after {
  content: "";
  width: 30px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 48%;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bottom_banner_sp.png) no-repeat;
  background-size: 21px 12px;
}

.category-name {
  padding: 10px 30px;
  font-size: 14px;
  width: 100% !important;
  position: absolute;
  top: -18px;
  left: 0;
  color: #fff;
  font-weight: bold;
  z-index: 99;
}

.category-name img {
  margin-right: 10px;
}

.entry-title p {
  color: #181b76;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1.3;
}

.entry-image {
  margin-top: 50px;
  position: relative;
}

.entry-image .text {
  position: absolute;
  bottom: 0;
  height: 90%;
  width: 100%;
  background: linear-gradient(#fff0, #000);
}

.entry-image .text p {
  vertical-align: bottom;
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #fff;
  padding: 15px;
  line-height: initial;
}

article {
  padding: 0 15px;
}

article h2 {
  font-size: 20px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-h2.png) no-repeat;
  padding: 4px 0 4px 22px;
  background-position: left;
  vertical-align: middle;
  line-height: 1.2;
  color: #181977;
  border-bottom: 2px solid;
  margin: 40px 0 25px;
  width: 100%;
  letter-spacing: 0;
  background-position-y: 8px;
  background-size: 14px;
  clear: both;
}

article p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

article h3 {
  font-size: 16px;
  color: #000;
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-section.png);
  border-left: 4px solid #181977;
  padding: 10px 0 10px 10px;
  margin: 30px 0 20px 0;
  width: 100%;
}

article h4 {
  font-size: 14px;
  border-left: 4px solid #06c;
  margin: 30px 0 20px 0;
  padding-left: 12px;
  width: 100%;
  font-weight: normal;
}

article .sections-blog {
  margin: 0;
  width: 100%;
}

article .section {
  padding: 20px 0 !important;
}

.section-colimage-special {
  text-align: center;
}

article .section .section-body {
  padding-left: 15px !important;
}

article .border-dashed .section-col:last-child .section {
  border-bottom: none;
}

article .sections-row {
  margin: 30px 0;
  display: inline-block;
}

article .speech p {
  position: relative;
  border: 2px solid #dedede;
  border-radius: 8px;
  width: calc(100% - 66.5px);
  padding: 10px;
  margin-bottom: 15px;
}

article .speech img {
  width: 46.5px;
}

article .boss.speech p::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -13px;
  top: 10px;
  border-right: 12px solid #dedede;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

article .boss.speech p::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -10px;
  top: 10px;
  border-right: 12px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

article .member.speech p::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -13px;
  top: 10px;
  border-left: 12px solid #dedede;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

article .member.speech p::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -10px;
  top: 10px;
  border-left: 12px solid #f2f2f2;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

article .boss.speech img {
  float: left;
}

article .member.speech img {
  float: right;
}

article .boss.speech p {
  float: right;
}

article .member.speech p {
  float: left;
  background-color: #f2f2f2;
}

article .samplemail-area {
  border: 1px solid #dedede;
  margin: 15px 0;
}

article .samplemail {
  padding: 15px;
  font-size: 12px;
}

article .next-post {
  margin: 30px 0;
  padding-right: 20px;
}

article .next-post a {
  margin: 0;
}

article .next-post a::after {
  width: 13px;
  height: 13px;
  top: 0;
  margin: auto;
  bottom: 0;
  right: -20px;
}

/* facebook table */
#fb_bigbox {
  padding: 20px 0 0;
  width: 100%;
  height: auto;
  color: #888;
  line-height: 0;
  font-size: 14px;
}

#fb_bigbox table {
  border-collapse: collapse;
  border: none;
}

#fb_bigbox td {
  width: 50%;
  height: auto;
}

#fb_bigbox .fbbox_r {
  font-size: 13px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  line-height: 1.8;
  letter-spacing: 1px;
  padding: 10px 0;
}

#fb_bigbox .fbbox_r .socialmediabottan {
  padding: 6px 0 12px 0;
  display: inline-block;
}

#fb_bigbox .fbbox_r .title {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.5px;
}

#fb_bigbox .fbbox_l img {
  width: 100%;
  height: auto;
  margin: 0;
}

#fb_bigbox .fbbox_l {
  width: 100%;
  height: auto;
  padding: 0;
}

.fb_bigbox2 {
  border-radius: 4px;
  margin: 30px 0;
  border: 1px solid #ccc;
}

.fb_bigbox2 .fbbox_l {
  width: 100%;
  height: auto;
  padding: 0;
}

.fb_bigbox2 .fbbox_l img {
  width: 100%;
  height: auto;
  margin: 0;
}

.fb_bigbox2 .fbbox_r {
  font-size: 13px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 1.8;
  letter-spacing: 1px;
  padding: 18px 0 15px;
}

.fb_bigbox2 .fbbox_r .title {
  font-size: 12px;
  color: #181878;
  font-weight: 500;
}

.fb_bigbox2 .fbbox_r .socialmediabottan {
  padding: 6px;
  display: inline-block;
}

/* SNS */
.sns_share_list {
  height: 28px;
  padding: 0;
  margin-bottom: 20px;
  width: 100%;
}

.facebook_count {
  margin-left: 5px;
}

.hatena_count {
  margin-left: 5px;
}

.share_list {
  margin: 14px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  list-style: none;
}

.share_item {
  width: 24%;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.075rem;
  line-height: 1;
}

.share_item a {
  background: none no-repeat scroll 0.8rem center;
  border-radius: 3px;
  color: #fff !important;
  padding: 0;
  text-align: center;
  text-decoration: none !important;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(26 / 107 * 100%);
}

.share_item a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.profile p {
  float: left;
  margin-right: 15px;
  width: 100px;
}

.relate.border-dashed {
  border-bottom: 1px dotted #ccc;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

article .su-table td, article .su-table th {
  border: 1px solid #ddd;
  text-align: left;
  padding: 6px !important;
  font-size: 12px !important;
}

.faq .question {
  background-color: #181978;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

.faq span {
  float: left;
}

.faq {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  margin: 30px 0;
}

.faq .answer {
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #929292;
  border-radius: 0 0 5px 5px;
}

.faq .answer span {
  color: #181a77;
}

.faq p {
  margin-left: 20px;
}

.entry-header {
  margin-bottom: 35px;
  width: 100%;
}

#contents .main {
  margin-top: 30px;
}

.box-apply .btn-download span {
  font-size: 12px;
  color: #181977 !important;
}

#fb_bigbox tr {
  display: grid;
}

.footer {
  position: relative;
  background-color: #1e2b3f;
}

.footer-copyright {
  font-size: 8px;
  font-size: 0.8rem;
  padding: 11px 5px 10px;
  text-align: center;
  color: #fff;
}

.sections-vertical .newmark {
  display: none;
}

.sections-new .meta-blog .meta-title {
  font-size: 16px;
}

.sections-new .excerpt {
  font-size: 12px;
}

.section-footer .btn-default {
  border: 1px solid #171178;
  color: #171178;
  font-size: 15px;
  font-weight: bold;
  border-radius: 26px;
  padding: 14px 58px;
  box-shadow: 3px 3px #ffe603;
  width: 100%;
  letter-spacing: 2px;
  height: 48px;
  position: relative;
  line-height: 20px;
}

.relate.sections-blog .excerpt {
  color: #a5a5a5 !important;
}

.side .other .section-col {
  margin-bottom: 15px;
}

.next-post {
  text-align: right;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  margin: 30px 0;
  min-height: 25px;
}

.next-post img {
  display: none;
}

.next-post a {
  color: #181a77 !important;
  border-bottom: 1px solid #3b5898;
  transition: all 200ms ease;
  margin-right: 20px;
  line-height: 1.5;
  position: relative;
}

.next-post a::after {
  position: absolute;
  content: "";
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/arrow-right-pc-19.png) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  top: unset;
  bottom: 0;
  right: -20px;
  margin: auto;
  transition: all 200ms ease;
  bottom: 5px;
  margin: 0;
}

.next-post a:hover::after {
  transform: translateX(5px);
}

.next-post a:hover {
  opacity: 0.6;
}

.question-link {
  text-align: right;
  font-size: 14px;
  margin: 30px 0;
  position: relative;
  width: 100%;
}

.question-link a {
  color: #000;
  border-bottom: 1px solid #000;
  width: 100%;
  font-size: 14px;
  position: relative;
  margin-left: 20px;
  line-height: 2;
}

.question-link a::before {
  content: "";
  background: url("../common/img/parts/question-icon.png") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: -22px;
  top: 3px;
}

.question-link img {
  display: none;
}

.section-btn-top {
  background: #fafafa;
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #181a77;
}

.section-btn-top a {
  color: #181a77;
  border: 1px solid;
  padding: 5px 30px;
  border-radius: 3px;
}

.page-navi .screen-reader-text {
  display: block;
  width: 26px;
  height: 32px;
  border: 1px solid #181a77;
  color: #181a77;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  float: left;
  margin: 0 5px;
  padding-top: 4px;
}

.page-navi h2 {
  display: none !important;
}

.page-navi .post-navigation {
  text-align: center;
  float: left;
}

.page-navi .post-navigation img {
  vertical-align: middle;
  margin: 7px;
  height: auto;
  width: 20px;
}

.page-navi {
  margin: 50px auto 20px;
}

.page-navi .current {
  background: #181b76;
  color: #fff;
}

article .section-col .sp-full {
  margin-bottom: 15px;
}

.box-apply .text span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: -4px;
  bottom: 3px;
  z-index: -1;
}

.box-apply .text span {
  position: relative;
  font-size: 14px;
  display: block;
  margin: 0 auto;
  width: auto;
  z-index: 99;
  text-decoration: underline #ffe603a8;
}

article .category-name {
  width: auto;
}

h1.sub_title {
  font-size: 16px;
  text-align: center;
  margin: 0 0 15px 0;
}

h1.title {
  font-size: 28px;
  text-align: center;
  color: #181878;
}

.write-resume h1 {
  line-height: 1.2em;
}

[id="toc_container"] {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px 20px;
  width: 100%;
  margin: 20px 0;
}

[id="toc_container"] p.toc_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

[id="toc_container"] li {
  margin-bottom: 8px;
}

[id="toc_container"] a {
  font-size: 14px;
  color: #000;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/tit.png) no-repeat;
  background-size: 6px;
  background-position-y: 6px;
  padding-left: 15px;
  display: block;
}

article.is-page_archive {
  padding: 0;
}

.book .l-postList.is-cat_summary.is-page_archive {
  margin-top: 15px;
}

.book .l-postList {
  position: relative;
  z-index: 1;
}

.book .l-postList_item:first-child {
  padding-top: 0;
  border-top: none;
}

.book .l-postList_item {
  display: block;
  padding: 20px 0;
  line-height: 1;
  letter-spacing: 0;
  border-top: 1px dotted #999;
  word-break: break-all;
  clear: both;
}

.book .l-postList.is-cat_summary.is-page_archive .l-postList_item .box {
  color: #000;
}

.book .l-postList_item .box {
  display: block;
  text-decoration: none;
}

.book .l-postList.is-cat_summary.is-page_archive .l-postList_item .data {
  display: table-cell;
  vertical-align: top;
  position: relative;
  top: 3px;
}

.book .l-postList_item .thumb {
  margin-right: 20px;
  width: 98px;
  height: 150px !important;
  float: left;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.book .l-postList_item .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.book .l-postList_item .thumb img {
  border: 1px solid #ddd;
  bottom: 0;
  margin: auto;
}

.book .l-postList_item .data {
  margin: 15px 0 0;
  display: block;
}

.book .l-main img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.book .l-postList_item .date {
  color: #f6ab00;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
}

.book .summary_block .l-postList_item .book_name {
  height: initial;
  margin: 9px 0 9px;
}

.book .l-postList_item .book_name {
  height: 3em;
  margin: 5px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.book-summary-contents .book .l-postList_item .book_name {
  height: auto;
}

.book .l-postList_item .info {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.book .l-postList.is-cat_summary.is-page_archive .l-postList_item .content {
  margin-top: 15px;
  background: #f2f2f2;
  padding: 15px;
}

.book .l-postList_item .content {
  margin: 5px 0 0;
}

.content {
  padding-bottom: 60px;
}

.book .l-postList_item .content_text {
  display: block;
  height: 5.1em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.book_name {
  height: initial;
  height: auto;
  margin: 12px 0 8px;
  font-size: 18px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  background: none;
  padding: 0;
  border-bottom: 0;
  color: #000;
}

.book .l-postList_item .more_button {
  display: block;
  line-height: 1;
  font-weight: normal;
  text-align: right;
}

p.title-profile {
  margin-right: 20px;
  width: 145px;
}

.title-profile-decripttion {
  color: #000 !important;
}

span.detail-image {
  position: absolute;
  top: 242px;
  left: 210px;
}

img.image-special-rs1 {
  margin: 0 0 22px 0;
  height: auto !important;
  width: auto;
  border: 1px solid #ccc;
}

.accordion {
  background-color: transparent;
  color: #000;
  cursor: pointer;
  padding: 20px 8px 20px 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  transition: 0.4s;
  border-bottom: 1px solid #ddd;
  height: 58px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active, .accordion:hover {
  background-color: #f5f5f5;
}

.accordion::after {
  content: "";
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/arrow-down.png) no-repeat;
  width: 20px;
  height: 18px;
  margin-left: 5px;
  transition: all 0.4s ease;
  transform-origin: center;
  background-size: 18px;
  flex-shrink: 0;
}

.active::after {
  transform: rotate(180deg);
  margin-top: -3px;
}

.panel {
  display: none;
  background-color: white;
  overflow: hidden;
}

.panel ul {
  display: table;
  width: 100%;
}

.panel li {
  height: 55px;
  display: table-row;
  width: 100%;
}

.panel li::before {
  content: "－";
  border-bottom: solid 1px #ddd;
  padding: 0 5px 0 10px;
  width: 33px;
  color: #ddd;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.panel li .title {
  display: table-cell;
  color: #ddd;
  vertical-align: middle;
  border-bottom: solid 1px #ddd;
}

.panel .title a {
  color: #06c;
  font-size: 14px;
}

.panel li .download {
  display: table-cell;
  margin: 0;
  text-align: right;
  vertical-align: middle;
  width: 115px;
  border-bottom: solid 1px #ddd;
}

.panel .btn-download span {
  border-radius: 5px;
  color: #181977 !important;
  font-size: 12px;
  padding: 6px 5px 6px 7px;
  border: 1px solid #181977;
}

.panel .btn-download span img {
  margin: 2px;
}

.panel .btn-download {
  padding: 5px 0;
}

.accordion-list .accordion:first-child {
  border-top: 1px solid #ddd;
}

.accordion-list {
  margin: 20px 0;
}

a.download-resume {
  padding: 32px 0 0 0;
}

span.span-dowload-text {
  border-radius: 5px;
  color: #181977 !important;
  font-size: 12px !important;
  padding: 13px 7px !important;
  border: 1px solid #181977;
}

span.span-dowload-text img {
  padding-top: 4px;
  margin-left: 7px;
  width: 9px;
}

img.next-post-resum {
  position: absolute !important;
  top: auto !important;
}

/* TODO:旧目次デザイン:あとで消す */
figure.titles {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 14px 18px 3px;
  width: 100%;
  margin: 20px 0;
}

.titles figcaption {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

figure.titles ul li {
  margin-bottom: 8px;
}

figure.titles a {
  font-size: 14px;
  color: #000;
  padding-left: 15px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/tit.png) no-repeat;
  background-size: 6px;
  background-position-y: 6px;
  display: block;
}

/* TODO:旧目次デザイン:ここまで */
.link-in-page {
  scroll-behavior: smooth;
}

img.lightbox-resum {
  margin: 0 30px 22px 0;
  height: auto !important;
  width: auto;
  border: 1px solid #ccc;
}

img.detail-image {
  margin: 0 30px 22px -16px;
  float: left;
  height: auto !important;
  width: auto;
  border: 1px solid #ccc;
}

.checklist {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.7;
  font-weight: 300;
  padding: 7px 20px;
  margin: 10px 0;
}

.checklist .container-checkbox {
  display: block;
  padding: 7px 0 8px 20px;
  margin-bottom: 0;
  color: black !important;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.checklist .container-checkbox:last-child {
  border: none !important;
}

.checklist .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checklist .container-checkbox .checkmark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 17px;
  width: 17px;
  background: #fff;
  border: 1px solid #ccc;
}

.checklist .container-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checklist .container-checkbox input:checked ~ .checkmark {
  background-color: #0f68c9;
  border-radius: 3px;
}

.checklist .container-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.checklist.red {
  border: 3px solid #da5353;
  background: #f2dcdc;
}

.checklist.red .container-checkbox {
  border-bottom: 3px solid #de5752;
}

.checklist.blue {
  border: 3px solid #004986;
  background: #e0ebf5;
}

.checklist.blue .container-checkbox {
  border-bottom: 3px solid #004986;
}

.checklist.green {
  border: 3px solid #638c0b;
  background: #e5eada;
}

.checklist.green .container-checkbox {
  border-bottom: 3px solid #638c0b;
}

.result:not(h1) {
  border: 1px solid #ddd;
  background: #f5f5f5;
  padding: 20px 5px;
  border-radius: 5px;
  text-align: center;
  margin: 40px 0;
  width: 100%;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result:not(h1) span {
  width: auto;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  padding-left: 20px;
}

.result:not(h1) span:first-of-type {
  padding: 0;
}

.result:not(h1) .count {
  padding: 0;
}

.red {
  color: #da5353;
}

.blue {
  color: #004986;
}

.green {
  color: #638c0b;
}

.box-edit {
  margin: 30px auto;
  text-align: center;
}

.box-edit .btn-edit span {
  background-color: #181878;
  border-radius: 5px;
  color: #fff !important;
  font-size: 12px;
  padding: 10px 20px;
}

.box-edit .btn-edit {
  width: 100%;
}

.box-edit .btn {
  margin-top: 15px;
}

.box-edit .text {
  font-size: 14px;
  position: relative;
  text-align: center;
  top: -16px;
}

article img.full-width {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.red-box .container-checkbox {
  border-bottom: 3px solid #de5752;
  padding: 7px 0 8px 20px;
}

.blue-box .container-checkbox {
  border-bottom: 3px solid #004986;
  padding: 7px 0 8px 20px;
}

.green-box .container-checkbox {
  border-bottom: 3px solid #638c0b;
  padding: 7px 0 8px 20px;
}

.checkbox .container-checkbox:last-child {
  border-bottom: none;
}

.category-name h1 {
  background-color: #181a77;
  padding: 10px 30px;
  border-radius: 30px;
  width: 230px;
  margin: 0 auto;
}

.sections-blog.resume.profile {
  text-align: justify;
  padding: 14px 0;
  border-bottom: 1px dotted #ccc;
  overflow: hidden;
}

span.sub_title {
  font-size: 14px;
  text-align: center;
  color: #000;
  clear: both;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sections-blog.flex-small .section-col {
  padding: 20px 20px !important;
  float: none;
}

footer {
  letter-spacing: initial;
}

.header_h a {
  box-sizing: unset;
}

.pc-switcher {
  display: none;
}

#banner .banner.top p {
  left: 158px;
  font-size: 14px;
  text-align: left;
  position: relative;
  float: left;
  top: 7px;
  max-width: 55%;
  right: 23px;
  line-height: 1.5;
  padding: 0 0 20px 7px;
}

.section-footer.right {
  text-align: right;
  margin: 20px 0 43px;
}

.section-footer .btn-link {
  color: #181978;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: right;
  padding: 0;
}

.section-footer .btn-link span {
  border-bottom: 1px solid #565293;
}

.section-footer .btn-link img {
  margin: 4px 0 4px 5px;
  width: 13px;
  height: 13px;
}

.section-footer .btn-link:hover {
  opacity: 0.6;
}

.section-footer.right .button {
  width: 100%;
}

.sections.section-cate .section-title {
  height: 74px;
  padding: 0;
}

.other .section-image {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(230 / 690 * 100%);
  margin-bottom: 15px;
}

.other .section-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.other .section-col {
  float: none;
}

.sections-row .section-image img {
  height: 67px;
}

.technique .section-des .image img {
  margin-top: -49px;
  margin-right: -15px;
  width: 130px;
}

.sections.section-cate .sections-row .section-col {
  height: 46px;
}

.sections.section-cate .sections-row .section-body {
  margin: 13px 15px;
}

.sections.section-cate .sections-row .section-body img {
  top: 16px;
}

.sections.section-cate .image img {
  width: 90px;
  float: right;
}

#banner .num img {
  float: unset;
}

#banner .top img {
  width: 375px;
  float: left;
  z-index: 1;
  position: relative;
}

.category-name .category-name-inner span {
  border-radius: 30px;
  padding: 5px 14px 5px 38px;
  letter-spacing: 1px;
  font-size: 11px;
  box-shadow: 0 3px #fff;
}

.category-name-inner {
  text-align: center;
}

.technique.category-name .category-name-inner span {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-technique.png) no-repeat;
  background-color: #181978;
  background-position: 19px;
  background-size: 10px;
  box-shadow: 0 0 0 3px #fff;
}

.skill-up.category-name .category-name-inner span {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-skill-up.png) no-repeat;
  background-color: #181978;
  background-position: 18px;
  background-size: 14px;
  box-shadow: 0 0 0 3px #fff;
}

.get-ready.category-name .category-name-inner span {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-get-ready.png) no-repeat;
  background-color: #181978;
  background-position: 16px;
  background-size: 17px;
  box-shadow: 0 0 0 3px #fff;
}

.ready.category-name .category-name-inner span {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-get-ready.png) no-repeat;
  background-color: #181978;
  background-position: 16px;
  background-size: 17px;
  box-shadow: 0 0 0 3px #fff;
}

.sections-blog.profile.bb-dotted .meta-blog .meta-title {
  font-size: 14px;
  line-height: 1.7em;
}

.post .row-single > p {
  margin-bottom: 40px;
}

.sections-blog.profile.bb-dotted .excerpt {
  font-size: 12px;
  line-height: 1.7em;
}

/* for shortcode profile */
.sections-blog.profile.bb-dotted {
  border-bottom: 1px dotted #ddd;
  margin: 0 !important;
  padding: 0 !important;
}

.sections-blog.profile.bb-dotted > .section {
  padding: 14px 0 !important;
}

.sections-blog.profile.bb-dotted > .section > .section-col {
  padding: 0 !important;
}

.sections-blog.profile.bb-dotted > .section > .section-col > p {
  margin-bottom: 10px !important;
}

.sections-blog.profile.bb-dotted > .section > .section-col > .excerpt-prof {
  display: inline !important;
  letter-spacing: 0;
}

h1.entry-title {
  color: #181b76;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin: 0 -15px 30px;
  display: grid;
}

div#contents.post .row-single h1.entry-title {
  text-align: left !important;
}

#banner .top .banner-text {
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-home.png);
  z-index: 0;
  position: absolute;
  float: left;
  margin: 0 -15px;
  top: 45%;
  height: 255px;
  width: 100%;
}

#banner .banner.top {
  height: auto;
}

article > .container {
  padding: 0;
}

.technique .row.sections-row .section {
  padding: 0 15px 0 0;
}

.junbi.category-name .category-name-inner span {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-get-ready.png) no-repeat;
  background-color: #181978;
  background-position: 16px;
  background-size: 17px;
}

.junbi .section-des .image img {
  width: 122px;
  margin-top: -69px;
}

.skill-up .section-des .image img {
  width: 131px;
  margin-top: -66px;
  max-width: inherit;
}

.skill-up .section-des .text {
  padding-right: 21px;
}

.section-col.image-left img {
  float: left;
  margin: 0 10px 0 0;
  width: 52%;
}

.sections-blog.flex .btn-download {
  border-radius: 5px;
  color: #181977 !important;
  border: 1px solid #181977;
  padding: 10px 6px;
  width: 100%;
}

.sections-blog.flex img {
  text-align: center;
  margin-bottom: 20px;
}

article .sections-blog .section-col p {
  text-align: justify;
  margin-bottom: 20px;
}

.sections-blog.resume.profile img {
  margin: 0 10px 10px 0;
  float: left;
}

.sections-blog.flex .section-col.lightbox {
  text-align: center;
}

.sections-blog.sections-new.row {
  margin: 0;
  padding: 0;
}

.sections-blog.inline-box {
  float: left;
}

.flex .btn-download {
  width: 100%;
  padding: 0;
}

.sections-blog.flex .btn-download span {
  font-size: 12px;
}

.profile .excerpt, .profile span {
  font-size: 12px;
}

.profile .meta-blog .meta-title {
  font-size: 14px;
  font-weight: bold;
}

.side .sections.section-cate .image img {
  width: 117px;
}

.side .section-title .num {
  height: 67px;
  width: 67px;
}

.side .sections.section-cate .section-title {
  height: 67px;
}

.side .section-title .num img {
  margin-top: 17px;
}

.side .sections.section-cate .technique .image img {
  width: 101px;
}

.side .sections.section-cate .skill-up .image img {
  width: 110px;
}

span.sub_title br {
  line-height: 0.9;
}

.sections-blog.flex .btn-download img {
  margin-bottom: 0;
}

.side .text-header p {
  margin-top: 13px;
  margin-bottom: 0;
}

div.row-single img {
  height: initial;
}

div.row-single figure.wp-caption {
  width: 100% !important;
  margin: 15px 0;
}

div.row-single figure.wp-caption img {
  height: initial !important;
}

div.row-single figure.alignleft {
  text-align: left !important;
}

div.row-single figure.aligncenter {
  text-align: center !important;
}

div.row-single figure.alignright {
  text-align: right !important;
}

.bb-dotted {
  border-bottom: 1px dotted #999;
}

.pd0i {
  padding: 0 !important;
}

/* scroll-x < 375px */
@media screen and (max-device-width: 374px) {
  div.row-single table {
    overflow: auto;
    white-space: nowrap;
    display: block;
    width: auto;
  }
  div.row-single table tbody {
    width: 100%;
    display: table;
  }
  /*add scroll-bar */
  div.row-single table::-webkit-scrollbar {
    height: 5px;
  }
  div.row-single table::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  div.row-single table::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

/* --------------------------------------------------
 * POST BOOK
 * -------------------------------------------------- */
.book-review {
  margin: 20px 0 0;
  padding: 20px 15px;
  background: #fef6e5;
  line-height: 0;
}

.book-review p, .book-review .row {
  margin: 0;
}

.book-review__imgBox {
  width: 90px;
  height: 155px;
  position: relative;
  margin-right: 15px;
}

.book-review__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.book-review__info {
  padding: 0 0 0 15px;
  line-height: 1.6;
  font-size: 14px;
  flex: 1;
}

.book-review__head {
  padding: 6px 4px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  margin: 15px 0 20px !important;
  border-bottom: 2px solid #000;
  text-align: right;
}

/* --------------------------------------------------
 * POST ASIDE
 * -------------------------------------------------- */
.book .l-postAside {
  background: #f9f9f9;
  margin: 30px -10px 0;
  padding: 20px 10px 0;
  line-height: 0;
}

.book .l-postAside + .l-postAside {
  margin-top: 20px;
}

.book .l-postAside_block {
  margin: 10px 0 0;
}

.book .l-postAside_block:first-child {
  margin-top: 0;
}

.book .l-postAside_head {
  padding: 0 0 7px;
  background: no-repeat 0 0;
  border-bottom: 1px solid #000;
}

.book .l-postAside_block.is-type_author .l-postAside_head, .book .l-postAside_block.is-type_recommend .l-postAside_head {
  padding-top: 3px;
  padding-left: 25px;
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/icon_author.png);
  background-size: 18px auto;
  color: #000;
  margin: 0;
}

.book .l-postAside_block.is-type_buy .l-postAside_head {
  padding-top: 3px;
  padding-left: 32px;
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/icon_buy_color.png);
  background-size: 25px auto;
}

.book .l-postAside_block.is-type_coupon .l-postAside_head {
  padding-left: 35px;
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/icon_coupon.png);
  background-size: 27px auto;
}

.book .l-postAside_head .img {
  width: auto;
  height: 17px;
}

.book .l-postAside_subhead {
  padding: 0 0 8px;
  border-bottom: 1px solid #000;
}

.book .l-postAside_subhead .img {
  width: auto;
  height: 16px;
}

.book .l-postAside_item {
  display: block;
  padding: 20px 0;
  border-top: 1px dotted #999;
}

.book .l-postAside_item:first-child {
  border-top: none;
}

.book .l-postAside_item .box {
  display: table;
  width: 100%;
  word-break: break-all;
}

.book .l-postAside_item .anc {
  text-decoration: none;
}

.book .l-postAside_item .thumb, .book .l-postAside_item .data {
  display: table-cell;
  vertical-align: top;
}

.book .l-postAside_item .thumb {
  width: 90px;
}

.book .l-postAside_item .thumb_img {
  width: 100%;
}

.book .l-postAside_item .data {
  padding: 0 0 0 10px;
}

.book .l-postAside_item .data:first-child {
  padding-left: 0;
}

.book .l-postAside_item .name {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.book .l-postAside_block.is-type_coupon .l-postAside_item .name {
  font-size: 12px;
  font-size: 1.2rem;
}

.book .l-postAside_item .info {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.book .l-postAside_item .content {
  margin: 10px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.book .l-postAside_item .content:first-child {
  margin-top: 0;
}

.book .l-postAside_block.is-type_coupon .l-postAside_item .content {
  margin-top: 2px;
}

.book .l-postAside_item .link {
  display: block;
  line-height: 1;
}

.book .l-postAside_block.is-type_coupon .l-postAside_item .link {
  margin-top: 5px;
}

.book .l-postAside_item .link_item {
  display: block;
  margin: 10px 0 0;
}

.book .l-postAside_item .link_anc {
  display: inline;
  background: none;
  color: #333;
  font-size: 12px;
  font-size: 1.2rem;
  text-decoration: underline;
  border: none;
}

/* --------------------------------------------------
 * RECOMMENDED
 * -------------------------------------------------- */
.book .detail_recommended .recommended {
  padding-left: 30px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/icon_summary_color.png) no-repeat left center;
  background-size: 22px auto;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #000;
  padding-right: 0;
  padding-bottom: 0;
}

.book .detail_recommended .recommended_list {
  display: block;
  padding: 20px 0 10px 0;
  border-top: 1px dotted #999;
}

.book .detail_recommended .recommended_list:first-child {
  border-top: none;
  padding-top: 0;
}

.l-postBook_info .item {
  margin-bottom: 0;
}

figure.l-postDetail_figure.is-float_left.is-size_picture {
  margin-bottom: 15px;
}

.book .detail_recommended .recommended_list .box {
  display: table;
  width: 100%;
  word-break: break-all;
  color: #333;
}

.book .detail_recommended .recommended_list .sp_box {
  display: table-cell;
  vertical-align: top;
  width: 90px;
}

.book .detail_recommended .recommended_list .info_box {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
}

.book .detail_recommended .recommended_list .name {
  font-size: 14px !important;
  font-weight: bold;
  margin-bottom: 10px;
  height: 1.7em;
  letter-spacing: 0;
}

.book .detail_recommended .recommended_list .info {
  font-size: 1.2rem !important;
  height: 1.5em;
  overflow: hidden;
}

.book .detail_recommended .recommended_list .content {
  height: 3.4em;
  margin: 10px 0 0;
  font-size: 1.2rem !important;
  letter-spacing: 0;
}

article .su-table .su-even td {
  background: transparent !important;
}

/*TODO:あとで消す(2020/12記) 関連記事(小)の旧デザイン
 #list-relate-post .sections-row-small はこのデザインでしか使われてないことを確認済*/
#list-relate-post {
  display: grid;
}

.sections-row-small .section-body .title {
  font-weight: inherit;
  font-size: 14px;
  padding-right: 45px;
  text-align: justify;
}

.sections-row-small.section-col:hover {
  opacity: 0.6;
}

.sections-row-small.section-col:hover .title img {
  transform: translateX(5px);
}

article .sections-row-small .section .section-body {
  margin: 0;
  padding-left: 15px !important;
}

article .sections-row-small {
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-section.png) no-repeat;
  border: 1px solid #fff;
  margin: 0 -15px;
}

article .sections-row-small .section-body .title img {
  top: 42%;
}

/*TODOここまで*/
/*------------------------------
  関連記事(小)リスト
------------------------------*/
.related-post-list {
  display: flex;
  flex-direction: column;
}

.related-post-list li {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr-section.png) no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  padding: 0 55px 0 20px;
  height: 70px;
  position: relative;
  /*矢印アイコン表示用*/
}

.related-post-list a {
  display: block;
}

.related-post-list a p {
  color: black;
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0;
  height: 3.4em;
  overflow: hidden;
}

/*矢印アイコン*/
.related-post-list a img {
  position: absolute;
  top: 42%;
  right: 20px;
  width: 13px;
  transition: all 200ms ease;
}

/*------------------------------*/
#page-top.sticky-button {
  position: absolute;
  bottom: 287px;
  right: 15px;
}

.career-movie .full-width {
  margin-bottom: 20px;
  height: 0 !important;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(363 / 690 * 100%);
}

.career-movie .full-width img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.career-lectureship .full-width {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(202 / 384 * 100%);
}

.career-lectureship .full-width img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sections-blog.resume.profile .sections-blog.flex-small {
  padding: 0;
}

#banner h1.banner-inner {
  height: auto;
  float: left;
}

#banner {
  overflow: hidden;
}

/* Breadcrumbs
   ========================================================================== */
.all_list .crumbs {
  padding: 0 2%;
  margin-top: 30px;
}

.all_list .crumbs-list {
  display: inline-block;
  zoom: 1;
  margin: 10px 0 0 15px;
  padding-left: 22px;
  vertical-align: middle;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon_breadcrumbs_bg.png) left center no-repeat;
}

.all_list .crumbs-list:first-child {
  background: none;
  padding-left: 0;
  margin-left: 0;
}

/* Scroll to top button.
   ========================================================================== */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 9999;
}

.scroll-top .btn {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #919191;
  color: #fff;
  position: relative;
  border-radius: 3px;
}

.scroll-top .btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 16px;
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
}

.skill-up .sections-blog .section-col.image-max .section {
  border-bottom: none;
  display: block;
}

.sections-blog.sections-new .section-col .section {
  display: flex;
  padding: 20px 0;
}

.title_head {
  margin-top: 20px !important;
}

#banner.tensyokumae .banner-image {
  max-height: 164px;
}

.sections-vertical.sections-blog .column-4 .section-body .excerpt {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 13px;
  -webkit-line-clamp: 2;
  height: 40px;
}

.section-last .section-body .excerpt {
  font-weight: normal !important;
}

.sections-blog.relate .section {
  display: flex;
}

article .sections-blog.inline-box img {
  float: left;
  margin: 0 10px 0 0;
}

.container article .sections-blog.relate {
  padding: 0;
}

article .sections-blog .section-col .meta-blog p {
  margin-bottom: 0;
  font-size: 14px;
  overflow: hidden;
}

.technique .sections-row .section-body {
  margin: 21px 15px 19px 15px;
}

article .row.sections-blog.sections-normal .section {
  display: flex;
}

.sections-blog.resume.profile.no-image .section-col .meta-blog {
  margin-left: 0;
}

.sections-blog.resume.profile.no-image .section-col .excerpt {
  padding-left: 0;
  text-align: justify;
}

h3.interview-manual {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-h3-center.png) no-repeat;
  color: #000;
  text-align: left;
  display: grid;
  border: none;
  line-height: 1.7;
  padding: 0;
  background-position: top center;
}

h3.interview-manual .title-red-icon {
  text-align: center;
  padding-top: 16px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/red-icon.png) no-repeat;
  background-position: 33px 11px;
  height: 50px;
  margin: 0 auto;
  width: 300px;
  padding-left: 33px;
  margin-bottom: 37px;
}

/* 修正後h3 START */
.interview-manual-frame {
  background: none !important;
  border: none !important;
}

.interview-manual-fukidashi {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bgr-h3-center.png) no-repeat;
  background-position: top center;
  text-align: center;
  margin: 0 -20px;
  height: 65px;
}

.interview-manual-text {
  padding-top: 16px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/red-icon_sp.png) no-repeat;
  background-size: 31px 31px;
  background-position: 33px 11px;
  height: 50px;
  margin: 0 auto;
  width: 300px;
  padding-left: 33px;
}

h2.interview-manual {
  background: none;
  border: none;
  display: grid;
  text-align: left;
  font-size: 20px;
  color: #000;
  border-left: 7px solid #d2d2d2;
  border-right: 7px solid #d2d2d2;
  position: relative;
  padding: 0 35px 30px 35px;
  margin-bottom: 35px;
  line-height: 1.5;
}

h2.interview-manual .title-subh2 {
  font-size: 18px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/subh2-icon_sp.png) no-repeat;
  background-size: 31px 30px;
  background-position: 0;
  text-align: center;
  height: 36px;
  padding-top: 3px;
  margin: 0 auto;
  padding-left: 33px;
  width: 195px;
}

h2.interview-manual::after {
  content: "";
  height: 100%;
  width: 27px;
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 7px solid #d2d2d2;
  border-top: 7px solid #d2d2d2;
}

h2.interview-manual::before {
  content: "";
  height: 100%;
  width: 27px;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom: 7px solid #d2d2d2;
  border-top: 7px solid #d2d2d2;
}

.section-interview-manual {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.section-interview-manual p {
  margin: 0;
  padding-left: 10px;
}

mark.mark-yellow {
  font-weight: inherit;
  color: #000;
  background: repeating-linear-gradient(#fff0, #fff0 55%, #ffe603);
}

.box-apply mark.mark-yellow {
  line-height: 2;
}

.font-bad {
  color: #da5353;
  font-weight: bold;
}

.font-good {
  color: #004986;
  font-weight: bold;
}

.point-list li {
  margin-bottom: 4px;
  padding-left: 20px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/detail_check_icon01.png) left no-repeat;
  font-size: 14px;
}

.pull-none {
  float: none !important;
}

/*============================================================================*/
.column-3.section-col.section-image.catalog {
  padding: 0 !important;
}

.column-3.section-col.section-image.catalog img {
  width: 158px;
  height: 86px !important;
}

img.mt20.mb20 {
  border: 1px solid #ccc;
}

p.career-movie {
  margin-bottom: -20px;
}

div.section-interview-manual .h77 {
  height: 77px !important;
}

/* Reponship iphone5/SE
   ========================================================================== */
@media only screen and (max-width: 330px) {
  .junbi .section-des .image img {
    width: 89px;
    margin-top: -49px;
  }
  #banner .banner.top p {
    left: 130px;
    top: 10px;
  }
  .technique .section-des .image img {
    margin-top: -10px;
    margin-right: -10px;
    width: 90px;
  }
  .skill-up .section-des .image img {
    width: 100px;
    margin-top: -55px;
    max-width: inherit;
  }
}

@media only screen and (min-width: 500px) {
  .sections-blog .section-image {
    height: 100%;
  }
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

/*page 404 */
.main-block {
  color: #000;
}

.main-title {
  font-size: 24px;
  margin: 40px 20px 38px;
}

.lead-text {
  font-size: 15px;
  margin: 0 20px 15px 20px;
}

.jobs-link {
  font-size: 14px;
  margin: 0 20px;
}

/* category-block
   ========================================================================== */
.category-block-title {
  text-align: center;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/background_sp.png);
  font-size: 15px;
  height: 44px;
  line-height: 46px;
  border-top: 1px solid #181878;
  border-bottom: 1px solid #181878;
  margin: 40px 0 30px;
  position: relative;
  color: #181878;
  padding: 0;
}

.category-block-title::after {
  content: "";
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/triangle_sp.png) no-repeat;
  background-size: 19px auto;
  position: absolute;
  width: 19px;
  height: 11px;
  bottom: -11px;
  left: calc((100% - 19px) / 2);
}

.category-title {
  font-size: 24px;
  font-weight: 600;
  padding: 0 0 0 76px;
  margin-bottom: 2px;
  color: #fff;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_num_01_sp.png) no-repeat left bottom #181878;
  background-size: auto 67px;
  height: 67px;
  line-height: 1em;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  width: 129px;
  height: 85px;
  right: 10px;
  bottom: 0;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_img_01_sp.png) no-repeat right bottom;
  background-size: 129px auto;
}

.category-list:nth-child(2) .category-title {
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_num_02_sp.png);
}

.category-list:nth-child(2) .category-title::after {
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_img_02_sp.png);
  background-size: 87px auto;
}

.category-list:nth-child(3) .category-title {
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_num_03_sp.png);
}

.category-list:nth-child(3) .category-title::after {
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/category_img_03_sp.png);
  background-size: 100px auto;
}

@media screen and (max-width: 320px) {
  .category-title::after {
    right: 0;
    background-size: 96px auto;
  }
  .category-list:nth-child(2) .category-title::after {
    background-size: 57px auto;
  }
  .category-list:nth-child(3) .category-title::after {
    right: 5px;
    background-size: 75px auto;
  }
  #banner .top .banner-text {
    top: 32%;
  }
}

.sub-title {
  font-size: 12px;
  display: block;
  line-height: 34px;
}

.list-title {
  margin-bottom: 2px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/stripe.png);
  background-size: 9px 9px;
  min-height: 45px;
  display: table;
  width: 100%;
}

.list-title:hover {
  opacity: 0.6;
}

.list-title .anc {
  font-size: 15px;
  font-weight: 600;
  padding: 0 51px 0 20px;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  height: 100%;
}

.list-title .anc:link, .list-title .anc:visited {
  color: #000;
}

.list-title .anc:hover, .list-title .anc:active {
  text-decoration: none;
}

.list-title .arrow::after {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/arrow_sp.png) no-repeat 0 0;
  background-size: 13px auto;
}

.category-link {
  text-align: center;
  margin: 20px auto 40px;
}

.category-link .anc {
  width: 272px;
  height: 47px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #181878;
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/btn_sp.png) no-repeat;
  background-size: 272px auto;
  text-align: center;
  line-height: 47px;
}

.category-link .anc:hover, .category-link .anc:active {
  text-decoration: none;
}

.category-link .anc:hover {
  opacity: 0.6;
}

.link-text {
  margin-right: 21px;
}

.relations-link-block {
  overflow: hidden;
  padding: 0 2%;
}

.relations-link {
  width: calc((100%/2) - 2%);
  height: 40px;
  float: left;
  text-align: center;
  border: 1px solid #181878;
  border-radius: 4px;
}

.relations-link:nth-child(2) {
  float: right;
}

.relations-link .anc {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
}

.relations-link .anc:link, .relations-link .anc:visited {
  color: #181878;
}

.relations-link:hover {
  opacity: 0.6;
}

.relations-link:hover .anc {
  text-decoration: none;
}

/* Breadcrumbs
   ========================================================================== */
.crumbs {
  padding: 0 2%;
  margin-top: 30px;
}

.crumbs-list {
  display: inline-block;
  zoom: 1;
  margin: 10px 0 0 15px;
  padding-left: 22px;
  vertical-align: middle;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon_breadcrumbs_bg.png) left center no-repeat;
}

.crumbs-list:first-child {
  background: none;
  padding-left: 0;
  margin-left: 0;
}

/* Scroll to top button.
   ========================================================================== */
@media only screen and (max-width: 425px) {
  #banner.tensyokumae .banner-image {
    max-height: 500px;
  }
  p.name.js-textOverflow {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  p.content.js-textOverflow.pb0 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .js-textOverflow.pb0 {
    height: 3.2em !important;
  }
  .info_box p {
    letter-spacing: 0 !important;
  }
}

/* sitemap */
.sitemap-contents .text-header h2 a {
  color: #fff;
  text-decoration: none;
}

.sitemap-contents .sections-row .section-col {
  background: none;
  min-height: 45px;
  height: auto;
  margin: 0;
  padding-left: 0;
}

.sitemap-contents article a {
  color: #000;
}

.sitemap-contents article h2 a {
  color: #171179;
}

.sitemap-contents article ul {
  margin-left: 15px;
}

.sitemap-contents article ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.sitemap-contents .junbi, .sitemap-contents .skill-up {
  margin-bottom: 40px;
}

.sitemap-contents .technique {
  margin-bottom: 30px;
}

.sitemap-contents #banner-sitemap h1.banner-inner {
  width: 100%;
  font-size: 28px;
  color: #181878;
  text-align: center;
  margin: 30px auto;
}

.sitemap-contents #banner-sitemap {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr-banner.jpg) repeat;
}

.sitemap-contents .section-col:hover {
  opacity: 1;
}

.sitemap-contents article a:hover {
  opacity: 0.6;
}

.excerpt {
  overflow: hidden;
}

.sections-blog.resume.profile .section-col {
  padding: 0 !important;
  clear: both;
}

@media only screen and (min-width: 435px) {
  .sections-blog .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 320px) {
  .grey-box ul li:first-of-type {
    padding-left: 13px;
  }
  .box-edit .btn-edit span {
    padding: 10px 5px;
  }
  .sections .sections-subtitle {
    height: auto;
  }
  .section-footer .btn-default {
    line-height: 18px;
  }
  #banner h1.banner-inner {
    height: 377px;
  }
  .book .l-postList.is-cat_summary.is-page_archive .l-postList_item .content_text {
    height: auto;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .sections-blog .excerpt {
      color: #000;
      line-height: 1.5;
      font-size: 12px;
      text-align: justify;
      letter-spacing: 3.5px;
    }
  }
}

.junbi-contents .sections-blog .excerpt, .technique-contents .sections-blog .excerpt, .skill-up-contents .sections-blog .excerpt {
  line-height: 1.6;
  height: 60px;
}

article.page .sections-blog .section-col .meta-blog p {
  font-size: 12px;
}

.sections-vertical .meta-blog .meta-title, .border-dashed .meta-blog .meta-title {
  font-weight: bold;
}

.sections-blog.resume.profile .excerpt {
  display: inline;
  letter-spacing: 0;
}

.technique-contents .tensyokumae, .skill-up-contents .tensyokumae, .junbi-contents .tensyokumae {
  border-bottom: 3px solid #181978;
  position: relative;
  margin-bottom: 9px;
  overflow: unset !important;
}

.technique-contents .tensyokumae::after, .skill-up-contents .tensyokumae::after, .junbi-contents .tensyokumae::after {
  content: "";
  width: 30px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 48%;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/bottom_banner_sp.png) no-repeat;
  background-size: 21px 12px;
}

.sections-normal .excerpt {
  height: 54px;
}

.interview-contents article.page .sections-blog .section-col .meta-blog p, .sample-contents article.page .sections-blog .section-col .meta-blog p, .catalog-contents article.page .sections-blog .section-col .meta-blog p {
  height: 60px;
}

.interview-contents .sections-blog .meta-blog .meta-title, .sample-contents .sections-blog .meta-blog .meta-title, .catalog-contents .sections-blog .meta-blog .meta-title {
  height: 40px !important;
  font-weight: bold;
  font-size: 14px !important;
}

.meta-title16 {
  height: 40px !important;
  font-weight: bold;
  font-size: 16px !important;
  color: #000;
  line-height: 1.3;
}

/*===「もっと気になる！その他の転職ノウハウ」START===*/
.page-title.kininaru {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner_sp.png) repeat;
  border-bottom: 1px solid #181978;
  border-top: 1px solid #181978;
  margin-top: 20px;
}

.page-title.kininaru .banner-inner {
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 14px 45px;
}

.page-title.kininaru .banner-inner img {
  margin: 0 auto;
}

#banner.kininaru .banner::after {
  background: none !important;
  content: "";
  width: 40px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 48%;
  background-size: 21px 12px;
}

#banner.kininaru .banner-image {
  max-height: 164px;
}

@media only screen and (max-width: 425px) {
  #banner.kininaru .banner-image {
    max-height: 500px;
  }
  p.name.js-textOverflow {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  p.content.js-textOverflow.pb0 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .js-textOverflow.pb0 {
    height: 3.2em !important;
  }
  .info_box p {
    letter-spacing: 0 !important;
  }
}

.kininaru-img {
  width: 237px;
  height: 14px;
}

/*===「もっと気になる！その他の転職ノウハウ」END===*/
/*===skill-up NEWコーナーSTART===*/
.skillupnew-frame {
  border-bottom: none;
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding: 20px 0 0 0;
}

.skillupnew-img {
  margin-bottom: 15px;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(277 / 528 * 100%);
}

.skillupnew-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.skillupnew-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 73px;
  height: 36px;
  top: 10px;
  left: -6px;
  font-size: 19px;
  color: #fff;
  background: url("https://knowhow.typemag.jp/common/img/layout/newtag.png") no-repeat;
  background-size: contain;
  padding-bottom: 3px;
}

.skillupnew-body {
  width: 100%;
  padding: 0;
}

.skillupnew-more {
  display: none;
}

/*---以下タイトル・サマリーの文字切り---*/
.newcnr-frame {
  margin-bottom: 10px;
}

.newcnr-frame a {
  color: #000;
}

.newcnr-title {
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.newcnr-exp-frame a {
  color: #666;
}

.newcnr-exp {
  height: 4.8em;
  line-height: 1.6;
  font-size: 12px;
}

/*===skill-up NEWコーナーEND===*/
/*===content用 プロフ欄のサマリーSTART===*/
.sections-blog.profile.bb-dotted .excerpt-prof {
  font-size: 12px;
  line-height: 1.7em;
  color: #000;
  text-align: justify;
  letter-spacing: 1px;
  overflow: hidden;
}

/*===content用 プロフ欄のサマリーEND===*/
/*===「一覧を見る」ボタンSTART===*/
.btn-ichiran-frame {
  text-align: center;
  margin: 20px auto 43px;
}

.btn-ichiran-frame .button {
  width: 273px;
  margin: 0 auto;
  max-width: 100%;
}

.btn-ichiran-link {
  border: 1px solid #171178;
  border-radius: 26px;
  padding: 14px 58px;
  box-shadow: 3px 3px #ffe603;
  width: 100%;
  letter-spacing: 2px;
  height: 48px;
  position: relative;
  line-height: 20px;
}

.btn-ichiran-frame a {
  color: #171178;
  font-size: 15px;
  font-weight: bold;
}

.btn-ichiran-img {
  vertical-align: middle;
  margin: -2px 0 0 5px;
}

/*===「一覧を見る」ボタンEND===*/
/*===トップ、skill-upのリスト箇所START===*/
.skilluplist-title {
  height: 4.5em;
  line-height: 1.5;
  font-size: 12px;
  color: #000;
  overflow: hidden !important;
}

/*===トップ、skill-upのリスト箇所END===*/
/*===トップ、skill-upのサブタイトル===*/
.skill-subtitle {
  background: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/layout/bgr-banner-section.png);
  margin: 0 -15px;
  padding: 20px 15px;
  background-position: center;
}

.skill-subtitle h3 {
  font-size: 18px;
  border-left: 3px solid #171178;
  padding: 2px 0 0 10px;
  margin-bottom: 5px;
  letter-spacing: 0;
  line-height: 1em;
}

.skill-subtitle p {
  font-size: 14px;
  line-height: 1.7;
}

.skill-subtitle-bottom {
  width: 23px;
  height: 12px;
  margin: 0 auto;
}

/*===共通で利用可能===*/
.clrb {
  clear: both;
}

.mw0 {
  min-width: 0 !important;
}

.kiji-list {
  font-size: 12px;
  list-style-type: disc;
  list-style-position: initial;
  margin-left: 20px;
}

.fwn {
  font-weight: normal !important;
}

.ls0 {
  letter-spacing: 0 !important;
}

/*===共通で利用可能な一覧（左画像,右タイトル＆概要）===*/
.imgtxtlist1col-frame {
  padding: 15px 0 10px 0 !important;
  clear: both;
  border-bottom: 1px dotted #ccc;
}

.imgtxtlist1col-img {
  width: 158px;
  min-width: 158px;
  height: auto;
  float: left;
  max-height: 100px;
  overflow: hidden;
}

.imgtxtlist1col-contents {
  float: left;
  width: calc(100% - 160px);
}

.imgtxtlist1col-title {
  height: 22px;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  font-weight: bold;
  padding-left: 10px;
  margin-bottom: 5px;
  overflow: hidden !important;
}

.imgtxtlist1col-exp {
  height: 3.9em;
  line-height: 1.3;
  color: #666;
  padding-left: 10px;
  margin-bottom: 0;
  letter-spacing: 2px;
  overflow: hidden !important;
}

p.imgtxtlist1col-exp {
  font-size: 12px !important;
}

.cattop-ready-stepimg {
  margin-bottom: 14px;
}

#mainvisual h1 {
  position: relative;
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_mainvisual_sp.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100%;
}

#mainvisual h1 img {
  height: 352px;
  max-width: initial;
}

#mainvisual h1 p {
  position: absolute;
  top: 165px;
  left: 155px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
}

@media only screen and (max-width: 320px) {
  #mainvisual h1 {
    position: relative;
    background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_mainvisual_sp.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 100%;
  }
  #mainvisual h1 img {
    height: 300px;
    max-width: initial;
  }
  #mainvisual h1 p {
    position: absolute;
    top: 130px;
    left: 130px;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0;
  }
  .side .text-header p.fs12 {
    font-size: 8px !important;
  }
}

@media only screen and (min-width: 321px) {
  .side .text-header p.fs12 {
    font-size: 12px !important;
  }
}

/* Self-introduction detail
   ========================================================================== */
.pr-accordion-list .accordion .title {
  font-size: 14px;
  background: none;
  border-left: none;
  padding: 0;
  margin: 0;
}

.pr-accordion-list .example-area-box {
  margin: 20px 20px 10px;
}

.pr-parts__example-area {
  min-height: 162px;
  border: 1px solid #181879;
  border-radius: 3px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.7;
  margin: 20px;
}

.pr-parts__copy-btn-area {
  text-align: center;
  position: relative;
}

.pr-parts__copy-btn-area button {
  color: #fff;
  font-size: 14px;
  background: #181878;
  border: none;
  border-radius: 3px;
  padding: 6px 38px 5px;
}

.pr-parts__copy-btn-area .copy-msg {
  position: absolute;
  top: 0;
  z-index: 99999;
  width: 100%;
  background: #919191;
  display: none;
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 7px 38px;
}

.pr-parts__commentary {
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd;
}

.pr-parts__textarea {
  border: 1px solid #d2d2d2;
  border-radius: 3px;
}

.pr-parts__textarea textarea {
  border: none;
  border-radius: 0;
  width: 100%;
  min-height: 465px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.7;
}

.pr-parts__textarea .text-count {
  border-top: 1px solid #d2d2d2;
  color: #8a8a8a;
  font-size: 12px !important;
  line-height: 28px;
  text-align: right;
  margin: 0;
  padding-right: 8px;
}

.pr-parts___notes {
  color: #8a8a8a;
  font-size: 12px;
}

.pr-accordion-list .copy-btn-block, .pr-textarea .copy-btn-block {
  text-align: center;
  position: relative;
}

.pr-accordion-list .copy-btn-area:hover, .pr-textarea .copy-btn-area:hover {
  cursor: pointer;
  opacity: 0.6;
}

.pr-accordion-list .copy-btn, .pr-textarea .copy-btn {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
}

.pr-accordion-list .copy-btn::after, .pr-textarea .copy-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  right: 0;
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/icon-edit.png) no-repeat;
  background-size: 12px auto;
}

.pr-textarea .copy-btn-block {
  margin-bottom: 50px;
}

.text-frame {
  padding: 0 20px;
}

.text-frame p {
  width: 100%;
  border: 1px solid #181879;
  border-radius: 3px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.7;
}

.page-rirekisyo {
  counter-reset: rirekisyo;
}

.rireki-img {
  border: 1px solid #000;
}

ul.rireki-num-list {
  display: flex;
  flex-wrap: wrap;
}

ul.rireki-num-list a:hover, .related-list li a:hover {
  opacity: 0.7;
}

ul.rireki-num-list > li {
  width: 100%;
  padding: 10px 10px 10px 35px;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #e9e9e9;
  counter-increment: rirekisyo;
}

ul.rireki-num-list > li::before {
  content: counter(rirekisyo);
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  top: 9px;
  left: 0;
  text-align: center;
  color: #fff;
  background-color: #0699fa;
  border-radius: 25px;
}

ul.rireki-num-list > li::after {
  content: "";
  background: url("https://type.jp/tensyoku-knowhow/common/img/parts/arrow-right-26.png") no-repeat;
  background-size: 13px;
  background-position: 0 0;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 17px;
}

ul.rireki-num-list > li.soon {
  background-color: #ccc;
}

ul.rireki-num-list > li.soon::after {
  content: none;
}

ul.rireki-num-list > li a {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 25px;
}

ul.rireki-num-list > li.soon a {
  color: #a7a6a6;
}

ul.rireki-num-list > li.n-1::before {
  content: "1";
}

ul.rireki-num-list > li.n-2::before {
  content: "2";
}

ul.rireki-num-list > li.n-3::before {
  content: "3";
}

ul.rireki-num-list > li.n-4::before {
  content: "4";
}

ul.rireki-num-list > li.n-5::before {
  content: "5";
}

ul.rireki-num-list > li.n-6::before {
  content: "6";
}

ul.rireki-num-list > li.n-7::before {
  content: "7";
}

ul.rireki-num-list > li.n-8::before {
  content: "8";
}

ul.rireki-num-list > li.n-9::before {
  content: "9";
}

.related-list {
  border: 1px solid #a5a5a5;
  width: 100%;
  margin: 10px 0 0 0;
}

.related-list h3 {
  background: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner2.png) repeat;
  border: none;
  font-size: 14px;
  font-weight: normal;
  padding: 5px 30px;
  margin: 0;
  border-bottom: 2px solid #a5a5a5;
}

.related-list ul {
  padding: 5px 0;
}

.related-list.double ul {
  display: flex;
  flex-wrap: wrap;
}

.related-list ul li {
  position: relative;
  margin: 0 0 5px 0;
  padding: 0 25px;
  line-height: 1.5;
}

.related-list.double ul li {
  width: 50%;
}

.related-list ul li::before {
  content: "";
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/tit.png) no-repeat;
  background-size: 6px;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 10px;
}

.related-list ul li a {
  color: #000;
  font-size: 14px;
}

ul.three-images {
  margin: 15px 0;
}

ul.three-images li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

ul.three-images li img {
  width: 82.5px;
  margin-right: 25px;
}

ul.three-images li p {
  font-size: 13px;
  margin-bottom: 0;
}

.interview-flow li {
  background: #171179;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  margin-bottom: 5px;
}

.interview-flow p {
  padding-bottom: 5px;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 0;
}

.interview-flow img {
  width: 26.5px;
  display: block;
  margin: 15px auto;
}

.manner-flow {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: normal;
}

.manner-flow h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-image: none;
  background-color: #171179;
  border-left: 4px solid #ffe603;
  color: #fff;
}

.manner-flow h3 div {
  width: 50px;
}

.manner-flow h3 div img {
  display: block;
  margin: 0 auto;
}

.manner-flow h3 span {
  width: calc(100% - 50px);
}

.manner-flow .left-main {
  width: 80px;
  margin-left: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-question-flow {
  width: 100%;
}

.interview-question-flow li {
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #171179;
  padding-left: 35px;
  border-bottom: 1px solid #000;
  position: relative;
  line-height: 50px;
}

.interview-question-flow li::before {
  content: "";
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 12.5px;
  text-align: center;
  font-weight: bold;
  color: #ffe603;
  background-color: #171179;
}

.interview-question-flow li.n-1::before {
  content: "1";
}

.interview-question-flow li.n-2::before {
  content: "2";
}

.interview-question-flow li.n-3::before {
  content: "3";
}

.interview-question-flow li.n-4::before {
  content: "4";
}

.interview-question-flow li.n-5::before {
  content: "5";
}

.interview-balloon {
  width: 100%;
  height: 35px;
  line-height: 35px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #171179;
  position: relative;
}

.interview-balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #171179;
}

.interview-question-flow img {
  margin: 10px 10px 0;
}

/* New-menu
   ========================================================================== */
.header-menu .text {
  position: absolute;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  top: 24px;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-size: 10px;
  line-height: 14px;
  color: #15305c;
  letter-spacing: 0;
}

.header-menu.add-text {
  top: 9px;
  box-sizing: content-box;
}

.menu-close {
  position: absolute;
  top: 0;
  display: none;
  z-index: 350;
}

.menu-close span {
  width: 26px;
  height: 3px;
  position: absolute;
  top: 20px;
  left: 10px;
  transform: rotateZ(45deg);
  background-color: #fff;
  z-index: 300;
  display: none;
}

.menu-close span:last-child {
  transform: rotateZ(-45deg);
}

.menu {
  position: fixed;
  z-index: 300;
  width: 85%;
  height: 100%;
  background-color: #f2f2f2;
  top: 0;
  right: 0;
  display: none;
  overflow-y: auto;
  line-height: 1.4;
  letter-spacing: 0;
}

.menu a:link, .menu a:visited {
  color: #fff;
}

.menu-cover {
  position: fixed;
  z-index: 250;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: none;
  opacity: 0.8;
  background-color: #222;
}

.menu-info {
  background-color: #1e2b3f;
  color: #fff;
  padding: 20px 4% 15px;
  font-size: 16px;
  text-align: center;
  border-bottom: solid 1px #fff;
  display: block;
}

.menu-info.action {
  padding-bottom: 20px;
}

.menu-info.action img {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
}

.menu-info .personal {
  font-size: 16px;
}

.menu-info .personal span {
  font-size: 10px;
  padding: 0 4px;
}

.menu-info .personal span.like-number {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-position: under;
}

.menu-info .personal span.like-number.stop {
  font-size: 12px;
  font-weight: normal;
}

.menu-info .personal span.like-number::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  background-image: url(/common/sp/img/parts/icon_like.png);
  background-size: cover;
  vertical-align: middle;
  margin-right: 5px;
}

.menu-info a.recommend {
  text-decoration: underline;
  text-underline-position: under;
}

.menu-info p span {
  font-weight: bold;
  padding: 0 4px;
}

.menu-info .button_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.menu-info.action .button_area {
  margin: 0;
}

.menu-info .button_area li {
  width: 48%;
}

.menu a.left:link, .menu a.left:visited {
  color: #1e2b3f;
}

.menu .mod-button.left {
  background-color: #fff;
  padding: 15px 4px 12px;
  font-size: 16px;
}

.menu .mod-button.right {
  border: solid 2px;
  font-size: 16px;
}

.main-list > li {
  border-bottom: solid 1px #fff;
  background-color: #1e2b3f;
}

.main-list > li:last-child {
  border-bottom: none;
}


.main-list .bookmark {
  position: static;
}

.nav-scout::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(/common/sp/img/parts/nav_icon_scout.png);
  background-size: cover;
  vertical-align: bottom;
  margin: 0 20px 0 10px;
}

.nav-bookmark::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(/common/sp/img/parts/nav_icon_bkm.png);
  background-size: cover;
  vertical-align: bottom;
  margin: 0 20px 0 10px;
}

.nav-management::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(/common/sp/img/parts/nav_icon_mng.png);
  background-size: cover;
  vertical-align: bottom;
  margin: 0 20px 0 10px;
}

.nav-ai::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 21px;
  background-image: url(/common/sp/img/parts/nav_icon_ai.png);
  background-size: cover;
  vertical-align: bottom;
  margin: 0 16px 0 6px;
}

.nav-knowhow::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(/common/sp/img/parts/nav_icon_kh.png);
  background-size: cover;
  vertical-align: bottom;
  margin: 0 20px 0 10px;
}

.nav-search span.search::before {
  content: "";
  display: inline-block;
  width: 17.5px;
  height: 17.5px;
  background-image: url(/common/sp/img/parts/nav_icon_search.png);
  background-size: cover;
  vertical-align: top;
  margin-right: 5px;
}

.nav-search span.ranking {
  font-size: 12px;
}
.mod-button span {
  letter-spacing: -1px;
}

.main-list > li.nav-search {
  background-color: #fff;
  padding: 18px 4%;
}

.main-list > li.nav-search span {
  margin-left: 5px;
}

.main-list > li.nav-search p {
  font-size: 14px;
  color: #1e2b3f;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.main-list > li.nav-search > a {
  justify-content: center;
  color: #1e2b3f;
  border: solid 2px;
  padding: 8px 0 6px;
  display: flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0;
}

span.new-icon, span.count-icon {
  position: static;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  border-radius: 50%;
  background-color: #e94e30;
  padding-right: 1px;
}

span.count-over::after {
  content: "+";
  position: relative;
  top: -4px;
  left: -1px;
}

.sub-list {
  padding: 12px 4%;
}

.sub-list li {
  font-size: 14px;
  margin-bottom: 10px;
}

.sub-list li:last-child {
  margin-bottom: 0;
}

.menu .sub-list a:link, .menu .sub-list a:visited {
  color: #888;
  letter-spacing: 0;
}

.menu .mod-button {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 13px 4px 10px;
  text-align: center;
  border-radius: 6px;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, 0.07), rgba(255, 255, 255, 0.07));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, 0.07)), to(rgba(255, 255, 255, 0.07)));
  background-image: linear-gradient(to top, rgba(5, 0, 1, 0.07), rgba(255, 255, 255, 0.07));
  -webkit-box-shadow: inset 0 0 1px rgba(5, 0, 1, 0.4);
  box-shadow: inset 0 0 1px rgba(5, 0, 1, 0.4);
  letter-spacing: 0;
}

.menu .mod-button .search {
  letter-spacing: -1px;
  font-size: 15px;
}

.bookmark {
  position: absolute;
  top: 4px;
  right: 47px;
}

.menu-info .entry-count-text{
  font-size: 12px;
}

.bookmark .bookmark-icon {
  width: 36px;
  height: 25px;
  padding-right: 0;
  background: url(/common/sp/img/layout/bookmark_clip.png) center center no-repeat;
  background-size: 22px 22px;
  position: absolute;
  right: 4px;
}

.header-utility {
  display: block;
  overflow: hidden;
  margin-right: 84px;
  vertical-align: middle;
}

.header-utility .login {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  font-size: 12px;
}

.header-utility .signup {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}

.header-utility .login > a::before, .header-utility .signup > a::before {
  background-image: url(https://type.jp/tensyoku-knowhow/SP/s/common/img/parts/parts_sprite.png);
}

.bookmark .bm-text {
  position: absolute;
  display: inline-block;
  width: 60px;
  top: 24px;
  right: -8px;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  line-height: 14px;
  color: #15305c;
}

.bookmark > span {
  display: inline-block;
  color: #15305c;
}

/*glossarypage shortcode用設定*/
.box-apply > p > a:last-of-type {
  margin-top: 30px;
}

.box-apply > p > a:first-of-type {
  max-width: 306px;
  background: #181878;
  margin: 16px auto;
  padding: 5px;
  border-radius: 5px;
}

/* ul, li
 ========================================================================== */
.list_style {
  padding: 0;
  margin: -10px 0 -15px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

/*last-of-type使用のため「ul.list_style」指定に*/
ul.list_style:last-of-type {
  margin: -10px 0 0;
}

.list_style > li {
  font-size: 14px;
  min-width: 49%;
  margin-bottom: 5px;
  overflow: hidden;
  text-indent: -10px;
  padding-left: 20px;
}

.list_style > li a {
  background: url(https://type.jp/tensyoku-knowhow/common/img/parts/tit.png) no-repeat;
  background-size: 6px;
  background-position-y: center;
  padding-left: 11px;
}

/* vote contents */
#vote .accept_vote {
  margin: 5px auto 30px auto;
}

#vote .accept_vote p {
  color: #d30100;
  font-weight: bold;
  margin-bottom: 0;
}

#vote .accept_vote li {
  font-size: 14px;
  text-decoration: underline;
  color: #000;
}

#vote .accept_vote li:hover {
  text-decoration: none;
}

#vote #first {
  border-bottom: 1px solid #000;
}

#vote .head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #a8a8a8;
  font-size: 14px;
  letter-spacing: 0;
}

#vote .head .title {
  display: inline-block;
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-weight: bold;
  background-color: #ffe603;
  border-radius: 5px;
}

#vote .head .title.accept {
  background-color: #d30100;
  color: #fff;
}

#vote .head .limit {
  color: #d30100;
  margin-right: 20px;
}

#vote .head .period {
  width: calc(100% - 100px);
  font-size: 12px;
}

#vote .head .period p {
  font-size: 12px;
  margin: 0 0 0 20px;
}

#vote .head p.period {
  margin: 0 0 0 20px;
}

#vote ul.target {
  margin-bottom: 10px;
}

#vote ul.target li {
  display: inline;
  width: 110px;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  margin-right: 8px;
}

#vote ul.target li.all {
  background: #ed7d31;
}

#vote ul.target li.engineer {
  background: #3e3fbe;
}

#vote ul.target li.sales {
  background: #df4f64;
}

#vote ul.target li.job_change_exp {
  background: #7022bf;
}

#vote ul.target li.job_change_noexp {
  background: #0090e6;
}

#vote ul.target li.old_20_30 {
  background: #31a92f;
}

#vote ul.target li.middle {
  background: #002755;
}

h1.vote {
  margin-bottom: 20px;
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(190 / 434 * 100%);
}

h1.vote img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

#vote h1 {
  text-align: center;
}

#vote h1.result {
  font-size: 14px;
}

#vote h2 {
  font-size: 18px;
  background: none;
  margin: 15px 0;
  padding: 0;
  color: #000;
  border: none;
}

#vote h2 + img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

#vote .main-img {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(495 / 690 * 100%);
}

#vote .main-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

#vote img.center, div.center {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

#vote img.center.result_img {
  width: 220px;
  height: 116px !important;
}

#vote .recent {
  text-align: center;
  margin: 0;
  font-size: 16px;
  background: none;
  padding: calc(51 / 690 * 100%) 0 calc(16 / 690 * 100%);
  border: none;
  margin-bottom: 10px;
  position: relative;
}

#vote .recent::before, #vote .recent::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

#vote .recent::before {
  background-image: url(https://knowhow.typemag.jp/common/img/vote/arch_top_SP.png);
  height: 7.5vw;
  top: 0;
}

#vote .recent::after {
  background-image: url(https://knowhow.typemag.jp/common/img/vote/arch_bottom_SP.png);
  height: 2.2vw;
  bottom: 0;
}

#vote p.lead {
  padding-bottom: 0;
}

.pie-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto 20px auto;
}

#pie-chart {
  width: 60% !important;
  height: calc((100vw / 375) * 207) !important;
}

.pie-area .select-area {
  width: 160px;
}

.pie-area .select-area p {
  font-size: 11px;
  font-weight: bold;
  position: relative;
  margin-left: 30px;
  margin-bottom: 15px;
}

.pie-area .select-area p:last-child {
  margin-bottom: 0;
}

.pie-area .select-area p::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 2px;
  left: -16px;
}

.pie-area .select-area p#select_1::before {
  background-color: #00afec;
}

.pie-area .select-area p#select_2::before {
  background-color: #9fd9f6;
}

.pie-area .select-area p#select_3::before {
  background-color: #d3edfb;
}

.wp-polls.question ul.wp-polls-ul {
  background-image: url(https://type.jp/tensyoku-knowhow/common/img/layout/bgr_banner2.png);
  background-size: cover;
  border-radius: 10px;
  margin: 0 0 15px 0;
  padding: 15px 25px;
}

.wp-polls.question ul.wp-polls-ul li {
  position: relative;
  display: flex;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.wp-polls.question ul.wp-polls-ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.wp-polls.question ul.wp-polls-ul li label {
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
}

.wp-polls.question ul.wp-polls-ul li input[type="radio" i] {
  min-width: 18px;
  height: 18px;
}

.wp-polls.question p.button_area {
  text-align: center;
  position: relative;
  width: 100%;
  height: 37px;
  margin: 0 auto 15px auto;
}

.wp-polls.question p.vote.button_area::after {
  content: "";
  position: absolute;
  top: 10px;
  right: calc(50vw - 60px);
  width: 15px;
  height: 9px;
  border-left: 2px solid #ffe603;
  border-bottom: 2px solid #ffe603;
  transform: rotate(-40deg);
}

.wp-polls.question .Buttons:focus {
  outline: none;
}

.wp-polls.question .Buttons.for_vote {
  width: 100%;
  line-height: 37px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  background-color: #171179;
  border: none;
  padding-right: 10px;
  border-radius: 5px;
  -webkit-appearance: none;
}

.wp-polls.question .Buttons.for_vote:hover {
  cursor: pointer;
  opacity: 0.8;
}

.wp-polls.question .Buttons.after_voted {
  width: 100%;
  line-height: 37px;
  color: #b5b5b6;
  font-size: 15px;
  font-weight: bold;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 50px;
  padding: 10px 0;
  border-bottom: 1px dashed #d3d3d3;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li:last-child {
  border-bottom: none;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li .select {
  font-size: 10px;
  width: 30%;
  font-weight: bold;
  margin: 0 2% 0 0;
}

.wp-polls .bar {
  width: 45%;
  height: 20px;
  font-size: 6px;
  line-height: 8px;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li .pollbar {
  position: relative;
  height: 20px;
  margin: 1px 0;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li:nth-child(4n-3) .pollbar {
  background-color: #00a7ea;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li:nth-child(4n-2) .pollbar {
  background-color: #54c3f1;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li:nth-child(4n-1) .pollbar {
  background-color: #9fd9f6;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li:nth-child(4n) .pollbar {
  background-color: #d3edfb;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li .pollbar::before {
  content: "";
  position: absolute;
  border-right: 1px solid #d3d3d3;
  width: 0;
  height: 30px;
  top: -5px;
  left: -1px;
}

.wp-polls .wp-polls-ans ul.wp-polls-ul li .vote {
  width: 21%;
  font-size: 10px;
  font-weight: bold;
  margin: 0 0 0 2%;
}

.tweet_area {
  border: 1px solid #999ea2;
  border-radius: 10px;
  background-color: #ecf6ff;
  padding: 4%;
  margin-bottom: 50px;
}

.tweet_area .title_area {
  display: flex;
  margin-bottom: 5px;
}

.tweet_area .title_area h2 {
  color: #222;
  font-size: 16px;
  width: 20em;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.tweet_area .line_block {
  width: 70%;
  border-top: 1px dashed #999ea2;
  margin: 0.5em 0 0 0;
}

.tweet_area p {
  margin: 0;
  padding: 0 0 0 3%;
}

#vote .caution {
  text-align: center;
  font-size: 10px;
}

#vote .back_btn {
  justify-content: space-around;
  margin-top: 15px;
  margin-bottom: 30px;
}

#vote .back_btn div {
  width: 100%;
  margin-bottom: 20px;
}

#vote .back_btn a {
  color: #181a77;
  line-height: 45px;
  text-align: center;
  border: 1px solid;
  display: block;
  border-radius: 10px;
}

#vote .back_btn a:hover {
  text-decoration: underline;
}

.about_quote {
  border: 1px solid #b5b5b5;
  background-color: #efefef;
  padding: 15px;
}

.about_quote p {
  text-align: center;
  font-size: 10px;
  margin-bottom: 0;
}

#vote ul#hash_tags li.hash_tag {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

#vote ul#result_boxes {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

#vote ul#result_boxes a {
  border: 1px solid #b5b5b5;
  width: 48%;
  color: #000;
  margin-bottom: 15px;
}

#vote ul#result_boxes a:hover {
  opacity: 0.8;
  text-decoration: none;
  color: inherit;
}

#vote ul#result_boxes p, #vote ul#result_boxes ul {
  margin-bottom: 10px;
}

#vote ul#result_boxes a li.box {
  padding: 15px;
}

#vote ul#result_boxes a li.box .vote_title {
  display: -webkit-box;
  font-size: 12px;
  font-weight: bold;
  height: 54px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

#vote ul#result_boxes a li.box .vote_span {
  font-size: 10px;
  margin-bottom: 5px;
  line-height: 1.4;
}

#vote ul#result_boxes a li.box .vote_imgBox {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(490 / 695 * 100%);
}

#vote ul#result_boxes a li.box .vote_imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

#vote ul#result_boxes a li.box .vote_imgBox img {
  bottom: 0;
  margin: auto;
}

#vote ul#result_boxes a li.box ul.tag_area {
  line-height: 1;
  height: 42px;
}

#vote ul#result_boxes a li.box ul.tag_area li {
  font-size: 10px;
  display: inline-block;
}

#vote ul#result_boxes a li h2::before {
  content: "";
}

#vote .sns_share_list {
  margin-top: 25px;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 527px;
  height: 106px;
  margin-top: -100px;
  margin-left: -263.5px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

#loader img {
  width: 60%;
  margin: 0 auto;
}

#vote .mod-pagination {
  font-size: 10px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
}

#vote .mod-pagination > li {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

#vote .mod-pagination > li.is-current > span, #vote .mod-pagination > li > a {
  line-height: 28px;
  display: block;
  width: 28px;
  height: 28px;
  color: #000;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: #fff;
}

#vote .mod-pagination > li.is-current > span, #vote .mod-pagination > li.is-current > a {
  color: #fff;
  background-color: #06c;
}

#vote .mod-pagination > li:last-child {
  margin-right: 0;
}

[id="pagetop"] .sections-normal .excerpt {
  height: 35px;
}

[id="pagetop"] .sections-normal .excerpt p {
  font-size: 100%;
}

.page-knowledge .white-btn {
  width: 50%;
  margin: 20px auto 30px;
}

.single-knowledge-items__date, .single-knowledge-items__tags {
  display: block;
  color: #747474;
  font-size: 12px;
}

.single-knowledge-items__tags {
  margin-bottom: 10px;
}
