/* ------------------------------
全体設定
------------------------------ */
:root {
  --color-blue: #004EBC;
  --color-black: #121212;
  --vk-color-text-body: var(--color-black);
}

html,
body,
p,
h1,
h2,
h3,
h4,
h5,
th,
td,
time,
a {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  overflow: unset;
  /* position:sticky要素のため */
}

body {
  background-color: #fff;
  font-size: calc(10 / 1470 * 100vw);
}

@media screen and (max-width: 767px) {
  body {
    font-size: calc(10 / 393 * 100vw);
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

a:hover {
  color: inherit;
}

/* ------------------------------
コンポーネント
------------------------------ */

/* コンテナ */
.c-container {
  max-width: 128em;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1470px) {
  .c-container.--culture {
    font-size: 10px;
  }
}

.c-container.--slim {
  max-width: 1160px;
  padding-right: 5em;
  padding-left: 5em;
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1160px) {
  .c-container.--slim {
    font-size: calc(10 / 1160 * 100vw);
  }
}

@media screen and (max-width: 767px) {

  .c-container,
  .c-container.--slim {
    padding-right: 2em;
    padding-left: 2em;
  }
}

@media screen and (max-width: 767px) {
  .c-container.--slim {
    font-size: calc(10 / 393 * 100vw);
  }
}

/* 見出し */
.c-heading {
  display: inline-block;
  font-weight: 700;
  --heading-color: var(--color-blue);
  color: var(--heading-color);
}

.js-heading {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s;
}

.js-heading.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.c-heading__main {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 5em;
  line-height: 1.44;
}

.c-heading__sub {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5em;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  line-height: 1.2;
}

.c-heading__sub::after {
  content: "";
  height: 1px;
  margin: 0.55em 0.4em 0 0;
  background-color: var(--heading-color);
}

@media screen and (max-width: 767px) {
  .c-heading__main {
    font-size: 3.8em;
    line-height: calc(55 / 38);
  }

  .c-heading__sub {
    column-gap: calc(10em / 12);
    font-size: 1.2em;
    line-height: 1.25;
  }

  .c-heading__sub::after {
    margin: calc(7.5em / 12) 0 0;
  }
}

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  width: 27em;
  height: 6.7em;
  padding-right: 2em;
  border-radius: 0.4em;
  border: 2px solid var(--color-blue);
  background-color: var(--color-blue);
  transition: background-color 0.3s, color 0.3s;
  color: #fff;
}

.c-btn.--white {
  border-color: #fff;
  background-color: #fff;
  color: var(--color-blue);
}

.c-btn.--reverse {
  width: 26.6em;
  padding-right: 0;
  padding-left: 2em;
}

.c-btn.--reverse .c-arrowBox {
  transform: rotate(180deg);
}

.c-btn__text {
  width: 100%;
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
}

@media (any-hover: hover) {
  .c-btn:hover {
    background-color: transparent;
    color: var(--color-blue);
  }

  .c-btn.--white:hover {
    background-color: transparent;
    color: #fff;
  }

  .c-btn.--white:hover .c-arrowBox {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    width: 24em;
    height: 6em;
    padding-right: 1.5em;
  }

  .c-btn.--reverse {
    width: 24em;
    padding-left: 1.5em;
  }

  .c-btn__text {
    font-size: 1.4em;
  }

  .c-btn .c-arrowBox {
    width: 4em;
    height: 4em;
  }

  .c-btn .c-arrowBox__icon {
    top: calc(1.73em - 1px);
    left: calc(1.36em - 1px);
    width: 1.295em;
  }
}

/* ボタン矢印 */
.c-arrowBox {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 4.5em;
  height: 4.5em;
  border-radius: 0.4em;
  border: 2px solid var(--color-blue);
  background-color: var(--color-blue);
  transition: background-color 0.3s, border-color 0.3s;
}

.c-arrowBox.--white {
  background-color: #fff;
  border-color: #fff;
}

.c-arrowBox.--white-black {
  background-color: #fff !important;
  border-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .c-arrowBox {
    width: 3.1em;
    height: 3.1em;
    border-width: 1px;
    border-radius: 0.2em;
  }
}

.c-arrowBox__icon {
  position: absolute;
  top: calc(1.86em - 2px);
  left: calc(1.38em - 2px);
  width: 1.85em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .c-arrowBox__icon {
    top: 1.2em;
    left: calc(0.95em - 1px);
    width: 1.2em;
  }
}

.c-arrowBox__icon.--before {
  transform: translateX(-100%);
  opacity: 0;
}

.c-arrowBox__iconPath {
  transition: fill 0.3s;
}

.c-arrowBox.--white-black .c-arrowBox__iconPath {
  fill: var(--color-black);
}

@media (any-hover: hover) {
  a:hover .c-arrowBox {
    background-color: transparent;
  }

  a:hover .c-arrowBox.--white {
    border-color: var(--color-blue);
    background-color: var(--color-blue);
  }

  a:hover .c-arrowBox__icon.--before {
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    transform: none;
    opacity: 1;
  }

  a:hover .c-arrowBox__icon.--after {
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    transform: translateX(100%);
    opacity: 0;
  }

  a:hover .c-arrowBox__iconPath {
    fill: var(--color-blue);
  }

  a:hover .c-arrowBox.--white .c-arrowBox__iconPath {
    fill: #fff;
  }
}

/* フル幅画像 */
.c-img-full {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------------
Header
------------------------------ */
.recruitHeader {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  font-size: 10px;
}

@media screen and (max-width: 1023px) {
  .recruitHeader {
    font-size: 8.75px;
  }
}

@media screen and (max-width: 767px) {
  .recruitHeader {
    font-size: inherit;
  }
}

.recruitHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3em 2.5em 0;
}

@media screen and (max-width: 767px) {
  .recruitHeader__inner {
    align-items: center;
    padding: 1em 0.8em 0 2em;
  }
}

.recruitHeader__logo {
  margin: 0;
  font-size: 1em;
}

@media screen and (max-width: 767px) {
  .recruitHeader__logo {
    z-index: 9999;
  }
}

.recruitHeader__logoImg {
  width: 38em;
  height: auto;
  transition: filter 0.3s;
}

.recruitHeader.is-scrolled .recruitHeader__logoImg {
  filter: invert(93%);
}

@media screen and (max-width: 767px) {
  .recruitHeader__logoImg {
    width: 24em;
  }

  body.is-menu-opened .recruitHeader__logoImg {
    filter: invert(93%);
  }
}

.recruitHeader__btns {
  display: flex;
  column-gap: 1.7em;
}

.recruitHeader__menuBtn {
  position: relative;
  z-index: 9999;
  display: flex;
  width: 6.8em;
  height: 6em;
  margin: 0;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0.4em;
  background-color: #fff;
  font-size: 1em;
  color: var(--color-blue);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuBtn {
    width: 5.8em;
    height: 5.1em;
  }
}

.recruitHeader__menuBarWrapper {
  position: relative;
  display: block;
  width: 4.35em;
  height: 2.27em;
  margin: 1.01em 0 0 1.3em;
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuBarWrapper {
    width: 3.763em;
    height: 1.98em;
    margin: 0.81em 0 0 1.14em;
  }
}

.recruitHeader__menuBar {
  position: absolute;
  left: 0;
  width: 3.28em;
  height: 3px;
  border-radius: 9999px;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuBar {
    width: 2.844em;
  }
}

.recruitHeader__menuBar:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}

.recruitHeader__menuBar:nth-child(2) {
  top: 1.03em;
  width: 4.35em;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuBar:nth-child(2) {
    top: 0.88em;
    width: 3.763em;
  }
}

.recruitHeader__menuBar:nth-child(3) {
  top: 1.97em;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuBar:nth-child(3) {
    top: 1.68em;
  }
}

body.is-menu-opened .recruitHeader__menuBar:nth-child(1) {
  top: 50%;
  width: 4.35em;
  transform: rotate(30deg);
}

body.is-menu-opened .recruitHeader__menuBar:nth-child(2) {
  opacity: 0;
}

body.is-menu-opened .recruitHeader__menuBar:nth-child(3) {
  top: 50%;
  width: 4.35em;
  transform: rotate(-30deg);
}

@media screen and (max-width: 767px) {

  body.is-menu-opened .recruitHeader__menuBar:nth-child(1),
  body.is-menu-opened .recruitHeader__menuBar:nth-child(3) {
    left: -0.3em;
    width: 4.18em;
  }
}

.recruitHeader__menuText {
  position: absolute;
  bottom: calc(6em / 13);
  left: calc(14em / 13);
  font-size: 1.3em;
  font-weight: 700;
  line-height: calc(16 / 13);
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .recruitHeader__menuText {
    bottom: calc(4em / 11);
    left: calc(12.5em / 11);
    font-size: 1.1em;
    line-height: calc(14 / 11);
  }
}

.recruitHeader__entry {
  position: relative;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(154em / 25);
  height: calc(60em / 25);
  border-radius: calc(4em / 25);
  background-color: var(--color-black);
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  transition: background-color 0.3s;
}

@media(any-hover: hover) {
  .recruitHeader__entry:hover {
    background-color: #005CB5;
  }
}

@media screen and (max-width: 767px) {
  .recruitHeader__entry {
    display: none;
  }
}

/* ------------------------------
Menu
------------------------------ */
.recruitHeader__bg {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background-color: rgba(0 78 188 / 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.recruitMenu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 82em;
  padding: 6.2em 12em 8.2em;
  background-color: #fff;
  overflow-y: scroll;
}

@media screen and (max-width: 1469px) {
  .recruitMenu {
    width: calc(820 / 1480 * 100vw);
    min-width: 708px;
    padding: 6.2em calc(120 / 1470 * 100%) 8.2em;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .recruitMenu {
    width: 100%;
    min-width: unset;
    padding: 12.2em 2.15em 5.03em;
    font-size: inherit;
  }
}

.recruitMenu__logoLink {
  display: block;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .recruitMenu__logoLink:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .recruitMenu__logoLink {
    display: none;
  }
}

.recruitMenu__logoImg {
  width: 24.1em;
  height: auto;
}

.recruitMenu__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
}

@media screen and (max-width: 767px) {
  .recruitMenu__nav {
    flex-direction: column;
    margin-top: 0;
  }
}

.recruitMenu__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24em;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .recruitMenu__col {
    width: 100%;
  }
}

.recruitMenu__item {
  margin: 0;
  padding: 3em 0;
  border-bottom: 1px solid var(--color-blue);
}

@media screen and (min-width: 768px) {
  .recruitMenu__subListToggle {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .recruitMenu__item {
    position: relative;
    padding: 2.2em 4.05em 2.2em 0.85em;
    border-color: #DCDCDC;
  }

  .recruitMenu__subListToggle {
    position: absolute;
    top: 2.66em;
    right: 0.85em;
    width: 1.6em;
    height: 1.6em;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
    font-size: 1em;
    cursor: pointer;
  }

  .recruitMenu__subListToggle::before,
  .recruitMenu__subListToggle::after {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 1.6em;
    height: 0.2em;
    background-color: var(--color-black);
  }

  .recruitMenu__subListToggle::after {
    transform: rotate(90deg);
  }

  .recruitMenu__subListToggle.is-opened::after {
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .recruitMenu__item:nth-child(2) {
    border-bottom: none;
  }

  .recruitMenu__item:nth-child(3) {
    border-top: 1px solid var(--color-blue);
  }
}

.recruitMenu__item.--external {
  padding-bottom: 0;
  border-bottom: none;
}

.recruitMenu__link {
  display: inline-flex;
  flex-direction: column;
  row-gap: 0.5em;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .recruitMenu__link:hover {
    color: inherit;
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .recruitMenu__link {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

.recruitMenu__linkJa {
  font-size: 2.4em;
  font-weight: 700;
  line-height: calc(35 / 24);
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .recruitMenu__linkJa {
    font-size: 1.8em;
    line-height: calc(26 / 18);
    letter-spacing: 0;
  }
}

.recruitMenu__linkEn {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.012em;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .recruitMenu__linkEn {
    margin-top: calc(2em / 12);
    font-weight: 500;
    letter-spacing: 0;
  }
}

.recruitMenu__subList {
  margin: 2.05em 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .recruitMenu__subList {
    display: none;
    margin: 0;
    padding-top: 1.44em;
  }
}

.recruitMenu__subItem {
  margin: 1.05em 0 0;
}

@media screen and (max-width: 767px) {
  .recruitMenu__subItem {
    margin: 0.6em 0 0;
  }
}

.recruitMenu__subLink {
  display: inline-flex;
  align-items: flex-end;
  column-gap: calc(9.2em / 16);
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .recruitMenu__subLink {
    column-gap: calc(9.1em / 14);
    font-size: 1.4em;
  }
}

.recruitMenu__subLink::before {
  content: "";
  flex-shrink: 0;
  width: calc(8.53em / 16);
  height: calc(12.26em / 16);
  margin-bottom: calc(5em / 16);
  background: url("../images/recruit/common/icon-nav.svg") no-repeat center / contain;
}

@media (any-hover: hover) {
  .recruitMenu__subLink:hover {
    color: var(--color-blue);
  }
}

@media screen and (max-width: 767px) {
  .recruitMenu__subLink::before {
    width: calc(6.36em / 14);
    height: calc(8.88em / 14);
    background-image: url("../images/recruit/common/icon-nav@sp.svg");
  }
}

.recruitMenu__snsList {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  column-gap: 2.03em;
}

@media screen and (max-width: 767px) {
  .recruitMenu__snsList {
    margin-left: 0.71em;
    padding-top: 0.8em;
  }
}

.recruitMenu__snsItem {
  margin: 0;
}

.recruitMenu__snsSvg {
  display: block;
  width: auto;
  height: 3em;
}

.recruitMenu__snsSvgFilled {
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .recruitMenu__snsLink:hover .recruitMenu__snsSvgFilled {
    fill: var(--color-blue);
  }
}

.recruitMenu__corporateLink {
  display: inline-flex;
  align-items: flex-end;
  column-gap: calc(5em / 18);
  margin-top: calc(30.4em / 18);
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
  text-decoration: underline !important;
  text-decoration-color: var(--color-black);
  text-decoration-style: solid;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .recruitMenu__corporateLink {
    column-gap: calc(6.2em / 16);
    margin-top: calc(20.7em / 16);
    margin-left: calc(1.5em / 16);
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1.5;
  }
}

.recruitMenu__tabIcon {
  width: 1em;
  height: auto;
  margin-bottom: calc(2em / 18);
}

.recruitMenu__tabIconFilled {
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .recruitMenu__corporateLink:hover {
    color: var(--color-blue);
  }

  .recruitMenu__corporateLink:hover .recruitMenu__tabIconFilled {
    fill: var(--color-blue);
  }
}

.recruitMenu__entry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14em;
  height: 4em;
  margin: 1.2em 0 0 0.06em;
  padding-left: 0.02em;
  border-radius: 0.16em;
  background-color: var(--color-black);
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

/* ------------------------------
CTA
------------------------------ */
.cta {
  position: relative;
  margin-top: 12em;
  padding-bottom: 5.87em;
}

@media screen and (max-width: 767px) {
  .cta {
    margin-top: 9em;
    padding-bottom: 4em;
  }
}

.cta__loopWrapper {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(112 112 112 / 0.3);
  border-bottom: 1px solid rgba(112 112 112 / 0.3);
  padding: 0.2em 0 0.3em;
}

@media screen and (max-width: 767px) {
  .cta__loopWrapper {
    padding: 1em 0 1.1em;
  }
}

.cta__loopItem {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  font-size: 16em;
  font-weight: 700;
  line-height: 1.21875;
  animation: loop-left 15s infinite linear both;
  white-space: nowrap;
}

@keyframes loop-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 767px) {
  .cta__loopItem {
    width: auto;
    padding: 0 calc(7em / 95);
    font-size: 9.5em;
    line-height: calc(116 / 95);
  }
}

.cta__container {
  display: grid;
  grid-template-columns: 1fr 51em;
  column-gap: 15em;
  margin-top: 7em;
}

@media screen and (max-width: 767px) {
  .cta__container {
    grid-template-columns: 100%;
    row-gap: 6em;
    margin-top: 5em;
  }
}

.cta__contents {
  padding-left: 11em;
}

@media screen and (max-width: 767px) {
  .cta__contents {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta .c-heading__main {
    font-size: 4em;
  }
}

.cta__list {
  margin: 4em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .cta__list {
    width: 27.325em;
    margin: 4em 0 0 auto;
  }
}

.cta__item {
  margin: 0;
  padding: 2.5em 0.1em 2.5em 0;
  border-bottom: 1px solid rgba(18 18 18 / 0.5);
}

@media screen and (max-width: 767px) {
  .cta__item {
    padding: 1.7em 0.7em 1.7em 2em;
  }
}

.cta__itemLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.cta__itemLinkText {
  font-size: 2.6em;
  font-weight: 700;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .cta__itemLink:hover .cta__itemLinkText {
    color: var(--color-blue);
  }
}

@media screen and (max-width: 767px) {
  .cta__itemLinkText {
    font-size: 1.6em;
  }
}

.cta__link-wrapper {
  margin-top: 4em;
}

@media screen and (max-width: 767px) {
  .cta__link-wrapper {
    margin-top: 4.95em;
    text-align: right;
  }
}

.cta__decoration {
  position: absolute;
  bottom: -7.2em;
  left: -1.12em;
  width: 10.24em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .cta__decoration {
    top: 31.9em;
    bottom: unset;
    left: 1.93em;
    width: 4.344em;
  }
}

.cta__entry {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 9.6em;
  padding: 4em 5em 3em;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .cta__entry {
    margin: 0 -2em;
    padding: 3em 4em 2.5em;
  }
}

.cta__entry::before,
.cta__entry::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: background-color 0.3s;
  background-color: var(--color-blue);
  border-radius: 0.4em;
}

@media screen and (max-width: 767px) {

  .cta__entry::before,
  .cta__entry::after {
    border-radius: 0;
  }
}

.cta__entry::before {
  clip-path: polygon(0 0, calc(100% - 0.6px) 0, 0 calc(100% - 0.6px));
}

.cta__entry::after {
  clip-path: polygon(100% 0.6px, 100% 100%, 0.6px 100%);
}

.cta__entryTitle {
  margin: 0;
  font-size: 6em;
  font-weight: 700;
  line-height: calc(73 / 60);
}

@media screen and (max-width: 767px) {
  .cta__entryTitle {
    font-size: 4em;
    line-height: 1.225;
  }
}

.cta__entrybottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 1em;
  max-width: 32.3em;
  margin-left: auto;
}

.cta__enrtyBtn {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
  margin: 14.3em 0 0;
}

@media screen and (max-width: 767px) {
  .cta__enrtyBtn {
    column-gap: 1em;
    margin-top: 6.6em;
  }
}

.cta__enrtyBtnText {
  font-size: 2em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .cta__enrtyBtnText {
    font-size: 1.6em;
  }
}

.cta__entryNote {
  margin: 0;
  font-size: max(1.2em, 7.5px);
  font-weight: 500;
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .cta__entryNote {
    position: absolute;
    bottom: calc(-5em / 11);
    left: calc(8em / 11);
    font-size: 1.1em;
    font-weight: 400;
    line-height: calc(15 / 11);
    transform: translateY(100%);
    color: var(--color-blue);
  }
}

@media (any-hover: hover) {

  .cta__entry:hover::before,
  .cta__entry:hover::after {
    background-color: var(--color-black);
  }

  .cta__entry:hover .c-arrowBox {
    border-color: #fff !important;
    background-color: #fff !important;
  }

  .cta__entry:hover .c-arrowBox__iconPath {
    fill: var(--color-black) !important;
  }
}

/* ------------------------------
Footer
------------------------------ */
.recruitFooter {
  padding-top: 11.68em;
  background-color: var(--color-black);
  clip-path: polygon(0 6.4em, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 767px) {
  .recruitFooter {
    margin-top: 3.95em;
    padding-top: 4em;
    clip-path: polygon(0 4em, 100% 0, 100% 100%, 0 100%);
  }
}

.recruitFooter__main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8.55em;
}

@media screen and (max-width: 767px) {
  .recruitFooter__main {
    position: relative;
    flex-direction: column;
    padding: 0 2em 11.5em;
  }
}

.recruitFooter__logo {
  display: block;
  width: 38em;
  height: 4em;
  background: #fff no-repeat center / contain;
  -webkit-mask: url("../images/recruit/common/logo-header.png") no-repeat center / contain;
  mask: url("../images/recruit/common/logo-header.png") no-repeat center / contain;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .recruitFooter__logo:hover {
    background-color: var(--color-blue);
  }
}

@media screen and (max-width: 767px) {
  .recruitFooter__logo {
    width: 25em;
    height: 2.5em;
    margin: 4em auto 0;
    padding: 0 1px;
    -webkit-mask: url("../images/recruit/common/logo-header@sp.png") no-repeat center / contain;
    mask: url("../images/recruit/common/logo-header@sp.png") no-repeat center / contain;
  }
}

@media (any-hover: none) and (max-width: 767px) {
  .recruitFooter__logo {
    -webkit-mask: unset;
    mask: unset;
    background: url("../images/recruit/common/logo-header@sp.png") no-repeat center / contain;
  }
}

.recruitFooter__snsList {
  display: flex;
  column-gap: 2em;
  margin: 3em 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .recruitFooter__snsList {
    justify-content: center;
    margin: 2.7em 0 0;
  }
}

.recruitFooter__snsItem {
  margin: 0;
}

.recruitFooter__snsLink {
  display: block;
}

.recruitFooter__snsLogo {
  display: block;
  width: auto;
  height: 3em;
}

.recruitFooter__snsLogoFilled {
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .recruitFooter__snsLink:hover .recruitFooter__snsLogoFilled {
    fill: var(--color-blue);
  }
}

.recruitFooter__corporateLink {
  display: inline-flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin-top: 3em;
}

@media screen and (max-width: 767px) {
  .recruitFooter__corporateLink {
    position: absolute;
    bottom: 3.9em;
    left: 2em;
    column-gap: 0.6em;
    margin-top: 0;
  }
}

.recruitFooter__corporateText {
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
  color: #fff;
  transition: color 0.3s;
  text-decoration: underline !important;
}

@media screen and (max-width: 767px) {
  .recruitFooter__corporateText {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.recruitFooter__corporateIcon {
  width: 1.8em;
  height: auto;
  margin-bottom: 0.2em;
}

.recruitFooter__corporateIconFilled {
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .recruitFooter__corporateLink:hover .recruitFooter__corporateText {
    color: var(--color-blue);
  }

  .recruitFooter__corporateLink:hover .recruitFooter__corporateIconFilled {
    fill: var(--color-blue);
  }
}

.recruitFooter__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4.82em 12em;
  margin: 0;
  padding: 0 0 0 1.54em;
}

@media screen and (max-width: 767px) {
  .recruitFooter__sub {
    order: 0;
  }

  .recruitFooter__info {
    order: 1;
  }

  .recruitFooter__list {
    order: 2;
    justify-content: space-between;
    gap: 5em 4em;
    margin-top: 5em;
    padding: 0;
  }
}

.recruitFooter__item {
  margin: 0;
}

.recruitFooter__link {
  display: inline-block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .recruitFooter__link:hover {
    color: var(--color-blue);
  }
}

.recruitFooter__subList {
  margin: 1.5em 0 0;
  padding: 0 0 0 0.9em;
}

.recruitFooter__subItem {
  margin: 0.6em 0 0;
}

.recruitFooter__subLink {
  display: inline-flex;
  align-items: center;
  column-gap: 0.83em;
}

.recruitFooter__subLinkIcon {
  width: 0.52em;
  height: auto;
}

.recruitFooter__subLinkIconFilled {
  transition: fill 0.3s;
}

.recruitFooter__subLinkText {
  font-size: max(1.4em, 8px);
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #fff;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .recruitFooter__subLink:hover .recruitFooter__subLinkText {
    color: var(--color-blue);
  }

  .recruitFooter__subLink:hover .recruitFooter__subLinkIconFilled {
    fill: var(--color-blue);
  }
}

.recruitFooter__pagetop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.13em;
  width: 11em;
  height: 11em;
  padding: 0.1em 0 0 0.1em;
  border-radius: 0.4em;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .recruitFooter__pagetop {
    row-gap: 1.49em;
    width: 9em;
    height: 9em;
    margin-left: auto;
    border-radius: 0.2em;
  }
}

.recruitFooter__pagetopIcon {
  width: 1.43em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .recruitFooter__pagetopIcon {
    width: 1.047em;
  }
}

.recruitFooter__pagetopIconFilled {
  transition: fill 0.3s;
}

.recruitFooter__pagetopText {
  font-size: 1.4em;
  font-weight: 700;
  line-height: calc(18 / 14);
  letter-spacing: 0.02em;
  color: var(--color-black);
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .recruitFooter__pagetopText {
    font-size: 1.4em;
    line-height: calc(18 / 14);
  }
}

@media (any-hover: hover) {
  .recruitFooter__pagetop:hover .recruitFooter__pagetopText {
    color: var(--color-blue);
  }

  .recruitFooter__pagetop:hover .recruitFooter__pagetopIconFilled {
    fill: var(--color-blue);
  }
}

.recruitFooter__copyright {
  margin: 0;
  background-color: var(--color-blue);
  text-align: center;
}

.recruitFooter__copyrightText {
  display: block;
  padding: 1em 0 calc(11em / 14);
  font-family: "Archivo", sans-serif;
  font-size: max(1.4em, 8px);
  line-height: calc(15 / 14);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .recruitFooter__copyrightText {
    padding: calc(13em / 12) 0;
    font-size: 1.2em;
  }
}

/* ------------------------------
TOP: Main Visual
------------------------------ */
.topMv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(15.6em + 90px) 0 12.5em;
  background-color: var(--color-blue);
  overflow: hidden;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .topMv {
    padding-top: calc(15.6em + 79px);
  }
}

@media screen and (max-width: 767px) {
  .topMv {
    padding: 19.35em 0 12.56em;
  }
}

.topMv__inner {
  position: relative;
  flex-grow: 1;
}

.topMv__message {
  position: absolute;
  top: -12.2em;
  left: 0;
  display: block;
  margin: 0;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .topMv__message {
    top: -7.3em;
  }
}

.topMv__messageTop {
  display: inline-block;
  margin: 0 0 0 calc(91em / 97);
  font-size: 9.7em;
  font-weight: 700;
  line-height: calc(141 / 97);
  letter-spacing: 0.04em;
  transform: rotate(-4deg);
}

.topMv__messageTop .text-sm {
  font-size: calc(73em / 97);
}

@media screen and (max-width: 767px) {
  .topMv__messageTop {
    margin-left: calc(2.9em / 42);
    font-size: 4.2em;
    line-height: calc(61 / 42);
    transform: rotate(-8deg);
  }

  .topMv__messageTop .text-sm {
    font-size: calc(31em / 42);
  }
}

.topMv__messageBottom {
  display: inline-block;
  margin: calc(-33em / 92) 0 0 calc(76.9em / 92);
  font-size: 9.2em;
  font-weight: 700;
  line-height: calc(133 / 92);
  letter-spacing: 0.04em;
  transform: rotate(-4deg);
}

.topMv__messageBottom .text-sm {
  font-size: calc(70em / 92);
}

@media screen and (max-width: 767px) {
  .topMv__messageBottom {
    margin: calc(-13em / 35) 0 0 calc(5em / 35);
    font-size: 3.5em;
    white-space: nowrap;
    letter-spacing: 0.035em;
    transform: rotate(-8deg);
  }

  .topMv__messageBottom .text-sm {
    font-size: calc(26em / 35);
  }
}

.topMv__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3em;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .topMv__list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1em;
  }
}

.topMv__item {
  margin: 0;
  height: 51em;
  overflow: hidden;
  clip-path: polygon(0 3em, 100% 0, 100% calc(100% - 3em), 0 100%);
}

.topMv__item:nth-child(1) {
  margin-top: 23.8em;
}

.topMv__item:nth-child(2) {
  margin-top: 15.8em;
}

.topMv__item:nth-child(3) {
  margin-top: 7.8em;
}

@media screen and (max-width: 767px) {
  .topMv__item {
    height: 30.5em;
    clip-path: polygon(0 1.9em, 100% 0, 100% calc(100% - 1.9em), 0 100%);
  }

  .topMv__item:nth-child(1) {
    margin-top: 9.4em;
  }

  .topMv__item:nth-child(2) {
    display: none;
  }

  .topMv__item:nth-child(3) {
    margin-top: 4.6em;
  }
}

.topMv__imgWrapper {
  position: relative;
  height: 100%;
  transform-origin: top;
  transform: scaleY(0);
  overflow: hidden;
}

.topMv__imgWrapper.--01 {
  transition: transform 0.4s ease-in-out 0.3s;
}

.topMv__imgWrapper.--02 {
  transition: transform 0.4s ease-in-out 0.2s;
}

.topMv__imgWrapper.--03 {
  transition: transform 0.4s ease-in-out 0.1s;
}

.topMv__imgWrapper.--04 {
  transition: transform 0.4s ease-in-out;
}

.topMv__imgWrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  transform-origin: bottom;
}

.topMv__imgWrapper.--01::after {
  transition: transform 0.4s ease-in-out 0.7s;
}

.topMv__imgWrapper.--02::after {
  transition: transform 0.4s ease-in-out 0.6s;
}

.topMv__imgWrapper.--03::after {
  transition: transform 0.4s ease-in-out 0.5s;
}

.topMv__imgWrapper.--04::after {
  transition: transform 0.4s ease-in-out 0.4s;
}

.topMv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.topMv__img.--01 {
  transition: transform 0.4s ease-in-out 0.7s;
}

.topMv__img.--02 {
  transition: transform 0.4s ease-in-out 0.6s;
}

.topMv__img.--03 {
  transition: transform 0.4s ease-in-out 0.5s;
}

.topMv__img.--04 {
  transition: transform 0.4s ease-in-out 0.4s;
}

body.is-loaded .topMv__imgWrapper {
  transform: none;
}

body.is-loaded .topMv__imgWrapper::after {
  transform: scaleY(0);
}

body.is-loaded .topMv__img {
  transform: none;
}

.topMV__decorations {
  position: absolute;
  right: 1.39em;
  bottom: 0.8em;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .topMV__decorations {
    right: 0.31em;
    bottom: -5.7em;
  }
}

.topMv__decoration01 {
  display: block;
  width: 80.3em;
  height: auto;
  margin-right: 0.46em;
  transform: rotate(-4deg);
}

@media screen and (max-width: 767px) {
  .topMv__decoration01 {
    width: 38.4em;
    margin-right: 0.31em;
    transform: rotate(-7deg);
  }
}

.topMv__decoration02 {
  display: block;
  width: 66.4em;
  height: auto;
  margin-top: 3.59em;
  transform: rotate(-4deg);
}

@media screen and (max-width: 767px) {
  .topMv__decoration02 {
    width: 31.48em;
    margin-top: 1.36em;
    margin-left: auto;
    transform: rotate(-7deg);
  }
}

/* ------------------------------
TOP: Features
------------------------------ */
.topFeatures {
  position: relative;
  z-index: 0;
}

.topFeatures__bg {
  position: sticky;
  z-index: -1;
  top: 0;
  width: 100%;
}

.topFeatures__bgInner {
  position: relative;
  height: 100vh;
}

.topFeatures__bgImg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.topFeatures__bgImg.is-active {
  opacity: 1;
}

.topFeatures__bgImg.--01 {
  object-position: 80% 35%;
}

.topFeatures__bgImg.--02 {
  object-position: 25% 35%;
}

@media screen and (max-width: 767px) {

  .topFeatures__bgImg.--01 {
    object-position: right top;
  }

  .topFeatures__bgImg.--02 {
    object-position: left top;
  }
}

.topFeatures__container {
  margin-top: -100vh;
  padding-top: 12.17em;
  padding-bottom: 16.8em;
}

@media screen and (max-width: 767px) {
  .topFeatures__container {
    padding-top: 8.12em;
    padding-bottom: 8em;
  }
}

.topFeatures__catch01 {
  width: 51em;
}

@media screen and (max-width: 767px) {
  .topFeatures__catch01 {
    width: 26.9em;
  }
}

.topFeatures__text {
  font-size: 2.5em;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .topFeatures__text {
    margin-right: -1em !important;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0;
  }
}

.topFeatures__text.--01 {
  margin: calc(78.3em / 25) 0 0;
}

@media screen and (max-width: 767px) {
  .topFeatures__text.--01 {
    margin-top: 3.26em;
  }
}

.topFeatures__section02 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 28em 0;
}

@media screen and (max-width: 767px) {
  .topFeatures__section02 {
    display: block;
    margin: 16.6em 0;
  }
}

.topFeatures__catch02 {
  width: 51.1em;
  margin: 0 0.8em 0 0;
}

@media screen and (max-width: 767px) {
  .topFeatures__catch02 {
    width: 27.5em;
    margin: 0 0 0 auto;
  }
}

.topFeatures__text.--02 {
  margin: calc(65em / 25) 0 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topFeatures__text.--02 {
    margin-top: 2.5em;
  }
}

.topFeatures__catch {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s;
}

.topFeatures__catch.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ------------------------------
TOP: 学びとキャリア
------------------------------ */
.topCareer {
  position: relative;
  padding: 11.3em 0 12em;
}

@media screen and (max-width: 767px) {
  .topCareer {
    padding: 9em 0 19em;
  }
}

.topCareer__container {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12.7em;
  padding-left: 22em;
}

@media screen and (max-width: 767px) {
  .topCareer__container {
    grid-template-columns: 100%;
    padding-left: 2em;
  }
}

.topCareer__text {
  margin: calc(53em / 18) 0 calc(73em / 18);
  width: calc(377.2em / 18);
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(40 / 18);
}

@media screen and (max-width: 767px) {
  .topCareer__text {
    width: 100%;
    margin: calc(37em / 16) 0 calc(47em / 16);
    font-size: 1.6em;
    line-height: 1.875;
  }
}

.topCareer__list {
  display: flex;
  flex-direction: column;
  row-gap: 3em;
}

@media screen and (max-width: 767px) {
  .topCareer__list {
    row-gap: 2em;
    padding-left: 4.8em;
  }
}

.topCareer__link {
  position: relative;
  z-index: 0;
  display: block;
  border-radius: 0.6em;
  overflow: hidden;
}

.topCareer__link::before {
  content: "";
  display: block;
  padding-top: calc(313 / 556 * 100%);
}

.topCareer__img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  background-color: #656565;
}

.topCareer__linkText {
  position: absolute;
  bottom: calc(11em / 30);
  left: calc(20em / 30);
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(39em / 30);
  padding: 0 calc(3em / 30) calc(3em / 30) calc(6em / 30);
  background-color: var(--color-black);
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topCareer__linkText {
    bottom: calc(10em / 18);
    left: calc(10em / 18);
    height: calc(24em / 18);
    padding: 0 calc(3.5em / 18) calc(3em / 18) calc(5em / 18);
    font-size: 1.8em;
  }
}

.topCareer__linkCorner {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 12.4em;
  height: 12.4em;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 767px) {
  .topCareer__linkCorner {
    width: 6.8em;
    height: 6.8em;
  }
}

