@charset "utf-8";
.text {
  text-align: justify;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

main {
  background-color: #fff;
  overflow-x: clip;
}

/* ↓↓↓ fv ↓↓↓ */
.fv {
  position: relative;
  height: max(400px, 31.25vw);
  overflow-x: clip;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 280px; 
  }
}

.fv::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 620/800;
  height: max(800px, 62.5vw);
  background: url(/recruit/img/common/aping-yamazaki-deco02.png) no-repeat;
  background-size: contain;
  background-position: right top;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv::after {
    left: 0;
    top: -18%;
    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 .container {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(/recruit/img/common/texture_gray-sandstorm.jpg);
 background-size: 400px;
  background-size: 400px;
  overflow: hidden;
}

.fv .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fv .page-group {
  position: absolute;
  bottom: 25%;
  left: 9.6875vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv .page-group {
    position: absolute;
    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, calc(48/1280*100vw));
  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;
  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 ↑↑↑ */

/* ↓↓↓ sticky-wrap ↓↓↓ */
.sticky-wrap {
  position: relative;
  max-width: 1280px;
  background-color: #fff;
  padding-top: 88px;
  margin: 0 auto;
  z-index: 0;
}
@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: -138px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap .main-conts {
    width: 100%;
    margin-top: 80px;
    margin-bottom: unset;
  }
}

.conts-block {
  width: 100%;
  padding: 0 4.375%;
}
@media screen and (max-width: 768px) {
  .conts-block {
    padding: unset;
    margin: 0 auto;
  }
}

.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;
  }
}

.sticky-wrap .main-conts .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;
}

.sticky-wrap .main-conts .block-ttl .ja {
  font-size: 2.8rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: block;
  margin-top: 9px;
}

/* ↑↑↑ main-conts ↑↑↑ */

/* ↓↓↓ description ↓↓↓ */
.sticky-wrap #description .doc-block {
  border-bottom: 1px solid #000;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block {
    margin-top: 37px;
  }
}

.sticky-wrap #description .doc-block .unit {
  border-top: 1px solid #000;
  display: flex;
  gap: 24px 30px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .unit {
    flex-direction: column;
  }
}

.sticky-wrap #description .doc-block .unit .doc-item {
  width: 152px;
  background-image: url(../img/common/texture_gray-sandstorm.jpg);
  background-repeat: repeat;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .unit .doc-item {
    width: 100%;
    padding: 25px 16px;
  }
}

.sticky-wrap #description .doc-block .doc-item .ttl {
  font-size: 1.6rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .doc-item .ttl {
    text-align: start;
  }
}

.sticky-wrap #description .doc-block .unit .doc-conts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .unit .doc-conts {
    gap: 10px;
    padding: 0 25px 24px;
  }
}

.sticky-wrap #description .doc-block .doc-conts .inner {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.714;
}

.sticky-wrap #description .doc-block .doc-conts .head {
  color: var(--color-orange);
}

.sticky-wrap #description .doc-block .doc-conts .indent-num {
  display: block;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.sticky-wrap #description .doc-block .doc-conts .indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.sticky-wrap #description .doc-block .doc-conts .txt-link {
  color: var(--color-orange);
  text-decoration: underline;
  transition: opacity ease .3s;
}

.sticky-wrap #description .doc-block .doc-conts .txt-link:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .doc-conts .txt-link:hover {
    opacity: 1;
  }
}

.sticky-wrap #description .doc-block .doc-conts .more-btn {
  position: relative;
  max-width: 256px;
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 14px;
  margin-top: 8px;
  transition: background-color ease .3s;
}

.sticky-wrap #description .doc-block .doc-conts .more-btn:hover {
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .doc-conts .more-btn:hover {
    background-color: #000;
  }
}

.sticky-wrap #description .doc-block .doc-conts .more-btn::before,
.sticky-wrap #description .doc-block .doc-conts .more-btn::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 10px;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(/recruit/img/common/icon-link.png) no-repeat;
  background-size: contain;
}

.sticky-wrap #description .doc-block .doc-conts .more-btn::after {
  background: url(/recruit/img/common/icon-link_w.png) no-repeat;
  background-size: contain;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .sticky-wrap #description .doc-block .doc-conts .more-btn::before,
  .sticky-wrap #description .doc-block .doc-conts .more-btn::after {
    transition: opacity 0.3s ease;
  }

  .sticky-wrap #description .doc-block .doc-conts .more-btn:hover::before {
    opacity: 0;
  }

  .sticky-wrap #description .doc-block .doc-conts .more-btn:hover::after {
    opacity: 1;
  }
}

