@charset "UTF-8";

/*=======================================

  こちらにLPページの個別cssを記述してください。

=======================================*/

/*****************************************
training共通
******************************************/
#headContent .free {
  line-height: 1.4375;
  font-size: 16px;
}
#headContent .free img {
  width: 100%;
}
.inner {
  position: relative;
  max-width: 1103px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}
.sub-inner {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .sub-inner {
    padding: inherit;
  }
}
.training-txt {
  max-width: 856px;
  width: 100%;
  margin: 113px auto 0;
  padding: 0 20px;
}
.training-ttl {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: normal;
}
sup {
  position: relative;
  font-size: 50%;
}

@media (max-width: 767px) {
  #headContent .free {
    line-height: 1.53;
    font-size: 15px;
  }
  .inner {
    padding: 0 16px;
  }
  .training-txt {
    margin: 54px auto 0;
  }
  .training-ttl {
    margin-bottom: 16px;
    font-size: 20px;
    text-align: center;
  }
}

/* サブアンカー */
.sub-anchor {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.sub-anchor-list {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
}
.sub-anchor-item {
  width: 100%;
  max-width: 160px;
}
.sub-anchor-link {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid var(--sub-border-color);
  color: var(--btn-color)!important;
  background-color: var(--light-color);
}
@media (hover:hover) {
  .sub-anchor-link:hover {
    color: rgba(34, 34, 34, 0.35)!important;
    background-color: var(--sub-line-color);
  }
}
@media (max-width: 767px) {
  .sub-anchor-item {
    max-width: 140px;
    font-size: 14px;
  }
}

/* リスト */
.training-sec {
  padding-bottom: 110px;
}
.training-item {
  display: grid;
  grid-template-columns: clamp(200px,calc(300 / 1103 * 100vw), 300px) 1fr;
  column-gap: 160px;
  align-items: start;
}
.training-item-ttl {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.1em;
}
.training-item-ttl::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(100% + 32px);
  width: 96px;
  height: 1px;
  background: var(--line-color);
}
.training-item-content {
  margin-top: 3px;
}
.training-item-txt span {
  font-weight: bold;
  letter-spacing: -0.04em;
}
.training-item-txt+.training-item-txt {
  margin-top: 17px;
}
.training-item-note {
  margin-top: 24px;
  letter-spacing: -0.03em;
}
.training-item-note li {
  font-size: 14px;
}
.training-item-note li+li {
  margin-top: 5px;
}

/* サブリスト */
.training-sec-sub {
  padding-top: 100px;
}
.training-sub-item {
  display: grid;
  grid-template-columns: clamp(200px, calc(280 / 1103 * 100vw), 280px) 1fr;
  column-gap: 160px;
  align-items: start;
  padding-left: 20px;
}
.training-sub-ttl {
  position: relative;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 500;
}
.training-sub-ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C7C9ED;
}
.training-sub-item-content {
  margin-top: 3px;
}
.training-sub-item-txt+.training-sub-item-txt {
  margin-top: 17px;
}
.training-sub-item-note {
  margin-top: 24px;
  letter-spacing: -0.03em;
}
.training-sub-item-note li {
  font-size: 14px;
}
.training-sub-item-note li+li {
  margin-top: 5px;
}

@media (max-width: 767px) {
  .training-sec {
    padding-bottom: 53px;
  }
  .training-item {
    display: block;
  }
  .training-item-ttl {
    padding-bottom: 26px;
    font-size: 20px;
    text-align: center;
    letter-spacing: normal;
  }
  .training-item-ttl::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 109px;
    height: 1px;
    margin: auto;
  }
  .training-item-content {
    margin-top: 38px;
  }
  .training-item-txt span {
    letter-spacing: normal;
  }
  .training-item-txt+.training-item-txt {
    margin-top: 24px;
  }
  .training-item-note {
    margin-top: 21px;
    letter-spacing: 0;
  }
  .training-item-note li {
    line-height: 1.917;
    font-size: 12px;
  }
  .training-item-note li+li {
    margin-top: 0;
  }

  /* サブリスト */
  .training-sec-sub {
  padding-top: 50px;
  }
  .training-sub-item {
    display: block;
    padding-left: 0;
  }
  .training-sub-ttl {
    font-size: 16px;
  }
  .training-sub-ttl::before {
    top: 10px;
    left: 5px;
    width: 6px;
    height: 6px;
  }
  .training-sub-item-content {
    margin-top: 15px;
  }
  .training-sub-item-txt+.training-sub-item-txt {
    margin-top: 24px;
  }
  .training-sub-item-note {
    margin-top: 21px;
    letter-spacing: 0;
  }
  .training-sub-item-note li {
    line-height: 1.917;
    font-size: 12px;
  }
  .training-sub-item-note li+li {
    margin-top: 0;
  }
}

