@charset "utf-8";

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

html {
  visibility: hidden;
  color: var(--color-gray);
}


html.wf-active,
html.loading-delay {
  visibility: visible;
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
:root {
  --cont-width: 1100px;
  --cont-width-lg: 1200px;
  --cont-width-sm: 850px;
  --bg-main: #F4F4FF;
  --bg-yellow: #FFFF15;
  --bg-orange: #FF9300;
  --color-black: #000;
  --color-gray: #36394D;
  --color-navyblue: #350AAC;
  --color-blue: #1025C0;
  --color-skyblue: #00B2B9;
  --color-green: #19DD07;
  --color-green02: #7EF774;
  --color-lime: #B6F34E;
  --color-yellow: #E2DA07;
  --color-orange: #FC9100;
  --color-pink: #C43180;
  --color-purple: #B967FF;
  --color-purple02: #EEEEFE;
  --color-white: #FFFFFF;
  --font-futura: "futura-pt", "sans-serif";
  --transition: 0.2s;
}

img.radius {
  border-radius: 34px;
}

.futura {
  font-family: var(--font-futura);
}

.recruit section {
  padding: 100px 0 120px;
  width: 100%;
}

.recruit .inner {
  max-width: var(--cont-width);
  margin: 0 auto;
  padding: 0 20px;
}

.recruit .inner-sm {
  max-width: var(--cont-width-sm);
  margin: 0 auto;
  padding: 0 20px;
}

.recruit .inner-lg {
  max-width: var(--cont-width-lg);
  margin: 0 auto;
  padding: 0 20px;
}

.bg_pattern01 {
  background: url(../img/recruit3/bg_pattern01.svg) center / cover;
}

.bg_pattern02 {
  background: url(../img/recruit3/bg_pattern02.svg) center / cover;
}

.ttl01 {
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.45;
  text-shadow: var(--color-blue) 0 3px 6px;
}

.ttl02 {
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
}

.ttl03 {
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
}

.ttl04 {
  font-size: 20px;
  line-height: 1.25;
}

.ttl05 {
  font-size: 24px;
  line-height: 40px;
}

.ttl06 {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.white {
  color: var(--color-white);
}

p.lead {
  font-size: 15px;
  line-height: 2;
}

.-center {
  text-align: center;
}

.flex_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit .content03 {
  padding: 0;
}

.recruit .content03 .copyright {
  color: var(--color-black);
}

.recruit #footer,
.recruit #breadcrumb {
  min-width: 100%;
}

/*--- CSSアニメーション(下から出現) ---*/
.fadeInBottom {
  opacity: 0;
  animation: fadeInBottom 1.5s ease-in-out forwards;
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInBottom.delay01 {
  transition-delay: 0.1s; 
}

.fadeInBottom.delay02 {
  transition-delay: 0.2s;
}

.fadeInBottom.delay03 {
  transition-delay: 0.3s;
}

.fadeInBottom.delay04 {
  transition-delay: 0.4s;
}

.fadeInBottom.delay05 {
  transition-delay: 0.5s;
}

/*--- CSSアニメーション(ゆっくり出現) ---*/
.fadeIn {
  opacity: 0;
  animation: fadeIn 1s 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn_late {
  opacity: 0;
  animation: fadeIn_late 1s 0.8s ease-in-out forwards;
}

@keyframes fadeIn_late {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールアニメーション用の基本クラス */
.fade-up_js {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up_js.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ディレイクラス */
.delay-01 { transition-delay: 0.1s; }
.delay-02 { transition-delay: 0.2s; }
.delay-03 { transition-delay: 0.3s; }
.delay-04 { transition-delay: 0.4s; }
.delay-05 { transition-delay: 0.5s; }
.delay-06 { transition-delay: 0.6s; }
.delay-07 { transition-delay: 0.7s; }
.delay-08 { transition-delay: 0.8s; }
.delay-09 { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }

.fade-in_js {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.fade-in_js.is-show {
  opacity: 1;
}

/* スライダー内の要素用のアニメーション */
.slider .slick-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slider .slick-slide.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------------------------------------------------
  top
------------------------------------------------------------------------------*/
#tv {
  position: relative;
  padding-top: 0;
  background: url(../img/recruit3/bg_tv.svg) center top / 100% no-repeat;
}

#tv::before {
  position: absolute;
  top: 48.37%;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background: url(../img/recruit3/tv-layer01.svg) center top / cover;
  content: '';
}

.entry-button {
  position: fixed;
  top: 94px;
  right: 30px;
  z-index: 20;
}

.entry-button a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 94px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-blue);
  border-radius: 100%;
  background-color: var(--bg-orange);
  box-shadow: var(--color-blue) 3px 4px 0;
  color: var(--color-navyblue);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.entry-button a:hover {
  opacity: 1;
  transform: translate(3px, 4px);
  box-shadow: none;
  color: inherit;
  transition: var(--transition);
}

.entry-button a span {
  font-size: 16px;
}

.tv-layer {
  position: absolute;
}

.tv-layer.layer02 {
  right: 0;
  z-index: 2;
  width: 55.86%;
  aspect-ratio: 834 / 249;
}

#tv header {
  z-index: 100;
  height: 0 !important;
}

#tv header .white_box {
  background-color: initial;
}

#tv header .navi {
  margin-top: 26px;
}

