@charset "UTF-8";


/*--------------------------------------------
header btn
--------------------------------------------*/
.l-header__entry {
  background: rgba(41, 111, 198, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.l-header__nav {
  background: rgba(213, 213, 213 ,1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/********* sp *********/
@media only screen and (max-width:750px) {
  .l-header__nav {
    background: rgba(213, 213, 213, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

/*--------------------------------------------
bg
--------------------------------------------*/
.h-bg {
  background: #262626;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.h-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, var(--bg-opacity, 0.6));
  transition: background 0.1s linear;
}

.h-bg__inner {
  width: 77.109%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: -50%;
  left: 22%;
  right: 0;
  margin: auto;
  transform: rotate(15deg);
  z-index: 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-bg__inner {
    width: 94%;
    left: 22%;
  }
}

.h-bg__inner__01,
.h-bg__inner__02 {
  width: 49%;
  overflow: hidden;
  height: 200%;
  position: relative;
}

.h-bg__inner__01__scroll,
.h-bg__inner__02__scroll {
  display: flex;
  flex-direction: column;
  gap: 1.5vw 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-bg__inner__01__scroll,
  .h-bg__inner__02__scroll {
    gap: 5.555vw 0;
  }
}

.h-bg__inner__01__scroll {
  animation: scrollDown_01 50s linear infinite;
}

.h-bg__inner__02__scroll {
  animation: scrollDown_02 50s linear infinite;
}

/* アニメーション 01 */
@keyframes scrollDown_01 {
  0% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(0%);
  }
}

/* アニメーション 02 */
@keyframes scrollDown_02 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-25%);
  }
}

.h-bg__inner__01__scroll img,
.h-bg__inner__02__scroll img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated; /* ボケ対策 */
  image-rendering: crisp-edges; /* ボケ対策 */
}


/*--------------------------------------------
wrapper
--------------------------------------------*/
.h-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}


/*--------------------------------------------
fv
--------------------------------------------*/
.h-fv {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/********* sp *********/
@media only screen and (max-width:750px) {
.h-fv {
    min-height: auto;
  }
}

.h-fv__catch {
  width: 110px;
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  margin-top: 5vh;
}
/********* sp *********/
@media only screen and (max-width:750px) {
.h-fv__catch {
    width: 21.111vw;
    margin-top: 0;
  }
}

.h-fv__catch__01 {
  width: 36px;
  display: flex;
  flex-flow: column;
  gap: 3px 0;
  position: relative;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-fv__catch__01 {
    width: 6.944vw;
    gap: 0.833vw 0;
  }
}

.h-fv__catch__01::after {
  content: "";
  width: 3px;
  height: 41%;
  background: #fff;
  position: absolute;
  top: 0;
  right: -13px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.6s ease;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-fv__catch__01::after {
    width: 0.666vw;
    right: -3vw;
  }
}

.h-fv__catch__01.-current::after {
  transform: scaleY(1);
}

.h-fv__catch__02 {
  width: 36px;
  display: flex;
  flex-flow: column;
  gap: 3px 0;
  margin-top: 80px;
  position: relative;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-fv__catch__02 {
    width: 6.944vw;
    gap: 0.833vw 0;
    margin-top: 16.111vw;
  }
}

.h-fv__catch__02::after {
  content: "";
  width: 3px;
  height: 48%;
  background: #fff;
  position: absolute;
  top: 0;
  right: -13px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.6s ease;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-fv__catch__02::after {
    width: 0.666vw;
    right: -3vw;
  }
}

.h-fv__catch__02.-current::after {
  transform: scaleY(1);
}

.h-fv__catch__01 img,
.h-fv__catch__02 img {
  display: block;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
}

.h-fv__catch__01 img.show,
.h-fv__catch__02 img.show {
  opacity: 1;
  transform: translateY(0);
}

/* btn */
.h-fv__movie,
.h-fv__view {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1875em;
  color: #fff;
  padding: 0.2em;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media only screen and (max-width:750px) {
.h-fv__movie,
  .h-fv__view {
    display: none;
  }
}

.h-fv__movie {
  position: absolute;
  bottom: 130px;
  right: 12px;
  background: rgba(213, 213, 213 ,0.4);
}

.h-fv__view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(41, 111, 198 ,0.5);
}

/* news */
.h-fv__news {
  position: absolute;
  left: 22px;
  bottom: 12px;
  max-width: 508px;
  width: 70%;
  display: flex;
}
@media only screen and (max-width:750px) {
.h-fv__news {
    left: auto;
    bottom: 3.333vw;
    max-width: none;
    width: 94.444vw;
    margin: 0 2.777vw;
  }
}

.h-fv__news__list {
  width: 87%;
  height: 28px;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(213, 213, 213 ,0.4);
  position: relative;
}
@media only screen and (max-width:750px) {
  .h-fv__news__list {
    width: 77%;
    height: 7.777vw;
    border-radius: 3.889vw;
  }
}

.h-fv__news__list dt {
  width: 70px;
  position: relative;
  margin: 7px 0 0 10px;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width:750px) {
  .h-fv__news__list dt {
    display: none;
  }
}

.h-fv__news__list dt::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 5px;
  top: 1px;
}

.h-fv__news__list dd {
  position: relative;
  width: calc(100% - 70px);
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width:750px) {
.h-fv__news__list dd {
    width: 100%;
  }
}

.h-fv__news__list__item {
  white-space: nowrap;
  position: absolute;
  top: 7px;
  display: none;
  left: 100%;
}
@media only screen and (max-width:750px) {
  .h-fv__news__list__item {
    top: 2vw;
  }
}

.h-fv__news__list__item a {
  display: block;
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width:750px) {
.h-fv__news__list__item a {
    font-size: 3.333vw;
  }
}

.h-fv__news__list__item span {
  padding-left: 0.5em;
  opacity: 0.6;
}

.h-fv__news__btn {
  width: 13%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 111, 198 ,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  font-size: 12px;
  color: #fff;
  padding-bottom: 2px;
}
@media only screen and (max-width:750px) {
.h-fv__news__btn {
    width: 23%;
    height: 7.777vw;
    border-radius: 3.889vw;
    font-size: 3.333vw;
    color: #fff;
  }
}


/*--------------------------------------------
cta spのみ
--------------------------------------------*/
.h-cta {
  display: none;
}

@media only screen and (max-width:750px) {
  .h-cta {
    width: 100%;
    display: block;
    background: #262626;
  }

  .h-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.333vw 0 3.866vw 0;
    gap: 0 4.166vw;
  }

  .h-cta__btn__movie,
  .h-cta__btn__view {
    width: 35.555vw;
    height: 35.555vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 5vw;
    line-height: 1.1875em;
    color: #fff;
    box-shadow: 0 0 5.555vw rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .h-cta__btn__movie {
    background: rgba(213, 213, 213 ,0.4);
  }

  .h-cta__btn__view {
    background: rgba(41, 111, 198 ,0.5);
  }
}

/*--------------------------------------------
message
--------------------------------------------*/
.h-message {
  width: 100%;
  padding: 165px 0 300px 0;
  position: sticky;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width:750px) {
  .h-message {
    background: rgba(38, 38, 38, 1);
    padding: 4.5vw 0 23.888vw 0;
    position: relative;
  }
}

.h-message__inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:750px) {
  .h-message__inner {
    max-width: none;
    width: 88.888vw;
    height: 110vw;
    overflow: hidden;
    flex-flow: column;
    position: relative;
    z-index: 0;
  }

  .h-message__inner::after {
    content: "";
    background: linear-gradient(to top, rgba(38, 38, 38, 1), rgba(38, 38, 38, 0));
    width: 100%;
    height: 30vw;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: +1;
  }

  .h-message__inner.-more {
    height: auto;
  }

  .h-message__inner.-more::after {
    background: none;
  }
}

