@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-primary: #1655cb;
  --color-primary-dark: #012c7e;
  --color-white: #ffffff;
  --color-red: #ff0707;
  --color-font-base: #2e416e;
  --color-accent: #ea7c1c;
  --color-accent02: #ee9649;
  --color-accent-hover: #d46a0d;
  --color-accent02-hover: #e68937;
  --color-background-light: #eff1f5;
  --color-background-gray: #f8f8f8;
  --color-border: #dbe1ed;
  --color-border02: #d9d9d9;
  --color-placeholder: #d9d9d9;
  --color-focus: #2b8fe0;
  --color-gradation: linear-gradient(93deg, #3c9be7 0%, #2a6ae9 100%);
  --color-gradation02: linear-gradient(91deg, #295ac5 -7.37%, #00297f 93.43%);
  --color-gray: #ededed;
  --color-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto Mono", monospace;
}

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

/*!
global > color
------------------------------
*/
:root {
  --content-width: 1100rem;
  --header-height: 48rem;
}
@media screen and (min-width: 900px) {
  :root {
    --header-height: 68rem;
  }
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

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: inherit;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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;
  margin: 0;
  padding: 0;
}

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: 375;
}
@media screen and (min-width: 500px) {
  :root {
    --base-vw: 500;
  }
}
@media screen and (min-width: 900px) {
  :root {
    --base-vw: 1280;
  }
}

* {
  letter-spacing: 0.025em;
}

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: 16rem;
  font-weight: 500;
  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;
}

/*!
component > title
------------------------------
*/
.c-title-en {
  font-weight: bold;
  font-size: 16rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  text-align: center;
  padding-left: 0.2em;
  text-align: center;
  display: block;
  color: var(--color-primary);
  text-transform: uppercase;
}

.c-title-en--white {
  color: var(--color-white);
}

.c-title-ja {
  text-align: center;
  font-weight: 700;
  font-size: 28rem;
  margin-top: 8rem;
}
@media screen and (min-width: 900px) {
  .c-title-ja {
    font-size: 36rem;
  }
}
.c-title-ja:after {
  content: "";
  display: block;
  width: 48rem;
  height: 2px;
  background-color: var(--color-primary);
  margin-inline: auto;
  margin-top: 24rem;
}

.c-title-ja--white {
  color: var(--color-white);
}
.c-title-ja--white::after {
  background-color: var(--color-white);
}

/*!
component > button
------------------------------
*/
.c-button {
  padding: 12rem 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 4rem;
  position: relative;
  font-weight: 600;
  transition: background-color 0.3s;
  overflow: hidden;
  position: relative;
}
.c-button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 56.25%;
  background-color: var(--color-accent02);
  border-radius: 4rem;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: var(--color-accent-hover);
  }
  .c-button:hover::before {
    background-color: var(--color-accent02-hover);
  }
}
.c-button > span {
  position: relative;
  z-index: var(--z-index-default);
}

.c-button--arrow::after {
  content: "";
  display: block;
  background-color: var(--color-white);
  height: 10rem;
  width: 9rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: relative;
  z-index: var(--z-index-default);
  translate: 0 2rem;
  margin-left: 10rem;
  transition: translate 0.3s;
}
@media (any-hover: hover) {
  .c-button--arrow:hover::after {
    translate: 3rem 2rem;
  }
}

/*!
component > fixed-cta
------------------------------
*/
.c-fixed-cta {
  position: fixed;
  bottom: 8rem;
  right: 8rem;
  width: calc(100vw - 16rem);
  z-index: var(--z-index-fixed-cta);
  overflow: hidden;
  border-radius: 8rem;
  background-image: url(../img/cta-sp.jpg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--color-shadow);
  display: none;
}
@media screen and (min-width: 900px) {
  .c-fixed-cta {
    width: 320rem;
    background-image: url(../img/cta.jpg);
  }
}
.c-fixed-cta.is-fixed {
  display: block;
}
@media (any-hover: hover) {
  .c-fixed-cta:hover .c-fixed-cta-button-text {
    background-color: var(--color-accent-hover);
  }
  .c-fixed-cta:hover .c-fixed-cta-button-text::before {
    background-color: var(--color-accent02-hover);
  }
}

