@charset "UTF-8";
/**
 * Vertical
 */
.m-vertical {
  font-size: 0;
}

.m-vertical + .m-vertical {
  margin-top: 40px;
}

.m-vertical .m-label {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  background: #eee;
  line-height: 1;
  padding: 13px 0 11px;
  text-align: center;
  width: 240px;
  margin-left: -19px;
  position: relative;
  border-radius: 0 4px 4px 0;
}

.m-vertical .m-label::before {
  content: "";
  position: absolute;
  background: url(/images/contents/images/member/icon/icon_check_gray.png) no-repeat;
  width: 17px;
  height: 11px;
  top: 14px;
  left: 20px;
}

.m-vertical .m-label + ul {
  margin-top: 20px;
}

.m-vertical > ul > li {
  margin-top: 10px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.m-vertical > ul > li:first-child {
  margin-top: 0;
}

.m-vertical > ul > li > a {
  padding: 16px 15px 18px;
  display: block;
}

.m-vertical > ul > li > a::after {
  clear: both;
  display: block;
  content: "";
}

.m-vertical > ul > li > a:hover .m-title {
  text-decoration: underline;
}

.m-vertical > ul > li.is-disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  z-index: 5;
}

.m-vertical > ul > li.is-disabled > a {
  pointer-events: none;
}

.m-vertical .m-image {
  width: 130px;
  float: left;
}

.m-vertical .m-image > img {
  width: 100%;
  height: auto;
}

.m-vertical .m-image + .m-detail {
  margin-left: 145px;
}

.m-vertical .m-title {
  font-size: 14px;
  color: #1A74C0;
  line-height: 20px;
  font-weight: bold;
  word-break: break-all;
}

.m-vertical .m-text {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  margin-top: 10px;
  padding: 12px 14px 11px 14px;
  background: #F9F9F9;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
}

