/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② career はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

/*------------------------------------------------------------
common
------------------------------------------------------------*/
.career {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

#career * {
  box-sizing: border-box;
}

#career a {
  transition: opacity .3s;
  color: unset;
}

#career a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#career a:hover {
  text-decoration: none;
}

#career a:focus-visible {
  outline: none;
}

#career img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#career .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#career .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#career .text {
  margin-bottom: 2em;
}

#career .text:last-of-type {
  margin-bottom: 0;
}

#career .pc-br {
  display: none;
}

#career .notes {
  display: inline-block;
  position: relative;
  margin-left: 1em;
}

#career .notes::before {
  content: '\0203B';
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

#career .inner {
  width: calc(100% - 24px);
  max-width: 1180px;
  margin: 0 auto;
}

#career a:not([href^="tel:"]):hover{
  opacity: unset!important;
}

#career .br-point{
  display: inline-block;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  .career {
    font-size: 16px;
  }
  
  #career a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  
  #career a:not([href^="tel:"]):hover {
    opacity: .5;
  }
  
  #career .sp-br {
    display: none;
  }
  
  #career .pc-br {
    display: inline;
  }
}
/*------------------------------------------------------------
font
------------------------------------------------------------*/
#career .font-solitas{
  font-family: solitas-serif-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}

#career .font-tbud{
  font-family: tbudmincho-std, sans-serif;
  font-weight: bold;
  font-style: normal;
}


/*------------------------------------------------------------
main
------------------------------------------------------------*/
#career .main{
  min-height: 395px;
  position: relative;
  margin-bottom: 50px;
  z-index: 0;
}

#career .main::after{
  content: "";
  display: block;
  width: calc(100vw / 375 * 325);
  height: 100%;
  background-image: url("../images/career/h1_bg_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}

#career .main .main-img{
  width: 100%;
  max-width: calc(100% - 25px);;
  position: relative;
  padding-right: 12px;
}

#career .main-text-wrap{
  width: fit-content;
  position: absolute;
  top: 215px;
  right: 12px;
}

#career .main .main-ttl{
  position: relative;
  z-index: 50;
  width: fit-content;
}

#career .main .main-message{
  position: relative;
  z-index: 50;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  width: calc(100vw / 375 * 293);
}

#career .main-ttl .text-box{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#career .main .ttl-eng{
  color: #6B5E11;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .1em;
  min-width: 130px;
  width: fit-content;
  padding-left: 5px;
  transform: translateY(-9px);
}

#career .main .ttl-jpn{
  color: #FFF;
  font-size: 12px;
  letter-spacing: .04em;
  min-width: 138px;
  width: fit-content;
  padding-left: 3px;
  transform: translateY(3px);
}

#career .main .message-box{
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 18px;
}

#career .main .inner-box-eng{
  background-color: #FFF;
  max-height: 24px;
  width: fit-content;
}

#career .main .inner-box-jpn{
  margin-right: -12px;
  background-color: #6B5E11;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .main::after{
    background-image: url("../images/career/h1_bg_pc@2x.jpg");
    width: 100%;
    height: 100%;
  }
  
  #career .main .main-img{
    max-width: unset;
    width: 88%;
  }
  
  #career .main{
    margin-bottom: 80px;
  }
  
  #career .main .ttl-eng{
    font-size: 40px;
    transform: translateY(-5px);
    line-height: 1;
  }
  
  #career .main .ttl-jpn{
    font-size: 22px;
    padding: 0 6px;
    transform: translateY(9px);
    line-height: 1;
  }
  
  #career .main .main-message{
    font-size: 16px;
    max-width: 960px;
  }
  
  #career .main .inner-box-eng{
    max-height: unset;
    height: 48px;
    width: 130%;
  }
  
  #career .main-text-wrap{
    top: unset;
    bottom: 93px;
  }
  
  #career .main .message-box{
    justify-content: center;
    padding: 40px 0 36px;
  }
  
  #career .main-img img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 600px;
  }
  
  #career .main .inner-box-jpn{
    height: 30px;
    width: 110%;
  }
}

