/*

【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;
}

#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 .font-marumin{
font-family: kinuta-maruminfuji-stdn, serif;
font-weight: 400;
font-style: normal;
}

#career .font-tbud{
font-family: tbudmincho-std, sans-serif;
font-weight: 500;
font-style: normal;
}

#career .font-tzimmes{
font-family: tzimmes, serif;
font-weight: 300;
font-style: normal;
}

#career .font-metaserif{
font-family: ff-meta-serif-web-pro, serif;
font-weight: 500;
font-style: normal;
letter-spacing: .03em;
}

@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;
  }
}

/*------------------------------------------------------------
content top
------------------------------------------------------------*/
#career .content-top{
position: relative;
}

#career .content-mv{
width: calc(100% - 75px);
transform: translateX(75px);
margin: 10px 0;
}

#career .content-ttl{
display: flex;
flex-wrap: wrap;
flex-direction: column;
position: absolute;
top: 52%;
margin-left: 10px;
}

#career .content-ttl-eng{
font-size: 35px;
line-height: 1.4;
}

#career .content-ttl-jpn{
line-height: 2.0;
letter-spacing: .05em;
}

#career .message{
text-align: center;
padding: 38px 0 58px;
}

#career .message-ttl{
font-size: 16px;
line-height: 1.4;
position: relative;
}

#career .message-ttl .strong{
font-size: 21px;
}

#career .message-text{
font-size: 15px;
line-height: 2;
margin-top: 60px;
background-image: url("../images/career/career_bg01_sp.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

#career .message-ttl::after{
content: "";
display: inline-block;
width: 50px;
height: 2px;
background-color: #EF5100;
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .content-mv{
    width: 81.25%;
    margin: 38px 0 62px auto;
    transform: none;
  }

  #career .content-ttl-eng{
    font-size: min(66px,calc(3.375rem + ((1vw - 7.68px) * 1.0417)));
  }

  #career .content-ttl-jpn{
    padding-left: 6px;
    font-size: min(26px,calc(1.25rem + ((1vw - 12px) * 0.8333)));
  }

  #career .content-ttl{
    width: 78.125%;
    min-width: 1000px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10%);
  }

  #career .message-ttl{
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  #career .message-ttl .strong{
    font-size: 40px;
  }

  #career .message-ttl::after{
    width: 100px;
    bottom: -30px;
  }

  #career .message-text{
    font-size: 18px;
    line-height: 2.7;
    margin: 0;
    padding: 110px 0 65px;
    background-image: url("../images/career/career_bg01_pc@2x.png");
    background-size: 50%;
  }
  
  #career .message-ttl::after{
content: "";
display: inline-block;
width: 50px;
height: 2px;
background-color: #EF5100;
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
}
  
}

/*------------------------------------------------------------
content style
------------------------------------------------------------*/
#career .career-case-bg{
background-color: rgba(251, 214, 211, .5);
}

#career .career-case-wrap{
margin: 0 12px 52px;
}

#career .case-number{
font-size: 20px;
color: #EF5100;
padding-left: 30px;
position: relative;
transform: translateY(-50%);
line-height: 1;
}

#career .case-number .strong{
font-size: 30px;
line-height: 0.6;
padding-left: 10px;
}

#career .case-number::before{
content: "";
display: inline-block;
width: 20px;
height: 1px;
background-color: #EF5100;
position: absolute;
left: 0;
top: 55%;
}

#career .prof-text-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 17px;
  margin-top: 10px;
}

#career .prof-icon{
width: 60px;
height: 60px;
}

#career .prof-text{
padding-left: 15px;
}

#career .prof-name{
font-size: 18px;
font-weight: bold;
}

#career .prof-text-inner{
display: flex;
flex-direction: column;
letter-spacing: .03em;
}

#career .prof-career{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

#career .prof-career-belong, #career .prof-career-career{
font-size: 16px;
font-weight: bold;
}

#career .prof-career-career{
padding-left: 20px;
}

#career .prof-name .strong{
font-size: 20px;
}

