html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.inner {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .inner {
    padding: 0 20px;
  }
}
.title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.title-group__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.title-group__en .en-text {
  font-size: 1.8rem;
  line-height: 21px;
  font-weight: 700;
}
.title-group__ja {
  font-size: 5.6rem;
  line-height: 78px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .title-group {
    gap: 12px;
  }
  .title-group__en .en-text {
    font-size: 14px;
  }
  .title-group__ja {
    font-size: 30px;
    line-height: 42px;
  }
}
.main-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #4EB6F0;
  border-radius: 99px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #4EB6F0, #9EF6F5);
  gap: 3rem;
}
.main-btn .arrow {
  padding-top: 2px;
  position: relative;
}
.main-btn .arrow img {
  width: 40px;
  height: 40px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.main-btn .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/btn-arrow-blue.svg") center/contain no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.main-btn:hover {
  color: #4EB6F0;
  background: #fff;
  border-color: #4EB6F0;
}
.main-btn:hover .arrow img {
  opacity: 0;
}
.main-btn:hover .arrow::after {
  opacity: 1;
}

.sub-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #4EB6F0;
  border-radius: 99px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #4EB6F0;
  background: #fff;
  gap: 3rem;
}
.sub-btn .arrow {
  padding-top: 2px;
  position: relative;
}
.sub-btn .arrow img {
  width: 40px;
  height: 40px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sub-btn .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/btn-arrow-white.svg") center/contain no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.sub-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #4EB6F0, #9EF6F5);
  border-color: transparent;
}
.sub-btn:hover .arrow img {
  opacity: 0;
}
.sub-btn:hover .arrow::after {
  opacity: 1;
}

section.cta-recruit {
  padding-top: 7rem;
  padding-bottom: 12rem;
}
section.cta-recruit .main-card {
  margin-top: 60px;
  background: linear-gradient(135deg, #4EB6F0, #9EF6F5);
  padding: 30px 30px 80px 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
section.cta-recruit .img-section img {
  width: 100%;
}
section.cta-recruit .img-section img.sp {
  display: none;
}
section.cta-recruit .text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.cta-recruit .text-section .left-text {
  max-width: 86rem;
  font-size: 2.4rem;
  line-height: 49px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 960px) {
  section.cta-recruit {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  section.cta-recruit .main-card {
    padding: 20px 20px 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  section.cta-recruit .main-card .img-section .sp {
    display: block;
  }
  section.cta-recruit .main-card .img-section .pc {
    display: none;
  }
  section.cta-recruit .main-card .text-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  section.cta-recruit .main-card .text-section .left-text {
    font-size: 16px;
    line-height: 2;
  }
  section.cta-recruit .main-card .text-section .right-btn {
    width: 100%;
  }
}
.label-list ul.label-list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.label-list ul.label-list-inner li {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.label-list ul.label-list-inner li:hover {
  background: #f7f7f7;
}
.label-list ul.label-list-inner li a {
  text-decoration: none;
}

.info-list {
  padding-top: 40px;
}
.info-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
  border-bottom: 1px solid #FAFAFA;
  font-size: 1.6rem;
  line-height: 2;
}
.info-list .row .label {
  padding-left: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.info-list .row .value {
  margin-left: 200px;
  line-height: 32px;
}
.info-list .row .value ul {
  margin: 0;
  padding-left: 20px;
}
.info-list .row .value ul li {
  list-style: disc;
}
@media (max-width: 960px) {
  .info-list {
    padding-top: 20px;
  }
  .info-list .info-list {
    padding-top: 20px;
  }
  .info-list .row {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .info-list .row .label {
    padding-left: 0;
    font-size: 0.9rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .info-list .row .value {
    margin-left: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  .info-list .row .value ul {
    padding-left: 0;
  }
  .info-list .row .value ul li {
    list-style: none;
  }
}

.fv-static {
  position: relative;
  width: 100%;
  height: 70vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.fv-static__panel {
  background: #fff;
  border-radius: 0 24px 0 0;
  padding: 38px 84px 50px 40px;
}
.fv-static__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.fv-static__label .dot {
  width: 32px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4EB6F0, #9EF6F5);
  display: inline-block;
}
.fv-static__title {
  margin-top: 24px;
  font-size: 100px;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 960px) {
  .fv-static {
    height: 50vh;
  }
  .fv-static__panel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 80px 16px 20px;
  }
  .fv-static__title {
    font-size: 56px;
  }
}