.m-vertical .m-other {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.m-vertical .m-other > li {
  margin-top: 4px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.m-vertical .m-other > li:first-child {
  margin-top: 0;
}

.m-vertical .m-other > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-vertical .m-other > li.is-place::before {
  background: url(/images/contents/images/member/icon/icon_area.png);
  width: 15px;
  height: 19px;
}

.m-vertical .m-other > li.is-company::before {
  background: url(/images/contents/images/member/icon/icon_company.png);
  width: 16px;
  height: 16px;
}

.m-vertical .m-btm {
  padding: 0 16px 16px 15px;
}

.m-vertical .m-btm::after {
  clear: both;
  display: block;
  content: "";
}

.m-vertical .m-count {
  float: left;
  margin-left: -25px;
  margin-right: 13px;
  background: #1067BB;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
  padding: 7px 11px;
  position: relative;
}

.m-vertical .m-count span {
  vertical-align: baseline;
  font-size: 21px;
  padding: 0 3px;
}

.m-vertical .m-count::after {
  content: "";
  border: 10px solid transparent;
  border-left-color: #1067BB;
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-vertical .m-postdate {
  float: left;
  line-height: 1;
  margin-top: 12px;
  font-size: 12px;
  color: #666666;
  text-align: right;
  display: block;
}

.m-vertical .m-actions {
  float: right;
  display: table;
}

.m-vertical .m-actions > li {
  display: table-cell;
  vertical-align: middle;
}

.m-vertical .m-actions > li:first-child {
  padding-right: 10px;
}

.m-vertical .m-actions > li > a {
  display: block;
  text-align: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-vertical .m-actions > li > a:hover {
  opacity: 0.7;
}

.m-vertical .m-actions .is-contactBtn > a {
  color: #666;
}

.m-vertical .m-actions .is-applyBtn > a {
  background: #FB8C00;
  color: #fff;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.m-vertical .m-actions .is-applyBtn > a::before {
  content: "";
  position: absolute;
  background: url(/images/contents/images/member/icon/icon_pen_white.png) no-repeat;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-55px, -50%);
  -ms-transform: translate(-55px, -50%);
  transform: translate(-55px, -50%);
}

.m-vertical .m-actions .is-disabledBtn > a {
  background: #CCCCCC;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.m-vertical .m-close {
  cursor: pointer;
  position: absolute;
  top: 11px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: url(/images/contents/images/member/icon/icon_close_m.png) no-repeat;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  z-index: 5;
}

.m-vertical .m-close:hover {
  opacity: 0.7;
}

.m-vertical .m-returned {
  position: relative;
  margin: 14px 0 15px;
  padding: 0 15px;
  height: 99px;
  overflow: hidden;
}

.m-vertical .m-returned dt {
  display: inline-block;
  background: #EEEEEE;
  line-height: 1;
  padding: 6px 13px 5px 31px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: bold;
  color: #999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.m-vertical .m-returned dt::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 14px;
  height: 10px;
  background: url(/images/contents/images/member/icon/icon_scout_returned.png) no-repeat;
}

.m-vertical .m-returned dd {
  margin: -13px 0 0;
  background: #F9F9F9;
  padding: 26px 22px 22px;
}

.m-vertical .m-returned dd p {
  font-size: 14px;
  color: #999;
  line-height: 22px;
}

.m-vertical .m-returned dd p + .m-fileDownloads {
  margin-top: 19px;
}

.m-vertical .m-returned .m-accordionBtn {
  width: 16px;
  height: 9px;
  background: url(/images/contents/images/member/icon/icon_arrow_gray_m.png) no-repeat;
  position: absolute;
  top: 26px;
  right: 27px;
  cursor: pointer;
}

.m-vertical .m-returned.is-open .m-accordionBtn {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Horizontal
 */
.m-horizontal {
  font-size: 0;
}

.m-horizontal > ul {
  margin: -10px -10px 0 0;
}

.m-horizontal > ul > li {
  display: inline-block;
  vertical-align: top;
  width: 325px;
  margin: 10px 10px 0 0;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.m-horizontal > ul > li > a {
  padding: 12px 18px 12px 14px;
  display: block;
}

.m-horizontal > ul > li > a:hover .m-title {
  text-decoration: underline;
}

.m-horizontal .m-title {
  font-size: 14px;
  color: #1A74C0;
  line-height: 20px;
  font-weight: bold;
}

.m-horizontal .m-detail {
  background: #F9F9F9;
  margin-top: 5px;
}

.m-horizontal .m-detail::after {
  clear: both;
  display: block;
  content: "";
}

.m-horizontal .m-image {
  width: 125px;
  height: 96px;
  float: left;
  margin-right: 14px;
}

.m-horizontal .m-image > img {
  width: 100%;
  height: auto;
}

.m-horizontal .m-text {
  font-size: 12px;
  color: #333333;
  line-height: 20px;
  padding: 8px 16px 8px 0;
}

.m-horizontal .m-postdate {
  font-size: 12px;
  color: #666666;
  text-align: right;
  display: block;
  margin-top: 10px;
}

/**
 * ScoutMail
 */
.m-scoutMail > ul > li {
  border: 1px solid #DDDDDD;
  margin-top: 10px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  height: 145px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-scoutMail > ul > li:hover {
  opacity: 0.7;
}

.m-scoutMail > ul > li .m-wrap {
  padding: 18px 14px 14px;
}

.m-scoutMail > ul > li .m-wrap::after {
  clear: both;
  display: block;
  content: "";
}

.m-scoutMail > ul > li:first-child {
  margin-top: 0;
}

.m-scoutMail > ul > li.is-new::before {
  content: "";
  background: #FE3824;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 6px;
}

.m-scoutMail > ul > li.is-disabled {
  background: #EEEEEE;
}

.m-scoutMail > ul > li.is-returned {
  height: 265px;
}

.m-scoutMail > ul > li.is-returned .m-other {
  position: static;
  margin-top: -20px;
}

.m-scoutMail > ul > li.is-hasDownload {
  height: auto;
}

.m-scoutMail > ul > li.is-open {
  cursor: auto;
  overflow: visible;
}

.m-scoutMail > ul > li.is-open:hover {
  opacity: 1;
}

.m-scoutMail > ul > li.is-open .m-title {
  white-space: normal;
  overflow: visible;
}

.m-scoutMail > ul > li.is-open .m-text {
  height: auto;
  margin-bottom: 20px;
}

.m-scoutMail > ul > li.is-open .m-other {
  position: static;
}

.m-scoutMail > ul > li.is-open .m-accordionBtn {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.m-scoutMail > ul > li.is-open .m-returned dd > p {
  height: auto;
  overflow: visible;
}

.m-scoutMail > ul > li.is-open.is-returned .m-other {
  margin-top: 0;
}

.m-scoutMail .m-image {
  width: 80px;
  float: left;
  text-align: center;
}

.m-scoutMail .m-image > img {
  border-radius: 40px;
  background-color: #F9F9F9;
}

.m-scoutMail .m-image + .m-detail {
  margin-left: 92px;
}

.m-scoutMail .m-image .m-type {
  position: relative;
  width: 58px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 11px;
  display: inline-block;
  top: -10px;
}

.m-scoutMail .m-image .m-type.is-scout {
  color: #fff;
  background: #233977;
}

.m-scoutMail .m-image .m-type.is-notice {
  color: #233977;
  background: #F4F9FF;
}

.m-scoutMail .m-name {
  color: #999999;
  font-size: 12px;
}

.m-scoutMail .m-title {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  line-height: 22px;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-scoutMail .m-text {
  margin-top: 8px;
  margin-bottom: 30px;
  height: 3.2em;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  line-height: 22px;
}

.m-scoutMail .m-other {
  position: absolute;
  left: 106px;
  right: 14px;
  bottom: 10px;
}

.m-scoutMail .m-other::after {
  clear: both;
  display: block;
  content: "";
}

.m-scoutMail .m-date {
  font-size: 12px;
  color: #999;
  float: left;
}

.m-scoutMail .m-state {
  margin-top: -4px;
  margin-bottom: -3px;
  float: right;
  width: 58px;
  display: inline-block;
  line-height: 1;
  padding: 5px 0 4px;
  color: #fff;
  font-size: 11px;
  border-radius: 10px;
  text-align: center;
}

.m-scoutMail .m-state.is-true {
  background: #FB8C00;
}

.m-scoutMail .m-state.is-false {
  background: #666;
}

.m-scoutMail .m-action {
  padding: 25px 0 22px;
  text-align: center;
  background-color: #F9F9F9;
  margin: 15px -14px -14px;
  font-size: 0;
}

.m-scoutMail .m-action.is-scout .m-notice {
  color: #233977;
}

.m-scoutMail .m-action.is-scout .m-notice.is-period {
  color: #FE3824;
  margin-top: 20px;
  font-size: 14px;
}

.m-scoutMail .m-action.is-scout .m-notice.is-period span {
  font-size: 12px;
}

.m-scoutMail .m-action.is-scout .m-btnList {
  text-align: center;
}

.m-scoutMail .m-action.is-scout .m-btnList > li {
  display: inline-block;
  width: 160px;
  margin: 0 5px;
}

.m-scoutMail .m-action.is-scout .m-btnList > li.is-firstFull {
  width: 330px;
  display: block;
  margin: 0 auto 10px;
}

.m-scoutMail .m-action.is-expired {
  background: rgba(254, 56, 36, 0.1);
}

.m-scoutMail .m-action.is-expired .m-notice {
  color: #FE3824;
}

.m-scoutMail .m-notice {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.m-scoutMail .m-btnList {
  margin-top: 20px;
}

.m-scoutMail .m-btnList > li {
  margin: 15px auto 0;
}

.m-scoutMail .m-btnList > li:first-child {
  margin-top: 0;
}

.m-scoutMail .m-btnList > li > a {
  font-size: 18px;
  font-weight: bold;
  display: block;
  height: 50px;
  line-height: 50px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-scoutMail .m-btnList > li > a:hover {
  opacity: 0.7;
}

.m-scoutMail .m-btnList .is-get {
  width: 500px;
}

.m-scoutMail .m-btnList .is-update {
  width: 260px;
}

.m-scoutMail .m-btnList .is-update.is-white > a {
  background: #fff;
  color: #333;
}

.m-scoutMail .m-btnList .is-orange > a {
  background: #FB8C00;
  color: #fff;
}

.m-scoutMail .m-btnList .is-cancel > a {
  color: #666666;
  background: #fff;
}

.m-scoutMail .m-btnList .is-interested > a {
  color: #fff;
  background: #1A74C0;
}

.m-scoutMail .m-btnList .is-question > a {
  color: #1A74C0;
  background: #fff;
}

.m-scoutMail .m-returned {
  margin: 12px 0 0 92px;
  position: relative;
}

.m-scoutMail .m-returned dl {
  margin: 0;
}

.m-scoutMail .m-returned dt {
  display: inline-block;
  background: #EEEEEE;
  line-height: 1;
  padding: 6px 13px 5px 31px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: bold;
  color: #999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.m-scoutMail .m-returned dt::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 14px;
  height: 10px;
  background: url(/images/contents/images/member/icon/icon_scout_returned.png) no-repeat;
}

.m-scoutMail .m-returned dd {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-align: left;
  padding: 24px 18px 17px 22px;
  background: #F9F9F9;
  line-height: 22px;
  margin-top: -13px;
}

.m-scoutMail .m-returned dd > p {
  height: 44px;
  overflow: hidden;
}

.m-scoutMail .m-returned dd > p + .m-fileDownloads {
  margin-top: 19px;
}

.m-scoutMail .m-accordionBtn {
  width: 16px;
  height: 9px;
  background: url(/images/contents/images/member/icon/icon_arrow_gray_m.png) no-repeat;
  position: absolute;
  top: 14px;
  right: 12px;
  cursor: pointer;
}

.m-scoutMail .m-modal[data-modal-target="complete"] .m-modalTitle {
  text-align: center;
}

.m-scoutMail .m-modal .m-modalContent {
  width: 800px;
  padding: 40px 50px 22px 50px;
}

.m-scoutMail .m-modal .m-modalTitle {
  color: #233977;
  font-size: 18px;
  font-weight: bold;
  margin: 0 -5px 23px;
}

.m-scoutMail .m-modal .m-textareaWrap textarea {
  height: 141px;
}

.m-scoutMail .m-modal .m-send {
  margin-top: 20px;
  text-align: center;
}

.m-scoutMail .m-modal .m-send > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 260px;
  height: 50px;
  background: #1A74C0;
  -webkit-box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-scoutMail .m-modal .m-send > button:hover {
  opacity: 0.7;
}

.m-scoutMail .m-modal .m-send > button.is-disabled {
  color: #fff;
  background: #CCCCCC;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}

.m-scoutMail .m-modal .m-send > button.is-disabled:hover {
  opacity: 1;
}

.m-scoutMail .m-modal .m-closeBtn {
  width: 260px;
  margin: 0 auto;
  padding-bottom: 3px;
}

.m-scoutMail .m-modal .m-closeBtn > a {
  text-align: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin: 0 auto;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-scoutMail .m-modal .m-closeBtn > a:hover {
  opacity: 0.7;
}

.m-scoutMail .m-modal .m-modalInner {
  background: #F9F9F9;
  padding: 17px 50px 20px;
  margin: 0 -50px;
}

.m-scoutMail .m-modal .m-returnedState {
  text-align: left;
  line-height: 20px;
  margin-bottom: 15px;
}

.m-scoutMail .m-modal .m-returnedState dt {
  color: #333;
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
}

.m-scoutMail .m-modal .m-returnedState dd {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}

.m-scoutMail .m-modal .m-returnedState .m-state {
  float: none;
  margin: 0;
}

.m-scoutMail .m-modal .m-after {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}

.m-scoutMail .m-modal .m-fileDownloads {
  margin-top: 10px;
}

.m-scoutMail .m-modal .m-addError {
  color: #FE3824;
  font-size: 12px;
  margin-top: 20px;
}

.m-scoutMail .m-modal .m-addFile {
  margin: 20px auto 0;
  width: 260px;
  position: relative;
}

.m-scoutMail .m-modal .m-addFile > a {
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-scoutMail .m-modal .m-addFile > a:hover {
  opacity: 0.7;
}

.m-scoutMail .m-modal .m-addFile > a.is-disabled {
  background: #CCCCCC;
  color: #fff;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}

.m-scoutMail .m-modal .m-addFile > a.is-disabled:hover {
  opacity: 1;
}

.m-scoutMail .m-modal .m-addFile .m-modal {
  display: none;
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-title {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin-top: 0;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory {
  margin: 0 10px;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory > li {
  font-size: 14px;
  color: #1A74C0;
  font-weight: bold;
  line-height: 45px;
  padding-left: 8px;
  position: relative;
  letter-spacing: -0.04em;
  cursor: pointer;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory > li:hover {
  text-decoration: underline;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory > li + li {
  border-top: 1px solid #DDDDDD;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory > li span {
  font-size: 12px;
}

.m-scoutMail .m-modal .m-addFile .m-modal .m-fileCategory > li input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

/**
 * CarefullySelected
 */
.m-carefullySelected {
  position: relative;
}

.m-carefullySelected .m-slide::after {
  clear: both;
  display: block;
  content: "";
}

.m-carefullySelected .m-slide .m-item {
  margin-right: 10px;
  width: 280px !important;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  padding-bottom: 15px;
}

.m-carefullySelected .m-slide a:hover > .m-item > .m-title {
  text-decoration: underline;
}

.m-carefullySelected .m-slide a:hover > .m-item > .m-seeNextBtn {
  opacity: .7;
}

.m-carefullySelected .m-title {
  margin-top: 14px;
  font-size: 14px;
  color: #1A74C0;
  line-height: 20px;
  font-weight: bold;
  padding: 0 12px;
}

.m-carefullySelected .m-text {
  margin-top: 6px;
  font-size: 12px;
  color: #333333;
  line-height: 20px;
  padding: 0 12px;
}

.m-carefullySelected .m-seeNextBtn {
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #333333;
  font-weight: bold;
  display: block;
  margin: 14px auto 0;
  text-align: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-carefullySelected .slick-prev,
.m-carefullySelected .slick-next {
  top: 101px;
}

/**
 * For Slide
 */
.slick-prev,
.slick-next {
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: absolute;
  z-index: 50;
  opacity: .7;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  text-indent: -9999px;
  outline: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev {
  left: -30px;
  background: url(/images/contents/images/member/btn_roll_arrow_l.png);
}

.slick-next {
  right: -30px;
  background: url(/images/contents/images/member/btn_roll_arrow_r.png);
}

/**
 * Recommend and Theme
 */
.m-recommend,
.m-theme {
  position: relative;
}

.m-recommend .m-slide::after,
.m-theme .m-slide::after {
  clear: both;
  display: block;
  content: "";
}

.m-recommend .m-slide .m-item,
.m-theme .m-slide .m-item {
  margin-right: 10px;
  width: 230px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}

.m-recommend .m-slide .m-item > a,
.m-theme .m-slide .m-item > a {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  display: block;
}

.m-recommend .m-slide .m-item > a:hover,
.m-theme .m-slide .m-item > a:hover {
  opacity: 0.6;
}

.m-recommend .slick-prev,
.m-recommend .slick-next,
.m-theme .slick-prev,
.m-theme .slick-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**
 * Useful
 */
.m-useful {
  position: relative;
}

.m-useful .m-slide::after {
  clear: both;
  display: block;
  content: "";
}

.m-useful .m-slide .m-item {
  margin-right: 10px;
  width: 240px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
}

.m-useful .m-slide .m-item > a {
  display: block;
  padding: 15px;
}

.m-useful .m-slide .m-item > a:hover .m-title {
  text-decoration: underline;
}

.m-useful .m-title {
  margin-top: 11px;
  font-size: 14px;
  color: #1A74C0;
  line-height: 20px;
  font-weight: bold;
}

.m-useful .m-text {
  margin-top: 4px;
  font-size: 12px;
  color: #333333;
  line-height: 20px;
}

.m-useful .slick-prev,
.m-useful .slick-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**
 * History and Side Recommend
 */
.m-history > ul > li + li,
.m-sideRecommend > ul > li + li {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #ddd;
}

.m-history > ul > li > a,
.m-sideRecommend > ul > li > a {
  display: block;
}

.m-history > ul > li > a:hover .m-title,
.m-sideRecommend > ul > li > a:hover .m-title {
  text-decoration: underline;
}

.m-history .m-summary::after,
.m-sideRecommend .m-summary::after {
  clear: both;
  display: block;
  content: "";
}

.m-history .m-image,
.m-sideRecommend .m-image {
  float: left;
  width: 80px;
  margin-right: 10px;
}

.m-history .m-image > img,
.m-sideRecommend .m-image > img {
  width: 100%;
  height: auto;
}

.m-history .m-title,
.m-sideRecommend .m-title {
  float: right;
  width: 100px;
  font-size: 14px;
  color: #1A74C0;
  line-height: 20px;
  font-weight: bold;
}

.m-history .m-text,
.m-sideRecommend .m-text {
  background: #F9F9F9;
  padding: 12px 14px 15px;
  font-size: 12px;
  color: #333333;
  line-height: 20px;
  margin-top: 10px;
}

.m-history .m-moreLink,
.m-sideRecommend .m-moreLink {
  text-align: right;
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #ddd;
}

.m-history .m-moreLink > a,
.m-sideRecommend .m-moreLink > a {
  color: #1A74C0;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-right: 17px;
  line-height: 1;
}

.m-history .m-moreLink > a:hover,
.m-sideRecommend .m-moreLink > a:hover {
  text-decoration: underline;
}

.m-history .m-moreLink > a::after,
.m-sideRecommend .m-moreLink > a::after {
  content: "";
  background: url(/images/contents/images/member/icon/icon_arrow_gray_s.png);
  width: 8px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 0;
}

/**
 * Text Base
 */
.m-areaLinks .m-areaLink {
  padding: 17px 20px 33px;
  background: #f9f9f9;
}

.m-areaLinks .m-areaLink::after {
  clear: both;
  display: block;
  content: "";
}

.m-areaLinks .m-areaLink > dt {
  font-size: 14px;
  font-weight: bold;
  color: #999;
  clear: both;
}

.m-areaLinks .m-areaLink > dt + dd {
  margin-left: -2px;
}

.m-areaLinks .m-areaLink > dd {
  float: left;
  margin: 10px 0 0 10px;
}

.m-areaLinks .m-areaLink > dd + dt {
  padding-top: 20px;
}

.m-areaLinks .m-areaLink > dd:nth-child(5n+1) {
  margin-left: -2px;
}

.m-areaLinks .m-areaLink > dd a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 30px 12px 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: #1A74C0;
  font-size: 14px;
  font-weight: bold;
  width: 148px;
  line-height: 1.2;
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-areaLinks .m-areaLink > dd a:hover {
  opacity: 0.7;
}

.m-areaLinks .m-areaLink > dd .m-number {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #999;
  font-weight: normal;
  font-size: 12px;
}

.m-areaLinks .m-areaLink > dd.is-other a {
  font-size: 12px;
  padding: 6px 30px 6px 10px;
}

.m-areaLinks .m-asiaLink {
  margin-top: 20px;
  text-align: center;
}

.m-areaLinks .m-asiaLink .m-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.m-areaLinks .m-asiaLink > a {
  width: 290px;
  display: block;
  margin: 0 auto;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  padding: 16px 0 15px;
}

.m-areaLinks .m-asiaLink > a:hover {
  opacity: 0.7;
}

.m-areaLinks .m-asiaLink > a > img {
  width: 171px;
  height: auto;
}

.m-textLinks::after {
  clear: both;
  display: block;
  content: "";
}

.m-textLinks .m-textLink {
  float: left;
  width: 196px;
  margin-left: 35px;
}

.m-textLinks .m-textLink:first-child {
  width: 179px;
  margin-left: 0;
}

.m-textLinks .m-textLink a {
  color: #1A74C0;
  font-size: 14px;
  line-height: 27px;
}

.m-textLinks .m-textLink a:hover {
  text-decoration: underline;
}

.m-newJob {
  position: relative;
  /* 一覧用 縦型スタイル*/
}

.m-newJob > .m-title {
  height: 42px;
  color: #fff;
  line-height: 43px;
  border-radius: 3px 3px 0 0;
  background-color: #233977;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: bold;
  padding: 0 19px;
}

.m-newJob .m-newJobList {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  background: #fff;
}

.m-newJob .m-newJobList.is-detailList .m-tag {
  margin-right: 0;
}

.m-newJob .m-newJobList.is-detailList .m-date {
  position: static;
  font-size: 12px;
}

.m-newJob .m-newJobList > ul {
  padding: 20px 21px;
}

.m-newJob .m-newJobList > ul > li {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}

.m-newJob .m-newJobList > ul > li + li {
  margin-top: 12px;
}

.m-newJob .m-newJobList > ul > li > a {
  display: block;
  position: relative;
  padding: 17px 20px 21px;
  min-height: 200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.m-newJob .m-newJobList > ul > li > a::after {
  content: "";
  display: block;
  clear: both;
}

.m-newJob .m-newJobList > ul > li > a:hover .m-title {
  text-decoration: underline;
}

.m-newJob .m-newJobList .m-title {
  color: #1A74C0;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-newJob .m-newJobList .m-image {
  margin-top: 10px;
  margin-right: 15px;
  float: left;
  width: 130px;
}

.m-newJob .m-newJobList .m-image img {
  width: 100%;
}

.m-newJob .m-newJobList .m-image + .m-detail {
  margin-left: 145px;
}

.m-newJob .m-newJobList .m-date {
  font-size: 10px;
  color: #999;
  margin-top: 6px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 17px;
}

.m-newJob .m-newJobList .m-detail {
  margin-top: 10px;
}

.m-newJob .m-newJobList .m-text {
  background-color: #F9F9F9;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.42;
  padding: 12px 14px 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-newJob .m-newJobList .m-other {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

.m-newJob .m-newJobList .m-other > li {
  margin-top: 4px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.m-newJob .m-newJobList .m-other > li:first-child {
  margin-top: 0;
}

.m-newJob .m-newJobList .m-other > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-newJob .m-newJobList .m-other > li.is-place::before {
  background: url(/images/contents/images/member/icon/icon_area.png);
  width: 15px;
  height: 19px;
}

.m-newJob .m-newJobList .m-other > li.is-company::before {
  background: url(/images/contents/images/member/icon/icon_company.png);
  width: 16px;
  height: 16px;
}

.m-newJob .m-newJobList .m-tag {
  margin-top: 13px;
  margin-right: 180px;
}

.m-newJob .m-newJobList .m-tag::after {
  content: "";
  display: block;
  clear: both;
}

.m-newJob .m-newJobList .m-tag > li {
  width: 65px;
  height: 16px;
  line-height: 1;
  padding: 3.5px 0px 3.5px 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  background-color: #005AB5;
  text-align: center;
  font-size: 9px;
  float: left;
  margin: 0px 5px 3px 0px;
}

.m-newJob .m-newJobList .m-tag > li + li {
  /*margin-left: 5px;*/
}

.m-newJob .m-newJobList .m-more {
  background-color: #F9F9F9;
  padding: 20px 0 22px;
}

.m-newJob .m-newJobList .m-more a {
  border-radius: 4px;
  background: #fff;
  width: 400px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  position: relative;
}

.m-newJob .m-newJobList .m-more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 12px;
  background: url(/images/contents/images/guest/icon_arrow_btn.png);
  margin-top: -6px;
}

.m-newJob .m-newJobList .m-more a:hover {
  opacity: .7;
}

.m-newJob .m-newJobList .m-more.is-under a {
  color: #1A74C0;
}

.m-newJob .m-newJobList .m-more.is-under a::after {
  content: "";
  position: static;
  display: inline-block;
  vertical-align: middle;
  background: url(/images/contents/images/guest/icon_arrow_display_further.png);
  width: 14px;
  height: 8px;
  margin-left: 10px;
  margin-top: -3px;
}

.m-newJob .m-itemNumber {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #fff;
  font-size: 14px;
}

.m-newJob.is-vertical .m-newJobList > ul > li.is-active {
  border: 1px solid #1067BB;
}

.m-newJob.is-vertical .m-newJobList > ul > li a {
  padding: 28px 28px 21px;
}

.m-newJob.is-vertical .m-newJobList .m-title {
  text-overflow: unset;
  overflow: visible;
  white-space: normal;
}

.m-newJob.is-vertical .m-newJobList .m-text {
  margin-top: 10px;
  text-overflow: unset;
  overflow: visible;
  white-space: normal;
}

.m-newJob.is-vertical .m-newJobList .m-info {
  display: table;
  width: 100%;
  margin-top: 15px;
}

.m-newJob.is-vertical .m-newJobList .m-image {
  float: none;
  display: table-cell;
  vertical-align: middle;
  margin-top: 0;
}

.m-newJob.is-vertical .m-newJobList .m-detail {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}

.m-newJob.is-vertical .m-newJobList .m-other {
  margin-top: 0;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail dl {
  margin-left: -17px;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail dl::after {
  content: "";
  display: block;
  clear: both;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail dt {
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 17px;
  margin-left: 17px;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail dd {
  margin-left: 17px;
  float: left;
  width: 290px;
}

.m-newJob.is-vertical .m-newJobList .m-thumbnail dd img {
  width: 100%;
}

.m-newJob.is-vertical .m-newJobList .m-foot {
  background-color: #E6F5FF;
  padding: 20px 30px;
  border-radius: 0 0 4px 4px;
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.m-newJob.is-vertical .m-newJobList .m-date {
  display: table-cell;
  vertical-align: middle;
}

.m-newJob.is-vertical .m-newJobList .m-button {
  width: 180px;
  display: table-cell;
  vertical-align: middle;
}

.m-btn {
  -webkit-appearance: none;
  background-color: #FB8C00;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  margin-left: 10px;
}

.m-btn:hover {
  opacity: .7;
}

.m-disBtn {
  -webkit-appearance: none;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 16px;
  font-weight: bold;
  border: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  margin-left: 10px;
  color: #FB8C00 !important;
  background-color: #F7F4E3;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}


.m-newJob.is-vertical .m-newJobList .m-favoriteBtn {
  -webkit-appearance: none;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-newJob.is-vertical .m-newJobList .m-favoriteBtn::before {
  content: "";
  width: 21px;
  height: 19px;
  background: url(/images/contents/images/guest/icon_list_favorite.png);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

.m-newJob.is-vertical .m-newJobList .m-favoriteBtn:hover {
  opacity: .7;
}

.m-newJob.is-vertical .m-newJobList .m-favoriteBtn.is-done {
  background: #F9F9F9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #233977;
  cursor: default;
}

.m-newJob.is-vertical .m-newJobList .m-favoriteBtn.is-done::before {
  background: url(/images/contents/images/guest/icon_list_active.png);
  margin-right: 20px;
  margin-left: -10px;
}

.m-newJob.is-vertical .m-newJobList .m-favoriteBtn.is-done:hover {
  opacity: 1;
}

.m-indeed {
  margin-top: 30px;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  position: relative;
  background: #fff;
}

.m-indeed > .m-title {
  font-size: 18px;
  line-height: 1.3;
  padding-top: 2px;
  color: #333333;
  font-weight: bold;
  position: relative;
  padding-left: 12px;
  margin-bottom: 19px;
}

.m-indeed > .m-title::before {
  content: "";
  width: 4px;
  height: 25px;
  background-color: #1A74C0;
  position: absolute;
  top: 0;
  left: 0;
}

.m-indeed > .m-title::after {
  content: "";
  width: 4px;
  height: 12.5px;
  background-color: #233977;
  position: absolute;
  bottom: 0;
  left: 0;
}

.m-indeed > .m-title span {
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-left: 7px;
}

.m-indeed .m-itemLogo {
  position: absolute;
  top: 22px;
  right: 20px;
}

.m-indeed .m-indeedList > ul > li {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.m-indeed .m-indeedList > ul > li + li {
  margin-top: 12px;
}

.m-indeed .m-indeedList > ul > li a {
  display: block;
  padding: 28px 28px 25px;
}

.m-indeed .m-indeedList > ul > li a:hover .m-title {
  text-decoration: underline;
}

.m-indeed .m-indeedList .m-title {
  font-size: 16px;
  font-weight: bold;
  color: #1A74C0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.m-indeed .m-indeedList .m-text {
  background-color: #F9F9F9;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.42;
  padding: 12px 14px 11px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-indeed .m-indeedList .m-info {
  margin-top: 15px;
}

.m-indeed .m-indeedList .m-detail {
  display: table;
  width: 100%;
}

.m-indeed .m-indeedList .m-other {
  display: table-cell;
  vertical-align: bottom;
  font-size: 14px;
  color: #666;
}

.m-indeed .m-indeedList .m-other > li {
  margin-top: 4px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.m-indeed .m-indeedList .m-other > li:first-child {
  margin-top: 0;
}

.m-indeed .m-indeedList .m-other > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-indeed .m-indeedList .m-other > li.is-place::before {
  background: url(/images/contents/images/member/icon/icon_area.png);
  width: 15px;
  height: 19px;
}

.m-indeed .m-indeedList .m-other > li.is-company::before {
  background: url(/images/contents/images/member/icon/icon_company.png);
  width: 16px;
  height: 16px;
}

.m-indeed .m-indeedList .m-date {
  display: table-cell;
  vertical-align: bottom;
  width: 130px;
  text-align: right;
  color: #999;
  padding-bottom: 4px;
}

.m-usefulContent {
  margin-bottom: 20px;
}

.m-usefulContent > .m-title {
  color: #233977;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 39px;
  position: relative;
}

.m-usefulContent > .m-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  width: 36px;
  height: 36px;
  background: url(/images/contents/images/guest/icon_ttl_useful.png);
  margin-top: -19px;
}

.m-usefulContent .m-usefulContentList {
  margin-top: 12px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  background: #fff;
  padding: 18px 18px 0;
}

.m-usefulContent .m-usefulContentList > li {
  padding-bottom: 18px;
}

.m-usefulContent .m-usefulContentList > li + li {
  border-top: 1px solid #EEEEEE;
  padding-top: 21px;
}

.m-usefulContent .m-usefulContentList > li a {
  display: block;
}

.m-usefulContent .m-usefulContentList > li a:hover .m-title {
  text-decoration: underline;
}

.m-usefulContent .m-usefulContentList .m-image img {
  width: 100%;
}

.m-usefulContent .m-usefulContentList .m-title {
  margin-top: 7px;
  color: #1A74C0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 38px;
}

.m-usefulContent .m-usefulContentList .m-text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 36px;
}

.m-usefulContent.is-seminar > .m-title::before {
  background: url(/images/contents/images/guest/icon_ttl_seminar.png);
}

.m-usefulContent.is-seminar .m-image {
  height: 60px;
  text-align: center;
  background-color: #F9F9F9;
}

.m-usefulContent.is-seminar .m-image > img {
  width: auto;
  height: 100%;
}

.m-usefulContent.is-seminar .m-usefulContentList .m-text {
  margin-top: 7px;
}

.m-usefulContent.is-seminar a {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-usefulContent.is-seminar a:hover {
  opacity: .7;
}

.m-detailInfo + .m-usefulContent {
  margin-bottom: 30px;
}

.m-sideJobContent {
  margin-bottom: 30px;
}

.m-sideJobContent + .m-sideBanner {
  margin-top: -10px;
}

.m-sideJobContent > .m-title {
  color: #233977;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 39px;
  position: relative;
}

.m-sideJobContent.is-history > .m-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  background: url(/images/contents/images/guest/icon_ttl_history.png);
  margin-top: -19px;
}

.m-sideJobContent.is-featured > .m-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  background: url(/images/contents/images/guest/icon_ttl_attention.png);
  margin-top: -19px;
}

.m-sideJobContent.is-hasMore .m-sideJobContentList {
  border-radius: 4px 4px 4px 4px;
}

.m-sideJobContent.is-hasMore .m-sideJobContentList li:last-child {
  border-bottom: 1px solid #eee;
}

.m-sideJobContent.is-hasMore .m-more {
  border: 1px solid #ccc;
  border-top: 0;
  text-align: center;
  line-height: 46px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}

.m-sideJobContent.is-hasMore .m-more a {
  font-size: 14px;
  font-weight: bold;
  color: #1A74C0;
}

.m-sideJobContent.is-hasMore .m-more a:hover {
  text-decoration: underline;
}

.m-sideJobContent .m-sideJobContentList {
  margin-top: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px 19px 0;
  background: #fff;
}

.m-sideJobContent .m-sideJobContentList > li {
  padding-bottom: 20px;
}

.m-sideJobContent .m-sideJobContentList > li + li {
  border-top: 1px solid #EEEEEE;
  padding-top: 20px;
}

.m-sideJobContent .m-sideJobContentList > li a {
  display: block;
}

.m-sideJobContent .m-sideJobContentList > li a:hover .m-title {
  text-decoration: underline;
}

.m-sideJobContent .m-sideJobContentList .m-detail::after {
  content: "";
  display: block;
  clear: both;
}

.m-sideJobContent .m-sideJobContentList .m-image {
  width: 80px;
  float: left;
}

.m-sideJobContent .m-sideJobContentList .m-image img {
  width: 100%;
}

.m-sideJobContent .m-sideJobContentList .m-title {
  float: right;
  width: 103px;
  font-size: 14px;
  font-weight: bold;
  color: #1A74C0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 60px;
}

.m-sideJobContent .m-sideJobContentList .m-text {
  background-color: #F9F9F9;
  padding: 12px 14px;
  line-height: 1.67;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 60px;
}

.m-interview {
  padding-top: 33px;
  margin-bottom: 41px;
  position: relative;
}

.m-interview > .m-title {
  padding-left: 36px;
  font-size: 20px;
  font-weight: bold;
  color: #233977;
  line-height: 1.5;
  position: relative;
}

.m-interview > .m-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  width: 36px;
  height: 36px;
  background: url(/images/contents/images/guest/icon_ttl_interview.png);
  margin-top: -19px;
}

.m-interview > .m-link {
  position: absolute;
  top: 40px;
  right: 0;
}

.m-interview > .m-link a {
  font-size: 14px;
  color: #1A74C0;
  font-weight: bold;
  position: relative;
  padding-left: 23px;
  display: block;
}

.m-interview > .m-link a:hover {
  text-decoration: underline;
}

.m-interview > .m-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(/images/contents/images/guest/icon_text_link.png);
  margin-top: -9px;
}

.m-interview .m-interviewList {
  margin-top: 11px;
}

.m-interview .m-interviewList::after {
  content: "";
  display: block;
  clear: both;
}

.m-interview .m-interviewList .m-item {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  overflow: hidden;
  width: 470px !important;
  margin-right: 19px;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

.m-interview .m-interviewList .m-item::after {
  content: "";
  display: block;
  clear: both;
}

.m-interview .m-interviewList .m-item a:hover .m-title {
  text-decoration: underline;
}

.m-interview .m-interviewList .m-image {
  float: left;
  width: 223px;
  margin-right: 18px;
}

.m-interview .m-interviewList .m-image img {
  width: 100%;
}

.m-interview .m-interviewList .m-detail {
  padding: 16px 18px 0;
}

.m-interview .m-interviewList .m-catch {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.m-interview .m-interviewList .m-title {
  font-size: 14px;
  font-weight: bold;
  color: #1A74C0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 63px;
  margin-top: 3px;
}

.m-interview .m-interviewList .m-foot {
  margin-top: 12px;
}

.m-interview .m-interviewList .m-foot::after {
  content: "";
  display: block;
  clear: both;
}

.m-interview .m-interviewList .m-country {
  float: left;
  width: 65px;
  height: 16px;
  text-align: center;
  font-size: 9px;
  color: #fff;
  line-height: 16px;
  background-color: #999999;
}

.m-interview .m-interviewList .m-name {
  float: right;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}

.m-interview .m-interviewList .m-name span {
  font-size: 10px;
  font-weight: normal;
}

.m-interview .m-interviewList .slick-prev,
.m-interview .m-interviewList .slick-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-sideBanner:first-child {
  margin-bottom: 30px;
}

.m-sideBanner li + li {
  margin-top: 20px;
}

.m-sideBanner a {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-sideBanner a:hover {
  opacity: .7;
}

.m-basicCassetteList > ul > li {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}

.m-basicCassetteList > ul > li + li {
  margin-top: 12px;
}

.m-basicCassetteList > ul > li > a {
  display: block;
  padding: 17px 20px 20px;
}

.m-basicCassetteList > ul > li > a:hover .m-title {
  text-decoration: underline;
}

.m-basicCassetteList .m-title {
  color: #1A74C0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
}

.m-basicCassetteList .m-image {
  float: left;
  width: 130px;
}

.m-basicCassetteList .m-image img {
  width: 100%;
  height: auto;
}

.m-basicCassetteList .m-image + .m-detail {
  margin-left: 145px;
}

.m-basicCassetteList .m-detail .m-text {
  background-color: #F9F9F9;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.42;
  padding: 12px 14px 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-basicCassetteList .m-detail .m-other {
  font-size: 14px;
  color: #666;
  margin-top: 13px;
}

.m-basicCassetteList .m-detail .m-other > li {
  margin-top: 4px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.m-basicCassetteList .m-detail .m-other > li:first-child {
  margin-top: 0;
}

.m-basicCassetteList .m-detail .m-other > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-basicCassetteList .m-detail .m-other > li.is-place::before {
  background: url(/images/contents/images/member/icon/icon_area.png);
  width: 15px;
  height: 19px;
}

.m-basicCassetteList .m-detail .m-other > li.is-company::before {
  background: url(/images/contents/images/member/icon/icon_company.png);
  width: 16px;
  height: 16px;
}

.m-basicCassetteList .m-detail .m-foot {
  display: table;
  width: 100%;
  margin-top: 13px;
}

.m-basicCassetteList .m-detail .m-tag {
  display: table-cell;
  vertical-align: bottom;
}

.m-basicCassetteList .m-detail .m-tag::after {
  content: "";
  display: block;
  clear: both;
}

.m-basicCassetteList .m-detail .m-tag > li {
  width: 65px;
  height: 16px;
  line-height: 16px;
  color: #fff;
  background-color: #005AB5;
  text-align: center;
  font-size: 9px;
  float: left;
  margin: 0px 5px 3px 0px;
}

.m-basicCassetteList .m-detail .m-tag > li + li {
  /*margin-left: 5px;*/
}

.m-basicCassetteList .m-detail .m-date {
  display: table-cell;
  vertical-align: bottom;
  width: 175px;
  color: #999;
  font-size: 10px;
  line-height: 1.2;
}

.m-basicCassetteList + .m-searchOtherLink {
  background-color: #F9F9F9;
  border-radius: 0 0 4px 4px;
  margin: 17px -19px -30px;
  padding: 20px 0 22px;
}

.m-basicCassetteList + .m-searchOtherLink > ul > li {
  width: 400px;
  margin: 0 auto;
}

.m-basicCassetteList + .m-searchOtherLink > ul > li + li {
  margin-top: 10px;
}

.m-basicCassetteList + .m-searchOtherLink > ul > li > a {
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  border-radius: 4px;
  position: relative;
}

.m-basicCassetteList + .m-searchOtherLink > ul > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 12px;
  background: url(/images/contents/images/guest/icon_arrow_btn.png);
  margin-top: -6px;
}

.m-basicCassetteList + .m-searchOtherLink > ul > li > a:hover {
  opacity: .7;
}

.m-pickupContent {
  border: 1px solid #1067BB;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.m-pickupContent > .m-title {
  background-color: #1067BB;
  font-size: 12px;
  color: #fff;
  text-align: center;
  height: 24px;
  line-height: 25px;
}

.m-pickupContent > a {
  display: block;
}

.m-pickupContent > a:hover .m-title {
  text-decoration: underline;
}

.m-pickupContent > a .m-image {
  width: 100%;
}

.m-pickupContent > a .m-image img {
  width: 100%;
  height: auto;
}

.m-pickupContent > a .m-detail {
  padding: 12px 20px 14px;
}

.m-pickupContent > a .m-detail .m-title {
  color: #1A74C0;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.43;
}

.m-pickupContent > a .m-detail .m-text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 69px;
}

.m-pickupContent .m-foot {
  padding: 0 20px 20px;
}

.m-pickupContent .m-foot .m-favoriteBtn {
  display: block;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  height: 40px;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.m-pickupContent .m-foot .m-favoriteBtn::before {
  content: "";
  width: 21px;
  height: 19px;
  background: url(/images/contents/images/guest/icon_list_favorite.png);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

.m-pickupContent .m-foot .m-favoriteBtn:hover {
  opacity: .7;
}

.m-experienceArticle > .m-title {
  height: 42px;
  color: #fff;
  line-height: 43px;
  border-radius: 3px 3px 0 0;
  background-color: #233977;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: bold;
  padding: 0 19px;
}

.m-experienceArticle .m-body {
  padding-top: 22px;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.m-experienceArticle .m-experienceArticleRefine {
  padding: 0 20px;
}

.m-experienceArticle .m-experienceArticleRefine > .m-title {
  font-size: 14px;
  font-weight: bold;
  color: #233977;
  line-height: 1;
}

.m-experienceArticle .m-experienceArticleRefine > ul {
  margin-top: 8px;
  background-color: #F9F9F9;
  border-radius: 4px;
  padding: 21px 20px 20px;
}

.m-experienceArticle .m-experienceArticleRefine > ul::after {
  content: "";
  display: block;
  clear: both;
}

.m-experienceArticle .m-experienceArticleRefine > ul > li {
  float: left;
}

.m-experienceArticle .m-experienceArticleRefine > ul > li + li {
  margin-left: 10px;
}

.m-experienceArticle .m-experienceArticleRefine > ul > li a {
  display: block;
  font-size: 14px;
  color: #999;
  font-weight: bold;
  border: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 20px;
  width: 147px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 0 7px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.m-experienceArticle .m-experienceArticleRefine > ul > li a:hover {
  opacity: .7;
}

.m-experienceArticle .m-experienceArticleRefine > ul .is-active a {
  background-color: #E6F5FF;
  color: #233977;
  border-color: #233977;
  cursor: default;
}

.m-experienceArticle .m-experienceArticleRefine > ul .is-active a:hover {
  opacity: 1;
}

.m-experienceArticle .m-experienceArticleList > ul {
  padding: 0 20px;
  margin-top: 12px;
}

.m-experienceArticle .m-experienceArticleList > ul > li + li {
  margin-top: 12px;
}

.m-experienceArticle .m-experienceArticleList > ul > li a {
  display: table;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  table-layout: fixed;
}

.m-experienceArticle .m-experienceArticleList > ul > li a:hover .m-title {
  text-decoration: underline;
}

.m-experienceArticle .m-experienceArticleList .m-image {
  display: table-cell;
  vertical-align: top;
  width: 140px;
  padding-right: 15px;
}

.m-experienceArticle .m-experienceArticleList .m-image img {
  width: 100%;
  height: auto;
}

.m-experienceArticle .m-experienceArticleList .m-summary {
  display: table-cell;
  vertical-align: top;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-catch {
  font-size: 11px;
  font-weight: bold;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-title {
  margin-top: 2px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #1a74c0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 36px;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-foot {
  margin-top: 7px;
  display: table;
  width: 100%;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-tag {
  background: #999;
  color: #fff;
  font-size: 9px;
  width: 64px;
  line-height: 1;
  padding: 4px 0 3px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.m-experienceArticle .m-experienceArticleList .m-summary .m-date {
  font-size: 10px;
  line-height: 1.5;
  color: #999;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.m-experienceArticle .m-more {
  background-color: #F9F9F9;
  padding: 20px 0 22px;
  margin-top: 20px;
}

.m-experienceArticle .m-more a {
  border-radius: 4px;
  background: #fff;
  width: 400px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  position: relative;
}

.m-experienceArticle .m-more a:hover {
  opacity: .7;
}

.m-topicArticle > .m-title {
  color: #233977;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 39px;
  position: relative;
}

.m-topicArticle > .m-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  width: 36px;
  height: 36px;
  background: url(/images/contents/images/article/icon_ttl_wadai.png) left center no-repeat;
  margin-top: -19px;
}

.m-topicArticle .m-topicArticleContentList {
  border: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 4px;
  padding: 0 20px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.m-topicArticle .m-topicArticleContentList > li {
  padding: 20px 0;
}

.m-topicArticle .m-topicArticleContentList > li + li {
  border-top: 1px solid #EEEEEE;
}

.m-topicArticle .m-topicArticleContentList > li a:hover .m-title {
  text-decoration: underline;
}

.m-topicArticle .m-topicArticleContentList .m-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.m-topicArticle .m-topicArticleContentList .m-image {
  display: table-cell;
  vertical-align: top;
  width: 70px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.m-topicArticle .m-topicArticleContentList .m-image img {
  height: 100%;
  width: auto;
  margin: auto;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.m-topicArticle .m-topicArticleContentList .m-summary {
  display: table-cell;
  vertical-align: center;
  padding-left: 10px;
}

.m-topicArticle .m-topicArticleContentList .m-summary .m-catch {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.45455;
}

.m-topicArticle .m-topicArticleContentList .m-summary .m-title {
  font-size: 13px;
  font-weight: bold;
  color: #1a74c0;
  line-height: 1.38462;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 36px;
}

.m-topicArticle .m-topicArticleContentList .m-foot {
  margin-top: 10px;
  display: table;
  width: 100%;
}

.m-topicArticle .m-topicArticleContentList .m-tag {
  background: #999;
  color: #fff;
  font-size: 9px;
  width: 70px;
  line-height: 1;
  padding: 4px 0 3px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.m-topicArticle .m-topicArticleContentList .m-date {
  font-size: 10px;
  line-height: 1.5;
  color: #999;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.m-relatedArticle {
  margin-top: 30px;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  position: relative;
  background: #fff;
}

.m-relatedArticle > .m-title {
  font-size: 18px;
  line-height: 1.3;
  padding-top: 2px;
  color: #333333;
  font-weight: bold;
  position: relative;
  padding-left: 12px;
  margin-bottom: 19px;
}

.m-relatedArticle > .m-title::before {
  content: "";
  width: 4px;
  height: 25px;
  background-color: #1A74C0;
  position: absolute;
  top: 0;
  left: 0;
}

.m-relatedArticle > .m-title::after {
  content: "";
  width: 4px;
  height: 12.5px;
  background-color: #233977;
  position: absolute;
  bottom: 0;
  left: 0;
}

.m-relatedArticle .m-relatedArticleList > ul > li + li {
  margin-top: 12px;
}

.m-relatedArticle .m-relatedArticleList > ul > li a {
  display: table;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  table-layout: fixed;
}

.m-relatedArticle .m-relatedArticleList > ul > li a:hover .m-title {
  text-decoration: underline;
}

.m-relatedArticle .m-relatedArticleList .m-image {
  display: table-cell;
  vertical-align: top;
  width: 140px;
  padding-right: 15px;
}

.m-relatedArticle .m-relatedArticleList .m-image img {
  width: 100%;
  height: auto;
}

.m-relatedArticle .m-relatedArticleList .m-summary {
  display: table-cell;
  vertical-align: top;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-catch {
  font-size: 11px;
  font-weight: bold;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-title {
  margin-top: 2px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #1a74c0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 36px;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-foot {
  margin-top: 7px;
  display: table;
  width: 100%;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-tag {
  background: #999;
  color: #fff;
  font-size: 9px;
  width: 64px;
  line-height: 1;
  padding: 4px 0 3px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.m-relatedArticle .m-relatedArticleList .m-summary .m-date {
  font-size: 10px;
  line-height: 1.5;
  color: #999;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}