@media print, screen and (min-width: 1560px) {/* ---------- ～画面幅1560px ---------- */
  #career .main .main-img{
    height: calc(100vw / 1920 * 600);
  }
  
  #career .main-img img{
    height: auto;
  } 
  #career .main::after{
    width: calc(100vw / 1920 * 1560);
  }
  

}

@media print, screen and (min-width: 768px) and (max-width: 1280px) {/* ---------- 画面幅768px ～ 1280px ---------- */
  #career .main-img img{
    height: 500px;
  }
  
}
/*------------------------------------------------------------
suggest
------------------------------------------------------------*/
#career .suggest-ttl{
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 40px;
}

#career .suggest-ttl-eng{
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  padding-bottom: 6px;
}

#career .suggest-wrap .bg{
  background-image: url("../images/career/suggest_bg_sp.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 58px;
}

#career .suggest-wrap{
  color: #FFF;
}

#career .suggest-wrap .link-box{
  width: 140px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

#career .suggest-wrap .link-box-outer:nth-last-of-type(-n+1){
  margin-bottom: 0;
}

#career .suggest-wrap .link-ttl-eng{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

#career .suggest-wrap .link-ttl-jpn{
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .04em;
}

#career .suggest-wrap .text-wrap{
  position: relative;
  width: 100%;
  z-index: 50;
}

#career .suggest-wrap .suggest-links .text-wrap::after{
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  transform: translateY(-50%);
  position: absolute;
  right: 5px;
  top: 50%;
  background-image: url("../images/career/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#career .suggest-wrap .link-box-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

#career .suggest-wrap .link-box::after{
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 130px;
  top: 0;
  left: 0;
  background-color: #333333;
  opacity: .44;
  transition: all .3s ease-out;
}

#career .suggest-wrap .link-box-outer:hover .link-box::after{
  opacity: 0;
}

#career .suggest-wrap .link-box-outer:hover .link-box{
  transition: all .3s ease;
  transform: scale(1.2);
  will-change: transform;
}

#career .link-box-outer{
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

#career .suggest-wrap .link-box-outer .text-wrap{
  position: absolute;
  bottom: 0;
  padding: 0 6px 7px;
}

#career .suggest-links{
  margin-bottom: 30px;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .suggest-wrap .link-box-wrap{
    max-width: 1200px;
    padding: 0 10px;
  }
  
  #career .suggest-wrap .link-box{
    width: 100%;
    max-width: 220px;
    height: 210px;
    align-items: stretch;
  }
  
  #career .suggest-wrap .link-box::after{
    width: 100%;
    max-width: 220px;
    height: 210px;
  }
  
  #career .link-box-outer{
    margin-bottom: 0;
    width: calc((100% - 80px) / 5);
    z-index: 0;
  }
  
  #career .suggest-wrap .link-ttl-eng{
    font-size: 30px;
    letter-spacing: .05em;
  }
  
  #career .suggest-wrap .link-ttl-jpn{
    font-size: 16px;
  }
  
  #career .suggest-wrap .link-box-outer .text-wrap{
    padding: 0 10px 30px 10px;
  }
  
  #career .suggest-wrap .suggest-links .text-wrap::after{
    top: calc(50% - 10px);
    right: 10px;
    transition: all .3s ease-out;
    width: 8px;
    height: 14px;
  }
  
  #career .suggest-wrap .bg{
    background-image: url("../images/career/suggest_bg_pc@2x.jpg");
    padding-bottom: 120px;
  }
  
  #career .suggest-ttl-eng{
    font-size: 40px;
    padding-bottom: 10px;
  }
  
  #career .suggest-ttl-jpn{
    font-size: 22px;
  }
  
  #career .suggest-links{
    margin-bottom: 57px;
  }
  
  #career .suggest-ttl{
  padding: 120px 0 80px;
  }
  
  #career .suggest-links .link-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/
#career .btn-search .btn-text-eng{
  font-size: 20px;
  font-weight: 600;
  padding-right: 20px;
  letter-spacing: .1em;
}

#career .btn-search{
  max-width: 351px;
}

#career .btn01{
  width: calc(100% - 24px);
  border-radius: 5px;
  margin: 0 auto;
  transition: all .3s ease-out;
  background: linear-gradient(to right, #C8BB8D 0%, #6B5E11 51%, #C8BB8D 100%);
  background-size: 200% auto;
  filter: drop-shadow(0px 5px 3px rgba(0,0,0,0.16));
}