#tv header .navi li,
#tv header .navi a {
  color: var(--color-black);
}

.tv-img {
  position: absolute;
}

.tv-img img {
  border-radius: 34px;
}

.tv-img.img01 {
  top: 10.23%;
  left: 8.86%;
  z-index: 3;
  width: 12.29%;
  aspect-ratio: 172 / 293;
}

.tv-img.img02 {
  top: 18.97%;
  left: 16.21%;
  z-index: 2;
  width: 17.43%;
  aspect-ratio: 244 / 328;
}

.tv-img.img03 {
  top: 6.37%;
  right: 16.29%;
  z-index: 3;
  width: 17%;
  aspect-ratio: 238 / 323;
}

.tv-img.img04 {
  top: 18.63%;
  right: 8.86%;
  z-index: 4;
  width: 13.07%;
  aspect-ratio: 183 / 276;
}

.tv-img.img05 {
  top: 34.08%;
  right: 18.14%;
  z-index: 5;
  width: 14%;
  aspect-ratio: 196 / 220;
}

.tv-content {
  position: relative;
  z-index: 10;
  padding-top: 225px;
  text-align: center;
}

.yellow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 282px;
  height: 41px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: var(--bg-yellow);
  color: var(--color-navyblue);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
}

#tv span+.lead {
  margin: 55px 0 53px;
  text-shadow: var(--color-blue) 0 3px 2px;
}

.btn_shadow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 329px;
  margin: 0;
  aspect-ratio: 329 / 61;
  border-radius: 25px;
  box-shadow: var(--color-black) 5px 6px 0;
  background-color: var(--color-white);
  color: var(--color-blue);
  font-size: 18px;
  text-align: center;
}

.btn_shadow:hover {
  opacity: 1;
  transform: translate(5px, 6px);
  box-shadow: none;
  color: inherit;
  transition: var(--transition);
}

#tv .btn_shadow {
  max-width: 607px;
  margin: 0 auto;
  aspect-ratio: 607 / 199;
}

#tv .btn_shadow figure {
  position: relative;
  right: -26px;
  bottom: -15px;
  width: 211px;
  aspect-ratio: 211 / 194;
  background: url(../img/recruit3/rep-message_A.png) center / cover;
  transition: var(--transition);
}

#tv .btn_shadow.btn_shadow:hover figure {
  background: url(../img/recruit3/rep-message_B.png) center / cover;
}

#tv .btn_shadow p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 30px;
  line-height: 1.4;
}

#tv .btn_shadow span.underline {
  width: fit-content;
  border-bottom: 3px solid var(--color-lime);
  color: var(--color-gray);
  font-size: 20px;
}

.event {
  position: relative;
  margin-top: 100px;
}

.event::before,
.event::after {
  position: absolute;
  width: 160px;
  height: 54.5px;
  content: '';
}

.event::before {
  top: 0;
  left: 0;
  border-top: solid 1px var(--color-blue);
  border-left: solid 1px var(--color-blue);
}

.event::after {
  right: 0;
  bottom: 0;
  border-right: solid 1px var(--color-blue);
  border-bottom: solid 1px var(--color-blue);
}

.lime-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 121px;
  margin: 0 auto;
  aspect-ratio: 121 / 41;
  background: url(../img/recruit3/lime-icon.svg) center / cover;
  color: var(--color-navyblue);
  font-size: 19px;
  letter-spacing: 0.1em;
}