/*****************************************
研修
******************************************/
#training .training-col3-box {
  position: relative;
  margin-top: 74px;
  z-index: 1;
}
#training .training-col3-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 580px);
  height: 100%;
  background: var(--bg-color-blue);
  z-index: -1;
}
#training .training-col3-box .inner {
  padding: 71px 20px 88px;
  background: var(--bg-color-blue);
}
#training .training-col3-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px 68px;
}
#training .training-col3-lists li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
#training .training-col3-ttl {
  flex-grow: 1;
  line-height: 1.25;
  position: relative;
  padding-bottom: 34px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
#training .training-col3-ttl::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  width: 85%;
  height: 1px;
  margin: auto;
  background: var(--line-color);
}
#training .training-col3-txt {
  margin-top: 46px;
}
#training .training-col3-note {
  font-size: 14px;
  color: #717171;
}

@media (max-width: 767px) {
  #training .training-col3-box {
    margin-top: 49px;
  }
  #training .training-col3-box::before {
    display: none;
  }
  #training .training-col3-lists {
    display: block;
    background: var(--bg-color-blue);
    padding: 65px 16px 60px;
  }
  #training .training-col3-lists li {
    width: 100%;
  }
  #training .training-col3-lists li+li {
    margin-top: 51px;
  }
  #training .training-col3-ttl {
    padding-bottom: 18px;
    font-size: 16px;
  }
  #training .training-col3-ttl::before {
    width: 180px;
  }
  #training .training-col3-txt {
    margin-top: 22px;
  }
  #training .training-col3-note {
    font-size: 12px;
  }
}

/*****************************************
サポート制度
******************************************/
#support .title-section {
  margin-top: 122px;
}
#support .training-txt {
  margin-top: 66px;
}
#support .training-sec:nth-of-type(1) {
  margin-top: 95px;
}
#support .support-bg01 {
  background: url(/lp/training/img/bg_support01_pc.png) no-repeat center center /100% 100%;
}
#support .support-bg02 {
  padding-bottom: 183px;
  background: url(/lp/training/img/bg_support02_pc.png) no-repeat center center /100% 120%;
}

/* 新人スタート支援制度 表 */
#support .support-course {
  display: grid;
  grid-template-columns: clamp(110px, calc(168 / 1200 * 100vw), 168px) repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 0;
}
#support .support-course-side {
  display: grid;
  grid-row: 1 / 4;
  grid-template-rows: subgrid;
  gap: 4px;
}
#support .support-course-side-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 10px;
  background: #E9ECF5;
  text-align: center;
}
#support .support-course-lists-item {
  display: grid;
  grid-row: 1 / 4;
  grid-template-rows: subgrid;
  gap: 4px;
}
#support .support-course-head {
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px 10px;
}
#support .support-course-lists-item:nth-child(2) .support-course-head {
  background: rgba(221,225,255,.4);
}
#support .support-course-lists-item:nth-child(3) .support-course-head {
  background: rgba(221,225,255,.65);
}
#support .support-course-lists-item:nth-child(4) .support-course-head {
  background: rgba(221,225,255,.9);
}
#support .support-course-lists-item:nth-child(5) .support-course-head {
  background: #C9CFFF;
}
#support .support-course-ttl {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}
#support .support-course-ttl span {
  font-size: 12px;
}
#support .support-course-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
#support .support-course-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 103px;
  padding: 24px 20px 19px;
  background: #fff;
  text-align: center;
}
#support .support-course-detail.detail02 {
  padding: 30px 18px;
  text-align: left;
}
#support .support-course-note {
  font-size: 14px;
}
#support .support-course-disc {
  padding-left: 0.8em;
}
#support .support-course-disc li {
  position: relative;
}
#support .support-course-disc li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-color);
}

/* 安心して仕事を続けるために */
#support .support-work {
  margin-top: 110px;
  padding: 0 20px;
  border-top: 1px solid transparent;
}
#support .support-work-lists {
  display: grid;
  grid-template-rows: repeat(3, auto auto);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0 min(calc(24 / 1103 * 100vw), 24px);
  margin-top: 30px;
}
#support .support-work-lists li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: subgrid;
  grid-row: span 2;
  column-gap: 23px;
  padding: 38px clamp(20px,calc(40 / 1103 * 100vw),40px) 34px;
  background: #fff;
}
#support .support-work-lists li:nth-child(1),
#support .support-work-lists li:nth-child(4) {
  padding-top: 44px;
}
#support .support-work-lists li:nth-child(3),
#support .support-work-lists li:nth-child(6) {
  padding-bottom: 41px;
}
#support .support-work-lists li:not(:nth-child(1)):not(:nth-child(4))::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - (clamp(20px,calc(40 / 1103 * 100vw),40px))*2);
  height: 1px;
  margin: 0 auto;
  background: rgba(112,112,112,.3);
}
#support .support-work-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 80px;
  margin-top: 3px;
}
#support .support-work-item-ttl {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #3B4043;
}
#support .support-work-lists li:nth-child(3) .support-work-item-ttl {
  letter-spacing: -0.07em;
}
#support .support-work-txt {
  grid-column: 2;
  grid-row: 2;
  margin-top: 13px;
  padding-right: min(2.5vw,15px);
  color: #6B7281;
}
#support .support-work-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
}

