@charset 'UTF-8';
/* ==========================================================================
   Parts module
   ========================================================================== */
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
/* Heading
   ========================================================================== */
/* Page title */
.mod-page-title {
  position: relative;
  padding: 12px 15px 10px;
  text-align: center;
  background-color: #1e2b3f;
}
.mod-page-title .back-btn {
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -17px;
  padding: 10px;
}
.mod-page-title .back-btn::before {
  display: block;
  width: 8px;
  height: 14px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -52px -40px;
  background-size: 81px 61px;
}
.mod-page-title > .inner {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  color: #fff;
}


.mod-page-title.welcm {
  background-color: #e94e30;
}

.mod-page-title.welcm > .inner {
  background: url(/common/sp/img/module/welcm_icon.png) no-repeat;
  padding-left: 30px;
  background-size: 15%;
}


/* Title lv1 */
.mod-title-lv1 {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 12px 13px 9px;
  border-bottom: 2px solid #ffe700;
  background-color: #fff;
}
.mod-title-lv1 > .inner {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}
.mod-title-lv1 + .mod-Job-info .mod-Job-info-header {
  border-top: none;
}
.mod-title-lv1 + .section {
  border-top: none;
}
/* Title lv2 */
.mod-title-lv2 {
  padding: 13px 13px 10px;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fafafa;
}
.mod-title-lv2 > .inner {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding-left: 8px;
  color: #222;
}
.mod-title-lv2 > .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3px;
  height: 90%;
  content: '';
  border-radius: 3px;
  background-color: #ffe700;
}
.mod-title-lv2.has-label {
  position: relative;
  padding-right: 68px;
}
.mod-title-lv2.has-label > .label {
  font-size: 9px;
  font-size: .9rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 3px 7px 2px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  vertical-align: middle;
  color: #fff;
  border-radius: 12px;
}
.mod-title-lv2.has-label > .label.recommend {
  background-color: #1fc0cb;
}
.mod-title-lv2.has-link {
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.mod-title-lv2.has-link > .inner {
  display: table-cell;
  vertical-align: middle;
}
.mod-title-lv2.has-link > .link {
  display: table-cell;
  vertical-align: middle;
  width: 175px;
}
.mod-title-lv2 + .section {
  border-top: none;
}
/* Title lv3 */
.mod-title-lv3 {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
}
.mod-title-head > .inner {
  font-weight: bold;
  position: relative;
  padding-left: 8px;
  color: #222;
}
.mod-title-head > .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3px;
  height: 90%;
  content: '';
  border-radius: 3px;
  background-color: #ffe700;
}
/* Button
   ========================================================================== */
.mod-button {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 13px 4px 10px;
  text-align: center;
  border-radius: 6px;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, .07)), to(rgba(255, 255, 255, .07)));
  background-image:         linear-gradient(to top, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  -webkit-box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
          box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
}
.mod-button.default {
  color: #000;
  background-color: #ececec;
}
.mod-button.search {
  color: #fff;
  background-color: #1c9be3;
}

.mod-button.search.simple {
  background-image:url("/common/sp/img/module/simple_btn_sp.png");
  background-repeat: no-repeat;
  background-size: 45px;
  background-position: 5%;
  padding: 5px 4px;
}

.mod-button.search.simple span{
  margin-left:45px;
  line-height:2.3;
}

.mod-button.book-mark.simple {
  padding: 6px 4px 4px 4px;
}

.mod-button.book-mark.simple span{
  line-height:2.3;
}

.mod-button img{
  margin-right:3px;
  width:50px;
  vertical-align:middle;
}
.mod-button span{
  letter-spacing:-1px;
}

.mod-button.register {
  color: #fff;
  background-color: #ff6347;
}
.mod-button.transition {
  color: #000;
  background-color: #ffe700;
}
.mod-button .icon-plus {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -44px 0;
  background-size: 81px 61px;
}
.mod-button.is-inactive {
  color: #b5b5b6;
  background-color: #f0f0f0;
}
.mod-button-row {
  overflow: hidden;
}
.mod-button-col {
  display: table;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.mod-button-col > a {
  display: table-cell;
  vertical-align: middle;
}
.mod-button-col:first-child {
  padding-right: 7px;
}
.mod-button-col:last-child {
  padding-left: 7px;
}
.mod-button-row.next-mod-btn-row {
  overflow: hidden;
  padding: 10px 0 0 0;
}
.mod-button-row.next-mod-btn-row .mod-button-col {
  display: table;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.mod-button-row.next-mod-btn-row .mod-button-col > a {
  display: table-cell;
  vertical-align: middle;
}
.mod-button-row.next-mod-btn-row .mod-button-col:first-child {
  padding-right: 7px;
}
.mod-button-row.next-mod-btn-row .mod-button-col:last-child {
  padding-left: 0;
}
/* Link
   ========================================================================== */
.mod-link {
  position: relative;
  padding-left: 15px;
}
.mod-link::before {
  position: absolute;
  top: .15rem;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -15px -26px;
  background-size: 81px 61px;
}
.mod-link.attention > a {
  color: #e94e30;
}
.mod-link.attention::before {
  width: 10px;
  height: 10px;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -15px -46px;
  background-size: 81px 61px;
}
.mod-link.center {
  padding-left: 0;
  text-align: center;
}
.mod-link.center::before {
  content: none;
}
.mod-link.center > a {
  display: inline-block;
}
.mod-link.center > a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -15px -26px;
  background-size: 81px 61px;
}
.mod-link.right {
  padding-left: 0;
  text-align: right;
}
.mod-link.right::before {
  content: none;
}
.mod-link.right > a {
  display: inline-block;
}
.mod-link.right > a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -15px -26px;
  background-size: 81px 61px;
}
.mod-link-blank::after {
  display: inline-block;
  width: 14px;
  height: 11px;
  margin-left: 5px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -44px -18px;
  background-size: 81px 61px;
}
.mod-link-blank.center {
  padding-left: 0;
  text-align: center;
}
.mod-link-blank.center::after {
  content: none;
}
.mod-link-blank.center > a {
  display: inline-block;
}
.mod-link-blank.center > a::after {
  display: inline-block;
  width: 14px;
  height: 11px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -44px -18px;
  background-size: 81px 61px;
}
.mod-link-blank.right {
  padding-left: 0;
  text-align: right;
}
.mod-link-blank.right::after {
  content: none;
}
.mod-link-blank.right > a {
  display: inline-block;
}
.mod-link-blank.right > a::after {
  display: inline-block;
  width: 14px;
  height: 11px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -44px -18px;
  background-size: 81px 61px;
}
.mod-link-more {
  position: relative;
  padding-left: 15px;
}
.mod-link-more::before {
  position: absolute;
  top: .15rem;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -45px;
  background-size: 81px 61px;
}
.mod-link-more.center {
  padding-left: 0;
  text-align: center;
}
.mod-link-more.center::before {
  content: none;
}
.mod-link-more.center > a {
  display: inline-block;
}
.mod-link-more.center > a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -45px;
  background-size: 81px 61px;
}
.mod-link-more.right {
  padding-left: 0;
  text-align: right;
}
.mod-link-more.right::before {
  content: none;
}
.mod-link-more.right > a {
  display: inline-block;
}
.mod-link-more.right > a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  content: '';
  vertical-align: -.1rem;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -45px;
  background-size: 81px 61px;
}
.mod-link-more.is-open::before {
  width: 10px;
  height: 10px;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -35px;
  background-size: 81px 61px;
}
.mod-link-more.is-open.center > a::before {
  width: 10px;
  height: 10px;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -35px;
  background-size: 81px 61px;
}
.mod-link-more.is-open.right > a::before {
  width: 10px;
  height: 10px;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px -35px;
  background-size: 81px 61px;
}
/* Text
   ========================================================================== */
.mod-note {
  color: #979797;
}
/* List
   ========================================================================== */
.mod-ul > li {
  margin: 0 0 .5rem 2rem;
  list-style-type: disc;
}
.mod-ul > li:last-child {
  margin-bottom: 0;
}
.mod-dl {
  border-bottom: 1px solid #e3e3e3;
}
.mod-dl > .title {
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
  padding: 13px 68px 11px 13px;
  color: #222;
  border-bottom: 1px solid #e3e3e3;
  background-color: #f2f2f2;
}
.mod-dl > .title .label {
  font-size: 9px;
  font-size: .9rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 13px;
  padding: 3px 7px 2px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  vertical-align: middle;
  color: #fff;
  border-radius: 12px;
}
.mod-dl > .title .label.require {
  background-color: #ff6347;
}
.mod-dl > .title .label.required-mypage {
  font-size: 10px;
  padding: 2px 7px 2px;
  line-height: 1.4;
  font-size: 1rem;
  right: auto;
  margin-left: 7px;
  border-radius: 3px;
  background-color: #ff6347;
}
.mod-dl > .title .label.required-entry {
  font-size: 10px;
  padding: 2px 7px 2px;
  line-height: 1.4;
  font-size: 1rem;
  right: auto;
  margin-left: 7px;
  border-radius: 3px;
  background-color: #1fc0cb;
}

.mod-dl > .title .label.optional {
  background-color: #06c;
}
.mod-dl > .inner {
  padding: 15px 13px;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fafafa;
}
.mod-dl > .inner.bg-palePink {
 background-color: #fff7f8;
}
.mod-dl > .inner:last-child {
  border-bottom: none;
}
.mod-dl .registered > p {
  color: #555;
}
.mod-dl .reg-user-service {
  background-color: #daeef4;
}
.mod-dl:last-child {
  border-bottom: none;
}
.mod-radio-list {
  overflow: hidden;
}
.mod-radio-list > li {
  float: left;
  margin-right: 15px;
}
.mod-radio-list > li:last-child {
  margin-right: 0;
}
/* Graph stars.
   ========================================================================== */
.mod-dl > .inner > .body > .category {
  margin: 7px 0 2px;
}
.mod-dl > .inner > .body > .stars {
  line-height: 1;
}
.mod-dl > .inner > .body > .stars li {
  display: inline-block;
  margin-right: 10px;
  background-repeat: no-repeat;
}
.mod-dl > .inner > .body > .stars li:last-child {
  margin-right: 0;
}
.mod-dl > .inner > .body > .stars.environment li {
  width: 12px;
  height: 13px;
  background-image: url(/common/img/module/matching_star_icon06.png);
}
.mod-dl > .inner > .body > .stars.environment.is-rate-1 > li:nth-child(-n+1) {
  background-image: url(/common/img/module/matching_star_icon03.png);
}
.mod-dl > .inner > .body > .stars.environment.is-rate-2 > li:nth-child(-n+2) {
  background-image: url(/common/img/module/matching_star_icon03.png);
}
.mod-dl > .inner > .body > .stars.environment.is-rate-3 > li:nth-child(-n+3) {
  background-image: url(/common/img/module/matching_star_icon03.png);
}
.mod-dl > .inner > .body > .stars.environment.is-rate-4 > li:nth-child(-n+4) {
  background-image: url(/common/img/module/matching_star_icon03.png);
}
.mod-dl > .inner > .body > .stars.environment.is-rate-5 > li:nth-child(-n+5) {
  background-image: url(/common/img/module/matching_star_icon03.png);
}
/* Text color.
   ========================================================================== */
.color-strong {
  color: #ff6347;
}
.color-weak {
  color: #979797;
}
.color-subject {
  color: #222;
}

.bd-clr-dblue-b1 {
 border-bottom: 1px solid #354153;
}
/* Letter spacing.
   ========================================================================== */
.ls-1{
 letter-spacing: -1px;
}
/* Background color.
   ========================================================================== */
.bg-palePink {
 background-color: #fff7f8;
}
.bg-white {
  background-color: #fff !important;
}
.bg-gray {
  background-color: #f1f1f1 !important;
}
/* Border color.
   ========================================================================== */
.bd-clr-red {
 border-color: #ff6347;
}
/* Display.
   ========================================================================== */
.display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table-cell {
  display: table-cell;
}
.table-cell.two {
  width: 50%;
}
/* Register module.
   ========================================================================== */
.mod-register {
  padding: 15px 13px 0;
}
.mod-register-button > a {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
}
.mod-register-button > a > span {
  display: inline-block;
  vertical-align: middle;
}
.mod-register-button > a .sub {
  font-size: 14px;
  font-size: 1.4rem;
}
/* Carousel module.
   ========================================================================== */
