@charset "UTF-8";
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute; }

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto; }

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-initial {
  top: 0 !important; }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0; }

/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-initial {
  left: -40px !important; }

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0; }

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms; }

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg); }
  75% {
    transform: rotate(2deg); }
  100% {
    transform: rotate(0); } }
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms; }

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms; }

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #fff;
  border: 2px solid #bbb;
  border-radius: 4px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: #333;
  padding: 6px 14px; }

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #fff;
  left: 0px;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #fff;
  left: -3px;
  top: 0px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #fff;
  left: 3px;
  top: 0px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #fff;
  left: 0px;
  top: -3px; }

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #bbb; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #bbb; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #bbb; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #bbb; }

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px; }

/* Slider */
#top-slider .slick-prev,
#top-slider .slick-next
{
    width: 40px !important;
    height: 40px !important;
}

#top-slider .slick-prev:before,
#top-slider .slick-next:before
{
    font-size: 40px !important;
    color: #32bbb7 !important;
}
#top-slider .slick-prev{
	z-index:1;
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.jq-ry-container {
  position: relative;
  padding: 0 5px;
  line-height: 0;
  display: block;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.jq-ry-container[readonly="readonly"] {
  cursor: default; }

.jq-ry-container > .jq-ry-group-wrapper {
  position: relative;
  width: 100%; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group {
  position: relative;
  line-height: 0;
  z-index: 10;
  white-space: nowrap; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group > svg {
  display: inline-block; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-normal-group {
  width: 100%; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group {
  width: 0;
  z-index: 11;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

.vartical-nav {
  position: fixed;
  background: #48485A; }
  .vartical-nav .nav-inner {
    position: relative;
    height: 100%; }
  .vartical-nav .vartical-nav-user {
    height: 70px; }
  .vartical-nav .vartical-nav-user .shop-name {
    word-break: break-all; }
  .vartical-nav .head-label {
    line-height: 50px;
    padding: 0 20px;
    color: rgba(230, 239, 255, 0.4);
    font-size: 12px; }
  .vartical-nav .head-label　img {
    vertical-align: middle; }
  .vartical-nav a {
    border: none; }
  .vartical-nav .spacer {
    display: inline-block;
    width: 18px; }
  .vartical-nav .vartical-bottom-navi {
    position: absolute;
    left: 20px;
    bottom: 60px; }
    .vartical-nav .vartical-bottom-navi a {
      padding: 0;
      height: 60px;
      display: block; }
  .vartical-nav .btn-bottom {
    text-indent: -9999px;
    background-image: url(/images/client/bnr.png);
    width: 185px;
    margin-bottom: 10px; }
  .vartical-nav .btn-manual {
    background-position: 0 0; }
    .vartical-nav .btn-manual:hover {
      background-position: -185px 0; }
  .vartical-nav .btn-casting {
    background-position: 0 -60px; }
    .vartical-nav .btn-casting:hover {
      background-position: -185px -60px; }
  .vartical-nav .btn-guideline {
    background-position: 0 -120px; }
    .vartical-nav .btn-guideline:hover {
      background-position: -185px -120px; }

header .icon-cc {
  background: url(/images/client/icon_cc.png) no-repeat;
  width: 22px;
	/*height: 24px;*/
  height: 32px;
  display: inline-block;
  vertical-align: middle; }

.login-after-wrapper {
  background-color: #fff;
  font-size: 14px; }
  .login-after-wrapper .login-after-inner {
    width: 975px;
    margin: 0 auto;
    padding: 30px 0; }
  .login-after-wrapper .heading-ttl {
    margin-bottom: 30px; }
  .login-after-wrapper .table-cast-attract {
    width: 100%;
    border: solid 1px #f3f3f2;
    margin-bottom: 30px; }
    .login-after-wrapper .table-cast-attract th {
      background-color: #f3f3f3;
      padding: 10px 20px;
      position: relative;
      border: solid 1px #fff;
      text-align: left;
      width: 33.3%; }
      .login-after-wrapper .table-cast-attract th .btn-index {
        display: inline-block;
        background-color: #32bbb7;
        color: #fff;
        line-height: 20px;
        padding: 0 16px;
        border-radius: 4px;
        position: absolute;
        top: 10px;
        right: 20px; }
        .login-after-wrapper .table-cast-attract th .btn-index:hover {
          text-decoration: none;
          opacity: 0.8; }
      .login-after-wrapper .table-cast-attract th:first-child {
        border-left: #f3f3f3; }
      .login-after-wrapper .table-cast-attract th:last-child {
        border-right: #f3f3f3;
        width: 33.4%; }
    .login-after-wrapper .table-cast-attract td {
      padding: 20px;
      padding-right: 0;
      border: solid 1px #f3f3f3;
      text-align: left; }
      .login-after-wrapper .table-cast-attract td ul {
        margin: 0;
        padding: 0; }
        .login-after-wrapper .table-cast-attract td ul:before, .login-after-wrapper .table-cast-attract td ul:after {
          content: "";
          display: table; }
        .login-after-wrapper .table-cast-attract td ul:after {
          clear: both; }
        .login-after-wrapper .table-cast-attract td ul li {
          list-style-type: none; }
          .login-after-wrapper .table-cast-attract td ul li a {
            display: block;
            float: left;
            width: 95px;
            height: 95px; }
            .login-after-wrapper .table-cast-attract td ul li a:hover {
              opacity: 0.8; }
  .login-after-wrapper .btn-more {
    background-color: #f3f3f3;
    line-height: 24px;
    border-radius: 4px;
    display: inline-block;
    padding: 0 20px;
    color: #888; }
    .login-after-wrapper .btn-more:hover {
      background-color: #32bbb7;
      color: #fff;
      text-decoration: none; }
  .login-after-wrapper .home-offer {
    width: 905px;
    margin: 0 auto 20px; }
    .login-after-wrapper .home-offer:before, .login-after-wrapper .home-offer:after {
      content: "";
      display: table; }
    .login-after-wrapper .home-offer:after {
      clear: both; }
    .login-after-wrapper .home-offer .left {
      width: 437px;
      float: left; }
    .login-after-wrapper .home-offer .right {
      width: 437px;
      float: right; }
  .login-after-wrapper .btn-image:hover {
    opacity: 0.8; }
  .login-after-wrapper .block-offer-wrap {
    background-color: #fbf9f0;
    padding: 40px;
    margin-bottom: 40px; }
    .login-after-wrapper .block-offer-wrap h2 {
      margin-bottom: 20px; }
    .login-after-wrapper .block-offer-wrap .sub {
      text-align: center;
      margin-bottom: 40px; }
    .login-after-wrapper .block-offer-wrap ul {
      margin: 0;
      padding: 0; }
      .login-after-wrapper .block-offer-wrap ul:before, .login-after-wrapper .block-offer-wrap ul:after {
        content: "";
        display: table; }
      .login-after-wrapper .block-offer-wrap ul:after {
        clear: both; }
      .login-after-wrapper .block-offer-wrap ul li {
        list-style-type: none; }
        .login-after-wrapper .block-offer-wrap ul li a {
          display: block;
          float: left;
          width: 208px;
          margin-right: 20px; }
          .login-after-wrapper .block-offer-wrap ul li a .title {
            line-height: 40px;
            text-align: center;
            text-decoration: none;
            color: #555; }
            .login-after-wrapper .block-offer-wrap ul li a .title:hover {
              text-decoration: underline; }
        .login-after-wrapper .block-offer-wrap ul li:last-child a {
          margin-right: 0; }
  .login-after-wrapper .home-info {
    margin-bottom: 40px; }
    .login-after-wrapper .home-info .info-block-wrap {
      margin-bottom: 20px;
      line-height: 20px; }
      .login-after-wrapper .home-info .info-block-wrap:before, .login-after-wrapper .home-info .info-block-wrap:after {
        content: "";
        display: table; }
      .login-after-wrapper .home-info .info-block-wrap:after {
        clear: both; }
      .login-after-wrapper .home-info .info-block-wrap .date {
        width: 120px;
        float: left; }
      .login-after-wrapper .home-info .info-block-wrap .info-label {
        width: 75px;
        float: left;
        background-color: #464646;
        color: #fff;
        text-align: center;
        margin-right: 20px;
        line-height: 20px; }
      .login-after-wrapper .home-info .info-block-wrap .link {
        padding-left: 210px; }
        .login-after-wrapper .home-info .info-block-wrap .link a {
          color: #555;
          text-decoration: none; }
          .login-after-wrapper .home-info .info-block-wrap .link a:hover {
            text-decoration: underline; }

.home-catch-block {
  background-image: url(/images/client/home/background.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  height: 340px;
  margin-top: -20px; }
  .home-catch-block .inner {
    width: 975px;
    margin: 0 auto;
    padding-top: 20px; }

.login-after-main {
  background: url(/images/client/background.png);
  background-position: center top;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  margin-top: -20px;
  height: 460px; }
  .login-after-main .login-after-main-inner {
    width: 840px;
    margin: 0 auto;
    overflow: hidden; }
    .login-after-main .login-after-main-inner .heading-main {
      font-size: 21px;
      text-align: center;
      margin: 30px 0; }
    .login-after-main .login-after-main-inner .left-content {
      float: left;
      width: 400px; }
    .login-after-main .login-after-main-inner .right-content {
      float: right;
      width: 400px; }
    .login-after-main .login-after-main-inner .main-top-select .img-wrap {
      margin-bottom: 10px; }
    .login-after-main .login-after-main-inner .main-top-select img {
      width: 100%; }
    .login-after-main .login-after-main-inner .btn-recruit {
      display: block;
      width: 400px;
      height: 64px;
      text-indent: -9999px;
      background-image: url(/images/client/login-after/btn.png);
      background-position: 0 0;
      margin-bottom: 20px;
      background-size: 800px 128px; }
      .login-after-main .login-after-main-inner .btn-recruit:hover {
        background-position: 0 -64px; }
    .login-after-main .login-after-main-inner .btn-designation {
      display: block;
      width: 400px;
      height: 64px;
      text-indent: -9999px;
      background-image: url(/images/client/login-after/btn.png);
      background-position: -400px 0;
      margin-bottom: 20px;
      background-size: 800px 128px; }
      .login-after-main .login-after-main-inner .btn-designation:hover {
        background-position: -400px -64px; }

.login-after-info {
  padding-top: 30px;
  background: #fff; }
  .login-after-info .inner {
    width: 840px;
    margin: 0 auto;
    padding: 0 0 50px;
    overflow: hidden;
    text-align: center;
    font-size: 11px; }
  .login-after-info .float-wrap {
    display: table;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: solid 1px #E4E0E1; }
  .login-after-info .info-icon {
    width: 44px;
    display: table-cell;
    vertical-align: middle; }
  .login-after-info .heading-info {
    font-size: 16px;
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
    text-align: left; }
  .login-after-info .info-block {
    border-bottom: solid 1px #E4E0E1;
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    text-align: left; }
  .login-after-info .img-wrap {
    float: left;
    width: 80px; }

.login-after-btn .btn-designation:hover {
  background-position: -410px -64px; }

.vartical-nav .bottom-navi {
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px; }

.footer-client {
  margin-left: 100px; }
  .footer-client .bg-white {
    background: #fff; }
  .footer-client .inner {
    width: 840px;
    margin: 0 auto;
    padding: 10px 0 50px; }
  .footer-client .heading-footer {
    font-size: 20px;
    text-align: center;
    padding: 20px 0; }
  .footer-client .heading-footer-sub {
    background: #14bbb9;
    color: #fff;
    text-align: center;
    padding: 4px 0;
    font-size: 14px; }
  .footer-client .img-wrap-flow {
    margin-bottom: 30px;
    width: 840px; }
    .footer-client .img-wrap-flow img {
      width: 100%; }
  .footer-client .footer-head {
    background: #E2E2E2; }
    .footer-client .footer-head:before, .footer-client .footer-head:after {
      content: "";
      display: table; }
    .footer-client .footer-head:after {
      clear: both; }
    .footer-client .footer-head .inside {
      width: 975px;
      margin: 0 auto;
      padding: 32px 0;
      overflow: hidden;
      position: relative; }
      .footer-client .footer-head .inside:before, .footer-client .footer-head .inside:after {
        content: "";
        display: table; }
      .footer-client .footer-head .inside:after {
        clear: both; }
    .footer-client .footer-head .logo {
      display: block;
      width: 243px;
      height:24px;
      float: left; }
      .footer-client .footer-head .logo img {
        display: block;
        width: 100%; }
    .footer-client .footer-head-navi {
      margin-bottom: 0;
      padding-left: 0;
      position: absolute;
      right: 0;
      top: 0; }
      .footer-client .footer-head-navi li {
        list-style: none;
        display: inline-block;
        line-height: 60px;
        font-size: 12px; }
        .footer-client .footer-head-navi li a {
          display: inline-block;
          font-size: 12px;
          padding:16px;
          color: #333;
          font-weight: normal; }
  .footer-client .footer-navi {
    overflow: hidden;
    color: #f6f6f6; }
    .footer-client .footer-navi .inside {
      width: 975px;
      margin: 0 auto;
      padding: 20px 0;
      overflow: hidden;
		/*3.26追加↓*/
	  line-height: 2;
		/*3.26追加↑*/}
    .footer-client .footer-navi .navi-list a {
      color: #48485a; }
      .footer-client .footer-navi .navi-list a:hover {
        text-decoration: underline; }
    .footer-client .footer-navi .left-navi {
      float: left;
      width: 160px;
      margin-right: 20px; }
    .footer-client .footer-navi .middle-navi {
      float: left;
      width: 160px;
      margin-right: 20px; }
    .footer-client .footer-navi .right-navi {
      float: left;
      width: 160px; }
    .footer-client .footer-navi .btn-navi {
      overflow: hidden;
      float: right;
      width: 250px; }
      .footer-client .footer-navi .btn-navi .btn-left {
        display: block;
        float: left;
        background: url(/images/client/bnr2.png);
        background-size: 250px 176px;
        background-position: 0 0;
        width: 250px;
        height: 88px;
        text-indent: -9999px; }
        .footer-client .footer-navi .btn-navi .btn-left:hover {
          background-position: 0 -88px; }
      .footer-client .footer-navi .btn-navi .btn-right {
        display: block;
        float: right;
        background: url(/images/client/bnr.png);
        background-size: 400px 128px;
        background-position: -200px 0;
        width: 200px;
        height: 64px;
        text-indent: -9999px; }
        .footer-client .footer-navi .btn-navi .btn-right:hover {
          background-position: -200px -64px; }
  .footer-client .bottom-navi a {
    padding: 0;
    height: 100px;
    display: block;
    float: left;
    margin-right: 20px;
    margin-bottom: 30px; }
    .footer-client .bottom-navi a:last-child {
      margin-right: 0; }
  .footer-client .btn-bottom {
    text-indent: -9999px;
    background-image: url(/images/client/bnr.png);
    width: 410px;
    height: 100px;
    margin-bottom: 10px; }
  .footer-client .btn-manual {
    background-position: 0 0; }
    .footer-client .btn-manual:hover {
      background-position: 0 -100px; }
  .footer-client .btn-casting {
    background-position: -410px 0; }
    .footer-client .btn-casting:hover {
      background-position: -410px -100px; }
  .footer-client .inner-bottom {
    background: #48485a;
    /*background: #111120;*/
    color: #fff; }
    .footer-client .inner-bottom .inside {
      width: 975px;
      margin: 0 auto;
      height: 44px;
      position: relative; }
    .footer-client .inner-bottom ul {
      margin-bottom: 0;
      padding-left: 0; }
    .footer-client .inner-bottom li {
      list-style: none;
      display: inline-block;
      line-height: 45px;
      font-size: 12px; }
    .footer-client .inner-bottom li:after{
        content: '|';
        color: #fff;}
    .footer-client .inner-bottom li:last-child:after{
        content: none;}

      .footer-client .inner-bottom li a {
        display: inline-block;
        color: #fff;
        font-size: 12px;
        padding: 0 10px; }
    .footer-client .inner-bottom .copyright {
      position: absolute;
      right: 0;
      top: 15px; }


.clearfix {
  display: inline-table;
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }

.header-navi {
  margin-bottom: 0;
  padding-left: 0;
  position: absolute;
  right: 20px;
  top: -3px; }
  .header-navi li {
    list-style: none;
    display: inline-block;
    line-height: 45px;
    font-size: 12px; }
    .header-navi li a {
      display: inline-block;
      font-size: 12px;
      padding: 0 10px;
      color: #333;
      font-weight: normal; }

.header-client-bottom {
  background: #fff;
  border-bottom: solid 1px #ddd;
  margin-bottom: 30px;
  margin-top: -20px; }
  .header-client-bottom .inner {
    padding: 60px 60px 30px; }
  .header-client-bottom .left {
    width: 520px;
    float: left;
    margin-bottom: 20px; }
    .header-client-bottom .left a {
      cursor: pointer; }
      .header-client-bottom .left a:hover {
        opacity: 0.9; }
  .header-client-bottom .right {
    float: left; }
    .header-client-bottom .right .attention {
      float: left;
      width: 40px; }
    .header-client-bottom .right .attention-list li {
      list-style: none;
      font-size: 12px;
      color: #666; }
    .header-client-bottom .right .links {
      color: #80cced;
      width: 450px;
      text-align: center;
      padding-top: 20px; }
      .header-client-bottom .right .links a {
        color: #80cced; }

.form.search {
  padding: 20px 10px 10px; }
  .form.search:before, .form.search:after {
    content: "";
    display: table; }
  .form.search:after {
    clear: both; }
  .form.search table td {
    box-sizing: border-box;
    padding: 10px 10px;
    vertical-align: top; }
    .form.search table td.narrow {
      border-right: solid 1px #ddd;
      vertical-align: middle; }
    .form.search table td.wide {
      width: 60%;
      vertical-align: middle;
      padding-left: 20px; }
      .form.search table td.wide p {
        padding-top: 12px; }
  .form.search .count {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0; }
    .form.search .count span {
      font-weight: normal;
      font-size: 12px; }

.form-grey {
  background: #efefef;
  border: solid 1px #ccc;
  border-radius: 3px;
  padding: 5px 24px 5px 10px; }

.table-job th,
.table-subscriber th,
.table-message th {
  font-weight: bold;
  text-align: center; }
.table-job td,
.table-subscriber td,
.table-message td {
  text-align: center; }
  .table-job td.text-left,
  .table-subscriber td.text-left,
  .table-message td.text-left {
    text-align: left; }
.table-job .icon-status,
.table-subscriber .icon-status,
.table-message .icon-status {
  display: block;
  width: 64px;
  height: 18px;
  margin: 0 auto;
  text-indent: -9999px; }
  .table-job .icon-status.approval,
  .table-subscriber .icon-status.approval,
  .table-message .icon-status.approval {
    background: url(/images/client/icon_appd.png) no-repeat; }
  .table-job .icon-status.applying,
  .table-subscriber .icon-status.applying,
  .table-message .icon-status.applying {
    background: url(/images/client/icon_applying.png) no-repeat; }
  .table-job .icon-status.withdraw,
  .table-subscriber .icon-status.withdraw,
  .table-message .icon-status.withdraw {
    background: url(/images/client/icon_cancel.png) no-repeat; }
  .table-job .icon-status.denial,
  .table-subscriber .icon-status.denial,
  .table-message .icon-status.denial {
    background: url(/images/client/icon_denial.png) no-repeat; }
.table-job a img:hover,
.table-subscriber a img:hover,
.table-message a img:hover {
  opacity: 0.9; }

.contact-block {
  background: #32bbb7;
  margin: 0 -20px;
  padding-bottom: 1px; }
  .contact-block .arrow {
    background: url(/images/client/arrow_contact.png) no-repeat;
    width: 40px;
    height: 12px;
    margin: 0 auto; }
  .contact-block .descript {
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 15px; }
  .contact-block .btn-contact {
    display: block;
    width: 400px;
    height: 48px;
    margin: 0 auto 30px; }
    .contact-block .btn-contact:hover {
      opacity: 0.9; }

.btn-white {
  border: solid 1px #999;
  color: #444;
  background: #fff; }
  .btn-white:hover {
    background: #ededed; }

.btn-green {
  background: #32bbb7;
  color: #fff; }
  .btn-green:hover {
    background: #2ba29e;
    color: #fff; }

.btn-black {
  background: #333;
  color: #fff; }
  .btn-black:hover {
    background: #666;
    color: #fff; }

.btn-pink {
  background: #ff5c99;
  color: #fff; }
  .btn-pink:hover {
    background: #e64f87;
    color: #fff; }

.btn-kodawari {
  background: url(/images/client/btn_kodawari.png) no-repeat;
  width: 200px;
  height: 30px;
  cursor: pointer;
  top: 34px;
  right: 34px; }
  .btn-kodawari.active {
    background: url(/images/client/btn_kodawari_close.png) no-repeat;
    width: 210px;
    height: 50px;
    cursor: pointer; }
  .btn-kodawari:hover {
    opacity: 0.8; }

.btn-search-big {
  background: #32bbb7;
  width: 400px;
  line-height: 38px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none; }
  .btn-search-big:hover {
    opacity: 0.8;
    color: #fff;
    cursor: pointer;
    text-decoration: none; }

.btn-pink-border {
  display: block;
  border: solid 1px #FC5F99;
  color: #FC5F99;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  width: 120px;
  height: 38px;
  box-sizing: border-box;
  line-height: 38px;
  font-size: 13px !important; }
  .btn-pink-border:hover {
    background: #ededed;
    text-decoration: none;
    color: #FC5F99; }
  .btn-pink-border:focus {
    text-decoration: none;
    color: #FC5F99; }

.btn-pink-back {
  display: block;
  border: solid 1px #FC5F99;
  color: #fff;
  background: #FC5F99;
  text-align: center;
  border-radius: 4px;
  width: 120px;
  height: 38px;
  box-sizing: border-box;
  line-height: 38px;
  font-size: 13px !important; }
  .btn-pink-back:hover {
    background: #e64f87;
    text-decoration: none;
    color: #fff; }
  .btn-pink-back:focus {
    text-decoration: none;
    color: #fff; }

.btn-pink-inline {
  display: inline-block;
  border: solid 1px #FC5F99;
  color: #fff;
  background: #FC5F99;
  text-align: center;
  border-radius: 4px;
  padding: 0 12px;
  height: 38px;
  box-sizing: border-box;
  line-height: 38px;
  font-size: 13px !important; }
  .btn-pink-inline:hover {
    background: #e64f87;
    text-decoration: none;
    color: #fff; }
  .btn-pink-inline:focus {
    text-decoration: none;
    color: #fff; }

.btn-message {
  border: solid 1px #FC5F99;
  color: #FC5F99;
  background: #fff;
  padding: 8px;
  border-radius: 4px; }
  .btn-message:hover {
    background: #ededed;
    text-decoration: none; }

.modal-header {
  background: #fff;
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
  color: #333;
  font-size: 15px; }

/* .modal-footer{
  background: #f5f5f5;
  padding: 15px 30px;
  display: flex;
  align-items: center;
}

.modal-footer > div{

} */
.modal-footer > div.margin-left-auto{
  margin-left: auto;
}

.modal-footer .btn-send{
  margin-left: 0;
}
/* .modal-footer .btn-confirm,
.modal-footer .btn-pink
{
  color: #fff;
  background-color: #32bbb7;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  min-width: 160px;
  display: block;
  border-radius: 4px;
  border: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
} */

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #FFF;
  cursor: default;
  background-color: #32bbb7;
  border-color: #32bbb7; }

.modal-model-img {
  padding: 20px;
  border-bottom: solid 1px #ddd;
  text-align: center; }
  .modal-model-img img {
    height: 200px; }
  .modal-model-img .name {
    text-align: center; }

.modal-model-sf-wrap {
  width: 100%; }
  .modal-model-sf-wrap p {
    text-align: center;
    width: 100%; }
  .modal-model-sf-wrap .select-wrap {
    width: 220px;
    margin: 20px auto; }
  .modal-model-sf-wrap .pre-caution-wrap table {
    width: 600px;
    margin: 0 auto; }
    .modal-model-sf-wrap .pre-caution-wrap table ul li {
      list-style: none;
      color: #cc0000; }

.left-nav-wrap {
  padding: 15px 10px 0;
  border-bottom: solid 1px #2E2E3C; }
  .left-nav-wrap .btn-green {
    display: block;
    text-indent: -9999px;
    margin-bottom: 15px; }
    .left-nav-wrap .btn-green:hover {
      opacity: 0.8; }
    .left-nav-wrap .btn-green.bosyu {
      background: url(/images/client/pc/side_btn_bosyu.png) no-repeat;
      background-size: 205px 38px; }
    .left-nav-wrap .btn-green.shimei {
      background: url(/images/client/pc/side_btn_shimei.png) no-repeat;
      background-size: 205px 38px; }
.left-nav-link li a {
  border-bottom: solid 1px #2E2E3C;
  height: 50px; }
ul.left-nav-link li a{
  padding: 4px 0;
  height: 100px;
  text-align: center; }
  ul.left-nav-link li a span{
    position: relative;
    top: 14px;  }
    ul.left-nav-link li a span:before{
      font-size: 22px; }
.left-nav-link li.cast a {
  background: url(/images/client/pc/side_btn_cast.png) no-repeat;
  background-size: 225px 50px;
  text-indent: -9999px; }
  .left-nav-link li.cast a:hover, .left-nav-link li.cast a.active {
    background: url(/images/client/pc/side_btn_cast_active.png) no-repeat;
    background-size: 225px 50px; }
.left-nav-link li.anken a {
  background: url(/images/client/pc/side_btn_anken.png) no-repeat;
  background-size: 225px 50px;
  text-indent: -9999px; }
  .left-nav-link li.anken a:hover, .left-nav-link li.anken a.active {
    background: url(/images/client/pc/side_btn_anken_active.png) no-repeat;
    background-size: 225px 50px; }
.left-nav-link li.message a {
  background: url(/images/client/pc/side_btn_message.png) no-repeat;
  background-size: 225px 50px;
  text-indent: -9999px; }
  .left-nav-link li.message a:hover, .left-nav-link li.message a.active {
    background: url(/images/client/pc/side_btn_message_active.png) no-repeat;
    background-size: 225px 50px; }
.left-nav-link li.kessai a {
  background: url(/images/client/pc/side_btn_kessai.png) no-repeat;
  background-size: 225px 50px;
  text-indent: -9999px; }
  .left-nav-link li.kessai a:hover, .left-nav-link li.kessai a.active {
    background: url(/images/client/pc/side_btn_kessai_active.png) no-repeat;
    background-size: 225px 50px; }
.left-nav-outer {
  height: 500px;
  overflow: auto; }
.left-nav-head {
  color: #fff;
  font-size: 12px;
  margin-bottom: 5px; }
.left-nav-list li:hover a {
  color: #596167 !important; }
.left-nav-list li a {
  display: block;
  background: #EFEFEF !important;
  font-size: 12px;
  color: #596167;
  text-decoration: none;
  height: 46px !important;
  line-height: 46px !important;
  border-bottom: solid 2px #a1a2a6;
  margin-bottom: 0;
  position: relative; }
  .left-nav-list li a:hover, .left-nav-list li a.active {
    background: #26BBB8 !important;
    color: #fff !important; }
.left-nav-list li.list-accordion-head a .icon-shevron {
  display: block;
  background: url(/images/client/pc/icon_shevron_down.png) no-repeat;
  background-size: 10px 7px;
  position: absolute;
  width: 10px;
  height: 7px;
  right: 20px;
  top: 19px; }
.left-nav-list li.list-accordion-head.visible a .icon-shevron {
  display: block;
  background: url(/images/client/pc/icon_shevron_up.png) no-repeat;
  background-size: 10px 7px;
  position: absolute;
  width: 10px;
  height: 7px;
  right: 20px;
  top: 19px; }
.left-nav-list li.list-accordion-head .child li a:hover {
  background: #26BBB8 !important;
  color: #fff !important; }
.left-nav-list li .child {
  display: none; }
  .left-nav-list li .child.visible {
    display: block; }
  .left-nav-list li .child li {
    color: #596167 !important; }
    .left-nav-list li .child li:last-child {
      border-bottom: solid 1px #a1a2a6 !important; }
    .left-nav-list li .child li a {
      color: #596167 !important;
      background: #fff !important;
      padding-left: 40px;
      height: 36px !important;
      line-height: 36px !important;
      border-bottom: solid 1px #a1a2a6; }
      .left-nav-list li .child li a:hover, .left-nav-list li .child li a.active {
        background: #26BBB8 !important;
        color: #fff !important; }

.btn-side-settlement {
  margin-top: 10px;
  display: block;
  height: 46px !important;
  border: solid 2px #fff !important;
  box-sizing: border-box;
  line-height: 44px !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background: transparent !important;
  text-decoration: none;
  margin-bottom: 50px; }
  .btn-side-settlement:hover, .btn-side-settlement.active {
    background: #26BBB8 !important;
    border: solid 2px #26BBB8 !important;
    text-decoration: none; }

.vartical-nav-bottom {
  position: absolute;
  bottom: 0; }

.search-checkbox-list-wrap {
  border-bottom: 1px solid #dddddd;
  padding: 10px; }
  .search-checkbox-list-wrap .heading {
    margin-bottom: 5px;
    font-weight: bold; }
  .search-checkbox-list-wrap label {
    font-weight: normal;
    display: inline-block;
    width: 200px;
    margin: 10px; }

.search-btn-wrap {
  text-align: center;
  padding: 20px 0; }

.search-content-tag-wrap {
  background: #f6f6f6;
  padding: 10px; }
  .search-content-tag-wrap .btn-inline {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer; }

.search-block-wrap {
  width: 975px;
  margin: 0 auto; }
  .search-block-wrap:before, .search-block-wrap:after {
    content: "";
    display: table; }
  .search-block-wrap:after {
    clear: both; }
  .search-block-wrap .search-pagenation-right {
    float: right;
    width: 400px; }

.search-result-number {
  font-size: 18px;
  font-weight: bold;
  color: #f55e5e;
  float: left;
  width: 500px; }
  .search-result-number span {
    font-size: 12px;
    color: #333; }

.talent-block-wrap {
  width: 975px;
  margin: 0 auto; }
  .talent-block-wrap .talent-block-inner {
    width: 993px;
    margin-left: -9px; }
  .talent-block-wrap .talent-list-wrap {
    margin: 0 !important;
    padding: 0 !important; }
    .talent-block-wrap .talent-list-wrap:before, .talent-block-wrap .talent-list-wrap:after {
      content: "";
      display: table; }
    .talent-block-wrap .talent-list-wrap:after {
      clear: both; }
    .talent-block-wrap .talent-list-wrap li {
      list-style-type: none;
      margin: 9px;
      width: 230px;
      -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
      -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
      float: left;
      border-radius: 4px; }
      .talent-block-wrap .talent-list-wrap li a.top-block {
        display: block; }
        .talent-block-wrap .talent-list-wrap li a.top-block:hover {
          text-decoration: none; }
          .talent-block-wrap .talent-list-wrap li a.top-block:hover .img-liquid {
            opacity: 0.9; }
          .talent-block-wrap .talent-list-wrap li a.top-block:hover .talent-data .talent-name {
            color: #ff5c99;
            text-decoration: none; }
          .talent-block-wrap .talent-list-wrap li a.top-block:hover .talent-data .talent-tags {
            text-decoration: none; }
        .talent-block-wrap .talent-list-wrap li a.top-block .img-liquid {
          width: 230px;
          height: 180px;
          text-align: center;
          border-top-left-radius: 4px;
          border-top-right-radius: 4px;
          overflow: hidden; }
        .talent-block-wrap .talent-list-wrap li a.top-block .talent-data {
          background: #fff;
          padding: 20px 20px 10px; }
          .talent-block-wrap .talent-list-wrap li a.top-block .talent-data .talent-name {
            font-size: 18px;
            text-align: center;
            margin-bottom: 12px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-weight: bold; }
          .talent-block-wrap .talent-list-wrap li a.top-block .talent-data .talent-tags {
            color: #333;
            font-size: 11px;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-weight: bold;
            font-weight: normal; }
      .talent-block-wrap .talent-list-wrap li a.bottom-link {
        display: block;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        text-align: center;
        line-height: 40px;
        color: #777;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none; }
        .talent-block-wrap .talent-list-wrap li a.bottom-link:hover {
          color: #fff;
          background: #ff5c99; }

.table-common-wrap {
  width: 975px;
  margin: 0 auto; }

.label-settlement-01 {
  display: block;
  background: #E6F1FC;
  color: #0073DA;
  line-height: 18px;
  font-size: 12px;
  width: 90px;
  text-align: center;
  border-radius: 4px; }
.label-settlement-02 {
  display: block;
  background: #0073DA;
  color: #E6F1FC;
  line-height: 18px;
  font-size: 12px;
  width: 90px;
  text-align: center;
  border-radius: 4px; }

.bread-crumb-block {
  margin-bottom: 30px; }
  .bread-crumb-block ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px; }
    .bread-crumb-block ul li a {
      color: #32bbb7; }

.freeword-block {
  margin-bottom: 30px;
  position: relative; }
  .freeword-block:before, .freeword-block:after {
    content: "";
    display: table; }
  .freeword-block:after {
    clear: both; }
  .freeword-block .left-block {
    float: left;
    padding-right: 220px;
    display: block;
    width: 100%; }
  .freeword-block .right-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px; }
    .freeword-block .right-block p {
      color: #777;
      padding-top: 10px; }
    .freeword-block .right-block .btn-like {
      margin-bottom: 5px;
      width:auto;
      height:auto;
      border:none;
      background: #fff; }
      .freeword-block .right-block .btn-like img {
        display: block;
        width: 100%;
        background: #fff;}
      .freeword-block .right-block .btn-like:hover img {
        opacity: 0.9;
        background: #fff;
        cursor:pointer; }
.freeword-head {
  background: #48485A;
  color: #fff;
  line-height: 30px;
  width: 100%;
  padding: 0 20px;
  font-size: 14px; }
.freeword-content {
  border: solid 1px #48485A;
  background: #fff;
  padding: 10px;
  position: relative; }
.freeword-input {
  padding-right: 145px;
  width: 100%; }
  .freeword-input input {
    width: 100%;
    padding: 0 6px;
    line-height: 40px;
    border: solid 1px #C8C9CA;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
.freeword-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  line-height: 36px;
  background: #32bbb7;
  border: none;
  text-align: center;
  display: block;
  width: 120px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 4px; }
  .freeword-btn:hover {
    opacity: 0.8; }

.search-tab {
  margin-bottom: 0;
  margin-left: -40px;
  z-index: -1; }
  .search-tab li {
    list-style: none;
    display: inline-block;
    margin-right: 6px; }
    .search-tab li.active a {
      display: inline-block;
      line-height: 32px;
      color: #32bbb7;
      font-size: 14px;
      font-weight: bold;
      padding: 0 30px;
      background: #fff;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      box-sizing: border-box;
      box-shadow: -1px -3px 8px -5px #cacaca;
      -moz-box-shadow: -1px -3px 8px -5px #cacaca;
      -webkit-box-shadow: -1px -3px 8px -5px #cacaca;
      text-decoration: none; }
      .search-tab li.active a:hover {
        text-decoration: none; }
    .search-tab li a {
      display: inline-block;
      line-height: 32px;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      padding: 0 30px;
      background: #32bbb7;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px; }
      .search-tab li a:hover {
        display: inline-block;
        line-height: 32px;
        color: #32bbb7;
        font-size: 14px;
        font-weight: bold;
        padding: 0 30px;
        background: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        box-sizing: border-box;
        box-shadow: -1px -3px 8px -5px #cacaca;
        -moz-box-shadow: -1px -3px 8px -5px #cacaca;
        -webkit-box-shadow: -1px -3px 8px -5px #cacaca;
        text-decoration: none; }

.tab__head--wrap {
  z-index: 5;
  position: relative; }
.tab__content {
  display: none; }
  .tab__content--wrap {
    position: relative; }
  .tab__content.active {
    display: block; }

.accordion__head--01 {
  display: block !important;
  width: 100%; }

/*.accordion__content {
  display: none; }*/

.accordion__content--02 {
  display: none; }

.search-checkbox-table {
  width: 100%; }
  .search-checkbox-table th {
    white-space: nowrap;
    padding: 12px;
    border-top: dotted 1px #ccc;
    border-bottom: dotted 1px #ccc;
    text-align: left;
    width: 20%;
    font-weight: bold;
    vertical-align: top; }
  .search-checkbox-table td {
    padding: 12px;
    border-top: dotted 1px #ccc;
    border-bottom: dotted 1px #ccc;
    font-weight: normal; }
    .search-checkbox-table td label {
      font-weight: normal; }
    .search-checkbox-table td .pref label {
      width: 6em;
      margin-right: 4px; }
    .search-checkbox-table td .common-label label {
      margin-right: 10px;
      display: inline-block; }

.sort-block-head {
  margin-bottom: 20px;
  font-size: 14px; }
  .sort-block-head .icon-forward {
    display: inline-block;
    width: 12px;
    height: 13px;
    background: url(/images/client/sort_01.png) no-repeat;
    background-size: 12px 13px; }
    .sort-block-head .icon-forward:hover {
      opacity: 0.8; }
  .sort-block-head .icon-reverse {
    display: inline-block;
    width: 12px;
    height: 13px;
    background: url(/images/client/sort_02.png) no-repeat;
    background-size: 12px 13px; }
    .sort-block-head .icon-reverse:hover {
      opacity: 0.8; }

.list-model-block {
  border: solid 1px #ccc;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  margin-bottom: -1px; }
  .list-model-block:before, .list-model-block:after {
    content: "";
    display: table; }
  .list-model-block:after {
    clear: both; }
  .list-model-block .name-number-wrap {
    margin-bottom: 20px; }
    .list-model-block .name-number-wrap:before, .list-model-block .name-number-wrap:after {
      content: "";
      display: table; }
    .list-model-block .name-number-wrap:after {
      clear: both; }
    .list-model-block .name-number-wrap .name {
      float: left;
      /* width: 700px; */
      font-size: 17px;
      font-weight: bold; }
      .list-model-block .name-number-wrap .name a {
        color: #036EB7; }
    .list-model-block .name-number-wrap .number {
      float: right;
      color: #777; }
  .list-model-block .content-wrap:before, .list-model-block .content-wrap:after {
    content: "";
    display: table; }
  .list-model-block .content-wrap:after {
    clear: both; }
  .list-model-block .content-wrap .right-block {
    float: right;
    width: 160px; }
    .list-model-block .content-wrap .right-block .btn-like {
      display: block;
      border: solid 1px #32bbb7;
      border-radius: 4px;
      text-align: center;
      color: #32bbb7;
      background: #fff;
      line-height: 28px;
      font-weight: bold;
      margin-bottom: 10px; }
      .list-model-block .content-wrap .right-block .btn-like:hover {
        background: #32bbb7;
        color: #fff;
        text-decoration: none; }
    .list-model-block .content-wrap .right-block .btn-request {
      display: block;
      border: solid 1px #32bbb7;
      border-radius: 4px;
      text-align: center;
      color: #fff;
      background: #fff;
      line-height: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      background: #32bbb7; }
      .list-model-block .content-wrap .right-block .btn-request:hover {
        opacity: 0.8;
        text-decoration: none; }
  .list-model-block .content-wrap .left-block {
    width: 590px;
    float: left; }
    .list-model-block .content-wrap .left-block .img-wrap {
      width: 100px;
      float: left; }
      .list-model-block .content-wrap .left-block .img-wrap img {
        display: block;
        width: 100%; }
    .list-model-block .content-wrap .left-block .data {
      float: right;
      width: 470px; }
      .list-model-block .content-wrap .left-block .data .wrap {
        margin-bottom: 6px; }
        .list-model-block .content-wrap .left-block .data .wrap:before, .list-model-block .content-wrap .left-block .data .wrap:after {
          content: "";
          display: table; }
        .list-model-block .content-wrap .left-block .data .wrap:after {
          clear: both; }
        .list-model-block .content-wrap .left-block .data .wrap.btn-wrap {
          padding-top: 10px; }
        .list-model-block .content-wrap .left-block .data .wrap .b {
          font-weight: bold; }
        .list-model-block .content-wrap .left-block .data .wrap .star {
          display: inline-block;
          width: 90px;
          vertical-align: middle; }
        .list-model-block .content-wrap .left-block .data .wrap .left-td {
          float: left;
          width: 60%; }
        .list-model-block .content-wrap .left-block .data .wrap .right-td {
          float: right;
          width: 40%; }
        .list-model-block .content-wrap .left-block .data .wrap .tag-wrap {
          display: inline-block; }
        .list-model-block .content-wrap .left-block .data .wrap .tag-quest {
          display: inline-block;
          padding-left: 5px; }
        .list-model-block .content-wrap .left-block .data .wrap .btn-wrap {
          padding-top: 10px; }
        .list-model-block .content-wrap .left-block .data .wrap .btn-profile {
          display: block;
          border: solid 1px #32bbb7;
          border-radius: 4px;
          text-align: center;
          color: #32bbb7;
          background: #fff;
          line-height: 28px;
          font-weight: bold; }
          .list-model-block .content-wrap .left-block .data .wrap .btn-profile:hover {
            background: #32bbb7;
            color: #fff;
            text-decoration: none; }
      .list-model-block .content-wrap .left-block .data .icon-twitter-count {
        background: url(/images/client/icon_twitter_count.png) no-repeat;
        background-size: 16px 16px;
        padding-left: 24px;
        display: inline-block;
        font-weight: bold;
        line-height: 16px;
        margin-right: 20px; }
      .list-model-block .content-wrap .left-block .data .icon-instagram-count {
        background: url(/images/client/icon_instagram_count.png) no-repeat;
        background-size: 16px 16px;
        padding-left: 24px;
        display: inline-block;
        font-weight: bold;
        line-height: 16px;
        margin-right: 20px; }
      .list-model-block .content-wrap .left-block .data dl {
        margin-bottom: 0; }
        .list-model-block .content-wrap .left-block .data dl:before, .list-model-block .content-wrap .left-block .data dl:after {
          content: "";
          display: table; }
        .list-model-block .content-wrap .left-block .data dl:after {
          clear: both; }
        .list-model-block .content-wrap .left-block .data dl dt {
          float: left;
          width: 6em; }
        .list-model-block .content-wrap .left-block .data dl dd {
          padding-left: 4em; }

.fixed-bottom-block{
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
 }
.fixed-bottom-cast {
  width: 350px;
  height: 80px;
  background-color: #000;
  padding: 15px; }
  .fixed-bottom-cast:before, .fixed-bottom-cast:after {
    content: "";
    display: table; }
  .fixed-bottom-cast:after {
    clear: both; }
  .fixed-bottom-cast .count {
    float: left;
    width: 130px;
    color: #fff; }
    .fixed-bottom-cast .count .small {
      text-align: center;
      font-size: 10px; }
    .fixed-bottom-cast .count .big {
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      line-height: 30px; }
  .fixed-bottom-cast .btn-cast-request {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: right;
    width: 190px;
    border: none;
    background: #fff;
    line-height: 50px;
    text-align: center;
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding: 0;
    cursor: pointer; }
    .fixed-bottom-cast .btn-cast-request:hover {
      background: #32bbb7;
      color: #fff; }
.fixed-bottom-wide {
  width: 500px;
  height: 80px;
  background-color: #000;
  padding: 15px; }

.cast-confirm {
  width: 975px;
  margin: 0 auto;
  background: #fff;
  padding: 30px; }
  .cast-confirm .top-flow-navi {
    margin-bottom: 30px; }
  .cast-confirm .top-wrap {
    margin-bottom: 20px; }
    .cast-confirm .top-wrap:before, .cast-confirm .top-wrap:after {
      content: "";
      display: table; }
    .cast-confirm .top-wrap:after {
      clear: both; }
    .cast-confirm .top-wrap .left-block {
      width: auto;
      float: left; }
    .cast-confirm .top-wrap .btn-right {
      padding-top: 40px;
      width: 340px;
      float: right; }
  .cast-confirm .heading-top {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px; }
  .cast-confirm .btn-green-big {
    width: 340px;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: #32bbb7;
    border: 0;
    border-radius: 4px;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0; }
    .cast-confirm .btn-green-big:hover {
      opacity: 0.8;
      text-decoration: none; }
    .cast-confirm .btn-green-big.disabled {
      background: #dedede;
      cursor: default; }
      .cast-confirm .btn-green-big.disabled:hover {
        opacity: 1; }
  .cast-confirm .heading-middle {
    font-weight: bold;
    margin-bottom: 10px; }
  .cast-confirm .status-block {
    padding-left: 20px;
    margin-bottom: 10px; }
    .cast-confirm .status-block .txt-big-red {
      font-size: 18px;
      font-weight: bold;
      color: #ff7671; }
    .cast-confirm .status-block .txt-red {
      color: #ff7671; }
  .cast-confirm .cast-list-wrap {
    margin-bottom: 20px;
    position: relative;
    min-height: 200px; }
    .cast-confirm .cast-list-wrap .table-cast-list {
      width: 100%; }
      .cast-confirm .cast-list-wrap .table-cast-list thead th {
        background-color: #f3f3f3;
        border: solid 1px #ccc;
        text-align: center;
        padding: 10px 0; }
      .cast-confirm .cast-list-wrap .table-cast-list tbody tr.selected {
        background-color: #fcf2f2; }
      .cast-confirm .cast-list-wrap .table-cast-list tbody td {
        border: solid 1px #ccc;
        padding: 10px;
        box-sizing: border-box;
        vertical-align: top; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td.check {
          vertical-align: middle;
          text-align: center;
          width: 6%; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap:before, .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap:after {
          content: "";
          display: table; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap:after {
          clear: both; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap .img-prof {
          width: 100px;
          float: left; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap .img-prof img {
            display: block;
            width: 100%; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap .data-name {
          padding-left: 110px;
          padding-top: 10px; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td .prof-wrap .data-name .name {
            display: inline-block;
            color: #036EB7;
            font-weight: bold;
            text-decoration: underline;
            margin-bottom: 10px;
            font-size: 12px; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .right-td {
          padding-top: 10px; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .left-td {
          padding-top: 10px; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td dl {
          margin-bottom: 5px; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td dl:before, .cast-confirm .cast-list-wrap .table-cast-list tbody td dl:after {
            content: "";
            display: table; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td dl:after {
            clear: both; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td dl dt {
            float: left;
            width: 4em; }
          .cast-confirm .cast-list-wrap .table-cast-list tbody td dl dd {
            padding-left: 4em; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .icon-twitter-count {
          background: url(/images/client/icon_twitter_count.png) no-repeat;
          background-size: 16px 16px;
          padding-left: 24px;
          display: inline-block;
          font-weight: bold;
          line-height: 16px;
          margin-right: 20px; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .icon-instagram-count {
          background: url(/images/client/icon_instagram_count.png) no-repeat;
          background-size: 16px 16px;
          padding-left: 24px;
          display: inline-block;
          font-weight: bold;
          line-height: 16px;
          margin-right: 20px; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td .star {
          display: inline-block;
          width: 90px;
          vertical-align: middle; }
        .cast-confirm .cast-list-wrap .table-cast-list tbody td.delete {
          vertical-align: middle;
          text-align: center;
          width: 6%; }
  .cast-confirm .link-bottom {
    color: #036EB7;
    text-decoration: underline;
    font-weight: bold; }
    .cast-confirm .link-bottom span {
      color: #32bbb7; }
  .cast-confirm .txt-green {
    color: #32bbb7; }
  .cast-confirm #def-html {
    display: table;
    margin: 0 auto; }
  .cast-confirm .btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    margin: 0 auto;
    margin-top: -34px; }
  .cast-confirm .slick-carousel {
    padding-left: 19px; }
    .cast-confirm .slick-carousel li a {
      display: block;
      width: 133px;
      height: 133px; }
  .cast-confirm button.slick-prev.slick-arrow {
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -12px;
    background: url(/images/client/slick_prev.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .cast-confirm button.slick-prev.slick-arrow:active {
      background-color: transparent; }
  .cast-confirm button.slick-next.slick-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -12px;
    background: url(/images/client/slick_next.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .cast-confirm button.slick-next.slick-arrow:active {
      background-color: transparent; }

.top-flow-navi-2 {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px; }

.heading-leftborder {
  line-height: 24px;
  border-left: solid 4px #333;
  padding-left: 10px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px; }

.accordion__content > section {
  display: table;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  width: 100%;
  border-bottom: dotted 1px #ddd; }

.accordion__content > section > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding: 20px; }
  .accordion__content > section > div:first-child {
    width: 33%; }

.accordion__content > section > div .input-group {
  margin-bottom: 0; }

.accordion-add-images {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-add-images:before, .accordion-add-images:after {
    content: "";
    display: table; }
  .accordion-add-images:after {
    clear: both; }
  .accordion-add-images span {
    display: block;
    background: url(/images/client/accordion_head_01.png) no-repeat;
    width: 180px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-add-images.active span {
    display: block;
    background: url(/images/client/accordion_head_01_on.png) no-repeat;
    width: 180px;
    height: 26px; }

.accordion-contract {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-contract:before, .accordion-contract:after {
    content: "";
    display: table; }
  .accordion-contract:after {
    clear: both; }
  .accordion-contract span {
    display: block;
    background: url(/images/client/accordion_head_02.png) no-repeat;
    width: 180px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-contract.active span {
    display: block;
    background: url(/images/client/accordion_head_02_on.png) no-repeat;
    width: 180px;
    height: 26px; }

.accordion-requirement {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-requirement:before, .accordion-requirement:after {
    content: "";
    display: table; }
  .accordion-requirement:after {
    clear: both; }
  .accordion-requirement span {
    display: block;
    background: url(/images/client/accordion_head_03.png) no-repeat;
    width: 180px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-requirement.active span {
    display: block;
    background: url(/images/client/accordion_head_03_on.png) no-repeat;
    width: 180px;
    height: 26px; }

.accordion-area {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-area:before, .accordion-area:after {
    content: "";
    display: table; }
  .accordion-area:after {
    clear: both; }
  .accordion-area span {
    display: block;
    background: url(/images/client/accordion_head_04.png) no-repeat;
    width: 180px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-area.active span {
    display: block;
    background: url(/images/client/accordion_head_04_on.png) no-repeat;
    width: 180px;
    height: 26px; }

.accordion-addpic {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-addpic:before, .accordion-addpic:after {
    content: "";
    display: table; }
  .accordion-addpic:after {
    clear: both; }
  .accordion-addpic span {
    display: block;
    background: url(/images/client/accordion_head_05.png) no-repeat;
    width: 250px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-addpic.active span {
    display: block;
    background: url(/images/client/accordion_head_05_on.png) no-repeat;
    width: 250px;
    height: 26px; }

.accordion-addquest {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-addquest:before, .accordion-addquest:after {
    content: "";
    display: table; }
  .accordion-addquest:after {
    clear: both; }
  .accordion-addquest span {
    display: block;
    background: url(/images/client/accordion_head_06.png) no-repeat;
    width: 250px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-addquest.active span {
    display: block;
    background: url(/images/client/accordion_head_06_on.png) no-repeat;
    width: 250px;
    height: 26px; }

.accordion-editmail {
  text-align: center;
  padding: 20px;
  color: #32bbb7;
  border-bottom: dotted 1px #ddd;
  font-size: 18px; }
  .accordion-editmail:before, .accordion-editmail:after {
    content: "";
    display: table; }
  .accordion-editmail:after {
    clear: both; }
  .accordion-editmail span {
    display: block;
    background: url(/images/client/accordion_head_08.png) no-repeat;
    width: 298px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto; }
  .accordion-editmail.active span {
    display: block;
    background: url(/images/client/accordion_head_08_on.png) no-repeat;
    width: 298px;
    height: 26px; }

section.form.modal-body {
  margin-bottom: 30px; }

  .message__title--top {
  padding: 10px;
  border-bottom: solid 1px #DAD8D6; }
  .message__title--top .head {
    font-weight: bold;
    margin-bottom: 10px; }
  .message__title--top .title {
    font-weight: bold;
    color: #FC9537; }
.message__content--box {
  border: solid 1px #CCCCCC;
  padding: 10px 5px;
  overflow: scroll;
  height: 400px;
  margin-bottom: -1px; }
.message__balloon--wrap {
  max-width: 85%;
  margin-bottom: 16px; }
  .message__balloon--wrap:after {
    content: "";
    display: table;
    clear: both; }
  .message__balloon--wrap.left {
    float: left; }
    .message__balloon--wrap.left .message__balloon--content {
      margin-left: 5px;
      background-color: #ededed; }
      .message__balloon--wrap.left .message__balloon--content .arrow {
        width: 5px;
        height: 15px;
        background-image: url('../../images/model/pc-sf26499eb57.png');
        background-position: -8px 0;
        background-repeat: no-repeat;
        -moz-background-size: 1436.5px auto;
        -o-background-size: 1436.5px auto;
        -webkit-background-size: 1436.5px auto;
        background-size: 1436.5px auto;
        position: absolute;
        top: 5px;
        left: -5px; }
  .message__balloon--wrap.right {
    float: right; }
    .message__balloon--wrap.right .message__balloon--content {
      margin-right: 5px;
      background-color: #FFF3D4; }
      .message__balloon--wrap.right .message__balloon--content .arrow {
        width: 5px;
        height: 15px;
        background-image: url('../../images/model/pc-sf26499eb57.png');
        background-position: -16px 0;
        background-repeat: no-repeat;
        -moz-background-size: 1436.5px auto;
        -o-background-size: 1436.5px auto;
        -webkit-background-size: 1436.5px auto;
        background-size: 1436.5px auto;
        position: absolute;
        top: 5px;
        right: -5px; }
  .message__balloon--wrap .date {
    font-size: 10px;
    color: #999999;
    text-align: center;
    margin-bottom: 5px; }
.message__balloon--content {
  padding: 8px;
  border-radius: 4px;
  position: relative; }
.message__fixed--wrap {
  margin-top: 10px;
  padding: 10px 0 20px;
  background: url('../../images/model/bg_fixed_phrase.png?1486584743') no-repeat;
  background-size: 250px 18px;
  background-position: center bottom 10px;
  background-color: #f7f7f7; }
  .message__fixed--wrap:before, .message__fixed--wrap:after {
    content: "";
    display: table; }
  .message__fixed--wrap:after {
    clear: both; }
.message__fixed--carousel p {
  position:relative;}
.message__fixed--carousel p {
  box-sizing: border-box;
  width: 240px !important;
  left: 0;
  right: 0;
  position: absolute;
  margin: auto;
  height: 5em; }
  .message__fixed--carousel p span {
    height: 5em;
    display: table-cell;
    vertical-align: middle; }
.message .slick-prev {
  left: 5px;
  z-index: 1; }
.message .slick-next {
  right: 5px; }
.message .slick-prev:before, .message .slick-next:before {
  color: #FC9537; }
.message .slick-dots li {
  width: 41px; }
  .message .slick-dots button:before {
    width: 41px; }
.message__textarea--wrap {
  display: flex;
  display: -webkit-flex;
  position: relative;
  background: #f7f7f7; }
  .message__textarea--wrap:before, .message__textarea--wrap:after {
    content: "";
    display: table; }
  .message__textarea--wrap:after {
    clear: both; }
  .message__textarea--wrap .btn__orange--submit {
    border: none;
    border-radius: 4px;
    line-height: 30px;
    text-align: center;
    padding: 0 8px;
    background-color: #FC9537;
    color: #fff;
    position: absolute;
    right: 5px;
    top: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .message__textarea--wrap .btn__orange--submit:hover {
      opacity: 0.9; }
  .message__textarea--wrap .message__img--upload {
    display: inline-block;
    line-height: 30px;
    padding: 0 8px;
    color: #ccc;
    float: left;
    margin-left: 3px;
    margin-top: 1px; }
    .message__textarea--wrap .message__img--upload.active {
      color: #FC9537 !important; }
.message__textarea--inner {
  padding: 5px 64px 3px 0px; }
  .message__textarea--inner:before, .message__textarea--inner:after {
    content: "";
    display: table; }
  .message__textarea--inner:after {
    clear: both; }
.message__img--block {
  position: relative; }
  .message__img--block.display__none {
    display: none; }
  .message__img--block .btn__orange--submit {
    border: none;
    border-radius: 4px;
    line-height: 30px;
    text-align: center;
    padding: 0 8px;
    background-color: #FC9537;
    color: #fff;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .message__img--block .btn__orange--submit:hover {
      opacity: 0.9; }
  .message__img--block .btn__cancel {
    border-radius: 4px;
    line-height: 28px;
    text-align: center;
    padding: 0 8px;
    color: #666;
    border: solid 1px #666;
    display: inline-block;
    position: absolute;
    right: 100px;
    top: 50%;
    margin-top: -15px;
    box-sizing: border-box;
    cursor: pointer; }
  .message__img--block .img__wrap {
    width: 70px;
    height: 70px;
    margin-bottom: 10px; }

section.modal-body2 {
  margin-bottom: 0px;
  }
section.modal-body2 hr {
  border-style: dotted 1px #ddd;}


.section-separate-2 {
  display: block !important; }

.accordion__content > section > .section-separate {
  display: block;
  border-bottom: dotted 1px #ddd; }
  .accordion__content > section > .section-separate:last-child {
    border-bottom: none; }

.kessai-block {
  width: 975px;
  margin: 0 auto; }
  .kessai-block a {
    color: #036eb7; }
  .kessai-block .btn-green {
    display: inline-block;
    color: #fff;
    background-color: #14bbb9;
    width: 120px;
    line-height: 44px;
    border-radius: 4px; }
    .kessai-block .btn-green:hover {
      text-decoration: none;
      opacity: 0.8; }
    .kessai-block .btn-green.complete {
      background-color: #fff;
      color: #14bbb9;
      border: solid 1px #14bbb9; }
      .kessai-block .btn-green.complete:hover {
        opacity: 1; }
  .kessai-block .head-wrap {
    margin-bottom: 10px; }
    .kessai-block .head-wrap:before, .kessai-block .head-wrap:after {
      content: "";
      display: table; }
    .kessai-block .head-wrap:after {
      clear: both; }
    .kessai-block .head-wrap .link {
      float: left;
      padding-left: 20px; }
    .kessai-block .head-wrap .date {
      float: right;
      padding-right: 20px; }
  .kessai-block .btn-save-wrap {
    padding: 20px 0; }
    .kessai-block .btn-save-wrap:before, .kessai-block .btn-save-wrap:after {
      content: "";
      display: table; }
    .kessai-block .btn-save-wrap:after {
      clear: both; }
    .kessai-block .btn-save-wrap .btn-save-green {
      display: block;
      width: 200px;
      line-height: 44px;
      color: #fff;
      text-align: center;
      background-color: #14bbb9;
      border-radius: 4px;
      border: none;
      padding: 0;
      float: right; }
      .kessai-block .btn-save-wrap .btn-save-green:hover {
        opacity: 0.8; }
    .kessai-block .btn-save-wrap .descript {
      float: right;
      line-height: 44px;
      padding-right: 20px;
      color: #666;
      font-size: 12px; }
  .kessai-block .img-wrap-50 {
    width: 50px;
    display: block;
    margin-right: 20px; }
    .kessai-block .img-wrap-50 img {
      display: block;
      width: 100%; }
  .kessai-block .name-link {
    display: table-cell;
    vertical-align: middle; }
    .kessai-block .name-link a {
      font-weight: bold; }
  .kessai-block .btn-join {
    display: block;
    width: 90px;
    height: 28px;
    background: url(/images/client/btn_fusanka.png) no-repeat;
    border: none;
    margin: 0 auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .kessai-block .btn-join.active {
      display: block;
      width: 90px;
      height: 28px;
      background: url(/images/client/btn_sanka.png) no-repeat;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
  .kessai-block .star-wrap {
    width: 100px;
    margin: 0 auto 6px; }
    .kessai-block .star-wrap img {
      display: block;
      width: 100%; }
    .kessai-block .star-wrap-2 {
      display: inline-block;
      width: 100px; }
  .kessai-block .check-text {
    display: inline-block; }
  .kessai-block .btn-tekiyou {
    display: inline-block;
    border: solid 1px #999;
    line-height: 28px;
    padding: 0 16px;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fafafa;
    margin-left: 20px; }
  .kessai-block .status-guide {
    margin-bottom: 10px;
    font-weight: bold; }
    .kessai-block .status-guide .text-big-red {
      color: #ed7064;
      font-size: 18px;
      font-weight: bold; }
    .kessai-block .status-guide .inner {
      display: inline-block;
      padding-left: 10px;
      font-weight: normal; }

.preview-block {
  width: 380px;
  margin: 0 auto; }
  .preview-block .img__carousel {
    margin-bottom: 20px; }
    .preview-block .img__carousel--list {
      margin: 0;
      padding: 0; }
      .preview-block .img__carousel--list li {
        position: relative; }
        .preview-block .img__carousel--list li .caption {
          background: rgba(0, 0, 0, 0.5);
          font-size: 12px;
          color: #fff;
          padding: 10px;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0; }
        .preview-block .img__carousel--list li .img__block {
          height: 250px;
          background: #333; }
  .preview-block button.slick-prev.slick-arrow {
    z-index: 10;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -15px;
    background: url(/images/client/slick_prev.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .preview-block button.slick-prev.slick-arrow:active {
      background-color: transparent; }
  .preview-block button.slick-next.slick-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    background: url(/images/client/slick_next.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .preview-block button.slick-next.slick-arrow:active {
      background-color: transparent; }
  .preview-block .slick-dots {
    display: none !important; }
  .preview-block .title__yellow--back {
    background-color: #FFF3D4;
    padding: 10px;
    font-size: 12px;
    font-weight: bold; }
    .preview-block .title__yellow--back:before, .preview-block .title__yellow--back:after {
      content: "";
      display: table; }
    .preview-block .title__yellow--back:after {
      clear: both; }
  .preview-block .title__circle {
    background: url('../images/client/icon_circle.png?1485784102') no-repeat;
    background-size: 14px 14px;
    background-position: 1px 3px;
    padding-left: 22px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px; }
    .preview-block .title__circle.underline {
      border-bottom: solid 1px #ccc;
      padding-bottom: 8px; }
  .preview-block a {
    color: #FC9537; }
  .preview-block .table__common {
    width: 100%; }
    .preview-block .table__common th {
      background: #f7f7f7;
      padding: 5px;
      border: solid 1px #E3E3D7;
      text-align: left;
      white-space: nowrap;
      font-weight: bold; }
    .preview-block .table__common td {
      border: solid 1px #E3E3D7;
      padding: 5px; }
    .preview-block .table__common--vertical {
      width: 100%; }
      .preview-block .table__common--vertical th {
        background: #f7f7f7;
        padding: 5px;
        border: solid 1px #E3E3D7;
        text-align: left;
        display: block;
        width: 100%;
        margin-bottom: -1px; }
      .preview-block .table__common--vertical td {
        border: solid 1px #E3E3D7;
        padding: 5px;
        display: block;
        width: 100%;
        margin-bottom: -1px; }
    .preview-block .table__common--yellow {
      width: 100%; }
      .preview-block .table__common--yellow th {
        background: #f7f7f7;
        padding: 5px;
        border: solid 1px #E3E3D7;
        text-align: left; }
      .preview-block .table__common--yellow td {
        border: solid 1px #E3E3D7;
        padding: 5px; }
  .preview-block .preview-wide-block {
    width: 840px;
    margin: 0 auto 30px;
    margin-left: -230px; }
    .preview-block .preview-wide-block .border-grey {
      border: solid 1px #E3E3D7;
      padding: 20px;
      margin-bottom: 30px; }
      .preview-block .preview-wide-block .border-grey .heading {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center; }
    .preview-block .preview-wide-block .border-yellow {
      border: solid 1px #fbb03b;
      background-color: #fffad9;
      padding: 20px; }
      .preview-block .preview-wide-block .border-yellow ul {
        width: 600px;
        margin: 0 auto 20px;
        font-size: 15px; }
        .preview-block .preview-wide-block .border-yellow ul li {
          margin: 5px 0; }
      .preview-block .preview-wide-block .border-yellow .heading {
        font-size: 18px;
        font-weight: bold;
        color: #ff0000;
        margin-bottom: 20px;
        text-align: center; }

select.select-settlement {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right 10px bottom 50%;
  background-size: 8px 10px;
  border: solid 1px #ccc;
  background-color: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 5px 24px 5px 10px;
  width: 120px; }

select.select-common-nosearch {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right 10px bottom 50%;
  background-size: 8px 10px;
  border: solid 1px #ccc;
  background-color: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 5px 24px 5px 10px;
  width: 120px; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.select2-container--default .select2-selection--multiple {
  border: solid 1px #ccc;
  border-radius: 2px; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid 1px #ccc; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  line-height: 150%; }

.select2-container--default .select2-selection--single {
  border: solid 1px #ccc;
  border-radius: 2px; }

.select2-container .select2-selection--single {
  height: 31px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333; }

.select__multiple--wrap {
  box-shadow: 0px 0px 5px 3px #cde0fd;
  -moz-box-shadow: 0px 0px 5px 3px #cde0fd;
  -webkit-box-shadow: 0px 0px 5px 3px #cde0fd;
  display: none; }



.preview-block {
  width: 380px;
  margin: 0 auto; }
  .preview-block .img__carousel {
    margin-bottom: 20px; }
    .preview-block .img__carousel--list {
      margin: 0;
      padding: 0; }
      .preview-block .img__carousel--list li {
        position: relative; }
        .preview-block .img__carousel--list li .caption {
          background: rgba(0, 0, 0, 0.5);
          font-size: 12px;
          color: #fff;
          padding: 10px;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0; }
        .preview-block .img__carousel--list li .img__block {
          height: 250px;
          background: #333; }
  .preview-block button.slick-prev.slick-arrow {
    z-index: 10;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -15px;
    background: url(/images/client/slick_prev.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .preview-block button.slick-prev.slick-arrow:active {
      background-color: transparent; }
  .preview-block button.slick-next.slick-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    background: url(/images/client/slick_next.png) no-repeat;
    text-indent: -9999px;
    border: none; }
    .preview-block button.slick-next.slick-arrow:active {
      background-color: transparent; }
  .preview-block .slick-dots {
    display: none !important; }
  .preview-block .title__yellow--back {
    background-color: #FFF3D4;
    padding: 10px;
    font-size: 12px;
    font-weight: bold; }
    .preview-block .title__yellow--back:before, .preview-block .title__yellow--back:after {
      content: "";
      display: table; }
    .preview-block .title__yellow--back:after {
      clear: both; }
  .preview-block .title__circle {
    background: url('/images/client/icon_circle.png') no-repeat;
    background-size: 14px 14px;
    background-position: 1px 3px;
    padding-left: 22px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px; }
    .preview-block .title__circle.underline {
      border-bottom: solid 1px #ccc;
      padding-bottom: 8px; }
  .preview-block a {
    color: #FC9537; }
  .preview-block .table__common {
    width: 100%; }
    .preview-block .table__common th {
      background: #f7f7f7;
      padding: 5px;
      border: solid 1px #E3E3D7;
      text-align: left;
      white-space: nowrap;
      font-weight: bold; }
    .preview-block .table__common td {
      border: solid 1px #E3E3D7;
      padding: 5px; }
    .preview-block .table__common--vertical {
      width: 100%; }
      .preview-block .table__common--vertical th {
        background: #f7f7f7;
        padding: 5px;
        border: solid 1px #E3E3D7;
        text-align: left;
        display: block;
        width: 100%;
        margin-bottom: -1px; }
      .preview-block .table__common--vertical td {
        border: solid 1px #E3E3D7;
        padding: 5px;
        display: block;
        width: 100%;
        margin-bottom: -1px; }
    .preview-block .table__common--yellow {
      width: 100%; }
      .preview-block .table__common--yellow th {
        background: #f7f7f7;
        padding: 5px;
        border: solid 1px #E3E3D7;
        text-align: left; }
      .preview-block .table__common--yellow td {
        border: solid 1px #E3E3D7;
        padding: 5px; }
  .preview-block .preview-wide-block {
    width: 840px;
    margin: 0 auto 30px;
    margin-left: -230px; }
    .preview-block .preview-wide-block .border-grey {
      border: solid 1px #E3E3D7;
      padding: 20px;
      margin-bottom: 30px; }
      .preview-block .preview-wide-block .border-grey .heading {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center; }
    .preview-block .preview-wide-block .border-yellow {
      border: solid 1px #fbb03b;
      background-color: #fffad9;
      padding: 20px; }
      .preview-block .preview-wide-block .border-yellow ul {
        width: 600px;
        margin: 0 auto 20px;
        font-size: 15px; }
        .preview-block .preview-wide-block .border-yellow ul li {
          margin: 5px 0; }
      .preview-block .preview-wide-block .border-yellow .heading {
        font-size: 18px;
        font-weight: bold;
        color: #ff0000;
        margin-bottom: 20px;
        text-align: center; }



.img__block img {
  width: 100%;
  display: block; }
.img__carousel--list div {
  position: relative; }
  .img__carousel--list div .caption {
    background: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    color: #fff;
    padding: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; }
  .img__carousel--list div .img__block {
    height: 250px;
    background: #333; }
.img-block {
  display: block;
  width: 100%; }



.w30per {
  width: 30% !important; }


  .message-block {
    width: 975px;
    margin: 0 auto; }
    .message-block .form-text {
      height: 31px;
      border-radius: 2px;
      border: solid 1px #ccc;
      margin-right: 10px; }
    .message-block .btn-search {
      height: 31px;
      padding: 0 20px;
      border-radius: 2px;
      border: solid 1px #ccc;
      background: #fff; }
      .message-block .btn-search:hover {
        background: #ddd; }
    .message-block .table-striped td {
      padding: 20px; }
      .message-block .table-striped td.img-td {
        width: 70px; }
      .message-block .table-striped td.title-td {
        width: 570px;
        text-align: left; }
      .message-block .table-striped td.label-td {
        text-align: center; }
      .message-block .table-striped td.btn-td {
        position: relative;
        vertical-align: bottom;
        text-align: right;
        padding-bottom: 10px;
        width: 200px; }
      .message-block .table-striped td .img-wrap {
        width: 70px;
        display: block; }
        .message-block .table-striped td .img-wrap img {
          display: block;
          width: 100%; }
      .message-block .table-striped td .name {
        color: #036EB7;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 5px;
        display: inline-block; }
      .message-block .table-striped td .title {
        color: #333;
        display: inline-block; }
      .message-block .table-striped td .btn-message {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 160px;
        text-align: center; }
        .message-block .table-striped td .btn-message:hover {
          background: #FC5F99;
          color: #fff; }
        .message-block .table-striped td .btn-message.midoku {
          background: #FC5F99;
          color: #fff; }
          .message-block .table-striped td .btn-message.midoku:hover {
            opacity: 0.8; }
      .message-block .table-striped td .date {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 120px;
        color: #666; }


  .icondraft {
        display: inline-block;
        background: url(/images/client/icon_draft.png) no-repeat;
        width: 64px;
        height: 18px;
        vertical-align: middle;
        }
  .iconapplying {
        display: inline-block;
        background: url(/images/client/icon_applying.png) no-repeat;
        width: 64px;
        height: 18px;
        vertical-align: middle;
        }
  .iconapped {
        display: inline-block;
        background: url(/images/client/icon_appd.png) no-repeat;
        width: 64px;
        height: 18px;
        vertical-align: middle;
        }
  .icondenial {
        display: inline-block;
        background: url(/images/client/icon_denial.png) no-repeat;
        width: 64px;
        height: 18px;
        vertical-align: middle;
        }
  .iconcancel {
        display: inline-block;
        background: url(/images/client/icon_cancel.png) no-repeat;
        width: 64px;
        height: 18px;
        vertical-align: middle;
        }

  .anken-block {
  width: 975px;
  margin: 0 auto; }
  .anken-block .btn-search {
    border: none;
    border-radius: 4px;
    background-color: #32bbb7;
    color: #fff;
    padding: 0 20px;
    line-height: 31px; }
  .anken-block .form-text {
    height: 31px;
    border-radius: 2px;
    border: solid 1px #ccc; }
  .anken-block .block-anken {
    border: solid 1px #ddd;
    background-color: #fff;
    margin-bottom: 30px; }
    .anken-block .block-anken .top-block {
      padding: 10px 15px 3px;
      border-bottom: solid 1px #ddd;
      position: relative; }
      .anken-block .block-anken .top-block:before, .anken-block .block-anken .top-block:after {
        content: "";
        display: table; }
      .anken-block .block-anken .top-block:after {
        clear: both; }
      .anken-block .block-anken .top-block .head-line {
        font-weight: bold;
        font-size: 14px;
        display: inline-block;
        padding-right: 20px; }
      .anken-block .block-anken .top-block .label-block {
        display: inline-block; }
      .anken-block .block-anken .top-block .date {
        position: absolute;
        right: 15px;
        top: 13px;
        color: #666; }
    .anken-block .block-anken .middle-block {
      padding: 10px;
      position: relative; }
      .anken-block .block-anken .middle-block:before, .anken-block .block-anken .middle-block:after {
        content: "";
        display: table; }
      .anken-block .block-anken .middle-block:after {
        clear: both; }
      .anken-block .block-anken .middle-block .anken-title {
        display: block;
        width: 600px; }
        .anken-block .block-anken .middle-block .anken-title:before, .anken-block .block-anken .middle-block .anken-title:after {
          content: "";
          display: table; }
        .anken-block .block-anken .middle-block .anken-title:after {
          clear: both; }
        .anken-block .block-anken .middle-block .anken-title:hover .img-wrap {
          opacity: 0.8; }
        .anken-block .block-anken .middle-block .anken-title:hover .title {
          text-decoration: underline; }
        .anken-block .block-anken .middle-block .anken-title .img-wrap {
          width: 44px;
          height: 44px;
          float: left; }
        .anken-block .block-anken .middle-block .anken-title .title {
          padding-left: 54px;
          color: #036EB7; }
      .anken-block .block-anken .middle-block .btn-confirm {
        color: #fff;
        background-color: #32bbb7;
        line-height: 44px;
        text-align: center;
        width: 160px;
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        border-radius: 4px; }
        .anken-block .block-anken .middle-block .btn-confirm:hover {
          opacity: 0.8;
          text-decoration: none; }
    .anken-block .block-anken .bottom-block {
      padding: 0 10px 10px; }
    .anken-block .block-anken .attention-block {
      padding: 0 10px 10px; }
      .anken-block .block-anken .attention-block .content {
        line-height: 30px;
        padding: 0 12px 0 36px;
        background: url(/images/client/icon_exc_red.png) no-repeat;
        background-position: 10px 5px;
        display: block;
        width: 100%;
        background-color: #ffebeb; }
        .anken-block .block-anken .attention-block .content .text-big {
          color: #cc0000;
          font-weight: bold;
          font-size: 16px;
          display: inline-block;
          margin-right: 20px; }
    .anken-block .block-anken .table-anken {
      width: 100%; }
      .anken-block .block-anken .table-anken th {
        background-color: #eee;
        border: solid 1px #ddd;
        padding: 8px 0;
        text-align: center;
        width: 8.33%;
        font-weight: bold; }
        .anken-block .block-anken .table-anken th.attract {
          background-color: #ffebeb; }
      .anken-block .block-anken .table-anken td {
        width: 25%;
        border: solid 1px #ddd;
        padding: 8px 10px;
        box-sizing: border-box;
        position: relative; }
        .anken-block .block-anken .table-anken td .red-label {
          display: inline-block;
          line-height: 20px;
          color: #fff;
          background-color: #ff0000;
          position: absolute;
          top: 6px;
          right: 8px;
          padding: 0 10px; }
        .anken-block .block-anken .table-anken td.attract {
          color: #ff0000; }

          .searchblock {
            width: 975px;
            clear:both;
            /*margin: 0 auto;*/
          }

          .icon-insta {
            display: inline-block;
            background: url(/images/client/icon_instagram_count.png) no-repeat;
            background-size: 16px 16px;
            width: 16px;
            height: 16px;
            vertical-align: middle;
          }
          .icon-twitter {
            display: inline-block;
            background: url(/images/client/icon_twitter_count.png) no-repeat;
            background-size: 16px 16px;
            width: 16px;
            height: 16px;
            vertical-align: middle;
          }


          .btn-like {
            display: block;
            border: solid 1px #32bbb7;
            border-radius: 4px;
            text-align: center;
            color: #32bbb7;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            width:160px;
            height:30px;
          }
          .btn-like:hover {
            background: #32bbb7;
            color: #fff;
            text-decoration: none;
          }
          .btn-entry {
            display: block;
            border: solid 1px #32bbb7;
            border-radius: 4px;
            text-align: center;
            background: #32bbb7;
            color: #fff;
            line-height: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            width:160px;
            height:30px;
          }
          .btn-entry:hover {
            opacity: 0.8;
            color: #fff;
            text-decoration: none;
          }
          .btn-hover:hover {
            opacity: 0.8;
          }
          .btn-like-disable {
            display: block;
            border: solid 1px #CCCCCC;
            border-radius: 4px;
            text-align: center;
            color: #CCCCCC;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            width: 160px;
            margin-bottom: 10px;
          }
          .btn-like-l {
            display: block;
            border: solid 1px #32bbb7;
            border-radius: 4px;
            text-align: center;
            color: #32bbb7;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            width: 450px;
            margin-bottom: 10px;
          }
          .btn-like-l:hover {
            background: #32bbb7;
            color: #fff;
            text-decoration: none;
          }
          .btn-messa {
            display: block;
            border: solid 1px #ff5c99;
            border-radius: 4px;
            text-align: center;
            color: #ff5c99;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            width: 160px;
            margin-bottom: 10px;
          }
          .btn-messa:hover {
            background: #ff5c99;
            color: #fff;
            text-decoration: none;
          }
          .btn-messa-midoku {
            display: block;
            border: solid 1px #ff5c99;
            border-radius: 4px;
            text-align: center;
            color: #fff;
            background: #ff5c99;
            line-height: 28px;
            font-weight: bold;
            width: 160px;
            margin-bottom: 10px;
          }
          .btn-messa-midoku:hover {
            background: #fff;
            color: #ff5c99;
            text-decoration: none;
          }
          .btn-messa-disable {
            display: block;
            border: solid 1px #CCCCCC;
            border-radius: 4px;
            text-align: center;
            color: #CCCCCC;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            width: 160px;
            margin-bottom: 10px;
          }
          .btn-appli {
            display: block;
            border: solid 1px #a29697;
            border-radius: 4px;
            text-align: center;
            color: #646464;
            background: #eeeeee;
            /*line-height: 28px;*/
            font-weight: bold;
            width: 80px;
            height: 20px;
            margin-left: 10px;
            /*margin-bottom: 10px;*/
          }
          .btn-appli:hover {
            background: #fff;
            color: #646464;
            opacity: 0.6;
            text-decoration: none;
          }
          .btn-send {
            display: block;
            border: solid 1px #a29697;
            border-radius: 4px;
            text-align: center;
            color: #646464;
            background: #fff;
            line-height: 28px;
            font-weight: bold;
            width: 80px;
            height: 28px;
            margin-left: 10px;
            /*margin-bottom: 10px;*/
          }
          .btn-send:hover {
            background: #eeeeee;
            color: #646464;
            text-decoration: none;
          }

          .listimg{
            max-width: 100px;
            height: auto;
          }

          .icon-quest {
            display: inline-block;
            background: url(/images/client/icon_quest_green.png) no-repeat;
            background-size: 15px 15px;
            width: 15px;
            height: 15px;
            vertical-align: middle;
          }

          .tbl-b { border: solid 1px; border-color: #cccccc; }
          .tbl-bl {
            border-top: solid 1px;
            border-bottom: solid 1px;
            border-left: solid 1px;
            border-right: none;
            border-color: #cccccc;
          }
          .tbl-br {
            border-top: solid 1px;
            border-bottom: solid 1px;
            border-left: dashed 1px;
            border-right: solid 1px;
            border-color: #cccccc;
          }

          .float-l { float:left; }
          .float-r { float:right; }
          .float-c { clear:both; }
          .mg10 { margin: 10px; }
          .pd10 { padding: 10px; }
          .mg-t10 { margin-top: 10px; }
          .mg-b10 { margin-bottom: 10px; }
          .mg-r10 { margin-right: 10px; }
          .mg-l10 { margin-left: 10px; }
          .mg-l30 { margin-left: 30px; }
          .txt-c { text-align: center; }
          .txt-r { text-align: right; }
          .txtc-b3 { color: #b3b3b3; }