.c-fixed-cta-img {
  display: none;
}
@media screen and (min-width: 900px) {
  .c-fixed-cta-img {
    display: block;
    position: absolute;
    top: 0;
    left: -8rem;
    width: 138rem;
  }
}

.c-fixed-cta-inner {
  padding: 8rem 16rem;
  display: grid;
  grid-template-columns: 1fr 121rem;
  align-items: center;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 500px) {
  .c-fixed-cta-inner {
    grid-template-columns: 1fr 200rem;
    padding: 12rem 16rem;
  }
}
@media screen and (min-width: 900px) {
  .c-fixed-cta-inner {
    grid-template-columns: 1fr;
    gap: 8rem;
    padding-left: 111rem;
  }
}

.c-fixed-cta-text {
  display: flex;
  flex-direction: column;
}
.c-fixed-cta-text span {
  display: block;
  color: var(--color-white);
  font-weight: 600;
}
.c-fixed-cta-text span:nth-child(1) {
  font-size: 13rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 500px) {
  .c-fixed-cta-text span:nth-child(1) {
    font-size: 16rem;
  }
}
@media screen and (min-width: 900px) {
  .c-fixed-cta-text span:nth-child(1) {
    font-size: 14rem;
  }
}
.c-fixed-cta-text span:nth-child(2), .c-fixed-cta-text span:nth-child(3) {
  font-size: 15rem;
}
@media screen and (min-width: 500px) {
  .c-fixed-cta-text span:nth-child(2), .c-fixed-cta-text span:nth-child(3) {
    font-size: 18rem;
  }
}
@media screen and (min-width: 900px) {
  .c-fixed-cta-text span:nth-child(2), .c-fixed-cta-text span:nth-child(3) {
    font-size: 16rem;
  }
}

.c-fixed-cta-button-text {
  padding: 8rem 10rem;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 4rem;
  position: relative;
  font-weight: 600;
  font-size: 14rem;
  text-align: center;
  line-height: 1.3;
  transition: background-color 0.3s;
}
@media screen and (min-width: 500px) {
  .c-fixed-cta-button-text {
    padding: 18rem 10rem;
    font-size: 16rem;
  }
}
@media screen and (min-width: 900px) {
  .c-fixed-cta-button-text {
    padding: 12rem;
    display: flex;
    gap: 8rem;
    align-items: center;
    justify-content: center;
  }
  .c-fixed-cta-button-text::after {
    content: "";
    display: block;
    background-color: var(--color-white);
    height: 10rem;
    width: 9rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: relative;
    z-index: var(--z-index-default);
  }
}
.c-fixed-cta-button-text::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 56.25%;
  background-color: var(--color-accent02);
  border-radius: 4rem;
  transition: background-color 0.3s;
}
.c-fixed-cta-button-text > span {
  position: relative;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 500px) {
  .c-fixed-cta-button-text > span {
    flex-direction: row;
    justify-content: center;
  }
}

/*!
component > form
------------------------------
*/
.c-form-required {
  font-size: 13rem;
  color: var(--color-white);
  padding: 2rem 8rem;
  background-color: var(--color-red);
  border-radius: 7rem;
}

.c-form-text {
  padding: 12rem 8rem;
  border-radius: 8rem;
  background-color: var(--color-bg-extra-light);
}

.c-form-text::placeholder {
  color: var(--color-font-light);
}

.c-form-text:focus {
  outline: 1rem solid var(--color-primary);
}

.c-form-text--textarea {
  min-height: 200rem;
  field-sizing: content;
}