.h-message__inner__left,
.h-message__inner__right {
  display: flex;
  flex-flow: column;
  gap: 2.5em 0;
}

.h-message__inner__left {
  width: 41.77%;
}

.h-message__inner__right {
  width: 50.104%;
}

@media only screen and (max-width:750px) {
  .h-message__inner__left,
  .h-message__inner__right {
    width: 100%;
  }
}

.h-message__inner p {
  font-size: 18px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:750px) {
  .h-message__inner p {
    font-size: 5vw;
    letter-spacing: 0.05em;
  }
}

/* sp moreボタン */
@media only screen and (max-width:750px) {
  .h-message__more {
    width: 61.388vw;
    height: 10.277vw;
    margin: 16vw auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 0.277vw #fff;
    border-radius: 1.111vw;
    text-align: center;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 3.888vw;
    color: #fff;
    cursor: pointer;
  }
}


/*--------------------------------------------
onozo now
--------------------------------------------*/
.h-now {
  width: 100%;
  background: #fff;
  min-height: 721px;
  border-radius: 8px;
  padding: 198px 0 95px 0;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width:750px) {
  .h-now {
    min-height: auto;
    border-radius: 2.777vw;
    padding: 29.5vw 0 6vw 0;
  }
}

.h-now::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/home/now_bg_01.svg) no-repeat;
  background-position: top -20px center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width:750px) {
  .h-now::before {
    background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/home/now_bg_01.svg) no-repeat;
    background-size: 260vw;
    background-position: top -2.5vw center;
  }
}

