@charset "utf-8";
main {
  background-color: #fff;
}

.text {
  text-align: justify;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.block-ttl {
  position: relative;
  z-index: 1;
}

.block-ttl .en {
  font-size: 1.2rem;
  font-family: var(--font-lato);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-orange);
  display: block;
}

.block-ttl .ja {
  font-size: 4rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: block;
  margin-top: 9px;
}

@media screen and (max-width: 768px) {
  .block-ttl .ja {
    font-size: 3.2rem;
  }
}
/* ↓↓↓ fv ↓↓↓ */
.fv {
  height: 100vh;
  height: 100svh;
  min-height: max(650px, 100vh);
  min-height: max(650px, 100dvh);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 480px;
    min-height: initial;
  }
}

.fv::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  aspect-ratio: 680/800;
  height: min(62.5vw,100%);
  background: url(/recruit/img/common/aping-yamazaki-deco01.png) no-repeat;
  background-size: cover;
  background-position: left bottom;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv::before {
    left: 0;
    top: 0;
    /* aspect-ratio修正用 */
    min-width: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 375/240;
    background: url(/recruit/img/common/aping-yamazaki-deco01_sp.png) no-repeat;
    background-size: cover;
  }

}

.fv::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 620/800;
  height: min(62.5vw,100%);
  background: url(/recruit/img/common/aping-yamazaki-deco02.png) no-repeat;
  background-size: cover;
  background-position: right top;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv::after {
    top: initial;
    bottom: 0;
    /* aspect-ratio修正用 */
    min-width: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 375/240;
    background: url(/recruit/img/common/aping-yamazaki-deco02_sp.png) no-repeat;
    background-size: cover;
  }
  .fv::after {
    display: none;
  }
}

.fv .container {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/recruit/img/common/mosaic-pattern.jpg) repeat;
  background-size: 400px;
  opacity: 0.2;
}

.fv .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,233,89,0) 100%);
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .fv .container::after {
    background: rgba(0,0,0, 0.4);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
  }
}

.fv .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fv .page-group {
  position: absolute;
  top: 25%;
  left: 9.6875vw;
  color: #fff;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv .page-group {
    position: absolute;
    top: initial;
    bottom: 40px;
    left: 25px;
  }
}

.fv .page-group .page-category {
  font-family: var(--font-lato);
  font-size: max(1.2rem, 0.9375vw);
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
}

.fv .page-group .page-name {
  font-family: var(--font-shipp);
  font-size: max(4.8rem, 3.75vw);
  font-weight: 500;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .fv .page-group .page-name {
    font-size: 3.2rem;
    margin-top: 0;
  }
}

.fv .page-group .key-list {
  display: flex;
  flex-wrap: wrap;
  max-width: max(270px, 65.53%);
  margin-top: 5px;
}

.fv .page-group .key-list .item {
  font-size: max(1.2rem, 0.9375vw);
  letter-spacing: 0.05em;
  margin-right: max(12px, 0.9375vw);
  opacity: 0.6;
}
/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ catch ↓↓↓ */
.catch {
  background-color: #000;
}

.catch .profile-group {
  position: absolute;
  translate: 0 -100%;
  top: -80px;
  left: 9.6875vw;
  width: 416px;
  color: #fff;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .catch .profile-group {
    position: initial;
    translate: 0 0;
    width: 100%;
    padding: 32px 25px;
    margin: 0 auto;
  }
}
/* ↑↑↑ catch ↑↑↑ */


/* ↓↓↓ sticky-wrap ↓↓↓ */
.sticky-wrap {
  position: relative;
  max-width: 1280px;
  background-color: #fff;
  padding-top: 88px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sticky-wrap {
    padding: 40px 25px 0;
  }
}

/* ↑↑↑ sticky-wrap ↑↑↑ */

/* ↓↓↓ anchor-box ↓↓↓ */
.sticky-wrap .anchor-box {
  position: sticky;
  width: min(calc(250/1280*100vw),250px);
  min-width: 200px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
  top: 120px;
  left: 4.375%;
  background: linear-gradient(var(--color-orange) 50%, var(--color-orange) 0%) 0% 100% /4px 100% no-repeat;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap .anchor-box {
    left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap .anchor-box {
    position: initial;
    float: unset;
    width: 100%;
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    background: unset;
    padding-left: unset;
  }
}

.sticky-wrap .anchor-box .anchor-item {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.sticky-wrap .anchor-box .anchor-item .anchor-link {
  background: rgba(255, 255, 255, 0.7);
  box-decoration-break: clone; 
  -webkit-box-decoration-break: clone;
  padding: 0px 7px 2px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .anchor-box .anchor-item {
    position: relative;
    width: calc((100% - 16px)/2);
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 16px;
  }
  .sticky-wrap .anchor-box .anchor-item::before {
    content: '';
    position: absolute;
    translate: 0 -50%;
    width: 10px;
    height: 8px;
    background: url(/recruit/img/common/anchor-arrow.svg) no-repeat;
    background-size: contain;
    top: calc(50% - 8px);
    right: 0;
  }
  .sticky-wrap .anchor-box .anchor-item .anchor-link {
    display: grid;
    place-content: center left;
    height: 100%;
    background: linear-gradient(var(--color-orange) 50%, var(--color-orange) 0%) 0% 100% /4px 100% no-repeat;
    padding: 10px 20px 10px 12px;
  }
}
/* ↑↑↑ anchor-box ↑↑↑ */

/* ↓↓↓ main-conts ↓↓↓ */
.sticky-wrap .main-conts {
  width: 100%;
  margin-top: -160px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .main-conts {
    width: 100%;
    margin-top: 80px;
    margin-bottom: unset;
  }
}

.conts-block {
  position: relative;
  width: 100%;
  padding-right: 4.375%;
}

.conts-block:not(:first-of-type) {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .conts-block {
    padding: unset;
    margin: 0 auto;
  }

  .conts-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.conts-block .conts-inner {
  position: relative;
  max-width: calc(880px + 250px + min(50px, 3.906246vw));
  padding-left: calc(250px + min(50px, 3.90624vw));
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .conts-block .conts-inner {
    padding-left: calc(200px + min(50px, 3.90624vw));
  }
}

@media screen and (max-width: 768px) {
  .conts-block .conts-inner {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: unset;
  }
}

/* ↑↑↑ main-conts ↑↑↑ */

/* ↓↓↓ philosophy ↓↓↓ */
.sticky-wrap #philosophy .doc-block {
  max-width: 880px;
  margin-top: 60px;
}

.sticky-wrap #philosophy .doc-block:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .doc-block {
    display: block;
    margin-top: 35px;
  }
  
  .sticky-wrap #philosophy .doc-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap #philosophy .heading {
  font-family: var(--font-shipp);
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .heading {
    font-size: 1.8rem;
  }
}

.sticky-wrap #philosophy .philosophy-list {
  max-width: 804px;
  width: 100%;
  margin-top: 40px;
  counter-reset: philosophy-num 0;
}

.sticky-wrap #philosophy .philosophy-list .item {
  display: flex;
  align-items: center;
  align-items: stretch;
  background: url(/recruit/img/common/texture_gray-sandstorm.jpg);
}

.sticky-wrap #philosophy .philosophy-list .item:not(:first-of-type) {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .philosophy-list .item {
    width: 100%;
  }
  
  .sticky-wrap #philosophy .philosophy-list .item:nth-of-type(n + 2) {
    margin-top: 8px;
  }
}

.sticky-wrap #philosophy .philosophy-list .item .num {
  position: relative;
  width: 84px;
  height: auto;
  display: grid;
  place-content: center;
  font-family: var(--font-shipp);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: var(--color-orange);
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .philosophy-list .item .num {
    width: 66px; 
    min-width: 66px;
    font-size: 2.8rem;
  }
}

.sticky-wrap #philosophy .philosophy-list .item .num::before {
  counter-increment: philosophy-num 1;
  content: counter(philosophy-num,decimal-leading-zero);
}

.sticky-wrap #philosophy .philosophy-list .item .text-group {
  display: flex;
  align-items: center;
  padding: 25px 30px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .philosophy-list .item .text-group {
    flex-direction: column;
    padding: 20px 24px 24px;
  }
}

