@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #1C1C1C;
  font-feature-settings: "palt";
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 800;
  font-feature-settings: "palt";
}

.en {
  font-family: "Inter Tight", sans-serif;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
}

/* 業務の流れ・ノイズ背景（img/common 書き出し） */
/* 業務の流れ・左ラベル下向きV（企画・設計・開発のみ。margin 負の値＝Vの深さ。z-index は上段を大きくして三角が下段に隠れないようにする） */
/* 仕事紹介（ページ内リンク）
--------------------------------------------------*/
#job-intro-links {
  padding: 100px 0;
}
@media screen and (max-width: 999px) {
  #job-intro-links {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  #job-intro-links {
    padding: 60px 0;
  }
}
#job-intro-links .wrap_job_intro_links {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #job-intro-links .wrap_job_intro_links {
    flex-direction: column;
  }
}
#job-intro-links .job_intro_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: opacity 0.3s ease;
}
#job-intro-links .job_intro_card:hover {
  opacity: 0.6;
}
#job-intro-links .job_intro_card .job_intro_card_top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  align-self: stretch;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #job-intro-links .job_intro_card .job_intro_card_top {
    padding: 22px 18px;
    gap: 12px;
  }
}
#job-intro-links .job_intro_card .job_intro_card_top .job_intro_title {
  font-size: clamp(2.8rem, 2.8vw, 3.2rem);
  color: #CE1B21;
  text-align: center;
}
@media screen and (max-width: 999px) {
  #job-intro-links .job_intro_card .job_intro_card_top .job_intro_title {
    font-size: clamp(2.4rem, 6.15vw, 2.8rem);
  }
}
#job-intro-links .job_intro_card .job_intro_card_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #BA0F15, #E72A31);
  padding: 6px 0;
}
#job-intro-links .job_intro_card .job_intro_card_bottom .job_intro_detail {
  color: #fff;
  display: inline-block;
}

/* 詳細エリア追従ナビ（#job_detail_it_consultant / #job_detail_sales_marketing 内で表示） */
.job_detail_sticky_nav {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: #fff;
  border-bottom: 1px solid #DFDFDF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}
@media screen and (max-width: 999px) {
  .job_detail_sticky_nav {
    top: 60px;
  }
}
.job_detail_sticky_nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.job_detail_sticky_nav__inner {
  display: flex;
  gap: 0;
  min-height: 48px;
}
.job_detail_sticky_nav__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1C1C1C;
  text-align: center;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .job_detail_sticky_nav__link {
    padding: 10px 6px;
    font-size: 1.2rem;
  }
}
.job_detail_sticky_nav__link:hover {
  color: #CE1B21;
  background-color: #EDEDED;
}
.job_detail_sticky_nav__link.is-current {
  color: #CE1B21;
  border-bottom-color: #CE1B21;
  background-color: #EDEDED;
}