#career .btn01:hover{
  background-position: right center;
}

#career .btn01 .text-wrap{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 0;
  position: relative;
}

#career .btn01 .text-wrap::after{
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-out;
  background-image: url("../images/career/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#career .btn01 .btn-text-jpn{
  padding-right: 31px;
  letter-spacing: .04em;
}

#career .btn01:hover .text-wrap::after{
  left: 105%;
}

#career .btn-content{
  color: #FFF;
  margin-top: 30px;
  width: 100%;
  max-width: 270px;
}

#career .btn-content .btn-text-eng{
  font-size: 18px;
  letter-spacing: .1em;
  padding-right: 20px;
  line-height: 1.2;
}

#career .btn-content .btn-text-jpn{
  font-size: 12px;
  letter-spacing: .04em;
  padding-right: 20px;
}

#career .btn-content .text-wrap{
  padding: 9px 0;
}


@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .btn-search{
    max-width: 960px;
  }
  
  #career .btn-search .btn-text-eng{
    font-size: 34px;
    line-height: 1.2;
  }
  
  #career .btn-search .btn-text-jpn{
    font-size: 20px;
  }
  
  #career .btn01 .text-wrap::after{
    width: 10px;
    height: 18px;
  }
  
  #career .btn01{
    border-radius: 10px;
    filter: drop-shadow(0px 10px 6px rgba(0,0,0,0.16));
  }
  
  #career .btn01 .text-wrap{
    padding: 34px 0 37px;
  }
  
  #career .btn-content{
    margin: 0 0 0 20px;
    max-width: 380px;
    margin-top: 40px;
  }
  
  #career .btn-content .btn-text-eng{
    font-size: 20px;
  }
  
  #career .btn-content .btn-text-jpn{
    font-size: 14px;
  }
  
  #career .btn-content .text-wrap{
    padding: 13px;
  }
  
}





/*------------------------------------------------------------
business
------------------------------------------------------------*/
#career .content-inner{
  margin-bottom: 50px;
}

#career .content-inner:last-of-type{
  margin-bottom: 60px;
}

#career .content-inner-ttl{
  padding-bottom: 20px;
}

#career .content-inner-ttl .ttl-eng{
  font-size: 25px;
  letter-spacing: .1em;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2px;
}

#career .content-inner-ttl .ttl-eng::before{
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #6B5E11;
  margin-right: 10px;
}

#career .content-inner-ttl .ttl-jpn{
  font-size: 13px;
  letter-spacing: .04em;
  line-height: 2;
  color: #978E57;
  padding-left: 20px;
}

#career .business-text-wrap{
  width: calc(100% - 27px);
  background-color: #FFF;
  padding: 15px 12px;
  margin-top: -30px;
  margin-left: 0;
  position: relative;
}

#career .business-inner-text{
  padding-left: 20px;
  letter-spacing: .01em;
  font-size: 14px;
  line-height: 1.65;
}

#career .content-business .content-inner-top .bg{
  position: relative;
  padding-bottom: 30px;
  z-index: 0;
}

#career .content-business .content-inner-top .bg::after{
  content: "";
  display: block;
  background-color: #F5F5F5;
  width: calc(100vw / 375 * 200);
  height: calc(100vw / 375 * 470);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -10;
  max-height: 470px;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .content-inner-top .business-img{
    max-width: 1200px;
  }
  
  #career .content-inner-top-business-outer{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #career .business-text-wrap{
    width: 76%;
    max-width: 920px;
    padding: 40px 40px 36px 0;
    margin-top: -250px;
  }
  
  #career .content-inner-ttl .ttl-eng{
    font-size: 30px;
  }
  
  #career .content-inner-ttl .ttl-jpn{
    font-size: 18px;
  }
  
  #career .content-inner-ttl .ttl-eng::before{
    width: 20px;
    height: 2px;
    margin-right: 20px;
  }
  
  #career .content-inner-ttl{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 34px;
  }
  
  #career .business-inner-text{
    font-size: 16px;
    padding-left: 40px;
    line-height: 1.87;
  }
  
  #career .content-business .content-inner-top .bg::after{
    max-width: 1000px;
    max-height: 600px;
    width: 100%;
    height: 100%;
  }
  
  #career .content-business .content-inner-top .bg{
    padding-bottom: calc(100vw / 1920 * 150);
  }
  
}