.c-form-button {
  font-size: 18rem;
  padding: 13rem 39rem;
  background-color: var(--color-primary);
  border-radius: 100vh;
  color: var(--color-white);
  border: 1rem solid var(--color-primary);
  width: fit-content;
  margin-inline: auto;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1;
}
@media (any-hover: hover) {
  .c-form-button:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
}

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

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
  height: var(--header-height);
  background-color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .l-header {
    padding: 0 80rem;
  }
}

.l-header-logo {
  width: 101rem;
  margin-left: 20rem;
}
@media screen and (min-width: 900px) {
  .l-header-logo {
    width: 140rem;
    margin-left: 0;
  }
}

.l-header-menu {
  position: fixed;
  left: auto;
  right: 0;
  top: var(--header-height);
  width: 100%;
  height: calc(100% - var(--header-height));
  background-color: rgba(0, 0, 0, 0.6);
  overflow: visible;
}
@media screen and (min-width: 900px) {
  .l-header-menu {
    position: static;
    display: block;
    opacity: 1 !important;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}

.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-nav {
  width: 100%;
  background-color: var(--color-background-light);
  padding: 20rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-nav {
    width: auto;
    background-color: transparent;
    padding: 0;
    color: var(--color-font-base);
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-list {
    flex-direction: row;
    align-items: center;
    gap: 24rem;
  }
}

.l-header-menu-item a {
  font-size: 16rem;
}

.l-header-menu-item-link {
  display: block;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .l-header-menu-item-link {
    display: inline-block;
    text-decoration: none;
  }
}

/* ハンバーガーボタン */
.l-header-menu-open-button,
.l-header-menu-close-button {
  width: var(--header-height);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: var(--color-primary-dark);
}
.l-header-menu-open-button img,
.l-header-menu-close-button img {
  width: 22rem;
}
@media screen and (min-width: 900px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-close-button {
  position: absolute;
  right: 0;
  top: calc(var(--header-height) * -1);
  outline: none;
  z-index: var(--z-index-header);
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 15rem 20rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .l-footer {
    padding: 20rem 48rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.l-footer-privacy {
  display: grid;
  grid-template-columns: 50rem 1fr;
  gap: 15rem;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .l-footer-privacy {
    grid-template-columns: 60rem 1fr;
    gap: 20rem;
  }
}

.l-footer-privacy-text {
  font-size: 12rem;
}
@media screen and (min-width: 900px) {
  .l-footer-privacy-text {
    font-size: 14rem;
  }
}

.l-footer-copyright {
  font-size: 12rem;
  text-align: center;
  display: block;
  margin-top: 10rem;
}
@media screen and (min-width: 900px) {
  .l-footer-copyright {
    font-size: 14rem;
    margin-top: 0;
  }
}

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

.kv-inner {
  padding: 110rem 15rem 15rem;
  position: relative;
}
@media screen and (min-width: 900px) {
  .kv-inner {
    padding: 0;
    max-width: 919rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 629rem 1fr;
    align-items: center;
  }
}

.kv-text-wrap {
  position: relative;
  z-index: var(--z-index-default);
}

.kv-text-text {
  font-size: 16rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .kv-text-text {
    font-size: 20rem;
  }
}
.kv-text-text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .kv-text-text span {
    display: inline;
  }
}

.kv-text-text02 {
  color: var(--color-white);
  margin-top: 9rem;
  font-size: 24rem;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .kv-text-text02 {
    font-size: 34rem;
  }
}
.kv-text-text02 > span {
  display: block;
}
.kv-text-text02 > span:not(:first-child) {
  margin-top: 6rem;
}
.kv-text-text02 > span:nth-child(2) span:last-child {
  display: inline-block;
  margin-left: 4rem;
}
.kv-text-text02 > span:last-child {
  margin-top: 2rem;
}

.kv-text-text02-bg {
  background-color: var(--color-white);
  width: fit-content;
  font-weight: bold;
  font-size: 26rem;
  padding: 0 0 0 8rem;
  letter-spacing: 0;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .kv-text-text02-bg {
    font-size: 48rem;
    line-height: 1.3;
  }
}
.kv-text-text02-bg > span {
  background: var(--color-gradation02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kv-text-button {
  margin-top: 12rem;
}
@media screen and (min-width: 900px) {
  .kv-text-button {
    margin-top: 24rem;
    max-width: 496rem;
  }
}
.kv-text-button a {
  padding: 20rem 0;
}
.kv-text-button a::after {
  height: 14rem;
  width: 12rem;
  margin-left: 40rem;
}

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

.kv-text-button-text-small {
  font-size: 16rem;
  margin-left: 2rem;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .kv-text-button-text-small {
    font-size: 20rem;
  }
}

.kv-img {
  position: absolute;
  right: -65rem;
  bottom: -25rem;
  width: 360rem;
}
@media screen and (min-width: 900px) {
  .kv-img {
    position: static;
    width: 387rem;
    translate: -100rem 0;
  }
}

.kv-logo {
  background-color: var(--color-white);
  padding: 16rem 0;
}

.kv-logo-list {
  max-width: 1120rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 0;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .kv-logo-list {
    gap: 8rem;
  }
}

.kv-logo-item img {
  height: 33rem;
  width: auto;
}
@media screen and (min-width: 500px) {
  .kv-logo-item img {
    height: 44rem;
  }
}
@media screen and (min-width: 900px) {
  .kv-logo-item img {
    height: 60rem;
  }
}

/*!
page > lineup
------------------------------
*/
.lineup {
  background-color: var(--color-background-light);
  padding: 48rem 0 65rem;
}
@media screen and (min-width: 900px) {
  .lineup {
    padding: 64rem 0 80rem;
  }
}

.lineup-title-ja span {
  display: block;
}
@media screen and (min-width: 900px) {
  .lineup-title-ja span {
    display: inline;
  }
}

.lineup-text {
  font-size: 20rem;
  text-align: center;
  font-weight: 600;
  margin-top: 24rem;
}
@media screen and (min-width: 500px) {
  .lineup-text {
    font-size: 19rem;
  }
}
@media screen and (min-width: 900px) {
  .lineup-text {
    font-size: 26rem;
  }
}
.lineup-text > span:nth-child(1), .lineup-text > span:nth-child(2) {
  display: block;
}
@media screen and (min-width: 900px) {
  .lineup-text > span:nth-child(1), .lineup-text > span:nth-child(2) {
    display: inline;
  }
}
.lineup-text > span:nth-child(3) {
  display: block;
}

.lineup-text-primary {
  color: var(--color-primary);
}

.lineup-text-note {
  margin-top: 8rem;
  font-size: 14rem;
  text-align: center;
}

.lineup-box-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20rem;
  margin-top: 35rem;
}
@media screen and (min-width: 900px) {
  .lineup-box-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lineup-box {
  background-color: var(--color-white);
  padding: 24rem 20rem;
  box-shadow: var(--color-shadow);
  border-radius: 5rem;
}
@media screen and (min-width: 900px) {
  .lineup-box {
    padding: 24rem 32rem;
  }
}

.lineup-box-title {
  font-weight: 600;
  display: grid;
  grid-template-columns: 36rem 1fr;
  align-items: center;
  gap: 8rem;
}
@media screen and (min-width: 900px) {
  .lineup-box-title {
    grid-template-columns: 44rem auto 1fr;
    gap: 0;
  }
  .lineup-box-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
  }
}

.lineup-box-title-icon {
  content: "";
  display: block;
  width: 36rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-background-light);
}
@media screen and (min-width: 900px) {
  .lineup-box-title-icon {
    width: 44rem;
  }
}

.lineup-box-title-text {
  display: flex;
  align-items: baseline;
  gap: 4rem;
}
@media screen and (min-width: 900px) {
  .lineup-box-title-text {
    margin: 0 24rem 0 8rem;
  }
}
.lineup-box-title-text > span:nth-child(1) {
  font-size: 17rem;
}
@media screen and (min-width: 900px) {
  .lineup-box-title-text > span:nth-child(1) {
    font-size: 19rem;
  }
}
.lineup-box-title-text > span:nth-child(2) {
  display: block;
  font-size: 14rem;
}
@media screen and (min-width: 900px) {
  .lineup-box-title-text > span:nth-child(2) {
    font-size: 15rem;
  }
}

.lineup-box-title-text--br {
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 900px) {
  .lineup-box-title-text--br {
    flex-direction: row;
    gap: 4rem;
  }
}

.lineup-list {
  margin-top: 20rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
@media screen and (min-width: 900px) {
  .lineup-list {
    margin-top: 16rem;
  }
}

.lineup-item {
  font-size: 14rem;
  font-weight: 700;
  padding: 6rem 16rem;
  border-radius: 4rem;
  background: linear-gradient(93deg, #edf7ff 0%, #e1ecff 100%);
  color: var(--color-primary);
}
@media screen and (min-width: 900px) {
  .lineup-item {
    font-size: 16rem;
  }
}

/*!
page > job
------------------------------
*/
.job {
  background-color: var(--color-background-gray);
  padding: 48rem 0 65rem;
}
@media screen and (min-width: 900px) {
  .job {
    padding: 64rem 0 80rem;
  }
}

.job-title-ja span {
  display: block;
}
@media screen and (min-width: 900px) {
  .job-title-ja span {
    display: inline;
  }
}

.job-text {
  margin-top: 24rem;
  font-size: 20rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .job-text {
    font-size: 19rem;
  }
}
@media screen and (min-width: 900px) {
  .job-text {
    font-size: 26rem;
  }
}
@media screen and (min-width: 900px) {
  .job-text > span {
    display: block;
  }
}

.job-text-primary {
  color: var(--color-primary);
}

.job-text-note {
  margin-top: 8rem;
  font-size: 14rem;
  text-align: center;
}

.job-contents {
  margin-top: 35rem;
}

.job-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8rem;
}
@media screen and (min-width: 900px) {
  .job-menu {
    display: grid;
    grid-template-columns: repeat(3, 310rem);
    gap: 6rem;
  }
}

.job-menu-item-tab {
  width: 100%;
  border-radius: 5rem;
  transition: 0.3s;
  font-size: 15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8rem;
  transition: background-color 0.3s, border-top 0.3s;
  background-color: var(--color-gray);
  padding: 8rem 10rem;
}
.job-menu-item-tab span {
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}
@media screen and (min-width: 900px) {
  .job-menu-item-tab {
    padding: 12rem;
    border-radius: 5rem 5rem 0 0;
    justify-content: center;
    font-size: 18rem;
    border-top: 5rem solid var(--color-gray);
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .job-menu-item-tab:hover {
    background-color: var(--color-background-light);
    border-top: 5rem solid var(--color-primary);
  }
  .job-menu-item-tab:hover span {
    opacity: 1;
    color: var(--color-primary);
  }
}
.job-menu-item-tab.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .job-menu-item-tab.is-active {
    color: var(--color-font-base);
    background-color: var(--color-background-light);
    border-top: 5rem solid var(--color-primary);
  }
}
.job-menu-item-tab.is-active span {
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .job-menu-item-tab.is-active span {
    color: var(--color-primary);
  }
}
.job-menu-item-tab.is-active::after {
  border-right: 2rem solid var(--color-white);
  border-bottom: 2rem solid var(--color-white);
  opacity: 1;
}
.job-menu-item-tab::after {
  content: "";
  display: block;
  width: 8rem;
  height: 8rem;
  border-right: 2rem solid var(--color-font-base);
  border-bottom: 2rem solid var(--color-font-base);
  rotate: 45deg;
  opacity: 0.5;
}
@media screen and (min-width: 900px) {
  .job-menu-item-tab::after {
    display: none;
  }
}

.job-category-list {
  margin-top: 24rem;
  background-color: var(--color-background-light);
  padding: 32rem 16rem;
}
@media screen and (min-width: 900px) {
  .job-category-list {
    padding: 40rem;
    margin-top: 0;
  }
}

.job-category {
  display: none;
}
.job-category.is-active {
  display: block;
}
.job-category.is-loading .job-item:nth-child(n+7) {
  display: none;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32rem;
}
@media screen and (min-width: 900px) {
  .job-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24rem 32rem;
  }
}

.job-item {
  background-color: var(--color-white);
  padding: 20rem;
  border-radius: 5rem;
  box-shadow: var(--color-shadow);
}

.job-item-title {
  font-size: 16rem;
  text-align: center;
  font-weight: 600;
}

.job-item-salary-box {
  margin-top: 8rem;
  background-color: var(--color-background-light);
  padding: 2rem 0 6rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: 500;
  font-size: 14rem;
  gap: 4rem;
}

.job-item-salary {
  font-weight: 700;
  font-size: 28rem;
  font-family: var(--font-family-en);
  letter-spacing: -0.05em;
  color: var(--color-primary);
  translate: 0 2rem;
}

.job-item-text {
  margin-top: 8rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.6;
}

.job-item-more {
  display: block;
  background-color: var(--color-font-base);
  color: var(--color-white);
  border-radius: 5rem;
  width: 200rem;
  padding: 11rem;
  margin-inline: auto;
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .job-item-more {
    width: 257rem;
  }
}
.job-item-more span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
.job-item-more span::after {
  content: "";
  display: block;
  background-image: url("../img/icon-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 14rem;
  width: 14rem;
  translate: 0 2rem;
}

/*!
page > consultant
------------------------------
*/
.consultant-head {
  padding: 48rem 0 120rem;
  background-image: url(../img/consultant-bg-sp.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width: 900px) {
  .consultant-head {
    padding: 64rem 0 120rem;
    background-image: url(../img/consultant-bg.jpg);
  }
}

.consultant-title-ja span {
  display: block;
}
@media screen and (min-width: 900px) {
  .consultant-title-ja span {
    display: inline;
  }
}

.consultant-head-text {
  font-size: 20rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  margin-top: 24rem;
}
@media screen and (min-width: 900px) {
  .consultant-head-text {
    font-size: 26rem;
  }
}
.consultant-head-text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .consultant-head-text span {
    display: inline;
  }
}

.consultant-head-text02 {
  margin-top: 8rem;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  color: var(--color-white);
}
@media screen and (min-width: 500px) {
  .consultant-head-text02 > span {
    display: block;
  }
}
.consultant-head-text02 > span > span {
  display: block;
}
@media screen and (min-width: 500px) {
  .consultant-head-text02 > span > span {
    display: inline;
  }
}

.consultant-head-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  margin-top: 32rem;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .consultant-head-list {
    margin-top: 40rem;
  }
}

.consultant-head-list-item {
  background: var(--color-gradation);
  color: var(--color-white);
  padding: 6rem 8rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: center;
  font-size: 16rem;
}
@media screen and (min-width: 900px) {
  .consultant-head-list-item {
    width: 242rem;
    font-size: 18rem;
  }
}
.consultant-head-list-item::before {
  content: "";
  display: block;
  width: 36rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.consultant-head-list-item:nth-child(1)::before {
  background-image: url("../img/icon-consultant.svg");
}
.consultant-head-list-item:nth-child(2)::before {
  background-image: url("../img/icon-consultant02.svg");
}
.consultant-head-list-item:nth-child(3)::before {
  background-image: url("../img/icon-consultant03.svg");
}

.consultant-slider {
  margin-top: -80rem;
  padding-bottom: 56rem;
}
@media screen and (min-width: 900px) {
  .consultant-slider {
    padding-bottom: 80rem;
  }
}

.consultant-member {
  padding: 20rem 12rem;
  background-color: var(--color-background-light);
  border-radius: 5rem;
  box-shadow: var(--color-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.consultant-member > *:last-child {
  flex: 1;
}
@media screen and (min-width: 900px) {
  .consultant-member {
    padding: 20rem;
  }
}

.consultant-member-head {
  display: grid;
  grid-template-columns: 82rem 1fr;
  gap: 18rem;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .consultant-member-head {
    grid-template-columns: 173rem 1fr;
  }
}

.consultant-member-head-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5rem;
}
@media screen and (min-width: 900px) {
  .consultant-member-head-img img {
    aspect-ratio: 173/120;
    border-radius: 6rem;
  }
}

@media screen and (min-width: 900px) {
  .consultant-member-head-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 8rem;
  }
}

.consultant-member-head-text-title {
  font-size: 13rem;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .consultant-member-head-text-title {
    font-size: 14rem;
    width: 100%;
  }
}

.consultant-member-head-text-name {
  font-size: 18rem;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .consultant-member-head-text-name {
    font-size: 22rem;
  }
}

.consultant-member-head-text-en {
  font-size: 12rem;
  font-weight: 500;
  font-family: var(--font-family-en);
  color: var(--color-primary);
  display: block;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .consultant-member-head-text-en {
    font-size: 14rem;
  }
}

.consultant-member-box {
  margin-top: 8rem;
  background-color: var(--color-white);
  border-radius: 5rem;
  padding: 12rem;
}
@media screen and (min-width: 900px) {
  .consultant-member-box {
    padding: 12rem 16rem;
  }
}

.consultant-member-box-title {
  font-size: 14rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4rem;
}
@media screen and (min-width: 900px) {
  .consultant-member-box-title {
    font-size: 16rem;
  }
}

.consultant-member-box-text {
  font-size: 15rem;
  font-weight: 500;
}

.consultant-member-box-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.consultant-member-box-list-item {
  font-size: 15rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}
.consultant-member-box-list-item::before {
  content: "";
  display: block;
  width: 5rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  translate: 0 10rem;
}
.consultant-member-box-list-item span {
  color: var(--color-primary);
  font-family: var(--font-family-en);
  font-weight: 800;
}

/* ページネーション */
.consultant .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  margin-top: 20rem;
}
@media screen and (min-width: 900px) {
  .consultant .splide__arrows {
    margin-top: 24rem;
  }
}
.consultant .splide__arrow {
  width: 36rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consultant .splide__arrow img {
  width: 16rem;
}
.consultant .splide__arrow--next img {
  rotate: 180deg;
}
.consultant .splide__pagination {
  display: flex;
  gap: 8rem;
  justify-content: center;
}
.consultant .splide__pagination li {
  display: grid !important;
  place-items: center !important;
}
.consultant .splide__pagination__page {
  background-color: var(--color-gray);
  border-radius: 50%;
  width: 10rem;
  aspect-ratio: 1/1;
}
.consultant .splide__pagination__page.is-active {
  background-color: var(--color-primary);
}

/*!
page > kv
------------------------------
*/
.contact {
  background-color: var(--color-background-light);
  padding: 48rem 0 65rem;
}
@media screen and (min-width: 900px) {
  .contact {
    padding: 64rem 0 80rem;
  }
}
.contact .error {
  color: var(--color-red) !important;
  font-size: 16rem !important;
  display: inline-block !important;
  margin-top: 4rem !important;
}

.contact-form {
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-default);
  padding: 40rem 16rem;
  border-radius: 5rem;
  margin-top: 32rem;
}
@media screen and (min-width: 900px) {
  .contact-form {
    padding: 40rem 64rem;
    margin-top: 24rem;
  }
}

.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;
}

.contact-form-item-required {
  font-size: 12rem;
  color: var(--color-red);
}

.contact-input-text,
.contact-select {
  width: 100%;
  padding: 14rem 16rem;
  border-radius: 5px;
  font-size: 16rem;
  background-color: var(--color-background-gray);
  border: 1rem solid var(--color-border02);
  outline: none;
}
.contact-input-text:focus,
.contact-select:focus {
  border: 1rem solid var(--color-focus);
}

.contact-input-text::placeholder {
  color: var(--color-placeholder);
}

.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-error-block {
  display: block;
  width: 100%;
  margin-top: -8rem;
}
@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 */