.event .lime-icon {
  top: -16px;
}

#tv .ttl04 {
  margin: 18px 0;
}

.event .detail {
  display: inline-block;
  position: relative;
  left: -13px;
  margin-top: 27px;
  color: var(--color-navyblue);
  font-size: 17px;
  line-height: 22px;
}

.event .detail::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  width: 16px;
  aspect-ratio: 1 / 1;
  background: url(../img/recruit3/detail-icon.svg) center / cover;
  content: '';
}

.tv-layer.layer03 {
  top: 30.83%;
  left: 0;
  z-index: 4;
  width: 27.07%;
  aspect-ratio: 379 / 473;
}

.tv-layer.layer04 {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 11.07%;
  aspect-ratio: 155 / 259;
}

.bubble {
  position: absolute;
  z-index: 4;
  width: 31px;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  background-color: var(--color-green02);
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

.bubble.bbl01 {
  top: 65%;
  left: 19%;
}

.bubble.bbl02 {
  right: 18.14%;
  bottom: 29.61%;
  animation: fuwafuwa 4s ease-in-out infinite alternate;
}

.bubble.-small {
  width: 14.5px;
}

.bubble.bbl03 {
  right: 23.79%;
  bottom: 25.29%;
  animation: fuwafuwa 2.5s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  50% {
    transform: translate(0, -9px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}


/*--- 結城運輸倉庫のマネジメント部門 #manage-dep ---*/
#manage-dep .lead {
  margin: 26px 0 41px;
}

#manage-dep .flex_area {
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
}

#manage-dep .flex_area li {
  width: 28.82%;
  margin-left: calc((100% - 86.46%) / 2);
}

#manage-dep .flex_area li:nth-of-type(3n+1) {
  margin-left: 0;
}

#manage-dep .btn_shadow {
  aspect-ratio: 245 / 73;
  color: var(--color-black);
}

.shadow01 {
  box-shadow: var(--color-green) 5px 6px 0;
}

.shadow02 {
  box-shadow: var(--color-yellow) 5px 6px 0;
}

.shadow03 {
  box-shadow: var(--color-orange) 5px 6px 0;
}

.shadow04 {
  box-shadow: var(--color-pink) 5px 6px 0;
}

.shadow05 {
  box-shadow: var(--color-skyblue) 5px 6px 0;
}

.shadow06 {
  box-shadow: var(--color-purple) 5px 6px 0;
}

.shadow07 {
  box-shadow: rgba(16, 37, 192, 0.59) 5px 6px 0;
}

.shadow08 {
  box-shadow: var(--color-blue) 5px 6px 0;
}


/*--- 各部門の先輩たちのしごと #seniors-work ---*/
#seniors-work section {
  padding-bottom: 102px;
}

.recruit .slider {
  display: none;
  position: relative;
  margin-top: 68px;
}

.recruit .slider.slick-initialized {
  display: block;
}

.slider button.slick-arrow {
  position: absolute;
  top: 26.5%;
  z-index: 10;
  width: 6.4%;
  max-width: 91px;
  min-width: 65px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-blue);
  border-radius: 100%;
  box-sizing: border-box;
  background-color: #BEF44A;
  font-size: 0;
}

.slider button.slick-arrow.slick-prev {
  left: 20px;
}

.slider button.slick-arrow.slick-next {
  right: 20px;
}

.slider button.slick-arrow::before,
.slider button.slick-arrow::after {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
  transform-origin: 1px 50%;
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--color-blue);
  content: "";
}

.slider button.slick-arrow::before {
  transform: rotate(45deg);
}

.slider button.slick-arrow::after {
  transform: rotate(-45deg);
}

.slider button.slick-arrow.slick-next::before,
.slider button.slick-arrow.slick-next::after {
  left: calc(50% + 8px);
}

.slider button.slick-arrow.slick-next::before {
  transform: rotate(135deg);
}

.slider button.slick-arrow.slick-next::after {
  transform: rotate(-135deg);
}

.slider li.slick-slide {
  margin-left: 0.82%;
}

.slider a {
  display: block;
  width: 100%;
}

.slider a figure {
  width: 100%;
  overflow: hidden;
  border-radius: 34px;
}

.slider a img {
  transition: var(--transition);
}