.mod-carousel {
  position: relative;
}
.mod-carousel.detail {
  padding-bottom: 20px;
}
.mod-carousel-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
.mod-carousel-inner img {
  max-width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.mod-carousel-inner:last-child {
  margin-bottom: 0;
}
.mod-carousel-inner::after {
  display: block;
  padding-top: 56.5217391%;
  content: '';
}
.is-carousel-loaded .mod-carousel-inner::after {
  content: none;
}
.mod-carousel-images {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mod-carousel-texts {
  margin-top: 15px;
}
.mod-carousel-texts li {
  position: absolute;
}
.mod-carousel-controls {
  position: absolute;
  z-index: 100;
  bottom: 4.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.detail .mod-carousel-controls {
  bottom: 0;
}
.mod-carousel-pager {
  font-size: 0;
  text-align: center;
}
.mod-carousel-pagerItem {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
}
.mod-carousel-pagerItem.is-current {
  background: none;
}
.mod-carousel-pagerItem:last-child {
  margin-right: 0;
}
.detail .mod-carousel-pagerItem {
  border-color: #06c;
  background-color: #06c;
}
.detail .mod-carousel-pagerItem.is-current {
  background: none;
}
/* Important information module.
   ========================================================================== */
.mod-inportant-info {
  margin-bottom: 15px;
  padding: 14px 13px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
}
.mod-inportant-info:last-child {
  margin-bottom: 0;
}
/* Link list module.
   ========================================================================== */
.mod-link-list > li {
  border-bottom: 1px solid #f2f2f2;
}
.mod-link-list > li > a {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 13px 28px 11px 13px;
}
.mod-link-list > li > a > span,
.mod-link-list > li > a > .inner {
  display: table-cell;
  vertical-align: middle;
}
.mod-link-list > li > a > .text {
  width: 92%;
}
.mod-link-list > li > a .sum {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  width: 8%;
  text-align: right;
  text-align: center;
  color: #a5aab2;
}
.mod-link-list > li > a .inner .text {
  font-size: 15px;
  font-size: 1.5rem;
  width: auto;
}
.mod-link-list > li > a .inner .output {
  font-weight: normal;
      word-break: break-all;
  -ms-word-break: break-all;
  color: #666;
}
.mod-link-list > li > a .inner .round {
  font-weight: bold;
}
.mod-link-list > li > a::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -44px -40px;
  background-size: 81px 61px;
}
/* Table module.
   ========================================================================== */
.mod-table {
  width: 100%;
}
.mod-table th,
.mod-table td {
  padding: 12px;
  border: 1px solid #e3e3e3;
}
.mod-table th {
  color: #222;
  background-color: #f2f2f2;
}
/* Search content module.
   ========================================================================== */
.mod-seatch-content-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  visibility: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 13px;
  background-color: #1e2b3f;
}
.mod-seatch-content-bottom.is-static {
  position: static;
  visibility: visible;
}
/* Accordion module.
   ========================================================================== */
.mod-accordion.search {
  border-bottom: 1px solid #f2f2f2;
}
.mod-accordion.search:first-child {
  border-top: 1px solid #f2f2f2;
}
.mod-accordion .mod-accordion.search {
  border-bottom: 1px solid #e3e3e4;
}
.mod-accordion .mod-accordion.search:last-child {
  border-bottom: none;
}
.mod-accordion.is-collapsed > .mod-accordion-handle .arrow {
  -webkit-transform: rotateX(0);
      -ms-transform: rotateX(0);
          transform: rotateX(0);
}
.mod-accordion.is-expanded > .mod-accordion-handle .arrow {
  -webkit-transform: rotateX(180deg);
      -ms-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.mod-accordion-handle {
  position: relative;
}
.search .mod-accordion-handle {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 30px 12px 15px;
  color: #06c;
}
.search .mod-accordion-handle > span {
  display: table-cell;
  vertical-align: middle;
}
.search .mod-accordion-handle > span.text {
  width: 92%;
}
.search .mod-accordion-handle > span.sum {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  width: 8%;
  text-align: right;
  text-align: center;
  color: #a5aab2;
}
.mod-accordion-handle .arrow {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 14px;
  height: 8px;
  margin-top: -4px;
  -webkit-transition: -webkit-transform .4s;
          transition:         transform .4s;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -51px;
  background-size: 81px 61px;
}
.mod-accordion-handle .arrow-right {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 13px;
  height: 21px;
  margin-top: -4px;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -42px -40px;
  background-size: 82px 61px;
}
.mod-accordion-handle .link-scope {
  display: block;
}
.mod-accordion-inner {
  background-color: #f2f2f2;
}
.mod-accordion-inner .mod-accordion-inner {
  border-top: 1px solid #e3e3e4;
  background-color: #e5e5e5;
}
.mod-accordion-inner .mod-accordion-inner .mod-conditional-select-list > li {
  border-bottom: 1px solid #d5d5d5;
}
.mod-accordion-inner .mod-accordion-inner .mod-conditional-select-list > li:last-child {
  border-bottom: none;
}
.mod-accordion-inner .light-attention {
  background: #fff;
  padding: 13px 13px 10px;
  border-bottom: none;
}
/* Conditional select module.
   ========================================================================== */
.mod-conditional-select-all {
  padding: 15px 13px;
  border-bottom: 1px solid #e3e3e4;
}
.mod-conditional-select-list > li {
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 13px;
  border-bottom: 1px solid #e3e3e4;
}
.mod-conditional-select-list > li:last-child {
  border-bottom: none;
}
.mod-conditional-select-list > li.checkbox-list {
  border-bottom: 1px solid #f2f2f2;
}
.mod-conditional-select-list > li.checkbox-list:last-child {
  border-bottom: 1px solid #f2f2f2;
}
.mod-conditional-select-list > li .input {
  display: table-cell;
  vertical-align: middle;
}
.mod-conditional-select-list > li .sum {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  color: #a5aab2;
}
/* Image layout module.
   ========================================================================== */
.mod-image-layout {
  overflow: hidden;
}
.mod-image-layout .object {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.mod-image-layout .object.is-rounded {
  overflow: hidden;
  border-radius: 6px;
}
.mod-image-layout .object.is-border {
  border: 1px solid #f2f2f2;
}
.mod-image-layout.opt-left .object {
  float: left;
  margin-right: 13px;
}
.mod-image-layout.opt-right .object {
  float: right;
  margin-left: 13px;
}
.mod-image-layout .body {
  overflow: hidden;
}
/* Recommended module.
   ========================================================================== */
.mod-recommended {
  border-bottom: 1px solid #f2f2f2;
}
.mod-recommended:last-child {
  border-bottom: none;
}
.mod-recommended-inner {
  display: block;
  overflow: hidden;
  padding: 15px 13px;
}
.mod-recommended-title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 2px 0 3px;
  color: #06c;
}
.mod-recommended-text {
  color: #666;
}
/* Pickup Information module.
   ========================================================================== */
.mod-banner {
  padding: 15px 13px;
  border-top: 1px solid #f2f2f2;
  background-color: #fafafa;
}
.mod-banner.section-inner {
  border-top: none;
}
.mod-banner-item {
  display: block;
  margin-bottom: 17px;
  text-align: center;
}
.mod-banner-item > img {
  max-width: 100%;
  height: auto;
}
.mod-banner-item:last-child {
  margin-bottom: 0;
}
/* Pickup Information module.
   ========================================================================== */
.mod-job-info {
  border-bottom: 1px solid #e3e3e3;
}
.mod-job-info:last-child {
  border-bottom: none;
}
.mod-job-info-header {
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 13px;
  border-bottom: 1px solid #e3e3e3;
  background-color: #f5f5f5;
}
.mod-job-info-header .company {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: #222;
}
.mod-job-info-header .title {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.mod-job-info-header .term {
  font-size: 10px;
  font-size: 1rem;
  float: right;
  color: #222;
}
.mod-job-info-inner {
  padding: 15px 13px;
}
.mod-job-info-title {
  color: #222;
}
.mod-job-info-text {
  margin-bottom: 1rem;
}
.mod-job-info-text:last-child {
  margin-bottom: 0;
}
.mod-job-info-button {
  font-size: 12px;
  font-size: 1.2rem;
}
/* Job index module.
   ========================================================================== */
.mod-job-index-item {
  margin-bottom: 29px;
  border-top: 4px solid #ffe700;
  border-bottom: 1px solid #e3e3e3;
}
.mod-job-index-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #e3e3e3;
}
/* Local navigation module.
   ========================================================================== */
.mod-local-nav {
  display: table;
  overflow: hidden;
  width: 100%;
  -webkit-transition: top .3s ease-in-out .3s;
          transition: top .3s ease-in-out .3s;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.mod-local-nav > a {
  font-size: 10px;
  font-size: 1rem;
  display: table-cell;
  width: 20%;
  height: 39px;
  color: #222;
  border-right: 1px solid #e3e3e3;
}
.mod-local-nav > a > div {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 3px;
  text-align: center;
  background-color: #fafafa;
}
.mod-local-nav > a > div > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
}
.mod-local-nav > a > div::after {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
}
.mod-local-nav > a > div::before {
  position: absolute;
  z-index: 0;
  top: -100%;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: top .4s;
          transition: top .4s;
  background-color: #ffe700;
}
.mod-local-nav > a.is-current > div::before {
  top: 0;
}
.mod-local-nav > a:last-child {
  border-right: none;
}
.mod-local-nav.detail {
  border-top: 1px solid #e3e3e3;
}
.mod-local-nav.detail > a {
  width: 25%;
}
.mod-local-nav.is-fixed {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
}
.mod-local-nav.is-static {
  border-bottom: 1px solid #e3e3e3;
}
.mod-local-nav.col-4 > a {
  width: 25%;
}
.mod-local-nav.col-6 > a {
  width: 16.666%;
}
/* Name input module.
   ========================================================================== */
.mod-name-input {
  display: table;
  width: 100%;
  margin-bottom: 5px;
}
.mod-name-input > .col {
  display: table-cell;
  width: 50%;
}
.mod-name-input > .col:first-child {
  padding-right: 7px;
}
.mod-name-input > .col:last-child {
  padding-left: 7px;
}
.mod-name-input:last-child {
  margin-bottom: 0;
}
/* Form dl module.
   ========================================================================== */
.mod-form-dl {
  margin-bottom: 5px;
}
.mod-form-dl > dt {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: #222;
}
.mod-form-dl:last-child {
  margin-bottom: 0;
}
.mod-form-dl.horizon {
  display: table;
  width: 100%;
}
.mod-form-dl.horizon > dt,
.mod-form-dl.horizon > dd {
  display: table-cell;
  vertical-align: middle;
}
.mod-form-dl.horizon > dt {
  min-width: 5rem;
  margin-bottom: 0;
}
.mod-form-dl.horizon > dd {
  font-size: 0;
}
.mod-form-dl.horizon .input,
.mod-form-dl.horizon .unit {
  display: inline-block;
  vertical-align: middle;
}
.mod-form-dl.horizon .input {
  margin-bottom: 0;
}
.mod-form-dl.horizon .unit {
  margin-left: 10px;
  color: #222;
}
/* Form horizon unit module.
   ========================================================================== */
.mod-form-horizon-unit {
  font-size: 0;
}
.mod-form-horizon-unit > .item {
  display: inline-block;
  vertical-align: middle;
}
.mod-form-horizon-unit > .unit {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  color: #222;
}
/* Tab container module.
   ========================================================================== */
.mod-tab-container {
  margin-bottom: 7px;
}
.mod-tab-container:last-child {
  margin-bottom: 0;
}
.mod-tab-container-handle {
  overflow: hidden;
  border-bottom: 3px solid #ffe700;
}
.mod-tab-container-handle > li {
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.mod-tab-container-handle > li:first-child {
  padding-right: 3px;
}
.mod-tab-container-handle > li:last-child {
  padding-left: 3px;
}
.mod-tab-container-handle > li > a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 5px 10px;
  text-align: center;
  color: #222;
  border-top: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-radius: 4px 4px 0 0;
}
.mod-tab-container-handle > li > a > span {
  display: inline-block;
  vertical-align: middle;
}
.mod-tab-container-handle > li > a::before {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
}
.mod-tab-container-handle > li > a.is-current {
  border-color: #ffe700;
  background-color: #ffe700;
}
.mod-tab-container-inner {
  overflow: hidden;
  background-color: #fff;
}
.mod-tab-container-inner .mod-counter-textarea,
.mod-tab-container-inner .mod-description-pattern {
  border-right: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  border-left: 1px solid #e6e5e5;
  border-radius: 0 0 5px 5px;
}
/* Counter textarea module.
   ========================================================================== */
.mod-counter-textarea {
  -webkit-transition: border .4s;
          transition: border .4s;
  background-color: #fff;
}
.mod-counter-textarea.is-rouded {
  overflow: hidden;
  border: 1px solid #e6e5e5;
  border-radius: 5px;
}
.mod-counter-textarea .inner {
  -webkit-transition: border .4s;
          transition: border .4s;
  border-bottom: 1px solid #e6e5e5;
}
.mod-counter-textarea .bottom {
  padding: 7px 10px 5px;
  text-align: right;
}
.mod-counter-textarea .bottom > p {
  display: inline-block;
  vertical-align: middle;
}
.mod-counter-textarea .textarea-bottom-label {
  padding-right: 2px;
}
.mod-counter-textarea .count-output.is-over {
  color: #ff6347;
}
.mod-counter-textarea.is-error {
  border-color: #ff6347;
  background-color: #fff7f8;
}
.mod-counter-textarea.is-error .inner {
  border-color: #ff6347;
}
.mod-counter-textarea.is-error textarea {
  background-color: #fff7f8;
}
.mod-counter-textarea.is-focus {
  border-color: #9e9e9e;
  outline: none;
}
.mod-counter-textarea.is-focus .inner {
  border-color: #9e9e9e;
}
/* Counter textarea module.
   ========================================================================== */
.mod-description-pattern {
  padding: 15px;
}
.mod-description-pattern-textarea {
  height: 250px;
  margin: 10px 0 15px;
  color: #666;
  border-radius: 5px;
  background-color: #f5f5f5;

  -webkit-overflow-scrolling: touch;
}
/* Popup window module.
   ========================================================================== */
.mod-popup {
  position: fixed;
  z-index: 301;
  top: 50%;
  left: 50%;
  display: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 294px;
  padding: 15px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #222;
  border: 1px solid #e6e5e5;
  border-radius: 5px;
  background-color: #fff;
}
.mod-popup.is-bottom {
  top: auto;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mod-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 17px;
  height: 17px;
}
.mod-popup-close > span {
  line-height: 0;
  position: absolute;
  top: 7px;
  left: -3px;
  width: 24px;
  height: 3px;
  -webkit-transition: all .2s ease-out;
          transition: all .2s ease-out;
  -webkit-transform-origin: center middle;
      -ms-transform-origin: center middle;
          transform-origin: center middle;
  border-radius: 2px;
  background-color: #222;
}
.is-show .mod-popup-close > span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.is-show .mod-popup-close > span:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* Entry process module.
   ========================================================================== */
.mod-entry-process .title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.mod-entry-process .text {
  font-size: 10px;
  font-size: 1rem;
  margin-bottom: .5rem;
}
.mod-entry-process .check {
  margin-top: 10px;
  text-align: right;
}
/* Personality module.
   ========================================================================== */
.mod-personality .heading {
  display: table;
  width: 100%;
  margin-bottom: 5px;
  table-layout: fixed;
  color: #222;
}
.mod-personality .heading > p {
  font-size: 9px;
  font-size: .9rem;
  display: table-cell;
}
.mod-personality .heading > p:last-child {
  text-align: right;
}
.mod-personality .inner {
  position: relative;
  padding: 4px 15px;
}
.mod-personality .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 35px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: 0 -26px;
  background-size: 81px 61px;
}
.mod-personality .inner::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 35px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -29px 0;
  background-size: 81px 61px;
}
.mod-personality .inside {
  height: 26px;
  background-color: #fdafa1;
  background-image: -webkit-linear-gradient(left, #fdafa1, #fcebe8 50%, #fdafa1);
  background-image: -webkit-gradient(linear, left top, right top, from(#fdafa1), color-stop(50%, #fcebe8), to(#fdafa1));
  background-image:         linear-gradient(to right, #fdafa1, #fcebe8 50%, #fdafa1);
}
.mod-personality .radio-list {
  position: relative;
  top: 1px;
  overflow: hidden;
  margin: 0 -20px;
}
.mod-personality .radio-list > li {
  float: left;
  width: 25%;
  text-align: center;
}
/* Date module.
   ========================================================================== */
.mod-date {
  display: table;
  width: 100%;
}
.mod-date > p {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.mod-date .year {
  padding-right: 5px;
}
.mod-date .month,
.mod-date .date {
  width: 20%;
}
.mod-date .pipe {
  width: 7%;
  color: #222;
}
/* Postal code module.
   ========================================================================== */
.mod-postal-code {
  font-size: 0;
}
.mod-postal-code > p {
  display: inline-block;
  vertical-align: middle;
}
.mod-postal-code .mark {
  width: 7%;
}
.mod-postal-code .num {
  width: 30%;
  margin-bottom: 0;
}
.mod-postal-code .pipe {
  width: 5%;
  text-align: center;
  color: #222;
}
/* Job experience module.
   ========================================================================== */
.mod-job-experience {
  display: table;
  width: 100%;
}
.mod-job-experience > .col {
  display: table-cell;
  vertical-align: middle;
}
.mod-job-experience > .col:last-child {
  padding-left: 15px;
}
/* Score module.
   ========================================================================== */
.mod-score .name {
  width: 15%;
}
.mod-score .num {
  width: 30%;
  margin-bottom: 0;
}
/* Box module.
   ========================================================================== */
.mod-box {
  padding: 13px 11px;
  border: 2px solid #f2f2f2;
}
.mod-box.error {
  border-color: #ff6347;
  background-color: #fff7f8;
}
.mod-box.error > p {
  color: #ff6347;
}
.mod-box.gauge {
 display: inline-block;
 position: relative;
 width: 85%;
 margin: 5px 0;
 padding: 0;
 border: 2px solid #e3e3e3;
 background-color: #fff;
 text-align: left;
}
.mod-box.gauge > p {
 display: inline-block;
 position: relative;
 width: 100%;
 padding: 3px 0;
 background-color: #ffe700;
 text-align: center;
}
.mod-box.gauge > p > span {
 display: inline-block;
 position: relative;
}
.mod-box.gauge > p.status10per {
 width: 10%;
}
.mod-box.gauge > p.status10per > span {
 left: 450%;
}
.mod-box.gauge > p.status20per {
 width: 20%;
}
.mod-box.gauge > p.status20per > span {
 left: 200%;
}
.mod-box.gauge > p.status50per {
 width: 50%;
}
.mod-box.gauge > p.status50per > span {
 left: 50%;
}
.mod-box.gauge > p.status60per {
 width: 60%;
}
.mod-box.gauge > p.status60per > span {
 left: 33.6%;
}
.mod-box.gauge > p.status90per {
 width: 90%;
}
.mod-box.gauge > p.status90per > span {
 left: 6%;
}
.mod-box-liquid_01 {
  display: block;
  width: 94%;
  padding-right: 3%;
  padding-left: 3%;
}
/*line-clamp*/
@supports (-webkit-line-clamp: 2) {
  .line-clamp {
    display: -webkit-box;
    overflow: hidden; 
    -webkit-box-orient: vertical;
    font-weight: normal;
  }
  .line-clamp.small {
    font-size: 10px;
    letter-spacing: -1px;
  }
  .line-clamp.two {
    -webkit-line-clamp: 2;
  }
}
/* Page sizer module.
   ========================================================================== */
.mod-page-sizer {
  font-size: 0;
  font-weight: bold;
  padding: 9px 12px;
}
.mod-page-sizer .num {
  display: inline-block;
  color: #ff6347;
}
.mod-page-sizer .total {
  display: inline-block;
  color: #222;
}
.mod-page-sizer .total > .num {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 4px;
}
.mod-page-sizer .segment {
  display: inline-block;
  margin-left: 12px;
  color: #222;
}
.mod-page-sizer .segment > .num {
  margin-right: 2px;
}
/* Pickup module.
   ========================================================================== */
.mod-pickup {
  margin-bottom: 29px;
  border-top: none;
  border-bottom: 2px solid #ff6347;
}
.mod-pickup-title {
  line-height: 1;
  padding: 14px;
  color: #fff;
  background-color: #ff6347;
}
.mod-pickup-inner {
  padding: 15px 13px;
}
.mod-pickup-corp {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 2px;
  color: #ff6347;
}
.mod-pickup-lead {
  margin-bottom: 10px;
}
/* Pagination module.
   ========================================================================== */
.mod-pagination {
  font-size: 0;
  text-align: center;
}
.mod-pagination > li {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.mod-pagination > li > span,
.mod-pagination > li > a {
  line-height: 32px;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 32px;
  color: #06c;
  border: 1px solid #ececec;
  border-radius: 4px;
  background-color: #ececec;
}
.mod-pagination > li.is-current > span,
.mod-pagination > li.is-current > a {
  color: #555;
  border: 1px solid #d7d6d6;
  background-color: #fff;
}
.mod-pagination > li:last-child {
  margin-right: 0;
}
/* Tag list module.
   ========================================================================== */
.mod-tag-list {
  overflow: hidden;
  margin: 0 -3px 6px;
}
.mod-tag-list > li {
  font-size: 9px;
  font-size: .9rem;
  line-height: 1;
  display: table;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 25%;
  height: 25px;
  margin-top: 6px;
  padding: 0 3px;
  text-align: center;
  color: #222;
}
.mod-tag-list > li > span {
  display: table-cell;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 3px 3px 2px;
  vertical-align: middle;
  border-radius: 6px;
  background-color: #ffe700;
}

.mod-tag-list > li > span.simple {
  display: table-cell;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 3px 3px 2px;
  vertical-align: middle;
  border-radius: 6px;
  color:#fff;
  background-color: #ea545d;
}

.mod-tag-list > li:nth-child(-n + 4) {
  margin-top: 0;
}
.mod-tag-list.pattern > li > span {
  color: #fff;
  background-color: #1e2b3f;
}
.mod-tag-list.pr > li > span {
  padding: 1px 1px 0;
  color: #1e2b3f;
  border: 2px solid #1e2b3f;
  background-color: #fff;
}
.mod-tag-list:last-child {
  margin-bottom: 0;
}
/* Application Attention module.
   ========================================================================== */
.mod-appli-attention{
  background: none;
  margin: 0 13px;
  padding: 8px 0;
}

.mod-appli-attention .mod-box.error > p{
  color: #222;
  font-size: 95%;
  text-align:center;
}
.mod-appli-attention .mod-box.error > p.nowentry {
  color: #ff6347;
  font-weight: bold;
}
/* Attention box module.
   ========================================================================== */
.mod-attention-box {
  padding: 12px 13px;
  border: 2px solid #e94e30;
  border-radius: 2px;
}
.mod-attention-box.howto {
  color:#222;
  border: 4px solid #15305d;
}
.mod-attention-box.howto span {
  color: #e94e30;
}
.mod-attention-box.howto ul{
  list-style: inside;
}
.mod-attention-box.strong {
  border-width: 4px;
}
.mod-attention-box-inner {
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 35px;
  vertical-align: middle;
  color: #e94e30;
}
.mod-attention-box-inner::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 29px;
  height: 26px;
  margin-top: -13px;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: 0 0;
  background-size: 81px 61px;
}
/* Attention message module.
   ========================================================================== */
.mod-attention-msg {
  padding: 2px 0 0 16px;
  color: #e94e30;
  font-weight: bold;
  background: url(/common/sp/img/_sprite/icon_attention.png) no-repeat left center;
  background-size: 14px;
}
/* Detail corporation module.
   ========================================================================== */
.mod-detail-corp {
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 13px;
}
.mod-detail-corp .object {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.mod-detail-corp .body {
  display: table-cell;
  padding-right: 10px;
  vertical-align: middle;
}
.mod-detail-corp .corp-name {
  margin-bottom: 10px;
}
/* Detail scout-appeal module.
   ========================================================================== */
.mod-scout-box {
  padding:13px 11px;
  background-color:#fff7f8;
  border-top:1px solid #e3e3e3;
  border-bottom:1px solid #e3e3e3;
}
/* Detail lead module.
   ========================================================================== */
.mod-detail-lead {
  padding: 0 13px 15px;
}
/* Detail tab module.
   ========================================================================== */
.mod-detail-tab-inner {
  overflow: hidden;
  border-bottom: 3px solid #ffe700;
}
.mod-detail-tab-inner > li {
  display: table;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.mod-detail-tab-inner > li:first-child {
  padding: 0 2px 0 13px;
}
.mod-detail-tab-inner > li:last-child {
  padding: 0 13px 0 2px;
}
.mod-detail-tab-inner > li > a,
.mod-detail-tab-inner > li > span {
  font-weight: bold;
  display: table-cell;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 5px 10px;
  text-align: center;
  vertical-align: middle;
  color: #222;
  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-radius: 4px 4px 0 0;
  background-color: #ececec;
}
.mod-detail-tab-inner > li.is-current > a,
.mod-detail-tab-inner > li.is-current > span {
  border-color: #ffe700;
  background-color: #ffe700;
}
/* Interview page tab module.
   ========================================================================== */
.mod-detail-tab-inner-3tab,
.mod-interview-tab-inner {
  overflow: hidden;
  border-bottom: 3px solid #ffe700;
  padding: 0 8px 0 8px;
}
.mod-detail-tab-inner-3tab > li,
.mod-interview-tab-inner > li {
  display: table;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 33%;
  padding: 0 4px 0 0;
}
.mod-detail-tab-inner-3tab > li:last-child,
.mod-interview-tab-inner > li:last-child {
  padding: 0;
}

.mod-detail-tab-inner-3tab > li > a,
.mod-detail-tab-inner-3tab > li > span,
.mod-interview-tab-inner > li > a,
.mod-interview-tab-inner > li > span {
  font-weight: bold;
  display: table-cell;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 5px 10px;
  text-align: center;
  vertical-align: middle;
  color: #222;
  border-top: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-radius: 4px 4px 0 0;
  background-color: #ececec;
}
.mod-detail-tab-inner-3tab > li.is-current > a,
.mod-detail-tab-inner-3tab > li.is-current > span,
.mod-interview-tab-inner > li.is-current > a,
.mod-interview-tab-inner > li.is-current > span {
  border-color: #ffe700;
  background-color: #ffe700;
}
/* default detail tab module.
   ========================================================================== */
.mod-detail-tab.gray > ul {
  border-bottom: 3px solid #dadada;
}
.mod-detail-tab.gray > ul > li > a,
.mod-detail-tab.gray > ul > li > span,
.mod-detail-tab.gray > ul > li.is-current > a,
.mod-detail-tab.gray > ul > li.is-current > span {
  height: 55px;
  border-color: rgb(218, 218, 218);
  background-color: rgb(218, 218, 218);
}
/* Job detail module.
   ========================================================================== */
.mod-job-detail {
  border-bottom: 1px solid #e3e3e3;
}
.mod-job-detail-header .info {
  display: table;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 13px;
  table-layout: fixed;
}
.mod-job-detail-header .info .info-tag {
  display: table-cell;
  vertical-align: middle;
}
.mod-job-detail-header .info .info-tag-list > li {
  width: 25%;
}
.mod-job-detail-header .term {
  text-align: right;
  vertical-align: middle;
  color: #222;
  margin-right:13px;
  padding-bottom:5px;
}
.mod-job-detail-header .inner {
  padding: 15px 13px;
}
.mod-job-detail-header .inner .title {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}
/* no job offer detail module.
   ========================================================================== */
.mod-appli-attention.none {
  margin: 0;
}
.mod-appli-attention.none .mod-box,
.mod-appli-attention.none .mod-box.error {
  border-color: #dadada;
  background-color: #fbfbfb;
}
.mod-appli-attention.none .mod-box .lead,
.mod-appli-attention.none .mod-box.error .lead {
  font-size: 140%;
  font-weight: bold;
}
.mod-appli-attention.none .mod-box .text,
.mod-appli-attention.none .mod-box.error .text {
  margin: 5px 0 10px 0;
  font-size: 120%;
}
.mod-appli-attention.none .mod-box .mod-inportant-info {
  padding: 10px;
}
.mod-appli-attention.none .mod-box .mod-inportant-info .lead {
  margin-bottom: 5px;
  border-top: 10px;
  color: #222;
  font-weight: bold;
  font-size: 110%;
  text-align: center;
}
.mod-appli-attention.none .mod-box .mod-inportant-info .mod-link {
  margin-bottom: 10px;
  font-size: 110%;
}
.mod-appli-attention.none .mod-box .mod-inportant-info .mod-link:last-child {
  margin-bottom: 0;
}
/* Job outline module.
   ========================================================================== */
.mod-job-outline {
  padding: 15px 13px;
}
.section .mod-job-outline {
  border-bottom: 1px solid #e3e3e3;
}
.section .mod-job-outline:last-child {
  border-bottom: none;
}
.mod-job-outline .object {
  overflow: hidden;
  margin-bottom: 12px;
  text-align: center;
  border-radius: 4px;
}
.mod-job-outline .object img {
  max-width: 100%;
  height: auto;
}
.mod-job-outline .subject {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
}
.mod-job-outline .lead {
  margin-bottom: 1rem;
}
/* Step module.
   ========================================================================== */
.mod-step {
  margin-bottom: 15px;
}
.mod-step > li {
  display: table;
  width: 100%;
  height: 50px;
  margin-bottom: 9px;
  padding-bottom: 23px;
  background: url(/common/sp/img/module/bg_arrow01.png) center bottom no-repeat;
  background-size: 45px 15px;
}
.mod-step > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.mod-step .title {
  display: table-cell;
  width: 16%;
  padding: 5px 15px;
  vertical-align: middle;
  background-color: #ffe700;
}
.mod-step .title > span {
  font-size: 9px;
  font-size: .9rem;
  line-height: 1;
  display: block;
  text-align: center;
  color: #222;
}
.mod-step .title > span.num {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 2px;
}
.mod-step .inner {
  display: table-cell;
  padding: 5px 15px;
  vertical-align: middle;
  border: 1px solid #e3e3e3;
  background-color: #fff;
}
.mod-step:last-child {
  margin-bottom: 0;
}
/* Corporation message module.
   ========================================================================== */
.mod-corp-message {
  text-align: center;
}
/* Search content module.
   ========================================================================== */
.mod-detail-submit-button {
  z-index: 100;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 15px 13px;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  background-color: #1e2b3f;
}

.mod-detail-submit-button.welcome{
  background-color: #e94e30;
  padding: 10px 13px;
}
.mod-detail-submit-button.welcome p{
  color: #fff;
  text-align: center;
  background: url(/common/sp/img/module/welcm_icon.png) no-repeat;
  padding-left: 30px;
  background-size: 16%;
  margin: 0 auto 5px auto;
  display: table;
}
.mod-detail-submit-button.welcome .mod-button-col{
  display: table;
  margin:0 auto;
  float: none;
}

.detail-submit-background{
width: 99%;
display: block;
position: absolute;
bottom: 99%;
left: 0%;
text-align: center;
padding: 1%;
color: #000;
background-color: #ffe700;
}
.detail-submit-background-day{
font-size:120%;
color:#ff0000;
font-weight:bold;
}

/* Register info module.
   ========================================================================== */
.mod-register-info {
  display: table;
  width: 100%;
}
.mod-register-info .col {
  display: table-cell;
  vertical-align: middle;
}
.mod-register-info .col > p {
  margin-bottom: 5px;
}
.mod-register-info .col > p:last-child {
  margin-bottom: 0;
}
.mod-register-info .col:first-child {
  padding-right: 5px;
}
.mod-register-info .col:last-child {
  padding-left: 5px;
  text-align: right;
}
.mod-register-info .title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  color: #222;
}
.mod-register-info .status {
  color: #999;
}
.mod-register-info .status.is-error {
  color: #ff6347;
}
.mod-register-info .name {
  width: 40px;
}
.mod-register-info .login-id {
  width: 160px;
}
.mod-register-info .button {
  width: 106px;
}
.mod-register-info .info {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  text-align: left;
      word-break: break-word;
  -ms-word-break: break-word;
}
.mod-register-info .toggle {
  width: 70px;
}
.mod-register-info .toggle > p {
  vertical-align: middle;
}
/* Schedule module.
   ========================================================================== */
.mod-schedule {
  overflow: hidden;
}
.mod-schedule > .time {
  float: left;
  margin-right: 20px;
}
.mod-schedule > .body {
  overflow: hidden;
}
/* Text input.
   ========================================================================== */
.mod-text-input {
  margin-bottom: 5px;
}
.mod-text-input > input {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 14px 10px;
  -webkit-transition: border .4s;
          transition: border .4s;
  border: 1px solid #e6e5e5;
  border-radius: 5px;
  background-color: #fff;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mod-text-input > input:focus {
  border-color: #9e9e9e;
  outline: none;
}
.mod-text-input > input[type='number'] {
  padding: 10px;
}
.mod-text-input.is-error > input {
  border-color: #ff6347;
  background-color: #fff7f8;
}
.mod-text-input.is-error > input:focus {
  border-color: #9e9e9e;
}
.mod-text-input:last-child {
  margin-bottom: 0;
}
/* Checkbox.
   ========================================================================== */
.mod-checkbox {
  position: absolute;
  visibility: hidden;
  margin-top: 7px;
  opacity: 0;
}
.mod-checkbox:checked + .mod-checkbox-label::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.mod-checkbox-label {
  position: relative;
  display: inline-block;
  padding: 7px 10px 7px 24px;
  color: #222;
}
.mod-checkbox-label::before,
.mod-checkbox-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  margin-top: -10px;
  content: '';
}
.mod-checkbox-label::before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  background-color: #fff;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .1), rgba(255, 255, 255, .1));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, .1)), to(rgba(255, 255, 255, .1)));
  background-image:         linear-gradient(to top, rgba(5, 0, 1, .1), rgba(255, 255, 255, .1));
  -webkit-box-shadow: 1px 1px 1px rgba(5, 0, 1, .05), inset 1px 1px 1px #fff;
          box-shadow: 1px 1px 1px rgba(5, 0, 1, .05), inset 1px 1px 1px #fff;
}
.mod-checkbox-label::after {
  width: 17px;
  height: 17px;
  -webkit-transition: all .1s ease-out;
          transition: all .1s ease-out;
  -webkit-transform: scale(.6);
      -ms-transform: scale(.6);
          transform: scale(.6);
  opacity: 0;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -34px;
  background-size: 81px 61px;
}
/* Toggle.
   ========================================================================== */
.mod-toggle {
  display: inline-block;
}
.mod-toggle-input {
  display: none;
}
.mod-toggle-input:checked + .mod-toggle-label {
  background-color: #06c;
}
.mod-toggle-input:checked + .mod-toggle-label > span {
  left: 37px;
}
.primary-flag-toggle {
  display: inline-block;
  line-height: 36px; 
  text-align: center;
}

/*
content属性に文字をそのまま指定すると文字化けするため
Unicodeによって変換し文言「前職」を設定
*/
.primary-flag-toggle label:after {
  content: "\524D\8077"; 
  padding: 0 0 0 27px;
  color: #111111
}
/*
content属性に文字をそのまま指定すると文字化けするため
Unicodeによって変換し文言「現職」を設定
*/
.primary-flag-toggle input[type="radio"]:checked + label:after {
  content: "\73FE\8077";
  padding: 0 29px 0 0;
  color: #fff;
} 
.mod-toggle-label {
  position: relative;
  display: block;
  width: 70px;
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background .3s;
          transition: background .3s;
  border-radius: 18px;
  outline: 0;
  background-color: #ccc;
}
.mod-toggle-label > span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 31px;
  height: 31px;
  content: '';
  -webkit-transition: left .3s cubic-bezier(.645, .045, .355, 1);
          transition: left .3s cubic-bezier(.645, .045, .355, 1);
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-radius: 15px;
  background-color: #fff;
}
/* Selectbox.
   ========================================================================== */
.mod-selectbox {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}
.mod-selectbox::after {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 8px;
  margin-top: -3px;
  content: '';
  -webkit-transition: -webkit-transform .4s;
          transition:         transform .4s;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -51px;
  background-size: 81px 61px;
}
.mod-selectbox:last-child {
  margin-bottom: 0;
}
.mod-selectbox-item {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 35px 0 10px;
  -webkit-transition: border .4s;
          transition: border .4s;
  color: #222;
  border: 1px solid #e6e5e5;
  border-radius: 5px;
  background-color: #fff;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mod-selectbox-item:focus {
  border-color: #9e9e9e;
  outline: none;
}
.mod-selectbox-item.is-error {
  border-color: #ff6347;
  background-color: #fff7f8;
}
.mod-selectbox-item.is-error:focus {
  border-color: #9e9e9e;
}
/* Keyword.
   ========================================================================== */
.mod-keyword-search {
  font-size: 0;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 5px;
}
.mod-keyword-search input {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  vertical-align: top;
  border: none;
  outline: none;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mod-keyword-search input::-webkit-input-placeholder {
  color: #d7d7d7;
}
.mod-keyword-search input::-moz-placeholder {
  color: #d7d7d7;
}
.mod-keyword-search .text {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 53px 10px 10px;
  -webkit-transition: border .4s;
          transition: border .4s;
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  border-left: 1px solid #e6e5e5;
  border-radius: 6px;
  background-color: #fff;
}
.mod-keyword-search .text:focus {
  border-color: #9e9e9e;
}

.mod-keyword-search button {
  height: 40px;
  width: 48px;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 6px 6px 0;
  background-image: -webkit-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
  background-image:     -ms-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
}
.mod-keyword-search button::after {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 17px;
  height: 17px;
  margin: -8px -8px 0 0;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -17px;
  background-size: 81px 61px;
}
.mod-keyword-search:last-child {
  margin-bottom: 0;
}
/* Radio button.
   ========================================================================== */
.mod-radio {
  display: none;
}
.mod-radio:checked + .mod-radio-label::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.mod-radio.is-disable + .mod-radio-label {
  cursor: default;
  opacity: .4;
}
.mod-radio.is-error + .mod-radio-label {
  color: #ff6347;
}
.mod-radio.is-error + .mod-radio-label::before {
  border-color: #ff6347;
  background-color: #fff7f8;
}
.mod-radio.is-error + .mod-radio-label::after {
  background-color: #ff6347;
}
.mod-radio-label {
  position: relative;
  display: inline-block;
  margin: 3px;
  color: #222;
}
.mod-radio-label::before {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  height: 18px;
  content: '';
  vertical-align: bottom;
  border: 1px solid #a3a2a2;
  border-radius: 50%;
  background-color: #fff;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .1), rgba(255, 255, 255, .1));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, .1)), to(rgba(255, 255, 255, .1)));
  background-image:         linear-gradient(to top, rgba(5, 0, 1, .1), rgba(255, 255, 255, .1));
  -webkit-box-shadow: inset 1px 1px 1px #fff;
          box-shadow: inset 1px 1px 1px #fff;
}
.mod-radio-label::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  content: '';
  -webkit-transition: all .2s;
          transition: all .2s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  border-radius: 50%;
  background-color: #222;
}
.mod-radio-label > span {
  display: inline-block;
  margin-left: 5px;
}
/* Textarea button.
   ========================================================================== */
.mod-textarea {
  font-size: 12px;
  font-size: 1.2rem;
  overflow: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 180px;
  padding: 15px;
  resize: none;
  border: none;
  outline: none;

  -webkit-overflow-scrolling: touch;
}


/* ABtest completeskilmatch.
   ========================================================================== */
.mod-accordion-handle .inner_icon{
  font-size: 9px;
  font-size: .9rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  padding: 3px 7px 2px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  vertical-align: middle;
  border-radius: 12px;
}
/*.inner_icon left right*/
.inner_icon-r{right: 33px;}
.inner_icon-l{right: 77px;}

/*icon-color*/
.icon-red{background-color:#ff6347;color: #fff;}
.icon-blue{background-color:#06c;color: #fff;}
.icon-yel{background-color:#ffe700;color: #222;}

/* Modal_window.
   ========================================================================== */
.addBookmarkOverlay .bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 190;
}
.addBookmarkOverlay .addBookmark {
  position: fixed;
  width: 262px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 5px;
  z-index: 200;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #06c;
}
.addBookmark .head {
  padding: 20px 20px 11px 20px;
  letter-spacing: -1px;
}
.addBookmark .head .head_in {
  font-weight: bold;
  font-size: 140%;
}
.addBookmark .body {
  padding: 0 0 11px 0;
}
.addBookmark .body .lead {
  font-size: 120%;
  line-height: 1.4;
  padding: 0 20px 11px 20px;
}
.addBookmark .body .image {
  text-align: center;
  padding-bottom: 11px;
}
.addBookmark .body .login .follow {
  font-size: 130%;
  padding: 0 20px 11px 20px;
}
.addBookmark .body .login .follow span {
  font-weight: bold;
}
.addBookmark .body .login .link {
  width: 80%;
  margin: 0 auto;
}
.addBookmark .body .login .link .mod-button.modal.login {
  color: #fff;
  background-color: #1c9be3;
}
.addBookmark .foot {
  text-align: center;
  padding: 2px 20px 20px 20px;
}
.addBookmark .foot .mod-checkbox-label.login {
    padding: 0 0 0 24px;
}
.addBookmark .closeBtn{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: -21px;
  top: -21px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #1e2b3f;
  cursor: pointer;
  color: #fff;
  font-size: 400%;
  font-weight: bold;
  line-height: 1;
}

/* Modal_window for welcome-btn */
#welcome-area #entry_input_after_mypage_reinput_simple {
	margin-bottom:10px;
	padding:8px;
}
#welcome-area .link-text {
	color: #06c;
}
#welcome-area .msg-popup-overlay .bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: 190;
}
#welcome-area .msg-popup-overlay .msg-popup {
	position: fixed;
	width: 85%;
	top: 50%;
	left: 50%;
	padding: 15px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 10px;
	z-index: 200;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 6px solid #06c;
}
#welcome-area .msg-popup .head {
	padding: 0 0 30px 0;
}
#welcome-area .msg-popup .head .head-in {
	font-weight: bold;
	font-size: 140%;
}
#welcome-area .msg-popup .body {
	padding: 0;
}
#welcome-area .msg-popup .body .lead {
	padding: 0 0 20px 0;
	font-size: 120%;
	line-height: 1.4;
}
#welcome-area .msg-popup .body .lead:last-child {
	padding: 0;
}
#welcome-area .msg-popup .body .lead span {
	font-weight: bold;
}
#welcome-area .msg-popup .close-btn {
	position: absolute;
	width: 45px;
	height: 45px;
	top: -25px;
	right: -25px;
	border-radius: 50%;
	background-color: #1e2b3f;
	cursor: pointer;
}
#welcome-area .close-btn .inner {
	position: relative;
}
#welcome-area .close-btn .inner .item::after {
	display: block;
	clear: both;
	content: '';
}
#welcome-area .close-btn .inner .item > span {
	position: absolute;
	top: 19px;
	left: 0;
	width: 62px;
	height: 9px;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;
	background-color: #fff;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#welcome-area .close-btn .inner .item > span:first-child {
	left: 11px;
	width: 30px;
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
#welcome-area .close-btn .inner .item > span:last-child {
	left: 5px;
	width: 30px;
	-webkit-transform: rotateZ(-45deg);
	-ms-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}