.sticky-wrap #philosophy .philosophy-list .item .lead {
  font-family: var(--font-shipp);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  width: 200px;
  color: var(--color-orange);
  margin-right: 42px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .philosophy-list .item .lead {
    width: 100%;
    font-size: 2rem;
    margin: 0 0 15px;
  }
}

.sticky-wrap #philosophy .philosophy-list .item .text {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #philosophy .philosophy-list .item .text {
    font-size: 1.4rem;
  }
}
/* ↑↑↑ philosophy ↑↑↑ */

/* ↓↓↓ slogan ↓↓↓ */
.sticky-wrap #slogan .doc-block {
  max-width: 804px;
  margin-top: 60px;
}

.sticky-wrap #slogan .doc-block:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #slogan .doc-block {
    display: block;
    margin-top: 35px;
  }
  
  .sticky-wrap #slogan .doc-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap #slogan .slogan-box {
  text-align: center;
  padding: 40px 22px 50px;
  background: url(/recruit/img/common/texture_gray-sandstorm.jpg);
}

.sticky-wrap #slogan .slogan-box .lead {
  font-family: var(--font-shipp);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-orange);
}

@media screen and (max-width: 768px) {
  .sticky-wrap #slogan .slogan-box .lead {
    font-size: 4rem;
    line-height: 1.4;
  }
}

.sticky-wrap #slogan .slogan-box .sub-lead {
  font-family: var(--font-shipp);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 30px;
}

.sticky-wrap #slogan .slogan-box .text {
  text-align: center;
  margin-top: 30px;
}

.sticky-wrap #slogan .slogan-box + .text {
  margin-top: 24px;
}
/* ↑↑↑ slogan ↑↑↑ */

/* ↓↓↓ features ↓↓↓ */
.sticky-wrap #features {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features {
    padding-bottom: 64px;
  }
}

.sticky-wrap #features::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: url(/recruit/img/about/overview/features-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features::before {
    background: url(/recruit/img/about/overview/features-bg_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.sticky-wrap #features .doc-block {
  max-width: 804px;
  margin-top: 60px;
}

.sticky-wrap #features .doc-block:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features .doc-block {
    display: block;
    width: 100%;
    margin-top: 35px;
  }
  
  .sticky-wrap #features .doc-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap #features .features-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features .features-list {
    flex-direction: column;
    margin-top: 40px;
  }
}

.sticky-wrap #features .features-list .item {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.sticky-wrap #features .features-list .item:not(:first-of-type) {
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features .features-list .item {
    width: 100%;
    flex-direction: column;
  }

  .sticky-wrap #features .features-list .item:not(:first-of-type) {
    margin-top: 48px;
  }
}

.sticky-wrap #features .features-list .item .lead {
  min-width: 120px;
  width: 194px;
  margin-right: 32px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features .features-list .item .lead {
    min-width: initial;
    width: 154px;
    margin: 0 auto 24px;
  }
}

.sticky-wrap #features .features-list .item .text-group {
  max-width: 576px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #features .features-list .item .text-group {
    max-width: initial;
  }
}

.sticky-wrap #features .features-list .item .text .-orange {
  color: var(--color-orange);
}
/* ↑↑↑ features ↑↑↑ */

/* ↓↓↓ worth ↓↓↓ */
.sticky-wrap #worth .doc-block {
  max-width: 804px;
  margin-top: 60px;
}

.sticky-wrap #worth .doc-block:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .doc-block {
    display: block;
    width: 100%;
    margin-top: 35px;
  }
  
  .sticky-wrap #worth .doc-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap #worth .worth-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list {
    flex-direction: column;
    margin-top: 40px;
  }
}

.sticky-wrap #worth .worth-list::before {
  content: '';
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 85%;
  background-image: url(../img/common/texture_gray-sandstorm.jpg);
  background-repeat: repeat;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list::before {
    width: 74%;
    height: 100%;
  }
}

.sticky-wrap #worth .worth-list .item {
  position: relative;
  display: flex;
  z-index: 1;
}

.sticky-wrap #worth .worth-list .item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.sticky-wrap #worth .worth-list .item:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list .item,
  .sticky-wrap #worth .worth-list .item:nth-of-type(even) {
    width: 100%;
    flex-direction: column;
  }

  .sticky-wrap #worth .worth-list .item:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap #worth .worth-list .item .text-group {
  max-width: 380px;
}

.sticky-wrap #worth .worth-list .item:nth-of-type(odd) .text-group {
  margin-right: 9.454%;
}

.sticky-wrap #worth .worth-list .item:nth-of-type(even) .text-group {
  margin-left: 9.454%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list .item .text-group {
    max-width: initial;
  }

  .sticky-wrap #worth .worth-list .item:nth-of-type(odd) .text-group {
    margin-right: 0;
  }
  
  .sticky-wrap #worth .worth-list .item:nth-of-type(even) .text-group {
    margin-left: 0;
  }
}

.sticky-wrap #worth .worth-list .item .lead {
  font-family: var(--font-shipp);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 23px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list .item .lead {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.sticky-wrap #worth .worth-list .item .text .-orange {
  color: var(--color-orange);
}

.sticky-wrap #worth .worth-list .item .image {
  min-width: 150px;
  width: calc(100% - (380px + 9.45%));
  height: max-content;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #worth .worth-list .item .image {
    min-width: initial;
    width: 100%;
    margin-top: 24px;
  }
}
/* ↑↑↑ worth ↑↑↑ */

/* ↓↓↓ history ↓↓↓ */
.sticky-wrap #history {
  padding: 80px 0 180px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history {
    width: calc(100% + 25px * 2);
    translate: -25px 0;
    padding: 80px 0 110px;
  }
}

.sticky-wrap #history::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #000;
}

.sticky-wrap #history .conts-inner {
  max-width: calc(924px + 250px);
  padding-left: 250px;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #history .conts-inner {
    padding-left: calc(200px + min(50px, 3.90624vw));
  }
}


@media screen and (max-width: 768px) {
  .sticky-wrap #history .conts-inner {
    max-width: 550px;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .block-ttl {
    padding: 0 25px;
  }
}

.sticky-wrap #history .block-ttl .ja {
  color: #fff;
  line-height: 1.6;
}

.sticky-wrap #history .doc-block {
  position: relative;
  margin-top: 60px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .doc-block {
    display: block;
    width: 100%;
    margin-top: 100px;
  }
}

.sticky-wrap #history .doc-block .years {
  position: absolute;
  font-family: var(--font-shipp);
  font-size: min(10rem, calc((100 - 60) * ((100vw - 769px) / (1280 - 769)) + 60px));
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-orange);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .doc-block .years {
    font-size: 6.4rem;
  }
}

.sticky-wrap #history .years-item .image {
  position: relative;
}

.sticky-wrap #history .years-item figcaption {
  position: absolute;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  z-index: 1;
}

.sticky-wrap #history .years-item figcaption .num {
  writing-mode: vertical-lr;
  text-orientation: upright;
}

.sticky-wrap #history .years-item .text-group .lead {
  font-family: var(--font-shipp);
  font-size: min(2.8rem, calc((28 - 18) * ((100vw - 769px) / (1280 - 769)) + 18px));
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .years-item .text-group .lead {
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}

.sticky-wrap #history .years-item .text-group .text + .text {
  margin-top: 25px;
}