.slider a:hover img {
  transform: scale(1.08);
}

.slider a dl {
  margin-top: 6.5%;
  line-height: 1.4;
}

.slider a dt {
  font-size: max(15px, 1.18055vw);
}

.slider a dd {
  margin-top: 3%;
  color: var(--color-blue);
  font-size: max(11px, 1.0416vw);
}

.slider a dd span+span {
  margin-left: 16px;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  width: 100%;
}

.slick-dots li {
  position: relative;
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  display: block;
  width: inherit;
  height: inherit;
  padding: 0px;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  background-color: var(--color-green02);
  color: var(--color-black);
  text-align: center;
  content: '';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  background-color: var(--color-blue);
}


/*--- YUKI Recruiting 2026 #yuki-recruiting ---*/
#yuki-recruiting {
  position: relative;
}

.recruiting-layer {
  position: absolute;
}

.recruiting-layer.layer01 {
  top: 0;
  right: 0;
  width: 38.43%;
  aspect-ratio: 538 / 148;
}

.recruiting-layer.layer02 {
  bottom: 0;
  left: 0;
  width: 23.93%;
  aspect-ratio: 335 / 149;
}

#yuki-recruiting .yellow-icon {
  width: 212px;
  height: 31px;
  font-size: 15px;
}

#yuki-recruiting .ttl02 {
  margin: 15px 0 20px;
}

#yuki-recruiting .flex_area {
  column-gap: 5.45%;
  row-gap: 30px;
}

#yuki-recruiting .btn_shadow {
  flex-direction: column;
  aspect-ratio: 329 / 68;
  line-height: 1.25;
}

#yuki-recruiting .btn_shadow span {
  color: var(--color-black);
  font-size: 13px;
  line-height: 1.25;
}

#yuki-recruiting .bubble.bbl01 {
  top: -15.5px;
  right: 21.5%;
  left: auto;
}

#yuki-recruiting .bubble.bbl02 {
  top: auto;
  right: auto;
  bottom: 36px;
  left: 37.79%;
  animation: fuwafuwa 4s ease-in-out infinite alternate;
}

#yuki-recruiting .bubble.bbl03 {
  top: 92px;
  right: auto;
  bottom: initial;
  left: 23.93%;
  animation: fuwafuwa 2.5s ease-in-out infinite alternate;
}

#direct-contact {
  padding: 23px 0 28px;
  text-align: center;
}

#direct-contact a {
  color: var(--color-blue);
}


/*--- 結城運輸倉庫の人材育成について #human-dev ---*/
.bg_c01 {
  background-color: var(--bg-main);
}

#human-dev .flex_area {
  column-gap: 4.71%;
  row-gap: 28px;
  margin-top: 55px;
}

#human-dev .flex_img {
  max-width: 370px;
}

#human-dev .flex_img img {
  border-radius: 34px;
}

#human-dev .btn_shadow {
  margin: 25px 0 0 0;
}


/*--- 結城運輸倉庫をもっと知る #learn-more ---*/
#learn-more .flex_area {
  margin-top: 48px;
}

#learn-more .btn_shadow {
  flex-direction: column;
  max-width: 245px;
  margin: 0 6.76% 0 0;
  aspect-ratio: 245 / 232;
  color: var(--color-black);
}

#learn-more .btn_shadow:last-of-type {
  margin: 0;
}

#learn-more .btn_shadow p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
}


@media screen and (min-width: 1600px) {
  .tv-layer.layer03 {
    top: 35%;
  }

  #tv {
    background-size: cover;
  }
}

