@charset "UTF-8";
/* CSS Document */
.spmask {
  display: inline-block;
}

.spmask-inline {
  display: inline;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .spmask-inline {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
/*------------------------------*/
.section-hd {
  display: flex;
  align-items: center;
}
.section-hd p {
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .section-hd p {
    font-size: 1.8rem;
  }
}
.section-hd p::after {
  content: "｜";
  display: inline-block;
  margin-left: 0.1em;
}
.section-hd h2 {
  font-size: 1.8rem;
  font-family: 400;
}
@media screen and (max-width: 767px) {
  .section-hd h2 {
    font-size: 1.4rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.header-inner {
  transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1) 1.4s;
  opacity: 0;
}
.header-inner.headerIn {
  opacity: 1;
}

/*------------------------------*/
/*------------------------------*/
.top-mv {
  position: relative;
  width: 100%;
  height: 100lvh;
  overflow: hidden;
  background: #000 url("../images/top/top_mv_bg.jpg") center center/cover no-repeat;
  /* === Screen “flash” overlay === */
  /* フォールバック（screen未対応時） */
}
@media screen and (max-width: 767px) {
  .top-mv {
    height: 100svh;
  }
}
.top-mv .copy {
  position: absolute;
  z-index: 10;
  bottom: 7rem;
  left: 5rem;
  width: 80rem;
  filter: drop-shadow(0 0 0.6rem rgba(130, 136, 136, 0.5019607843));
}
@media screen and (max-width: 767px) {
  .top-mv .copy {
    width: calc(100% - 4rem);
    left: 2rem;
    bottom: 2rem;
  }
}
.top-mv .copy > div {
  overflow: clip;
}
.top-mv .copy > div img {
  transition: translate 2s cubic-bezier(0.2, 1, 0.32, 1);
  translate: 0 0;
}
.top-mv .copy > div:nth-child(1) {
  width: 88.5997521685%;
  margin-bottom: 1.75vw;
}
@media screen and (max-width: 767px) {
  .top-mv .copy > div:nth-child(1) {
    margin-bottom: 3vw;
  }
}
.top-mv .copy > div:nth-child(1) img {
  transition-delay: 0.8s;
}
.top-mv .copy > div:nth-child(2) img {
  transition-delay: 1.1s;
}
.top-mv .copy.openingWait > div img {
  translate: 0 100%;
}
.top-mv #c {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  inset: 0;
  display: block;
  pointer-events: none;
}
.top-mv .flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  /* JSで制御 */
  mix-blend-mode: overlay;
  /* 明るさを上げる */
  transition: none;
  /* 時間制御はJS（dt）で滑らかに */
  z-index: 9;
  /* canvas/hudより上に */
}
@supports not (mix-blend-mode: overlay) {
  .top-mv {
    /* やや白っぽくなるが許容 */
  }
  .top-mv .flash {
    mix-blend-mode: normal;
  }
}

/*------------------------------*/
/*------------------------------*/
.top-message {
  padding-block: 20lvh 30lvh;
}
.top-message .messageWrap p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.75;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  display: grid;
  place-content: center;
}
.top-message .messageWrap p + p {
  margin-top: 1.5lh;
}
@media screen and (max-width: 767px) {
  .top-message .messageWrap p + p {
    margin-top: 1lh;
  }
}
@media screen and (max-width: 767px) {
  .top-message .messageWrap p {
    font-size: 1.4rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.top-about .message {
  display: block;
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top-about .message {
    margin-top: 3rem;
  }
}
.top-about .message .title {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .top-about .message .title {
    top: 1rem;
    left: 1rem;
  }
}
.top-about .message .title p.en {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .top-about .message .title p.en {
    font-size: 3.2rem;
  }
}
.top-about .message .title p.ja {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .top-about .message .title p.ja {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}
.top-about .message .copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: 1.2rem;
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .top-about .message .copy {
    left: 1rem;
    bottom: 1rem;
    row-gap: 0.3rem;
  }
}
.top-about .message .copy span {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  font-size: 3rem;
  font-weight: 500;
  background-color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-about .message .copy span {
    padding: 0.3rem 0.3rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top-about .message .image {
    position: relative;
    aspect-ratio: 3/2;
  }
  .top-about .message .image img {
    position: absolute;
    inset: 0;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
.top-about .message .arrow {
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background-color: #fff;
  border-radius: 100vmax;
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top-about .message .arrow {
    right: 1rem;
    bottom: 1rem;
    width: 2.8rem;
  }
}
.top-about .message .arrow .hoverArrow {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top-about .message .arrow .hoverArrow {
    font-size: 1.6rem;
  }
}
.top-about .about-wrap {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap {
    flex-direction: column;
    row-gap: 1.5rem;
    margin-top: 3rem;
  }
}
.top-about .about-wrap a {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 100vmax;
  padding: 1rem;
  height: 11.6rem;
  width: 100%;
  background-color: var(--main);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a {
    height: 7rem;
    padding: 0.5rem;
  }
}
.top-about .about-wrap a.hoverImage img {
  transition: 0.4s ease;
}
.top-about .about-wrap a .icon {
  display: grid;
  place-content: center;
  border-radius: 100vmax;
  background-color: #fff;
  flex-shrink: 0;
  width: 9.6rem;
  aspect-ratio: 1;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .icon {
    width: 6rem;
    margin-right: 0.5rem;
  }
}
.top-about .about-wrap a .icon.data img {
  width: 5.4rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .icon.data img {
    width: 3.4rem;
  }
}
.top-about .about-wrap a .icon.keyword {
  padding-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .icon.keyword {
    padding-right: 0.5rem;
  }
}
.top-about .about-wrap a .icon.keyword img {
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .icon.keyword img {
    width: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .title {
    padding-bottom: 0.5rem;
  }
}
.top-about .about-wrap a .title p.en {
  font-size: 1.6rem;
  border-radius: 100vmax;
  border: 0.1rem solid #fff;
  padding: 0.3rem 1rem 0.4rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .title p.en {
    font-size: 1.2rem;
    padding: 0.2rem 0.8rem;
  }
}
.top-about .about-wrap a .title p.ja {
  margin-top: 0.4em;
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .title p.ja {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}
.top-about .about-wrap a .hoverArrow {
  position: absolute;
  right: 3rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-about .about-wrap a .hoverArrow {
    font-size: 1.6rem;
    right: 1.5rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.top-work {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-work {
    margin-top: 6rem;
  }
}
.top-work .work {
  margin-top: 5rem;
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-work .work {
    flex-direction: column;
    margin-top: 3rem;
  }
}
.top-work .work .text-wrap {
  width: 35rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap {
    width: 100%;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap .title {
    margin-top: 2rem;
  }
}
.top-work .work .text-wrap .title p.en {
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap .title p.en {
    font-size: 5rem;
  }
}
.top-work .work .text-wrap .title p.ja {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap .title p.ja {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.top-work .work .text-wrap p.readText {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap p.readText {
    margin-top: 2rem;
  }
}
.top-work .work .text-wrap .arrow-wrap {
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-top: auto;
  margin-bottom: 0;
}
.top-work .work .text-wrap .arrow-wrap p {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap .arrow-wrap p {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
.top-work .work .text-wrap .arrow-wrap .arrow {
  border-radius: 100vmax;
  border: 0.1rem solid currentColor;
  width: 3.6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .top-work .work .text-wrap .arrow-wrap .arrow {
    width: 2.8rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.top-interview {
  margin-top: 16rem;
  padding-block: 20rem 24rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-interview {
    margin-top: 4rem;
    padding-block: 6rem 8rem;
  }
}
.top-interview.is-shown .bg {
  scale: 1;
}
.top-interview .bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #e5eef5;
  -webkit-clip-path: ellipse(120% 50% at 50% 50%);
          clip-path: ellipse(120% 50% at 50% 50%);
  scale: 1 0;
  transition: 1300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: scale;
  will-change: scale clip-path;
}
@media screen and (max-width: 767px) {
  .top-interview .bg {
    -webkit-clip-path: ellipse(200% 50% at 50% 50%);
            clip-path: ellipse(200% 50% at 50% 50%);
  }
}
.top-interview .interview-obj {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.top-interview .interview-obj .obj-part {
  position: absolute;
  inset: 0;
}
.top-interview .interview-obj .obj-part.part1 {
  -webkit-animation: interview-obj-part 12s 0s infinite;
          animation: interview-obj-part 12s 0s infinite;
}
.top-interview .interview-obj .obj-part.part2 {
  -webkit-animation: interview-obj-part 12s -6s infinite;
          animation: interview-obj-part 12s -6s infinite;
}
.top-interview .interview-obj .obj-part img {
  position: absolute;
  width: calc(var(--ow) / 16 * 1vw);
  left: calc(var(--ol) / 16 * 1vw);
  top: calc(var(--ot) * 1%);
  -webkit-animation: flare-soft 6s ease var(--flare-delay) infinite both;
          animation: flare-soft 6s ease var(--flare-delay) infinite both;
  will-change: opacity;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-obj .obj-part img {
    width: calc(var(--ow) / 8 * 1vw);
    left: calc(var(--ol) / 16 * 1vw);
  }
}
.top-interview .interview-hd {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-interview .interview-hd p.en {
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.8;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-hd p.en {
    font-size: 5rem;
  }
}
.top-interview .interview-hd p.ja {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-hd p.ja {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.top-interview .interview-wrap {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 8rem 6rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap {
    gap: 3rem 1rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
  }
}
.top-interview .interview-wrap a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.top-interview .interview-wrap a .image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .image {
    aspect-ratio: 5/3;
  }
  .top-interview .interview-wrap a .image img {
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 35%;
       object-position: 50% 35%;
    inset: 0;
  }
}
.top-interview .interview-wrap a .image .dept {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  padding: 1.2rem 1.2rem 1.1rem;
  display: inline-block;
  background-color: var(--main);
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .image .dept {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
.top-interview .interview-wrap a .title-wrap {
  padding: 2.5rem 2rem 3rem;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap {
    padding: 1.5rem;
  }
}
.top-interview .interview-wrap a .title-wrap .copy {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap .copy {
    font-size: 1.6rem;
  }
}
.top-interview .interview-wrap a .title-wrap .profile {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.top-interview .interview-wrap a .title-wrap .profile p.name {
  font-weight: 600;
  color: var(--main);
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap .profile p.name {
    font-size: 1.2rem;
  }
}
.top-interview .interview-wrap a .title-wrap .profile p.join {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap .profile p.join {
    font-size: 1rem;
  }
}
.top-interview .interview-wrap a .title-wrap .arrow {
  border-radius: 100vmax;
  border: 0.1rem solid currentColor;
  width: 5rem;
  aspect-ratio: 1;
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap .arrow {
    width: 2.8rem;
    right: 1rem;
    bottom: 1.5rem;
  }
}
.top-interview .interview-wrap a .title-wrap .arrow .hoverArrow {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-interview .interview-wrap a .title-wrap .arrow .hoverArrow {
    font-size: 1.6rem;
  }
}
.top-interview .arrow-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3.5rem;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .top-interview .arrow-wrap {
    margin-top: 2rem;
  }
}
.top-interview .arrow-wrap p {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-interview .arrow-wrap p {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
.top-interview .arrow-wrap .arrow {
  border-radius: 100vmax;
  border: 0.1rem solid currentColor;
  width: 3.6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .top-interview .arrow-wrap .arrow {
    width: 2.8rem;
  }
}

@-webkit-keyframes interview-obj-part {
  0% {
    opacity: 0;
  }
  4%, 50% {
    opacity: 1;
  }
  52%, 100% {
    opacity: 0;
  }
}

@keyframes interview-obj-part {
  0% {
    opacity: 0;
  }
  4%, 50% {
    opacity: 1;
  }
  52%, 100% {
    opacity: 0;
  }
}
/*------------------------------*/
/*------------------------------*/
.top-crosstalk {
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk {
    margin-top: 4rem;
  }
}
.top-crosstalk .crosstalk-hd {
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-crosstalk .crosstalk-hd p.en {
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.8;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk-hd p.en {
    font-size: 5rem;
  }
}
.top-crosstalk .crosstalk-hd p.ja {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk-hd p.ja {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.top-crosstalk .crosstalk {
  position: relative;
  margin-top: 3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk {
    margin-top: 2rem;
  }
}
.top-crosstalk .crosstalk .image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5rem - 12rem - 3.6rem), calc(100% - 6rem - 30rem) calc(100% - 4.5rem - 12rem - 3.6rem), calc(100% - 6rem - 30rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5rem - 12rem - 3.6rem), calc(100% - 6rem - 30rem) calc(100% - 4.5rem - 12rem - 3.6rem), calc(100% - 6rem - 30rem) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .image {
    aspect-ratio: 450/240;
    position: relative;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .top-crosstalk .crosstalk .image img {
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 45% 50%;
       object-position: 45% 50%;
    inset: 0;
  }
}
.top-crosstalk .crosstalk .title-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2.5rem 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .title-wrap {
    padding-block: 1.5rem;
    padding-inline: 0;
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.top-crosstalk .crosstalk .title-wrap .copy {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 0.1rem solid #d9d9d9;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .title-wrap .copy {
    font-size: 1.6rem;
    border-bottom: none;
    border-right: 0.1rem solid #d9d9d9;
    padding-bottom: 0;
    width: 100%;
  }
}
.top-crosstalk .crosstalk .title-wrap .arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .title-wrap .arrow-wrap {
    margin-top: 0;
    flex-shrink: 0;
    margin-left: 2rem;
  }
}
.top-crosstalk .crosstalk .title-wrap .arrow-wrap p {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .title-wrap .arrow-wrap p {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
.top-crosstalk .crosstalk .title-wrap .arrow-wrap .arrow {
  border-radius: 100vmax;
  border: 0.1rem solid currentColor;
  width: 3.6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .top-crosstalk .crosstalk .title-wrap .arrow-wrap .arrow {
    width: 2.8rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.top-environment {
  margin-top: 16rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .top-environment {
    margin-top: 8rem;
    padding-bottom: 6rem;
  }
}
.top-environment .environment-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap {
    grid-template-columns: 1fr;
    margin-top: 3rem;
    row-gap: 4rem;
  }
}
.top-environment .environment-wrap a {
  position: relative;
  display: block;
  aspect-ratio: 500/310;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap a {
    aspect-ratio: 600/400;
  }
}
.top-environment .environment-wrap a .image {
  position: absolute;
  inset: 0;
}
.top-environment .environment-wrap a .image img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: right;
     object-position: right;
}
.top-environment .environment-wrap a .title {
  position: relative;
}
.top-environment .environment-wrap a .title p.en {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap a .title p.en {
    font-size: 4rem;
  }
}
.top-environment .environment-wrap a .title p.ja {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap a .title p.ja {
    font-size: 1.4rem;
  }
}
.top-environment .environment-wrap a .arrow-wrap {
  position: relative;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-environment .environment-wrap a .arrow-wrap p {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap a .arrow-wrap p {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
.top-environment .environment-wrap a .arrow-wrap .arrow {
  border-radius: 100vmax;
  border: 0.1rem solid currentColor;
  width: 3.6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .top-environment .environment-wrap a .arrow-wrap .arrow {
    width: 2.8rem;
  }
}
/*# sourceMappingURL=top.css.map */