.topCareer__linkBtn {
  position: relative;
  width: 11.42em;
  height: 11.42em;
  margin: auto 0 0 auto;
  background-color: var(--color-black);
  transition: background-color 0.3s;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 767px) {
  .topCareer__linkBtn {
    width: 6.27em;
    height: 6.27em;
  }
}

.topCareer__linkArrow {
  position: absolute;
  right: 2.76em;
  bottom: 2.92em;
  width: 2.035em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topCareer__linkArrow {
    right: 1.42em;
    bottom: 1.45em;
    width: 1.11em;
  }
}

.topCareer__linkArrow.--before {
  opacity: 0;
  transform: translateX(-100%);
}

@media (any-hover: hover) {
  .topCareer__link:hover .topCareer__img {
    transform: scale(1.05);
  }

  .topCareer__link:hover .topCareer__linkBtn {
    background-color: var(--color-blue);
  }

  .topCareer__link:hover .topCareer__linkArrow.--before {
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0.1s;
  }

  .topCareer__link:hover .topCareer__linkArrow.--after {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0.1s;
  }
}

.topCareer__decoration {
  position: absolute;
  top: 1.2em;
  left: -1.2em;
  width: 20.8em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topCareer__decoration {
    top: 39.53em;
    left: 2.05em;
    width: 2.896em;
  }

  .topCareer .c-btn {
    position: absolute;
    right: 2em;
    bottom: 9em;
  }
}

/* ------------------------------
TOP: 働く環境を知る
------------------------------ */
.topEnv {
  position: relative;
  z-index: 0;
  padding-bottom: 10.05em;
}

@media screen and (max-width: 767px) {
  .topEnv {
    padding-bottom: 9.7em;
  }
}

.topEnv::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 126.5em;
  height: 60.3em;
  border-radius: 0.4em 0 0 0.4em;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .topEnv::before {
    width: 37.3em;
    height: 41.1em;
    border-radius: 0.2em 0 0 0.2em;
  }
}

.topEnv__head {
  padding: 5em 0 0 30.9em;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .topEnv__head {
    padding: 4em 0 0 4.05em;
  }
}

.topEnv__decoration {
  display: block;
  width: 115.92em;
  height: auto;
  margin: 1.33em 0 -0.1em 0.3em;
}

@media screen and (max-width: 767px) {
  .topEnv__decoration {
    width: 35.59em;
    margin: 4.2em 0 0 0;
  }
}

.topEnv__list {
  display: grid;
  grid-template-columns: repeat(3, 35.5em);
  justify-content: flex-end;
  column-gap: 0.2em;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .topEnv__listWrapper {
    overflow-x: scroll;
    padding: 0 2em 2em 4em;
  }

  .topEnv__list {
    width: fit-content;
    grid-template-columns: repeat(3, 22.8em);
  }
}

.topEnv__item {
  margin: 0;
  opacity: 0;
}

.topEnv__itemLink {
  display: block;
  text-decoration: none;
  height: 100%;
  background-color: var(--color-black);
}

.topEnv__imgWrapper {
  position: relative;
  overflow: hidden;
}

.topEnv__imgWrapper::before {
  content: "";
  display: block;
  padding-top: calc(262 / 355 * 100%);
}

.topEnv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #656565;
  transition: transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .topEnv__itemLink:hover .topEnv__img {
    transform: scale(1.075);
  }
}

.topEnv__itemBody {
  padding: 3em 2.7em 3.3em 4.2em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topEnv__itemBody {
    padding: 1.3em 1.5em 3.5em 1.5em;
  }
}

.topEnv__itemTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1.5em;
}

@media screen and (max-width: 767px) {
  .topEnv__itemTitle {
    padding-right: 0;
  }
}

.topEnv__itemTitleText {
  margin: 0;
  padding: 1px 0;
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .topEnv__itemTitleText {
    font-size: 1.8em;
  }
}

.topEnv__itemText {
  margin: 1em 0 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(40 / 18);
}

@media screen and (max-width: 767px) {
  .topEnv__itemText {
    margin-top: calc(16em / 14);
    font-size: 1.4em;
    line-height: calc(22 / 14);
  }
}

.topEnv__linkWrapper {
  margin: 4em 8.5em 0 0;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .topEnv__linkWrapper {
    margin: 2em 2em 0 0;
  }
}

/* ------------------------------
TOP: 人生にミッションを。
------------------------------ */
.topPassion {
  border-top: 1px solid rgba(112 112 112 / 0.3);
}

.topLoopWrapper {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid rgba(112 112 112 / 0.3);
}

.topLoopWrapper:first-of-type {
  padding-bottom: 0.85em;
  color: var(--color-blue);
}

.topLoopWrapper:last-of-type {
  padding-bottom: 1.15em;
}

@media screen and (max-width: 767px) {
  .topLoopWrapper:first-of-type {
    padding-bottom: 0.7em;
  }

  .topLoopWrapper:last-of-type {
    padding-bottom: 0.8em;
  }
}

.topLoopItem {
  flex-shrink: 0;
  font-size: 14em;
  font-weight: 700;
  line-height: calc(202 / 140);
}

@media screen and (max-width: 767px) {
  .topLoopItem {
    font-size: 9.5em;
    line-height: calc(137 / 95);
  }
}

.topLoopWrapper:first-of-type .topLoopItem {
  margin-top: calc(-10.5em / 140);
  padding-right: calc(144em / 140);
  animation: loop-left 15s infinite linear both;
}

.topLoopWrapper:last-of-type .topLoopItem {
  margin-top: calc(-13.5em / 140);
  padding-left: calc(144em / 140);
  animation: loop-left 15s infinite linear both;
}

@media screen and (max-width: 767px) {
  .topLoopWrapper:first-of-type .topLoopItem {
    margin-top: calc(-7em / 95);
    padding-right: calc(48em / 95);
  }

  .topLoopWrapper:last-of-type .topLoopItem {
    margin-top: calc(-8em / 95);
    padding-left: calc(48em / 95);
  }
}

/* ------------------------------
TOP: 先輩社員の1日
------------------------------ */
.topRoutine {
  position: relative;
  padding: 19.35em 0 14em;
}

@media screen and (max-width: 767px) {
  .topRoutine {
    padding: 9em 0 19em;
  }
}

.topRoutine__decoration {
  position: absolute;
  top: 9.21em;
  left: -0.6em;
  width: 10.14em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topRoutine__decoration {
    top: 36.81em;
    left: 2.04em;
    width: 3.62em;
  }
}

.topRoutine__container {
  display: flex;
  justify-content: space-between;
  max-width: 106em;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .topRoutine__container {
    flex-direction: column;
  }
}

.topRoutine__text {
  margin: calc(52em / 18) 0 calc(72em / 18);
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(42 / 18);
}

@media screen and (max-width: 767px) {
  .topRoutine__text {
    margin: calc(37em / 16) 0;
    font-size: 1.6em;
    line-height: 1.875;
  }
}

.topRoutine__btn {
  width: 25em;
}

@media screen and (max-width: 767px) {
  .topRoutine__btn {
    position: absolute;
    right: 2em;
    bottom: 9em;
    width: 20.4em;
  }
}

.topRoutine__imgContainer {
  width: 51em;
}

@media screen and (max-width: 767px) {
  .topRoutine__imgContainer {
    width: 26.58em;
    margin-left: 8.7em;
  }
}

.topRoutine__imgItem {
  overflow: hidden;
  clip-path: polygon(0 2.6em, 100% 0, 100% calc(100% - 2.6em), 0 100%);
}

@media screen and (max-width: 767px) {
  .topRoutine__imgItem {
    clip-path: polygon(0 1.4em, 100% 0, 100% calc(100% - 1.4em), 0 100%);
  }
}

.topRoutine__imgItem.--01 {
  margin-right: 5.5em;
}

.topRoutine__imgItem.--02 {
  margin-top: -2.1em;
  margin-left: 5.5em;
  transform-origin: right;
}

@media screen and (max-width: 767px) {
  .topRoutine__imgItem.--01 {
    margin-right: 2.9em;
  }

  .topRoutine__imgItem.--02 {
    margin-top: -1em;
    margin-left: 2.9em;
  }
}

.topRoutine__imgWrapper {
  position: relative;
  height: 25.8em;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

@media screen and (max-width: 767px) {
  .topRoutine__imgWrapper {
    height: 13.4em;
  }
}

.topRoutine__imgWrapper.is-active {
  transform: none;
}

.topRoutine__imgWrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
  transform-origin: left;
  transition: transform 0.4s ease-in-out 0.4s;
}

.topRoutine__imgWrapper.is-active::after {
  transform: scaleX(0);
}

.topRoutine__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
TOP: 人を知る
------------------------------ */
.topMember {
  position: relative;
  z-index: 0;
  padding: 8.1em 0 8em;
  background-color: var(--color-blue);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topMember {
    padding: 4em 0 5em;
  }
}

.topMember__linkWrapper {
  margin-top: 4.5em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topMember__linkWrapper {
    margin-top: 4em;
  }
}

.topMember__decoration {
  position: absolute;
  z-index: -1;
  top: 19.11em;
  left: 9.61em;
  width: 64.92em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topMember__decoration {
    top: 15.3em;
    left: 2.07em;
    width: 23.19em;
  }
}

.topMember__slider {
  padding: 24.4em 0 7.2em;
}

@media screen and (max-width: 767px) {
  .topMember__slider {
    padding: 7.9em 0 3.5em;
  }
}

.topMember__slider .swiper-wrapper {
  transition-timing-function: ease-in-out;
}

.topMember__slide {
  width: 60.8em;
  padding: 0 8.9em;
  opacity: 0.6;
  transform-origin: 50% 83%;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out;
}

@media screen and (max-width: 767px) {
  .topMember__slide {
    width: 100%;
    padding: 0 2em;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .topMember__slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.45814);
  }

  .topMember__slide.swiper-slide-active .topMember__tag {
    transform: scale(0.8);
  }

  .topMember__slide.swiper-slide-active .topMember__message {
    transform: scale(0.875);
  }

  .topMember__slide.swiper-slide-active .topMember__slideBody {
    transform: scale(0.823);
  }
}

.topMember__slideLink {
  display: block;
  color: #fff !important;
}

.topMember__imgWrapper {
  position: relative;
  height: 28.7em;
  border-radius: 0.4em;
  overflow: hidden;
  background-color: #BCBCBC;
}

@media screen and (max-width: 767px) {
  .topMember__imgWrapper {
    height: 23.5em;
    border-radius: 0.2em;
  }
}

.topMember__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.topMember__tag {
  position: absolute;
  top: 2em;
  left: 0;
  padding: 0.55em 2em;
  border-radius: 0 0.2em 0.2em 0;
  background-color: var(--color-blue);
  transition: opacity 0.3s ease-in-out, transform 0.75s ease-in-out;
  transform-origin: left top;
}

@media screen and (max-width: 767px) {
  .topMember__tag {
    top: 1em;
    padding: 0.1em 1em 0.2em;
    border-radius: 0 0.1em 0.1em 0;
  }
}

.topMember__tagText {
  font-size: 1.3em;
  font-weight: 700;
  line-height: calc(19 / 13);
}

@media screen and (max-width: 767px) {
  .topMember__tagText {
    font-size: 1.2em;
    font-weight: 500;
    line-height: calc(17 / 12);
  }
}

.topMember__message {
  position: absolute;
  bottom: 3em;
  left: 1em;
  margin-right: 1em;
  transition: opacity 0.3s ease-in-out, transform 0.75s ease-in-out;
  transform-origin: left;
}

.topMember__messageRow {
  display: inline-block;
  margin-top: calc(3.43em / 24);
  padding: 0 calc(20em / 24) calc(4em / 24);
  border-radius: calc(2em / 24);
  background-color: var(--color-black);
  font-size: 2.4em;
  font-weight: 900;
  line-height: calc(35 / 24);
}

@media screen and (max-width: 767px) {
  .topMember__messageRow {
    margin-top: 0.15em;
    padding: 0.05em 0.5em 0.1em;
    border-radius: 0.05em;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.45;
  }
}

.topMember__slideBody {
  margin-top: 0.5em;
  transition: opacity 0.3s ease-in-out, transform 0.75s ease-in-out;
  transform-origin: left top;
}

@media screen and (max-width: 767px) {
  .topMember__slideBody {
    max-width: 24.8em;
    margin-top: 0.8em;
  }
}

.topMember__info {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
}

@media screen and (max-width: 767px) {
  .topMember__info {
    column-gap: 0.6em;
  }
}

.topMember__name {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .topMember__name {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.topMember__yaer {
  margin-bottom: calc(2em / 12);
  font-size: 1.2em;
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .topMember__yaer {
    margin-bottom: calc(1em / 12);
  }
}

.topMember__position {
  margin-top: calc(3em / 14);
  font-size: 1.4em;
  font-weight: 500;
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .topMember__position {
    margin-top: calc(-1em / 14);
  }
}

@media (any-hover: hover) {
  .topMember__slideLink:hover .topMember__img {
    transform: scale(1.05);
  }

  .topMember__slideLink:hover .topMember__message,
  .topMember__slideLink:hover .topMember__tag,
  .topMember__slideLink:hover .topMember__slideBody {
    opacity: 0.7;
  }
}

.topMember__sliderBtns {
  position: absolute;
  top: 0.8em;
  right: 9.5em;
  display: flex;
  column-gap: 3em;
}

@media screen and (max-width: 767px) {
  .topMember__sliderBtns {
    top: 32.2em;
    right: 2em;
    column-gap: 1em;
  }
}

.topMember__sliderBtn {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  width: 7.8em;
  height: 7.8em;
  margin: 0;
  border-radius: 0.4em;
  border: 1px solid #fff;
  background-color: var(--color-blue);
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .topMember__sliderBtn {
    width: 4em;
    height: 4em;
    border-radius: 0.2em;
  }
}

.topMember__sliderBtn::after {
  display: none !important;
}

.topMember__sliderBtnArrow {
  position: absolute;
  top: calc(50% - 0.5875em);
  left: calc(50% - 1.1565em);
  width: 2.31em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topMember__sliderBtnArrow {
    top: calc(50% - 0.333em);
    left: calc(50% - 0.6475em);
    width: 1.295em;
  }
}

.swiper-button-prev .topMember__sliderBtnArrow:last-of-type {
  opacity: 0;
  transform: translateX(100%);
}

.swiper-button-next .topMember__sliderBtnArrow:first-of-type {
  opacity: 0;
  transform: translateX(-100%);
}

@media (any-hover: hover) {
  .topMember__sliderBtn:hover {
    opacity: 0.7;
  }

  .topMember__sliderBtn:hover .topMember__sliderBtnArrow {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .swiper-button-prev:hover .topMember__sliderBtnArrow:first-of-type {
    opacity: 0;
    transform: translateX(-100%);
  }

  .swiper-button-prev:hover .topMember__sliderBtnArrow:last-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .topMember__sliderBtnArrow:first-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .topMember__sliderBtnArrow:last-of-type {
    opacity: 0;
    transform: translateX(100%);
  }
}

.topMember__sliderPagination {
  display: flex;
  justify-content: center;
  bottom: 0 !important;
}

.topMember__sliderPagination .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  margin: 0 0.75em !important;
  opacity: 1;
  background-color: #fff;
  transition: background-color 0.3s;
}

.topMember__sliderPagination .swiper-pagination-bullet-active {
  background-color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .topMember__sliderPagination .swiper-pagination-bullet {
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.35em !important;
  }
}

/* ------------------------------
下層ページ ヘッダー
------------------------------ */
.pageHead {
  position: relative;
  padding: calc(9.68em + 90px) 0 3em;
  background-color: var(--color-blue);
  color: #fff;
}

@media screen and (min-width: 1470px) {
  .pageHead {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .pageHead {
    padding: 12.15em 0 2em;
  }

  .pageHead.--has-tab {
    padding-bottom: 5.9em;
  }

  .pageHead:not(.--has-tab) .c-container {
    display: flex;
    flex-direction: column;
    min-height: 20.85em;
  }
}

.pageHead__title {
  display: inline-block;
  position: relative;
  margin-bottom: 6.3em;
  padding-bottom: 2em;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s;
}

@media screen and (max-width: 767px) {
  .pageHead__title {
    margin-bottom: 3.3em;
  }
}

.pageHead__title.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.pageHead__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8.5em;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .pageHead__title::after {
    width: 4.5em;
  }
}

.pageHead__titleSub {
  margin: 0;
}

.pageHead__titleImg {
  display: block;
  width: auto;
  height: 7.24em;
}

@media screen and (max-width: 767px) {
  .pageHead__titleImg {
    height: 2.9em;
  }

  .pageHead__titleImg.--row2 {
    height: 6.5em;
  }
}

.pageHead__titleMain {
  margin: calc(23.8em / 30) 0 0;
  padding: 0;
  font-size: 3em;
  font-weight: 700;
  line-height: calc(44 / 30);
}

@media screen and (max-width: 767px) {
  .pageHead__titleMain {
    margin-top: calc(14.5em / 14);
    font-size: 1.4em;
    line-height: calc(20 / 14);
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1em;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    gap: 0.7em;
    margin-top: auto;
  }
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 14);
  margin: 0;
  font-size: max(1.4em, 8.5px);
  font-weight: 700;
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .breadcrumbs__item {
    column-gap: calc(7em / 12);
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.breadcrumbs__item:not(:last-of-type)::after {
  content: "";
  width: calc(17em / 14);
  height: 1px;
  margin-top: 0.1em;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .breadcrumbs__item:not(:last-of-type)::after {
    width: calc(10em / 12);
  }
}

.breadcrumbs__item br {
  display: none;
}

.breadcrumbs__link {
  font-weight: 500;
  text-decoration: underline !important;
  text-decoration-color: var(--color-black);
  text-decoration-style: solid;
  color: var(--color-black) !important;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .breadcrumbs__link:hover {
    opacity: 0.5;
  }
}

.pageHead__tabs {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 0.5em;
  transform: translateX(-50%);
}

.pageHead__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30em;
  height: 6em;
  padding: 0.1em 0 0;
  border: 1px solid #fff;
  border-bottom: none;
  border-radius: 0.4em 0.4em 0 0;
  font-size: inherit;
  background-color: transparent;
  font-weight: 700;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .pageHead__tab {
    width: 12.5em;
    height: 4em;
    padding: 0 0 0.1em;
    font-weight: 500;
  }
}

.pageHead__tab.is-active {
  width: 31em;
  height: 8em;
  background-color: #fff;
  color: var(--color-blue);
  pointer-events: none;
}

@media (any-hover: hover) {
  .pageHead__tab:hover {
    background-color: #fff;
    color: var(--color-blue);
  }
}

@media screen and (max-width: 767px) {
  .pageHead__tab.is-active {
    width: 12.5em;
    height: 5em;
    font-weight: 700;
  }
}

.pageHead__tabText {
  font-size: max(1.7em, 9px);
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .pageHead__tabText {
    font-size: 1.2em;
  }
}

.pageHead__tab:first-of-type .pageHead__tabText {
  letter-spacing: 0.06em;
}

/* ------------------------------
アンカーリンク ナビゲーション
------------------------------ */
.anchorNav {
  display: flex;
  gap: 1.4em 10em;
  width: fit-content;
  margin: 10em auto 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .anchorNav {
    flex-wrap: wrap;
    gap: 1.4em 2em;
    margin-top: 6em;
  }

  .anchorNav.--career {
    column-gap: 5em;
  }

  .anchorNav.--env {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 2.5em 5em;
  }

  .anchorNav.--env .anchorNav__link {
    width: 100%;
    justify-content: space-between;
    column-gap: 1.6em;
  }

  .anchorNav.--about {
    width: 100%;
    justify-content: space-between;
  }
}

.anchorNav__item {
  margin: 0;
}

.anchorNav__link {
  display: inline-flex;
  align-items: center;
  column-gap: 1em;
  text-decoration: none;
  color: inherit !important;
  transition: opacity 0.3s;
}

.anchorNav__linkText {
  font-size: 1.8em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .anchorNav__linkText {
    font-size: 1.2em;
    white-space: nowrap;
  }
}

.anchorNav__linkArrow {
  flex-shrink: 0;
  position: relative;
  width: 3.5em;
  height: 3.5em;
  border-radius: 0.2em;
  border: 1px solid var(--color-blue);
}

@media screen and (max-width: 767px) {
  .anchorNav__linkArrow {
    width: 3em;
    height: 3em;
  }
}

.anchorNav__linkArrow::before,
.anchorNav__linkArrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.6475em);
  left: calc(50% - 0.335em);
  width: 0.666em;
  height: 1.295em;
  background: url("../images/recruit/common/icon-anchor.svg") no-repeat center / contain;
}

@media screen and (max-width: 767px) {

  .anchorNav__linkArrow::before,
  .anchorNav__linkArrow::after {
    top: calc(50% - 0.555em);
    left: calc(50% - 0.2855em);
    width: 0.571em;
    height: 1.11em;
  }
}

.anchorNav__linkArrow::before {
  transform: translateY(-100%);
  opacity: 0;
}

@media (any-hover: hover) {
  .anchorNav__link:hover {
    opacity: 0.7;
  }

  .anchorNav__link:hover .anchorNav__linkArrow::before {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: none;
    opacity: 1;
  }

  .anchorNav__link:hover .anchorNav__linkArrow::after {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
  }
}

/* ------------------------------
セクション見出し
------------------------------ */
.sectionHeading {
  color: var(--color-blue);
}

.sectionHeading__main {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 5em;
  font-weight: 700;
  line-height: 1.44;
}

@media screen and (max-width: 767px) {
  .sectionHeading__main {
    font-size: 2.8em;
    line-height: calc(40 / 28);
  }

  .contentsCareer .sectionHeading__main {
    font-size: 2.5em;
    line-height: calc(36 / 25);
  }
}

.sectionHeading__sub {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.5em;
  margin: 0.165em 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .sectionHeading__sub {
    column-gap: 1em;
    font-size: 1.2em;
    line-height: calc(15 / 12);
  }
}

.sectionHeading__sub::after {
  content: "";
  height: 1px;
  background-color: var(--color-blue);
}

/* ------------------------------
横スクロールバー
------------------------------ */
.c-scrollbar {
  position: relative;
  height: 0.5em;
  border-radius: 9999px;
  background-color: #DCDCDC;
}

.c-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 8.8em;
  height: 100%;
  border-radius: 9999px;
  background-color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .c-scrollbar {
    display: none;
  }
}

/* ------------------------------
学びとキャリア
------------------------------ */
.tabContents {
  opacity: 0;
  transition: opacity 0.4s;
}

.tabContents.is-loaded {
  opacity: 1;
}

.learningSection {
  margin-top: 8em;
  padding-top: 4em;
}

@media screen and (max-width: 767px) {
  .learningSection:first-of-type {
    margin-top: 5em;
  }
}

.learningSection__description {
  margin: calc(47em / 18) 0 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(32 / 18);
}

@media screen and (max-width: 767px) {
  .learningSection__description {
    margin-top: 1.75em;
    font-size: 1.6em;
    line-height: 1.75;
  }
}

/* 講師紹介 */
.learningTable {
  display: grid;
  grid-template-columns: 8em 1fr;
  margin-top: 7.8em;
  border-radius: 4px;
  border: 1px solid var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningTable {
    grid-template-columns: 6em 1fr;
    margin-top: 4.8em;
  }
}

.learningTable__head {
  position: relative;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  margin: 0;
  padding: calc(57.5em / 24) 0;
  border: none;
  border-right: 1px solid var(--color-blue);
  font-size: 2.4em;
  letter-spacing: 0.333em;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningTable__head {
    padding: calc(57.5em / 22) 0;
    font-size: 2.2em;
  }
}

.learningTable__head::after {
  content: "";
  position: absolute;
  top: calc(30em / 24);
  left: 50%;
  width: calc(10em / 24);
  height: calc(10em / 24);
  transform: translateX(-50%);
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningTable__head::after {
    top: calc(30em / 22);
    width: calc(10em / 22);
    height: calc(10em / 22);
  }
}

.learningTable__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.learningTable__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 2em;
  margin: 0;
  padding: 3.8em 4.9em;
}

@media screen and (max-width: 767px) {
  .learningTable__item {
    flex-direction: column;
    padding: 2em 2em 2.8em;
  }
}

.learningTable__item:not(:first-of-type) {
  border-top: 1px solid var(--color-blue);
}

.learningTable__img {
  width: 17.4em;
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningTable__img {
    width: 10em;
    margin-left: 2em;
  }
}

.learningTable__info {
  margin-top: 1.7em;
}

@media screen and (max-width: 767px) {
  .learningTable__info {
    margin-top: 0;
  }
}

.learningTable__name {
  margin: 0;
  padding: 0 0.025em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningTable__name {
    position: absolute;
    top: 2.8em;
    left: 8em;
    padding: 0;
  }
}

.learningTable__text {
  margin: 0.625em 0 0;
  padding: 1.125em calc(0.5em / 16) 0;
  background-image: repeating-linear-gradient(90deg, var(--color-blue), var(--color-blue) 3px, transparent 3px, transparent 8px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-size: 1.6em;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .learningTable__text {
    margin-top: calc(20em / 14);
    padding: calc(18.5em / 14) 0 0;
    font-size: 1.4em;
    line-height: calc(23 / 14);
  }
}

/* カリキュラムフロー */
.learningFlow {
  position: relative;
  z-index: 0;
  margin-top: 8em;
  padding: 9.6em 0 8em;
}

@media screen and (max-width: 767px) {
  .learningFlow {
    margin-top: 7em;
    padding: 5em 0 7em;
  }
}

.learningFlow::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0 calc(50% - 50vw);
  background-color: var(--color-blue);
  clip-path: polygon(0 5.5em, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 767px) {
  .learningFlow::before {
    margin: 0 -2em;
    clip-path: polygon(0 3.1em, 100% 0, 100% 100%, 0 100%);
  }
}

.learningFlow__title {
  position: relative;
  display: inline-block;
  margin-left: -0.8em;
}

@media screen and (max-width: 767px) {
  .learningFlow__title {
    margin-left: 0;
  }
}

.learningFlow__titleSub {
  margin: 0;
  font-size: 12em;
  font-weight: 700;
  line-height: calc(146 / 120);
  color: rgba(0 0 0 / 0.1);
}

@media screen and (max-width: 767px) {
  .learningFlow__titleSub {
    font-size: 9em;
    line-height: calc(110 / 90);
  }
}

.learningFlow__titleMain {
  position: absolute;
  bottom: calc(40em / 30);
  left: 0.6em;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 3em;
  font-weight: 700;
  line-height: calc(44 / 30);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .learningFlow__titleMain {
    bottom: calc(33em / 24);
    left: 0;
    font-size: 2.4em;
    line-height: calc(35 / 24);
  }
}

.learningFlow__titleMain::after {
  display: none;
}

.learningFlow__list {
  position: relative;
  margin: -3em 0 5em;
  padding: 0;
  padding: 0 7.5em;
  border-radius: 10px;
  background-color: #fff;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .learningFlow__list {
    margin: -2.3em 0 3em;
    padding: 1em 2.65em;
  }
}

.learningFlow__item {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 52.8em 1fr;
  align-items: center;
  min-height: 28em;
  margin: 0;
  padding: 1.45em 0;
}

@media screen and (max-width: 767px) {
  .learningFlow__item {
    row-gap: 3em;
    min-height: unset;
    grid-template-columns: 100%;
    padding: 3em 0;
  }
}

.learningFlow__item:not(:last-of-type) {
  background-image: repeating-linear-gradient(90deg, var(--color-blue), var(--color-blue) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

@media screen and (min-width: 768px) {
  .learningFlow__item:not(:first-of-type)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 50%;
    left: 13.8em;
    width: 2px;
    background-color: var(--color-blue);
  }

  .learningFlow__item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    top: 50%;
    left: 13.8em;
    width: 2px;
    background-color: var(--color-blue);
  }
}


.learningFlow__itemHead {
  display: flex;
  align-items: center;
  column-gap: 2.5em;
  padding: 0 7.5em;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemHead {
    column-gap: 1.8em;
    padding: 0 1.35em;
  }
}

.learningFlow__itemIcon {
  flex-shrink: 0;
  width: 12.88em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemIcon {
    width: 7.5em;
  }
}

.learningFlow__itemNumber {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: calc(18 / 14);
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningFlow__itemNumber {
    font-size: 1.2em;
    line-height: calc(15 / 12);
  }
}

.learningFlow__itemName {
  margin: calc(20em / 24) 0 0;
  font-size: 2.4em;
  font-weight: 700;
  line-height: calc(35 / 24);
}

@media screen and (max-width: 767px) {
  .learningFlow__itemName {
    margin-top: calc(8em / 18);
    font-size: 1.8em;
    line-height: calc(26 / 18);
  }
}

.learningFlow__itemNameEn {
  margin: 1.25em 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  line-height: calc(17 / 16);
  color: #868B93;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemNameEn {
    margin-top: calc(4em / 14);
    font-size: 1.4em;
    line-height: calc(15 / 14);
    white-space: nowrap;
  }
}

.learningFlow__itemSteps {
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
  margin: 0;
  padding: 0;
  list-style: none;
  background-image: repeating-linear-gradient(180deg, var(--color-blue), var(--color-blue) 0.3em, transparent 0.3em, transparent 0.6em);
  background-position: left 1.85em top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemSteps {
    margin-left: 3.45em;
    background-image: repeating-linear-gradient(180deg, var(--color-blue), var(--color-blue) 0.2em, transparent 0.2em, transparent 0.4em);
    background-position: left 1.5em top;
  }
}

.learningFlow__itemStep {
  display: flex;
  align-items: center;
  column-gap: 2em;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemStep {
    column-gap: 1.5em;
  }
}

.learningFlow__itemStepNumber {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background-color: var(--color-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .learningFlow__itemStepNumber {
    width: calc(30em / 14);
    height: calc(30em / 14);
    font-size: 1.4em;
  }
}

.learningFlow__itemStepText {
  margin: 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(26 / 18);
}

@media screen and (max-width: 767px) {
  .learningFlow__itemStepText {
    font-size: 1.4em;
    line-height: calc(20 / 14);
  }
}

/* その他カリキュラム */
.learningOthers__title {
  position: relative;
  display: inline-block;
}

.learningOthers__titleSub {
  margin: 0;
  font-size: 10em;
  font-weight: 700;
  line-height: 1.22;
  color: rgba(0 0 0 / 0.1);
}

@media screen and (max-width: 767px) {
  .learningOthers__titleSub {
    font-size: 8em;
    line-height: calc(97 / 80);
  }
}

.learningOthers__titleMain {
  position: absolute;
  bottom: calc(34.5em / 28);
  left: calc(10em / 28);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.8em;
  font-weight: 700;
  line-height: calc(40 / 28);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .learningOthers__titleMain {
    bottom: calc(27em / 22);
    left: 0;
    font-size: 2.2em;
    line-height: calc(32 / 22);
  }
}

.learningOthers__titleMain::after {
  display: none;
}

.learningFlow__others {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 4.4em;
  margin: -2.45em 0 0;
  padding: 2.5em 2em 2.2em;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .learningFlow__others {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
    margin-top: -1.75em;
    padding: 2.5em 0 2.5em 1em;
  }
}

.learningFlow__othersItem {
  display: flex;
  margin: 0.8em 0;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.learningFlow__othersItem::before {
  content: "ー　";
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .learningFlow__othersItem {
    margin: 0;
    font-size: 1.4em;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .learningFlow__others.--01 .learningFlow__othersItem {
    min-width: calc(351em / 16);
  }
}

.learningFlow__others.--02 {
  column-gap: 4.8em;
}

.learning__banner {
  display: block;
  width: 100%;
  max-width: 66.1em;
  margin: 8em auto 0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (any-hover: hover) {
  .learning__banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(0 0 0 / 0.5);
  }
}

/* 未経験からのキャリアパス */
.learningBeginner {
  margin-top: 12em;
  border-radius: 4px;
  background: url("../images/recruit/learning/beginner.jpg") no-repeat center / cover;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .learningBeginner {
    margin: 9em -1.2em 6em;
    padding: 0 1.2em;
    background-image: url("../images/recruit/learning/beginner@sp.jpg");
  }
}

.learningBeginner__title {
  margin: 0;
  padding: 0;
  border: none;
  padding: calc(35em / 40) 0 calc(21em / 40);
  background-image: repeating-linear-gradient(90deg, #fff, #fff 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  text-align: center;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .learningBeginner__title {
    padding: calc(30em / 22) 0;
    font-size: 2.2em;
    line-height: calc(32 / 22);
  }
}

.learningBeginner__text {
  margin: 0;
  padding: calc(45em / 18) calc(103em / 18) calc(31em / 18);
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(34 / 18);
}

@media screen and (max-width: 767px) {
  .learningBeginner__text {
    padding: calc(27em / 14) calc(30em / 14) calc(26em / 14);
    font-size: 1.4em;
    line-height: 2;
  }
}

/* キャリアパス */
.learningCareer {
  margin-top: 9.6em;
}

@media screen and (min-width: 768px) {
  .learningCareer:not(:first-of-type) {
    margin-top: 9em;
  }
}

@media screen and (max-width: 767px) {
  .learningCareer {
    margin-top: 8.2em;
  }

  .learningCareer:last-of-type {
    margin-top: 9em;
  }
}

.learningHeading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 26);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.6em;
  font-weight: 700;
  line-height: calc(37 / 26);
}

@media screen and (max-width: 767px) {
  .learningHeading {
    column-gap: 0.5em;
    font-size: 2em;
    line-height: 1.45;
  }
}

.learningHeading::before {
  content: "";
  width: calc(10em / 26);
  height: calc(10em / 26);
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningHeading::before {
    width: 0.5em;
    height: 0.5em;
  }
}

.learningHeading::after {
  display: none;
}

.learningCareer__figure {
  margin-top: 2em;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.learningCareer__figure::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .learningCareer__figure {
    margin: 1.5em -2em 3.3em;
    overflow-x: scroll;
  }

  .learningCareer__imgWrapper {
    padding: 0 2em;
  }

  .learningCareer__imgWrapper.--01 {
    min-width: 106em;
  }

  .learningCareer__imgWrapper.--02 {
    min-width: 80.2em;
  }
}

.learningExample {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 94.5em;
  padding: 5.45em 5em 4em;
  border-radius: 4px;
  background-color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .learningExample:nth-child(odd) {
    align-items: flex-start;
    margin-top: 2em;
  }

  .learningExample:nth-child(even) {
    align-items: flex-end;
    margin-top: 8em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1359px) {
  .learningExample:nth-child(even) {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .learningExample {
    margin-right: -1.2em;
    margin-left: -1.2em;
    padding: 3em 1.2em 3.5em;
  }

  .learningExample:nth-child(odd) {
    margin-top: 1.5em;
  }

  .learningExample:nth-child(even) {
    margin-top: 7em;
  }
}

.learningExample__imgContainer {
  position: absolute;
  top: 4em;
}

@media screen and (min-width: 768px) {
  .learningExample:nth-child(odd) .learningExample__imgContainer {
    right: -11.4em;
  }

  .learningExample:nth-child(even) .learningExample__imgContainer {
    left: -11.1em;
  }
}

@media screen and (max-width: 767px) {
  .learningExample__imgContainer {
    position: static;
  }
}

.learningExample__imgWrapper {
  position: relative;
  width: 45em;
  height: 30em;
}

@media screen and (max-width: 767px) {
  .learningExample__imgWrapper {
    width: 100%;
    height: 23.5em;
  }
}

.learningExample__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
}

.learningExample__name {
  position: absolute;
  bottom: calc(55em / 22);
  left: calc(20em / 22);
  margin: 0;
  padding: calc(2em / 22) calc(13em / 22) calc(6em / 22);
  border-radius: 2px;
  background-color: var(--color-black);
  font-size: 2.2em;
  font-weight: 700;
  line-height: calc(32 / 22);
  letter-spacing: 0.02em;
  color: #fff;
}

.learningExample__name .text-sm {
  font-size: calc(16em / 22);
}

@media screen and (max-width: 767px) {
  .learningExample__name {
    bottom: calc(47em / 22);
    left: calc(12em / 22);
  }
}

.learningExample__position {
  position: absolute;
  bottom: 1.25em;
  left: 1.25em;
  margin: 0;
  padding: 0.125em 0.8125em 0.25em;
  border-radius: 2px;
  background-color: #fff;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .learningExample__position {
    bottom: 0.75em;
    left: 0.75em;
  }
}

.learningExample__description {
  margin: 0;
  font-size: 2.6em;
  font-weight: 700;
  line-height: calc(42 / 26);
  letter-spacing: 0.02em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .learningExample__description.--02 {
    padding-right: calc(101em / 28);
    font-size: 2.8em;
  }

  .learningExample__description.--03 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 767px) {
  .learningExample__description {
    margin-top: 0.95em;
    font-size: 2em;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }

  .learningExample__description.--02,
  .learningExample__description.--03 {
    letter-spacing: 0.03em;
  }
}

.learningExample__history {
  width: 100%;
  max-width: 60.5em;
  margin: 2.75em 0 0;
  border-radius: 4px;
  background-color: #fff;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .learningExample:nth-child(odd) .learningExample__history {
    padding: 3em 6.5em 0.5em 3.5em;
  }

  .learningExample:nth-child(even) .learningExample__history {
    padding: 3em 3.5em 0.5em 6.5em;
  }
}

@media screen and (max-width: 767px) {
  .learningExample__history {
    margin-top: 2.9em;
    padding: 2em 2em 3em;
  }
}

.learningExample__historyItem {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 6em;
  margin: 0;
  padding-bottom: 2.5em;
}

@media screen and (max-width: 767px) {
  .learningExample__historyItem {
    grid-template-columns: 100%;
    row-gap: 1em;
    padding-left: 4em;
    padding-bottom: 2em;
  }
}

.learningExample__historyItem::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: 8.8em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-image: radial-gradient(#fff, #fff 0.6em, var(--color-blue) 0.64em, var(--color-blue));
}

@media screen and (max-width: 767px) {
  .learningExample__historyItem::before {
    top: 0.3em;
    left: 0;
  }
}

.learningExample__historyItem:not(:last-of-type)::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1.4em;
  right: 0;
  bottom: -0.3em;
  left: 0;
  background-image: repeating-linear-gradient(180deg, var(--color-blue), var(--color-blue) 0.3em, transparent 0.3em, transparent 0.6em);
  background-position: left 9.75em top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

@media screen and (max-width: 767px) {
  .learningExample__historyItem:not(:last-of-type)::after {
    top: 1.2em;
    background-position: left 0.95em top;
  }
}

.learningExample__historyLabel {
  min-width: calc(67em / 16);
  margin: 0;
  text-align: right;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .learningExample__historyLabel {
    min-width: unset;
    text-align: left;
    color: var(--color-blue);
  }
}

.learningExample__historyHeading {
  margin: 0;
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
}

@media screen and (max-width: 767px) {
  .learningExample__historyHeading {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.learningExample__historyText {
  margin: calc(5em / 14) 0 0;
  font-size: 1.4em;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .learningExample__historyText {
    margin-top: calc(4em / 14);
  }
}

/* ------------------------------
働く環境を知る
------------------------------ */
.envSection {
  margin-top: 6em;
  padding-top: 4em;
}

.envSection:first-of-type {
  margin-top: 8em;
}

@media screen and (max-width: 767px) {
  .envSection {
    margin-top: 8em;
  }

  .envSection:first-of-type {
    margin-top: 5em;
  }
}

/* 数字で見る */
.envNumbers {
  margin-top: 5em;
  padding: 5em;
  border-radius: 4px;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .envNumbers {
    margin-top: 4em;
    padding: 3em 2em;
  }
}

.envNumbers__section:not(:first-of-type) {
  margin-top: 6em;
}

@media screen and (max-width: 767px) {
  .envNumbers__section:not(:first-of-type) {
    margin-top: 5em;
  }
}

.envNumbers__heading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 30);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 3em;
  font-weight: 700;
  line-height: calc(44 / 30);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .envNumbers__heading {
    column-gap: 0.5em;
    font-size: 2em;
    line-height: 1.45;
  }
}

.envNumbers__heading::before {
  content: "";
  flex-shrink: 0;
  width: calc(10em / 30);
  height: calc(10em / 30);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .envNumbers__heading::before {
    width: 0.5em;
    height: 0.5em;
  }
}

.envNumbers__heading::after {
  display: none;
}

.envNumbers__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
  gap: 3em 2.7%;
}

@media screen and (max-width: 767px) {
  .envNumbers__list {
    margin-top: 2em;
    gap: 2em;
  }
}

.envNumbers__item {
  padding: 0 3.7em;
  border-radius: 4px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .envNumbers__item {
    width: calc((100% - 2.6em) / 2);
  }

  .envNumbers__item.--sm {
    width: 37.7%;
  }

  .envNumbers__item.--lg {
    width: 59.5%;
  }
}

@media screen and (max-width: 767px) {
  .envNumbers__item {
    width: 100%;
    padding: 0 2.5em;
  }
}

.envNumbers__dt {
  margin: 0;
  background-image: repeating-linear-gradient(90deg, #A8A8A8, #A8A8A8 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  padding: 1em 0.025em 0.7em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.45;
}

@media screen and (min-width: 768px) {
  .envNumbers__dt.--sm {
    padding: calc(20em / 18) calc(0.5em / 18) calc(17em / 18);
    font-size: 1.8em;
    line-height: calc(26 / 18);
  }
}

@media screen and (max-width: 767px) {
  .envNumbers__dt {
    padding: calc(15em / 14) 0;
    font-size: 1.4em;
    line-height: calc(20 / 14);
  }
}

.envNumbers__dd {
  display: flex;
  flex-direction: column;
  min-height: 19.4em;
}

@media screen and (max-width: 767px) {
  .envNumbers__dd {
    min-height: unset;
  }
}

.js-count-number {
  opacity: 0;
}

/* 平均残業時間 */
.envNumbers__data01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.6em 1em 3.6em 1.8em;
}

.envNumbers__data01Text {
  display: flex;
  align-items: flex-end;
  margin: 0;
  column-gap: 0.5em;
  font-weight: 700;
}

.envNumbers__data01Num {
  width: 1.1em;
  text-align: right;
  white-space: nowrap;
  font-size: 10em;
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: var(--color-blue);
}

.envNumbers__data01NumUnit {
  margin-bottom: calc(22em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
}

.envNumbers__data01Img {
  width: 9.5em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data01 {
    padding: 1.5em 1em 2.4em;
  }

  .envNumbers__data01Num {
    font-size: 7em;
    line-height: calc(86 / 70);
  }

  .envNumbers__data01NumUnit {
    margin-bottom: 0.75em;
    font-size: 2em;
  }

  .envNumbers__data01Img {
    width: 6.3em;
  }
}

/* 年間平均休日 */
.envNumbers__data02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2.1em 2.2em 4.7em 1.8em;
}

.envNumbers__data02Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.4em;
  margin: 0;
  font-weight: 700;
}

.envNumbers__data02Num {
  width: calc(159em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  letter-spacing: 0.025em;
  color: var(--color-blue);
}

.envNumbers__data02NumUnit {
  margin-bottom: calc(17em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
}

.envNumbers__data02Note {
  margin: -1.5em 0 0;
  font-size: 1em;
  line-height: 1.5;
}

.envNumbers__data02Img {
  width: 11.5em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data02 {
    position: relative;
    align-items: flex-start;
    padding: 0.7em 0.93em 4.2em 1em;
  }

  .envNumbers__data02Text {
    column-gap: 0.2em;
  }

  .envNumbers__data02Num {
    width: calc(121em / 70);
    font-size: 7em;
    line-height: calc(86 / 70);
    letter-spacing: 0.03em;
  }

  .envNumbers__data02NumUnit {
    margin-top: 0.85em;
    font-size: 2em;
    line-height: 1.45;
  }

  .envNumbers__data02Note {
    position: absolute;
    bottom: 1.5em;
    left: 1em;
    margin-top: 0;
  }

  .envNumbers__data02Img {
    width: 6.57em;
    margin-top: 1.2em;
  }
}

/* リモート率 */
.envNumbers__data03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.6em 0.22em 3.6em 1.7em;
}

.envNumbers__data03Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.6em;
  margin: 0;
  font-weight: 700;
}

.envNumbers__data03Num {
  width: 1.27em;
  text-align: right;
  white-space: nowrap;
  font-size: 10em;
  line-height: 1.22;
  color: var(--color-blue);
}

.envNumbers__data03NumUnit {
  margin-bottom: calc(20em / 30);
  font-size: 3em;
  line-height: calc(37 / 30);
}

.envNumbers__data03Img {
  width: 18em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data03 {
    padding: 1.5em 0 2.4em 1em;
  }

  .envNumbers__data03Text {
    column-gap: 0.5em;
  }

  .envNumbers__data03Num {
    width: 1.3em;
    font-size: 7em;
    line-height: calc(86 / 70);
    letter-spacing: 0.03em;
  }

  .envNumbers__data03NumUnit {
    margin-bottom: calc(16em / 22);
    font-size: 2.2em;
    line-height: 1;
  }

  .envNumbers__data03Img {
    width: 11.32em;
  }
}

/* 有休消化率 */
.envNumbers__data04 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3.2em 1.8em 4em 1.8em;
}

.envNumbers__data04Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin: 0.9em 0 0;
  font-weight: 700;
}

.envNumbers__data04Num {
  width: calc(163em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data04NumUnit {
  margin-bottom: calc(19em / 30);
  font-size: 3em;
  line-height: calc(37 / 30);
}

.envNumbers__data04Img {
  width: 12.8em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data04 {
    padding: 1.5em 1em 2.4em;
  }

  .envNumbers__data04Text {
    margin: 0;
  }

  .envNumbers__data04Num {
    width: calc(127em / 70);
    font-size: 7em;
    line-height: calc(86 / 70);
    letter-spacing: 0.03em;
  }

  .envNumbers__data04NumUnit {
    margin-bottom: calc(16em / 22);
    font-size: 2.2em;
    line-height: 1;
  }

  .envNumbers__data04Img {
    margin-top: 1em;
    width: 7em;
  }
}

/* 未経験入社率 */
.envNumbers__data05 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.1em 1.4em 4em 1.8em;
}

.envNumbers__data05Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin: 0;
  font-weight: 700;
}

.envNumbers__data05Num {
  width: calc(121em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data05NumUnit {
  margin-bottom: 0.5em;
  font-size: 3em;
  line-height: calc(37 / 30);
}

.envNumbers__data05Img {
  width: 8.1em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data05 {
    padding: 1.5em 2em 1.8em;
  }

  .envNumbers__data05Num {
    width: calc(100em / 75);
    font-size: 7.5em;
    line-height: calc(92 / 75);
    letter-spacing: 0.03em;
  }

  .envNumbers__data05NumUnit {
    margin-bottom: calc(18em / 22);
    font-size: 2.2em;
    line-height: 1;
  }

  .envNumbers__data05Img {
    width: 6em;
  }
}

/* エンジニアデビュー人数 */
.envNumbers__data06 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.7em 3.7em 4em 1.6em;
}

.envNumbers__data06Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin: 0.8em 0 0;
  font-weight: 700;
}

.envNumbers__data06Num {
  width: calc(181em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data06NumUnit {
  margin-bottom: calc(18em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
  letter-spacing: 0.04em;
}

.envNumbers__data06NumUnit .text-sm {
  font-size: calc(26em / 29);
}

.envNumbers__data06Img {
  width: 10.65em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data06 {
    padding: 2em 1em 2.6em 0;
  }

  .envNumbers__data06Text {
    column-gap: 0;
    margin: 0;
  }

  .envNumbers__data06Num {
    width: calc(130em / 65);
    font-size: 6.5em;
    line-height: calc(79 / 65);
    letter-spacing: 0.03em;
  }

  .envNumbers__data06NumUnit {
    font-size: 2em;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .envNumbers__data06NumUnit .text-sm {
    font-size: 0.9em;
  }

  .envNumbers__data06Img {
    margin-top: 1.14em;
    width: 4.72em;
  }
}

/* 男女比率 */
.envNumbers__data07 {
  display: flex;
  align-items: flex-start;
  padding: 2.5em 0 2.7em 0.1em;
}

.envNumbers__data07Main {
  margin: 1.6em 3.5em 0 3.4em;
}

.envNumbers__data07Names {
  display: flex;
  justify-content: center;
  column-gap: 4.4125em;
  margin-right: -0.2em;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.envNumbers__data07Value {
  margin-top: calc(-13em / 93);
  width: calc(163em / 93);
  text-align: center;
  white-space: nowrap;
  font-size: 9.3em;
  font-weight: 700;
  line-height: calc(113 / 93);
  letter-spacing: 0.1em;
  color: var(--color-blue);
}

.envNumbers__data07Img {
  width: 8em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data07 {
    padding: 1.5em 0 1.3em;
  }

  .envNumbers__data07Main {
    margin: 0.5em 1.63em 0;
  }

  .envNumbers__data07Names {
    justify-content: space-between;
    column-gap: 0;
    padding: 0 calc(5.5em / 12) 0 calc(11.4em / 12);
    font-size: 1.2em;
  }

  .envNumbers__data07Value {
    margin-top: calc(-11em / 70);
    width: calc(123em / 70);
    font-size: 7em;
    line-height: calc(86 / 70);
  }

  .envNumbers__data07Img {
    width: 5.37em;
  }
}

/* 勤務地比率 */
.envNumbers__data08 {
  display: flex;
  align-items: flex-end;
  padding: 3.2em 0.6em 3.8em 0.5em;
}

.envNumbers__data08Main {
  margin: 0 1em 0 1.2em;
}

.envNumbers__data08Names {
  display: flex;
  justify-content: center;
  column-gap: 4.4125em;
  margin-right: -0.2em;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.envNumbers__data08Value {
  margin-top: calc(-13em / 93);
  width: calc(163em / 93);
  text-align: center;
  white-space: nowrap;
  font-size: 9.3em;
  font-weight: 700;
  line-height: calc(113 / 93);
  letter-spacing: 0.1em;
  color: var(--color-blue);
}

.envNumbers__data08Img {
  height: auto;
}

.envNumbers__data08Img:first-of-type {
  width: 10.74em;
}

.envNumbers__data08Img:last-of-type {
  width: 9.92em;
}

@media screen and (max-width: 767px) {
  .envNumbers__data08 {
    align-items: flex-start;
    padding: 2em 0 1.3em;
  }

  .envNumbers__data08Main {
    margin: 0 1.08em 0 0.62em;
  }

  .envNumbers__data08Names {
    justify-content: space-between;
    column-gap: 0;
    padding: 0 calc(5.5em / 12) 0 calc(11.4em / 12);
    font-size: 1.2em;
  }

  .envNumbers__data08Value {
    margin-top: calc(-11em / 70);
    width: calc(123em / 70);
    font-size: 7em;
    line-height: calc(86 / 70);
  }

  .envNumbers__data08Img:first-of-type {
    margin-top: 1.3em;
    width: 6.38em;
  }

  .envNumbers__data08Img:last-of-type {
    margin-top: 0.89em;
    width: 5.9em;
  }
}

/* 基本給アップ */
.envNumbers__data09 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.3em 1.2em 4em 1.8em;
}

.envNumbers__data09Text {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
  margin: 0;
  font-weight: 700;
}

.envNumbers__data09Num {
  width: calc(135em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data09NumUnit {
  margin-bottom: calc(19em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
}

.envNumbers__data09Note {
  margin: calc(-17em / 12) 0 0;
  font-size: 1.2em;
  line-height: calc(17 / 12);
}

.envNumbers__data09Img {
  width: 15.4em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data09 {
    align-items: flex-end;
    padding: 1em 0.9em 2.7em 1em;
  }

  .envNumbers__data09Num {
    width: calc(106em / 70);
    font-size: 7em;
    line-height: calc(86 / 70);
    letter-spacing: 0.03em;
  }

  .envNumbers__data09NumUnit {
    margin-bottom: 0.65em;
    font-size: 2em;
    line-height: 1.45;
  }

  .envNumbers__data09Note {
    margin-top: -1.3em;
    font-size: 1em;
    line-height: 1.5;
  }

  .envNumbers__data09Img {
    width: 8.7em;
  }
}

/* 待機時の給与 */
.envNumbers__data10 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4.1em 2.5em 4em 1.8em;
}

.envNumbers__data10Text {
  display: flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin: 0;
  font-weight: 700;
}

.envNumbers__data10Num {
  width: calc(163em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data10NumUnit {
  margin-bottom: calc(19em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
}

.envNumbers__data10NumUnit .u-font-en {
  padding-right: calc(2em / 30);
  font-size: calc(30em / 29);
}

.envNumbers__data10Img {
  width: 7em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .envNumbers__data10 {
    padding: 2em 0.88em 2.6em 1em;
  }

  .envNumbers__data10Text {
    column-gap: 0;
  }

  .envNumbers__data10Num {
    width: calc(118em / 65);
    font-size: 6.5em;
    line-height: calc(79 / 65);
    letter-spacing: 0.03em;
  }

  .envNumbers__data10NumUnit {
    font-size: 2em;
    line-height: 1.45;
  }

  .envNumbers__data10NumUnit .u-font-en {
    padding-right: 0.1em;
    font-size: 1em;
  }

  .envNumbers__data10Img {
    width: 4.86em;
  }
}

/* 未経験から一番金額の増えた人の月収 */
.envNumbers__data11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.4em 1.8em 3.3em;
}

.envNumbers__data11Name {
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
  color: var(--color-blue);
}

.envNumbers__data11Value {
  display: flex;
  align-items: flex-end;
  column-gap: 0.5em;
  margin-top: -1.2em;
}

.envNumbers__data11Num {
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  font-weight: 700;
  line-height: calc(113 / 93);
  letter-spacing: 0.01em;
  color: var(--color-blue);
}

.envNumbers__data11Num.--01 {
  width: calc(111em / 93);
}

.envNumbers__data11Num.--02 {
  width: calc(127em / 93);
}

.envNumbers__data11NumUnit {
  margin-bottom: calc(19em / 24);
  font-size: 2.4em;
  font-weight: 700;
  line-height: calc(35 / 24);
  white-space: nowrap;
}

.envNumbers__data11Arrow {
  font-size: 4em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .envNumbers__data11 {
    column-gap: 0.7em;
    padding: 2.4em 0 1.5em 0.1em;
  }

  .envNumbers__data11Name {
    font-size: 1.4em;
    line-height: calc(20 / 14);
  }

  .envNumbers__data11Value {
    column-gap: 0.1em;
    margin-top: -1em;
  }

  .envNumbers__data11Num {
    letter-spacing: 0.03em;
  }

  .envNumbers__data11Num.--01 {
    width: calc(75em / 62);
    font-size: 6.2em;
    line-height: calc(76 / 62);
  }

  .envNumbers__data11Num.--02 {
    width: calc(84em / 60);
    font-size: 6em;
    line-height: calc(73 / 60);
  }

  .envNumbers__data11NumUnit {
    margin-bottom: 0.8125em;
    font-size: 1.6em;
    line-height: 1.5;
  }

  .envNumbers__data11Arrow {
    font-size: 2em;
    margin-right: 0.2em;
  }
}

/* 平均年齢 */
.envNumbers__data12 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 0.5em;
  margin: 0;
  padding: 4.1em 0 4em;
  font-weight: 700;
}

.envNumbers__data12Num {
  width: calc(191em / 93);
  text-align: right;
  white-space: nowrap;
  font-size: 9.3em;
  line-height: calc(113 / 93);
  color: var(--color-blue);
}

.envNumbers__data12NumUnit {
  margin-bottom: calc(17em / 29);
  font-size: 2.9em;
  line-height: calc(42 / 29);
}

@media screen and (max-width: 767px) {
  .envNumbers__data12 {
    column-gap: 1em;
    padding: 1.5em 0 1.8em;
  }

  .envNumbers__data12Num {
    width: calc(160em / 75);
    font-size: 7.5em;
    line-height: calc(92 / 75);
    letter-spacing: 0.03em;
  }

  .envNumbers__data12NumUnit {
    margin-bottom: calc(16em / 22);
    font-size: 2.2em;
    line-height: calc(32 / 22);
  }
}

/* 福利厚生・制度 */
.benefitsSection {
  margin-top: 5em;
}

@media screen and (max-width: 767px) {
  .benefitsSection {
    margin-top: 0;
    padding-bottom: 1em;
    border-top: 1px solid #DCDCDC;
  }

  .benefitsSection:first-of-type {
    margin-top: 4em;
  }

  .benefitsSection:last-of-type {
    border-bottom: 1px solid #DCDCDC;
  }
}

.benefitsHeading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 30);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.6em;
  line-height: calc(37 / 26);
}

.benefitsHeading::before {
  flex-shrink: 0;
  content: "";
  width: calc(10em / 30);
  height: calc(10em / 30);
  margin-top: 0.1em;
  background-color: var(--color-blue);
}

.benefitsHeading::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .benefitsHeading {
    padding: 2em 0.25em 1.5em 0;
    column-gap: 0.5em;
    font-size: 2em;
    line-height: 1.45;
    cursor: pointer;
  }

  .benefitsHeading::before {
    width: 0.5em;
    height: 0.5em;
  }

  .benefitsHeading::after {
    content: "";
    flex-shrink: 0;
    position: static;
    display: block;
    width: 2em;
    height: 2em;
    margin-left: auto;
    border: none;
    background: url("../images/recruit/environment/icon-plus.svg") no-repeat center / contain;
  }

  .benefitsHeading.is-opened::after {
    background-image: url("../images/recruit/environment/icon-minus.svg");
  }
}

.benefitsList {
  display: grid;
  gap: 3em 2em;
  margin: 2em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .benefitsList.--col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefitsList.--col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefitsList.--col3 .benefitsList__item {
    padding: 3em 2.9em 3.6em 3em;
  }
}

@media screen and (max-width: 767px) {
  .benefitsList {
    grid-template-columns: 100%;
    gap: 3em;
    margin-top: 0;
    padding-bottom: 3em;
  }
}

.benefitsList__item {
  min-height: 27em;
  margin: 0;
  padding: 3em 3.6em 4em 4em;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .benefitsList__item {
    min-height: unset;
    padding: 2em 2em 2.8em;
  }
}

.benefitsList__head {
  display: flex;
  align-items: center;
  column-gap: 2.1em;
}

@media screen and (max-width: 767px) {
  .benefitsList__head {
    column-gap: 2em;
  }
}

.benefitsList__icon {
  width: 7em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .benefitsList__icon {
    width: 5em;
  }
}

.benefitsList__heading {
  margin: 0;
  padding: 0;
  background: none;
  font-size: 2.2em;
  line-height: calc(32 / 22);
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .benefitsList__heading {
    font-size: 2em;
    line-height: 1.45;
  }
}

.benefitsList__text {
  margin: 1.125em 0 0;
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.benefitsList__text .highlight {
  background-color: rgba(0 78 188 / 0.15);
}

.benefitsList__text .highlight-short {
  background-image: linear-gradient(90deg, rgba(0 78 188 / 0.15), rgba(0 78 188 / 0.15) calc(100% - 0.4em), transparent calc(100% - 0.4em));
}

/* 成長できる環境 */
.growth {
  margin-top: 5em;
  border-radius: 4px;
  background-color: var(--color-blue);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .growth {
    margin-top: 4em;
    padding: 0 2em;
  }
}

.growth__section {
  padding: 5em 4em 5em 5em;
}

@media screen and (max-width: 767px) {
  .growth__section {
    padding: 2.8em 0 3.8em;
  }
}

.growth__section:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.growth__heading {
  display: flex;
  align-items: center;
  column-gap: calc(11em / 26);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.6em;
  line-height: calc(37 / 26);
}

.growth__heading::before {
  content: "";
  width: calc(10em / 26);
  height: calc(10em / 26);
  margin-top: 0.1em;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .growth__heading {
    column-gap: 0.5em;
    font-size: 2em;
    line-height: 1.45;
  }

  .growth__heading::before {
    width: 0.5em;
    height: 0.5em;
  }
}

.growth__heading::after {
  display: none;
}

.growth__container {
  display: grid;
  grid-template-columns: 37.8em 1fr;
  align-items: flex-start;
  column-gap: 2em;
  margin-top: 0.6em;
}

@media screen and (max-width: 767px) {
  .growth__container {
    grid-template-columns: 100%;
    row-gap: 1.8em;
  }
}

.growth__img {
  width: 37.8em;
  height: auto;
  margin-top: 0.4em;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
}

.growth__text {
  margin: 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(34 / 18);
  letter-spacing: -0.02em;
}

@media screen and (max-width: 767px) {
  .growth__text {
    font-size: 1.6em;
    line-height: 1.75;
  }
}

.growth__list {
  margin: 2.7em 0 0;
  padding: 0;
  list-style: none;
}

.growth__listItem {
  margin: 1.125em 0 0;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.125;
}

/* オフィスギャラリー */
.gallery__section {
  position: relative;
  padding: 5em 11.1em 0;
}

@media screen and (max-width: 767px) {
  .gallery__section {
    padding: 4em 0 0;
  }
}

.gallery__section:not(:first-of-type) {
  margin-top: 8em;
  border-top: 1px solid var(--color-blue);
}

@media screen and (max-width: 767px) {
  .gallery__section:not(:first-of-type) {
    margin-top: 4em;
  }

  .gallery__section:last-of-type {
    padding-bottom: 1em;
  }
}

.gallery__heading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 26);
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.6em;
  line-height: calc(37 / 26);
}

.gallery__heading::before {
  content: "";
  width: calc(10em / 26);
  height: calc(10em / 26);
  margin-top: 0.1em;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .gallery__heading {
    column-gap: 0.5em;
    font-size: 2em;
    line-height: 1.45;
  }

  .gallery__heading::before {
    width: 0.5em;
    height: 0.5em;
  }
}

.gallery__heading::after {
  display: none;
}

.gallery__slider {
  margin: 1em -11.1em 0;
  padding: 0 11.1em;
}

@media screen and (max-width: 767px) {
  .gallery__slider {
    margin: 2em -1.2em 0;
    padding: 0 1.2em;
  }
}

.gallery__slide {
  position: relative;
  margin-right: 11.1em;
}

.gallery__img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.gallery__caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  font-size: 11px !important;
  line-height: calc(16 / 11);
  letter-spacing: -0.02em;
  color: #fff;
}

.gallery__btn {
  top: 50%;
  width: 6em;
  height: 6em;
  margin-top: -3em;
  border-radius: 4px;
  border: 1px solid var(--color-blue);
  transition: opacity 0.3s;
}

.swiper-button-prev.gallery__btn {
  left: 0;
}

.swiper-button-next.gallery__btn {
  right: 0;
}

@media screen and (max-width: 767px) {
  .gallery__btn {
    width: 4em;
    height: 4em;
    margin-top: -2em;
    border-radius: 2px;
  }
}

.gallery__btn::after {
  display: none !important;
}

.gallery__btnArrow {
  position: absolute;
  top: calc(50% - 0.423em);
  left: calc(50% - 0.8375em);
  width: 1.67em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .gallery__btnArrow {
    top: calc(50% - 0.333em);
    left: calc(50% - 0.6975em);
    width: 1.295em;
  }
}

.swiper-button-prev .gallery__btnArrow:last-of-type {
  opacity: 0;
  transform: translateX(100%);
}

.swiper-button-next .gallery__btnArrow:first-of-type {
  opacity: 0;
  transform: translateX(-100%);
}

@media (any-hover: hover) {
  .gallery__btn:hover {
    opacity: 0.7;
  }

  .gallery__btn:hover .gallery__btnArrow {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .swiper-button-prev:hover .gallery__btnArrow:first-of-type {
    opacity: 0;
    transform: translateX(-100%);
  }

  .swiper-button-prev:hover .gallery__btnArrow:last-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .gallery__btnArrow:first-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .gallery__btnArrow:last-of-type {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* ------------------------------
採用について
------------------------------ */
@media screen and (min-width: 768px) {
  .recruit-about .sectionHeading__main {
    font-size: 4em;
  }

  .recruit-about .sectionHeading__sub {
    margin-top: 0;
  }
}

.aboutSection {
  margin-top: 8em;
  padding-top: 4em;
}

@media screen and (min-width: 768px) {
  #flow.aboutSection {
    margin-top: 6.9em;
  }
}

@media screen and (max-width: 767px) {
  .aboutSection:first-of-type {
    margin-top: 5em;
  }
}

/* 募集職種 */
.jobList {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 3em;
  margin: 5em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .jobList {
    row-gap: 4em;
    margin-top: 4em;
  }
}

.jobItem {
  margin: 0;
}

.jobItem__link {
  display: grid;
  grid-template-columns: 29em 1fr;
  align-items: flex-start;
  column-gap: 2em;
  padding: 3em 2em 3em 3em;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-black);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .jobItem__link {
    padding: 3em 2em;
    grid-template-columns: 100%;
  }
}

.jobItem__imgWrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 19.3em;
  background-color: #656565;
}

@media screen and (max-width: 767px) {
  .jobItem__imgWrapper {
    height: 20.9em;
  }
}

.jobItem__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.jobItem__title {
  margin: 1em 0 0;
  padding: 0;
  border: none;
  font-size: 2em;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .jobItem__title {
    margin: 0.5em 0 0 -0.5em;
  }
}

.jobItem__title::after {
  display: none;
}

.jobItem__text {
  margin: 1.625em 0 0;
  font-size: 1.6em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .jobItem__text {
    margin-top: calc(16em / 14);
    font-size: 1.4em;
  }

  .jobItem__text br {
    display: none;
  }
}

.jobItem__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 1.6em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .jobItem__tags {
    margin-top: 2.6em;
  }
}

.jobItem__tag {
  margin: 0;
  padding: 0.1em 1em 0.3em;
  border-radius: 2px;
  background-color: rgba(0 78 188 / 0.1);
  transition: background-color 0.3s ease-in-out;
}

.jobItem__tagText {
  font-size: 1.4em;
  line-height: calc(20 / 14);
}

@media (any-hover: hover) {
  .jobItem__link:hover {
    background-color: var(--color-blue);
    color: #fff;
  }

  .jobItem__link:hover .jobItem__tag {
    background-color: rgba(255 255 255 / 0.1);
  }

  .jobItem__link:hover .jobItem__img {
    transform: scale(1.1);
  }
}

/* 採用フロー */
.flowList {
  display: flex;
  justify-content: space-between;
  margin: 4.8em 0 0;
  padding: 0;
  list-style: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.flowList::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .flowList {
    column-gap: 1.65em;
    margin: 4em -2em 0;
    padding: 0 2em;
    overflow-x: scroll;
  }
}

.flowItem {
  flex-shrink: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .flowItem {
    opacity: 0;
  }
}

.flowItem__img {
  display: block;
  width: auto;
  height: 21.7em;
}

.flowNote {
  margin: calc(10em / 14) 0 0 calc(17em / 14);
  font-size: 1.4em;
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .flowNote {
    margin: calc(20em / 12) 0 calc(40em / 12);
    font-size: 1.2em;
  }
}

/* よくある質問 */
.faqList {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 3em;
  margin: 5em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .faqList {
    row-gap: 4em;
    margin-top: 4em;
    padding-bottom: 1em;
  }
}

.faqItem {
  margin: 0;
  padding: 0 3em;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .faqItem {
    padding: 0 1.5em;
  }
}

.faqItem__head {
  display: flex;
  align-items: flex-start;
  column-gap: 2em;
  padding: 2.8em 0;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .faqItem__head {
    padding: 3em 0;
    column-gap: 1em;
  }
}

.faqItem__heading {
  flex-shrink: 0;
  margin-top: calc(6em / 26);
  font-family: "Montserrat", sans-serif;
  font-size: 2.6em;
  font-weight: 700;
  line-height: calc(32 / 26);
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .faqItem__heading {
    margin-top: 0;
    font-size: 2em;
    line-height: 1.2;
  }
}

.faqItem__text {
  margin: calc(7em / 18) 0 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(30 / 18);
}

@media screen and (max-width: 767px) {
  .faqItem__text {
    margin: calc(-4em / 14) 0;
    font-size: 1.4em;
    line-height: 2;
  }

  .faqItem__head .faqItem__text {
    padding-right: calc(17em / 14);
  }
}

.faqItem__toggle {
  flex-shrink: 0;
  display: flex;
  width: 4.5em;
  height: 4.5em;
  margin-left: auto;
  border-radius: 4px;
  background-color: var(--color-blue);
}

.faqItem__toggle::after {
  content: "＋";
  margin: auto;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
}

.faqItem__head.is-opened .faqItem__toggle::after {
  content: "−";
  font-size: 2.2em;
}

@media screen and (max-width: 767px) {
  .faqItem__toggle {
    width: 3em;
    height: 3em;
    border-radius: 2px;
  }

  .faqItem__toggle::after {
    font-size: 1.2em;
  }

  .faqItem__head.is-opened .faqItem__toggle::after {
    font-size: 1.4em;
  }
}

.faqItem__body {
  display: flex;
  align-items: flex-start;
  column-gap: 2em;
  padding: 2.8em 0 3.4em;
  background-image: repeating-linear-gradient(90deg, var(--color-blue), var(--color-blue) 3px, transparent 3px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

@media screen and (max-width: 767px) {
  .faqItem__body {
    column-gap: 1.2em;
    padding: 3em 0;
  }

  .faqItem__body br {
    display: none;
  }
}

/* ------------------------------
募集要項詳細
------------------------------ */
/* 募集要項ヘッド */
.jobHead {
  position: relative;
  padding: calc(5em + 90px) 0 3em;
  background-color: var(--color-blue);
  color: #fff;
}

@media screen and (min-width: 1470px) {
  .jobHead {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .jobHead {
    padding: 11.1em 0 3em;
  }
}

.jobHead__container {
  display: grid;
  grid-template-columns: 1fr 72.6em;
  align-items: center;
  column-gap: 6.4em;
  margin-bottom: 2.6em;
}

@media screen and (max-width: 767px) {
  .jobHead__container {
    grid-template-columns: 100%;
    row-gap: 2.5em;
    margin-bottom: 1em;
  }
}

.jobHead__title {
  margin: 0 0 0 calc(-23em / 36);
  font-size: 3.6em;
  line-height: calc(52 / 36);
}

@media screen and (max-width: 767px) {
  .jobHead__title {
    margin-left: -0.65em;
    font-size: 2em;
    line-height: 1.45;
  }
}

.jobHead__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 3em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .jobHead__tags {
    gap: 0.5em;
    margin-top: 1em;
  }
}

.jobHead__tag {
  margin: 0;
  padding: 0.2em 1.2em 0.4em;
  border-radius: 2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .jobHead__tag {
    padding: 0.3em 1em 0.4em;
    border-radius: 1px;
  }
}

.jobHead__tagText {
  font-size: 1.6em;
  line-height: 1.5;
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .jobHead__tagText {
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.jobHead__imgWrapper {
  height: 48.4em;
}

@media screen and (max-width: 767px) {
  .jobHead__imgWrapper {
    height: 24.9em;
    margin-right: -2em;
  }
}

.jobHead__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .jobHead__img {
    border-radius: 4px 0 0 4px;
  }
}

/* 募集要項 */
.jobHeading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 30);
  margin: 2em 0 0;
  padding: 0;
  border: none;
  font-size: 3em;
  line-height: calc(44 / 30);
  color: var(--color-blue);
}

.jobHeading::before {
  content: "";
  width: calc(10em / 30);
  height: calc(10em / 30);
  margin-top: 0.133em;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .jobHeading {
    column-gap: 0.5em;
    margin-top: 3em;
    font-size: 2em;
    line-height: 1.45;
  }

  .jobHeading::before {
    width: 0.5em;
    height: 0.5em;
    margin-top: 0.05em;
  }
}

.jobEntryBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(124em / 22);
  border-radius: 0 0 4px 4px;
  background-color: var(--color-black);
  font-size: 2.2em;
  font-weight: 700;
  color: #fff !important;
  transition: background-color 0.3s;
}

@media screen and (max-width: 767px) {
  .jobEntryBtn {
    height: calc(100em / 18);
    font-size: 1.8em;
  }
}

@media (any-hover: hover) {
  .jobEntryBtn:hover {
    background-color: var(--color-blue);
  }
}

.jobEntryText {
  margin: 0.5em 0 0;
  text-align: center;
  font-size: max(1.2em, 10px);
  font-weight: 500;
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .jobEntryText {
    margin-top: calc(6em / 11);
    text-align: left;
    font-size: 1.1em;
    line-height: calc(16 / 11);
  }
}

.jobEntryBackBtn__Wrapper {
  margin-top: 8em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .jobEntryBackBtn__Wrapper {
    margin-top: 4em;
    padding-bottom: 1em;
  }
}

/* ------------------------------
人とカルチャー
------------------------------ */
/* トップカルーセル */
.cultureTopHead {
  position: relative;
  padding: calc(3.7em + 90px) 0 3em;
  background-color: var(--color-blue);
  color: #fff;
}

@media screen and (min-width: 1470px) {
  .cultureTopHead {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .cultureTopHead {
    padding: 11.1em 0 3em;
  }
}

.cultureTopHead .breadcrumbs {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .cultureTopHead .breadcrumbs {
    margin-top: 4em;
  }
}

.cultureSlider {
  padding-bottom: 5em;
}

@media screen and (max-width: 767px) {
  .cultureSlider {
    margin: 0 -1.2em;
    padding-bottom: 3.6em;
  }
}

.cultureSlide {
  padding: 0 11em;
}

@media screen and (max-width: 767px) {
  .cultureSlide {
    padding: 0 2.8em;
  }
}

.cultureSlide__link {
  position: relative;
  z-index: 0;
  display: block;
  font-weight: 500;
  color: #fff;
}

@media (any-hover: hover) {
  .cultureSlide__link:hover {
    color: #fff;
  }

  .cultureSlide__link:hover .cultureSlide__img {
    transform: scale(1.05);
  }

  .cultureSlide__link:hover .cultureSlide__body {
    opacity: 0.75;
  }
}

.cultureSlide__imgWrapper {
  width: 69.4em;
  height: 46.3em;
  margin-left: auto;
  border-radius: 4px;
  overflow: hidden;
  background-color: #BCBCBC;
}

@media screen and (max-width: 767px) {
  .cultureSlide__imgWrapper {
    position: absolute;
    z-index: -1;
    top: 4.5em;
    left: 0;
    width: 100%;
    height: 21.2em;
  }
}

.cultureSlide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.cultureSlide__body {
  position: absolute;
  top: 3.2em;
  left: 0;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .cultureSlide__body {
    position: static;
  }
}

.cultureSlide__meta {
  display: flex;
  align-items: center;
  column-gap: 1em;
}

@media screen and (max-width: 767px) {
  .cultureSlide__meta {
    column-gap: 0.8em;
  }
}

.cultureSlide__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9em;
  height: 2.375em;
  border-radius: 2px;
  background-color: #fff;
  font-size: max(1.6em, 9px);
  color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .cultureSlide__category {
    width: 7.8em;
    height: calc(35em / 12);
    border-radius: 1px;
    font-size: 1.2em;
  }
}

.cultureSlide__date {
  font-size: max(1.2em, 8.5px);
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .cultureSlide__date {
    font-size: 1.1em;
    line-height: calc(16 / 11);
  }
}

.cultureSlide__tag {
  margin-top: calc(1em / 14);
  font-size: max(1.4em, 8.5px);
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .cultureSlide__tag {
    margin-top: calc(2em / 12);
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.cultureSlide__info {
  display: flex;
  align-items: flex-end;
  column-gap: 1.5em;
  margin-top: 3em;
}

@media screen and (max-width: 767px) {
  .cultureSlide__info {
    column-gap: 1.1em;
    margin-top: 22.8em;
  }
}

.cultureSlide__name {
  font-size: 2.6em;
  font-weight: 700;
  line-height: calc(37 / 26);
}

@media screen and (max-width: 767px) {
  .cultureSlide__name {
    font-size: 1.8em;
    line-height: calc(26 / 18);
  }
}

.cultureSlide__yaer {
  font-size: max(1.6em, 8.5px);
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .cultureSlide__yaer {
    margin-bottom: calc(1em / 12);
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.cultureSlide__position {
  margin-top: calc(5em / 21);
  font-size: 2.1em;
  line-height: calc(30 / 21);
}

@media screen and (max-width: 767px) {
  .cultureSlide__position {
    margin-top: 0;
    font-size: 1.4em;
    line-height: calc(20 / 14);
  }
}

.cultureSlide__message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1em;
  margin-top: 4em;
}

@media screen and (max-width: 767px) {
  .cultureSlide__message {
    position: absolute;
    bottom: 6.7em;
    left: 1.5em;
    row-gap: 0.4em;
  }
}

.cultureSlide__messageRow {
  padding: calc(7em / 39) calc(30em / 39) calc(9em / 39);
  border-radius: 2px;
  background-color: var(--color-black);
  font-size: 3.9em;
  font-weight: 700;
  line-height: calc(56 / 39);
}

@media screen and (max-width: 767px) {
  .cultureSlide__messageRow {
    padding: calc(1em / 17) calc(15em / 17) calc(4em / 17);
    font-size: 1.7em;
    line-height: calc(25 / 17);
  }
}

.cultureSlider__btn {
  top: calc((100% - 5em) / 2);
  width: 6em;
  height: 6em;
  margin-top: -3em;
  border-radius: 4px;
  border: 1px solid #fff;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .cultureSlider__btn {
    top: calc((100% - 3em) / 2);
    width: 3.5em;
    height: 3.5em;
    border-radius: 0.2em;
  }
}

.swiper-button-prev.cultureSlider__btn {
  left: 0;
}

.swiper-button-next.cultureSlider__btn {
  right: 0;
}


.cultureSlider__btn::after {
  display: none !important;
}

.cultureSlider__btnArrow {
  position: absolute;
  top: calc(50% - 0.423em);
  left: calc(50% - 0.8325em);
  width: 1.665em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .cultureSlider__btnArrow {
    top: calc(50% - 0.333em);
    left: calc(50% - 0.6475em);
    width: 1.295em;
  }
}

.swiper-button-prev .cultureSlider__btnArrow:last-of-type {
  opacity: 0;
  transform: translateX(100%);
}

.swiper-button-next .cultureSlider__btnArrow:first-of-type {
  opacity: 0;
  transform: translateX(-100%);
}

@media (any-hover: hover) {
  .cultureSlider__btn:hover {
    opacity: 0.7;
  }

  .cultureSlider__btn:hover .cultureSlider__btnArrow {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .swiper-button-prev:hover .cultureSlider__btnArrow:first-of-type {
    opacity: 0;
    transform: translateX(-100%);
  }

  .swiper-button-prev:hover .cultureSlider__btnArrow:last-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .cultureSlider__btnArrow:first-of-type {
    opacity: 1;
    transform: none;
  }

  .swiper-button-next:hover .cultureSlider__btnArrow:last-of-type {
    opacity: 0;
    transform: translateX(100%);
  }
}

.cultureSlider__pagination {
  display: flex;
  justify-content: center;
  bottom: 0 !important;
}

.cultureSlider__pagination .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  margin: 0 0.75em !important;
  opacity: 1;
  background-color: #fff;
  transition: background-color 0.3s;
}

.cultureSlider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .cultureSlider__pagination .swiper-pagination-bullet {
    width: 0.6em;
    height: 0.6em;
    margin: 0 0.4em !important;
  }
}

/* 人とカルチャーカテゴリー */
.cultureNav {
  display: inline-flex;
  justify-content: center;
  margin: 8em 0 0;
  padding: 0;
  border: 1px solid var(--color-black);
  border-radius: 4px;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .cultureNav {
    display: flex;
    margin-top: 6em;
    border-radius: 2px;
  }
}

.cultureNav__item {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .cultureNav__item {
    flex-grow: 1;
  }
}

.cultureNav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.0625em;
  padding: 0 2.3125em;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: var(--color-black);
  transition: background-color 0.3s, color 0.3s;
}

.cultureNav__item:not(:first-of-type) .cultureNav__link {
  border-left: 1px solid var(--color-black);
}

.cultureNav__link.is-active {
  background-color: var(--color-black);
  height: 3.25em;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}

@media screen and (max-width: 767px) {

  .cultureNav__link,
  .cultureNav__link.is-active {
    height: calc(40em / 12);
    padding: 0 1em;
    font-size: 1.2em;
  }
}

@media (any-hover: hover) {
  .cultureNav__link:hover {
    background-color: var(--color-black);
    color: #fff;
  }
}

/* 人とカルチャー 2カラム */
.cultureContainer {
  display: grid;
  grid-template-columns: 1fr 30em;
  column-gap: 6em;
  margin-top: 13.2em;
}

@media screen and (min-width: 768px) {
  .cultureContainer.--taxonomy {
    margin-top: 15.3em;
  }

  .cultureContainer.--single {
    margin-top: 8em;
  }
}

@media screen and (max-width: 767px) {
  .cultureContainer {
    grid-template-columns: 100%;
    row-gap: max(8em, 80px);
    margin-top: 5em;
  }

  .cultureContainer.--single {
    margin-top: 6em;
  }
}

/* 人とカルチャー一覧 */
@media screen and (min-width: 768px) {
  .cultureIndex {
    margin-top: -4.2em;
  }

  .cultureContainer.--taxonomy .cultureIndex {
    margin-top: -7.3em;
  }
}

.cultureIndex__taxonomy {
  display: inline-block;
  margin-bottom: calc(5em / 22);
  padding: 0 calc(10em / 22);
  border-radius: 2px;
  background-color: #DCDCDC;
  font-size: 2.2em;
  font-weight: 500;
  line-height: calc(27 / 22);
}

@media screen and (max-width: 767px) {
  .cultureIndex__taxonomy {
    margin-bottom: calc(8em / 12);
    padding: 0.5em calc(10em / 12);
    border-radius: 1px;
    font-size: 1.2em;
    line-height: calc(15 / 12);
  }
}

.cultureIndex__title {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 26);
  margin: 0;
  padding: 0 0 calc(10.5em / 26);
  border: none;
  background-image: repeating-linear-gradient(90deg, var(--color-black), var(--color-black) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-size: 2.6em;
  line-height: calc(32 / 26);
}

.cultureIndex__title::before {
  content: "";
  flex-shrink: 0;
  width: calc(10em / 26);
  height: calc(10em / 26);
  background-color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .cultureIndex__title {
    column-gap: calc(8em / 18);
    padding-bottom: calc(5.5em / 18);
    font-size: 1.8em;
    line-height: calc(22 / 18);
  }

  .cultureIndex__title::before {
    width: calc(8em / 18);
    height: calc(8em / 18);
  }
}

.cultureIndex__noPosts {
  margin: 2em 0;
  font-size: 1.8em;
}

@media screen and (max-width: 767px) {
  .cultureIndex__noPosts {
    font-size: 1.6em;
  }
}

.cultureIndex__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6em 3.4em;
  margin: 3em 0 0;
  padding: 0 0 10em;
  list-style: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cultureIndex__list {
    grid-template-columns: repeat(2, 1fr);
    font-size: calc(8 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .cultureIndex__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5em 1.9em;
    margin: 3em 0 8em;
    padding-bottom: 0;
  }
}

.cultureIndex__item {
  margin: 0;
}

.cultureIndex__item.--routine {
  --color-blue: #017EC9;
}

.cultureIndex__item.--member {
  --color-blue: #004EBC;
}

.cultureIndex__item.--report {
  --color-blue: #4D83D0;
}

.cultureIndex__link {
  display: block;
  text-decoration: none;
  color: var(--color-black);
}

@media (any-hover: hover) {
  .cultureIndex__link:hover .wp-post-image {
    transform: scale(1.07);
  }

  .cultureIndex__link:hover .cultureIndex__itemBody {
    opacity: 0.6;
  }
}

.cultureIndex__imgWrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #BCBCBC;
}

.cultureIndex__imgWrapper::before {
  content: "";
  display: block;
  padding-top: calc(213 / 284 * 100%);
}

@media screen and (max-width: 767px) {
  .cultureIndex__imgWrapper {
    border-radius: 2px;
  }

  .cultureIndex__imgWrapper::before {
    padding-top: calc(125 / 167 * 100%);
  }
}

.cultureIndex__imgWrapper .wp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.cultureIndex__category {
  position: absolute;
  top: 1em;
  left: 1em;
  min-width: 9.5em;
  padding: 0.4em 0.85em 0.5em;
  border-radius: 2px;
  text-align: center;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .cultureIndex__category {
    top: 0.5em;
    left: 0.5em;
    min-width: unset;
    padding: 0 0.6em 0.1em;
    border-radius: 1px;
  }
}

.cultureIndex__categoryText {
  font-size: 1.2em;
  font-weight: 500;
  line-height: calc(17 / 12);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cultureIndex__categoryText {
    font-size: 1em;
    line-height: 1.5em;
  }
}

.cultureIndex__itemBody {
  transition: opacity 0.3s ease-in-out;
}

.cultureIndex__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6em;
  column-gap: 2em;
}

@media screen and (max-width: 767px) {
  .cultureIndex__meta {
    column-gap: 1.4em;
    margin-top: 0.5em;
  }
}

.cultureIndex__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.4em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cultureIndex__tag {
  margin: 0;
  font-size: 1.2em;
  line-height: calc(17 / 12);
}

.cultureIndex__date {
  font-size: 1.2em;
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {

  .cultureIndex__tag,
  .cultureIndex__date {
    font-size: 1.1em;
    line-height: calc(16 / 11);
  }
}

.cultureIndex__itemTitle {
  margin: 0.5em 0 0;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.35;
}

@media screen and (max-width: 767px) {
  .cultureIndex__itemTitle {
    margin-top: calc(9em / 14);
    font-size: 1.4em;
    line-height: calc(22 / 14);
  }
}

.cultureIndex__itemTitle br {
  display: none;
}

.cultureIndex__info {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
  margin: 1em 0 0.4em;
  color: #868B93;
}

@media screen and (max-width: 767px) {
  .cultureIndex__info {
    column-gap: 0.6em;
    margin: 0.9em 0 0;
  }
}

.cultureIndex__name {
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
}

@media screen and (max-width: 767px) {
  .cultureIndex__name {
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.cultureIndex__year {
  margin-bottom: calc(1em / 12);
  font-size: 1.2em;
  font-weight: 500;
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .cultureIndex__year {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5;
  }
}

.cultureIndex__position {
  font-size: 1.4em;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #868B93;
}

@media screen and (max-width: 767px) {
  .cultureIndex__position {
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

/* ページネーション */
.c-pagination .navigation {
  margin: 0;
}

.c-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

@media screen and (max-width: 767px) {
  .c-pagination ul.page-numbers {
    gap: 1em;
  }
}

.c-pagination ul.page-numbers li {
  overflow: visible;
}

.c-pagination ul.page-numbers .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 3.125em;
  height: 3.125em;
  border: 1px solid var(--color-black);
  border-radius: 2px !important;
  padding: 0 0.25em;
  font-size: max(1.6em, 12px);
  font-weight: 500;
  color: var(--color-black);
  transition: background-color 0.3s, color 0.3s;
}

@media screen and (max-width: 767px) {
  .c-pagination ul.page-numbers .page-numbers {
    min-width: 2.5em;
    height: 2.5em;
  }
}

.c-pagination ul.page-numbers .page-numbers.current {
  background-color: var(--color-black);
  color: #fff;
}

@media (any-hover: hover) {
  .c-pagination ul.page-numbers a.page-numbers:hover {
    background-color: var(--color-black);
    color: #fff;
  }
}

.c-pagination ul.page-numbers .page-numbers.prev,
.c-pagination ul.page-numbers .page-numbers.next {
  border: 1px solid var(--color-black);
  font-size: max(1.6em, 12px);
}

/* TikTok */
.cultureIndex__tiktok {
  margin-top: 12em;
}

@media screen and (max-width: 767px) {
  .cultureIndex__tiktok {
    margin-top: 9em;
  }
}

.cultureIndex__tiktok .tiktok-embed {
  margin: 3em 0 0;
  min-height: 480px;
  padding: 0;
  border: none;
  background: none;
}

@media screen and (max-width: 767px) {
  .cultureIndex__tiktok .tiktok-embed {
    margin-top: max(4em, 40px);
    height: 40.8em;
    min-height: unset;
    max-height: 480px;
  }
}

.tiktok-embed #main,
.tiktok-embed #embed-profile-container,
.tiktok-embed .e1i34kcw0 {
  width: 100%;
}

/* 人とカルチャー サイドバー */
@media screen and (max-width: 767px) {
  .cultureSidebar {
    margin-bottom: 1em;
  }
}

.cultureSidebar__title {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
  margin: 0;
  padding: 1.7em 4em;
  border-radius: 4px 4px 0 0;
  background-color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .cultureSidebar__title {
    column-gap: 0.8em;
    padding: 1.8em 3em;
  }
}

.cultureSidebar__icon {
  width: 2em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .cultureSidebar__icon {
    width: 1.6em;
    margin-bottom: 0.2em;
  }
}

.cultureSidebar__titleText {
  font-size: 1.8em;
  font-weight: 700;
  line-height: calc(26 / 18);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cultureSidebar__titleText {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.cultureSidebar__body {
  padding: 3em 4em;
  border: 1px solid var(--color-black);
  border-radius: 0 0 4px 4px;
}

.cultureSidebar__section.--routine {
  --color-blue: #017EC9;
}

.cultureSidebar__section.--member {
  --color-blue: #004EBC;
}

.cultureSidebar__section.--report {
  --color-blue: #4D83D0;
}

.cultureSidebar__section:not(:first-of-type) {
  margin-top: 4em;
}

.cultureSidebar__heading {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 18);
  margin: 0;
  padding-bottom: calc(6em / 18);
  background-image: repeating-linear-gradient(90deg, var(--color-black), var(--color-black) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-size: 1.8em;
  font-weight: 500;
  line-height: calc(26 / 18);
}

.cultureSidebar__heading::before {
  content: "";
  flex-shrink: 0;
  width: calc(8em / 18);
  height: calc(8em / 18);
  margin-top: 0.1em;
  background-color: var(--color-blue);
}

@media screen and (max-width: 767px) {
  .cultureSidebar__heading {
    column-gap: 0.5em;
    padding-bottom: 0.375em;
    font-size: 1.6em;
    line-height: 1.5;
  }

  .cultureSidebar__heading::before {
    width: 0.5em;
    height: 0.5em;
  }
}

.cultureSidebar__list {
  margin: 1.5em 0 0 1.1em;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .cultureSidebar__list {
    margin-left: 1em;
  }
}

.cultureSidebar__item {
  margin: 1em 0 0;
}

.cultureSidebar__link {
  text-decoration: none;
  font-size: max(1.6em, 8.5px);
  line-height: 1.5;
  color: var(--color-black);
  transition: opacity 0.1s;
}

@media screen and (max-width: 767px) {
  .cultureSidebar__link {
    font-size: 1.5em;
    line-height: calc(21 / 15);
  }
}

@media (any-hover: hover) {
  .cultureSidebar__link:hover {
    opacity: 0.29;
  }

  .cultureSidebar__link:hover .cultureSidebar__linkText {
    text-decoration: underline;
  }
}

/* ------------------------------
人とカルチャー 詳細ページ
------------------------------ */
.cultureHead {
  position: relative;
  z-index: 0;
  padding-bottom: 3em;
  background-color: var(--color-blue);
  color: #fff;
}

.cultureHead__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 62em;
  margin-bottom: 3em;
  padding-top: calc(8em + 90px);
}

@media screen and (max-width: 767px) {
  .cultureHead__container {
    min-height: unset;
    margin-bottom: 4em;
    padding-top: 12.1em;
  }
}

.cultureHead__label {
  display: flex;
  align-items: center;
  column-gap: calc(10em / 30);
  margin: 0;
  padding-bottom: calc(5em / 30);
  border-bottom: 1px solid #fff;
  font-size: 3em;
  font-weight: 500;
  line-height: calc(37 / 30);
}

.cultureHead__label::before {
  content: "";
  flex-shrink: 0;
  width: calc(17em / 30);
  height: calc(17em / 30);
  background-color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .cultureHead__label {
    column-gap: calc(4em / 14);
    padding-bottom: calc(2.5em / 14);
    font-size: 1.4em;
    line-height: calc(18 / 14);
  }

  .cultureHead__label::before {
    width: calc(8em / 14);
    height: calc(8em / 14);
  }
}

.cultureHead__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 3em 0;
  gap: 1.2em;
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .cultureHead__title {
    gap: 0.5em;
    margin: 1.5em 0;
  }
}

.cultureHead__titleRow {
  padding: calc(9em / 46) calc(36em / 46) calc(12em / 46);
  border-radius: 2px;
  background-color: var(--color-black);
  font-size: 4.6em;
  line-height: calc(66 / 46);
}

@media screen and (max-width: 767px) {
  .cultureHead__titleRow {
    padding: calc(3em / 22) calc(15em / 22) calc(5em / 22);
    font-size: 2.2em;
    line-height: calc(32 / 22);
  }
}

.cultureHead__imgContainer {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .cultureHead__imgContainer {
    position: static;
    width: calc(100% + 2em);
    margin-right: -2em;
  }
}

.cultureHead__imgWrapper {
  position: relative;
  width: 92.9em;
  height: 62em;
  border-radius: 0 0 0 4px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .cultureHead__imgWrapper {
    width: 100%;
    height: 24.9em;
    border-radius: 4px 0 0 4px;
  }
}

.cultureHead__imgWrapper .wp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cultureHead__profile {
  position: absolute;
  bottom: 2.6em;
  right: 2.5em;
  padding: 1.4em 1.7em;
  border-radius: 2px;
  background-color: #fff;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .cultureHead__profile {
    bottom: 1.6em;
    right: 0.8em;
    padding: 0.9em 1.5em 1.1em;
  }
}

.cultureHead__info {
  display: flex;
  align-items: flex-end;
  column-gap: 1.5em;
}

@media screen and (max-width: 767px) {
  .cultureHead__info {
    column-gap: 0.6em;
  }
}

.cultureHead__name {
  font-size: 2.6em;
  font-weight: 700;
  line-height: calc(37 / 26);
}

@media screen and (max-width: 767px) {
  .cultureHead__name {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.cultureHead__year {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .cultureHead__year {
    margin-bottom: 0.1em;
    font-size: 1em;
  }
}

.cultureHead__position {
  margin-top: calc(5em / 21);
  font-size: 2.1em;
  font-weight: 500;
  line-height: calc(30 / 21);
}

@media screen and (max-width: 767px) {
  .cultureHead__position {
    margin-top: calc(2em / 12);
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.cultureHead__meta {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
  margin-top: auto;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cultureHead__meta {
    column-gap: 0.8em;
    margin-top: 1em;
  }
}

.cultureHead__category {
  min-width: 9em;
  padding: 0.4375em 1.25em;
  border-radius: 2px;
  background-color: #fff;
  text-align: center;
  font-size: max(1.6em, 9.5px);
  line-height: 1.5;
  color: var(--color-blue) !important;
}

@media screen and (max-width: 767px) {
  .cultureHead__category {
    min-width: unset;
    padding: calc(8em / 12) 1.25em calc(10em / 12);
    border-radius: 1px;
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.cultureHead__date {
  font-size: max(1.2em, 8.5px);
  line-height: calc(17 / 12);
}

@media screen and (max-width: 767px) {
  .cultureHead__date {
    font-size: 1.1em;
    line-height: calc(16 / 11);
  }
}

.cultureHead__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.4em;
  margin: 0.1em 0 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .cultureHead__tags {
    margin-top: 0.2em;
  }
}

.cultureHead__tag {
  margin: 0;
}

.cultureHead__tagLink {
  font-size: max(1.4em, 9px);
  line-height: calc(20 / 14);
  text-decoration: none;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .cultureHead__tagLink {
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.singleCulture {
  padding: 0 5em;
}

@media screen and (max-width: 1023px) {
  .singleCulture {
    padding: 0;
  }
}

/* 目次 */
#toc_container {
  border: 1px solid var(--color-black);
  border-radius: 4px;
  margin-bottom: 60px;
  padding: 30px 6.098%;
  background: none;
}

@media screen and (max-width: 767px) {
  #toc_container {
    margin-bottom: 40px;
    padding: 30px 12.75%;
  }
}

#toc_container p.toc_title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  max-width: 580px;
  padding-bottom: 10.5px;
  text-align: left;
  background-image: repeating-linear-gradient(90deg, var(--color-black), var(--color-black) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: calc(29 / 24);
  letter-spacing: 0.02em;
}

#toc_container p.toc_title::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../images/recruit/culture/icon-toc.svg") no-repeat center / contain;
}

#toc_container p.toc_title::after {
  content: "この記事の内容";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  #toc_container p.toc_title {
    column-gap: 8px;
    max-width: unset;
    padding-bottom: 18px;
    font-size: 18px;
    line-height: calc(22 / 18);
  }

  #toc_container p.toc_title::before {
    width: 14px;
  }

  #toc_container p.toc_title::after {
    font-size: 11px;
  }
}

#toc_container .toc_number {
  display: none;
}

#toc_container p.toc_title+ul.toc_list {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #toc_container p.toc_title+ul.toc_list {
    margin-top: 20px;
  }
}

#toc_container li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #toc_container li {
    padding-left: 14px;
    line-height: calc(20 / 14);
  }
}

#toc_container .toc_list>li {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  #toc_container .toc_list>li {
    margin-top: 10px;
  }
}

#toc_container .toc_list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-black);
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  #toc_container .toc_list li::before {
    top: 7px;
    width: 6px;
    height: 6px;
  }
}

#toc_container a {
  font-size: 16px;
  color: var(--color-black);
  transition: opacity 0.1s;
}

@media screen and (max-width: 767px) {
  #toc_container a {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  #toc_container a:hover {
    text-decoration: underline;
    text-decoration-color: var(--color-black);
    text-decoration-style: solid;
    opacity: 0.3;
  }
}

#toc_container ul ul {
  margin-top: 4px;
  margin-left: 0;
}

#toc_container .toc_list ul li {
  padding-left: 1.25em;
  font-size: 14px;
}

#toc_container .toc_list ul li a {
  font-size: 14px;
}

#toc_container .toc_list ul li::before {
  content: "ー";
  top: -1px;
  width: auto;
  height: auto;
  background: none;
}

@media screen and (max-width: 767px) {

  #toc_container .toc_list ul li,
  #toc_container .toc_list ul li a {
    font-size: 12px;
  }
}

/* 合わせて読みたい */
.postLink__wrapper {
  margin: 47px 0 36px;
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .postLink__wrapper {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .postLink__wrapper {
    margin: 58px 0 45px;
  }
}

.postLink__label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px 4px 0 0;
  background-color: var(--color-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: calc(20 / 14);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .postLink__label {
    padding: 6px 10px;
    font-size: 12px;
    line-height: calc(17 / 12);
  }
}

.postLink {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  column-gap: 30px;
  padding: 32px 20px;
  border: 1px solid var(--color-blue);
  border-radius: 0 4px 4px 4px;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .postLink {
    grid-template-columns: 100%;
    row-gap: 9px;
    padding: 20px;
  }
}

@media (any-hover: hover) {
  .postLink:hover .wp-post-image {
    transform: scale(1.07);
  }

  .postLink:hover .postLink__title {
    opacity: 0.6;
  }
}

.postLink__thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #9F9F9F;
}

.postLink__thumb::before {
  content: "";
  display: block;
  padding-top: calc(96 / 170 * 100%);
}

@media screen and (max-width: 767px) {
  .postLink__thumb::before {
    padding-top: calc(165 / 293 * 100%);
  }
}

.postLink__thumb .wp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.postLink__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .postLink__title {
    font-size: 14px;
    line-height: calc(22 / 14);
  }
}

.postLink__title br {
  display: none;
}

/* 記事監修 */
.singleCulture__heading {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  margin: 4.85em 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
}

.singleCulture__heading::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.1em;
  background-color: var(--color-blue);
}

@media screen and (max-width: 1023px) {
  .singleCulture__heading {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .singleCulture__heading {
    column-gap: calc(8em / 18);
    margin: calc(76em / 18) calc(10em / 18) 0;
    font-size: 1.8em;
  }

  .singleCulture__heading::before {
    width: calc(8em / 18);
    height: calc(8em / 18);
  }
}

.singleCulture__author {
  display: flex;
  align-items: center;
  column-gap: 2em;
  margin-top: 10px;
  padding: 3.1em 3.7em 3em;
  border-radius: 4px;
  background-color: rgba(0 78 188 / 0.1);
  font-size: 10px;
}

@media screen and (max-width: 1023px) {
  .singleCulture__author {
    font-size: 8px;
  }
}

@media screen and (max-width: 767px) {
  .singleCulture__author {
    column-gap: 1em;
    margin: 1em 1em 0;
    padding: 1.5em;
    border-radius: 2px;
    font-size: inherit;
  }
}

.singleCulture__authorImg {
  flex-shrink: 0;
  width: 10.9em;
  height: auto;
}

@media screen and (max-width: 767px) {
  .singleCulture__authorImg {
    width: 8em;
  }
}

.singleCulture__authorName {
  margin: 0;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.444;
}

@media screen and (max-width: 767px) {
  .singleCulture__authorName {
    font-size: 1.5em;
  }
}

/* シェア */
.singleCulture__share {
  margin-top: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .singleCulture__share {
    margin-top: 20px;
  }
}

.singleCulture__shareTitle {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(17 / 12);
}

/* 前後の記事 */
.singleCulture__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 52px 0 0;
  padding: 1.6em 1em 1.8em;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  list-style: none;
}

@media screen and (max-width: 767px) {
  .singleCulture__nav {
    margin: 5.2em 1em 0;
    padding: 1.2em 0.8em 1.3em;
  }
}

.singleCulture__navItem {
  margin: 0;
}

.singleCulture__navItem:first-of-type {
  border-right: 1px solid var(--color-black);
}

.singleCulture__navLink {
  display: flex;
  align-items: center;
  column-gap: 5.4em;
  height: 100%;
  padding: 1.4em 0 1.1em;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s;
}

.singleCulture__navLink.--prev {
  padding-right: 2em;
}

.singleCulture__navLink.--next {
  flex-direction: row-reverse;
  padding-left: 2em;
}

@media screen and (max-width: 767px) {
  .singleCulture__navLink {
    flex-direction: column !important;
    align-items: center;
    row-gap: 1.65em;
    padding: 0.8em 0 2.7em;
  }

  .singleCulture__navLink.--prev {
    padding-right: 1.2em;
  }

  .singleCulture__navLink.--next {
    padding-left: 1.2em;
  }
}

@media (any-hover: hover) {
  .singleCulture__navLink:hover {
    opacity: 0.5;
  }
}

.singleCulture__navLabel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: calc(10em / 14);
  font-size: max(1.4em, 10px);
  font-weight: 700;
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .singleCulture__navLabel {
    column-gap: calc(10em / 12);
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }

  .singleCulture__navLabel.--prev {
    padding-left: 0.4em;
  }

  .singleCulture__navLabel.--next {
    padding-right: 0.4em;
  }
}

.singleCulture__navArrow {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding-bottom: 1px;
  border: 1px solid var(--color-black);
  border-radius: 2px;
  font-size: 11px;
  line-height: calc(16 / 11);
}

@media screen and (max-width: 767px) {
  .singleCulture__navArrow {
    width: 2.5em;
    height: 2.5em;
    font-size: 1.1em;
  }
}

.singleCulture__navTitle {
  max-width: 195px;
  font-size: max(1.4em, 10px);
  font-weight: 500;
  line-height: calc(20 / 14);
}

@media screen and (max-width: 767px) {
  .singleCulture__navTitle {
    max-width: unset;
    font-size: 1.2em;
    line-height: calc(20 / 12);
  }
}

.singleCulture__navTitle br {
  display: none;
}

.singleCulture__back {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .singleCulture__back {
    margin-top: 4em;
  }
}

/* 関連記事 */
.relatedPost {
  margin-top: 12em;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .relatedPost {
    font-size: calc(8 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .relatedPost {
    margin-top: 8em;
  }
}

.relatedPost__title {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
  margin: 0;
  padding-bottom: 1.55em;
  background-image: repeating-linear-gradient(90deg, var(--color-black), var(--color-black) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

@media screen and (max-width: 767px) {
  .relatedPost__title {
    align-items: center;
    column-gap: 0.5em;
    padding-bottom: 0.55em;
  }
}

.relatedPost__titleIcon {
  width: 1.8em;
  height: auto;
  margin-bottom: 0.4em;
}

@media screen and (max-width: 767px) {
  .relatedPost__titleIcon {
    margin-bottom: 0;
  }
}

.relatedPost__titleText {
  font-size: 2.2em;
  font-weight: 700;
  line-height: calc(32 / 22);
}

@media screen and (max-width: 767px) {
  .relatedPost__titleText {
    font-size: 1.8em;
    line-height: calc(26 / 18);
  }
}

.relatedPost__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.4em;
  margin: 3em 0 0;
  padding: 0 2.1em;
  list-style: none;
}

@media screen and (max-width: 1023px) {
  .relatedPost__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .relatedPost__list {
    gap: 4em 1.9em;
    margin-top: 4em;
    padding: 0 0 1em;
  }
}

/* ------------------------------
汎用スタイル
------------------------------ */
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-text-center {
  text-align: center;
}

.u-font-en {
  font-family: "Montserrat", sans-serif !important;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-white {
  color: #fff;
}

.u-font-blue {
  color: var(--color-blue);
}

.u-ls-0 {
  letter-spacing: 0;
}

@media (any-hover: hover) {
  .u-hover-fade {
    transition: opacity 0.3s;
  }

  .u-hover-fade:hover {
    opacity: 0.75;
    color: inherit;
    text-decoration-color: inherit;
  }
}