@charset "utf-8";

html {
  overflow-x: hidden;
}

main {
  background-color: #fff;
}

.text {
  text-align: justify;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  line-height: 1.7;
}

/* ↓↓↓ 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;
    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: 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;
    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;
}

@media screen and (max-width: 768px) {
  .fv .image img {
    object-position: 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(175px, 50%);
  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: 80px;
  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: -218px;
  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%;
}

.conts-block:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .conts-block {
    padding: unset;
    margin: 0 auto;
  }
}

.conts-block .conts-inner {
  position: relative;
  max-width: calc(924px + 250px + min(50px, 3.906246vw));
  padding-left: calc(250px + min(50px, 3.90624vw));
  margin-left: auto;
  container-type: inline-size;
}

@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;
    margin: 0 auto;
    padding: unset;
  }
}

/* ↑↑↑ main-conts ↑↑↑ */

/* ↓↓↓ areamap ↓↓↓ */
.sticky-wrap #areamap {
  position: relative;
  aspect-ratio: 1280/720;
  background: url(../img/environment/base/areamap.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .sticky-wrap #areamap {
    translate: -25px 0;
    width: calc(100% + 25px * 2);
    min-width: 0;
    aspect-ratio: 375/625;
    background: url(../img/environment/base/areamap_sp.jpg) no-repeat;
    background-size: cover;
  }
}

/* ↑↑↑ areamap ↑↑↑ */

/* ↓↓↓ base ↓↓↓ */
.sticky-wrap .doc-block {
  position: relative;
  max-width: 924px;
  margin-top: 64px;
}

.sticky-wrap .doc-block::before {
  content: '';
  position: absolute;
  translate: -100% -50%;
  top: 58%;
  left: 100vw;
  width: 82vw;
  height: 51%;
  background-image: url(../img/common/texture_gray-sandstorm.jpg);
  background-repeat: repeat;
}

.sticky-wrap .doc-block#minokamo::before {
  height: 46%;
  top: 55%;
}

@media screen and (max-width: 768px) {

  .sticky-wrap .doc-block::before,
  .sticky-wrap .doc-block#minokamo::before {
    translate: 0 -50%;
    top: 55%;
    left: initial;
    right: -25px;
    width: 80%;
    height: 67%;
  }
}

.sticky-wrap .doc-block:not(:first-of-type) {
  margin-top: 135px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block {
    display: block;
    margin-top: 55px;
  }

  .sticky-wrap .doc-block:not(:first-of-type) {
    margin-top: 64px;
  }
}

.sticky-wrap .doc-block .intro-group {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .intro-group {
    display: block;
  }
}

.sticky-wrap .doc-block .heading {
  writing-mode: vertical-rl;
  font-family: var(--font-shipp);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 48px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .heading {
    writing-mode: initial;
    font-size: 3.2rem;
    margin-right: 0;
  }
}

.sticky-wrap .doc-block .heading .-orange {
  color: var(--color-orange);
}

.sticky-wrap .doc-block .intro-group .image {
  display: block;
  overflow: hidden;
}

.sticky-wrap .doc-block .intro-group .image img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .intro-group .image {
    width: calc(100% + 25px);
    margin-top: 24px;
  }

  .sticky-wrap .doc-block .intro-group .image img {
    height: auto;
    object-fit: initial;
  }
}

.sticky-wrap .doc-block .info-wrap {
  position: relative;
  margin-top: -70px;
  padding-right: 4.763%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .info-wrap {
    margin-top: -24px;
    padding-right: 0;
  }
}

.sticky-wrap .doc-block .info-wrap .minutes {
  text-align: right;
  display: block;
  height: max(100px, 15.26cqw);
}

.sticky-wrap .doc-block .info-wrap .minutes img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .info-wrap .minutes {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .sticky-wrap .doc-block .info-wrap .minutes img {
    width: 100%;
    height: auto;
  }
}

.sticky-wrap .doc-block .info-wrap .text-group {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap .doc-block .info-wrap .text-group {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .info-wrap .text-group {
    max-width: 550px;
    margin: 8px auto 0;
  }
}

.sticky-wrap .doc-block .info-wrap .text-group iframe {
  min-width: 424px;
  margin-left: 32px;
}

@media screen and (max-width: 1024px) {
  .sticky-wrap .doc-block .info-wrap .text-group iframe {
    width: 100%;
    height: min(400px, 73.334vw);
    margin: 0 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .info-wrap .text-group iframe {
    min-width: initial;
  }
}

.sticky-wrap .doc-block .data-list {
  position: relative;
  display: flex;
  padding-right: 4.763%;
  margin-top: 65px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .data-list {
    max-width: 550px;
    flex-direction: column;
    margin: 48px auto 0;
    padding: 0;
  }
}

.sticky-wrap .doc-block .data-list .item {
  width: 380px;
}

.sticky-wrap .doc-block .data-list .item:nth-of-type(2n) {
  margin-left: 8.523%;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .data-list .item {
    width: 100%;
  }

  .sticky-wrap .doc-block .data-list .item:nth-of-type(2n) {
    margin-left: 0;
  }

  .sticky-wrap .doc-block .data-list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}

.sticky-wrap .doc-block .environment-group {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-right: 4.763%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .environment-group {
    max-width: 550px;
    display: block;
    padding-right: 0;
    margin: 50px auto 0;
  }
}

.sticky-wrap .doc-block .environment-group .item {
  width: calc((100% - 32px) / 2);
  overflow: clip;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .environment-group .item {
    width: 100%;
  }

  .sticky-wrap .doc-block .environment-group .item:not(:first-of-type) {
    margin-top: 42px;
  }
}

.sticky-wrap .doc-block .environment-group .slider-area {
  position: relative;
}

.sticky-wrap .doc-block .environment-group .theme {
  font-family: var(--font-shipp);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.sticky-wrap .doc-block .environment-group .explanation {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(1.1rem, calc(16/1280*100vw), 1.6rem);
  letter-spacing: 0.08em;
  background-color: #fff;
  padding: 2px 10px 3px;
}

@media screen and (max-width: 768px) {
  .sticky-wrap .doc-block .environment-group .explanation {
    font-size: 1.6rem;
  }
}

.sticky-wrap .doc-block .environment-group .text {
  margin-top: 40px;
}

.sticky-wrap .doc-block .environment-group .pagination {
  position: absolute;
  translate: 0 100%;
  bottom: -5px;
  left: 0;
  text-align: center;
}

.sticky-wrap .doc-block .environment-group .swiper-pagination-bullet {
  background-color: #6D6D6F;
  opacity: 1;
}

.sticky-wrap .doc-block .environment-group .swiper-pagination-bullet-active {
  background-color: var(--color-orange);
}

.sticky-wrap .doc-block .environment-group .arrow-prev {
  cursor: pointer;
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  display: block;
  width: 48px;
  height: 48px;
  background: url(../img/environment/base/angle.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.sticky-wrap .doc-block .environment-group .arrow-next {
  cursor: pointer;
  position: absolute;
  translate: 0 -50%;
  rotate: 180deg;
  top: 50%;
  right: 0;
  display: block;
  width: 48px;
  height: 48px;
  background: url(../img/environment/base/angle.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

/* ↑↑↑ base ↑↑↑ */

.search .container {
  padding-top: 80px;
}

.-scaleUp {
  translate: 0 50px;
  scale: 0.8;
  transform: translateZ(0);
  filter: blur(5px) brightness(1.7);
  opacity: 0;
}