@media screen and (max-width: 1000px) {
  #tv {
    background-size: auto;
  }

  #tv header .logo,
  #tv header .navi li {
    margin-right: 10px;
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }

  #tv::before {
    top: 49%;
    background: url(../img/recruit3/sub_tv-layer01.svg), linear-gradient(to bottom, transparent, #EEEEFE);
    background-position: top, bottom;
    background-size: auto, 100%;
    background-repeat: no-repeat;
  }

  .ttl03 {
    font-size: 24px;
  }

  .entry-button {
    top: 48px;
    right: 12px;
  }

  .entry-button a {
    width: 81px;
    font-size: 17px;
  }

  .entry-button a span {
    font-size: 14px;
  }

  .tv-layer.layer02 {
    right: -228px;
    width: 507px;
  }

  .tv-img {
    border-radius: 22px;
  }

  .tv-img.img01 {
    top: 5.49%;
    right: 11.73%;
    left: auto;
    width: 101px;
  }

  .tv-img.img02 {
    top: 24.88%;
    left: -5.87%;
    width: 187px;
  }

  .tv-img.img03 {
    top: 3.13%;
    right: auto;
    left: 12%;
    width: 154px;
  }

  .tv-img.img04 {
    top: 26.78%;
    right: 1.87%;
    width: 118px;
  }

  .tv-img.img05 {
    top: 33.27%;
    right: 12%;
    width: 127px;
  }

  .top .tv-content {
    padding-top: 323px;
  }

  .ttl01 {
    font-size: 41px;
  }

  .yellow-icon {
    width: 234px;
    height: 34px;
    font-size: 16px;
  }

  #tv span+.lead {
    margin: 360px 0 215px;
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 0.01em;
  }

  .flex_area {
    flex-direction: column;
  }

  .btn_shadow {
    margin: 0 auto;
  }

  #tv .btn_shadow {
    flex-direction: column-reverse;
    justify-content: space-between;
    max-width: 400px;
    min-height: 243px;
    padding-top: 42px;
  }

  #tv .btn_shadow p {
    gap: 6px;
    font-size: 24px;
  }

  #tv .btn_shadow span.underline {
    padding-bottom: 1px;
    font-size: 16px;
  }

  #tv .btn_shadow figure {
    bottom: -11px;
    width: 179px;
  }

  .event::before,
  .event::after {
    content: none;
  }

  .event .lead {
    text-align: left;
  }

  .event .detail {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: initial;
    max-width: 329px;
    margin: 18px auto 0;
    aspect-ratio: 329 / 61;
    border: 1px solid var(--color-blue);
    border-radius: 22px;
    color: var(--color-blue);
    font-size: 17px;
  }

  .event .detail::after {
    position: relative;
    display: inline-block;
    top: initial;
    transform: initial;
    right: auto;
    width: 16px;
    margin-left: 10px;
    aspect-ratio: 1 / 1;
    background: url(../img/recruit3/detail-icon.svg) 100% / cover no-repeat;
    content: '';
  }

  .tv-layer.layer03 {
    top: 51.61%;
    width: 204px;
  }

  .bubble.bbl01 {
    top: 59.51%;
    right: 28.8%;
    left: auto;
  }

  .bubble.bbl02 {
    right: 95px;
    bottom: 47.5px;
  }

  .bubble.bbl03 {
    right: 159px;
    bottom: -24px;
  }
  
  .tv-layer.layer04 {
    width: 56px;
  }

  #manage-dep .flex_area li {
    width: 100%;
    margin: 0 auto !important;
  }

  #manage-dep .btn_shadow {
    aspect-ratio: 326 / 73;
  }

  .recruit .slider {
    padding-bottom: 52px;
  }

  .slider a dd {
    letter-spacing: 0;
  }

  .slider a dd span+span {
    margin-left: 4px;
  }

  ul.slick-dots {
    bottom: 0;
  }

  #human-dev .flex_img {
    max-width: 450px;
  }

  #human-dev .btn_shadow {
    margin: 36px auto 0;
  }

  .recruiting-layer.layer01 {
    right: -319px;
    width: 507px;
  }

  .recruiting-layer.layer02 {
    width: 270px;
  }

  #yuki-recruiting {
    padding: 190px 0 220px;
  }

  #yuki-recruiting .ttl02 {
    margin-bottom: 30px;
  }

  #yuki-recruiting .bubble.bbl02 {
    right: 11.47%;
    bottom: 106px;
    left: auto;
  }

  #learn-more .btn_shadow {
    margin: 0 0 32px;
  }
}


/*------------------------------------------------------------------------------
  message
------------------------------------------------------------------------------*/
.sub #tv::before {
  top: 203px;
  background: url(../img/recruit3/sub_tv-layer01.svg), linear-gradient(to bottom, transparent, #EEEEFE);
  background-position: top, bottom;
  background-size: 100%, 100%;
  background-repeat: no-repeat;
}

#message {
  margin-top: 216px;
  padding-bottom: 50px;
}

#message .ttl03 {
  margin: 0 0 74px 0;
  color: var(--color-blue);
}