.sticky-wrap #history .-y1919 .years {
  top: 15px;
  right: 5%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years {
    top: -50px;
    right: initial;
    left: 25px;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order01 {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order01 {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0 0 0 25px;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order01 .image.-yamazaki {
    width: 43.716%;
    margin-top: -8%;
    z-index: 1;
  }  
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-yamazaki figcaption {
  translate: 0 100%;
  bottom: -8px;
  left: 0;
  padding-left: 1.4em;
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-yamazaki figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-orange) transparent;
  border-width: 0px 6px 12px 6px;
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding {
  margin-left: 32px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding {
    margin-left: 0;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding img {
  opacity: 0.6;
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding figcaption {
  translate: 0 100%;
  writing-mode: vertical-lr;
  bottom: -12px;
  right: 9.034%;
  height: max-content;
  padding-top: 1.4em;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding figcaption {
    right: 15px;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order01 .image.-founding figcaption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-orange) transparent;
  border-width: 0px 6px 12px 6px;
}

.sticky-wrap #history .-y1919 .years-item.-order02 {
  position: relative;
  display: flex;
  align-items: flex-end;
  translate: -44px 0;
  margin-top: 50px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order02 {
    flex-direction: column-reverse;
    align-items: flex-start;
    translate: 0 0;
    padding: 0 25px;
    margin-top: 60px;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny {
  min-width: calc(100% - (576px + 32px));
}

.sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny img {
  width: max(154px, 75.95%);
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny {
    min-width: initial;
    width: 47.385%;
    margin-top: 40px;
  }
  
  .sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny img {
    width: 100%;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny figcaption {
  position: relative;
  padding-left: 1.4em;
  margin-top: 8px;
}

.sticky-wrap #history .-y1919 .years-item.-order02 .image.-ny figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-orange) transparent;
  border-width: 0px 6px 12px 6px;
}

.sticky-wrap #history .-y1919 .years-item.-order02 .text-group {
  width: calc(456px + 32px);
  padding-right: 32px;
  margin-left: 32px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order02 .text-group {
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor {
  width: 29.438%;
  margin: -70px 0 0 auto;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor {
    width: 70.67%;
    margin: -128px 0 0 auto;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor img {
  opacity: 0.5;
}

.sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor figcaption {
  position: relative;
  padding-left: 1.4em;
  padding-right: 8px;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor figcaption {
    padding-right: 0;
  }
}

.sticky-wrap #history .-y1919 .years-item.-order03 .image.-conveyor figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-orange) transparent;
  border-width: 0px 6px 12px 6px;
}

.sticky-wrap #history .-y1980 {
  margin-top: 0;
}

.sticky-wrap #history .-y1980 .years {
  translate: 0 -75%;
  top: 0;
  left: -44px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years {
    left: 25px;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order01 {
  translate: -44px 0;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order01 {
    translate: 0 0;
    margin-top: 124px;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf {
  width: 58.875%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf {
    width: 85.334%;
    margin-left: auto;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf img {
  opacity: 0.6;
}

.sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf figcaption {
  translate: -100% 0;
  top: 0;
  left: -12px;
  height: max-content;
  padding-top: 1.4em;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf figcaption {
    top: 50px;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order01 .image.-fmf figcaption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-orange);
  border-width: 6px 0px 6px 12px;
}

.sticky-wrap #history .-y1980 .years-item.-order02 {
  display: flex;
  align-items: center;
  margin-top: max(-240px, calc((-240 + 70) * ((100vw - 769px) / (1280 - 769)) - 70px));
  translate: -152px 0;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order02 {
    flex-direction: column;
    margin-top: -60px;
    translate: 0 0;
    padding: 0 25px;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt {
  min-width: max(240px, calc(100% - (380px + 32px)));
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt {
    min-width: initial;
    width: 100%;
    padding-left: 8.62%;
    margin-bottom: 0;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt img {
  width: 67.97%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt img {
    width: 76.435%;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt figcaption {
  bottom: 10px;
  left: 58.596%;
  padding-left: 1.4em;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt figcaption {
    left: 72.31%;
  }
}

.sticky-wrap #history .-y1980 .years-item.-order02 .image.-qt figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-orange) transparent transparent;
  border-width: 6px 12px 6px 0px;
}

.sticky-wrap #history .-y1980 .years-item.-order02 .text-group {
  max-width: 380px;
  margin-left: min(32px, calc((32 - 0) * ((100vw - 769px) / (1280 - 769)) + 0px));
  translate: 32px 0;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y1980 .years-item.-order02 .text-group {
    max-width: initial;
    translate: 0 0;
    margin: 35px 0 0;
  }
}

.sticky-wrap #history .-y2000 {
  margin-top: 18.399%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 {
    margin-top: 120px;
  }
}

.sticky-wrap #history .-y2000 .years {
  translate: 0 -75%;
  top: 0;
  right: 44px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years {
    right: initial;
    left: 25px;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order01 {
  translate: -44px 0;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order01 {
    translate: 0 0;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order01 .image.-factory {
  width: 95.239%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order01 .image.-factory {
    width: 84.27%;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order01 .image.-factory img {
  opacity: 0.5;
}

.sticky-wrap #history .-y2000 .years-item.-order01 .image.-factory figcaption {
  translate: 100% 0;
  top: 30px;
  right: -12px;
  height: max-content;
  padding-top: 1.4em;
  writing-mode: vertical-lr;
}

.sticky-wrap #history .-y2000 .years-item.-order01 .image.-factory figcaption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-orange) transparent transparent;
  border-width: 6px 12px 6px 0px;
}

.sticky-wrap #history .-y2000 .years-item.-order02 {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 95.239%;
  margin-top: -21.646%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order02 {
    flex-direction: column;
    width: 100%;
    margin-top: -80px;
    padding: 0 25px;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order02 .text-group {
  max-width: 348px;
  margin-right: min(32px, calc((32 - 0) * ((100vw - 769px) / (1280 - 769)) + 0px));
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order02 .text-group {
    max-width: initial;
    margin-right: 0;
  }

  .sticky-wrap #history .-y2000 .years-item.-order02 .lead {
    width: 78.464%;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image-group {
  min-width: max(240px, calc(100% - (348px + 32px)));
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y,
.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am {
  width: 86.8%;
  margin-left: auto;
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am {
  margin-top: 65px;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y,
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am {
    width: 100%;
    margin: 40px 0 0;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y img {
  width: 81.34%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y img,
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am img {
    width: 73.54%;
  }
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am img {
    display: block;
    margin-left: auto;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y figcaption {
  bottom: min(0px, calc((0 + 20) * ((100vw - 769px) / (1280 - 769)) - 20px));
  right: 0;
  padding-left: 1.4em;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y figcaption {
    bottom: 0;
  }
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i200y figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-orange) transparent transparent;
  border-width: 6px 12px 6px 0px;
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am figcaption {
  bottom: -25px;
  right: 0;
  padding-left: 1.4em;
}

.sticky-wrap #history .-y2000 .years-item.-order02 .image.-i400am figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-orange) transparent;
  border-width: 0px 6px 12px 6px;
}
/* ↑↑↑ history ↑↑↑ */

/* ↓↓↓ recent ↓↓↓ */
.sticky-wrap #recent {
  margin-top: 0;
  padding: 140px 56px 120px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent {
    padding: 86px 0 110px;
  }
}

.sticky-wrap #recent::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: url(/recruit/img/about/overview/recent-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent::before {
    background: url(/recruit/img/about/overview/recent-bg_sp.jpg) no-repeat;
    background-size: cover;
  }
  
}

.sticky-wrap #recent .conts-inner {
  max-width: 1068px;
  padding-left: 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .conts-inner {
    max-width: 550px;
  }
}

.sticky-wrap #recent .doc-block {
  position: relative;
  color: #fff;
}

.sticky-wrap #recent .doc-block .years {
  position: absolute;
  font-family: var(--font-shipp);
  font-size: min(10rem, calc((100 - 60)*((100vw - 769px) /(1280 - 769)) + 60px));
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-orange);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .doc-block .years {
    font-size: 6.4rem;
    width: max-content;
  }
}

.sticky-wrap #recent .years-item figcaption {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  margin-top: 8px;
  z-index: 1;
}

.sticky-wrap #recent .years-item .text-group .lead {
  font-family: var(--font-shipp);
  font-size: min(2.8rem, calc((28 - 18)*((100vw - 769px) /(1280 - 769)) + 18px));
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .years-item .text-group .lead {
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}

.sticky-wrap #recent .-y2017 .years {
  translate: 0 -75%;
  top: -140px;
  right: 14.607%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years {
    translate: -50% -55%;
    top: -86px;
    right: initial;
    left: 50%;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 {
    flex-direction: column-reverse;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group {
  min-width: 315px;
  width: 558px;
  max-width: 558px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group {
    min-width: initial;
    max-width: initial;
    width:100%;
    margin-top: 40px;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image {
  position: relative;
  height: max-content;
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo img {
  display: block;
  width: 51.613%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo img {
    width: 66.462%;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo figcaption {
    position: absolute;
    bottom: 70px;
    right: -30px;
    padding-left: 1.4em;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo figcaption {
    bottom: -20px;
    right: initial;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo figcaption {
    bottom: -80px;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-orange) transparent transparent;
  border-width: 6px 12px 6px 0px;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-neo figcaption::before {
    top: 3px;
    border-color: transparent transparent var(--color-orange) transparent;
    border-width: 0px 6px 12px 6px;
  }
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev {
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev {
    margin-top: 10px;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev img {
  display: block;
  width: 43.013%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev img {
    width: 44.924%;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev figcaption {
  position: absolute;
  bottom: 30px;
  right: 46.595%;
  text-align: right;
  padding-right: 1.4em;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev figcaption {
    bottom: -50px;
    right: 0;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev figcaption::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-orange);
  border-width: 6px 0px 6px 12px;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .image-group .image.-ev figcaption::before {
    top: 3px;
    border-color: transparent transparent var(--color-orange) transparent;
    border-width: 0px 6px 12px 6px;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .text-group {
  max-width: 424px;
  margin-left: 32px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #recent .-y2017 .years-item.-order01 .text-group {
    max-width: initial;
    margin-left: 0;
  }
}

.sticky-wrap #recent .-y2017 .years-item.-order01 .text-group .text + .text {
  margin-top: 30px;
}
/* ↑↑↑ recent ↑↑↑ */

/* ↓↓↓ future ↓↓↓ */
.sticky-wrap #future {
  padding: 100px 56px 90px 0;
  margin: 0 auto 70px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future {
    padding: 98px 0 270px;
    margin: 0 auto;
  }
}

.sticky-wrap #future::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: calc(100% + 70px);
  background: url(/recruit/img/about/overview/future-bg.jpg) no-repeat;
  opacity: 0.1;
  background-size: cover;
}

.sticky-wrap #future .deco01 {
  position: absolute;
  top: 30.787%;
  right: 0;
  width: 30.625%;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #future .deco01 {
    top: 0;
    right: 0;
    width: 265px;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .deco01 {
    right: -25px;
  }
}

.sticky-wrap #future .deco02 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 21.876%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .deco02 {
    top: initial;
    bottom: 0;
    left: -25px;
    width: 179px;
  }
}

.sticky-wrap #future .deco03 {
  position: absolute;
  bottom: -70px;
  right: min(120px, calc((120 - 0) * ((100vw - 1025px) / (1280 - 1025)) + 0px));
  width: 17.891%;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap #future .deco03 {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .deco03 {
    right: -25px;
    bottom: 0;
    width: 171px;
  }
}

.sticky-wrap #future .doc-block.-y2024 {
  max-width: 733px;
}

.sticky-wrap #future .years {
  position: relative;
  font-family: var(--font-shipp);
  font-size: min(10rem, calc((100 - 60)*((100vw - 769px) /(1280 - 769)) + 60px));
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-orange);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .years {
    font-size: 6.4rem;
  }
}

.sticky-wrap #future .years::before {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 60%;
  right: 0;
  width: 65.485%;
  height: 3px;
  background: rgb(255,89,1);
  background: linear-gradient(90deg, rgba(255,89,1,1) 0%, rgba(255,89,1,0) 100%);
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .years::before {
    translate: 25px -50%;
    width: calc(100% - 170px);
  }
}

.sticky-wrap #future .years-item .text-group .lead {
  font-family: var(--font-shipp);
  font-size: min(3.2rem, calc((32 - 22)*((100vw - 769px) /(1280 - 769)) + 22px));
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .years-item .text-group .lead {
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}

.sticky-wrap #future .years-item.-order01 .text-group {
  max-width: 500px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #future .years-item.-order01 .text-group {
    max-width: initial;
  }
}

.sticky-wrap #future .years-item.-order01 .text-group .text {
  font-size: 1.5rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.sticky-wrap #future .years-item.-order01 .text-group .text + .text {
  margin-top: 30px;
}
/* ↑↑↑ future ↑↑↑ */

.search .container {
  padding-top: 80px;
}