/* 充実したプライベートのために */
#support .support-private {
  position: relative;
  margin-top: 117px;
  padding: 0 20px;
  z-index: 1;
}
#support .support-private-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(calc(24 / 1103 * 100vw), 24px);
  margin-top: 30px;
}
#support .support-private-lists li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 48px 20px 81px;
  background: #fff;
}
#support .support-private-icon {
  width: 96px;
  margin: 0 auto;
}
#support .support-private-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 268px;
  width: 100%;
  margin: 28px auto 0;
  font-size: 20px;
  font-weight: bold;
  color: #3B4043;
  text-align: center;
}
#support .support-private-txt {
  max-width: 268px;
  width: 100%;
  margin: 17px auto 0;
  color: #6B7281;
}

@media (max-width: 767px) {
  #support .title-section {
    margin-top: 58px;
  }
  #support .training-txt {
    margin-top: 53px;
  }
  #support .training-sec:nth-of-type(1) {
    margin-top: 69px;
  }
  #support .support-bg01 {
    background: none;
    padding-bottom: 0;
  }
  #support .support-bg02 {
    position: relative;
    padding-bottom: 112px;
    background: none;
  }
  #support .support-bg02::before {
    content: "";
    position: absolute;
    display: block;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background: url(/lp/training/img/bg_support02_sp.png) no-repeat center center /100% 100%;
    pointer-events: none;
  }

  /* 新人スタート支援制度 表 */
  #support .support-course {
    display: block;
    padding: 20px 16px 0;
    background: url(/lp/training/img/bg_support01_sp.png) no-repeat center center /100% 100%;
  }
  #support .support-course-side {
    display: none;
  }
  #support .support-course-lists-item {
    display: block;
  }
  #support .support-course-lists-item+.support-course-lists-item {
    margin-top: 24px;
  }
  #support .support-course-head {
    min-height: auto;
    padding: 15px 10px 12px;
  }
  #support .support-course-row {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 4px;
    margin-top: 4px;
  }
  #support .support-course-label {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 4px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #e8eaf4;
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
    font-size: 12px;
  }
  #support .support-course-ttl span {
    display: inline-block;
    font-size: 14px;
  }
  #support .support-course-detail {
    min-height: 86px;
    padding: 20px;
  }
  #support .support-course-detail.detail02 {
    padding: 20px;
  }
  #support .support-course-note {
    margin-top: 8px;
    font-size: 12px;
  }

  /* 安心して仕事を続けるために */
  #support .support-work {
    margin-top: 55px;
    padding: 0;
  }
  #support .support-work-lists {
    display: block;
    margin-top: 20px;
  }
  #support .support-work-lists li {
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    padding: 25px 20px 22px;
  }
  #support .support-work-lists li:nth-child(1),
  #support .support-work-lists li:nth-child(4) {
    padding-top: 30px;
  }
  #support .support-work-lists li:nth-child(3),
  #support .support-work-lists li:nth-child(6) {
    padding-bottom: 22px;
  }
  #support .support-work-lists li:nth-child(4) {
    margin-top: 16px;
  }
  #support .support-work-lists li:not(:nth-child(1)):not(:nth-child(4))::before {
    width: calc(100% - 40px);
  }
  #support .support-work-icon {
    width: 64px;
  }
  #support .support-work-item-ttl {
    display: block;
    font-size: 14px;
  }
  #support .support-work-lists li:nth-child(3) .support-work-item-ttl {
    letter-spacing: 0;
  }
  #support .support-work-txt {
    margin-top: 11px;
    padding-right: 0;
    font-size: 14px;
  }
  #support .support-work-note {
    margin-top: 3px;
    font-size: 12px;
  }

  /* 充実したプライベートのために */
  #support .support-private {
    margin-top: 62px;
    padding: 0;
  }
  #support .support-private-lists {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
  #support .support-private-lists li {
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    padding: 30px 20px 20px;
  }
  #support .support-private-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 64px;
  }
  #support .support-private-ttl {
    grid-column: 2;
    display: block;
    max-width: none;
    margin: 0;
    font-size: 14px;
    text-align: left;
  }
  #support .support-private-txt {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin: 10px 0 0;
    font-size: 14px;
  }
}

/*****************************************
注目コンテンツ
******************************************/
#attention.sec-attention {
  position: relative;
  z-index: 1;
  padding-bottom: 3px; /* フォーカス見切れ対策 */
}
#attention .sec-subBody {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1045px;
  margin: 0 auto;
}
#attention .contents-list {
  justify-content: start;
  margin-top: 65px;
  width: 60%;
}

@media (max-width: 767px) {
  #attention .cnt {
    padding: 0 50px;
  }
  #attention .sec-subBody {
    display: block;
  }
  #attention .contents-list {
    width: 100%;
    margin-top: 38px;
    padding: 0 clamp(20px, calc(35 / 375 * 100vw), 35px);
  }
  #attention .contents-card img {
    height: 50vw;
    object-fit: cover;
    object-position: top right;
  }
}