/*------------------------------------------------------------
career-path
------------------------------------------------------------*/
#career .content-career .bg{
  background-image: url("../images/career/career_bg_color_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 15px 12px;
  position: relative;
}

#career .content-inner-top-career-outer{
  position: relative;
  z-index: 50;
}

#career .content-career .bg::after{
  content: "";
  display: block;
  background-image: url("../images/career/career_bg_illust_sp.png");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 360px;
  position: absolute;
  top: 0;
  left: 0;
}

#career .content-career .content-inner-ttl{
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
}

#career .content-career .content-inner-ttl .ttl-eng::before{
  background-color: #FFF;
}

#career .content-career .content-inner-ttl .ttl-jpn{
  color: #FFF;
}

#career .career-path-wrap{
  color: #FFF;
}

#career .careerstep-box{
  letter-spacing: .01em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transform: translateX(10px);
  padding-bottom: 10px;
}

#career .careerstep-box:last-of-type{
  margin-bottom: 0;
}

#career .careerstep-box .careerstep-exp-ttl{
  font-size: 15px;
  font-weight: 500;
  padding: 0 0 7px 15px;
}

#career .careerstep-box .careerstep-exp-text{
  font-size: 12px;
}

#career .careerstep-box .icon-step{
  text-align: center;
  color: #5C2C3F;
  position: absolute;
  width: fit-content;
  padding-top: 4px;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#career .careerstep-box .icon-step::after{
  content: "";
  display: block;
  background-image: url("../images/career/icon_step_sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

#career .careerstep-box .icon-step .text-eng{
  position: relative;
  z-index: 50;
  line-height: 1;
  font-size: 10px;
}

#career .careerstep-box .icon-step .text-number{
  position: relative;
  z-index: 50;
  line-height: 1;
  font-size: 17px;
}

#career .careerstep-box .careerstep-exp-wrap{
  padding: 6px 0 0 10px;
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
  min-height: 69px;
}

#career .careerstep-box .careerstep-age-inner-box .average{
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  transform: scale(.9);
}

#career .careerstep-box .careerstep-age-inner-box .age-number{
  font-size: 17px;
  font-weight: bold;
}

#career .careerstep-box .careerstep-age-inner-box .age-number .decoration{
  font-size: 12px;
}

#career .careerstep-box .link-next{
  font-size: 12px;
  padding-left: 9px;
}

#career .careerstep-box .link-next:hover{
  transition: all .3s ease-out;
}

#career .careerstep-box .careerstep-age-inner-box{
  background-color: #914664;
  border-radius: 3px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 40px;
  height: 40px;
}

#career .careerstep-box .link-next .text-eng{
  position: relative;
  letter-spacing: .1em;
  line-height: 1.2;
}

#career .careerstep-box .link-next .text-eng::before{
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #FFF;
  border: solid 1px #914664;
  border-radius: 50%;
  opacity: .3;
  position: absolute;
  left: -9px;
  bottom: 0;
}

#career .careerstep-box .link-next:hover .text-eng::before{
  transition: all .3s ease-out;
  transform: scale(1.5);
  transform-origin: top left;
}

#career .careerstep-box .careerstep-age-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
  padding-right: 11px;
}

#career .careerstep-box .careerstep-length-wrap{
  min-width: 23px;
}

#career .careerstep-box .length-number{
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-left: 5px;
}

#career .careerstep-box .length-number::before{
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background-color: #FFF;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#career .careerstep-box .length-number .text-number{
  text-combine-upright: all;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}

#career .careerstep-box .length-number .text-jpn{
  writing-mode: vertical-rl;
  letter-spacing: .3em;
}

#career .career-path-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  margin: 0 auto;
}

#career .careerstep-box:nth-of-type(5) .careerstep-exp-wrap{
  width: calc(100vw / 375 * 255);
}