#welcome-area .msg-popup-overlay#welcome-auto-msg {
	z-index: 9999;
}
#welcome-area .msg-popup-overlay#welcome-auto-msg .msg-popup {
	border: 6px solid #e94e30;
}
#welcome-area #welcome-auto-msg .msg-popup .head {
	padding-bottom:15px;
}
#welcome-area #welcome-auto-msg .msg-popup .head .head-in {
	color: #e94e30;
	font-size: 145%;
}

/* btn_disappear_Modal_window.
   ========================================================================== */
.btn-disappear-modal-inner .bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 190;
}
.btn-disappear-modal-inner .modal-inner {
  position: fixed;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #fff;
  z-index: 200;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid #e94e30;
  border-radius: 10px;
}
.btn-disappear-modal-inner .modal-inner .head {
  padding: 20px 10px 11px 10px;
}
.btn-disappear-modal-inner .modal-inner .head .head_in {
  font-size: 140%;
  width: 100%;
  margin-bottom: 10px;
}
.btn-disappear-modal-inner .modal-inner .head .head_in.top {
  font-size: 140%;
  font-weight: bold;
  text-align: center;
}
.btn-disappear-modal-inner .modal-inner .body {
  padding: 0 0 20px 0;
}
.btn-disappear-modal-inner .modal-inner .body .lead {
  font-size: 120%;
  line-height: 1.4;
  padding: 0 20px 11px 20px;
}
.btn-disappear-modal-inner .modal-inner .close-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  top: -25px;
  right: -25px;
  border-radius: 50%;
  background-color: #1e2b3f;
  cursor: pointer;
}
.btn-disappear-modal-inner .modal-inner .close-btn .inner {
  position: relative;
}
.btn-disappear-modal-inner .modal-inner .close-btn .inner .item::after {
  display: block;
  clear: both;
  content: '';
}
.btn-disappear-modal-inner .modal-inner .close-btn .inner .item > span {
  position: absolute;
  top: 19px;
  left: 0;
  width: 62px;
  height: 9px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn-disappear-modal-inner .modal-inner .close-btn .inner .item > span:first-child {
  left: 11px;
  width: 30px;
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.btn-disappear-modal-inner .modal-inner .close-btn .inner .item > span:last-child {
  left: 5px;
  width: 30px;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.btn-disappear-modal-inner .modal-inner .body .image {
  text-align: center;
  padding-bottom: 11px;
}
.btn-disappear-modal-inner .modal-inner .body .login .follow {
  font-size: 130%;
  padding: 0 20px 11px 20px;
}
.btn-disappear-modal-inner .modal-inner .body .login .follow span {
  font-weight: bold;
}
.btn-disappear-modal-inner .modal-inner .body .login .link {
  font-size: 120%;
  margin: 0 auto;
}
.btn-disappear-modal-inner .modal-inner .body .login .link .mod-button.modal.login {
  color: #fff;
  background-color: #1c9be3;
}
.btn-disappear-modal-inner .modal-inner .foot {
  text-align: center;
  padding: 2px 20px 20px 20px;
}
.btn-disappear-modal-inner .modal-inner .foot .mod-checkbox-label.login {
    padding: 0 0 0 24px;
}
.btn-disappear-modal-inner .modal-inner .closeBtn{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: -21px;
  top: -21px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #1e2b3f;
  cursor: pointer;
  color: #fff;
  font-size: 400%;
  font-weight: bold;
  line-height: 1;
}
.btn-disappear-modal-inner .modal-inner .mod-link::before {
  top: .25rem;
}
.mod-link-list > li > a.rireki-condition-handle {
  padding-left: 33px;
  color: #06c;
}
.mod-link-list > li > a.rireki-condition-handle::before {
  position: absolute;
  top: 33%;
  left: 13px;
  width: 15px;
  height: 15px;
  content: '';
  background-image: url(../img/module/rireki_icon.png);
  background-position: 0 0;
  background-size: 15px 15px;
}
.mod-link-list > li > a.rireki-condition-handle::after {
  background: none;
}

.mod-link.pb15 .link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.search_condition_checkbox legend {
     color:#222;
     font-size: 1.4em;
     font-weight: bold;
 }

 .search_condition_checkbox ul {
     width: 100%;
     font-size: 0;
 }

 .search_condition_checkbox li.cond {
     display: inline-block;
     -webkit-box-sizing:border-box;
     -moz-box-sizing:border-box;
     -ms-box-sizing:border-box;
     box-sizing: border-box;
     border-right: 1px solid #e3e3e3;
     border-bottom: 1px solid #e3e3e3;
     width: 50%;
     padding-left: 1em;
     height: 50px;
     line-height: 3em;
     vertical-align: middle;
     border-collapse: collapse;
 }


 legend.title {
     color: #222;
     box-sizing: border-box;
     padding: 12px;
     font-size: 1.2rem;
     width: 100%;
     border-top: 1px solid #e3e3e3;
     border-bottom:  1px solid #e3e3e3;
 }

.side-by-side {
     color: #06c!important;
     font-size: 1.5rem!important;
     width: 30%;
     margin-top: 0.75rem;

 }

 .input-keyword-area {
     width: 65%;
 }

/* is_draw_tmp
---------------------------------------------------------------------------- */
#is_draw_tmp .lh16 {
	line-height: 1.6em;
}
#is_draw_tmp .img {
	max-width: 100%;
    height: auto;
}
#is_draw_tmp .bb1 {
	border-bottom: 1px solid #e3e3e3;
 }