.sub_lead {
  font-size: 15px;
  line-height: 34px;
}

.sub_lead+.sub_lead {
  margin-top: 49px;
}

#message .ttl05 {
  margin: 78px 0 51px;
  color: var(--color-blue);
}

#message .rep-img_lg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 80px auto 0;
}

#message .rep-img_sm {
  max-width: 265px;
  margin: 112px auto 0;
}

#message .rep-sign {
  max-width: 179px;
  margin: 20px auto 0;
  background-color: var(--color-purple02);
}

#message .rep-sign img {
  mix-blend-mode: multiply;
}

.sub .tv-layer.layer03 {
  top: 51px;
}

.sub .bubble.bbl01 {
  top: 551px;
  left: 16.21%;
}

.sub .bubble.bbl02 {
  top: 403px;
  right: 18.14%;
  bottom: auto;
}

.sub .bubble.bbl03 {
  top: 502px;
  right: 23.79%;
  bottom: auto;
}

.sub .bubble.bbl04 {
  bottom: 36.29%;
  right: 15.86%;
}

.sub .bubble.bbl05 {
  bottom: 382px;
  left: 13.57%;
}

#direct-contact .tel {
  display: none;
}

.recruit .to-top {
  padding: 61px 0 77px;
  background-color: var(--bg-main);
}

.recruit .to-top a {
  margin: 0 auto;
}

@media screen and (min-width: 2000px) {
  .sub #tv::before {
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .sub #tv::before {
    top: 100px;
    background-size: auto, 100%;
  }

  #message {
    margin-top: 251px;
    padding-bottom: 0;
  }

  #message .ttl03 {
    margin-bottom: 48px;
  }

  #message .sub_lead {
    text-align: left;
  }

  #message .rep-img_lg {
    width: 720px;
  }

  #message .rep-img_sm {
    width: 180px;
    margin: 100px auto 0;
  }

  #message .rep-sign {
    margin-top: 0;
  }

  .sub .tv-layer.layer03 {
    top: 143px;
    width: 204px;
  }

  .sub .tv-content {
    padding-top: 143px;
  }

  .sub .bubble.bbl01 {
    top: 26%;
  }

  .sub .bubble.bbl02 {
    top: 247px;
    right: 22px;
  }

  .sub .bubble.bbl03 {
    top: 346px;
    right: 101px;
  }

  #direct-contact {
    padding: 67px 0 69px;
  }

  #direct-contact .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 329px;
    margin: 18px auto 0;
    aspect-ratio: 329 / 61;
    border: 1px solid var(--color-blue);
    border-radius: 22px;
    color: var(--color-blue);
    font-size: 17px;
  }

  #direct-contact .tel::before {
    display: inline-block;
    width: 15px;
    padding-right: 10px;
    aspect-ratio: 1 / 1;
    background: url(../img/recruit3/tel-icon.svg) no-repeat;
    content: '';
  }

  .recruit .to-top {
    padding: 89px 0 110px;
  }
}

@media screen and (max-width: 500px) {
  #message .rep-img_lg {
    left: 40%;
  }
}


/*------------------------------------------------------------------------------
  department
------------------------------------------------------------------------------*/
#department {
  margin-top: 232px;
}

.dep_sub-ttl {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

#department .ttl02 {
  margin-bottom: 70px;
  color: var(--color-blue);
  font-family: 'tbudgothic-std';
}

/*--- 主な仕事内容 ---*/
.sub .white_wrap {
  padding: 62px 65px 85px;
  border-radius: 34px;
  background-color: var(--color-white);
}

#department .ttl05 {
  position: relative;
  margin-bottom: 55px;
}

#department .ttl05::before {
  display: inline-block;
  position: absolute;
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 6px;
  border-radius: 5px;
  background: var(--color-green02);
  content: "";
}

#department .sub_lead {
  text-align: left;
}

#department .sub_lead+.ttl05 {
  margin-top: 61px;
}

.lime-icon.-large {
  width: 243px;
  margin-bottom: 35px;
  aspect-ratio: 243 / 41;
  background-size: 100%;
}

/*--- SENPAI interview ---*/
.to-interview {
  margin: 63px 0 70px;
}

.to-interview a {
  display: block;
  position: relative;
}

.to-interview .flex_area {
  gap: 27px;
  text-align: left;
}

