@charset "UTF-8";
/* 動き設定 */
@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out forwards;
  animation: kenburns ease-out forwards;
}

@-webkit-keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
/*　上に上がる動き　*/
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*　タブ切り替え用　*/
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*　エフェクト　*/
@-webkit-keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
@keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
/*時間差(秒)※動的に出力する箇所はnth-of-type使用*/
.d1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.d2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.d3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.d4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.d5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.d6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.d7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.d8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.item {
  opacity: 0;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  transition: 0.7s;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.item.sil.is-show {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.item.sir.is-show {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.item.fiu.is-show {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.item.fid.is-show {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.item.fi.is-show {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

/* Scss Document */
.bg_wh {
  position: relative;
}

.bg_gry {
  background: rgba(0, 0, 0, 0.03);
  position: relative;
}

.exp__area {
  position: relative;
}
.exp__area::before {
  content: "";
  background: url(../img/career/voice/bg_voice.png) no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  height: 106px;
  z-index: -1;
}
@media (min-width: 769px) {
  .exp__area::before {
    height: 223px;
  }
}
.exp__area::after {
  content: "";
  background: url(../img/career/voice/bg_circle_sp.png) repeat-y;
  background-size: contain;
  width: 100%;
  position: absolute;
  right: 0;
  display: block;
  z-index: -1;
  height: 100%;
  top: -50px;
  background-position: top center;
}
@media (min-width: 769px) {
  .exp__area::after {
    background: url(../img/career/voice/bg_circle_pc.png) repeat-y;
    background-size: 100%;
  }
}
.exp__area .bg_wh:first-of-type {
  padding-top: 10px;
  background: transparent;
}
@media (min-width: 769px) {
  .exp__area .bg_wh:first-of-type {
    padding-top: 120px;
  }
}
@media (min-width: 769px) {
  .exp__area .col__wrap {
    display: flex;
    justify-content: space-between;
    padding: 100px 20px;
    align-items: center;
  }
}
@media (min-width: 769px) and (min-width: 1440px) {
  .exp__area .col__wrap {
    align-items: flex-start;
  }
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-img {
    width: 52.86%;
  }
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt {
    width: 38%;
  }
}
.exp__area .col__wrap .col__box-img {
  padding: 50px 0 20px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-img {
    padding: 0;
  }
}
.exp__area .col__wrap .col__box-img img {
  width: 100%;
}
.exp__area .col__wrap .col__box-txt {
  padding-bottom: 50px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt {
    padding-bottom: 0;
  }
}
.exp__area .col__wrap .col__box-txt .read {
  margin-bottom: 30px;
  font-weight: 500;
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type {
  position: relative;
  display: flex;
  align-items: center;
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type span {
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read p:first-of-type span {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read p:first-of-type {
    margin-top: 30px;
  }
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type::after {
  content: "";
  background: linear-gradient(90deg, rgb(54, 110, 178) 0%, rgb(158, 255, 174) 100%);
  display: inline-block;
  width: calc(100% - 110px);
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read p:first-of-type::after {
    width: calc(100% - 140px);
  }
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type span {
  color: #0054bb;
  font-weight: bold;
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type span:first-of-type {
  font-size: 2.6rem;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read p:first-of-type span:first-of-type {
    font-size: 3rem;
  }
}
.exp__area .col__wrap .col__box-txt .read p:first-of-type span:last-of-type {
  font-size: 4rem;
  padding-left: 5px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read p:first-of-type span:last-of-type {
    font-size: 5.6rem;
  }
}
.exp__area .col__wrap .col__box-txt .read h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0 30px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read h2 {
    font-size: 3rem;
  }
}
.exp__area .col__wrap .col__box-txt .read h2 + p {
  line-height: 1.8;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .read h2 + p {
    font-size: 1.8rem;
  }
}
.exp__area .col__wrap .col__box-txt .name {
  text-align: right;
  font-weight: 500;
}
.exp__area .col__wrap .col__box-txt .name p:first-of-type {
  margin-bottom: 18px;
  font-size: 2rem;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .name p:first-of-type {
    font-size: 2.4rem;
  }
}
.exp__area .col__wrap .col__box-txt .name p:nth-of-type(2) {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .name p:nth-of-type(2) {
    font-size: 1.8rem;
  }
}
.exp__area .col__wrap .col__box-txt .name p .name_sm {
  font-size: 1.6rem;
  margin-left: 5px;
}
@media (min-width: 769px) {
  .exp__area .col__wrap .col__box-txt .name p .name_sm {
    font-size: 1.8rem;
    margin-left: 3px;
  }
}

@media (min-width: 769px) {
  .bg_gry .col__wrap {
    flex-direction: row-reverse;
  }
}