@charset 'UTF-8';

@media screen and (max-width: 767px) {
  .changeAreaWrapper {
    display: none;
  }
}
.changeAreaWrapper * {
  box-sizing: border-box;
}

.changeAreaWrap {
  background: #fff;
  box-shadow: 0 0 6px #c5c5c5;
  /* display: flex;
  justify-content: space-between; */
  position: fixed;
  top: -100px;
  transition: .5s;
  width: 100%;
  z-index: 101 !important;
  padding: 10px 0;
  /* firefoxカクツキ防止 */
  transform: rotate(0.0001deg);
  /* 領域で指定されていることがあるので打ち消し */
  font-feature-settings: 'palt' 0;
}
.changeAreaWrap.show {
  top: 0;
}
.changeAreaWrap .changeArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.changeAreaWrap .changeHeader__logoImg {
  width: 250px;
}

/* footer_fixedと共通 */
.changeArea__button {
  /* max-width: 340px; */
  /* width: 100%; */

  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* height: 100%; */
  padding-right: 20px;
  border-radius: 10px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  /* line-height: 45px; */
  background: #d10042;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all .2s;
}
.changeArea__button:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .changeArea__button {
    justify-content: center;
    max-width: 340px;
    width: 100%;
    line-height: 45px;
  }

  .changeArea__button::before {
    content: "";
    background: rgba(255, 255, 255, .15);
    transform: rotate(-45deg);
    position: absolute;
    top: -10%;
    left: -100%;
    transition: .5s ease-in-out;
    height: 100%;
    width: 110%;
  }

  /* .changeArea__button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
  } */

  .changeArea__button:hover {
    transform: scale(1.05);
    transition: all .2s;
    text-decoration: none;
  }

  .changeArea__button:hover:before {
    left: 80%;
  }
}

@media screen and (max-width: 767px) {
  .changeArea__button {
    /* width: 67%; */

    /* width: auto; */
    /* height: 40px; */
    font-size: 13px;
    padding-right: 10px;
    border-radius: 6px;
    box-shadow: 1px 1px 4px rgba(109, 109, 109, 0.6);
    /* line-height: 25.5px; */

    width: 100%;
  }
}

.changeArea__button--arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.changeArea__buttonText--bgWhite {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-right: 12px;
  padding: 3px 9px;
  border-radius: 10px;
  background: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 25.5px;
  color: #d10042;

  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .changeArea__buttonText--bgWhite {
    padding: 0 9px;
  }
}

@media screen and (max-width: 767px) {
  .changeArea__buttonText--bgWhite {
    height: 27px;
    margin-right: 11px;
    padding: 1px 6px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 11px;
    letter-spacing: 0.06em;

    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 6px;

    /* @include mq(sxs) { */
      /* width: 32px; */
      /* height: 32px; */
      /* margin-right: 3%; */
      /* padding: 1px 0 0 1px; */
    /* } */
  }
}
/* /footer_fixedと共通 */

@media screen and (min-width: 600px) {
  .changeArea__employer a {
    text-shadow: none;
    font-size: 12px;
    padding: 4px 10px;
    text-align: left;
    border-radius: 4px;
    line-height: 1;
    letter-spacing: 0;
    background: linear-gradient(to bottom, #64c224 0%, #308c0e);
    width: auto;
    display: block;
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
    box-shadow: 1px 3px 2px #1b6505;
  }

  .changeArea__employer a span {
    display: block;
    border-bottom: solid 1px #fff;
    margin: 0 0 2px 0;
    padding: 0 0 2px 0;
    background: none;
    color: #fff;
  }
}