.to-interview .flex_img {
  flex-shrink: 0;
  width: 322px;
  aspect-ratio: 322 / 182;
  overflow: hidden;
  border-radius: 34px;
}

.to-interview .flex_img img {
  transition: var(--transition);
}

.to-interview a:hover .flex_img img {
  transform: scale(1.08);
}

.to-interview dl dt {
  font-size: 24px;
  line-height: 1.45;
}

.to-interview dl dd {
  color: var(--color-blue);
  font-size: 15px;
}

.to-interview dd span+span {
  margin-left: 16px;
}

/*--- ある一日のスケジュール ---*/
#daily-schedule {
  text-align: left;
}

#daily-schedule .ttl03 {
  color: var(--color-blue);
}

#daily-schedule .ttl06 {
  margin-top: 10px;
}

#daily-schedule dl {
  display: flex;
  gap: 13px;
  font-size: 15px;
  line-height: 1.5;
}

#daily-schedule dl:first-of-type {
  margin-top: 58px;
}

#daily-schedule dl+dl {
  margin-top: 21px;
}

#daily-schedule dl dd {
  display: flex;
  gap: 17px;
  position: relative;
}

#daily-schedule dl dd::before {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  top: 0.65rem;
  width: 66px;
  height: 3px;
  background-color: var(--color-green02);
  content: '';
}

/*--- 他の部のしごとを見る ---*/
.sub #manage-dep {
  position: relative;
}

.sub #manage-dep .ttl03 {
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 28px;
}

.sub #manage-dep .btn_shadow {
  border: 1px solid var(--color-blue);
}

.sub #manage-dep .bubble.bbl01 {
  top: 48px;
}

.sub #manage-dep .bubble.bbl02 {
  top: 108px;
  bottom: auto;
  left: 30%;
}

@media screen and (max-width: 768px) {
  #department {
    margin-top: 252px;
  }

  #department .ttl02 {
    font-size: 34px;
  }

  /*--- 主な仕事内容 ---*/
  .sub .white_wrap {
    padding: 62px 15.5px 54px;
  }

  /*--- SENPAI interview ---*/
  #department .lime-icon {
    margin-bottom: 68px;
  }

  .to-interview {
    margin-top: 100px;
  }

  .to-interview dl dt {
    margin-bottom: 5px;
    font-size: 20px;
  }

  /*--- ある一日のスケジュール ---*/
  #daily-schedule dl {
    flex-direction: column;
    gap: 10px;
  }

  #daily-schedule dl dt {
    font-size: 18px;
  }

  #daily-schedule dl dd {
    gap: 9px;
  }

  #daily-schedule dl dd::before {
    width: 21px;
  }

  /*--- 他の部のしごとを見る ---*/
  .sub #manage-dep {
    padding: 140px 0;
  }

  .sub #manage-dep .bubble.bbl01 {
    top: 24px;
    left: 22px;
  }

  .sub #manage-dep .bubble.bbl02 {
    top: 85px;
    left: 52%;
  }
}


/*------------------------------------------------------------------------------
  interview
------------------------------------------------------------------------------*/
.sub.interview #tv {
  padding-bottom: 0;
}

#interview .ttl_wrap {
  margin: 179px auto 31px;
}

#interview .ttl02 {
  color: var(--color-blue);
  font-size: 34px;
  line-height: 40px;
  text-align: left;
}

#interview .sub_lead {
  margin-top: 3px;
  text-align: left;
}

@media screen and (min-width: 769px) {
  #interview>figure img {
    max-height: 639px;
    object-fit: contain;
  }
}

#interview .white_wrap {
  position: relative;
  top: -65px;
  text-align: left;
}

#interview .white_wrap dt {
  position: relative;
  font-size: 17px;
  line-height: 2;
}

#interview .white_wrap dt::before {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 20px;
  height: 6px;
  margin-right: 10px;
  border-radius: 5px;
  background: var(--color-green02);
  content: "";
}

#interview .white_wrap .sub_lead {
  margin-top: 35px;
}

#interview .white_wrap dl+dl {
  margin-top: 50px;
}

#interview .white_wrap dl+p {
  max-width: 377px;
  margin: 58px auto 51px;
  aspect-ratio: 377 / 262;
}

#interview .bubble.bbl04 {
  top: 1150px;
  right: 24.79%;
  bottom: auto;
}