#career .prof-work{
display: flex;
font-size: 16px;
font-weight: bold;
}

#career .prof-work-belong{
margin-right: 20px;
}

#career .prof-img{
width: calc(100% + 12px);
text-align: right;
}

#career .case-timeline{
margin-top: -25px;
letter-spacing: .03em;
position: relative;
}

#career .case-timeline::before{
content: "";
display: inline-block;
background-image: linear-gradient(to bottom, #EF5100, #EF5100 5px, transparent 5px, transparent 8px);
background-size: 2px 8px;
background-position: left top;
background-repeat: repeat-y;
position: absolute;
top: 0;
bottom: 0;
right: 0;
pointer-events: none;
left: 105px;
z-index: 50;
transform: translateX(-1px);
}

#career .case-timeline-inner{
background-color: #FFFFFF;
display: flex;
justify-content: flex-start;
margin-bottom: 10px;
border-radius: 5px;
font-size: 16px;
position: relative;
}

#career .case-timeline-inner:first-of-type::before,#career .case-timeline-inner:last-of-type::before{
content: "";
display: inline-block;
width: calc(100% - 20px);
height: 50%;
position: absolute;
background-color: #FFFFFF;
z-index: 50;
left: 10px;
}

#career .case-timeline-inner:first-of-type::before{
top: 0;
}

#career .case-timeline-inner:last-of-type::before{
bottom: 0;
}

#career .case-timeline-year{
max-width: 105px;
width: 100%;
position: relative;
display: flex;
align-items: center;
padding: 11px 0 11px 10px;
z-index: 60;
}

#career .case-timeline-year::after{
content: "";
display: inline-block;
width: 15px;
height: 15px;
border-radius: 50%;
border: solid 4px #EF5100;
background-color: #FFFFFF;
box-sizing: border-box;
position: absolute;
right: 0;
transform: translate(50%, -50%);
top: 50%;
z-index: 60;
}

#career .case-timeline-detail{
padding: 11px 0 11px 20px;
z-index: 60;
}

#career .case-comment{
word-wrap: break-word;
font-size: 15px;
margin: 25px 0 26px;
letter-spacing: .02em;
}

#career .bg-text{
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
text-align: right;
letter-spacing: .03em;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #career .career-case-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 30px;
  }
  
  #career .case-number{
  font-size: 30px;
  padding-left: 60px;
  }
  
  #career .case-number .strong{
  font-size: 40px;
  }
  
  #career .case-number::before{
  width: 40px;
  height: 2px;
  }
  
  #career .case-prof{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  }
  
  #career .prof-icon{
  max-width: 100px;
  max-height: 100px;  
  width: 100%;
  height: 100%;
  }
  
  #career .prof-text{
  padding-left: 20px;
  }
  
  #career .prof-text-wrap{
  flex-wrap: nowrap;
  margin-top: 0;
  }
  
  #career .prof-img{
  width: 33%;
  }
  
  #career .prof-name{
  font-size: 26px;
  }
  
  #career .prof-name .strong{
  font-size: 30px;
  }
  
  #career .prof-work{
  
  font-size: 26px;
  }
  
  #career .prof-work-belong{
  margin-right: 40px;
  }
  
  #career .prof-career-belong, #career .prof-career-career{
  font-size: 26px;
  line-height: 1.5;
  }
  
  #career .prof-career-career{
  padding-left: 40px;
  }
  
  #career .case-timeline{
  max-width: 800px;
  }
  
  #career .case-timeline-inner{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  }
  
  #career .case-timeline-year{
  padding: 23px 30px 23px 30px;
  max-width: 210px;
  }
  
  #career .case-timeline::before{
  left: 210px;
  }
  
  #career .case-timeline-detail{
  padding: 23px 58px 23px 30px;
  }
  
  #career .case-comment{
  font-size: 16px;
  padding-left: 30px;
  padding-right: 20px;
  margin-top: 50px;
  }
  
  #career .bg-text{
  font-size: 50px;
  }
}