.scoutOfferContents .clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
.scoutOfferContents .section-inner2{
  margin: 0 15px 15px;
}
.section-inner3{
  padding: 10px 13px;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fafafa;
}
.scoutOfferContents .NBL{
  border-bottom: none!important;
}
.scoutOfferContents .mb3p {
    margin-bottom: 3px;
}
.scoutOfferContents .bf14{
  font-size: 1.4rem;
  font-size: 14px;
}

.scoutOfferContents .co2c{
  color: #222;
}

.scoutOfferContents .cb.checked, .rb.checked {
    background-position: left -16px;
}

.scoutOfferContents .cb {
    background: url(/common/img/parts/icon_checkbox_bg01.png) left top no-repeat;
}

.scoutOfferContents .cb, .rb {
    line-height: 16px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    zoom: 1;
    height: 16px;
    margin: 0 0 0 5px;
    padding: 0 0 0 16px;
    cursor: pointer;
    vertical-align: middle;
}
.scoutOfferContents .cb input[type='checkbox'], .scoutOfferContents .rb input[type='checkbox'], .scoutOfferContents .cb input[type='radio'], .scoutOfferContents .rb input[type='radio'] {
    position: absolute;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.scoutOfferContents .red{
  color: red;
}
.scoutOfferContents .red2{
  color: #e94e30;
}
.scoutOfferContents .mod-detail-tab-inner-2tab{
  overflow: hidden;
  border-bottom: 3px solid #ffe700;
  padding: 0 8px 0 8px;
}
.scoutOfferContents .mod-link {
    margin:10px 15px 0;
    background-color: #fff;
    line-height: inherit;
    margin-bottom: 5px;
}
.scoutOfferContents .soContents{
  position: relative;
}

.scoutOfferContents .tabs {
	margin: 10px 0 0;
}

.scoutOfferContents #tabs-list li + li a {
	margin-left: -5px;
}