#interview .sidelines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  position: relative;
  margin-top: 82px;
  color: var(--color-blue);
  font-size: 17px;
  line-height: 2;
}

#interview .sidelines::before,
#interview .sidelines::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue);
  content: '';
}

#interview .sidelines span {
  flex-shrink: 0;
}

#interview .sidelines+p {
  position: relative;
  max-width: 266px;
  margin: 41px auto 35px;
  aspect-ratio: 266 / 190;
}

#interview p .bbl05 {
  top: -12px;
  right: -5px;
  bottom: auto;
  left: auto;
}

#interview p .bbl06 {
  bottom: 63px;
  left: -31.5px;
}

/*--- 他の部署の先輩インタビュー ---*/
.sub.interview #seniors-work {
  padding-top: 27px;
  background-color: var(--color-purple02);
}

@media screen and (max-width: 768px) {
  #interview .ttl_wrap {
    margin: 234px 0 13px;
  }

  #interview .ttl02 {
    font-size: 24px;
    line-height: 34px;
  }

  #interview>figure img {
    height: 397px;
    object-fit: cover;
    /* object-position: 68%; */
  }

  #interview .white_wrap {
    top: -18px;
    padding-top: 46px;
  }

  #interview .white_wrap dt {
    display: flex;
  }

  #interview .white_wrap dt::before {
    top: 14px;
  }

  #interview .bubble.bbl04 {
    top: 939px;
    width: 14.5px;
  }

  #interview .white_wrap dl+p {
    position: relative;
    left: 6%;
    width: calc(96.8% + 67px);
    max-width: initial;
  }

  #interview .sidelines {
    gap: 8px;
    margin-top: 56px;
  }

  #interview .sidelines+p {
    max-width: 215px;
    margin-top: 27px;
  }

  /*--- 他の部署の先輩インタビュー ---*/
  .sub.interview #seniors-work {
    padding-top: 59px;
  }

  .sub #seniors-work .ttl05 {
    font-size: 20px;
    line-height: 28px;
  }
}


/*------------------------------------------------------------------------------
  training
------------------------------------------------------------------------------*/
#training {
  margin-top: 216px;
}

#training .ttl03 {
  margin-bottom: 19px;
  color: var(--color-blue);
}

#training .white_wrap {
  margin-top: 61px;
  padding: 49px 65px 92px;
}

#training .ttl_icon {
  display: block;
  width: 51px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

#training .ttl05 {
  margin: 2px auto 13px;
}

#training .white_wrap .sub_lead {
  text-align: left;
}

#training .white_wrap .flex_area {
  column-gap: 5.56%;
  row-gap: 15px;
  margin-top: 23px;
  ;
}

#training .flex_area+.ttl_icon,
#training .img_solo+.ttl_icon {
  margin-top: 50px;
}

#training .white_wrap .radius {
  border-radius: 25px;
}

#training .white_wrap .sub_lead+.ttl_icon {
  margin-top: 30px;
}

#training .white_wrap .img_solo {
  max-width: 340px;
  margin: 23px auto 0;
}

@media screen and (max-width: 768px) {
  #training {
    margin-top: 251px;
  }

  #training>.sub_lead {
    text-align: left;
  }

  #training .white_wrap {
    margin-top: 59px;
    padding: 60px 15.5px 72px;
  }
}


/*------------------------------------------------------------------------------
  guideline
------------------------------------------------------------------------------*/
/* 募集要項 */
#guideline {
  margin-top: 225px;
}

#guideline .ttl02 {
  margin-bottom: 65px;
  color: var(--color-blue);
}

.tbl_guideline {
  width: 100%;
  font-size: 15px;
  text-align: left;
}

.tbl_guideline tr {
  border-bottom: 1px solid var(--color-gray);
}

.tbl_guideline tr:last-of-type {
  border-bottom: 0;
}

.tbl_guideline tr>* {
  padding: 20px 0;
}

.tbl_guideline tr:first-of-type>* {
  padding-top: 0;
}

.tbl_guideline tr:last-of-type>* {
  padding-bottom: 0;
}

.tbl_guideline th {
  width: 22%;
  padding-right: 10px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .tbl_guideline {
    font-size: 14px;
  }

  .tbl_guideline th {
    width: 25%;
    padding-right: 10px;
    font-size: 15px;
  }
}