/* アンカー先（後続で詳細セクションを実装するためのダミー） */
.job_detail_anchor {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ITコンサルタント詳細
--------------------------------------------------*/
#job_detail_it_consultant,
#job_detail_sales_marketing {
  background-color: #fff;
  padding-top: 80px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant,
  #job_detail_sales_marketing {
    padding-top: 60px;
  }
}
#job_detail_it_consultant .it_intro,
#job_detail_sales_marketing .it_intro {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_intro,
  #job_detail_sales_marketing .it_intro {
    margin-bottom: 40px;
  }
}
#job_detail_it_consultant .it_intro .it_intro_txt,
#job_detail_sales_marketing .it_intro .it_intro_txt {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
#job_detail_it_consultant .it_block.--first, #job_detail_it_consultant .it_block.--second,
#job_detail_sales_marketing .it_block.--first,
#job_detail_sales_marketing .it_block.--second {
  margin-bottom: 80px;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_block.--first, #job_detail_it_consultant .it_block.--second,
  #job_detail_sales_marketing .it_block.--first,
  #job_detail_sales_marketing .it_block.--second {
    margin-bottom: 60px;
  }
}
#job_detail_it_consultant .it_block .it_scope_cards,
#job_detail_sales_marketing .it_block .it_scope_cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card {
  position: relative;
  background: #EDEDED;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px 20px 20px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_block .it_scope_cards .it_scope_card,
  #job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .it_scope_media,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .it_scope_media {
  flex: 0 0 316px;
  width: 316px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .it_scope_media,
  #job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .it_scope_media {
    width: 100%;
    flex: none;
    height: auto;
    aspect-ratio: 316.67/200;
  }
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .it_scope_media img,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .it_scope_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .it_scope_body,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .it_scope_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 130px;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .it_scope_body,
  #job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .it_scope_body {
    padding-right: 0;
    gap: 12px;
  }
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .num,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .num {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 90px;
  width: auto;
  z-index: 1;
  image-rendering: -moz-crisp-edges;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_block .it_scope_cards .it_scope_card .num,
  #job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card .num {
    height: 60px;
  }
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card h4,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card h4 {
  margin: 0;
  font-size: clamp(2.4rem, 3.01vw, 3rem);
  line-height: 1.5;
  color: #CE1B21;
}
#job_detail_it_consultant .it_block .it_scope_cards .it_scope_card p,
#job_detail_sales_marketing .it_block .it_scope_cards .it_scope_card p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
}
#job_detail_it_consultant,
#job_detail_sales_marketing {
  /* 業務の流れ（Figma Frame 1509 / 26222:834） */
}
#job_detail_it_consultant .it_flow_wrap,
#job_detail_sales_marketing .it_flow_wrap {
  border-radius: 8px;
  overflow: hidden;
  background-color: #EDEDED;
}
#job_detail_it_consultant .it_flow_inner,
#job_detail_sales_marketing .it_flow_inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_inner,
  #job_detail_sales_marketing .it_flow_inner {
    flex-direction: column;
  }
}
#job_detail_it_consultant .it_flow_diagram,
#job_detail_sales_marketing .it_flow_diagram {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 100px;
  align-self: stretch;
  min-height: clamp(320px, 70vw, 976px);
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_diagram,
  #job_detail_sales_marketing .it_flow_diagram {
    flex-direction: row;
    width: 100%;
    min-height: 0;
    height: auto;
  }
}
#job_detail_it_consultant .it_flow_seg,
#job_detail_sales_marketing .it_flow_seg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 0;
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_seg,
  #job_detail_sales_marketing .it_flow_seg {
    flex: 1 1 0;
    min-height: 64px;
    margin-top: 0 !important;
    margin-left: -14px;
  }
  #job_detail_it_consultant .it_flow_seg:first-child,
  #job_detail_sales_marketing .it_flow_seg:first-child {
    margin-left: 0;
  }
}
#job_detail_it_consultant .it_flow_seg--plan,
#job_detail_sales_marketing .it_flow_seg--plan {
  flex-grow: 258;
  z-index: 4;
  background-color: #D72229;
  background-image: url("../img/common/noise_red.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* 下辺＝左右角から中央へ直線（長方形下辺と三角の斜辺が連続） */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_seg--plan,
  #job_detail_sales_marketing .it_flow_seg--plan {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  }
}
#job_detail_it_consultant .it_flow_seg--design,
#job_detail_sales_marketing .it_flow_seg--design {
  flex-grow: 258;
  z-index: 3;
  margin-top: -14px;
  background-color: #3C3435;
  background-image: url("../img/common/noise_black.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_seg--design,
  #job_detail_sales_marketing .it_flow_seg--design {
    margin-top: 0 !important;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  }
}
#job_detail_it_consultant .it_flow_seg--dev,
#job_detail_sales_marketing .it_flow_seg--dev {
  flex-grow: 258;
  z-index: 2;
  margin-top: -14px;
  background-color: #717171;
  background-image: url("../img/common/noise_gray.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
}
@media screen and (max-width: 999px) {
  #job_detail_it_consultant .it_flow_seg--dev,
  #job_detail_sales_marketing .it_flow_seg--dev {
    margin-top: 0 !important;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  }
}
#job_detail_it_consultant .it_flow_seg--support,
#job_detail_sales_marketing .it_flow_seg--support {
  flex-grow: 244;
  z-index: 1;
  margin-top: -14px;
  background-color: #B2B2B2;
  background-image: url("../img/common/noise_light-gray.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#job_detail_it_consultant .it_flow_seg .it_flow_seg_lbl,
#job_detail_sales_marketing .it_flow_seg .it_flow_seg_lbl {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_flow_seg .it_flow_seg_lbl,
  #job_detail_sales_marketing .it_flow_seg .it_flow_seg_lbl {
    font-size: clamp(1.6rem, 4.61vw, 2rem);
  }
}
#job_detail_it_consultant .it_flow_groups,
#job_detail_sales_marketing .it_flow_groups {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
#job_detail_it_consultant .it_flow_group,
#job_detail_sales_marketing .it_flow_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background-color: #EDEDED;
  border-bottom: 1px solid #DFDFDF;
}
#job_detail_it_consultant .it_flow_group--last,
#job_detail_sales_marketing .it_flow_group--last {
  border-bottom: 0;
}
#job_detail_it_consultant .it_flow_row,
#job_detail_sales_marketing .it_flow_row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_flow_row,
  #job_detail_sales_marketing .it_flow_row {
    flex-direction: column;
  }
}
#job_detail_it_consultant .it_flow_num,
#job_detail_sales_marketing .it_flow_num {
  flex-shrink: 0;
  width: 102px;
  min-height: 102px;
  display: grid;
  place-items: center;
  border-radius: 8px 0 0 8px;
}
#job_detail_it_consultant .it_flow_num .en,
#job_detail_sales_marketing .it_flow_num .en {
  font-size: 3.6rem;
  color: #fff;
  transform: inherit;
}
#job_detail_it_consultant .it_flow_num--red,
#job_detail_sales_marketing .it_flow_num--red {
  background-color: #D72229;
  background-image: url("../img/common/noise_red.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#job_detail_it_consultant .it_flow_num--dark,
#job_detail_sales_marketing .it_flow_num--dark {
  background-color: #3C3435;
  background-image: url("../img/common/noise_black.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#job_detail_it_consultant .it_flow_num--gray,
#job_detail_sales_marketing .it_flow_num--gray {
  background-color: #717171;
  background-image: url("../img/common/noise_gray.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#job_detail_it_consultant .it_flow_num--light,
#job_detail_sales_marketing .it_flow_num--light {
  background-color: #B2B2B2;
  background-image: url("../img/common/noise_light-gray.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_flow_num,
  #job_detail_sales_marketing .it_flow_num {
    width: 100%;
    min-height: 40px;
    border-radius: 8px 8px 0 0;
  }
  #job_detail_it_consultant .it_flow_num .en,
  #job_detail_sales_marketing .it_flow_num .en {
    font-size: 2.2rem;
  }
}
#job_detail_it_consultant .it_flow_body,
#job_detail_sales_marketing .it_flow_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_flow_body,
  #job_detail_sales_marketing .it_flow_body {
    border-radius: 0 0 8px 8px;
    padding: 15px;
  }
}
#job_detail_it_consultant .it_flow_body h4,
#job_detail_sales_marketing .it_flow_body h4 {
  font-size: 2.4rem;
  color: #CE1B21;
}
#job_detail_it_consultant .it_flow_body p,
#job_detail_sales_marketing .it_flow_body p {
  color: #1C1C1C;
}
#job_detail_it_consultant .it_flow_note,
#job_detail_sales_marketing .it_flow_note {
  font-size: 1.4rem;
  text-align: right;
  color: #888484;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #job_detail_it_consultant .it_flow_note,
  #job_detail_sales_marketing .it_flow_note {
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
  }
}

#job_detail_sales_marketing {
  padding: 120px 0 140px;
}
@media screen and (max-width: 999px) {
  #job_detail_sales_marketing {
    padding: 80px 0;
  }
}/*# sourceMappingURL=jobs.css.map */