.scoutOfferContents #scout.scout_tab{
  display: block;
}

.scoutOfferContents .tab-content {
	background-color: #eee;
	width: 100%;
	box-sizing: border-box;
}
.scoutOfferContents .sonav{
  width: 100%;
}
.scoutOfferContents .sonav .view-mode{
  margin:10px;
  background-color: #fafafa;
}
.scoutOfferContents .sonav nav {
    width: 100%;
}
.scoutOfferContents .sonav ul{
}
.scoutOfferContents .sonav ul #tab_p,
.scoutOfferContents .sonav ul #tab_u,
.scoutOfferContents .sonav ul #tab_a,
.scoutOfferContents .sonav ul #tab_n{
  list-style: none;
  width: 24.6%;
  text-align: center;
  background-color: #eee;
  border-right: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  float: left;
}

.scoutOfferContents .sonav ul li a{
  color: inherit;
  display: block;
  text-decoration: none;
  text-align: center;
}

.scoutOfferContents .sortsort a{
  width: 100%;
}
.scoutOfferContents .sortsort p {
    margin-bottom: 5px;
}
.scoutOfferContents .view-mode{
padding: 10px 10px 0px;
}
.scoutOfferContents span.view-value{
  font-size: 1.1rem;
  padding: 5px;
  float: left;
  line-height: 2;
  color: #222;
}
.scoutOfferContents span.narrow{
  font-size: 1.2rem;
  padding: 7px 15px;
  border-radius: 10px;
  float: right;
  background-color: #ececec;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, .07)), to(rgba(255, 255, 255, .07)));
  background-image: linear-gradient(to top, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  -webkit-box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
  box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
}

.scoutOfferContents span.narrow2{
  font-size: 1.2rem;
  padding: 7px 15px;
  border-radius: 10px;
  float: right;
  background-color: #ececec;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(5, 0, 1, .07)), to(rgba(255, 255, 255, .07)));
  background-image: linear-gradient(to top, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
  -webkit-box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
  box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
}
.scoutOfferContents .mod-form-dl2{
  text-align: center;
  margin: 15px auto 5px;
}
.scoutOfferContents #detailSetting{
  background-color: #fff;
}
.scoutOfferContents #detailSetting .mod-form-dl{
  padding: 15px 13px;
  border-bottom: 1px solid #e6e5e5;
  background-color: #fff;
}
.scoutOfferContents #detailSetting .section-inner{
  background-color: #fff!important;
}
.scoutOfferContents #detailSetting span.button{
  text-align: center;
}
.scoutOfferContents #detailSetting span.button > input[type='submit'] {
    margin: 0 auto;
    width: 70%;
    text-indent: -9999px;
    border-radius: 6px;
    background-image: -webkit-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
    background-image: -ms-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
    border: none;
}
.scoutOfferContents #detailSetting span.button::after{
  position: absolute;
  top: 85%;
  right: 75%;
  width: 17px;
  height: 17px;
  margin: -8px -8px 0 0;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -17px;
  background-size: 81px 61px;
}
.scoutOfferContents #detailSetting span.button::before{
  position: absolute;
  top: 85%;
  right: 31%;
  margin: -6px -8px 0 0;
  color: #fff;
  content: "\3053\306E\6761\4EF6\3067\7D5E\308A\8FBC\3080";
  font-weight: bold;
}
.scoutOfferContents #detailSetting2{
  background-color: #fff;
}
.scoutOfferContents #detailSetting2 .mod-form-dl {
    padding: 15px 13px;
    border-bottom: 1px solid #e6e5e5;
    background-color: #fff!important;
}
.scoutOfferContents #detailSetting2.section-inner{
  background-color: #fff!important;
}
.scoutOfferContents #detailSetting2 span.button{
  text-align: center;
}
.scoutOfferContents #detailSetting2 span.button > input[type='submit'] {
    margin: 0 auto;
    width: 70%;
    text-indent: -9999px;
    border-radius: 6px;
    background-image: -webkit-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
    background-image: -ms-linear-gradient(90deg, #1b90d3 0%, #2ca2e5 100%);
    border: none;
}
.scoutOfferContents #detailSetting2 span.button::after{
  position: absolute;
  top: 85%;
  right: 75%;
  width: 17px;
  height: 17px;
  margin: -8px -8px 0 0;
  content: '';
  background-image: url(../img/parts/parts_sprite.png);
  background-position: -62px -17px;
  background-size: 81px 61px;
}
.scoutOfferContents #detailSetting2 span.button::before{
  position: absolute;
  top: 85%;
  right: 31%;
  margin: -6px -8px 0 0;
  color: #fff;
  content: "\3053\306E\6761\4EF6\3067\7D5E\308A\8FBC\3080";
  font-weight: bold;
}
.scoutOfferContents .shokusyu input{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 53px 10px 10px;
  -webkit-transition: border .4s;
  transition: border .4s;
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  border-left: 1px solid #e6e5e5;
  border-radius: 6px;
  background-color: #fff;
}
.scoutOfferContents .mail-lists{
  overflow: auto;
  background-color: #eee;
  margin-top: 10px;
}
.scoutOfferContents .mail-lists .unread{
  background-color: #fff7e4;
  border-top: 4px solid #FFE700;
  width: 100%;
}
.scoutOfferContents .mail-lists .read{
  background-color: #fff;
  border-top: 4px solid #FFE700;
}
.scoutOfferContents #mailList li{
  position: relative;
}
.scoutOfferContents #mailList li .right-angle{
}

.scoutOfferContents .hyouji_check{
  border-bottom: 1px solid #e3e3e3;
  padding: 5px 0 5px 10px;
  vertical-align: middle;
}
.scoutOfferContents .hyouji_check .left{
  float: left;
  line-height: 2.4;
  margin: 5px 10px 0 0;
}
.scoutOfferContents .hyouji_check .welcome{
  background-color:#E94E30;
  color:#fff;
  border-radius:2px;
  float:left;
  padding:3px 5px;
  margin-top:7px;
}
.scoutOfferContents .hyouji_check .right{
  float: right;
}
.scoutOfferContents .coOr{
    color: orange;
}
.scoutOfferContents .hyouji_check img {
    width: 25px;
    margin-right: 5px;
}
.scoutOfferContents .hyouji_check .welcome img {
    width: 20px;
    margin-right: 5px;
    margin-top:1px;
}
.scoutOfferContents .messege_nakami{
  padding: 5px 10px;
}
.scoutOfferContents .scout_ul_topb{
  padding: 5px 10px;
}
.scoutOfferContents .offer_ul_topb{
  padding: 5px 10px;
}

.scoutOfferContents .shokusyu .mod-accordion-handle{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 53px 10px 10px;
  -webkit-transition: border .4s;
  transition: border .4s;
  border:1px solid #e6e5e5;
  border-radius: 6px;
  background-color: #fff;
  font-size: inherit;
  font-weight: 1.2rem;
  font-size: 12px;
  display: table;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 30px 12px 15px;
  color: #e6e5e5!important;
}
.scoutOfferContents .corpRireki{
  border-top: 1px solid #e3e3e3;
}
.copList ul{
  background-color: #fff;
}
.copList ul li{
  border-left: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  padding: 10px;
}
.copList ul li .date{
  margin: 0 20px 0 0;
  float: left;
}

.scoutOfferContents .fmSubmit{
  animation: fadeIn 0.6s ease 0s 1 normal;
  -webkit-animation: fadeIn 0.6s ease 0s 1 normal;
  width: 100%;
  background-color: #1E2B3F;
  text-align: center;
  padding: 20px;
  position: fixed;
}
.scoutOfferContents .fmSubmit  button{
    background-color: #ececec;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    background-image: -webkit-linear-gradient(bottom, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
    background-image: -o-linear-gradient(bottom, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
    background-image: linear-gradient(to top, rgba(5, 0, 1, .07), rgba(255, 255, 255, .07));
    -webkit-box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
    box-shadow: inset 0 0 1px rgba(5, 0, 1, .4);
}
.scoutOfferContents .fmSubmit a{
  color: #000;
  font-size: 12px;
  padding: 5px;
}
.scoutOfferContents .use{
  display: none;
}
.scoutOfferContents .mod-detail-submit{
  height: auto!important;
}
.scoutOfferContents .scout_hide_msg{
  display: none;
}
.scoutOfferContents .offer_hide_msg{
  display: none;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.scoutOfferContents .scout_ul_topb{
  float: right;
  margin-bottom: 10px;
}
.scoutOfferContents .scout_ul_topb li{
  float: left;
}
.scoutOfferContents .scout_ul_topb .date{
  margin-right: 10px;
}

.scoutOfferContents .offer_ul_topb{
  float: right;
  margin-bottom: 10px;
}
.offer_ul_topb li{
  float: left;
}
.scoutOfferContents .offer_ul_topb .date{
  margin-right: 10px;
}
.scoutOfferContents #panels {
  background-color: white;
}
.scoutOfferContents #panels .container {
  width: 100%;
}
.scoutOfferContents #panels section header label.panel-label {
  padding: 12px 24px;
  box-sizing: border-box;
}
.scoutOfferContents #panels section sub {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
}

.scoutOfferContents #panel-1-ctrl:checked ~ #panels #panel-1 sub {
  max-height: initial;
  opacity: 1;
}

.scoutOfferContents #panel-2-ctrl:checked ~ #panels #panel-2 sub {
  max-height: initial;
  opacity: 1;
}

.scoutOfferContents ul#tabs-list {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  list-style: none;
  text-align: center;
  border-bottom: 3px solid #ffe700;
  margin: 10px 0 3px;
  padding: 0;
}

.scoutOfferContents ul#tabs-list li {
  display: flex;
  text-align: center;
  font-size: 1.2rem;
  width: 49%;
  position: relative;
  background-color: #ecf0f1;
  border-radius: 10px 10px 0 0;
}

