@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #444444;
  --white: #fff;
  --main: #2eabe6;
  --l-main: #c9f4ff;
  --accent: #14cca7;
  --d-accent: #00bf99;
  --l-accent: #c8fae6;
  --header-h: 10rem;
  --br-max: 100rem;
  --br-sec: 8rem;
  --br-l: 3rem;
  --br-m: 1.6rem;
  --br-s: 1.2rem;
  --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 0 10px rgb(20 204 167 / 0.5);
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 8rem;
    --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;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.2rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.2rem;
    --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;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

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: 12rem 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-14 {
  max-width: calc(1400px + 12%);
}
.inner-np {
  padding: 0 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);
  text-align: center;
}
.sec-ttl-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  background: #2eabe6;
  background: linear-gradient(90deg, #2eabe6 0%, #14cca7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .sec-ttl-en {
    font-size: 6rem;
  }
}
.sec-ttl-jp {
  display: block;
  font-size: var(--fs-32);
  font-weight: 700;
}

.sub-ttl {
  position: relative;
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.3;
  padding-left: 1em;
  margin-bottom: var(--mg-30);
}
.sub-ttl::before {
  content: "";
  display: block;
  position: absolute;
  background: #2eabe6;
  background: linear-gradient(180deg, #2eabe6 0%, #14cca7 100%);
  top: 0.1em;
  left: 0.2em;
  width: 0.2em;
  height: 1.1em;
  transform: rotate(30deg);
}

.list-item li {
  position: relative;
  padding-left: 1em;
}
.list-item li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4em;
  aspect-ratio: 1;
  border-radius: var(--br-max);
  background: currentColor;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.2;
  color: var(--white);
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-max);
  border: 2px solid var(--main);
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.2em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.btn::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--br-max);
  background: #2eabe6;
  background: linear-gradient(90deg, rgb(46, 171, 230) 0%, rgb(82, 199, 255) 100%);
}
.btn:hover {
  opacity: 1;
  color: var(--main);
}
.btn:hover::before {
  right: 1em;
  border-color: var(--main);
}
.btn:hover::after {
  opacity: 0;
}

.gd {
  display: block;
  position: absolute;
  z-index: -1;
  width: 130rem;
}
@media (max-width: 767px) {
  .gd {
    width: 150%;
  }
}
.gd-top {
  top: 0;
  left: 0;
}
.gd-btm {
  bottom: 0;
  right: 0;
}
.gd-btm img {
  transform: scale(-1, -1);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 3rem;
}
@media (max-width: 1280px) {
  .header {
    background: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header {
    align-items: flex-end;
    padding: 0 1.5rem 0.5rem;
  }
}
.header-logo {
  display: inline-block;
  height: 5rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: 3.5rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
@media (max-width: 1280px) {
  .header-nav {
    gap: 2rem;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 0 1.5em;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list a {
  position: relative;
  padding: 0.8em 0;
}
.header-nav-list a:hover {
  opacity: 1;
  color: var(--main);
}
.header-nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header-nav-btn {
    display: none;
  }
}
.header-nav-btn .btn {
  display: grid;
  align-items: center;
  padding: 0;
  width: 15rem;
  height: calc(var(--header-h) * 0.54);
  font-size: var(--fs-16);
  text-align: center;
}
.header-nav-btn .btn::before {
  display: none;
}
@media (max-width: 767px) {
  .header-nav-btn .btn {
    width: 13rem;
  }
}
.header.change-color {
  background: var(--white);
  transition: 0.3s ease-in;
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-btn {
  display: none;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.54);
  cursor: pointer;
  background-color: var(--main);
  border-radius: var(--br-max);
}
@media (max-width: 1280px) {
  .hamburger-btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .hamburger-btn {
    width: calc(var(--header-h) * 0.7);
    height: calc(var(--header-h) * 0.7);
  }
}

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

.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(--white);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger-nav-list li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  border-bottom: 1.5px solid var(--main);
  font-size: var(--fs-16);
  font-weight: 600;
}
.burger-nav-list li a::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.burger-nav-list li a:hover {
  opacity: 1;
  color: var(--l-green);
}
.burger-nav-list li a:hover::before {
  right: 1em;
}
.burger-nav .btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5em 1em;
}
.burger-nav .btn span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.burger-nav .btn + .btn {
  margin-top: 1.5rem;
}
.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(51, 51, 51, 0.7);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  padding-top: calc(var(--header-h) + 1rem);
  background-image: url("../img/mv/bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .mv {
    background-image: url("../img/mv/bg_sp.jpg");
  }
}
.mv-inn {
  position: relative;
  width: 100%;
  aspect-ratio: 1600/700;
}
@media (max-width: 767px) {
  .mv-inn {
    aspect-ratio: 768/1000;
  }
}
.mv-img {
  display: block;
  position: absolute;
}
.mv-img-01 {
  top: 0;
  right: 3rem;
  width: 52%;
}
@media (max-width: 1024px) {
  .mv-img-01 {
    right: 2%;
  }
}
@media (max-width: 767px) {
  .mv-img-01 {
    top: unset;
    bottom: 0;
    width: 92%;
    right: 4%;
  }
}
.mv-img-02 {
  bottom: 17.1428571429%;
  left: 8.75%;
  width: 23.75%;
}
@media (max-width: 767px) {
  .mv-img-02 {
    bottom: unset;
    top: 27.5510204082%;
    left: unset;
    right: 6%;
    width: 38.2653061224%;
  }
}
.mv-img-03 {
  bottom: 8.5714285714%;
  left: 36.25%;
  width: 20%;
}
@media (max-width: 767px) {
  .mv-img-03 {
    bottom: unset;
    top: 40.8163265306%;
    left: 19.1326530612%;
    width: 31.887755102%;
  }
}
.mv-text {
  display: block;
  position: absolute;
  left: 6.25%;
  top: 7.1428571429%;
}
@media (max-width: 1024px) {
  .mv-text {
    left: 4%;
  }
}
@media (max-width: 767px) {
  .mv-text {
    top: 2.0408163265%;
    left: 6%;
  }
}
.mv-copy {
  font-size: 2.9vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .mv-copy {
    font-size: 7.2vw;
  }
}
.mv-copy span {
  color: var(--accent);
}
.mv-company {
  font-size: max(1.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #b3b3b3;
  mix-blend-mode: multiply;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .mv-company {
    font-size: max(3vw, 1.3rem);
  }
}

/* message
---------------------------------------------------------------- */
.mes {
  background: #2eabe6;
  background: linear-gradient(120deg, #2eabe6 0%, #14cca7 100%);
  color: var(--white);
}
.mes-ttl-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  margin-left: -0.05em;
}
@media (max-width: 1024px) {
  .mes-ttl-en {
    font-size: 18vw;
    margin-left: -0.2em;
  }
}
.mes-wrap {
  margin-top: -6rem;
  margin-left: auto;
  justify-content: flex-end;
  gap: 8rem;
}
@media (max-width: 1280px) {
  .mes-wrap {
    gap: 3rem 6rem;
  }
}
@media (max-width: 1024px) {
  .mes-wrap {
    flex-direction: column;
    margin-top: -8%;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .mes-wrap {
    padding-left: 0;
    gap: 2rem;
  }
}
.mes-ttl-jp {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
  width: 39rem;
}
@media (max-width: 1024px) {
  .mes-ttl-jp {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .mes-ttl-jp {
    font-size: 3rem;
    line-height: 1.3;
  }
}
.mes-text {
  font-size: var(--fs-18);
}
@media (max-width: 1280px) {
  .mes-text {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .mes-text p {
    text-align: justify;
  }
  .mes-text br {
    display: none;
  }
}
.mes-text p + p {
  margin-top: 1em;
}

/* job
---------------------------------------------------------------- */
.job-wrap {
  max-width: 100%;
  margin-inline: auto;
  width: 120rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media (max-width: 1024px) {
  .job-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .job-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .job-wrap {
    gap: 2rem 4rem;
  }
}
.job-content {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .job-content {
    margin-top: 0;
  }
}
.job-content .sub-ttl {
  margin-bottom: 2rem;
}
.job-content .works-box {
  border-color: var(--accent);
  margin-top: 2.5rem;
}
.job-content .works-box h4 {
  color: var(--accent);
}
.jobstyle-outer {
  position: relative;
  margin-top: 10rem;
  margin-bottom: var(--mg-60);
  padding: 0 4rem 8rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .jobstyle-outer {
    padding: 0 2rem 4rem;
  }
}
.jobstyle-outer::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  top: 3.5rem;
  background: #c8fae6;
  background: linear-gradient(240deg, rgb(200, 250, 230) 0%, rgb(201, 244, 255) 100%);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .jobstyle-outer::before {
    top: 2rem;
  }
}
.jobstyle-ttl {
  display: block;
  width: min(60rem, 80%);
  margin: 0 auto 0;
  padding: 0.2em 1em;
  background: #2eabe6;
  background: linear-gradient(90deg, #2eabe6 0%, #14cca7 100%);
  font-size: var(--fs-32);
  color: var(--white);
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 767px) {
  .jobstyle-ttl {
    width: 98%;
    padding: 0.5em;
    font-size: 2rem;
  }
}
.jobstyle-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: var(--mg-50) auto 0;
  width: min(120rem, 100%);
}
@media (max-width: 1024px) {
  .jobstyle-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .jobstyle-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .jobstyle-wrap {
    margin-top: 3rem;
  }
}
.jobstyle-item {
  border-radius: var(--br-m);
  box-shadow: var(--b-shadow);
  background: var(--white);
}
.jobstyle-item-inn {
  padding: var(--mg-30);
}
.jobstyle-subttl {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--d-accent);
  background: var(--l-accent);
  padding: 0.5em 0.5em 0.6em;
  border-radius: var(--br-m) var(--br-m) 0 0;
}
@media (max-width: 767px) {
  .jobstyle-subttl {
    font-size: 2rem;
  }
}
.jobstyle-top {
  gap: 2.5rem 3rem;
  align-items: center;
  margin-bottom: var(--mg-30);
}
@media (max-width: 767px) {
  .jobstyle-top {
    flex-direction: column;
  }
}
.jobstyle-icon {
  flex-basis: min(15rem, 30%);
}
@media (max-width: 767px) {
  .jobstyle-icon {
    width: 12rem;
  }
}
.jobstyle-bubble {
  position: relative;
  z-index: 0;
  flex: 1;
  display: block;
  border-radius: var(--br-m);
  border: 1.5px solid var(--accent);
  background: var(--white);
  padding: 1.5em;
  text-align: justify;
}
@media (max-width: 767px) {
  .jobstyle-bubble {
    padding: 1em;
    text-align: center;
  }
}
.jobstyle-bubble::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 2rem;
  aspect-ratio: 3/4;
  background: var(--accent);
  bottom: 2rem;
  left: -1.9rem;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (max-width: 767px) {
  .jobstyle-bubble::before {
    width: 3rem;
    aspect-ratio: 2/1;
    bottom: unset;
    top: -1.6rem;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}
.jobstyle-bubble::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 1.7rem;
  aspect-ratio: 3/4;
  background: var(--white);
  bottom: 2.2rem;
  left: -1.6rem;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (max-width: 767px) {
  .jobstyle-bubble::after {
    width: 3rem;
    aspect-ratio: 2/1;
    bottom: unset;
    top: -1.4rem;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}
.job .btn {
  font-size: var(--fs-22);
  width: min(42rem, 100%);
}

.tl-wrap {
  position: relative;
  width: 100%;
  text-align: left;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .tl-wrap {
    margin-left: 3%;
  }
}
.tl-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  width: 3px;
  height: 90%;
  background-color: var(--accent);
}
@media (max-width: 767px) {
  .tl-wrap::before {
    left: 0.34em;
  }
}
.tl-wrap dt {
  position: relative;
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent);
  margin-bottom: 0.4em;
  padding-left: 36px;
}
.tl-wrap dt span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-right: 0.5em;
}
.tl-wrap dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  background: currentColor;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.tl-wrap dt:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.15em;
  left: 0;
  width: 0.9em;
  height: 2em;
  background: var(--white);
}
.tl-wrap dd {
  font-size: var(--fs-15);
  margin-bottom: 1.5em;
  padding-left: 36px;
}

.jobstyle-item-02 .jobstyle-subttl {
  color: var(--main);
  background: var(--l-main);
}
.jobstyle-item-02 .jobstyle-bubble {
  border-color: var(--main);
}
.jobstyle-item-02 .jobstyle-bubble::before {
  background: var(--main);
}
.jobstyle-item-02 .tl-wrap::before {
  background: var(--main);
}
.jobstyle-item-02 .tl-wrap dt {
  color: var(--main);
}

/* ohter
---------------------------------------------------------------- */
.works {
  background: #c9f4ff;
  background: linear-gradient(0deg, rgba(201, 244, 255, 0) 10%, rgba(201, 244, 255, 0.5) 100%);
}
.works .sec-ttl-en {
  background: unset !important;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  mix-blend-mode: multiply;
  color: #c9f4ff;
  opacity: 0.6;
  font-size: 12rem;
}
@media (max-width: 1024px) {
  .works .sec-ttl-en {
    font-size: 11vw;
  }
}
@media (max-width: 767px) {
  .works .sec-ttl-en {
    font-size: 18vw;
    line-height: 0.9;
  }
}
.works .sec-ttl-jp {
  position: relative;
  z-index: 1;
  color: var(--main);
  margin-top: -1.5em;
}
.works-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .works-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .works-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-wrap .sub-ttl {
  margin-bottom: 1.5rem;
}
.works-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .works-item {
    gap: 2rem;
  }
}
.works-text {
  text-align: justify;
}
.works-box {
  border: 1.5px solid var(--main);
  background: var(--white);
  border-radius: var(--br-m);
  padding: 1.5em 2em;
}
@media (max-width: 767px) {
  .works-box {
    padding: 1.5em;
  }
}
.works-box h4 {
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 1;
  color: var(--main);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .works-box h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

/* int
---------------------------------------------------------------- */
.int {
  background: rgba(200, 250, 230, 0.4);
}
.int .sec-ttl {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .int .sec-ttl {
    margin-bottom: var(--mg-60);
  }
}
.int .sec-ttl-en {
  background: #14cca7;
  background: linear-gradient(90deg, #14cca7 0%, rgba(20, 204, 167, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .int .sec-ttl-en {
    font-size: min(6rem, 14.5vw);
  }
}
.int-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .int-card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .int-card-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .int-card-wrap {
    gap: 3rem;
    width: min(50rem, 90%);
    margin-inline: auto;
  }
}
.int-card-item {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  border-radius: var(--br-m);
  box-shadow: var(--b-shadow);
  background: var(--white);
}
.int-card-item img {
  height: auto;
  transition: transform 0.3s ease;
}
.int-card-item:hover img {
  transform: scale(1.07);
}
.int-card-item:nth-of-type(1) {
  margin-top: 12rem;
}
.int-card-item:nth-of-type(2) {
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .int-card-item {
    margin-top: 0 !important;
  }
}
.int-card-img {
  border-radius: var(--br-m) var(--br-m) 0 0;
  overflow: hidden;
}
.int-card-text {
  position: relative;
  align-items: center;
  gap: 1em;
  padding: 5rem 2.5rem 2.5rem;
}
@media (max-width: 767px) {
  .int-card-text {
    padding: 4rem 2rem 2rem;
  }
}
.int-card-arrow {
  transition: 0.3s ease;
  position: relative;
  width: 4rem;
  aspect-ratio: 1;
  border-radius: var(--br-max);
  background: var(--accent);
}
.int-card-arrow::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  inset: 0;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.int-ttl {
  display: block;
  position: absolute;
  top: -1em;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 0.5em;
  background: #2eabe6;
  background: linear-gradient(90deg, #2eabe6 0%, #14cca7 100%);
  font-size: var(--fs-24);
  color: var(--white);
}
.int-label {
  font-size: var(--fs-20);
  font-weight: 700;
}
.int-card-item:hover {
  opacity: 1;
}
.int-card-item:hover .int-card-arrow {
  background: var(--main);
}
.int-card-item:hover .int-label {
  color: var(--main);
}

/* modal
---------------------------------------------------------------- */
.remodal-close-top {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .remodal-close-top {
    top: 2px;
    right: 2px;
    transform: scale(0.8);
  }
}
.remodal-close-top:hover {
  opacity: 0.6;
}
.remodal-close-btm {
  width: 100%;
}
.remodal-close-btm .btn {
  width: 280px;
  margin-top: var(--mg-40);
}

.modal-content {
  position: relative;
  border-radius: var(--br-m);
  background: var(--white);
  background: linear-gradient(120deg, rgb(222, 252, 242) 0%, white 50%, rgb(207, 246, 253) 100%);
  padding: var(--mg-50) max(4%, 2rem);
}
.modal-top {
  padding-bottom: var(--mg-50);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .modal-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .modal-top {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .modal-top {
    gap: 0 3rem;
  }
}
.modal-top .int-ttl {
  position: static;
}
.modal-top .int-label {
  margin-top: 0.5em;
}
.modal-img {
  position: relative;
  z-index: 1;
}
.modal-img img {
  border-radius: var(--br-m);
}
.modal-text {
  flex: 1;
  text-align: left;
  padding-top: 3rem;
}

.qa-list {
  text-align: left;
  width: 100%;
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.2em;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .qa-list dt:not(:first-of-type) {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 7px;
  content: "Q";
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: var(--br-m);
  box-shadow: var(--b-shadow);
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
    margin-top: 1.5rem;
  }
}
.qa-list dd span {
  color: var(--main);
  font-weight: bold;
}

/* merit
---------------------------------------------------------------- */
.merit .list-item {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1em;
}
.merit-item {
  position: relative;
  gap: 1rem;
  min-height: 41rem;
}
@media (max-width: 1024px) {
  .merit-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .merit-item {
    gap: 0;
  }
}
.merit-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: min(50% + 50rem, 90%);
  height: calc(100% - 4rem);
  background: #c8fae6;
  background: linear-gradient(125deg, rgb(200, 250, 230) 0%, rgb(201, 244, 255) 100%);
  opacity: 0.4;
}
@media (max-width: 1024px) {
  .merit-item::before {
    height: 70%;
  }
}
@media (max-width: 767px) {
  .merit-item::before {
    width: 100%;
    height: max(100% - 15rem, 80%);
  }
}
.merit-item:not(:first-of-type) {
  margin-top: var(--mg-80);
}
@media (max-width: 767px) {
  .merit-item:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.merit-item.flex-row-reverse::before {
  right: unset;
  left: 0;
  background: #c8fae6;
  background: linear-gradient(240deg, rgb(200, 250, 230) 0%, rgb(201, 244, 255) 100%);
}
@media (max-width: 1024px) {
  .merit-item.flex-row-reverse .merit-img {
    margin-right: unset;
    margin-left: auto;
  }
  .merit-item.flex-row-reverse .merit-content {
    margin-left: unset;
    margin-right: auto;
  }
}
.merit-img {
  flex-basis: min(57rem, 45%);
}
@media (max-width: 1024px) {
  .merit-img {
    margin-right: auto;
    width: min(50rem, 100%);
  }
}
@media (max-width: 767px) {
  .merit-img {
    margin-inline: auto !important;
    width: 90%;
  }
}
.merit-content {
  flex: 1;
  padding: 4rem 5rem;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .merit-content {
    margin-top: 0;
    margin-left: auto;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .merit-content {
    width: 100% !important;
    padding: 2em 1.5em;
  }
}
.merit-text {
  text-align: justify;
}

/* data
---------------------------------------------------------------- */
.data {
  z-index: -1;
  background-image: url("../img/data/bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.data::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #2eabe6;
  background: linear-gradient(-90deg, #2eabe6 0%, #14cca7 100%);
  opacity: 0.9;
}
.data .sec-ttl-en {
  background: #c8fae6;
  background: linear-gradient(125deg, rgb(200, 250, 230) 0%, rgb(201, 244, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.data .sec-ttl-jp {
  color: var(--white);
}
.data-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}
@media (max-width: 1024px) {
  .data-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .data-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .data-wrap {
    width: min(50rem, 90%);
    margin-inline: auto;
  }
}
.data-item {
  text-align: center;
  border-radius: var(--br-m);
  overflow: hidden;
  background: linear-gradient(-180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 95%);
  padding: 3rem;
}
.data-item:nth-of-type(even) .data-ttl {
  color: var(--main);
}
.data-ttl {
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--d-accent);
}
.data-img {
  width: min(24rem, 100%);
  margin: 2rem auto;
}
.data-text {
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  text-shadow: var(--b-shadow);
}

/* search
---------------------------------------------------------------- */
.search {
  background: #c8fae6;
  background: linear-gradient(0deg, rgba(200, 250, 230, 0) 50%, #c8fae6 100%);
}
.search .sec-ttl {
  text-align: left;
}
@media (max-width: 767px) {
  .search .sub-ttl {
    margin-bottom: 2.5rem;
  }
}
.search-wrap:not(:first-of-type) {
  margin-top: var(--mg-60);
}
.search-btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .search-btn {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .search-btn {
    gap: 1.5rem;
  }
}
.search-map-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
}
@media (max-width: 1024px) {
  .search-map-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search-map-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-map-wrap .search-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .search-map-wrap .search-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .search-map-wrap .search-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-map-img {
  position: relative;
  mix-blend-mode: multiply;
}
.search-map-img::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #c8fae6;
  background: linear-gradient(125deg, rgb(200, 250, 230) 0%, rgb(201, 244, 255) 100%);
  opacity: 0.4;
  border-radius: var(--br-m);
}

/* footer
================================================================== */
/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 65px;
  height: 65px;
  aspect-ratio: 1;
  background: #2eabe6;
  background: linear-gradient(90deg, #2eabe6 0%, #14cca7 100%);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition: 0.3s ease;
}
.page-top p {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(35%);
}
.page-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 25%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
.page-top:hover {
  transform: scale(1.07);
}
.page-top.js-position {
  position: absolute;
  top: -8rem; /* 止まって欲しい場所を記入 */
}
@media (max-width: 767px) {
  .page-top {
    bottom: 60px;
    transform: scale(0.9);
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1;
  background: var(--d-accent);
  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 */