.h-now::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/home/now_bg_02.png) no-repeat;
  background-position: bottom 11px left;
  background-size:  585px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width:750px) {
  .h-now::after {
    background: none;
  }
}

.h-now__ttl {
  width: 175px;
  margin: 0 auto;
}
@media only screen and (max-width:750px) {
  .h-now__ttl {
    width: 52.366vw;
    margin: 0 auto;
  }
}

.h-now__content {
  max-width: 1152px;
  width: 90%;
  margin: 58px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:750px) {
  .h-now__content {
    max-width: none;
    width: 100%;
    margin: 12.5vw auto 0 auto;
    flex-flow: column;
  }
}

/* left */
.h-now__content__left {
  width: 23%;
}
@media only screen and (max-width:750px) {
  .h-now__content__left {
    width: 77.777vw;
    margin: 0 auto;
  }
}

.h-now__content__left p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2em;
  color: #439AFF;
}
@media only screen and (max-width:750px) {
  .h-now__content__left p {
    font-size: 4.444vw;
  }
}

.h-now__content__left a {
  display: flex;
  align-items: center;
  width: 160px;
  height: 48px;
  background: #fff;
  border: solid 1px #439AFF;
  border-radius: 24px;
  margin-top: 28px;
  padding: 0 29px 3px 29px;
  font-size: 16px;
  font-weight: 400;
  color: #439AFF;
  position: relative;
}
@media only screen and (max-width:750px) {
  .h-now__content__left a {
    width: 77.222vw;
    height: 13.333vw;
    border: solid 0.277vw #439AFF;
    border-radius: 6.666vw;
    margin-top: 5.555vw;
    padding: 0 29px 3px 29px;
    justify-content: center;
    font-size: 4.444vw;
  }
}

.h-now__content__left a::before {
  content: "";
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/arrow_blu.svg) no-repeat;
  background-size: 6px;
  background-position: right 20px center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width:750px) {
  .h-now__content__left a::before {
    background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/arrow_blu.svg) no-repeat;
    background-size: 1.666vw;
    background-position: right 16.666vw center;
  }
}

/* right */
.h-now__content__right {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media only screen and (max-width:750px) {
  .h-now__content__right {
    width: 100%;
    margin-top: 8.333vw;
    overflow-x: auto;
    gap: 0 6.666vw;
    justify-content: start;
    padding: 0 11.388vw 5vw 11.388vw;
  }
}

/********* sp *********/
@media only screen and (max-width:750px) {
  .h-now__content__right .u-ic_scroll {
    top: 56%;
    margin-left: -10.666vw;
  }
}

/* item */
.h-now__item {
  display: block;
  width: 32.407%;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width:750px) {
.h-now__item {
  flex: 0 0 77.777vw;
  border-radius: 1.111vw;
  box-shadow: 2.222vw 2.222vw 4.444vw rgba(0, 0, 0, 0.05);
  }
}

.h-now__item span img {
  width: 100%;
  height: auto;
}

.h-now__item__detail {
  padding: 10px;
}
@media only screen and (max-width:750px) {
  .h-now__item__detail {
    padding: 2.777vw;
  }
}

.h-now__item__detail h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #439AFF;
}
@media only screen and (max-width:750px) {
  .h-now__item__detail h3 {
    font-size: 4.444vw;
  }
}

.h-now__item__detail p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6em;
  color: #439AFF;
  margin-top: 8px;
  opacity: 0.5;
}
@media only screen and (max-width:750px) {
  .h-now__item__detail p {
    font-size: 3.611vw;
    margin-top: 2.222vw;
  }
}

.h-now__item__detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}
@media only screen and (max-width:750px) {
  .h-now__item__detail ul {
    gap: 1.111vw;
    margin-top: 4.444vw;
  }
}

.h-now__item__detail ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3em;
  border: solid 1px #d9ebff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 400;
  color: #439AFF;
  padding: 0.4em 0.5em 0.6em 0.5em;
}
@media only screen and (max-width:750px) {
  .h-now__item__detail ul li {
    border-radius: 1.111vw;
    font-size: 3.055vw;
  }
}

.h-now__item__detail ul li::before {
  content: "#";
}


/*--------------------------------------------
bg navy
--------------------------------------------*/
.h-transmit {
  width: 100%;
  padding: 177px 0 182px 0;
  overflow: hidden;
}
@media only screen and (max-width:750px) {
  .h-transmit {
    padding: 33.333vw 0;
  }
}


/*--------------------------------------------
about
--------------------------------------------*/
.h-about {
  width: 90%;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:750px) {
  .h-about {
    width: 88.888vw;
    max-width: none;
    flex-flow: column-reverse;
    gap: 16.888vw 0;
  }
}

/* content */
.h-about__content {
  width: 58.333%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:750px) {
.h-about__content {
    width: 100%;
    flex-flow: column;
    gap: 13.444vw;
  }
}

.h-about__content__item {
  display: block;
  width: 47.619%;
}
@media only screen and (max-width:750px) {
  .h-about__content__item {
    width: 100%;
  }
}

.h-about__content__item__ph {
  border-radius: 8px;
}
@media only screen and (max-width:750px) {
  .h-about__content__item__ph {
    border-radius: 2.222vw;
  }
}

.h-about__content__item p {
  margin-top: 20px;
  border-bottom: solid 1px #fff;
  padding-bottom: 5px;
}
@media only screen and (max-width:750px) {
  .h-about__content__item p {
    margin-top: 3.2vw;
    border-bottom: solid 0.277vw #fff;
    padding-bottom: 1.388vw;
  }
}

.h-about__content__item p span {
  display: flex;
  align-items: center;
  min-height: 42px;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  color: #fff;
  padding-right: 40px;
  position: relative;
}
@media only screen and (max-width:750px) {
  .h-about__content__item p span {
    min-height: 11.666vw;
    font-size: 4.444vw;
    padding-right: 11.111vw;
  }
}

.h-about__content__item p span::after {
  content: "";
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/circle_arrow_wh_40.svg) no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width:750px) {
  .h-about__content__item p span::after {
    width: 11.111vw;
    height: 11.111vw;
  }
}

.h-about__content__item:hover p span {
  opacity: 0.7;
  transition-duration: 0.2s;
}

/* heading */
.h-about__heading {
  width: 33.333%;
}
@media only screen and (max-width:750px) {
  .h-about__heading {
    width: 100%;
  }
}

.h-about__heading h2 {
  margin-top: -25px;
}
@media only screen and (max-width:750px) {
  .h-about__heading h2 {
    margin-top: 0;
  }
}

.h-about__heading__en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 125px;
  letter-spacing: 0;
  color: #fff;
  word-break: break-all;
}
@media only screen and (max-width:750px) {
  .h-about__heading__en {
    font-size: 27.5vw;
  }
}

.h-about__heading__jp {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 15px;
}
@media only screen and (max-width:750px) {
  .h-about__heading__jp {
    font-size: 5.555vw;
    margin-top: 2.5vw;
  }
}

.h-about__heading__lead {
  margin-top: 56px;
  display: flex;
  flex-flow: column;
  gap: 2px 0;
}
@media only screen and (max-width:750px) {
  .h-about__heading__lead {
    margin-top: 9vw;
    gap: 0.555vw 0;
  }
}

.h-about__heading__lead span {
  display: block;
  background: linear-gradient(to right, #113D70, #227AE0);
  padding: 0.65em 0.4em;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}
@media only screen and (max-width:750px) {
  .h-about__heading__lead span {
    font-size: 5.555vw;
  }
}


/*--------------------------------------------
environment
--------------------------------------------*/
.h-environment {
  margin: 206px auto 0 auto;
}
@media only screen and (max-width:750px) {
  .h-environment {
    margin: 34vw auto 0 auto;
  }
}

/* heading */
.h-environment__heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1152px;
  margin: 0 auto;
}
@media only screen and (max-width:750px) {
.h-environment__heading {
    flex-flow: column;
    width: 88.888vw;
    max-width: none;
    gap: 9vw 0;
  }
}

.h-environment__heading h2 {
  margin-top: -25px;
  width: 58.333%;
}
@media only screen and (max-width:750px) {
  .h-environment__heading h2 {
    width: 100%;
    margin-top: 0;
  }
}

.h-environment__heading__en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 125px;
  letter-spacing: 0;
  color: #fff;
  word-break: break-all;
}
@media only screen and (max-width:750px) {
  .h-environment__heading__en {
    font-size: 27.5vw;
  }
}

.h-environment__heading__jp {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 15px;
  padding-left: 0.4em;
}
@media only screen and (max-width:750px) {
  .h-environment__heading__jp {
    font-size: 5.555vw;
    margin-top: 2.5vw;
  }
}

.h-environment__heading .u-ani_slide {
  width: 33.333% !important;
}
@media only screen and (max-width:750px) {
  .h-environment__heading .u-ani_slide {
    width: 100% !important;
  }
}

.h-environment__heading__lead {
  display: flex;
  flex-flow: column;
  gap: 2px 0;
  width: 100%;
}
@media only screen and (max-width:750px) {
  .h-environment__heading__lead {
    gap: 0.555vw 0;
  }
}

.h-environment__heading__lead span {
  display: block;
  background: linear-gradient(to right, #113D70, #227AE0);
  padding: 0.6em 0.4em;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}
@media only screen and (max-width:750px) {
  .h-environment__heading__lead span {
    font-size: 5.555vw;
  }
}

/* content */
.h-environment__content {
  display: block;
  width: 100%;
  margin-top: 48px;
  position: relative;
}
@media only screen and (max-width:750px) {
  .h-environment__content {
    margin-top: 17vw;
  }
}

.h-environment__content__inner {
  overflow: hidden;
}

.h-environment__content__inner__scroll {
  display: flex;
  gap: 0 1.328vw;
  animation: scrollLeftToRight 40s linear infinite;
  width: max-content;
}

.h-environment__content__inner__scroll img {
  width: auto;
  height: 29.843vw;
}
@media only screen and (max-width:750px) {
  .h-environment__content__inner__scroll img {
    height: 83.333vw;
  }
}

/* アニメーション：左から右へ */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.h-environment__viewmore {
  width: 180px;
  height: 180px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1875em;
  color: #fff;
  position: absolute;
  right: 24px;
  bottom: -60px;
  border-radius: 50%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(41, 111, 198 ,0.5);
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width:750px) {
  .h-environment__viewmore {
    display: flex;
    width: 24.55vw;
    height: 24.55vw;
    font-size: 3.611vw;
    right: 2.777vw;
    bottom: 2.777vw;
    box-shadow: 2.222vw 2.222vw 2.777vw rgba(0, 0, 0, 0.2);
  }
}


/*--------------------------------------------
recruit
--------------------------------------------*/
.h-recruit {
  width: 90%;
  max-width: 1152px;
  margin: 186px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:750px) {
  .h-recruit {
    width: 88.888vw;
    max-width: none;
    margin: 28vw auto 0 auto;
    flex-flow: column-reverse;
    gap: 16.888vw 0;
  }
}

/* content */
.h-recruit__content {
  width: 58.333%;
  display: flex;
  flex-flow: column;
  gap: 32px 0;
}
@media only screen and (max-width:750px) {
  .h-recruit__content {
    width: 100%;
    gap: 8.777vw 0;
  }
}

.h-recruit__content__item {
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width:750px) {
  .h-recruit__content__item {
    border-radius: 2.222vw;
  }
}

.h-recruit__content__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  position: absolute;
  left: 24px;
  bottom: 16px;
}
@media only screen and (max-width:750px) {
  .h-recruit__content__item p {
    font-size: 4.444vw;
    left: 3.333vw;
    bottom: 5.555vw;
  }
}

.h-recruit__content__item::after {
  content: "";
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/circle_arrow_wh_50.svg) no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: +1;
}
@media only screen and (max-width:750px) {
.h-recruit__content__item::after {
    content: "";
    background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/circle_arrow_wh_50.svg) no-repeat;
    background-size: cover;
    width: 13.888vw;
    height: 13.888vw;
    right: 2.333vw;
    bottom: 2.333vw;
  }
}

/* heading */
.h-recruit__heading {
  width: 33.333%;
}
@media only screen and (max-width:750px) {
  .h-recruit__heading {
    width: 100%;
  }
}

.h-recruit__heading h2 {
  margin-top: -25px;
}
@media only screen and (max-width:750px) {
  .h-recruit__heading h2 {
    margin-top: 0;
  }
}

.h-recruit__heading__en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 125px;
  letter-spacing: 0;
  color: #fff;
  word-break: break-all;
}
@media only screen and (max-width:750px) {
  .h-recruit__heading__en {
    font-size: 27.5vw;
  }
}

.h-recruit__heading__jp {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 15px;
  padding-left: 0.3em;
}
@media only screen and (max-width:750px) {
  .h-recruit__heading__jp {
    font-size: 5.555vw;
    margin-top: 2.5vw;
  }
}

.h-recruit__heading__btn {
  margin-top: 125px;
  display: flex;
  flex-flow: column;
  gap: 15px 0;
}
@media only screen and (max-width:750px) {
  .h-recruit__heading__btn {
    display: none;
  }
}

.h-recruit__heading__btn li {
  border-bottom: solid 1px #fff;
  padding-bottom: 5px;
}

.h-recruit__heading__btn li a {
  display: flex;
  align-items: center;
  min-height: 42px;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  color: #fff;
  padding-right: 40px;
  position: relative;
}

.h-recruit__heading__btn li a::after {
  content: "";
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/circle_arrow_wh_40.svg) no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.h-recruit__heading__btn li a span {
  display: inline-block;
  padding-right: 20px;
  background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/ic_outside.svg) no-repeat;
  background-size: 16px;
  background-position: top 0.3em right;
}

/* sp btn */
.h-recruit__content__btn_sp {
  display: none;
}

@media only screen and (max-width:750px) {
  .h-recruit__content__btn_sp {
    display: flex;
    flex-flow: column;
    gap: 2.8vw 0;
    margin-top: 6vw;
  }

  .h-recruit__content__btn_sp p {
    border-bottom: solid 0.277vw #fff;
    padding-bottom: 1.388vw;
  }

  .h-recruit__content__btn_sp p > a {
    display: flex;
    align-items: center;
    min-height: 11.666vw;
    font-size: 4.444vw;
    line-height: 1.6em;
    font-weight: 400;
    color: #fff;
    padding-right: 11.111vw;
    position: relative;
  }

  .h-recruit__content__btn_sp p.--internship span {
    display: inline-block;
    padding-right: 5.33vw;
    background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/ic_outside.svg) no-repeat;
    background-size: 4vw;
    background-position: top 0.4em right;
  }

  .h-recruit__content__btn_sp p > a::after {
    content: "";
    background: url(/recruitment/wp/wp-content/themes/onozo_recruit/assets/images/circle_arrow_wh_40.svg) no-repeat;
    background-size: cover;
    width: 11.111vw;
    height: 11.111vw;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}


/*--------------------------------------------
entry
--------------------------------------------*/
.h-entry {
  display: none;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-entry {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 12.777vw;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(41,111,198,1);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 3.888vw;
    color: #fff;
    cursor: pointer;
    padding-bottom: 0.22em;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
  }
}


/*--------------------------------------------
footer
--------------------------------------------*/
.h-footer {
  width: 100%;
  height: 49px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-footer {
    height: 25.555vw;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: start;
    gap: 3.611vw 0;
    text-align: left;
  }
}

.h-footer p {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0;
  color: #fff;
  margin-left: 95px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-footer p {
    font-size: 4.166vw;
    margin-left: 4.722vw;
  }
}

.h-footer a {
  display: inline-block;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  margin-right: 111px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-footer a {
    font-size: 3.333vw;
    margin-right: 0;
    margin-left: 4.722vw;
  }
}