.scoutOfferContents ul#tabs-list li label.panel-label {
  position: relative;
  font-size: 0.875em;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
}
.scoutOfferContents ul#tabs-list span {
    font-size: 1.2rem;
}

.scoutOfferContents ul#tabs-list li label.panel-label::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
  height: 0;
  -webkit-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.scoutOfferContents ul#tabs-list li label.panel-label:hover {
  padding-top: 10px;
}
.scoutOfferContents ul#tabs-list li label.panel-label:hover::after {
  height: 6px;
}

.scoutOfferContents ul#tabs-list li:hover {
  -webkit-transition: none;
  transition: none;
  border-right: none;
}

/*mini-menu*/
.scoutOfferContents ul#sort-list {
  display: -webkit-flex;
  display: flex;
  list-style: none;
  text-align: center;
  border-bottom: 1px solid #e6e5e5;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.scoutOfferContents ul#sort-list li {
  text-align: center;
  font-size: 0.875em;
  width: 24.7%;
  box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.05);
  border-right: 1px solid #e6e5e5;
  position: relative;
  background-color: #ecf0f1;
}
.scoutOfferContents ul#sort-list li:hover {
  -webkit-transition: none;
  transition: none;
}
.scoutOfferContents ul#sort-list li:hover.last {
  border-right: 1px solid transparent;
}

.scoutOfferContents ul#sort-list li label.panel-label {
  position: relative;
  font-size: 0.875em;
}

.scoutOfferContents ul#sort-list li label.panel-label:hover {
}
.scoutOfferContents ul#sort-list li label.panel-label:hover::after {
  height: 6px;
}

.scoutOfferContents #sort-list p {
    font-size: 1.1rem;
}
.scoutOfferContents #sort-list img{
  width: 30%;
  margin: 5px 0;
}
.scoutOfferContents .sortsort .search .mod-accordion-handle{
  font-size: 14px;
  font-size: inherit;
  font-weight: inherit;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0!important;
  color: #000!important;
}


.scoutOfferContents label.panel-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  color: #222;
  cursor: pointer;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}

.scoutOfferContents #mpanels {
  background-color: white;
}
.scoutOfferContents #mpanels .container {
  margin: 0 auto;
  width: 100%;
}
.scoutOfferContents #mpanels section header label.panel-label {
  padding: 12px 24px;
  box-sizing: border-box;
}
.scoutOfferContents #mpanels section sub {
  box-sizing: border-box;
  max-height: 500px;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
}

.scoutOfferContents sub {
    width: 100%;
    margin: 0 auto;
}
.scoutOfferContents .panel-radios {
  display: none;
}

.scoutOfferContents label.panel-label:hover {
  background-color: #ffe700;
}
.scoutOfferContents .i_active {
  background-color: #ffe700!important;
}
.scoutOfferContents #panels {
  background-color: #e6e5e5;
}
.scoutOfferContents #panels .container {
  margin: 0 auto;
  width: 100%;
}
.scoutOfferContents #panels section header label.panel-label {
  padding: 12px 24px;
  box-sizing: border-box;
}
.scoutOfferContents #panels section main {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
  background-color: #fff;
}

.scoutOfferContents #panel-1-ctrl:checked ~ #panels #panel-1 main {
  max-height: initial;
  opacity: 1;
}

.scoutOfferContents #panel-2-ctrl:checked ~ #panels #panel-2 main {
  max-height: initial;
  opacity: 1;
}

.scoutOfferContents #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
.scoutOfferContents #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1.last {
  border-right: 1px solid transparent;
}
.scoutOfferContents #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 + li {
}
.scoutOfferContents #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label {
  background-color: #ffe700;
  color: #222;
  padding-top: 10px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}
.scoutOfferContents #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label::after {
  height: 6px;
}

.scoutOfferContents #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
  pointer-events: none;
  cursor: default;
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
  box-shadow: none;
  border-right: none;
}
.scoutOfferContents #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2.last {
  border-right: 1px solid transparent;
}
.scoutOfferContents #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 + li {
}
.scoutOfferContents #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
  background-color: #ffe700;
  color: #222;
  padding-top: 10px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}
.scoutOfferContents #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label::after {
  height: 6px;
}

.scoutOfferContents main {
    width: 100%;
    margin: 0 auto;
}
.scoutOfferContents .panel-radios {
  display: none;
}

.scoutOfferContents .comp-img{
  margin: 5px;
}
.scoutOfferContents .comp-img img{
  width: 60px;
  height: 60px;
}

/*zero*/
.scoutOfferContents .scout_zero,.offer_zero{
  background-color: #fff;
  text-align: center;
  padding:  20px 10px;
}
.scoutOfferContents .scout_zero p,.offer_zero p{
  font-size: 110%;
  font-weight: bold;
}
.scoutOfferContents .button2{
  background-color: #ececec;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
}
.scoutOfferContents .cente{
  padding: 5px 15px 20px;
  background-color: #fff;
}
.scoutOfferContents .button2 span.big{
  color: #000;
  letter-spacing:normal!important;
}
.scoutOfferContents .cente p.red2{
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin: 10px 0%;
  text-align: center;
  font-weight: bold;
}
span.copName {
    margin-top: 15px;
}
.deleteCompany a{
  width: 20%;
  color: #000;
}
.attention-box-inner{
  color: #ff6347;
  padding: 12px 13px 9px;
  border-bottom: 2px solid #ff6347;
}
.attention-box-inner h2{
  font-size: 16px;
}

.scoutOfferContents .mod-button.cancel{
  background-color: #1c9be3;
}
.scoutOfferContents .mod-button.cancel span{
  color: #fff;
}
.scoutOfferContents .bbnon{
  border-bottom: 0!important;
}
.scoutOfferContents .msg-lists .section-inner{
  padding: 10px 13px;
}

.scoutOfferContents .btop1px{
  border-top: 1px solid #e3e3e3;
}
.scoutOfferContents .mg10{
  margin: 12.5px 0;
}
.scoutOfferContents .mgb15{
  margin: 15px ;
}
.scoutOfferContents .mgtb15{
  margin: 15px;
}

/*modal*/
.scoutOfferContents .bgc{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 190;
}
.scoutOfferContents .mod-link-list > li{
  background-color: #fafafa;
}
.deleteCompany a{
  font-size: 1.2rem;
}
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
.scout-acordion{
  display: none;
}
.moreButton{
  background-color: #ececec;
  border-radius: 10px;
  margin: 0 5% 5%;
  color: #222;
  font-weight: bold;
}
.more-read img{
  width:20px;
  margin-right: 5px;
}
.moreButton a{
  color: #000;
}
.fmItemList{
  margin-top: 10px;
}
.mfc{
  border: 1px solid #e2e2e2;
  padding: 20px;
  margin: 5%;
}
.mfc textarea{
  border: none;
}
.center{
  text-align:center;
}
.scoutOfferContents .scout-titlle{
  font-size: 14px;
}
.scoutOfferContents .detail-corp .body{
  display: table;
  padding: 15px 13px 0;
}
.unreadMail{
  background: #fff7e4;
}
.readMail{
  background: #fff;
}
.miniTag{
  font-weight: bold;
}
.dropHide{
  text-align: center;
  margin: 20px auto;
  font-size: 1.2rem;
  font-size: 12px;
}

.scoutOfferContents .specialButton>a{
  color: #fff;
  background-color: #1c9be3;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
}
.scoutOfferContents .gray-back{
border-top: 1px solid #e3e3e3;
border-bottom: 1px solid #e3e3e3;
background-color: #f2f2f2;
padding: 10px 13px;
margin: 10px 0 0 0;
}
.scoutOfferContents .gray-back p{
  font-weight: bold;
}
.scoutOfferContents .bf{
  font-weight: bold;
}
.scoutOfferContents .f13{
  font-size: 1.3rem;
}
.scoutOfferContents .mb3p {
    margin-bottom: 3px;
}
.scoutOfferContents .comp-img img{
  width: 60px;
  height: 60px;
  margin: 23px 10px 15px 0!important;
}
.scoutOfferContents .mod-detail-corp{
  padding: 15px 13px 0;
}
.scoutOfferContents .mod-detail-corp .corp-name{
  margin-bottom: 0;
}

.scoutOfferContents .center{
  text-align: center;
}
.scoutOfferContents .innerContent td{
  vertical-align: middle!important;
}
.scoutOfferContents .mod-button span {
    letter-spacing:normal!important;
}
.scoutOfferContents .mod-button-col > a{
  font-size: 1.3rem;
}

.scoutOfferContents div#feature {
	background: #daeef4;
	border: 2px solid #8991aa;
	margin:25px 10%;
  border-radius: 10px;
}
.scoutOfferContents div#feature .htitle{
	background: #80bbcd;
	color: #fff;
	font-size: 120%;
	font-weight: bold;
	padding: 11px 20px 6px 20px;
	text-align: center;
	text-shadow: 2px 2px 1px #6a9baa;
}

.scoutOfferContents div#feature p {
	padding-bottom: 14px;
  font-size: 10px;
}
.scoutOfferContents div#feature p.htitle{
  font-size: 13px;
}
.scoutOfferContents .msgbox{
  padding: 20px 20px 0 5px;
}
.scoutOfferContents .msgboximg{
  float: left;
  width: 60px;
  height: 65px;
  margin-right: 7px;
}
.scoutOfferContents .msgbox img {
  width: 100%;
}
.scoutOfferContents .topcurb{
	border-radius:8px 8px 0 0;
}
.scoutOfferContents .cent{
  margin: 5px 15px;
}

.scoutOfferContents .btn-disappear-modal-inner .button{
  background-color: initial;
  text-align: -webkit-auto;
  border-radius: initial;
  padding: initial;
}

.scoutOfferContents .button{
  background-color: #ff6347;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
}
.scoutOfferContents .button span.big{
  font-size: 150%;
  color: #fff;
  font-weight: bold;
}
.scoutOfferContents .button span.small{
  font-size: 120%;
  color: #fff;
  font-weight: bold;
}

.scoutOfferContents .p12{
  font-size: 1.2rem;
  margin: 10px 15px;
}

.scoutOfferContents .mod-title-lvoff{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 13px 9px;
  background-color: #fff;
}
.scoutOfferContents .mod-title-lvoff > .inner{
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}
.scoutOfferContents .boldFont{
  font-weight: bold;
}
.scoutOfferContents .mod-job-index.offer-seminar{
  border-top: 1px solid #e3e3e3;
}
.scoutOfferContents .mod-job-index.offer-seminar .mod-job-info-header{
  border-bottom: none;
}

/* social-button */
#social-area button {
  margin-bottom: 12px;
}
#social-area button.mod-button.social {
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  padding: 0;
  letter-spacing: 1px;
}
#social-area button.mod-button.social.line {
  line-height: 16px;
  height: 50px;
  background-color: #1bb71f;
  background-image: none;
  padding-top: 6px;
}
#social-area button.mod-button.social.line span{
  font-size: 11px;
  letter-spacing: 0;
}
#social-area button.mod-button.social.yahoo {
  background-color: #e61017;
  background-image: none;
}
#social-area button.mod-button.social.facebook {
  background-color: #3b5998;
  background-image: none;
}
#social-area button.mod-button.register {
  font-size: 15px;
  letter-spacing: 1px;
}
#social-area button.mod-button.social.line:before {
  content: '';
  display: inline-block;
  background-image: url(/common/sp/img/parts/regist_line.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 39.5px;
  height: 44.5px;
  vertical-align: bottom;
  margin-left: 8px;
  margin-right: -47.5px;
  float: left;
}
#social-area button.mod-button.social.yahoo:before {
  content: '';
  display: inline-block;
  background-image: url(/common/sp/img/parts/regist_yahoo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 5px;
  width: 39.5px;
  height: 44.5px;
  vertical-align: bottom;
  margin-left: 8px;
  margin-right: -47.5px;
  float: left;
}
#social-area button.mod-button.social.facebook:before {
  content: '';
  display: inline-block;
  background-image: url(/common/sp/img/parts/regist_facebook.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 8px;
  width: 29.5px;
  height: 37.5px;
  vertical-align: bottom;
  margin-left: 8px;
  margin-right: -37.5px;
  float: left;
}

#social-area button.mod-button.register {
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
#social-area button.mod-button.register span{
  letter-spacing: 0;
}