.sticky-wrap #description .doc-block .doc-conts .more-btn + .txt {
  margin-top: 24px;
}

.sticky-wrap #description .doc-block .doc-conts .btn {
  position: relative;
  max-width: 256px;
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 14px;
  margin-top: 24px;
  transition: background-color ease .3s;
}

.sticky-wrap #description .doc-block .doc-conts .btn:hover {
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .doc-conts .btn:hover {
    background-color: #000;
  }
}

.sticky-wrap #description .doc-block .doc-conts .btn::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 7px;
  mask-image: url(/recruit/img/recruitment/btn-arrow.svg);
  -webkit-mask-image: url(/recruit/img/recruitment/btn-arrow.svg);
  background-color: var(--color-orange);
  translate: 0 -50%;
  top: 50%;
  right: 9px;
  transition: background-color ease .3s;
}
.sticky-wrap #description .doc-block .doc-conts .btn:hover::before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #description .doc-block .doc-conts .btn:hover::before {
    background-color: var(--color-orange);
  }
}

/* ↑↑↑ description ↑↑↑ */

/* ↓↓↓ flow ↓↓↓ */
.sticky-wrap #flow {
  margin: 80px auto 0;
}

.sticky-wrap #flow .conts-inner {
  display: flex;
  justify-content: space-between;
  gap: 37px 20px;
}
@media screen and (max-width: 1024px) {
  .sticky-wrap #flow .conts-inner {
    flex-direction: column;
  }
}

.sticky-wrap #flow .block-ttl {
  width: 155px;
}

.sticky-wrap #flow .flow-list {
  max-width: 575px;
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  counter-reset: flow-num 0;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list {
    max-width: unset;
    margin-top: unset;
  }
}

.sticky-wrap #flow .flow-list .unit:not(:last-of-type):before {
  content: '';
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: var(--color-orange);
  translate: 0 100%;
  bottom: 0;
  left: 42px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list .unit:not(:last-of-type):before {
    left: 32px;
  }
}

.sticky-wrap #flow .flow-list .unit {
  position: relative;
  min-height: 80px;
  display: flex;
}

.sticky-wrap #flow .flow-list .num {
  width: 80px;
  height: auto;
  font-size: 2.4rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list .num {
    width: 64px;
  }
}

.sticky-wrap #flow .flow-list .num::before {
  counter-increment: flow-num 1;
  content: counter(flow-num,decimal-leading-zero);
}

.sticky-wrap #flow .flow-list .item {
  flex: 1;
  height: auto;
  font-size: 1.8rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  background-image: url(../img/common/texture_gray-sandstorm.jpg);
  background-repeat: repeat;
  padding: 16px 16px 16px 39px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list .item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 24px;
  }
}

.sticky-wrap #flow .flow-list .item .item-btn {
  position: relative;
  max-width: 256px;
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  font-family: var(--font-noto);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 14px;
  transition: background-color ease .3s;
}

.sticky-wrap #flow .flow-list .item .item-btn:hover {
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list .item .item-btn:hover {
    background-color: #000;
  }
}

.sticky-wrap #flow .flow-list .item .item-btn::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 7px;
  mask-image: url(/recruit/img/recruitment/btn-arrow.svg);
  -webkit-mask-image: url(/recruit/img/recruitment/btn-arrow.svg);
  background-color: var(--color-orange);
  translate: 0 -50%;
  top: 50%;
  right: 9px;
  transition: background-color ease .3s;
}

.sticky-wrap #flow .flow-list .item .item-btn:hover::before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #flow .flow-list .item .item-btn:hover::before {
    background-color: var(--color-orange);
  }
}

/* ↑↑↑ flow ↑↑↑ */

/* ↓↓↓ qa ↓↓↓ */
.sticky-wrap #qa {
  margin: 80px auto 0;
}

.sticky-wrap #qa .qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 62px auto 0;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #qa .qa-list {
    margin: 37px auto 0;
  }
}

.sticky-wrap #qa .qa-list .unit {
  background-image: url(../img/common/texture_gray-sandstorm.jpg);
  background-repeat: repeat;
}

.sticky-wrap #qa .qa-list .unit .q-block {
  position: relative;
  display: flex;
  gap: 26px;
  cursor: pointer;
  padding: 24px 109px 20px 24px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #qa .qa-list .unit .q-block {
    gap: 8px;
    padding: 17px 72px 17px 16px;
  }
}

