/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #343e40;
  --color-blue: #1c6dcc;
  --color-white: #fff;
}

/*!
global > content-width
------------------------------
*/
:root {
  --content-width: 1000rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "BIZ UDPGothic", sans-serif;
  --font-family-en: "Open Sans", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: var(--color-white);
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 380;
}
@media screen and (min-width: 500px) {
  :root {
    --base-vw: 500;
  }
}
@media screen and (min-width: 900px) {
  :root {
    --base-vw: 1280;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 1px;
  }
}

body {
  line-height: 1.5;
  font-size: 15rem;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 900px) {
  body {
    font-size: 18rem;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-ptb {
  padding: 48rem 0 56rem;
}
@media screen and (min-width: 900px) {
  .u-ptb {
    padding: 64rem 0 80rem;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  border-radius: 100vh;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.4) 100%), #f26835;
  box-shadow: 0 4rem 20rem 0 rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 20rem 60rem;
  justify-content: center;
  align-items: center;
  gap: 16rem;
  color: var(--color-white);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.7;
  transition: background 0.3s;
}
@media screen and (min-width: 900px) {
  .c-button {
    font-size: 20rem;
    padding: 24rem 80rem;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 50.5%, rgba(255, 255, 255, 0.4) 100%), #f05318;
  }
}
.c-button::after {
  content: "";
  width: 11rem;
  height: 18rem;
  mask-image: url("../img/icon-arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .c-button::after {
    width: 13rem;
    height: 21rem;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.c-title-en {
  font-family: var(--font-family-en);
  font-weight: bold;
  color: var(--color-blue);
  font-size: 16rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .c-title-en {
    font-size: 18rem;
  }
}

.c-title-ja {
  font-size: 26rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .c-title-ja {
    font-size: 32rem;
  }
}
.c-title-ja > span:not([class]) {
  display: block;
}
@media screen and (min-width: 900px) {
  .c-title-ja > span:not([class]) {
    display: inline;
  }
}

.c-title-ja-blue {
  color: var(--color-blue);
}

.c-title-ja-large {
  font-size: 32rem;
}
@media screen and (min-width: 900px) {
  .c-title-ja-large {
    font-size: 36rem;
  }
}

/*!
component > cta
------------------------------
*/
.c-cta {
  background-image: url(../img/cta-bg-sp.png);
  background-size: cover;
  background-position: center;
  padding: 40rem 0;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .c-cta {
    background-image: url(../img/cta-bg.png);
  }
}

.c-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24rem;
}

.c-cta-text {
  color: var(--color-white);
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .c-cta-text {
    font-size: 32rem;
  }
}
.c-cta-text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .c-cta-text span {
    display: inline;
  }
}

/*!
layout > container
------------------------------
*/
.l-container {
  width: min(90%, var(--content-width));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.header-logo {
  width: 120rem;
  position: absolute;
  top: 23rem;
  left: 21rem;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .header-logo {
    top: 27rem;
    left: 56rem;
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding: 15rem 20rem;
  background: #f4f4f4;
}
@media screen and (min-width: 900px) {
  .footer {
    padding: 20rem 48rem;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}
@media screen and (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-privacy {
  display: flex;
  align-items: center;
  gap: 15rem;
}
@media screen and (min-width: 900px) {
  .footer-privacy {
    gap: 25rem;
  }
}
.footer-privacy img {
  width: 51rem;
}
@media screen and (min-width: 900px) {
  .footer-privacy img {
    width: 70rem;
  }
}
.footer-privacy p {
  font-size: 12rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 900px) {
  .footer-privacy p {
    font-size: 14rem;
  }
}

.footer-copy {
  font-size: 12rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 900px) {
  .footer-copy {
    font-size: 14rem;
  }
}

/*!
page > kv
------------------------------
*/
.kv {
  background-image: url(../img/kv-bg-sp.png);
  background-size: cover;
  background-position: center;
  padding: 0 20rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .kv {
    background-image: url(../img/kv-bg.png);
    padding: 0;
  }
}

.kv-inner {
  margin-inline: auto;
  color: var(--color-white);
  padding: 160rem 0 20rem;
}
@media screen and (min-width: 900px) {
  .kv-inner {
    width: 800rem;
    padding: 66rem 0 40rem;
  }
}

.kv-content {
  position: relative;
  z-index: 1;
}

.kv-badge {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  letter-spacing: 0.05em;
  padding: 2rem 8rem;
  background: linear-gradient(90deg, #190e00 0%, #25337b 100%), #44ace1;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .kv-badge {
    font-size: 24rem;
  }
}

.kv-lead {
  font-size: 24rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 15rem;
  border-bottom: 2rem solid var(--color-white);
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .kv-lead {
    font-size: 32rem;
    margin-top: 20rem;
  }
}
.kv-lead span {
  position: relative;
}
.kv-lead span::before {
  content: "";
  display: block;
  --size: 5rem;
  width: var(--size);
  height: var(--size);
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: -12rem;
  left: 50%;
  translate: -50% 0;
}

.kv-title {
  font-size: 30rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 4rem;
}
@media screen and (min-width: 900px) {
  .kv-title {
    font-size: 48rem;
  }
}
.kv-title span {
  display: block;
}

.kv-cta {
  margin-top: 8rem;
}
@media screen and (min-width: 900px) {
  .kv-cta {
    margin-top: 16rem;
    width: 405rem;
  }
}

.kv-image {
  position: absolute;
  top: 20rem;
  right: -20rem;
}
@media screen and (min-width: 500px) {
  .kv-image {
    top: 26rem;
  }
}
@media screen and (min-width: 900px) {
  .kv-image {
    width: 866rem;
    display: flex;
    justify-content: flex-end;
    top: auto;
    bottom: 0;
    right: 50%;
    translate: 50% 0;
  }
}
.kv-image img {
  width: 210rem;
  aspect-ratio: 228/377;
}
@media screen and (min-width: 900px) {
  .kv-image img {
    aspect-ratio: 720/919;
    width: 360rem;
  }
}

/*!
page > company
------------------------------
*/
.company {
  padding: 16rem 0;
  background: #16397c;
  color: var(--color-white);
}

.company-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16rem;
}
@media screen and (min-width: 900px) {
  .company-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0;
  }
}

.company-title {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .company-title {
    border-right: 1rem solid rgba(255, 255, 255, 0.2);
    padding-right: 24rem;
    margin-right: 24rem;
    padding-block: 8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .company-title span {
    display: block;
  }
}

.company-list {
  font-size: 15rem;
  line-height: 1.7;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 0;
}
@media screen and (min-width: 900px) {
  .company-list {
    font-size: 18rem;
  }
}
.company-list li:not(:first-child)::before {
  content: "/";
  display: inline-block;
  margin: 0 8rem;
}

.company-list-note {
  font-size: 12rem;
  margin-top: 16rem;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .company-list-note {
    margin-top: 8rem;
  }
}

/*!
page > about
------------------------------
*/
.about {
  background-image: url(../img/about-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 900px) {
  .about {
    background-image: url(../img/about-bg.png);
  }
}

.about-points {
  margin-top: 40rem;
  display: flex;
  flex-direction: column;
  gap: 32rem;
}
@media screen and (min-width: 900px) {
  .about-points {
    gap: 20rem;
  }
}

.about-points-item {
  background-color: var(--color-white);
  box-shadow: 0 4rem 20rem 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 900px) {
  .about-points-item {
    display: grid;
    grid-template-columns: 264rem 1fr;
    align-items: center;
  }
}

.about-points-image {
  position: relative;
}
.about-points-image img {
  aspect-ratio: 340/170;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .about-points-image img {
    aspect-ratio: 264/176;
  }
}

.about-points-num {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-blue);
  padding: 4rem 16rem;
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-size: 14rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-points-content {
  display: flex;
  padding: 16rem;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (min-width: 900px) {
  .about-points-content {
    padding: 0 40rem;
  }
}

.about-points-heading {
  color: var(--color-blue);
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .about-points-heading {
    font-size: 26rem;
  }
}
.about-points-heading span {
  display: block;
}

.about-points-text {
  font-size: 15rem;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .about-points-text {
    font-size: 18rem;
  }
}

.about-points-note {
  font-size: 14rem;
  margin-top: 0;
  opacity: 0.7;
}

/*!
page > example
------------------------------
*/
.example {
  background-image: url(../img/example-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 900px) {
  .example {
    background-image: url(../img/example-bg.jpg);
  }
}

.example-list {
  margin-top: 40rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20rem;
}
@media screen and (min-width: 900px) {
  .example-list {
    grid-template-columns: 1fr 1fr;
    gap: 20rem 28rem;
  }
}

.example-item {
  background: var(--color-white);
  box-shadow: 0 4rem 20rem 0 rgba(0, 0, 0, 0.05);
}

.example-item-company {
  padding: 16rem 8rem;
  background: #e5eef7;
  text-align: center;
  color: var(--color-blue);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.7;
}

.example-item-meta {
  padding: 10rem 16rem 8rem;
}

.example-item-role {
  text-align: center;
  font-size: 16rem;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
.example-item-role::before {
  content: "";
  display: block;
  width: 16rem;
  height: 15rem;
  background-image: url(../img/icon-business.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.example-item-salary {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.7;
}
.example-item-salary span {
  color: var(--color-blue);
  font-size: 32rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.05em;
}

/*!
page > form
------------------------------
*/
.form-body {
  margin-top: 40rem;
  max-width: 800rem;
  margin-inline: auto;
}
.form-body .error {
  color: #f04f4f !important;
  font-size: 16rem !important;
  display: inline-block !important;
  margin-top: 4rem !important;
}

.contact-form-items {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.contact-form-item {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .contact-form-item {
    grid-template-columns: 170rem 1fr;
    gap: 0 22rem;
    align-items: center;
  }
}

.contact-form-item-head {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 8rem;
}
@media screen and (min-width: 900px) {
  .contact-form-item-head {
    margin-bottom: 0;
  }
}

.contact-form-item-title {
  font-size: 15rem;
  font-weight: bold;
}

.contact-form-item-required {
  font-size: 12rem;
  color: #f04f4f;
}

.contact-input-text,
.contact-select {
  width: 100%;
  padding: 14rem 16rem;
  border-radius: 5px;
  font-size: 16rem;
  background-color: #f8f8f8;
  border: 1rem solid #d9d9d9;
  outline: none;
}
.contact-input-text:focus,
.contact-select:focus {
  border: 1rem solid #1772bc;
}

.contact-input-text::placeholder {
  color: #d9d9d9;
}

.contact-select-wrap {
  position: relative;
  width: 100%;
}
.contact-select-wrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  background-color: var(--color-font-base);
  height: 10rem;
  width: 12rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: var(--z-index-default);
  pointer-events: none;
}

.contact-form-birth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media screen and (min-width: 900px) {
  .contact-form-birth {
    grid-template-columns: 212rem 180rem 180rem;
  }
}

.contact-form-birthyear,
.contact-form-birthmonth,
.contact-form-birthyday {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 8rem;
  align-items: center;
  align-self: start;
}

.contact-form-birthyear {
  grid-column: 1/-1;
}
@media screen and (min-width: 900px) {
  .contact-form-birthyear {
    grid-column: 1/2;
  }
}

.contact-form-date {
  font-size: 16rem;
}

.contact-radio-wrap {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.contact-radio-wrap .mwform-radio-field input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.contact-radio-wrap .mwform-radio-field input:checked + .mwform-radio-field-text:before {
  border: 0.35em solid #1772bc;
}
.contact-radio-wrap .mwform-radio-field .mwform-radio-field-text {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.contact-radio-wrap .mwform-radio-field .mwform-radio-field-text:before {
  content: "";
  display: inline-block;
  width: 24rem;
  height: 24rem;
  border: 1rem solid #d9d9d9;
  border-radius: 50%;
  margin-right: 6rem;
  flex-shrink: 0;
}

@media screen and (min-width: 900px) {
  .contact-error-block {
    grid-column: 2/3;
    margin-top: 0;
  }
}

.contact-form-birth-error {
  grid-column: 1/-1;
}

.contact-consent {
  text-align: center;
  margin-top: 40rem;
}
.contact-consent a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .contact-consent a:hover {
    text-decoration: none;
  }
}

.contact-submit-wrap {
  display: grid;
  place-items: center;
  margin-top: 8rem;
}
@media screen and (min-width: 900px) {
  .contact-submit-wrap {
    margin-top: 16rem;
  }
}

.contact-submit {
  padding-block: 20rem;
  max-width: 400rem;
  width: 100%;
}

.contact-button-text-large {
  font-size: 18rem;
}
@media screen and (min-width: 900px) {
  .contact-button-text-large {
    font-size: 20rem;
  }
}

.contact-button-text-small {
  font-size: 16rem;
}
@media screen and (min-width: 900px) {
  .contact-button-text-small {
    font-size: 18rem;
  }
}/*# sourceMappingURL=style.css.map */