@charset "UTF-8";

/*
	##### DNP RECRUITING #####
	/recruit/newgraduates/shared/css/style_pc.css
*/

/* --------------------------------------------------
init (override)
-------------------------------------------------- */

html {
  font-size: 62.5%;
  overflow: hidden;
  overflow-y: scroll
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  line-height: 1;
  font-weight: 400;
  color: #000;
  height: 100%;
  overflow: visible; /* override for sticky */
}

img {
	vertical-align: bottom;
	outline: none;
  pointer-events: none;
}
sup {
	font-size: 60%
}

.l-head {
	background-color: #fff
}

a {
  color: currentColor;
  text-decoration: none;
  outline: none
}

html.open,
.open body {
	overflow: hidden;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
wrapper
-------------------------------------------------- */

:root {
  --color1: #0b437b;
  --color2: #f0f86e;
  --color3: #f3f3f5;
  --biz-rgb1: 0, 124, 190;
  --biz-hsl1: 201, 100%; /*L 37%*/
  --biz-rgb2: 110, 85, 175;
  --biz-hsl2: 257, 36%; /*L 51%*/
  --biz-rgb3: 0, 98, 171;
  --biz-hsl3: 206, 100%; /*L 34%*/
  --biz-rgb4: 125, 125, 130;
  --pro1-rgb: 170, 65, 80;
  --car-rgb: 0, 106, 126;
  --corp-rgb: 115, 115, 120;
  --biz-color1: #007cbe;
  --biz-color2: #6e55af;
  --biz-color3: #0062ab;
  --biz-color4: #7d7d82;
  --pro-color1: #aa4150;
  --pro-color2: #6E55AF;
  --pro-color3: #008CD7;
  --pro-color4: #0062A8;
  --car-color: #006a7e;
  --corp-color: #737378;
}

.recruit-newgraduates {
	position: relative;
	width: 100dvw;
  padding-top: 10px;
}

@media (width >= 1400px) or (width < 1200px) {
  .recruit-newgraduates {
    --w-formulae: * 1px;
  }
}
@media (1200px <= width < 1400px) {
  .recruit-newgraduates {
    --w-formulae: / 1400 * 100vw;
  }
}
@media (hover) and (min-resolution: 1.26dppx) and (max-resolution: 1.59dppx) and (height < 721px) and (1280px >= width >= 1200px) {
  .recruit-newgraduates {
    --w-formulae: / 1400 * 75vw;
  }
}



.cols {
  display: flex;
}



/* --------------------------------------------------
tools
-------------------------------------------------- */
.hide-on-pc {
	display: none !important;
}

.en {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.small {
	font-size: 85%
}
.light {
  font-weight: 300
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
em.marker {
  display: inline-block;
  position: relative;
  font-weight: inherit;
}
em.marker::before {
  content: '';
  display: inline-block;
  height: 1em;
  position: absolute;
  padding: .4em .25em;
  width: 100%;
  border-radius: 100px;
  z-index: -1;
  background-color: var(--color2);
  top: 50%;
  left: 50%;
  transform: translate(-51%, -46.5%)
}
.note {
  font-size: 80%;
  margin-top: .5em;
}
.popup::after {
  content: '';
  display: inline-block;
  width: .8em;
  height: 1em;
  background: url(/recruit/newgraduates/shared/images/ico-popup.svg) no-repeat center top / contain;
  margin-left: .5em;
}


/* --------------------------------------------------
effects
-------------------------------------------------- */

.dawn {
  opacity: 0;
}
.dawn.start {
  animation: fi-rise .8s ease-in-out .2s both;
}
.dawn-25 {
  opacity: 0;
}
.dawn-25.start {
  animation: fi-rise-25 1s ease-in-out .2s both;
}
.dusk {
  opacity: 0;
}
.dusk.start {
  animation: fi-set .8s ease-in-out .2s both;
}
.dusk-25 {
  opacity: 0;
}
.dusk-25.start {
  animation: fi-set-25 1s ease-in-out .2s both;
}
.fade {
  opacity: 0;
}
.fade.start {
  animation: fi-simple .9s ease-in-out .2s both;
}
.left {
  opacity: 0;
}
.left.start {
  animation: from-L 1s cubic-bezier(0.165, 0.84, 0.44, 1) .2s both
}
.right {
  opacity: 0;
}
.right.start {
  animation: from-R 1s cubic-bezier(0.165, 0.84, 0.44, 1) .2s both
}
.action.start {
	animation-delay: calc(var(--el-index) * .1s);
}

/* --------------------------------------------------
keyframes
-------------------------------------------------- */
@keyframes fi-rise {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fi-rise-25 {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fi-simple {
  to {
    opacity: 1;
  }
}
@keyframes from-R {
  0% {
    opacity: 0;
    transform: translateX(40%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes from-L {
  0% {
    opacity: 0;
    transform: translateX(-40%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fi-set {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fi-set-25 {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
header
-------------------------------------------------- */

.local-header-area {
	position: absolute;
	left: 0;
	top: 0;
	width: 100dvw;
  padding: 0;
	height: 0;
	z-index: 99;
}

.local-header-area.fixed {
	position: fixed;
}
.local-header {
  display: flex;
  justify-content: space-between;
  padding: 0;
  height: 0;
  width: 100%;
  max-width: 1830px;
  margin: 0 auto;
  position: relative;
  z-index: +1;
}

@media (min-width: 1200px) {
  .local-logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    line-height: 32px;
    padding: 20px 28px 20px 29px;
    background-color: #fff;
    border-radius: 0 0 30px 0;
  }
  .header-bttn-set {
    display: block;
    width: 165px;
    padding-right: 25px;
    position: relative;
  }
  .header-bttn-set .bttn {
    display: block;
    width: 140px;
    height: 60px;
    border-radius: 30px;
    position: absolute;
    left: 0;
    z-index: 0;
  }
  .header-bttn-set .trigger-case {
    top: 24px;
    z-index: +2;
    transition: width .3s ease, left .3s ease;
  }
  .fixed .header-bttn-set .trigger-case {
    width: 85px;
    left: 55px;
    transition: width .3s ease 1s, left .3s ease 1s;
  }
  .header-bttn-set .bttn a,
  .header-bttn-set .menu-trigger {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: solid 1px;
    text-align: center;
    border-radius: 30px;
    transition: .3s ease
  }
  .header-bttn-set .bttn a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-bttn-set .menu-trigger {
    background-color: #fff;
    border-color: #000;
    cursor: pointer;
    position: relative;
  }
  .header-bttn-set .bttn-intern {
    top: 95px;
    z-index: +1;
    transition: left .4s cubic-bezier(0.19, 1, 0.22, 1) .1s, top .5s cubic-bezier(0.19, 1, 0.22, 1) .9s
  }
  .fixed .header-bttn-set .bttn-intern {
    top: 24px;
    left: -99px;
    transition: left .4s cubic-bezier(0.19, 1, 0.22, 1) .8s, top .5s cubic-bezier(0.19, 1, 0.22, 1) .1s
  }
  .header-bttn-set .bttn-intern a {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3333333333333333;
    letter-spacing: .08em;
    font-feature-settings: "palt";
    background-color: var(--color1);
    border-color: #fff;
    color: #fff;
  }
  .header-bttn-set .bttn-entry {
    top: 165px;
    z-index: 0;
    transition: top .5s cubic-bezier(0.19, 1, 0.22, 1) .8s, left .4s cubic-bezier(0.19, 1, 0.22, 1), height .3s ease
  }
  .fixed .header-bttn-set .bttn-entry {
    top: 24px;
    left: -253px;
    transition: top .5s cubic-bezier(0.19, 1, 0.22, 1), left .4s cubic-bezier(0.19, 1, 0.22, 1) .9s, height .3s ease
  }
  .header-bttn-set .bttn-entry {
    background-color: #000;
    border: solid 1px #fff;
    color: #fff;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
  }
    .header-bttn-set .bttn-entry:hover {
      height: 190px;
    }

    .header-bttn-set .bttn-entry .bttn-ttl {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 55px;
      margin-bottom: 10px;
    }
    .header-bttn-set .bttn-entry .bttn-ttl span {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.1111111111111112;
      text-align: center;
      }
    .header-bttn-set .bttn-entry a {
      font-weight: 700;
      background-color: #fff;
      border-color: #000;
      color: #000;
    }
       .header-bttn-set .bttn-entry a .en {
        font-size: 16px;
      }

      .header-bttn-set .bttn-entry a .jp {
        font-size: 14px;
        vertical-align: baseline;
      }
    .header-bttn-set .bttn-entry .entry-bttn-list {
      display: flex;
      align-items: center;
      flex-direction: column;
      row-gap: 10px;
      width: 100%;
    }
      .header-bttn-set .bttn-entry .entry-bttn-list li {
        display: block;
        width: 110px;
        height: 50px;
      }

  .header-bttn-set .menu-trigger .label {
    position: absolute;
    top: 50%;
    right: 50%;
    left: auto;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease .3s, visibility 0s 0s
  }
  .fixed .header-bttn-set .menu-trigger .label {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease .9s, visibility 0s 1s
  }
  .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 10px;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 19px;
    transition: transform .3s ease, margin-left .3s ease
  }
  .fixed .hamburger {
    margin-left: 0;
    transform: translate(-50%, -50%);
    transition: transform .3s ease 1s, margin-left .3s ease 1s;
  }
  .hamburger .bar-set {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 19px;
  }
  .hamburger .bar {
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    background-color: #000;
    transition: all .3s
  }
  .hamburger .bar.upper {
    top: 0;
  }
  .hamburger .bar.middle {
    top: 50%;
    margin-top: -1px
  }
  .hamburger .bar.bottom {
    bottom: 0;
  }
  .open .hamburger .bar.upper {
    top: 50%;
    transform: translateY(-1px) rotate(30deg) scaleX(1.15)
  }
  .open .hamburger .bar.middle {
    width: 0;
    opacity: 0
  }
  .open .hamburger .bar.bottom {
    bottom: 50%;
    transform: translateY(1px) rotate(-30deg) scaleX(1.15)
  }
}

.open .local-logo + .back2home {
  opacity: 1;
  visibility: visible
}

@media (1199px < width < 1281px) {
  .local-logo {
    width: 255px;
    font-size: 21.68px;
    line-height: 1em;
    padding: 18px 0 11px 50px;
    border-radius: 0 0 20px 0;
  }
  .header-bttn-set {
    width: 144px;
    padding-right: 40px;
  }
  .header-bttn-set .bttn {
    width: 95px;
    height: 41px;
  }
  .header-bttn-set .trigger-case {
    top: 19px;
  }
  .fixed .header-bttn-set .trigger-case {
    width: 58px;
    left: 37px;
  }
  .header-bttn-set .bttn-intern {
    top: 67px;
  }
  .fixed .header-bttn-set .bttn-intern {
    top: 19px;
    left: -66px;
  }
  .header-bttn-set .bttn-intern a {
    font-size: 8.15px;
  }
  .header-bttn-set .bttn-entry {
    top: 115px;
    border-radius: 20px;
  }
  .header-bttn-set .bttn-entry:hover {
    height: 129px;
    border-radius: 20px;
  }
  .header-bttn-set .bttn-entry .bttn-ttl {
    height: 37px;
    margin-bottom: 7px;
  }
  .header-bttn-set .bttn-entry .bttn-ttl span {
    font-size: 12.2px;
  }

  .header-bttn-set .bttn-entry .entry-bttn-list {
    row-gap: 7px;
  }
  .header-bttn-set .bttn-entry .entry-bttn-list li {
    display: block;
    width: 74px;
    height: 34px;
  }

  .fixed .header-bttn-set .bttn-entry {
    top: 19px;
    left: -171px;
  }
  .header-bttn-set .bttn-entry a .en {
    font-size: 11px;
  }
  .header-bttn-set .bttn-entry a .jp {
    font-size: 9.5px;
    vertical-align: baseline;
  }
  .header-bttn-set .menu-trigger .label {
    font-size: 12px;
  }
  .hamburger {
    width: 20px;
    height: 15px;
  }
  .hamburger .bar-set {
    width: 20px;
    height: 15px;
  }
}

@media (width < 1200px) {

  .hide-on-pc {
    display: inherit !important
  }
  .hide-on-tb {
    display: none !important
  }
  .local-header-area {
    padding: 10px 25px 0 0;
  }
  .local-logo {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1111111111111112;
    padding: 10px 30px 15px 25px;
    background-color: #fff;
    margin-top: -10px;
    border-radius: 0 0 30px 0;
  }
  .header-bttn-set .bttn-intern,
  .header-bttn-set .bttn-entry {
    display: none
  }
  .header-bttn-set .menu-trigger {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 92px;
    border: solid 2px #000;
    text-align: center;
    border-radius: 46px;
    background-color: #fff;
    cursor: pointer;
    transition: .3s ease
  }
  .header-bttn-set .menu-trigger .label {
    font-size: 28px;
    font-weight: 700;
    margin-right: 15px
  }
  .hamburger {
    display: block;
    width: 45px;
    height: 30px;
    position: relative;
  }
  .hamburger .bar-set {
    cursor: pointer;
    display: block;
    width: 45px;
    height: 30px;
  }
  .hamburger .bar {
    position: absolute;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    transition: all .3s
  }
  .hamburger .bar.upper {
    top: 0;
  }
  .hamburger .bar.middle {
    top: 50%;
    margin-top: -1px
  }
  .hamburger .bar.bottom {
    bottom: 0;
  }
  .open .hamburger .bar.upper {
    top: 50%;
    transform: translateY(-1px) rotate(30deg) scaleX(1.15)
  }
  .open .hamburger .bar.middle {
    width: 0;
    opacity: 0
  }
  .open .hamburger .bar.bottom {
    bottom: 50%;
    transform: translateY(1px) rotate(-30deg) scaleX(1.15)
  }
}

.blink {
  animation: blinking 1s linear 0s;
  animation-iteration-count: 15;
}

@keyframes blinking {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* --------------------------------------------------
local-nav
-------------------------------------------------- */

.local-menu-area {
  display: block;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: calc(100 var(--w-formulae));
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition-property: opacity, visibility;
  transition-duration: .5s;
  transition-timing-function: ease;


  & .related-links,
  & .local-nav-bttns {
    display: none;
  }

  & .local-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5.5555555555%;
    width: 100%;
    max-width: calc(1270 var(--w-formulae));
    padding: 0 calc(165 var(--w-formulae)) calc(200 var(--w-formulae)) calc(25 var(--w-formulae));
    margin: 0 auto;
    counter-reset: ttl-num;

    & .menu-grid-col {
      width: 100%;
      max-width: calc(320 var(--w-formulae));
    }
    & .menu {
      width: 100%;
      padding-top: calc(24 var(--w-formulae));
      padding-bottom: calc(40 var(--w-formulae));
      border-top: solid 1px #959491;

      dl& {
        counter-increment: ttl-num;

        & .menu-ttl {
          display: inline-block;
          position: relative;
          padding-left: calc(40 var(--w-formulae));

          &::before {
          content: counter(ttl-num, decimal-leading-zero);
          font-family: "Inter", sans-serif;
          font-optical-sizing: auto;
          font-weight: 700;
          font-style: normal;
          font-size: calc(15 var(--w-formulae));
          letter-spacing: .01em;
          position: absolute;
          left: 0;
          top: .45em;
          }
        }
      }
      & .menu-ttl .trigger {
        display: none;
      }

      & .menu-ttl > a {
        pointer-events: none
      }

      & .menu-ttl .jp {
        font-size: calc(25 var(--w-formulae));
        font-weight: 700;
        letter-spacing: .04em;
      }
      & .menu-ttl .en {
        display: block;
        font-size: calc(12 var(--w-formulae));
        letter-spacing: .08em;
        color: #959491;
        margin-top: calc(10 var(--w-formulae));
      }
      & .menu-list {
        margin-top: calc(22 var(--w-formulae));
        font-feature-settings: "palt";
        font-size: calc(14 var(--w-formulae));
        font-weight: 500;
        line-height: 1.5;
        padding-bottom: 1.25em;

        & li + li {
          margin-top: .7em;
        }
        & ul li {
          padding-left: calc(15 var(--w-formulae));
          text-indent: calc(-15 var(--w-formulae));
        }
        & ul a::before {
          content: '';
          display: inline-block;
          width: calc(5 var(--w-formulae));
          height: calc(5 var(--w-formulae));
          border-radius: 50%;
          background-color: var(--color1);
          vertical-align: middle;
          margin-right: calc(10 var(--w-formulae));
          transform: translateY(-.075em);
        }
        & ol li {
          counter-increment: number
        }
        & ol a::before {
          content: "#"counter(number, decimal-leading-zero);
          margin-right: .5em;
          color: var(--color1)
        }
        & ul.col2 {
          display: block;
          height: 7em;
          column-count: 2;
          column-fill: auto;
        }
      }
      & .menu-bttn {
        display: block;
        margin-top: calc(22 var(--w-formulae));

        & .bttn-inner {
          display: block;
          width: 100%;
          height: calc(130 var(--w-formulae));
          border-radius: 10px;
          overflow: hidden;
          position: relative;

        }

        & a {
          display: block;
          width: 100%;
          height: 100%;
          padding:  calc(15 var(--w-formulae)) calc(20 var(--w-formulae));
          position: absolute;
          top: 0;
          left: 0;
          background-color: rgba(0, 0, 0, .48);
          color: #fff;

          &::after {
            content: '';
            display: block;
            width: calc(26 var(--w-formulae));
            height: calc(26 var(--w-formulae));
            border-radius: 50%;
            position: absolute;
            right: calc(20 var(--w-formulae));
            bottom: calc(15 var(--w-formulae));
            border: 1px solid #fff;
            background: no-repeat center center / contain;
            background-image: url(/recruit/newgraduates/shared/images/bttn-link_wht.svg);
            background-color: rgba(255, 255, 255, .2);

          }

          & dl {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            height: 100%
          }

          & .bttn-ttl {
            font-size: 10px;
            font-weight: 300;

            &::before {
              content: '•';
              display: inline-block;
              margin-right: .25em;
              transform: translateY(-.1em)
            }
          }
          & .jp {
            font-size: calc(12 var(--w-formulae));
            font-weight: 700;
            line-height: 2;
            display: block;

          }
          & dd .en {
            font-size: calc(30 var(--w-formulae));
            font-weight: 900;

          }
        }
      }
    }
  }
}
.open .local-menu-area {
  opacity: 1;
  visibility: visible
}

@media (width <= 1199px) {
  .local-menu-area {
    padding-top: 100px;

    & .local-nav-bttns {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 60px;

      & .bttn {
        display: block;
        width: 33%;
        height: calc(120 / 1200 * 100vw);
        border-radius: 30px
      }
      & .bttn a {
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border: solid 1px;
        text-align: center;
        border-radius: 30px;
        transition: .3s ease;
        position: relative;

        &::after {
          content: '';
          display: block;
          width: calc(30 / 1200 * 100vw);
          height: calc(30 / 1200 * 100vw);
          border-radius: 50%;
          position: absolute;
          right: calc(15 / 1200 * 100vw);
          background: no-repeat center center / contain;
          background-image: url(/recruit/newgraduates/shared/images/bttn-link_blk.svg);
          background-color: rgba(255, 255, 255, 1)
        }
      }
      & .bttn-intern a {
        font-size: calc(20 / 1200 * 100vw);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: .08em;
        font-feature-settings: "palt";
        background-color: var(--color1);
        border-color: var(--color1);
        color: #fff;
      }
      & .bttn-entry a {
        font-size: calc(30 / 1200 * 100vw);
        font-weight: 700;
        background-color: #000;
        border-color: #000;
        color: #fff;

        & .medium {
          margin-left: .25em
        }
      }
    }
    & .local-nav {
      max-width: 1200px;
      padding-right: 60px;
    }
  }
}

@media (hover: hover) {
  .local-logo a {
    opacity: 1;
    transition: opacity .3s ease
  }
  .local-logo a:hover {
    opacity: .5;
    color: currentColor;
  }
  .header-bttn-set .menu-trigger:hover {
    background-color: #000;
    border-color: #fff;
    color: #fff
  }
  .header-bttn-set .menu-trigger:hover .hamburger .bar {
    background-color: #fff
  }
  :is(.header-bttn-set, .local-nav-bttns) .bttn-intern a:hover {
    background-color:#fff;
    border-color: var(--color1);
    color: var(--color1)
  }
  .local-nav-bttns .bttn-entry a:hover {
    background-color: #fff;
    border-color: #000;
    color: #000
  }
  .header-bttn-set .bttn-entry a:hover {
    background-color: #000;
    border-color: #fff;
    color: #fff
  }
  .local-nav-bttns .bttn a::after {
    transition: .3s ease
  }
  .local-nav-bttns .bttn a:hover::after {
    background-image: url(/recruit/newgraduates/shared/images/bttn-link_wht.svg);
  }
  .local-nav-bttns .bttn-intern a:hover::after {
    background-color: var(--color1)
  }
  .local-nav-bttns .bttn-entry a:hover::after {
    background-color: #000
  }
}


/* --------------------------------------------------
crumb links
-------------------------------------------------- */
.topic-path li {
  display: inline-block;
  font-size: calc(12 var(--w-formulae));
  letter-spacing: .02em;
  vertical-align: middle;

  & a {
    color: #969696
  }
}
.topic-path li + li::before {
  display: inline-block;
  width: 1px;
  height: 1.1em;
  content: '';
  background-color: #969696;
  margin: 0 .75em;
  vertical-align: top;

}

@media (hover: hover) {
  .topic-path li a {
    opacity: 1;
    transition: opacity .3s ease;

    &:hover {
      opacity: .4;
    }
  }
}


/* --------------------------------------------------
footer
-------------------------------------------------- */

.recommended-contents-area {
  display: block;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto calc(50 var(--w-formulae));
  position: relative;

  &::after {
    content: '';
    display: block;
    width: calc(530 var(--w-formulae));
    height: calc(130 var(--w-formulae));
    background: url(/recruit/newgraduates/shared/images/mask-rec-ttl.svg) no-repeat left top / contain;
    position: absolute;
    top: -.5px;
    left: 39.5px;
  }
  & .recomme-ttl {
    position: absolute;
    top: calc(7 var(--w-formulae));
    left: calc(72 var(--w-formulae));
    display: inline-flex;
    flex-direction: column-reverse;
    z-index: +1;

    & .jp {
      font-size: calc(34 var(--w-formulae));
      font-weight: 700;
      letter-spacing: .03em;
    }
    & .en {
      font-size: calc(16 var(--w-formulae));
      letter-spacing: .08em;
      margin-bottom: calc(18 var(--w-formulae));

      &::before {
        content: '';
        display: inline-block;
        width: calc(5 var(--w-formulae));
        height: calc(5 var(--w-formulae));
        border-radius: 50%;
        vertical-align: middle;
        margin-right: calc(10 var(--w-formulae));
        background-color: #000
      }
    }
  }
}
@media (width <= 1199px) {
  .recommended-contents-area {
    padding: 0 25px;

    &::after {
      left: 24.5px
    }
    & .recomme-ttl {
      left: 55px;
    }
  }
}


.next-contents-bttn {
  display: block;
  width: 100%;
  height: calc(460 var(--w-formulae));
  position: relative;

  & .image-box {
    width: 100%;
    height: 100%;
    border-radius: calc(30 var(--w-formulae));
    overflow: hidden
   }
  & a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 0 0 calc(50 var(--w-formulae)) calc(98 var(--w-formulae));
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, .48);
    border-radius: calc(30 var(--w-formulae));
    overflow: hidden;

    &::after {
      content: '';
      display: block;
      width: calc(50 var(--w-formulae));
      height: calc(50 var(--w-formulae));
      border-radius: 50%;
      position: absolute;
      right: calc(78 var(--w-formulae));
      top: 50%;
      transform: translateY(-50%);
      background-image: url(/recruit/newgraduates/shared/images/bttn-link_blk.svg);
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 100% 100%;
    }

    & .jp {
      display: inline-block;
      font-size: calc(34 var(--w-formulae));
      font-weight: 500;
      font-feature-settings: "palt";
      letter-spacing: .1em;
      line-height: 1.2352941176470589;
    }
    & .en {
      display: inline-block;
      font-size: calc(16 var(--w-formulae));
      letter-spacing: .08em;
      margin-top: calc(20 var(--w-formulae));
    }
    & .ttl-add::before {
      display: inline-block;
      content: "―";
      margin: 0 .3em;
      transform: scaleX(1.6)
    }
  }
}
@media (hover: hover) {
  .next-contents-bttn a {
    transition: background-color .3s ease;
    &:hover {
      background-color: rgba(0, 0, 0, .25)
    }
  }
  .next-contents-bttn a::after {
    transition: background-color .3s ease;
  }
  .next-contents-bttn a:hover::after {
    background-color: #000;
    background-image: url(/recruit/newgraduates/shared/images/bttn-link_wht.svg)
  }
  .next-contents-bttn img {
    transform: scale(1);
    transition: transform .3s ease;
  }
  .next-contents-bttn:hover img {
    transform: scale(1.1)
  }
}



.pre-footer-bttns .bttn-set {
  display: block;
  width: 100%;
  padding: 0 40px calc(113 var(--w-formulae));

  @media (width <= 1199px) {
    padding: 0 25px 113px
  }

  & a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: calc(30 var(--w-formulae));
    overflow: hidden;

    &::after {
      position: absolute;
      right: calc(78 var(--w-formulae));
      content: '';
      display: block;
      width: calc(38 var(--w-formulae));
      height: calc(38 var(--w-formulae));
      border-radius: 50%;
      background: no-repeat center center / contain;
      background-color: #fff;

    }
  }

  & .bttn-entry {
    display: block;
    width: 100%;

    & .entry-bttn-list {
      display: flex;
      height: calc(180 var(--w-formulae));
      column-gap: calc(16 var(--w-formulae));

      & li {
        display: block;
        width: 100%;
      }
    }

    & a {
      font-size: calc(40 var(--w-formulae));
      letter-spacing: .02em;
      color: #fff;
      background-color: #000;
      position: relative;

      &::after {
        background-image: url(/recruit/newgraduates/shared/images/bttn-link_blk.svg);
      }
      & .bttn-ttl {
        translate: calc(-40 var(--w-formulae)) 0;
      }
    }
  }

  & .bttn-corp-site {
    display: none;
  }
}
@media (width <= 1199px) {
  .pre-footer-bttns .bttn-set .bttn-entry .entry-bttn-list {
    flex-direction: column;
    height: auto;

    & li {
      height: 190px;

      & + & {
        margin-top: 20px;
      }

      & a {
        font-size: 44px;

        & .bttn-ttl {
          translate: -20px 0
        }
      }
    }
  }
}


@media (hover: hover) {
  .pre-footer-bttns .bttn-set {

    & a {
    transition: .3s ease;
    transition-property: background-color, color;

      &::after {
        transition: background-color .3s ease;
      }
    }
    & .bttn-entry a:hover {
      background-color: var(--color1)
    }
    & .bttn-entry a:hover::after {
      background-image: url(/recruit/newgraduates/shared/images/bttn-link_c1.svg);
    }
  }
}


.main-end {
  display: block;
  width: 100%;
  overflow: hidden;

  & .scroll-txt {
    display: inline-block;
    width: auto;
    font-size: calc(180 var(--w-formulae));
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    color: var(--color3);
    white-space: nowrap;
    padding-left: calc(108 var(--w-formulae));

    & span + span {
      margin-left: calc((108 var(--w-formulae)) - .5em);
    }
  }
}

.footer-sec {
  background-color: var(--color3);
  padding: calc(150 var(--w-formulae)) 0 calc(200 var(--w-formulae));
  font-feature-settings: "palt";
  margin-top: calc(-30 var(--w-formulae));

  & .footer-menu-area {
    display: grid;
    grid-template-areas: "related sitemap";
    grid-template-columns: auto 58%;
    position: relative;
    width: 100%;
    max-width: calc(1200 var(--w-formulae));
    margin: 0 auto;
    padding: 0 calc(20 var(--w-formulae));

    & .footer-ttl {
      font-size: calc(32 var(--w-formulae));
      font-weight: 800;
      position: absolute;
      left: calc(20 var(--w-formulae));
      top: 0
    }
  }
}

.footer-menu-area .site-map-area {
  grid-area: sitemap;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6%;
  counter-reset: ttl-num;

  & .menu-grid-col {
    width: 100%;
    max-width: calc(300 var(--w-formulae));
  }

  & .menu {
    width: 100%;
    max-width: calc(300 var(--w-formulae));
    padding-top: calc(22 var(--w-formulae));
    padding-bottom: 1.5em;
    border-top: solid 1px #959491;

    &.peoples {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
    }
    &.dnp-future {
      grid-column: 1 / 2;
      grid-row: 4 / 5;
    }

    dl& {
      counter-increment: ttl-num;

      & .menu-ttl {
        display: inline-block;
        position: relative;
        padding-left: calc(25 var(--w-formulae));

        &::before {
        content: counter(ttl-num, decimal-leading-zero);
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        font-size: calc(10 var(--w-formulae));
        letter-spacing: .01em;
        position: absolute;
        left: 0;
        top: .75em;
        }
      }
    }


    & .menu-ttl .trigger {
      display: none;
    }

    & .menu-ttl > a {
      pointer-events: none
    }

    & .menu-ttl .jp {
      font-size: calc(20 var(--w-formulae));
      font-weight: 700;
      letter-spacing: .04em;
    }
    & .menu-ttl .en {
      display: block;
      font-size: calc(12 var(--w-formulae));
      letter-spacing: .08em;
      color: #959491;
      margin-top: 12px;
    }
    & .menu-list {
      margin-top: calc(24 var(--w-formulae));
      font-feature-settings: "palt";
      font-size: calc(12 var(--w-formulae));
      line-height: 1.5;

      & li + li {
        margin-top: .7em;
      }
      & ul li {
        padding-left: calc(15 var(--w-formulae));
        text-indent: calc(-15 var(--w-formulae));
      }

      & ul a::before {
        content: '';
        display: inline-block;
        width: calc(5 var(--w-formulae));
        height: calc(5 var(--w-formulae));
        border-radius: 50%;
        background-color: var(--color1);
        vertical-align: middle;
        margin-right: calc(10 var(--w-formulae));
        transform: translateY(-.075em);
      }
      & ol li {
        counter-increment: number;
        padding-left: 2.5em;
        text-indent: -2.5em;
      }
      & ol a::before {
        content: "#"counter(number, decimal-leading-zero);
        margin-right: .5em;
        color: var(--color1)
      }
    }
    & .menu-bttn {
      display: block;
      margin-top: calc(12 var(--w-formulae));

      & .bttn-inner {
        display: block;
        width: 100%;
        height: calc(120 var(--w-formulae));
        border-radius: calc(10 var(--w-formulae));
        overflow: hidden;
        position: relative;
      }

      & a {
        display: block;
        width: 100%;
        height: 100%;
        padding: calc(12  var(--w-formulae)) calc(40  var(--w-formulae)) calc(12  var(--w-formulae)) calc(20  var(--w-formulae));
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .48);
        color: #fff;

        &::after {
          content: '';
          display: block;
          width: calc(26 var(--w-formulae));
          height: calc(26 var(--w-formulae));
          border-radius: 50%;
          position: absolute;
          right: calc(15 var(--w-formulae));
          bottom: calc(11 var(--w-formulae));
          border: 1px solid #fff;
          background: no-repeat center center / contain;
          background-image: url(/recruit/newgraduates/shared/images/bttn-link_wht.svg);
          background-color: rgba(255, 255, 255, .2);
        }

        & dl {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 100%;
          height: 100%
        }

        & .bttn-ttl {
          font-size: calc(8 var(--w-formulae));
          font-weight: 300;

          &::before {
            content: '•';
            display: inline-block;
            margin-right: .25em;
            transform: translateY(-.1em)
          }
        }
        & .jp {
          font-size: calc(10 var(--w-formulae));
          font-weight: bold;
          line-height: 1.5;
          display: block;
        }
        & dd .en {
          font-size: calc(28 var(--w-formulae));
          font-weight: 900;
        }
      }
    }
  }
}
.related-links-area {
  margin-top: calc(55 var(--w-formulae));
  height: 100%;

  & .related-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    height: 100%;
    font-size: calc(14 var(--w-formulae));
    letter-spacing: .04em;

    & .menu {
      line-height: 2.2857142857142856
    }
    & .inquiries dl + dl {
      margin-top: calc(35 var(--w-formulae));
    }
    & .inq-ttl {
      font-size: calc(14 var(--w-formulae));
      line-height: 1.7857142857142858;
      letter-spacing: .04em;
    }
    & .inq-list a {
      font-size: calc(13 var(--w-formulae));
      line-height: 1.9230769230769231;
      letter-spacing: .04em;
    }
  }
  .inq-txt {
    margin-top: 30px;
    font-size: calc(13 var(--w-formulae));
    line-height: 1.9230769230769231;
  }
}





@media (hover: hover) {
  .local-logo + .back2home a,
  .local-menu-area .menu-list a,
  .footer-menu-area .menu-list a,
  .related-links a {
    color: #000;
    transition: opacity .3s ease;
    opacity: 1;

    &:hover {
      opacity: .3;
    }
  }
  .local-menu-area .local-nav .menu-bttn a,
  .footer-menu-area .site-map-area .menu-bttn a {
    transition: .3s ease;
    transition-property: background-color, color;

    &:hover {
      color: #000;
      background-color: rgba(0, 0, 0, 0)
    }
    &::after {
      transition: background-color .3s ease
    }
    &:hover::after {
      background-image: url(/recruit/newgraduates/shared/images/bttn-link_blk.svg);
      background-color: rgba(255, 255, 255, 1)
    }
  }
  .local-menu-area .local-nav .menu-bttn img,
  .footer-menu-area .site-map-area .menu-bttn img {
    transform: scale(1);
    transition: transform .3s ease;
  }
  .local-menu-area .local-nav .menu-bttn:hover img,
  .footer-menu-area .site-map-area .menu-bttn:hover img {
    transform: scale(1.14)
  }
}

.wrap-page-top {
  display: none;
  z-index: 98;
}
.wrap-page-top .page-top .inner-page-top {
  width: 80px;
  height: 50px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background: #fff url(/recruit/newgraduates/shared/images/bttn-page-top.svg) no-repeat right center / cover
}
.wrap-page-top .page-top .inner-page-top::after {
  display: none;
}

@media (1199px < width < 1400px) {
  .wrap-page-top .page-top .inner-page-top {
    width: calc(80 / 1400 * 100vw);
    height: calc(50 / 1400 * 100vw);
    border-top-left-radius: calc(25 / 1400 * 100vw);
    border-bottom-left-radius: calc(25 / 1400 * 100vw);
  }
}