#career .careerstep-box:nth-of-type(4) .careerstep-exp-wrap{
  width: calc(100vw / 375 * 240);
}

#career .careerstep-box:nth-of-type(3) .careerstep-exp-wrap{
  width: calc(100vw / 375 * 225);
}

#career .careerstep-box:nth-of-type(2) .careerstep-exp-wrap{
  width: calc(100vw / 375 * 210);
}

#career .careerstep-box:nth-of-type(1) .careerstep-exp-wrap{
  width: calc(100vw / 375 * 195);
}

#career .careerstep-box .careerstep-length-wrap::before{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #FFF;
  top: 0;
  padding-bottom: 10px;
  box-sizing: content-box;
}
#career .careerstep-box:last-of-type .careerstep-length-wrap::before{
  height: 32%;
}

#career .careerstep-box:first-of-type .careerstep-length-wrap::after{
  content: "";
  display: block;
  background-image: url("../images/career/icon_arrow_head_sp.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 11px;
  position: absolute;
  top: -2px;
  transform: translateX(-46%);
}

#career .content-career .content-inner-top{
  margin-bottom: 30px;
}

#career .content-career .career-wrap .career-box{
  background-color: #F5F5F5;
  padding: 20px 16px;
  margin-bottom: 30px;
}

#career .content-career .career-wrap .career-box-outer:last-of-type .career-box{
  margin-bottom: 0;
}

#career .career-box-ttl-wrap{
  letter-spacing: .01em;
  margin-bottom: 20px;
}

#career .career-box-ttl-main{
  color: #5C2C3F;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

#career .career-box-ttl-main .ttl-text-step{
  font-size: 11px;
  line-height: 1.36;
  position: relative;
  margin-right: 15px;
}

#career .career-box-ttl-main .ttl-text-step::before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/career/icon_step_white_sp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -10px;
}

#career .career-box-ttl-main .ttl-text-step-text{
  position: relative;
}

#career .career-box-ttl-main .ttl-text-jpn{
  font-size: 14px;
  font-weight: 500;
}

#career .career-box-ttl-sub{
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

#career .career-box-inner .career-box-text{
  letter-spacing: .01em;
  font-size: 14px;
  line-height: 1.64;
  padding-left: 10px;
  margin-bottom: 20px;
}

#career .career-box-img{
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

#career .content-career .career-wrap .career-box-outer{
  margin-top: -30px;
  padding-top: 30px;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .content-career .bg{
    background-image: url("../images/career/career_bg_color_pc@2x.jpg");
    padding: 40px 40px 70px;
  }
  
  #career .content-inner-top-career-outer{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  
  #career .content-career .bg::after{
    background-image: url("../images/career/career_bg_illust_pc@2x.png");
    height: 100%;
    background-position: center;
    background-size: cover;
  }
  
  #career .careerstep-box .icon-step::after{
    background-image: url("../images/career/icon_step_pc@2x.png");
    width: 70px;
    height: 70px;
  }
  
  #career .careerstep-box .icon-step .text-eng{
    font-size: 14px;
  }
  
  #career .careerstep-box .icon-step .text-number{
    font-size: 30px;
  }
  
  #career .careerstep-box .careerstep-exp-ttl{
    font-size: 24px;
    padding: 0 0 7px 30px;
  }
  
  #career .careerstep-box .careerstep-exp-text{
    font-size: 14px;
    padding-right: 100px;
    line-height: 1.42;
  }
  
  #career .careerstep-box .careerstep-exp-wrap{
    padding: 8px 0 0 20px;
    min-height: 96px;
  }
  
  #career .careerstep-box:nth-of-type(5) .careerstep-exp-wrap{
    width: calc(100vw / 1200 * 905);
    max-width: 905px;
  }
  
  #career .careerstep-box:nth-of-type(4) .careerstep-exp-wrap{
    width: calc(100vw / 1200 * 805);
    max-width: 805px;
  }
  
  #career .careerstep-box:nth-of-type(3) .careerstep-exp-wrap{
    width: calc(100vw / 1200 * 705);
    max-width: 705px;
  }
  
  #career .careerstep-box:nth-of-type(2) .careerstep-exp-wrap{
    width: calc(100vw / 1200 * 605);
    max-width: 605px;
  }
  
  #career .careerstep-box:nth-of-type(1) .careerstep-exp-wrap{
    width: calc(100vw / 1200 * 505);
    max-width: 505px;
  }
  
  #career .careerstep-box .careerstep-age-inner-box .age-number{
    font-size: 24px;
  }
  
  #career .careerstep-box .careerstep-age-inner-box .age-number .decoration{
    font-size: 18px;
  }
  
  #career .careerstep-box .careerstep-age-inner-box{
    width: 70px;
    height: 70px;
    margin-bottom: 0;
  }
  
  #career .careerstep-box .careerstep-age-inner-box .average{
    padding-bottom: 8px;
  }
  
  #career .careerstep-box .link-next{
    font-size: 14px;
    transform: translateX(-72px);
    margin-top: -14px;
  }
  
  #career .careerstep-box .link-next .text-eng{
    line-height: 1.14;
  }
  
  #career .careerstep-box .link-next .text-eng::before{
    width: 20px;
    height: 20px;
    left: -13px;
  }
  
  #career .careerstep-box .careerstep-age-wrap{
    padding-top: 8px;
  }
  
  #career .careerstep-box .careerstep-length-wrap::before{
    width: 2px;
  }
  
  #career .careerstep-box:first-of-type .careerstep-length-wrap::before{
    top: unset;
    bottom: 0;
    height: 115%;
  }
  
  #career .careerstep-box:last-of-type .careerstep-length-wrap::before{
    height: 37%;
  }
  
  #career .careerstep-box .length-number .text-number{
    font-size: 20px;
  }
  
  #career .careerstep-box .length-number::before{
    width: 10px;
    height: 2px;
  }
  
  #career .careerstep-box .length-number{
    font-size: 16px;
    flex-direction: inherit;
    width: 80px;
    padding-left: 23px;
  }
  
  #career .careerstep-box:first-of-type .careerstep-length-wrap::after{
    background-image: url("../images/career/icon_arrow_head_pc@2x.png");
    width: 24px;
    height: 22px;
    top: -30px;
  }
  
  #career .careerstep-box .length-number .text-jpn{
    writing-mode: unset;
    letter-spacing: .01em;
  }
  
  #career .career-box-ttl-main .ttl-text-step{
    font-size: 16px;
  }
  
  #career .career-box-ttl-main .ttl-text-jpn{
    font-size: 20px;
  }
  
  #career .career-box-ttl-main .ttl-text-step::before{
    background-image: url("../images/career/icon_step_white_pc@2x.png");
    width: 40px;
    height: 40px;
    top: -4px;
    left: -20px;
  }
  
  #career .career-box-ttl-sub{
    font-size: 24px;
    padding-left: 20px;
  }
  
  #career .career-box-inner .career-box-text{
    font-size: 16px;
    padding-left: 20px;
    line-height: 1.87;
    margin-bottom: 0;
  }
  
  #career .content-career .career-wrap .career-box{
    max-width: 1160px;
    transform: translateX(-20px);
    position: relative;
    padding: 40px 40px 50px;
    margin-bottom: 140px;
    min-height: 400px;
  }
  
  #career .career-box-img{
    max-width: 500px;
    position: absolute;
    top: -40px;
    right: -32px;
    z-index: -10;
    width: calc(100vw / 1200 * 500);
    min-width: 420px;
  }
  
  #career .career-box-text-wrap{
    max-width: 630px;
    width: 100%;
  }
  
  #career .career-box-ttl-main{
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  #career .career-box-ttl-wrap{
    margin-bottom: 40px;
  }
  
  #career .content-inner-top, #career .content-career .content-inner-top{
    margin-bottom: 160px;
  }
  
  #career .content-inner:last-of-type{
    margin-bottom: 120px;
  }
  
  #career .content-career .career-wrap .career-box-outer{
    margin-top: -130px;
    padding-top: 130px;
  }
  
  @media print, screen and (min-width: 768px) and (max-width: 1280px) {/* ---------- 画面幅768px ～ 1280px ---------- */
    #career .content-career .bg::after{
    background-position: 35% top;
  }
    
    #career .career-box-text-wrap{
      width: 57%;
    }
 
  }
}