.sticky-wrap #qa .qa-list .unit .q-block .toggle-btn {
  position: absolute;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-orange);
  top: 50%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #qa .qa-list .unit .q-block .toggle-btn {
    right: 16px;
  }
}

.sticky-wrap #qa .qa-list .unit .q-block .toggle-btn::before,
.sticky-wrap #qa .qa-list .unit .q-block .toggle-btn::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #fff;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  transition: rotate ease .3s;
}

.sticky-wrap #qa .qa-list .unit .q-block .toggle-btn::after {
  rotate: 270deg;
}

.sticky-wrap #qa .qa-list .unit .q-block.active .toggle-btn::after {
  rotate: 0deg;
}

.sticky-wrap #qa .qa-list .unit .q-block .toggle-btn {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
}

.sticky-wrap #qa .qa-list .unit .q-block .initial::before {
  content: 'Q.';
  font-size: 2.4rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  line-height: 1;
  color: var(--color-orange);
}

.sticky-wrap #qa .qa-list .unit .q-block .q-txt {
  font-size: 1.6rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  line-height: 1.625;
  flex: 1;
}

.sticky-wrap #qa .qa-list .unit .a-block {
  display: none;
  padding: 0 109px 24px 75px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #qa .qa-list .unit .a-block {
    padding: 0 16px 24px 50px;
  }
}

.sticky-wrap #qa .qa-list .unit .a-block .a-txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.714;
}

/* ↑↑↑ qa ↑↑↑ */

/* ↓↓↓ entry ↓↓↓ */
.sticky-wrap #entry {
  position: relative;
  padding-top: 120px;
  padding-bottom: 70px;
  margin: 120px auto 0;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry {
    padding-top: 66px;
    padding-bottom: 64px;
    margin: 80px auto 0;
  }
}

.sticky-wrap #entry .bg-movie {
  position: absolute;
  width: 100vw;
  height: calc(100% + 70px);
  translate: -50% 0;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry .bg-movie {
    height: 100%;
  }
}

.sticky-wrap #entry .bg-movie::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .6);
  top: 0;
  left: 0;
}

.sticky-wrap #entry .bg-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-wrap #entry .conts-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 31px 20px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry .conts-inner {
    max-width: 500px;
    flex-direction: column;
    margin: 0 auto;
  }
}

.sticky-wrap #entry .conts-inner .txtGroup {
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry .conts-inner .txtGroup {
    max-width: unset;
  }
}

.sticky-wrap #entry .conts-inner .txtGroup .main-copy {
  font-size: clamp(4.5rem,63/1280*100vw,6.3rem);
  font-family: var(--font-shipp);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.158;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry .conts-inner .txtGroup .main-copy {
    font-size: 3.5rem;
    line-height: 1.314;
  }
}

.sticky-wrap #entry .conts-inner .txtGroup .sub-copy {
  font-size: clamp(1.8rem,23/1280*100vw,2.3rem);
  font-family: var(--font-shipp);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.652;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .sticky-wrap #entry .conts-inner .txtGroup .sub-copy {
    font-size: 1.7rem;
    line-height: 1.647;
    margin-top: 17px;
  }
}

.sticky-wrap #entry .conts-inner .link-img {
  position: relative;
  width: 272px;
  height: 360px;
  background-color: var(--color-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: clip;
  transition: opacity ease .3s;
}

.sticky-wrap #entry .conts-inner .link-img:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #entry .conts-inner .link-img {
    width: 100%;
    height: 180px;
  }

  .sticky-wrap #entry .conts-inner .link-img:hover {
    opacity: 1;
  }
}

.sticky-wrap #entry .conts-inner .link-img::before,
.sticky-wrap #entry .conts-inner .link-img::after {
  content: '';
  position: absolute;
  width: 202px;
  height: 287px;
  background: url(/recruit/img/recruitment/new-graduate/link-btn-deco.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}

.sticky-wrap #entry .conts-inner .link-img::before {
  top: -75px;
  right: -48px;
  rotate: 180deg;
}

.sticky-wrap #entry .conts-inner .link-img::after {
  bottom: -100px;
  left: -32px;
}

.sticky-wrap #entry .conts-inner .link-img .en {
  position: relative;
  font-size: 4rem;
  font-family: var(--font-shipp);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}

.sticky-wrap #entry .conts-inner .link-img .ja {
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

/* ↑↑↑ entry ↑↑↑ */

.search .container {
  padding-top: 80px;
}