@charset "UTF-8";
/* mixin
================================================================== */
/* base
================================================================== */
:root {
  --black: #0d0d0d;
  --white: #fff;
  --gray: #d9d9d9;
  --l-gray: #f2f2f2;
  --d-gray: #5f5f5f;
  --blue: #3200ff;
  --red: #ff1a1a;
  --header-h: 9rem;
  --br-max: 10rem;
  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-50: 5rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
  --fs-36: 3.6rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --fs-14: 1.4rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --mg-80: 6rem;
    --mg-60: 4rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.5rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
    --fs-14: 1.3rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-just {
  text-align: justify;
}

.text-tate {
  writing-mode: vertical-rl;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 429px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 15rem 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 1024px) {
  .inner {
    padding: 12rem 6%;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 8rem 6%;
  }
}

/* flex utilities */
.flex {
  display: flex;
  align-items: flex-start;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-x-center {
  display: flex;
  justify-content: center;
}

.flex-y-center {
  display: flex;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-between {
  justify-content: space-between;
}

/* animation
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
}
.sec-ttl-jp {
  position: relative;
  display: inline-block;
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-left: 0.8em;
}
.sec-ttl-jp::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  aspect-ratio: 1;
  background: var(--blue);
}
.sec-ttl-en {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 8.8rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .sec-ttl-en {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .sec-ttl-en {
    font-size: 4.4rem;
  }
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.2;
  padding: 1.3em 1em 1.2em;
  width: 100%;
  background-color: var(--red);
  color: var(--white);
}
.btn::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1em;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: currentColor;
  transform: translateY(-50%) rotate(0);
}
.btn:hover {
  opacity: 1;
  background: var(--white);
  color: var(--black);
}
.btn:hover:after {
  right: 1em;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.noisy-box {
  position: relative;
  overflow: hidden;
}
.noisy-box::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: url(#noiseFilter);
  opacity: 0.3;
  z-index: 1;
}
.noisy-box * {
  position: relative;
  z-index: 2;
}

.textup-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}
.textup-wrap.is-inview {
  opacity: 1;
}
.textup-wrap.is-inview .textup-inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.textup-inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: var(--header-h);
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  .header {
    align-items: center;
    padding: 1rem 1.5rem;
  }
}
.header-logo {
  display: inline-block;
  height: 6rem;
  margin-top: 3rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .header-logo {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .header-logo {
    height: 4rem;
  }
}
.header-menu {
  flex-grow: 1;
  justify-content: flex-end;
  gap: 2rem;
  padding-right: 8rem;
}
@media (max-width: 1024px) {
  .header-menu {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .header-menu {
    display: none;
  }
}
.header-menu .btn {
  width: 18rem;
  font-size: var(--fs-18);
  padding: 1em 0 0.8em;
  border: 1px solid var(--red);
}
@media (max-width: 1024px) {
  .header-menu .btn {
    width: 16rem;
  }
}
.header-menu .btn::after {
  display: none;
}
.header-menu .btn:last-of-type {
  background: var(--black);
  border: 1px solid var(--white);
}
.header-menu .btn:last-of-type:hover {
  background: var(--white);
}
.header-nav-btn {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.header-nav-btn .btn {
  height: calc(var(--header-h) * 0.7);
  display: grid;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 18rem !important;
  padding: 0 1em 0 1.5em;
  border-radius: var(--br-max) 0 0 var(--br-max);
  font-size: var(--fs-15) !important;
}
@media (max-width: 1280px) {
  .header-nav-btn .btn {
    min-width: unset !important;
  }
}
.header-nav-btn .btn::after {
  display: none !important;
}
@media (max-width: 1024px) {
  .header-nav-btn {
    display: none;
  }
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-menu {
  position: fixed;
  top: 1.6rem;
  right: 0;
  width: var(--header-h);
  height: var(--header-h);
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 9999;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    top: 0;
  }
}

.bar {
  position: absolute;
  width: 60%;
  height: 2px;
  left: 45%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s ease;
}
.bar--top {
  top: 32%;
}
.bar--middle {
  top: 48%;
}
.bar--bottom {
  top: 64%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner
---------------------------------------------------------------- */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--gray);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav .header-menu-list {
  margin-bottom: 2rem;
}
.burger-nav .header-menu-list li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.6em 1em 1.5em;
  border-bottom: 1px solid var(--d-gray);
  color: var(--accent);
  font-size: 1.7rem;
  font-weight: 600;
}
.burger-nav .header-menu-list li a::before {
  content: "";
  display: block;
  position: absolute;
  transition: right 0.3s ease;
  top: 50%;
  right: 1.5em;
  width: 1em;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: currentColor;
  transform: translateY(-50%) rotate(0);
}
.burger-nav .header-menu-list li a:hover {
  opacity: 1;
  background-color: var(--white);
}
.burger-nav .header-menu-list li a:hover::before {
  right: 1em;
}
.burger-nav .header-menu-btn .btn {
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  font-size: 1.6rem !important;
  border: 2px solid var(--red);
}
.burger-nav .header-menu-btn .btn::after {
  display: none;
}
.burger-nav .header-menu-btn .btn:last-of-type {
  background: var(--black);
  border: 2px solid var(--black);
}
.burger-nav .header-menu-btn .btn:last-of-type:hover {
  background: var(--white);
}
.burger-nav.js-active {
  right: 0;
}

.burger-mask {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* mv
---------------------------------------------------------------- */
.mv {
  overflow: visible;
}
.mv-about {
  position: relative;
  z-index: 1;
  background: var(--black);
}
.mv-inn {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  width: 160rem;
  height: 100vh;
  min-height: 80rem;
  max-height: 90rem;
}
@media (max-width: 1024px) {
  .mv-inn {
    margin-top: calc(var(--header-h) + 3rem);
    height: auto;
    max-height: unset;
    min-height: unset;
  }
}
.mv-copy {
  display: block;
  position: absolute;
  z-index: 10;
  top: calc(var(--header-h) + 5rem);
  right: 3.75%;
  width: 60%;
  font-size: 12.5rem;
}
@media (max-width: 1600px) {
  .mv-copy {
    width: auto;
    max-width: 65%;
    font-size: 8vw;
  }
}
@media (max-width: 1280px) {
  .mv-copy {
    font-size: 11rem;
  }
}
@media (max-width: 1024px) {
  .mv-copy {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    max-width: unset;
    padding: 0 4%;
    font-size: 11.8vw;
  }
}
.mv-copy-en {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.mv-copy-en span {
  display: block;
  margin-top: -0.05em;
}
.mv-copy-en-01-02 {
  text-align: right;
  padding-right: 0.5em;
}
.mv-copy-en-02 {
  font-size: 0.94em;
  text-align: left;
  margin-top: 0.1em;
}
.mv-copy-en-02-02 {
  padding-left: 0.6em;
}
@media (max-width: 1280px) {
  .mv-copy-en-02-02 {
    text-align: right;
  }
}
.mv-copy-en-02-02 br {
  display: none;
}
@media (max-width: 1280px) {
  .mv-copy-en-02-02 br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .mv-copy-en-02-02 br {
    display: none;
  }
}
.mv-copy-jp {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  text-align: right;
  margin-top: 1em;
}
@media (max-width: 1024px) {
  .mv-copy-jp {
    font-size: max(3vw, 1.4rem);
    margin-top: 0.5em;
  }
}
.mv-img {
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  width: 70rem;
}
@media (max-width: 1024px) {
  .mv-img {
    position: static;
    width: 94%;
    margin-right: auto;
    margin-top: -12.5%;
  }
}
.mv-deco {
  display: block;
  position: absolute;
  top: 33.125%;
  right: 0;
  width: 50%;
  opacity: 0.2;
}
@media (max-width: 1024px) {
  .mv-deco {
    top: 10%;
    width: 82%;
  }
}

/* main
================================================================== */
/* about
---------------------------------------------------------------- */
.about {
  position: relative;
  color: var(--white);
}
.about .inner {
  padding-top: 0;
}
@media (max-width: 1280px) {
  .about .inner {
    padding-top: 10rem;
  }
}
.about .sec-ttl-jp {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  margin-bottom: var(--mg-40);
}
.about-wrap {
  gap: 8rem;
}
@media (max-width: 1024px) {
  .about-wrap {
    gap: 4rem 6rem;
  }
}
@media (max-width: 767px) {
  .about-wrap {
    flex-direction: column;
  }
}
.about-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .about-content {
    width: 100%;
  }
}
.about-01 {
  width: min(115rem, 100%);
  margin-left: auto;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 5rem;
}
@media (max-width: 1600px) {
  .about-01 {
    padding: 0;
  }
}
.about-01-img {
  flex-basis: min(50rem, 40%);
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .about-01-img {
    padding-bottom: 0;
    width: min(48rem, 80%);
  }
}
.about-02 {
  width: min(115rem, 100%);
  margin-right: auto;
  justify-content: space-between;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .about-02 {
    margin-top: 4rem;
  }
  .about-02 .about-text br {
    display: none;
  }
}
.about-02-img {
  padding-top: 10rem;
  flex-basis: min(55rem, 50%);
}
@media (max-width: 1024px) {
  .about-02-img {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .about-02-img {
    padding-top: 0;
  }
}
.about-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
}
@media (max-width: 1024px) {
  .about-text {
    width: 100%;
    flex-basis: 60%;
  }
}
.about-text p + p {
  margin-top: 1em;
}

.block-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 26rem;
  opacity: 0.1;
  background-image: url("../img/about/bg.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 80rem;
}
@media (max-width: 1024px) {
  .block-bg {
    background-size: 60rem;
  }
}
@media (max-width: 767px) {
  .block-bg {
    background-size: 40rem;
  }
}

/* job
---------------------------------------------------------------- */
.job {
  background: var(--gray);
  overflow: visible;
  z-index: 0;
}
.job-wrap {
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .job-wrap {
    flex-direction: column;
  }
}
.job-left {
  position: -webkit-sticky;
  position: sticky;
  top: 13rem;
}
@media (max-width: 767px) {
  .job-left {
    position: static;
  }
}
.job-nav-item a {
  position: relative;
  color: var(--white);
  font-size: var(--fs-22);
  font-weight: 600;
  line-height: 1;
  padding-left: 3.5rem;
}
@media (max-width: 1024px) {
  .job-nav-item a {
    font-size: 2rem;
  }
}
@media (max-width: 428px) {
  .job-nav-item a {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}
.job-nav-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: currentColor;
}
@media (max-width: 767px) {
  .job-nav-item a::before {
    width: 16px;
    height: 2px;
  }
}
.job-nav-item span {
  display: inline-block;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
  font-weight: 400;
  margin-right: 0.5em;
  min-width: 4.5rem;
}
@media (max-width: 767px) {
  .job-nav-item span {
    min-width: 4rem;
    margin-right: 0.3em;
  }
}
.job-nav-item + .job-nav-item {
  margin-top: 1.3em;
}
@media (max-width: 767px) {
  .job-nav-item + .job-nav-item {
    margin-top: 0.8em;
  }
}
.job-nav-item.js-active a, .job-nav-item:hover a {
  opacity: 1;
  color: var(--main);
}
.job-right {
  width: min(650px, 100%);
}
.job-item + .job-item {
  margin-top: var(--mg-80);
}
@media (max-width: 1024px) {
  .job-item + .job-item {
    margin-top: var(--mg-60);
  }
}
.job-ttl {
  font-size: 4.2rem;
  font-weight: 500;
  align-items: flex-start;
  gap: 0.5em;
  margin: 3rem 0 1rem;
}
@media (max-width: 1024px) {
  .job-ttl {
    font-size: var(--fs-36);
  }
}
@media (max-width: 767px) {
  .job-ttl {
    margin-top: 2rem;
  }
}
.job-num {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1;
  color: var(--white);
  padding-top: 0.15em;
}
.job-text {
  font-weight: 500;
  text-align: justify;
}
.job-int-btn {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1.5px solid var(--black);
  border-right: none;
  border-left: none;
  padding: 20px 30px;
  margin-top: 4rem;
  font-size: var(--fs-18);
  font-weight: 500;
}
@media (max-width: 767px) {
  .job-int-btn {
    padding: 20px 10px;
    gap: 20px;
    margin-top: 2rem;
  }
}
.job-int-btn:before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
}
.job-int-btn-arrow {
  transition: 0.3s ease;
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 1.5em;
  width: 4rem;
  transform: translateY(-50%);
  aspect-ratio: 1;
  background: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.job-int-btn-arrow::before {
  content: "";
  display: block;
  position: absolute;
  transition: 0.3s ease;
  top: 50%;
  right: 50%;
  width: 40%;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--black);
  transform: translate(50%, -50%) rotate(0);
}
.job-int-btn:hover {
  opacity: 1;
}
.job-int-btn:hover::before {
  -webkit-animation-name: box-slide-right;
          animation-name: box-slide-right;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
.job-int-btn:hover .job-int-btn-arrow {
  background: var(--black);
}
.job-int-btn:hover .job-int-btn-arrow::before {
  background: var(--white);
}
.job-int-btn-img {
  width: 90px;
}
@media (max-width: 767px) {
  .job-int-btn-img {
    width: 80px;
  }
}
.job-int-btn-text {
  padding-right: 30px;
}
.job-int-btn-ttl {
  font-size: var(--fs-20);
  font-weight: 700;
  margin-bottom: 0.2em;
}
@media (max-width: 767px) {
  .job-int-btn-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.job-int-btn-label {
  font-size: var(--fs-15);
  color: var(--main);
  font-weight: 700;
}

@-webkit-keyframes box-slide-right {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes box-slide-right {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* interview
---------------------------------------------------------------- */
.int {
  position: relative;
  z-index: 0;
  color: var(--white);
  overflow: hidden;
}
.int-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110%;
}
.int-bg .simpleParallax {
  height: 100%;
  overflow: visible;
}
.int-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.int .sec-ttl {
  margin-bottom: var(--mg-30);
}
.int .sec-ttl-jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.int-top-text {
  font-size: var(--fs-18);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--mg-60);
}
.int-card {
  position: relative;
  z-index: 0;
  height: auto;
}
@media (max-width: 767px) {
  .int-card {
    height: 100%;
  }
}
.int-card::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: -14px;
  left: 20px;
  width: 58px;
  aspect-ratio: 58/48;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("../img/int/icon.svg");
          mask-image: url("../img/int/icon.svg");
  background: var(--gray);
}
@media (max-width: 767px) {
  .int-card::after {
    top: -1rem;
    width: 4.5rem;
  }
}
.int-card-inn {
  background: var(--l-gray);
  padding: 6rem 3rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  color: var(--black);
}
@media (max-width: 767px) {
  .int-card-inn {
    padding: 5rem 2rem 2rem;
  }
}
.int-card-text {
  font-weight: 500;
  text-align: justify;
}
@media (max-width: 767px) {
  .int-card-text {
    font-size: 1.4rem;
  }
}
.int-card-label {
  font-weight: 600;
  font-size: var(--fs-16);
  text-align: right;
}
@media (max-width: 767px) {
  .int-card-label {
    font-size: 1.4rem;
  }
}
.int-card-02::after {
  background: var(--white);
}
.int-card-02-inn {
  background: var(--gray);
}

/* slider */
.swiper-int-wrap {
  position: relative;
}
.swiper-int-wrap .swiper-int {
  overflow: unset;
}
.swiper-int-wrap .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper-int-wrap .slide-pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-pagination {
  /* デフォルトのabsoluteからstaticへ変更 */
  position: static !important;
  /* bulletsの中にあるbulletの位置を縦中央揃え */
  /* pagenation-bulletの数によって、bulletを包むbulletsの幅が伸縮するようにする */
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-pagination-bullets {
  display: flex;
  align-items: center;
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 3rem;
  height: 3px;
  border-radius: unset;
  margin: 0 5px !important;
  background-color: var(--white);
  opacity: 1;
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--blue);
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-pagination.swiper-horizontal > .swiper-int-wrap .slide-pagination-wrapper .swiper-pagination-bullets, .swiper-int-wrap .slide-pagination-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-int-wrap .slide-pagination-wrapper .swiper-pagination-custom, .swiper-int-wrap .slide-pagination-wrapper .swiper-pagination-fraction {
  width: auto !important;
}
.swiper-int-wrap .slide-pagination-wrapper .swiper-button-next,
.swiper-int-wrap .slide-pagination-wrapper .swiper-button-prev {
  display: none;
}

/* data
---------------------------------------------------------------- */
.data {
  position: relative;
  overflow: hidden;
}
.data-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .data-wrap {
    gap: 1.5rem;
  }
}
.data-item {
  background: var(--black);
  text-align: center;
  padding: 3rem;
  color: var(--white);
}
@media (max-width: 767px) {
  .data-item {
    padding: 2rem;
  }
}
.data-ttl {
  font-size: var(--fs-22);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media (max-width: 428px) {
  .data-ttl {
    font-size: 1.5rem;
  }
}
.data-img {
  max-width: 100%;
  margin-inline: auto;
  width: 20rem;
}
@media (max-width: 767px) {
  .data-img {
    width: auto;
  }
}
.data-text {
  font-size: var(--fs-14);
  margin-top: 1em;
}
.data-deco {
  display: block;
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 0;
  width: 80rem;
  opacity: 0.8;
}
@media (max-width: 1600px) {
  .data-deco {
    right: unset;
    left: 55%;
  }
}
@media (max-width: 767px) {
  .data-deco {
    top: 11%;
    width: 50rem;
  }
}
.data-bg {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: min(50% + 60rem, 96%);
  height: 60%;
  background: var(--l-gray);
}
@media (max-width: 767px) {
  .data-bg {
    width: 100%;
  }
}

.bnr {
  display: block;
  margin-top: var(--mg-80);
  margin-inline: auto;
  width: min(80rem, 100%);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bnr {
    margin-top: 4rem;
  }
}
.bnr-img {
  transition: 0.3s ease;
  position: relative;
}
.bnr-img::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}
.bnr-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.bnr:hover {
  opacity: 1;
}
.bnr:hover .bnr-img {
  transform: scale(1.07);
}
.bnr:hover .bnr-img::after {
  background: rgba(0, 0, 0, 0.4);
}

/* modal common */
.remodal-close-top {
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .remodal-close-top {
    top: 4px;
    right: 4px;
  }
}
.remodal-close-top:hover {
  opacity: 0.6;
}
.remodal-close-btm {
  width: 100%;
}
.remodal-close-btm .btn {
  transition: 0.3s ease;
  width: 280px;
  margin-top: var(--mg-60);
  background: var(--l-gray);
  color: var(--black);
}
@media (max-width: 767px) {
  .remodal-close-btm .btn {
    width: 100%;
  }
}
.remodal-close-btm .btn:hover {
  background: var(--d-gray);
  color: var(--white);
}

.modal-content {
  position: relative;
}
.modal-top {
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-top {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.modal-top-deco {
  background: var(--white);
  color: var(--black);
  padding: 0 0.4em;
  margin: 0 0.2em;
}
.modal-inn {
  padding: 6rem 4rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .modal-inn {
    padding: var(--mg-60) 4%;
  }
}
.modal-inn .flow-item {
  grid-row: span 4;
}
.modal-inn .flow-wrap {
  gap: 3rem;
  margin-bottom: var(--mg-30);
}
.modal-inn .flow-ttl-jp {
  margin-bottom: 2rem;
}
.modal-box {
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--white);
}
@media (max-width: 767px) {
  .modal-box {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 1.5rem 2rem;
  }
}

/* flow
---------------------------------------------------------------- */
.flow {
  position: relative;
  z-index: 0;
  background: var(--black);
  color: var(--white);
}
.flow .sec-ttl-jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.flow-bg {
  width: 100%;
  aspect-ratio: 1600/600;
  max-height: 60rem;
}
@media (max-width: 1024px) {
  .flow-bg {
    aspect-ratio: unset;
  }
}
.flow-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .flow-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .flow-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .flow-wrap {
    gap: 4rem 3rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .flow-wrap {
    margin-bottom: 4rem;
  }
}
.flow-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
}
.flow-item:first-of-type .btn:hover {
  background: var(--red);
  color: var(--white);
}
.flow-item:last-of-type .btn {
  display: flex;
  background: #00b900;
  padding: 0;
}
@media (max-width: 767px) {
  .flow-item:last-of-type .btn {
    padding: 0.6em 0;
  }
}
.flow-item:last-of-type .btn img {
  width: 16rem;
}
@media (max-width: 767px) {
  .flow-item:last-of-type .btn img {
    width: 14rem;
  }
}
.flow-item:last-of-type .btn:hover {
  color: var(--white);
}
.flow-ttl-en {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fs-22);
  line-height: 1.3;
  text-align: center;
  background: var(--white);
  color: var(--black);
  padding: 0.3em;
}
.flow-ttl-jp {
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  margin: 2rem 0 1.5rem;
}
.flow-text {
  text-align: justify;
  margin-bottom: var(--mg-30);
}
.flow-text a {
  text-decoration: underline;
}
.flow-box {
  padding: 2rem 3rem;
  margin-bottom: var(--mg-30);
  background: var(--d-gray);
}
@media (max-width: 1024px) {
  .flow-box {
    padding: 2rem;
  }
}
.flow-box-ttl {
  font-weight: 500;
}
.flow-box p + p {
  margin-top: 0.5em;
}
.flow03-ttl {
  border-top: 1px solid currentColor;
  margin-top: var(--mg-40);
  padding: 2rem 0;
  font-size: var(--fs-24);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .flow03-ttl {
    padding: 1.5rem 0;
  }
}
.flow03-box {
  padding: 3rem;
}
.flow03-box-ttl {
  font-weight: 500;
}
.flow03-box-ttl:not(:first-of-type) {
  margin-top: 1em;
}
.flow03-step-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 5rem;
}
@media (max-width: 1024px) {
  .flow03-step-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .flow03-step-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.flow03-step-item {
  position: relative;
  text-align: center;
}
.flow03-step-item:not(:last-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -3.5rem;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 2rem;
  aspect-ratio: 2/3;
  background: var(--white);
}
@media (max-width: 767px) {
  .flow03-step-item:not(:last-of-type)::before {
    top: unset;
    bottom: -3.5rem;
    right: 50%;
    width: 3rem;
    aspect-ratio: 3/2;
    transform: translate(50%, 0);
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}
.flow03-step-num {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  width: 4.5rem;
  aspect-ratio: 1;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
  line-height: 4.5rem;
  text-align: center;
  color: var(--d-gray);
}
@media (max-width: 1024px) {
  .flow03-step-num {
    width: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.8rem;
  }
}
.flow03-step-icon {
  width: 8rem;
  margin-inline: auto;
}
.flow03-step-ttl {
  font-size: var(--fs-18);
  font-weight: 500;
  margin: 1.5rem 0 0.8rem;
}
.flow03-step-text {
  text-align: justify;
  font-size: var(--fs-14);
}
.flow03 .flow-text {
  margin-bottom: 1em;
}

/* footer
================================================================== */
/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  background: var(--black);
  color: var(--white);
}
@media (max-width: 428px) {
  .footer {
    font-size: 1.4rem;
  }
}
.footer .inner {
  padding: 30px 3%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: var(--white);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.footer .copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer .copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */