@charset "UTF-8";

:root {
  --it25-fontweight-bold: 700;
  --it25-fontweight-medium: 500;
  --it25-l-width: min(100%, 1200px);
  --it25-l-padding-inline: min(calc(60 / 1200 * 100vw), 60px);
  --it25-l-margin-inline: auto;
  --it25-color-1: #00785f;
  --it25-color-black-1: #6e6f71;
}

html {
  scroll-padding-top: 160px;
}

@media screen and (width <=767px) {
  html {
    scroll-padding-top: 38vw;
  }
}

#wrap {
  min-width: 0;
}

.internTop25 {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--it25-color-black-1);
  text-align: left;
}

.internTop25 :where(*),
.internTop25 :where(*::before),
.internTop25 :where(*::after) {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.internTop25 :where(img) {
  max-width: 100%;
  height: auto;
  border: 0;
}

.internTop25 :where(a) {
  color: var(--it25-color-black-1);
}

.it25-disp-pc {
  display: block;
}

.it25-disp-sp {
  display: none;
}

@media screen and (width <= 767px) {
  .it25-disp-pc {
    display: none;
  }

  .it25-disp-sp {
    display: block;
  }
}

/* ----------------------------------------
 * Layout
 * ---------------------------------------- */
.it25-l-inner {
  position: relative;
  width: var(--it25-l-width);
  padding-inline: var(--it25-l-padding-inline);
  margin-inline: var(--it25-l-margin-inline);
}

@media screen and (width <= 767px) {
  .it25-l-inner {
    padding-inline: 0;
  }
}

/* ----------------------------------------
 * Component
 * ---------------------------------------- */
#it25-svg-btn polyline {
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.it25-c-arrow.-color-a {
  background: var(--it25-color-1);
  border-radius: 50%;
}

.it25-c-arrow.-color-a svg {
  color: #fff;
}

.it25-c-arrow.-color-b {
  background: #fff;
  border-radius: 50%;
}

.it25-c-arrow.-color-b svg {
  color: var(--it25-color-1);
}

.it25-hov-op {
  transition: opacity 0.4s;
}

@media (hover: hover) {
  .it25-hov-op:hover {
    opacity: 0.6;
  }
}

.it25-c-balloon {
  width: min(calc(694 / 1200 * 100vw), 694px);
  aspect-ratio: 694/76;
  padding-top: 0.5em;
  margin-inline: auto;
  font-size: min(calc(22 / 1200 * 100vw), 22px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1.5;
  color: var(--it25-color-1);
  text-align: center;
  background: url('/recruiting/intern/local/images/index/balloon_01.svg') no-repeat top center / contain;
}

@media screen and (width <= 767px) {
  .it25-c-balloon {
    width: calc(590 / 750 * 100vw);
    aspect-ratio: 593/140;
    padding-top: 1em;
    font-size: calc(28 / 750 * 100vw);
    font-weight: var(--it25-fontweight-bold);
    background: url('/recruiting/intern/local/images/index/balloon_01_sp.svg') no-repeat top center / contain;
  }
}

.it25-c-sectionTitle {
  position: relative;
  display: block;
  justify-items: center;
  padding-block: 0 calc(25 / 1080 * 100%);
  text-align: center;
}

.it25-c-sectionTitle::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: min(calc(27 / 1200 * 100vw), 27px);
  height: 3px;
  content: '';
  background: var(--it25-color-1);
  translate: -50% 0;
}

.it25-c-sectionTitle_ja {
  display: block;
  font-size: min(calc(40 / 1200 * 100vw), 40px);
  line-height: 1.5;
}

.it25-c-sectionTitle_en {
  display: block;
  margin-block: 0.1em 0;
}

.it25-c-sectionTitle_en img {
  width: auto;
  height: min(calc(13 / 1200 * 100vw), 13px);
}

@media screen and (width <= 767px) {
  .it25-c-sectionTitle {
    padding-block: 0 calc(25 / 750 * 100vw);
  }

  .it25-c-sectionTitle::after {
    width: calc(36 / 750 * 100vw);
    height: 2px;
  }

  .it25-c-sectionTitle_ja {
    font-size: calc(51 / 750 * 100vw);
  }

  .it25-c-sectionTitle_en {
    margin-block: 0;
  }

  .it25-c-sectionTitle_en img {
    height: calc(17 / 750 * 100vw);
  }
}

/* ----------------------------------------
 * Nav
 * ---------------------------------------- */
/* .it25-fixednav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: min(calc(303 / 1200 * 100vw), 303px);
  background: url('/recruiting/intern/local/images/index/bg_ptn_06.webp') repeat left top / 100px auto;
  transition: opacity 0.4s;
}

body[data-page-bottom='1'] .it25-fixednav {
  pointer-events: none;
  opacity: 0;
}

.it25-fixednav::before {
  position: absolute;
  inset: 0;
  content: '';
  background: #fff;
  clip-path: polygon(
    0 1px,
    calc(100% - 2px - min(2.4vw, 28px)) 1px,
    calc(100% - 2px - min(2.4vw, 28px)) calc(2px + min(2.4vw, 28px)),
    calc(100% - 1px) calc(2px + min(2.4vw, 28px)),
    calc(100% - 1px) 1px,
    calc(100% - 1px) calc(100% - 1px),
    0 calc(100% - 1px)
  );
}

.it25-fixednav_header {
  position: relative;
  cursor: pointer;
}

.it25-fixednav_header::after {
  display: block;
  width: 100%;
  height: 7px;
  content: '';
  background: url('/recruiting/intern/local/images/index/bg_ptn_05.webp') repeat left top / 100px auto;
}

.it25-fixednav_toggleBtn {
  position: absolute;
  top: 1px;
  right: 1px;
  display: block;
  width: min(2.4vw, 28px);
  aspect-ratio: 1/1;
  background: url('/recruiting/intern/local/images/index/bg_ptn_05.webp') repeat left top / 100px auto;
}

.it25-fixednav_toggleBtn::before,
.it25-fixednav_toggleBtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: 1px;
  content: '';
  background: #fff;
  translate: -50% -50%;
  transition: opacity 0.4s;
}

.it25-fixednav_toggleBtn::after {
  rotate: 90deg;
}

.it25-fixednav.is-open .it25-fixednav_toggleBtn {
  background: #fff;
}

.it25-fixednav.is-open .it25-fixednav_toggleBtn::before,
.it25-fixednav.is-open .it25-fixednav_toggleBtn::after {
  background: #a7baba;
}

@media (hover: hover) {
  .it25-fixednav_header:hover .it25-fixednav_toggleBtn::before,
  .it25-fixednav_header:hover .it25-fixednav_toggleBtn::after {
    opacity: 0.6;
  }
}

.it25-fixednav_title {
  display: block;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: min(calc(70 / 1200 * 100vw), 70px);
  text-align: center;
  transition: opacity 0.4s;
}

.it25-fixednav_title img {
  width: auto;
  height: min(calc(22 / 1200 * 100vw), 22px);
}

@media (hover: hover) {
  .it25-fixednav_header:hover .it25-fixednav_title {
    opacity: 0.6;
  }
}

.it25-fixednav_accordionContainer {
  height: 0;
  overflow: hidden;
}

ul:has(> li > .it25-fixednav_link) {
  position: relative;
  padding: calc(10 / 303 * 100%) calc(28 / 303 * 100%) calc(18 / 303 * 100%);
}

ul:has(> li > .it25-fixednav_link) > li {
  border-bottom: 1px solid #a7baba;
}

.it25-fixednav_link,
a.it25-fixednav_link {
  position: relative;
  display: block;
  align-content: center;
  height: min(calc(50 / 1200 * 100vw), 50px);
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.5;
  color: var(--it25-color-black-1);
}

.it25-fixednav_link > i {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: min(calc(22 / 1200 * 100vw), 22px);
  height: min(calc(22 / 1200 * 100vw), 22px);
  translate: 0 -50%;
}

.it25-fixednav_link > i svg {
  position: absolute;
  inset: 0;
}

@media screen and (width <= 767px) {
  .it25-fixednav {
    width: calc(342 / 750 * 100vw);
  }

  .it25-fixednav::before {
    clip-path: polygon(
      0 1px,
      calc(100% - 2px - 6.4vw) 1px,
      calc(100% - 2px - 6.4vw) calc(2px + 6.4vw),
      calc(100% - 1px) calc(2px + 6.4vw),
      calc(100% - 1px) 1px,
      calc(100% - 1px) calc(100% - 1px),
      0 calc(100% - 1px)
    );
  }

  .it25-fixednav_header::after {
    height: calc(16 / 750 * 100vw);
  }

  .it25-fixednav_toggleBtn {
    width: 6.4vw;
  }

  .it25-fixednav_title {
    height: calc(86 / 750 * 100vw);
  }

  .it25-fixednav_title img {
    height: calc(28 / 750 * 100vw);
  }

  ul:has(> li > .it25-fixednav_link) {
    padding: calc(10 / 342 * 100%) calc(28 / 342 * 100%) calc(20 / 342 * 100%);
  }

  .it25-fixednav_link,
  a.it25-fixednav_link {
    height: calc(52 / 750 * 100vw);
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.5;
  }

  .it25-fixednav_link > i {
    width: calc(28 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
  }
} */

/* ----------------------------------------
 * Contents - mv
 * ---------------------------------------- */
.it25-mv {
  position: relative;
  width: 100%;
  height: min(calc(630 / 1200 * 100vw), 630px);
}

@media screen and (width <= 767px) {
  .it25-mv {
    height: calc(800 / 750 * 100vw);
  }
}

@media screen and (width > 767px) {
  .it25-mv::before {
    position: absolute;
    top: calc(-884 / 630 * 100%);
    left: 50%;
    display: block;
    height: calc(2161 / 630 * 100%);
    aspect-ratio: 3224/2161;
    pointer-events: none;
    content: '';
    background: url('/recruiting/intern/local/images/index/bg_mv_01.webp') no-repeat left top / auto 100%;
    translate: -53.5% 0;
  }
}

@media screen and (width <= 767px) {
  .it25-mv::before {
    position: absolute;
    /* top: calc(-790 / 750 * 100%); */
    top: 50%;
    right: calc(-1125 / 750 * 100%);
    left: auto;
    display: block;
    width: calc(2804 / 750 * 100%);
    aspect-ratio: 2804/2100;
    pointer-events: none;
    content: '';
    background: url('/recruiting/intern/local/images/index/bg_mv_01_sp.webp') no-repeat left top / contain;
    translate: 0 -56.7%;
  }
}

.it25-mv_container-text {
  padding-top: calc(104 / 1080 * 100%);
}

.it25-mv_title img {
  width: auto;
  height: min(calc(104 / 1200 * 100vw), 104px);
}

.it25-mv_text-1 {
  margin: 1.7em 0 0;
  font-size: min(calc(22 / 1200 * 100vw), 22px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.it25-mv_text-2 {
  margin: 1em 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1.75;
  letter-spacing: 0.05em;
}

@media screen and (width <= 767px) {
  .it25-mv_container-text {
    padding-top: calc(85 / 750 * 100%);
    padding-left: calc(92 / 750 * 100%);
  }

  .it25-mv_title img {
    height: calc(254 / 750 * 100vw);
  }

  .it25-mv_text-1 {
    margin: 1.9em 0 0;
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.7;
    letter-spacing: 0;
  }

  .it25-mv_text-2 {
    margin: 1.1em 0 0;
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.7;
    letter-spacing: 0;
  }
}

.it25-scroll {
  position: absolute;
  bottom: min(calc(35 / 1200 * 100vw), 35px);
  left: 50%;
  z-index: 1;
  display: block;
}

.it25-scroll::after {
  position: absolute;
  top: 0;
  left: min(calc(10 / 1200 * 100vw), 10px);
  display: block;
  width: min(calc(8 / 1200 * 100vw), 8px);
  aspect-ratio: 8/46;
  content: '';
  background: url('/recruiting/intern/local/images/index/text_scroll_01.webp') no-repeat left top / contain;
}

.it25-scroll::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: min(calc(105 / 1200 * 100vw), 105px);
  content: '';
  background: #8c8d8f;
}

@media screen and (width <= 767px) {
  .it25-scroll {
    bottom: calc(135 / 750 * 100vw);
  }

  .it25-scroll::after {
    left: calc(15 / 750 * 100vw);
    width: calc(15 / 750 * 100vw);
  }

  .it25-scroll::before {
    height: calc(205 / 750 * 100vw);
  }
}

/* ----------------------------------------
 * Contents - bg
 * ---------------------------------------- */
.it25-bg-1 {
  position: relative;
}

.it25-bg-1::before {
  position: absolute;
  top: 0;
  bottom: -280px;
  left: 50%;
  width: min(calc(1400 / 1500 * 100%), 1400px);
  pointer-events: none;
  content: '';
  background: url('/recruiting/intern/local/images/index/bg_ptn_01.webp') repeat left top / 100px auto;
  translate: -50% 0;
}

@media screen and (width <= 767px) {
  .it25-bg-1::before {
    bottom: calc(-215 / 750 * 100vw);
    width: 100%;
    background-size: 50px auto;
  }
}

.it25-bg-2 {
  position: relative;
}

.it25-bg-2_1 {
  position: absolute;
  top: min(calc(114 / 1200 * 100vw), 114px);
  left: 50%;
  z-index: -1;
  width: min(calc(1765 / 1500 * 100%), 1765px);
  aspect-ratio: 1765/818;
  pointer-events: none;
  background: url('/recruiting/intern/local/images/index/bg_01.webp') no-repeat center top / contain;
  translate: -20% 0;
}

.it25-bg-2_2 {
  position: absolute;
  top: min(calc(760 / 1200 * 100vw), 760px);
  right: 50%;
  z-index: -1;
  width: min(calc(1602 / 1500 * 100%), 1603px);
  aspect-ratio: 1603/743;
  pointer-events: none;
  background: url('/recruiting/intern/local/images/index/bg_02.webp') no-repeat center top / contain;
  translate: -19% 0;
}

.it25-bg-2_3 {
  position: absolute;
  bottom: max(calc(-178 / 1200 * 100vw), -178px);
  left: 50%;
  z-index: -1;
  width: min(calc(1602 / 1500 * 100%), 1603px);
  aspect-ratio: 1603/743;
  pointer-events: none;
  background: url('/recruiting/intern/local/images/index/bg_03.webp') no-repeat center top / contain;
  translate: 20% 0;
}

@media screen and (width <= 767px) {
  .it25-bg-2_1 {
    top: calc(173 / 750 * 100vw);
    left: calc(-453 / 750 * 100%);
    width: calc(1765 / 750 * 100%);
    translate: 0 0;
  }

  .it25-bg-2_2 {
    top: calc(900 / 750 * 100vw);
    right: auto;
    left: calc(-1051 / 750 * 100%);
    width: calc(1602 / 750 * 100%);
    translate: 0 0;
  }

  .it25-bg-2_3 {
    bottom: calc(-383 / 750 * 100vw);
    left: 0;
    width: calc(1602 / 750 * 100%);
    translate: 0 0;
  }
}

/* ----------------------------------------
 * Section
 * ---------------------------------------- */
.it25-section-nav2 {
  position: relative;
  padding-block: min(calc(100 / 1200 * 100%), 100px) 0;
}

.it25-section-nav2_container {
  position: relative;
  padding: calc(40 / 1080 * 100%) 0;
  margin: calc(20 / 1080 * 100%) 0 0;
}

.it25-section-nav2_container::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  content: '';
  background: url('/recruiting/intern/local/images/index/bg_ptn_05.webp') repeat left top / 100px auto;
  translate: -50% 0;
}

@media screen and (width <= 767px) {
  .it25-section-nav2 {
    padding-block: calc(90 / 750 * 100%) 0;
  }

  .it25-section-nav2_container {
    padding: calc(30 / 750 * 100%) 0;
    margin: calc(20 / 750 * 100%) 0 0;
  }

  .it25-section-nav2_container::before {
    left: 0;
    width: 100%;
    background-size: 50px auto;
    translate: 0 0;
  }
}

.it25-section-01 {
  position: relative;
  padding-block: min(calc(50 / 1200 * 100%), 50px) 0;
}

.it25-section-01_container {
  margin-block: calc(38 / 1080 * 100%) 0;
}

@media screen and (width <= 767px) {
  .it25-section-01 {
    padding-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-01_container {
    margin-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-01_container + .it25-section-01_container {
    margin-block: calc(40 / 750 * 100%) 0;
  }
}

.it25-section-02 {
  position: relative;
  padding-block: min(calc(50 / 1200 * 100%), 50px) 0;
  margin-block: min(calc(50 / 1200 * 100%), 50px) 0;
}

.it25-section-02_container {
  margin-block: calc(50 / 1080 * 100%) 0;
}

@media screen and (width <= 767px) {
  .it25-section-02 {
    padding-block: calc(50 / 750 * 100%) 0;
    margin-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-02_container {
    margin-block: calc(50 / 750 * 100%) 0;
  }
}

.it25-section-news {
  position: relative;
  width: min(100%, 880px);
  padding-block: 0 min(calc(100 / 1200 * 100%), 100px);
  padding-inline: var(--it25-l-padding-inline);
  margin-block: min(calc(100 / 1200 * 100%), 100px) 0;
  margin-inline: var(--it25-l-margin-inline);
}

.it25-section-news_title {
  position: absolute;
  top: 0;
  left: min(calc(60 / 1200 * 100vw), 60px);
}

.it25-section-news_title img {
  width: auto;
  height: min(calc(34 / 1200 * 100vw), 34px);
}

.it25-section-news_container {
  width: calc(565 / 760 * 100%);
  margin: 0 0 0 auto;
}

@media screen and (width <= 767px) {
  .it25-section-news {
    width: 100%;
    padding-block: 0 calc(150 / 750 * 100%);
    padding-inline: 0;
    margin-block: calc(100 / 750 * 100%) 0;
  }

  .it25-section-news_title {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
  }

  .it25-section-news_title img {
    height: calc(50 / 750 * 100vw);
  }

  .it25-section-news_container {
    width: 100%;
    margin: calc(40 / 750 * 100%) 0 0;
  }
}

.it25-section-howto {
  position: relative;
}

.it25-section-howto_inner {
  padding-block: calc(130 / 1080 * 100%) calc(90 / 1080 * 100%);
  background: url('/recruiting/intern/local/images/index/bg_ptn_04.webp') repeat left top / 100px auto;
}

.it25-section-howto_title {
  text-align: center;
}

.it25-section-howto_title img {
  width: auto;
  height: min(calc(34 / 1200 * 100vw), 34px);
}

.it25-section-howto_title-02 {
  margin-block: calc(45 / 1080 * 100%) 0;
}

.it25-section-howto_container {
  margin-block: calc(45 / 1080 * 100%) 0;
}

@media screen and (width <= 767px) {
  .it25-section-howto {
    width: calc(670 / 750 * 100%);
    margin-inline: auto;
  }

  .it25-section-howto_inner {
    padding-block: calc(100 / 690 * 100%);
    background-size: 50px auto;
  }

  .it25-section-howto_title img {
    height: calc(42 / 750 * 100vw);
  }

  .it25-section-howto_title-02 {
    margin-block: calc(50 / 670 * 100%) 0;
  }

  .it25-section-howto_container {
    margin-block: calc(35 / 670 * 100%) 0;
  }
}

.it25-section-voice {
  position: relative;
  padding-block: min(calc(50 / 1200 * 100%), 50px) 0;
  margin-block: min(calc(75 / 1200 * 100%), 75px) 0;
}

.it25-section-voice_title {
  text-align: center;
}

.it25-section-voice_title img {
  width: auto;
  height: min(calc(34 / 1200 * 100vw), 34px);
}

.it25-section-voice_title-02 {
  margin-block: calc(45 / 1080 * 100%) 0;
}

.it25-section-voice_container {
  margin-block: calc(45 / 1080 * 100%) 0;
}

@media screen and (width <= 767px) {
  .it25-section-voice {
    padding-block: calc(50 / 750 * 100%) 0;
    margin-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-voice_title img {
    height: calc(51 / 750 * 100vw);
  }

  .it25-section-voice_title-02 {
    margin-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-voice_container {
    margin-block: calc(35 / 750 * 100%) 0;
  }
}

.it25-section-ig {
  position: relative;
  padding-block: min(calc(50 / 1200 * 100%), 50px) min(calc(150 / 1200 * 100%), 150px);
  margin-block: min(calc(50 / 1200 * 100%), 50px) 0;
}

.it25-section-ig_title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: min(calc(23 / 1200 * 100vw), 23px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1.55;
  color: var(--it25-color-1);
  text-align: center;
}

.it25-section-ig_title::before,
.it25-section-ig_title::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: min(calc(26 / 1200 * 100vw), 26px);
  aspect-ratio: 26/45;
  content: '';
  background: url('/recruiting/intern/local/images/index/line_01.svg') no-repeat center center / contain;
  translate: -140% -50%;
}

.it25-section-ig_title::after {
  inset: 50% 0 auto auto;
  scale: -1 1;
  translate: 140% -50%;
}

.it25-section-ig_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-evenly;
  margin-block: calc(50 / 1080 * 100%) 0;
}

.it25-section-ig_list > li {
  width: calc(314 / 1080 * 100%);
}

.it25-section-ig_container-btn {
  margin-block: calc(45 / 1080 * 100%) 0;
}

@media screen and (width <= 767px) {
  .it25-section-ig {
    padding-block: calc(50 / 750 * 100%) calc(180 / 750 * 100%);
    margin-block: calc(50 / 750 * 100%) 0;
  }

  .it25-section-ig_title {
    font-size: calc(28 / 750 * 100vw);
    font-weight: var(--it25-fontweight-bold);
    line-height: 1.7;
  }

  .it25-section-ig_title::before,
  .it25-section-ig_title::after {
    width: calc(20 / 750 * 100vw);
    aspect-ratio: 20/73;
    background: url('/recruiting/intern/local/images/index/line_01_sp.svg') no-repeat center center / contain;
    translate: -160% -50%;
  }

  .it25-section-ig_title::after {
    translate: 160% -50%;
  }

  .it25-section-ig_list {
    gap: calc(27 / 750 * 100%);
    justify-content: center;
    /* width: calc(670 / 750 * 100%); */
    margin-block: calc(50 / 750 * 100%) 0;
    /* margin-inline: auto; */
  }

  .it25-section-ig_list > li {
    width: calc(205 / 750 * 100%);
  }

  .it25-section-ig_container-btn {
    margin-block: calc(50 / 750 * 100%) 0;
  }
}

/* ----------------------------------------
 * Contents
 * ---------------------------------------- */
.it25-nav2 {
  position: relative;
  display: flex;
  gap: calc(20 / 1080 * 100%);
}

.it25-nav2 > * {
  flex: 1 1 auto;
}

.it25-nav2_list {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: 3px;
}

.it25-nav2_list_title {
  width: 100%;
  padding: 0.5em 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.5;
  color: var(--it25-color-1);
  text-align: center;
  background: url('/recruiting/intern/local/images/index/bg_ptn_02.webp') repeat left top / 100px auto;
}

.it25-nav2_link,
a.it25-nav2_link {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  height: min(calc(50 / 1200 * 100vw), 50px);
  padding-inline: 0.5em min(calc(40 / 1200 * 100vw), 40px);
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.5;
  color: var(--it25-color-black-1);
  text-align: center;
  background: #fff;
}

.it25-nav2_link > i {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: min(calc(22 / 1200 * 100vw), 22px);
  height: min(calc(22 / 1200 * 100vw), 22px);
  translate: -40% -50%;
}

.it25-nav2_link > i svg {
  position: absolute;
  inset: 0;
}

@media screen and (width <= 767px) {
  .it25-nav2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 750 * 100vw);
    width: calc(670 / 750 * 100%);
    margin-inline: auto;
  }

  .it25-nav2_list {
    display: flex;
    flex-flow: row nowrap;
    gap: 1px;
    align-items: stretch;
  }

  .it25-nav2_list_title {
    flex: 0 0 auto;
    align-content: center;
    justify-items: center;
    width: calc(152 / 690 * 100%);
    height: calc(102 / 750 * 100vw);
    padding: 0;
    margin-right: 2px;
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.4;
    text-align: center;
    background-size: 50px auto;
  }

  .it25-nav2_link,
  a.it25-nav2_link {
    flex: 1 1 auto;
    height: auto;
    padding-inline: 0.8em calc(72 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.2;
    text-align: left;
  }

  .it25-nav2_link > i {
    width: calc(40 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    translate: -40% -50%;
  }

  .it25-nav2_link:not(:last-of-type)::after {
    position: absolute;
    inset: 0 -1px 0 auto;
    width: 1px;
    content: '';
    background: #6e6f71;
  }
}

.it25-boxA {
  position: relative;
  padding-top: min(calc(12 / 1200 * 100vw), 12px);
  text-align: left;
}

.it25-boxA_title {
  position: absolute;
  top: 0;
  left: calc(80 / 1080 * 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(300 / 1080 * 100%);
  height: min(calc(60 / 1200 * 100vw), 60px);
  font-size: min(calc(22 / 1200 * 100vw), 22px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1;
  color: var(--it25-color-1);
  background: url('/recruiting/intern/local/images/index/bg_ptn_03.webp') repeat left top / 100px auto;
}

.it25-boxA_title i.it25-boxA_icon-video {
  width: min(calc(32 / 1200 * 100vw), 32px);
  margin-inline: 0 0.6em;
}

.it25-boxA_title i.it25-boxA_icon-workshop {
  width: min(calc(37 / 1200 * 100vw), 37px);
  margin-inline: 0 0.3em;
}

.it25-boxA_title::before {
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  width: min(calc(12 / 1200 * 100vw), 12px);
  aspect-ratio: 1/1;
  content: '';
  background: #000;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.it25-boxA_inner {
  display: grid;
  grid-template-columns: 1fr calc(518 / 920 * 100%);
  padding: calc(80 / 1080 * 100%) calc(80 / 1080 * 100%) calc(60 / 1080 * 100%);
  background: #fff;
}

.it25-boxA_title-02 {
  position: relative;
  display: block;
  padding-block: 0 0.7em;
  font-size: min(calc(22 / 1200 * 100vw), 22px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.6;
  color: var(--it25-color-1);
}

.it25-boxA_title-02 span {
  display: block;
  font-size: 72%;
  font-weight: var(--it25-fontweight-medium);
}

.it25-boxA_title-02::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: min(calc(25 / 1200 * 100vw), 25px);
  height: 2px;
  content: '';
  background: var(--it25-color-1);
}

.it25-boxA_text {
  margin: 1.5em 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1.75;
}

.it25-boxA_text-02 {
  margin: 1em 0 0;
  font-size: min(calc(14 / 1200 * 100vw), 14px);
  font-weight: var(--it25-fontweight-medium);
  line-height: 1.75;
}

.it25-boxA_btn,
a.it25-boxA_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(175 / 1200 * 100vw), 175px);
  height: min(calc(45 / 1200 * 100vw), 45px);
  padding-inline: 0 1em;
  margin: 5% 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1;
  color: #fff;
  background: var(--it25-color-1);
  border-radius: 100vh;
}

.it25-boxA_btn > i {
  position: absolute;
  top: 50%;
  right: 4%;
  display: block;
  width: min(calc(32 / 1200 * 100vw), 32px);
  height: min(calc(32 / 1200 * 100vw), 32px);
  rotate: -90deg;
  translate: 0 -50%;
}

.it25-boxA_btn > i svg {
  position: absolute;
  inset: 0;
}

@media screen and (width <= 767px) {
  .it25-boxA {
    width: calc(590 / 750 * 100%);
    padding-top: calc(28 / 750 * 100vw);
    margin-inline: auto;
  }

  .it25-boxA_title {
    left: 50%;
    width: auto;
    height: calc(77 / 750 * 100vw);
    padding: 0 1em;
    font-size: calc(28 / 750 * 100vw);
    white-space: nowrap;
    background-size: 50px auto;
    translate: -50% 0;
  }

  .it25-boxA_title i.it25-boxA_icon-video {
    width: calc(50 / 750 * 100vw);
    margin-inline: 0 0.6em;
  }

  .it25-boxA_title i.it25-boxA_icon-workshop {
    width: calc(52 / 750 * 100vw);
    margin-inline: 0 0.3em;
  }

  .it25-boxA_title::before {
    width: calc(28 / 750 * 100vw);
  }

  .it25-boxA_inner {
    display: block;
    padding: calc(90 / 590 * 100%) 0 calc(50 / 590 * 100%);
  }

  .it25-boxA_title-02 {
    padding-block: 0 0.8em;
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.5;
    text-align: center;
  }

  .it25-boxA_title-02 span {
    font-size: 100%;
  }

  .it25-boxA_title-02::after {
    left: 50%;
    width: calc(25 / 750 * 100vw);
    height: 2px;
    translate: -50% 0;
  }

  .it25-boxA_text {
    padding-inline: 1em;
    margin: 1.5em 0 0;
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.5;
    text-align: center;
  }

  .it25-boxA_text-02 {
    padding-inline: 1em;
    margin: 1em 0 0;
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.5;
    text-align: center;
  }

  .it25-boxA_btn,
  a.it25-boxA_btn {
    width: calc(250 / 750 * 100vw);
    height: calc(65 / 750 * 100vw);
    padding-inline: 0 1em;
    margin: calc(40 / 590 * 100%) auto;
    font-size: calc(23 / 750 * 100vw);
  }

  .it25-boxA_btn > i {
    right: 4%;
    width: calc(45 / 750 * 100vw);
    height: calc(45 / 750 * 100vw);
  }

  .it25-boxA_img {
    width: calc(520 / 590 * 100%);
    margin: calc(40 / 590 * 100%) auto 0;
  }
}

ul:has(> li .it25-boxB) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(33 / 1080 * 100%);
}

a:has(> .it25-boxB) {
  display: block;
  height: 100%;
}

.it25-boxB {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 0 calc(30 / 338 * 100%);
  color: var(--it25-color-black-1);
  background: #fff;
}

.it25-boxB_header {
  padding: calc(20 / 338 * 100%) 0 0;
  text-align: center;
}

.it25-boxB_title {
  margin-block: 0 0.5em;
  font-size: min(calc(20 / 1200 * 100vw), 20px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.5;
  color: var(--it25-color-1);
}

.it25-boxB_tag {
  display: inline-block;
  padding: 0.2em 1.3em;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.5;
  color: var(--it25-color-1);
  border: 1px solid var(--it25-color-1);
  border-radius: 100vh;
}

.it25-boxB_text {
  padding: 0 calc(30 / 338 * 100%);
  margin: 1em 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.75;
  text-align: justify;
}

.it25-boxB_img {
  position: relative;
}

.it25-boxB_img::after {
  position: absolute;
  inset: 0;
  content: '';
  background: rgb(0 120 95 / 50%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: all 0.4s;
}

@media (hover: hover) {
  .it25-boxB:hover .it25-boxB_img::after {
    opacity: 1;
  }
}

@media screen and (width <= 767px) {
  ul:has(> li .it25-boxB) {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(30 / 750 * 100vw);
    width: calc(590 / 750 * 100%);
    margin-inline: auto;
  }

  a:has(> .it25-boxB) {
    height: auto;
  }

  .it25-boxB {
    display: grid;
    grid-template-columns: calc(282 / 590 * 100%) 1fr;
    height: auto;
    padding: 0 0 calc(35 / 590 * 100%);
  }

  .it25-boxB_header {
    display: block;
    align-content: center;
    justify-items: center;
    padding: 0;
  }

  .it25-boxB_title {
    margin-block: 0 0.2em;
    font-size: calc(28 / 750 * 100vw);
  }

  .it25-boxB_tag {
    padding: 0.05em 1em;
    font-size: calc(23 / 750 * 100vw);
  }

  .it25-boxB_text {
    grid-column: 1/-1;
    padding: 0 calc(40 / 590 * 100%);
    margin: 1.2em 0 0;
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.75;
  }
}

ul:has(> li .it25-news) > li:not(:first-child) {
  margin-block: calc(15 / 565 * 100%) 0;
}

.it25-news {
  position: relative;
  display: grid;
  grid-template-columns: 18% 1fr;
  padding-block: 0 calc(15 / 565 * 100%);
  border-bottom: 2px solid #a7baba;
}

.it25-news_date {
  padding: 0.6em 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1;
}

.it25-news_title {
  font-size: min(calc(22 / 1200 * 100vw), 22px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.6;
}

.it25-news_text {
  grid-column: 1/3;
  margin-block: calc(7 / 565 * 100%) 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.75;
}

@media screen and (width <= 767px) {
  ul:has(> li .it25-news) {
    width: calc(510 / 750 * 100%);
    margin-inline: auto;
  }

  ul:has(> li .it25-news) > li:not(:first-child) {
    margin-block: 0;
  }

  .it25-news {
    grid-template-columns: 26% 1fr;
    padding-block: calc(25 / 510 * 100%) calc(30 / 510 * 100%);
    border-width: 1px;
  }

  .it25-news_date {
    padding: 0.45em 0 0;
    font-size: calc(23 / 750 * 100vw);
  }

  .it25-news_title {
    font-size: calc(26 / 750 * 100vw);
  }

  .it25-news_text {
    margin-block: calc(12 / 510 * 100%) 0;
    font-size: calc(23 / 750 * 100vw);
  }
}

ul:has(> .it25-step) {
  display: grid;
  gap: 8px 0;
  width: calc(850 / 1080 * 100%);
  margin-inline: auto;
}

.it25-step {
  position: relative;
  display: grid;
  grid-template-columns: calc(275 / 850 * 100%) 1fr;
}

.it25-step_header {
  position: relative;
}

.it25-step_header::before {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: calc(100% + min(2.1vw, 26px));
  content: '';
  background: url('/recruiting/intern/local/images/index/bg_ptn_01.webp') repeat left top / 100px auto;
  clip-path: polygon(
    0 0,
    40% 0,
    50% min(2.4vw, 29px),
    60% 0,
    100% 0,
    100% calc(100% - min(2.1vw, 26px)),
    59% calc(100% - min(2.1vw, 26px)),
    50% 100%,
    41% calc(100% - min(2.1vw, 26px)),
    0 calc(100% - min(2.1vw, 26px))
  );
}

ul:has(> .it25-step) > li:first-child .it25-step_header::before {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - min(2.1vw, 26px)),
    59% calc(100% - min(2.1vw, 26px)),
    50% 100%,
    41% calc(100% - min(2.1vw, 26px)),
    0 calc(100% - min(2.1vw, 26px))
  );
}

ul:has(> .it25-step) > li:last-child .it25-step_header::before {
  clip-path: polygon(
    0 0,
    40% 0,
    50% min(2.4vw, 29px),
    60% 0,
    100% 0,
    100% calc(100% - min(2.1vw, 26px)),
    0 calc(100% - min(2.1vw, 26px))
  );
}

.it25-step_container {
  min-height: min(calc(146 / 1200 * 100vw), 146px);
  padding: calc(25 / 575 * 100%) calc(38 / 575 * 100%) calc(20 / 575 * 100%);
  background: #fff;
}

.it25-step_num {
  position: absolute;
  top: 50%;
  left: calc(42 / 275 * 100%);
  width: calc(54 / 275 * 100%);
  line-height: 1;
  translate: 0 -50%;
}

.it25-step_num img {
  width: 100%;
  height: auto;
}

.it25-step_img {
  position: absolute;
  top: 50%;
  right: calc(13 / 275 * 100%);
  width: calc(155 / 275 * 100%);
  translate: 0 -50%;
}

.it25-step_img img {
  width: 100%;
  height: auto;
}

.it25-step_title {
  font-size: min(calc(20 / 1200 * 100vw), 20px);
  font-weight: var(--it25-fontweight-bold);
  line-height: 1.6;
  color: var(--it25-color-1);
}

.it25-step_text {
  margin: 0.5em 0 0;
  font-size: min(calc(16 / 1200 * 100vw), 16px);
  line-height: 1.75;
}

@media screen and (width <= 767px) {
  ul:has(> .it25-step) {
    gap: 1.6vw 0;
    width: calc(590 / 670 * 100%);
  }

  .it25-step {
    grid-template-columns: calc(218 / 590 * 100%) 1fr;
  }

  .it25-step_header {
    justify-items: center;
    padding: calc(45 / 218 * 100%) 0 0;
  }

  .it25-step_header::before {
    height: calc(100% + 4.8vw);
    background-size: 50px auto;
    clip-path: polygon(
      0 0,
      32% 0,
      50% 5.3vw,
      68% 0,
      100% 0,
      100% calc(100% - 4.8vw),
      67% calc(100% - 4.8vw),
      50% 100%,
      33% calc(100% - 4.8vw),
      0 calc(100% - 4.8vw)
    );
  }

  ul:has(> .it25-step) > li:first-child .it25-step_header::before {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 4.8vw),
      67% calc(100% - 4.8vw),
      50% 100%,
      33% calc(100% - 4.8vw),
      0 calc(100% - 4.8vw)
    );
  }

  ul:has(> .it25-step) > li:last-child .it25-step_header::before {
    clip-path: polygon(0 0, 32% 0, 50% 5.3vw, 68% 0, 100% 0, 100% calc(100% - 4.8vw), 0 calc(100% - 4.8vw));
  }

  .it25-step_container {
    min-height: 0;
    padding: calc(30 / 372 * 100%) calc(25 / 372 * 100%) calc(35 / 372 * 100%);
  }

  .it25-step_num {
    position: relative;
    top: 0;
    left: 0;
    width: calc(127 / 218 * 100%);
    margin-inline: auto;
    translate: 0 0;
  }

  .it25-step_img {
    position: relative;
    top: 0;
    right: 0;
    width: 95%;
    margin-inline: auto;
    translate: 0 0;
  }

  .it25-step_title {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.6;
  }

  .it25-step_text {
    margin: 0.5em 0 0;
    font-size: calc(23 / 750 * 100vw);
    line-height: 1.75;
  }
}

.it25-voice {
  position: relative;
  display: block;
}

.it25-voice_hov {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.5s;
}

@media (hover: hover) {
  .it25-voice:hover .it25-voice_hov {
    opacity: 1;
  }
}

@media screen and (width <= 767px) {
  ul:has(> li > .it25-voice) {
    width: calc(670 / 750 * 100%);
    margin-inline: auto;
  }

  .it25-voice_hov {
    display: none;
  }
}

.it25-btn-ig {
  position: relative;
  display: block;
  width: calc(506 / 1080 * 100%);
  aspect-ratio: 506/126;
  margin-inline: auto;
  background: #fff;
  border: 2px solid #6e6f71;
  transition: all 0.5s;
}

.it25-btn-ig::before {
  position: absolute;
  top: 50%;
  left: calc(120 / 506 * 100%);
  width: calc(35 / 506 * 100%);
  aspect-ratio: 1/1;
  content: '';
  background: url('/recruiting/intern/local/images/index/ig_icon_01.png') no-repeat center center / contain;
  translate: 0 -47%;
}

.it25-btn-ig span {
  position: absolute;
  top: 50%;
  left: calc(177 / 506 * 100%);
  display: block;
  width: calc(172 / 506 * 100%);
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(107%) hue-rotate(182deg) brightness(93%)
    contrast(83%);
  translate: 0 -50%;
}

.it25-btn-ig::after {
  position: absolute;
  top: 50%;
  right: calc(30 / 506 * 100%);
  width: calc(64 / 506 * 100%);
  aspect-ratio: 1/1;
  content: '';
  background: url('/recruiting/intern/local/images/index/ig_arrow.png') no-repeat center center / contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(107%) hue-rotate(182deg) brightness(93%)
    contrast(83%);
  translate: 0 -50%;
}

@media (hover: hover) {
  .it25-btn-ig:hover {
    background: #00d752;
    border-color: #00d752;
  }

  .it25-btn-ig:hover::before {
    background-image: url('/recruiting/intern/local/images/index/ig_icon_02.png');
  }

  .it25-btn-ig:hover span {
    filter: none;
  }

  .it25-btn-ig:hover::after {
    filter: none;
  }
}

@media screen and (width <= 767px) {
  .it25-btn-ig {
    width: calc(670 / 750 * 100%);
    aspect-ratio: 670/125;
  }

  .it25-btn-ig::before {
    left: calc(217 / 670 * 100%);
    width: calc(36 / 670 * 100%);
    translate: 0 -40%;
  }

  .it25-btn-ig span {
    left: calc(272 / 670 * 100%);
    width: calc(172 / 670 * 100%);
  }

  .it25-btn-ig::after {
    right: calc(30 / 670 * 100%);
    width: calc(70 / 670 * 100%);
  }
}