section#login #social-area {
  width: 100%;
  display: flex;
}

section#login #social-area button.mod-button.social {
  line-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  height:40px;
  margin-right: 5px;
}

section#login #social-area button.mod-button.social:last-of-type {
  margin-right: 0;
}

section#login #social-area button.mod-button.social.line > span {
  font-size: 14px;
  display: block;
  width: calc(100% - 39px);
  float: right;
  margin-top: 20px;
  padding-right: 7%;
}

section#login #social-area button.mod-button.social.line::before {
  width: 39px;
  height: 39px;
  margin-left: 4px;
}

section#login #social-area button.mod-button.social.yahoo > span {
  font-size: 14px;
  letter-spacing: 0.4px;
  display: block;
  width: calc(100% - 36px);
  float: right;
  margin-top: 19px;
  padding-right: 3%;
}

section#login #social-area button.mod-button.social.yahoo::before {
  width: 36px;
  height: 36px;
  background-position: 0;
  margin-left: 6px;
}

section#login #social-area button.mod-button.social.facebook > span {
  font-size: 14px;
  letter-spacing: 0.4px;
  display: block;
  width: calc(100% - 22px);
  float: right;
  margin-top: 10px;
}

section#login #social-area button.mod-button.social.facebook::before {
  width:22px;
  height:22px;
  background-position: 0;
  margin-left: 6px;
  margin-top: -4px;
}

@media screen and (max-width: 320px) {
  section#login #social-area {
    flex-wrap: wrap;
	justify-content: space-between;
  }
  
  section#login #social-area button.mod-button.social {
	width: 49%;
	margin-right: 0;
  }
  
  section#login #social-area button.mod-button.social.facebook {
	margin-top: 4px;
  }
}

/*job-info table*/

table.mod-position-table {
  table-layout: fixed;
  width: 100%;
}

.mod-position-table tr th {
  box-sizing: border-box;
  width:60px;
  background-color: #1e2b3f;
  color: #fff;
  vertical-align: middle;
  border: solid 1px #1e2b3f;
  border-bottom: solid 1px #fff;
  padding-top: 2px;
}

.mod-position-table tr:last-child th {
  border-bottom: solid 1px #1e2b3f;
}

.mod-position-table tr td {
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #1e2b3f;
  width : auto;
  padding: 10px 4px 8px 8px;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
  modal banner
  ========================================================================== */
/* float */
.f-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.f-container-v-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.probo-fixbnr-wrp {
  position: fixed;
  z-index: 100;
  right: 3px;
  bottom: 0;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border: 3px solid #15305d;
  border-style: solid solid none solid;
  width: 250px;
}
.probo-fixbnr-robo {
  position: relative;
  padding: 5px 10px 5px 5px;
  width:25%;
  max-width: 60px;
}
.probo-fixbnr-icon {
  background: url(/common/sp/img/module/probo_01.png) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.probo-tip {
  position: relative;
}
.probo-tip::after {
  content: '';
  display: block;
  position: absolute;
  background: url(/common/sp/img/module/probo_bnr_tip.png) no-repeat;
  -webkit-background-size: 35px auto;
  background-size: 35px auto;
  width: 15px;
  height: 15px;
}
.probo-fixbnr-robo::after {
  top:0;
  bottom:0;
  right: -3px;
  margin: auto;
  -webkit-transform: translate3d(0,13px,0);
  transform: translate3d(0,13px,0);
  background-position: 0 0;
}
.probo-fixbnr-txt {
  -webkit-box-flex:1;
  -webkit-flex: 1;
  flex: 1;
  padding: 10px 15px 10px 10px;
  background: #15305d;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
}
.probo-fixbnr-msg {
  overflow-x: hidden;
  overflow-y: auto;
  height: 4.5em;
}
@-webkit-keyframes probo-flash {
  0% {visibility: hidden;}
  50% {visibility: hidden;}
  100% {visibility: visible;}
}
@keyframes probo-flash {
  0% {visibility: hidden;}
  50% {visibility: hidden;}
  100% {visibility: visible;}
}
.probo-fixbnr-arrow {
  display: block;
  width: 0;
  height: 0;
  border-color: #fff transparent transparent transparent;
  border-width: 8px;
  border-style: solid solid none;
  margin: 0 0 0 auto;
  -webkit-animation: 1s infinite probo-flash;
  animation: 1s infinite probo-flash;
  position: absolute;
  bottom: 4px;
  right: 3px;
}
.probo-cross-btn,
.entry-promote-cross-btn,
.modal-common-cross-btn {
  position: absolute;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
}
.probo-cross-btn::before,
.probo-cross-btn::after,
.entry-promote-cross-btn::before,
.entry-promote-cross-btn::after,
.modal-common-cross-btn::before,
.modal-common-cross-btn::after {
  content: '';
  display: block;
  position: absolute;
  height: 1.5px;
  width: 60%;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.probo-cross-btn::before,
.entry-promote-cross-btn::before,
.modal-common-cross-btn::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.probo-cross-btn::after,
.entry-promote-cross-btn::after,
.modal-common-cross-btn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.probo-fixbnr-btn {
  top:-5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background-color: #818181;
}
/* modal */
.probo-modalbnr-wrp,
.entry-promote-modalbanner-wrap,
.modal-common-modalbanner-wrap {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  justify-content: center;
  -webkit-justify-content: center;
}
.probo-modalbnr {
  background-color: #fff;
  width: 260px;
  padding: 30px 20px 10px;
  border: 4px solid #1f79d2;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  transform: translate3d(0, -10%, 0);
}
.probo-modalbnr-ttl,
.entry-promote-modalbanner-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 -16px 0 -2px;
  color: #15305d;
}
.probo-modalbnr-txt {
  margin: 5px 0 10px;
  font-size: 14px;
  color: #222;
}
.probo-modalbnr-msg {
  display: inline-block;
  background-color: #d4edff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 5px;
  color: #222;
}
.probo-modalbnr-msg::after {
  background-position: -20px 0;
  bottom: -9px;
  left: 45px;
}
.probo-modalbnr-icon {
  background: url(/common/sp/img/module/probo_06.png) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
  width: 80px;
  height: 80px;
}
.probo-modalbnr-lbl {
  display: block;
  background: #f8664c;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 5px;
  margin-left: auto;
}
.probo-modalbnr-btn,
.entry-promote-modalbanner-btn,
.modal-common-modalbanner-btn {
  background-color: #15305d;
  width: 28px;
  height: 28px;
  top: -12px;
  right: -12px;
}
.probo-modalbnr-btn::before,
.probo-modalbnr-btn::after,
.entry-promote-modalbanner-btn::before,
.entry-promote-modalbanner-btn::after,
.modal-common-modalbanner-btn::before,
.modal-common-modalbanner-btn::after {
  height: 3px;
}

/* Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  background-color: #fff;
  width: 100%;
}
.breadcrumbs .breadcrumbs-inner {
  padding: 10px 15px;
}
.breadcrumbs .breadcrumbs-inner li {
  display: inline-block;
  zoom: 1;
  margin-right: 15px;
  padding-left: 15px;
  vertical-align: middle;
  background: url(/common/img/parts/icon_breadcrumbs_bg.png) left center no-repeat;
  display: inline;
  line-height: 2;
}
.breadcrumbs .breadcrumbs-inner li:first-child {
  padding-left: 0;
  background: none;
}
.breadcrumbs .breadcrumbs-inner .crumbs {
  display: inline;
  font-size: 12px;
}
.breadcrumbs .breadcrumbs-inner .crumbs.inline {
  display: inline;
}
.breadcrumbs .breadcrumbs-inner .crumbs:first-child {
  padding-left: 0;
  background: none;
}
.breadcrumbs .breadcrumbs-inner .crumbs strong {
  display: inline;
}
.breadcrumbs .breadcrumbs-inner .crumbs > a{
  margin-right: 5px;
}
.entry-form .toggleBox {
  display: none;
}
.entry-form .toggleLink {
  border: solid 1px #e3e3e3;
  padding: 8px;
  display: block;
}

.entry-form #section01 .section-inner {
  border-bottom: none;
}


/* appli banner
   ========================================================================== */
#app-banner{
  background: #fff;
}
#app-banner .install-btn{
	color: #0E0F7B;
  display: block;
  width: 100%; 
  padding: 1px 0;
}
#app-banner .app-info-outer{
	padding: 8px 15px;
	display:flex;
	justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}
#app-banner .hide{
  display: none;
}
#app-banner .active{
  display: block;
}
#app-banner .app-icon-outer{
  max-width: 41px;
  width: 15%;
}
#app-banner .icon-href{
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(120 / 120 * 100%);
}
#app-banner .app-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#app-banner .app-text{
  width: 85%;
  padding: 0 8px;
}
#app-banner .app-title{
  color: #000;
  margin-top: -3px;
  font-size: 1.2rem;
  font-weight: bold;
}
#app-banner .app-text a p{
  color: #000;
}
#app-banner .app-btn{
  text-align: center;
  font-size: 1rem;
  position: relative;
  right: 4px;
  top: 3px;
  margin-left: 4px;
  background-color: #ddd;
  border-radius: 2px;
  width: 75px;
}
#app-banner .app-btn a{
  color: #000;
}
#app-banner .delete{
  width: 15%;
  height: 20px;
  bottom: 50px;
  float: right;
  padding-top: 5%;
  position: relative;
}
#app-banner .mark {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #cecdcd;
  transform: rotate(45deg);
  position: absolute;
  top: inherit;
  right: 16px;
  margin-top: 0.5px;
}
#app-banner .mark:before {
  display: block;
  content: '';
  position: relative;
  top: 15%;
  left: -6px;
  width: 14px;
  height: 2px;
  background: #cecdcd;
  margin-top: 4px;
}
.header-inside {
    position: relative;
    height: 43px;
    padding: 15px;
    text-align: right;
    font-size: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffe700;
}

@media screen and (min-width: 413px) {
  #app-banner .delete{
    padding-top: 4.4%;
  }
}

@media screen and (min-width: 568px) {
  #app-banner .delete{
    padding-top: 2.4%;
  }
  #app-banner .app-text {
    width: 90%;
  }
  #app-banner .app-icon-outer{
    max-width: 51px;
    width: 10%;
  }
}
/* ===============================================
# rating css
=============================================== */
#app-banner .rate {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 80px;
  height: 15px;
  font-size: 14px;
  margin-left: 5px;
}
#app-banner .rate:before, .rate:after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  height: 14px;
  line-height: 14px;
}
/*
content属性に文字をそのまま指定すると文字化けするため
Unicodeによって変換し「☆☆☆☆☆」を設定
*/
#app-banner .rate:before {
  content: '\2606\2606\2606\2606\2606';
  color: #FF9500;
}
/*
content属性に文字をそのまま指定すると文字化けするため
Unicodeによって変換し「★★★★★」を設定
*/
#app-banner .rate:after {
  content: '\2605\2605\2605\2605\2605';
  color: #FF9500;
  overflow: hidden;
  white-space: nowrap;
}

#app-banner .rate0:after {
  width: 0;
}

#app-banner .rate1:after {
  width: 1.6rem;
}

#app-banner .rate1-5:after {
  width: 2.4rem;
}

#app-banner .rate2:after {
  width: 3.2rem;
}

#app-banner .rate2-5:after {
  width: 4rem;
}

#app-banner .rate3:after {
  width: 4.8rem;
}

#app-banner .rate3-5:after {
  width: 5.6rem;
}

#app-banner .rate4:after {
  width: 6.2rem;
}

#app-banner .rate4-5:after {
  width: 6.26rem;
}

#app-banner .rate5:after {
  width: 8.6rem;
}

#app-banner .copyRight{
  clear: both;
}
#app-banner .mod-quick-search li a h3 {
  display: block;
  font-weight: bold;
  color: #15305d;
}
#app-banner .company{
  text-align: left;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app-banner .mod-link-row a h4{
  font-weight: normal;
  font-size: 14px;
}
#app-banner .mod-banner-col h4:first-child{
  margin-bottom: 17px;
}
#app-banner .swiper-slide a h5{
  font-weight: normal;
  margin-top: 10px;
  font-weight: normal;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#app-banner .mod-link-col li a h4{
  font-size: 14px;
  font-weight: normal;
}