@charset "UTF-8";
:root {
  --content-base: 160rem;
  --content-padding: 3rem;
  --content-padding-sp: 3rem;
  --content-gap: 10rem;
  --content-gap-sp: 5rem;
  --font-family--primary: "Noto Sans JP", sans-serif;
  --font-family--secondary: "Montserrat", sans-seri;
  --text-h1--pc: clamp(72px, 72px + 2.5vw - 32px, 80px);
  --text-h2--pc: clamp(30px, 30px + 3.1vw - 39.68px, 40px);
  --text-h3--pc: 20px;
  --text-h1--sp: 4rem;
  --text-h2--sp: 20px;
  --text-h3--sp: 16px;
  --text-xs--pc: clamp(10.4px, 10.4px + 0.8vw - 10.24px, 13px);
  --text-s--pc: clamp(11.2px, 11.2px + 0.9vw - 11.52px, 14px);
  --text-m--pc: clamp(12.8px, 12.8px + 1vw - 12.8px, 16px);
  --text-l--pc: clamp(14.4px, 14.4px + 1.1vw - 14.08px, 18px);
  --text-xl--pc: clamp(16px, 16px + 1.3vw - 16.64px, 20px);
  --text-xxl--pc: clamp(19.2px, 19.2px + 1.5vw - 19.2px, 24px);
  --text-xs--sp: 1.3rem;
  --text-s--sp: 1.4rem;
  --text-m--sp: 1.6rem;
  --text-l--sp: 1.8rem;
  --text-xl--sp: 2rem;
  --text-xxl--sp: 3rem;
  --letter-spacing-narrow: 0.02em;
  --letter-spacing-base: 0.05em;
  --letter-spacing-wide: 0.1em;
  --line-height-narrow: 1.5;
  --line-height-base: 1.8;
  --line-height-wide: 2;
  --color-primary: #2D8CCF;
  --color-secondary: #FED900;
  --color-text-base: #0A0A0A;
  --color-text-dark: #222222;
  --color-text-light: #ffffff;
  --color-background-base: #fff;
  --color-background-dark: #2D8CCF;
  --color-background-light: #F3F6FA;
  /* リンク関連 */
  --color-link-background-primary: #2D8CCF;
  --color-link-background-secondary: #0A0A0A;
  --color-link-text-primary: #ffffff;
  --color-link-text-secondary: #0A0A0A;
  --border-color: #cccccc;
  --spacing-base--pc: 0.8rem;
  --spacing-base--sp: 0.4rem;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  height: 100%;
}

body {
  background-color: var(--color-background-base);
  color: var(--color-text-base);
  font-family: var(--font-family--primary);
  font-weight: 500;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-style: normal;
  height: 100%;
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

iframe {
  border: 0;
}

p + p {
  margin-top: 2em;
}

* + address, * + dl, * + fieldset, * + figure, * + ol, * + table, * + pre, * + ul {
  margin-top: 3rem;
}

table, ul, ol {
  line-height: var(--line-height-narrow);
}

a {
  text-decoration: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

i, svg {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  max-width: 100%;
  height: auto;
}

.content__header {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.content__title {
  font-family: var(--font-family--secondary);
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-text-light);
}
.content__title > span {
  display: block;
}
.content__title--en {
  font-family: var(--font-family--secondary);
  letter-spacing: 0;
}
.content__title--ja {
  font-weight: 500;
  letter-spacing: var(--letter-spacing-base);
}
.content__body {
  background-color: var(--color-background-base);
  position: relative;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}
.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-background-base);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}
.menu-open .header__inner {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header__logo {
  width: 100%;
  display: block;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__nav-entry-link {
  background-color: var(--color-link-background-secondary);
  color: var(--color-link-text-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1rem;
  width: 100%;
  height: 50px;
  -webkit-transition: 0.2s background-color;
  transition: 0.2s background-color;
}
.header__nav-entry-link::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235%22%20height%3D%2239%22%20viewBox%3D%220%200%2035%2039%22%3E%20%3Cg%20id%3D%22icon_entry%22%20transform%3D%22translate(-2.5%20-1.5)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_5%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%205%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(10%203)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M36%2C29A16%2C16%2C0%2C1%2C0%2C4%2C29%22%20transform%3D%22translate(0%2010)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 1.8rem;
  height: 2rem;
  margin-right: 1.1rem;
}
.header__nav-entry-text {
  line-height: 1;
}
.header__nav-entry-text--en {
  font-family: var(--font-family--secondary);
}
.header__nav-entry-text--ja {
  font-size: 1rem;
  margin-left: 0.5rem;
  padding-bottom: 0.2rem;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.8rem clamp(16px, 16px + 7.5vw - 96px, 40px);
}
.header__nav-list a {
  font-family: var(--font-family--secondary);
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
}
.header__nav-list a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 100%;
  background-color: var(--color-text-base);
  position: absolute;
  -webkit-transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s transform, 0.3s opacity;
  transition: 0.3s transform, 0.3s opacity, 0.3s -webkit-transform;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  opacity: 0;
}

.footer {
  background-color: var(--color-primary);
  position: relative;
  z-index: 2;
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__nav-list a {
  font-family: var(--font-family--secondary);
  color: var(--color-text-light);
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
}
.footer__nav-list a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 100%;
  background-color: var(--color-text-light);
  position: absolute;
  -webkit-transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s opacity, 0.3s -webkit-transform;
  transition: 0.3s transform, 0.3s opacity;
  transition: 0.3s transform, 0.3s opacity, 0.3s -webkit-transform;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  opacity: 0;
}
.footer__logo {
  display: block;
}
.footer__logo img {
  width: 100%;
}
.footer__copy {
  font-weight: 500;
  color: var(--color-text-light);
  text-align: center;
}

.button {
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 0.5rem;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
  text-align: center;
}

.button-entry {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.button-entry::before, .button-entry::after {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.button-entry::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235%22%20height%3D%2239%22%20viewBox%3D%220%200%2035%2039%22%3E%20%3Cg%20id%3D%22icon_entry%22%20transform%3D%22translate(-2.5%20-1.5)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_5%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%205%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(10%203)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M36%2C29A16%2C16%2C0%2C1%2C0%2C4%2C29%22%20transform%3D%22translate(0%2010)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 3.4rem;
  height: 3.8rem;
}
.button-entry::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.243%22%20height%3D%2224.243%22%20viewBox%3D%220%200%2024.243%2024.243%22%3E%20%3Cg%20id%3D%22icon_entry_arrow%22%20transform%3D%22translate(-4.879%20-4.879)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_167%22%20data-name%3D%22%E3%83%91%E3%82%B9%20167%22%20d%3D%22M7%2C7H27V27%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_168%22%20data-name%3D%22%E3%83%91%E3%82%B9%20168%22%20d%3D%22M7%2C27%2C27%2C7%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 22px;
  height: 22px;
}
.button-entry__text--en {
  font-family: var(--font-family--secondary);
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding-sp);
  padding-right: var(--content-padding-sp);
  width: 100%;
}
.container-fluid {
  max-width: 100% !important;
}
.drawer-button {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none !important;
  z-index: 1000;
  text-align: right;
  gap: 1rem;
}
.drawer-button__lines {
  width: 2.5rem;
  height: 2rem;
  position: relative;
}
.drawer-button__line {
  display: block;
  position: absolute;
  height: 2px;
  background-color: var(--color-text-base);
  top: 50%;
  right: 0;
  width: 100%;
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.drawer-button__line:nth-child(1) {
  margin-top: -0.7rem;
}
.menu-open .drawer-button__line:nth-child(1) {
  margin-top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.menu-open .drawer-button__line:nth-child(2) {
  opacity: 0;
}
.drawer-button__line:nth-child(3) {
  margin-top: 0.7rem;
}
.menu-open .drawer-button__line:nth-child(3) {
  margin-top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-button__text {
  display: block;
  line-height: 1;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}
.drawer-button__text::before {
  font-family: var(--font-family--secondary);
  font-weight: bold;
  letter-spacing: 0;
  content: "Menu";
}
.menu-open .drawer-button__text::before {
  content: "Close";
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.menu-open .drawer-overlay {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.drawer-content {
  z-index: 999;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  padding-top: 6.4rem;
  opacity: 0;
  padding-top: 17.5rem;
  visibility: hidden;
}
.menu-open .drawer-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.drawer-content__inner {
  background-color: var(--color-background-base);
  border-radius: 1.5rem;
  height: 100%;
}
.drawer-content__scroll {
  overflow: auto;
  padding: 7rem 4rem 5.6rem;
  max-height: 100%;
}
.drawer-content .nav {
  display: grid;
}
.drawer-content .nav__item {
  border-bottom: 1px solid #EEEEEE;
  margin: 0;
  padding: 2rem 0;
}
.drawer-content .nav__link {
  display: block;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  color: var(--color-text-base);
}
.drawer-content .nav__text {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.drawer-content .nav__text--en {
  font-family: var(--font-family--secondary);
  font-size: var(--text-xxl--sp);
}
.drawer-content .nav__text--ja {
  font-size: var(--text-xs--sp);
  margin-top: 0.5rem;
}
.drawer-content .nav__interview {
  padding-left: 2rem;
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.drawer-content .nav__interview-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.drawer-content .nav__interview-image {
  width: 4rem;
}
.drawer-entry {
  margin-top: 3rem;
}
.drawer-entry__link {
  background-color: var(--color-link-background-secondary);
  color: var(--color-link-text-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1rem;
  width: 100%;
  height: 70px;
}
.drawer-entry__link::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235%22%20height%3D%2239%22%20viewBox%3D%220%200%2035%2039%22%3E%20%3Cg%20id%3D%22icon_entry%22%20transform%3D%22translate(-2.5%20-1.5)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_5%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%205%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(10%203)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M36%2C29A16%2C16%2C0%2C1%2C0%2C4%2C29%22%20transform%3D%22translate(0%2010)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 1.8rem;
  height: 2rem;
  margin-right: 1.1rem;
}
.drawer-entry__text {
  line-height: 1;
}
.drawer-entry__text--en {
  font-family: var(--font-family--secondary);
  font-size: var(--text-l--sp);
}
.drawer-entry__text--ja {
  font-size: 1rem;
  margin-left: 0.5rem;
  padding-bottom: 0.2rem;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-y-1 {
  row-gap: 0.5rem;
}

.gap-x-1 {
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-y-2 {
  row-gap: 1rem;
}

.gap-x-2 {
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-y-3 {
  row-gap: 1.5rem;
}

.gap-x-3 {
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.gap-y-4 {
  row-gap: 2rem;
}

.gap-x-4 {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.gap-5 {
  gap: 2.5rem;
}

.gap-y-5 {
  row-gap: 2.5rem;
}

.gap-x-5 {
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.gap-6 {
  gap: 3rem;
}

.gap-y-6 {
  row-gap: 3rem;
}

.gap-x-6 {
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.gap-7 {
  gap: 3.5rem;
}

.gap-y-7 {
  row-gap: 3.5rem;
}

.gap-x-7 {
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}

.gap-8 {
  gap: 4rem;
}

.gap-y-8 {
  row-gap: 4rem;
}

.gap-x-8 {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.gap-9 {
  gap: 4.5rem;
}

.gap-y-9 {
  row-gap: 4.5rem;
}

.gap-x-9 {
  -webkit-column-gap: 4.5rem;
     -moz-column-gap: 4.5rem;
          column-gap: 4.5rem;
}

.gap-10 {
  gap: 5rem;
}

.gap-y-10 {
  row-gap: 5rem;
}

.gap-x-10 {
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
.grid {
  display: grid;
}

.grid-col-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-col-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-col-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-col-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-col-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-col-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-col-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-col-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-col-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.form {
  letter-spacing: 0;
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button]),
.form textarea,
.form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  line-height: 1.5;
  outline: none;
  background-color: #F5F5F5;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button])::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder, .form select::-webkit-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button])::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button]):-ms-input-placeholder, .form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button])::-ms-input-placeholder, .form textarea::-ms-input-placeholder, .form select::-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form input:not([type=radio]):not([type=checkbox]):not([type=button])::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.form textarea {
  resize: none;
}
.form__description {
  text-align: center;
}
.form-container--error {
  background-color: #FFF5F5;
  border-radius: 1.5rem;
}

.form-inputs {
  display: grid;
  margin-top: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-inputs__label {
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.3;
}
.form-inputs__label-text span {
  font-weight: 500;
  font-size: 1.3rem;
}
.form-inputs__label-icon {
  font-weight: bold;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 1.6rem;
}
.form-inputs__input {
  font-weight: 400;
  overflow: hidden;
}

.form-submit {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-submit__button {
  width: 100%;
}
.form-submit .button {
  width: 100%;
}
.form-submit .button[disabled] {
  cursor: not-allowed;
  color: var(--color-text-base);
  background-color: #F3F6FA;
}

.form-checkbox {
  display: inline-block;
  cursor: pointer;
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + span::after {
  opacity: 1;
}
.form-checkbox span {
  display: block;
  position: relative;
  padding-left: 4rem;
}
.form-checkbox span::before, .form-checkbox span::after {
  content: "";
  display: block;
  position: absolute;
}
.form-checkbox span::before {
  border-radius: 0.3rem;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #F5F5F5;
}
.form-checkbox span::after {
  border-bottom: 2px solid #171717;
  border-left: 2px solid #171717;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  width: 18px;
  height: 8px;
  left: 0.6rem;
  top: 0.9rem;
}
.form-privacy__scroll {
  background-color: #F5F5F5;
  border-radius: 0.5rem;
}
.form-privacy__scroll-inner {
  overflow: auto;
  height: 80px;
}
.form-privacy__checkbox {
  text-align: center;
}

/* ファイル入力フィールドのスタイル */
.form-file {
  cursor: pointer;
}
.form-file__input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  cursor: pointer;
  overflow: hidden;
}
.form-file__input-hidden {
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}
.form-file__label {
  display: inline-block;
  line-height: 60px;
  padding-left: 2rem;
  height: 60px;
  cursor: pointer;
  white-space: nowrap;
  color: rgba(10, 10, 10, 0.5);
}

/* 選択されたファイル名のスタイル */
.selected-file-name {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  color: #333;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* エラーメッセージのスタイル */
.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px;
}
.error-message:empty {
  display: none;
}

.form-note {
  margin-top: 2rem;
}
.form-note p {
  text-indent: -1em;
  padding-left: 1em;
}

.nav {
  list-style: none;
  padding: 0;
}
.nav__item {
  margin-bottom: 2.7rem;
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-primary);
}
.nav__text--en {
  font-weight: 600;
  font-family: var(--font-family--secondary);
  line-height: 1.2;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table caption {
  font-weight: normal;
  color: #888;
}
.table th {
  padding: 2rem 0 2rem 1.6rem;
  text-align: left;
  font-weight: 500;
}
.table td {
  font-weight: 400;
  padding: 2rem 1.6rem;
}
.table-stripe tbody tr {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.table-stripe tbody tr:nth-child(odd) {
  background: #f8f8f8;
}
.table-border tbody tr {
  border-bottom: 1px solid var(--border-color);
}
.table-border tbody tr:first-child {
  border-top: 1px solid var(--border-color);
}
.table-scroller {
  overflow-x: auto;
}
.table-scroller table {
  min-width: 750px;
}

.breadcrumb {
  line-height: var(--line-height-narrow);
  font-family: var(--font-family--secondary);
  letter-spacing: 0;
}
.breadcrumb__list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb__item {
  font-weight: 600;
  color: var(--color-text-light);
}
.breadcrumb__item:not(:first-child) {
  position: relative;
}
.breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  background-color: var(--color-text-light);
  border-radius: 50%;
  width: 1px;
  position: absolute;
  height: 1.9rem;
  top: 0.1em;
  left: -2.1rem;
}
.heading-block:last-child {
  margin-bottom: 0;
}
.heading-block--light .heading-block__title {
  color: var(--color-text-light);
}
.heading-block--light .heading-block__title::before {
  background-image: url(../img/common/heading_title_icon_w.svg);
}
.heading-block--light .heading-block__catch-text {
  color: var(--color-text-light);
}
.heading-block__title {
  font-family: var(--font-family--secondary);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  display: block;
  position: relative;
}
.heading-block__title::before {
  background-image: url(../img/common/heading_title_icon.svg);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.heading-block__catch--textvisible .heading-block__catch-text {
  position: static;
  width: auto;
  height: auto;
  padding: initial;
  margin: initial;
  overflow: visible;
  clip: initial;
  border: initial;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: var(--letter-spacing-base);
}
.heading-block__catch-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: var(--color-primary);
  display: block;
}
.heading-block__catch-visual {
  display: block;
}
.section:last-child {
  margin-bottom: 0;
}
.section:first-child {
  margin-top: 0;
}
.section--indent {
  max-width: calc(var(--content-base) - 5rem);
}
.section__wrapper {
  background: var(--color-background-light);
  border-radius: 1.5rem;
}
.section__column {
  display: grid;
}
.section__header {
  position: relative;
}
.section__header-sticky {
  position: sticky;
  top: 7rem;
}

.recruit {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}
.recruit__description {
  color: var(--color-text-light);
  letter-spacing: var(--letter-spacing-base);
}
.recruit__buttons {
  display: grid;
}
.recruit__button {
  background-color: #fff;
  border-radius: 1rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__button-text--en {
  font-family: var(--font-family--secondary);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  display: block;
  position: relative;
}
.recruit__button-text--en::before {
  background-image: url(../img/common/heading_title_icon.svg);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.recruit__button-text--ja {
  line-height: 1.2;
}

.icon-entry {
  display: block;
  background-image: url(../img/common/icon_entry.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-arrow {
  position: relative;
}
.icon-arrow::before, .icon-arrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.icon-arrow::before {
  background-color: var(--color-background-light);
}
.icon-arrow::after {
  background-color: #0a0a0a;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.121%22%20height%3D%2211.121%22%20viewBox%3D%220%200%2011.121%2011.121%22%3E%20%3Cg%20id%3D%22arrow-up-right%22%20transform%3D%22translate(-5.939%20-5.939)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_29%22%20data-name%3D%22%E3%83%91%E3%82%B9%2029%22%20d%3D%22M7%2C7h9v9%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_30%22%20data-name%3D%22%E3%83%91%E3%82%B9%2030%22%20d%3D%22M7%2C16l9-9%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.121%22%20height%3D%2211.121%22%20viewBox%3D%220%200%2011.121%2011.121%22%3E%20%3Cg%20id%3D%22arrow-up-right%22%20transform%3D%22translate(-5.939%20-5.939)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_29%22%20data-name%3D%22%E3%83%91%E3%82%B9%2029%22%20d%3D%22M7%2C7h9v9%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_30%22%20data-name%3D%22%E3%83%91%E3%82%B9%2030%22%20d%3D%22M7%2C16l9-9%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  -webkit-mask-size: 11px auto;
          mask-size: 11px auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-image: none;
}

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

.paraglaph-s {
  margin-top: 1rem;
}

.sticky-entry {
  display: none;
}

.home {
  background-color: var(--color-primary);
}
.home__main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home__content {
  background-color: var(--color-primary);
}

.home-hero__visual {
  position: relative;
}
.home-hero__slides {
  opacity: 0;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
  overflow: hidden;
}
.home-hero__slides.slick-initialized {
  opacity: 1;
}
.home-hero__slides::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
}
.home-hero__image.move img {
  -webkit-animation: slideAnimation 10s forwards;
          animation: slideAnimation 10s forwards;
}
.home-hero__catch {
  z-index: 1;
}
.home-hero__title {
  color: var(--color-text-light);
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: bold;
}
.home-hero__title--en {
  font-family: var(--font-family--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
}
.home-hero__title--ja {
  display: block;
  letter-spacing: var(--letter-spacing-base);
}
.home-messegae__text {
  color: var(--color-text-light);
  font-weight: bold;
}
.home-company__box {
  background-color: var(--color-background-base);
}
.home-company__list {
  display: grid;
  list-style: none;
  padding: 0;
}
.home-company__list-link {
  position: relative;
  display: block;
}
.home-company__list-image img {
  width: 100%;
}
.home-company__list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 1rem;
}
.home-company__list-title--en {
  font-family: var(--font-family--secondary);
  color: #888888;
  font-weight: 600;
}
.home-company__list-title--ja {
  font-weight: 500;
}

@-webkit-keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0.39%);
            transform: translateX(0.39%);
  }
  100% {
    -webkit-transform: translateX(-0.39%);
            transform: translateX(-0.39%);
  }
}

@keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0.39%);
            transform: translateX(0.39%);
  }
  100% {
    -webkit-transform: translateX(-0.39%);
            transform: translateX(-0.39%);
  }
}
.home-interview {
  background-color: var(--color-background-base);
  position: relative;
}
.home-interview .section__header .heading-block__catch {
  display: block;
}
.home-interview__menu {
  list-style: none;
  padding: 0;
  display: grid;
}
.home-interview__menu-item .interview-button {
  background-color: #F5F5F5;
  width: 100%;
}
.home-interview__menu-item .interview-button__image {
  border-radius: 0.5rem;
}
.home-interview__menu-item.active .interview-button {
  background-color: var(--color-background-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.home-interview__visual-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.home-interview__visual-link .icon-arrow::before, .home-interview__visual-link .icon-arrow::after {
  right: 0;
}
.home-interview__visual-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-interview__visual-image img {
  max-width: 100%;
}
.home-interview__visual-text {
  color: var(--color-primary);
  font-weight: bold;
  line-height: var(--line-height-wide);
}
.home-interview__visual-name {
  text-align: right;
  padding-right: 6.2rem;
  padding-bottom: 0.3rem;
}
.company-message__image {
  margin-bottom: 3rem;
}
.company-message__sign {
  margin-top: 2rem;
  text-align: right;
}
.company-vision__catch {
  text-align: center;
}
.interview__profile {
  display: grid;
}
.interview__profile-position {
  line-height: 1.846;
}
.interview__content {
  display: grid;
}
.interview__qa:first-child .interview__image {
  margin-top: 0;
}
.interview__image:first-child {
  margin-top: 0;
}
.interview__image:last-child {
  margin-bottom: 0;
}
.interview__question {
  position: relative;
  line-height: 1.6;
  font-weight: bold;
}
.interview__question::before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: var(--color-text-base);
  top: 0.8em;
  width: 3.3rem;
}
.interview__answer p {
  margin-top: 1em;
  margin-bottom: 0;
}
.interview__answer p:first-child {
  margin-top: 0;
}
.interview__schedule {
  background-color: var(--color-background-light);
  border-radius: 0.5rem;
  padding: 3rem;
}
.interview__schedule-title {
  color: var(--color-primary);
  font-weight: bold;
  line-height: 1.3;
}
.interview__schedule-list {
  display: grid;
  list-style: none;
  padding: 0;
}
.interview__schedule-item {
  position: relative;
  line-height: 1.5;
}
.interview__schedule-item::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 0.5em;
  position: absolute;
  background-color: var(--color-primary);
}
.interview__schedule-time {
  color: var(--color-primary);
  font-weight: bold;
}
.interview__schedule-text {
  margin-top: 0.3em;
}
.interview__more-list {
  display: grid;
}

.interview-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border: 1px solid var(--border-color);
  background-color: var(--color-background-base);
  border-radius: 0.5rem;
  -webkit-transition: 0.23s ease-in-out background-color;
  transition: 0.23s ease-in-out background-color;
  padding: 2rem;
  gap: 2rem;
}
.interview-button__image img {
  border-radius: 0.5rem;
  width: 100%;
}
.interview-button__content {
  display: grid;
}
.requirements__welfare {
  background-color: var(--color-background-light);
  border-radius: 0.5rem;
  line-height: var(--line-height-narrow);
}
.requirements__welfare-title {
  color: var(--color-primary);
  font-weight: bold;
}
.requirements__welfare-label {
  color: var(--color-primary);
  position: relative;
  padding-left: 2.6rem;
}
.requirements__welfare-label::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
}
.requirements__welfare-label[data-icon=refresh]::before {
  background-image: url(../img/icon_refresh.svg);
}
.requirements__welfare-label[data-icon=keizoku]::before {
  background-image: url(../img/icon_keizoku.svg);
}
.requirements__welfare-label[data-icon=mic]::before {
  background-image: url(../img/icon_mic.svg);
}
.requirements__welfare-label[data-icon=sparkles]::before {
  background-image: url(../img/icon_sparkles.svg);
}
.requirements__welfare-label[data-icon=ticket]::before {
  background-image: url(../img/icon_ticket.svg);
}
.requirements__welfare-label[data-icon=gem]::before {
  background-image: url(../img/icon_gem.svg);
}
.requirements__welfare-text:last-child {
  margin-bottom: 0;
}
.requirements__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  line-height: 1;
  border-radius: 0.5rem;
  position: relative;
  -webkit-transition: 0.2s -webkit-filter;
  transition: 0.2s -webkit-filter;
  transition: 0.2s filter;
  transition: 0.2s filter, 0.2s -webkit-filter;
}
.requirements__button::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.243%22%20height%3D%2224.243%22%20viewBox%3D%220%200%2024.243%2024.243%22%3E%20%3Cg%20id%3D%22icon_entry_arrow%22%20transform%3D%22translate(-4.879%20-4.879)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_167%22%20data-name%3D%22%E3%83%91%E3%82%B9%20167%22%20d%3D%22M7%2C7H27V27%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_168%22%20data-name%3D%22%E3%83%91%E3%82%B9%20168%22%20d%3D%22M7%2C27%2C27%2C7%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: contain;
}
.requirements__button-text {
  font-family: var(--font-family--secondary);
}
.requirements__button-text--en {
  letter-spacing: var(--letter-spacing-base);
  font-weight: 600;
}
.requirements__button-text--ja {
  letter-spacing: 0;
  font-weight: bold;
}

/* entry */

.inview {
  opacity: 0;
}
.inview.is-visible {
  opacity: 1;
}

.inview-fadeUp {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}
.inview-fadeUp.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: var(--text-m--sp);
  }
  .content__header {
    background-image: url(../img/common/page_title_background_sp.svg);
    padding-top: 14rem;
    padding-bottom: 6.5rem;
  }
  .content__title {
    font-size: var(--text-h1--sp);
  }
  .content__title--en {
    font-size: var(--text-h1--sp);
  }
  .content__title--ja {
    font-size: var(--text-l--sp);
    margin-top: 1rem;
    padding-left: 0.5rem;
  }
  .content__body {
    border-radius: 1.5rem;
    margin-top: -1.5rem;
    padding: 5rem 0;
  }
  .content__body--interview {
    border-radius: 1.5rem 1.5rem 0 0;
    padding-bottom: 0;
  }
  .header {
    padding-top: 2rem;
  }
  .header .container {
    padding: 0 2rem;
  }
  .header__inner {
    padding: 1rem 2rem;
  }
  .header__logo {
    max-width: 14.9rem;
  }
  .header__nav-entry {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 2rem 1rem;
  }
  .header__nav-entry-text--en {
    font-size: var(--text-l--sp);
  }
  .header__nav-menu--pc {
    display: none;
  }
  .recruit + .footer {
    margin-top: -1.5rem;
  }
  .footer {
    padding: 4rem 0 8rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .footer__column {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .footer__site {
    justify-items: start;
  }
  .footer__nav-list a {
    font-size: 1.4rem;
  }
  .footer__logo {
    width: 166px !important;
  }
  .button {
    padding: 1.8rem 2rem;
  }
  .display-pc {
    display: none !important;
  }
  .drawer-content {
    padding: 2rem;
  }
  .gap-1--sp {
    gap: 0.5rem;
  }
  .gap-y-1--sp {
    row-gap: 0.5rem;
  }
  .gap-x-1--sp {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
  .gap-2--sp {
    gap: 1rem;
  }
  .gap-y-2--sp {
    row-gap: 1rem;
  }
  .gap-x-2--sp {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .gap-3--sp {
    gap: 1.5rem;
  }
  .gap-y-3--sp {
    row-gap: 1.5rem;
  }
  .gap-x-3--sp {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .gap-4--sp {
    gap: 2rem;
  }
  .gap-y-4--sp {
    row-gap: 2rem;
  }
  .gap-x-4--sp {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .gap-5--sp {
    gap: 2.5rem;
  }
  .gap-y-5--sp {
    row-gap: 2.5rem;
  }
  .gap-x-5--sp {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .gap-6--sp {
    gap: 3rem;
  }
  .gap-y-6--sp {
    row-gap: 3rem;
  }
  .gap-x-6--sp {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .gap-7--sp {
    gap: 3.5rem;
  }
  .gap-y-7--sp {
    row-gap: 3.5rem;
  }
  .gap-x-7--sp {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }
  .gap-8--sp {
    gap: 4rem;
  }
  .gap-y-8--sp {
    row-gap: 4rem;
  }
  .gap-x-8--sp {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .gap-9--sp {
    gap: 4.5rem;
  }
  .gap-y-9--sp {
    row-gap: 4.5rem;
  }
  .gap-x-9--sp {
    -webkit-column-gap: 4.5rem;
       -moz-column-gap: 4.5rem;
            column-gap: 4.5rem;
  }
  .gap-10--sp {
    gap: 5rem;
  }
  .gap-y-10--sp {
    row-gap: 5rem;
  }
  .gap-x-10--sp {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .grid-col-1--sp {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-col-2--sp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-col-3--sp {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-col-4--sp {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-col-5--sp {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-col-6--sp {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-col-7--sp {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-col-8--sp {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-col-9--sp {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-col-10--sp {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-col-11--sp {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-col-12--sp {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .form input:not([type=radio]):not([type=checkbox]):not([type=button]),
.form textarea,
.form select {
    padding: 1.3rem 1.5rem;
  }
  .form-container {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }
  .form-container--error {
    padding: 3rem;
  }
  .form-privacy__scroll {
    padding: 2rem;
  }
  .form-privacy__checkbox {
    margin-top: 2rem;
  }
  .nav__text--en {
    font-size: var(--text-xl--sp);
  }
  .nav__text--ja {
    font-size: var(--text-xs--sp);
  }
  .table-responsive {
    display: block;
  }
  .table-responsive caption,
.table-responsive tbody,
.table-responsive th, .table-responsive td, .table-responsive tr {
    display: block;
  }
  .table-responsive th {
    padding: 1.5rem 1.5rem 0;
  }
  .table-responsive td {
    padding: 0.5rem 1.5rem 1.5rem;
  }
  .table-scroller {
    margin-left: -6.154vw;
    margin-right: -6.154vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .breadcrumb {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
  .breadcrumb__list {
    gap: 0.4rem 3.6rem;
  }
  .heading-block__title {
    padding-left: 2.5rem;
  }
  .heading-block__title::before {
    width: 17px;
    height: 16px;
  }
  .heading-block__catch--textvisible .heading-block__catch-text {
    font-size: var(--text-xl--sp);
    margin-top: 1.6rem;
    line-height: 1.5;
  }
  .section {
    margin: var(--content-gap-sp) 0;
  }
  .section__wrapper {
    padding: 2.8rem var(--content-padding-sp) 3.4rem;
  }
  .section__column {
    gap: 2.4rem;
  }
  .section__description {
    margin-top: 2.4rem;
  }
  .recruit {
    background-image: url(../img/common/recruit_background_sp.jpg);
    margin-top: -1.5rem;
    padding: 6.5rem 0 6.4rem;
  }
  .recruit__heading {
    margin-bottom: 1.7rem;
  }
  .recruit__description {
    letter-spacing: 0;
  }
  .icon-entry {
    width: 18px;
    height: 20px;
  }
  .icon-arrow::before, .icon-arrow::after {
    width: 3rem;
    height: 3rem;
    right: 0.5rem;
  }
  .icon-arrow::before {
    background-color: var(--color-primary);
  }
  .icon-arrow::after {
    background-color: #fff;
  }
  .sticky-entry {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 2rem 1rem;
    z-index: 10;
  }
  .sticky-entry__link {
    background-color: var(--color-link-background-secondary);
    color: var(--color-link-text-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 1rem;
    width: 100%;
    height: 50px;
    -webkit-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  .sticky-entry__link::before {
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2235%22%20height%3D%2239%22%20viewBox%3D%220%200%2035%2039%22%3E%20%3Cg%20id%3D%22icon_entry%22%20transform%3D%22translate(-2.5%20-1.5)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_5%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%205%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(10%203)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_1%22%20data-name%3D%22%E3%83%91%E3%82%B9%201%22%20d%3D%22M36%2C29A16%2C16%2C0%2C1%2C0%2C4%2C29%22%20transform%3D%22translate(0%2010)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 1.8rem;
    height: 2rem;
    margin-right: 1.1rem;
  }
  .sticky-entry__text {
    line-height: 1;
  }
  .sticky-entry__text--en {
    font-family: var(--font-family--secondary);
    font-size: var(--text-l--sp);
  }
  .sticky-entry__text--ja {
    font-size: 1rem;
    margin-left: 0.5rem;
    padding-bottom: 0.2rem;
  }
  .home__main {
    background-image: url(../img/hero_background_sp.jpg);
    padding: 1rem 1rem 24rem;
  }
  .home-hero__slides {
    border-radius: 1.5rem;
  }
  .home-hero__catch {
    position: relative;
    margin-top: -9rem;
  }
  .home-hero__title--en {
    font-size: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1;
  }
  .home-hero__title--ja {
    font-size: var(--text-xl--sp);
    margin-top: 2rem;
  }
  .home-messegae {
    padding: 1px 0 12rem;
  }
  .home-messegae__text {
    font-size: var(--text-xl--sp);
    line-height: 3;
    margin-top: -14.5rem;
  }
  .home-company {
    margin-bottom: 5rem;
  }
  .home-company__box {
    padding: 3rem;
    border-radius: 1.5rem;
  }
  .home-company__list {
    gap: 2rem;
    margin-top: 2rem;
  }
  .home-company__list-image img {
    border-radius: 1rem;
  }
  .home-company__list-header {
    margin-top: 1.5rem;
    padding: 0 4.8rem 0.4rem 0.5rem;
  }
  .home-company__list-title--en {
    font-size: var(--text-xs--sp);
    padding-bottom: 0.2rem;
  }
  .home-interview {
    border-radius: 1.5rem;
    padding: 5rem 0;
  }
  .home-interview .section__column {
    gap: 2.7rem;
  }
  .home-interview__menu {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .home-interview__menu-item .interview-button {
    padding: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .home-interview #js-slide-inteview-menu,
.home-interview #js-slide-inteview {
    max-width: 84.615vw;
  }
  .home-interview__visual-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
  .home-interview__visual-sub {
    gap: 1rem;
  }
  .home-interview__visual-image img {
    border-radius: 1rem;
  }
  .home-interview__visual-text {
    padding-top: 1rem;
    line-height: var(--line-height-narrow);
  }
  .home-interview__visual-name {
    position: absolute;
    bottom: 0;
    right: 0.5rem;
  }
  .company__table {
    margin-top: 2rem;
  }
  .company-message__catch {
    width: 50.892vw;
    margin-top: 2.9rem;
  }
  .company-philosophy__catch {
    width: 64.359vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.8rem;
  }
  .company-vision {
    margin-top: -2.2rem;
  }
  .company-vision__catch {
    width: 64.103vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.9rem;
  }
  .company-history {
    margin-top: 2.6rem;
  }
  .interview .heading-block__catch-text {
    font-size: var(--text-l--sp);
  }
  .interview__profile {
    margin-top: 1.5rem;
  }
  .interview__profile-position {
    font-size: var(--text-xs--sp);
  }
  .interview__profile-name {
    font-size: var(--text-l--sp);
  }
  .interview__content {
    gap: 5rem;
  }
  .interview__image {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .interview__question {
    font-size: var(--text-l--sp);
    text-indent: 2.4em;
  }
  .interview__answer {
    margin-top: 3.2rem;
  }
  .interview__schedule-title {
    font-size: var(--text-l--sp);
  }
  .interview__schedule-list {
    margin-top: 1.1rem;
    gap: 1rem;
  }
  .interview__schedule-item {
    padding-left: 2rem;
  }
  .interview__schedule-item::before {
    left: 0;
  }
  .interview__schedule-text {
    font-size: var(--text-s--sp);
  }
  .interview__detail {
    position: relative;
    padding-bottom: 3.5rem;
  }
  .interview__detail::after {
    content: "";
    width: 100%;
    display: block;
    border-radius: 0 0 1.5rem 1.5rem;
    height: 1.6rem;
    background-color: var(--color-background-base);
    top: calc(100% - 1px);
    left: 0;
    z-index: 1;
    position: absolute;
  }
  .interview__more {
    background-color: var(--color-primary);
    padding: 5rem 3rem 3.5rem;
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .interview__more-list .interview-button__image {
    max-width: 8rem;
  }
  .interview-button__position {
    font-size: 1.3rem;
    line-height: 1.846;
  }
  .requirements__catch {
    width: 73.846vw;
    margin-top: 2.6rem;
  }
  .requirements__welfare {
    padding: 3rem;
    margin-top: 5rem;
  }
  .requirements__welfare-title {
    font-size: var(--text-l--sp);
  }
  .requirements__welfare-data {
    margin-top: 1.2rem;
  }
  .requirements__welfare-label::before {
    top: 0.25em;
  }
  .requirements__welfare-label[data-icon=ticket]::before {
    top: 0.28em;
  }
  .requirements__welfare-text {
    margin-bottom: 2rem;
    margin-top: 0.6rem;
  }
  .requirements__button {
    margin-top: 3rem;
    padding: 1.9rem 2.9rem;
  }
  .requirements__button::after {
    width: 12px;
    height: 12px;
    right: 2.9rem;
  }
  .requirements__button-icon {
    margin-right: 1rem;
  }
  .requirements__button-text--en {
    font-size: var(--text-l--sp);
    margin-right: 0.5rem;
  }
  .requirements__button-text--ja {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--text-m--pc);
  }
  .content__header {
    background-image: url(../img/common/page_title_background_pc.svg);
    padding-bottom: 11rem;
    padding-top: 22rem;
  }
  .content__title {
    font-size: var(--text-h1--pc);
  }
  .content__title--en {
    font-size: var(--text-h1--pc);
  }
  .content__title--ja {
    font-size: var(--text-xl--pc);
    margin-top: 3.3rem;
    padding-left: 0.5rem;
  }
  .content__body {
    border-radius: 3rem;
    padding-top: 15rem;
    padding-bottom: 15rem;
    margin-top: -3rem;
  }
  .content__body--up-wide {
    padding-top: 20rem;
  }
  .header {
    padding-top: 6rem;
  }
  .header__inner {
    padding: 1.5rem clamp(30px, 30px + 3.9vw - 29.952px, 50px);
  }
  .header__site {
    width: 40%;
  }
  .header__logo {
    max-width: 42.9rem;
  }
  .header__nav-entry {
    min-width: 160px;
    width: 200px;
    margin-left: clamp(20px, 20px + 9.4vw - 120.32px, 50px);
  }
  .header__nav-entry-text--en {
    font-size: var(--text-l--pc);
  }
  .header__nav-menu--sp {
    display: none;
  }
  .recruit + .footer {
    margin-top: -3rem;
  }
  .footer {
    padding: 8rem 0 3rem;
    border-radius: 3rem 3rem 0 0;
  }
  .footer__logo {
    width: 47.9rem;
  }
  .button {
    padding: 1.8rem 2rem;
    min-width: 300px;
  }
  .button-entry__text--en {
    font-size: clamp(24px, 24px + 1.9vw - 24.32px, 30px);
  }
  .container {
    max-width: calc(var(--content-base) + var(--content-padding) * 2);
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
  }
  .container-narrow {
    max-width: calc(var(--content-narrow) + var(--content-padding) * 2);
  }
  .container-wide {
    max-width: calc(var(--content-wide) + var(--content-padding) * 2);
  }
  .display-sp {
    display: none !important;
  }
  .gap-1--pc {
    gap: 0.5rem;
  }
  .gap-y-1--pc {
    row-gap: 0.5rem;
  }
  .gap-x-1--pc {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
  .gap-2--pc {
    gap: 1rem;
  }
  .gap-y-2--pc {
    row-gap: 1rem;
  }
  .gap-x-2--pc {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .gap-3--pc {
    gap: 1.5rem;
  }
  .gap-y-3--pc {
    row-gap: 1.5rem;
  }
  .gap-x-3--pc {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .gap-4--pc {
    gap: 2rem;
  }
  .gap-y-4--pc {
    row-gap: 2rem;
  }
  .gap-x-4--pc {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .gap-5--pc {
    gap: 2.5rem;
  }
  .gap-y-5--pc {
    row-gap: 2.5rem;
  }
  .gap-x-5--pc {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .gap-6--pc {
    gap: 3rem;
  }
  .gap-y-6--pc {
    row-gap: 3rem;
  }
  .gap-x-6--pc {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .gap-7--pc {
    gap: 3.5rem;
  }
  .gap-y-7--pc {
    row-gap: 3.5rem;
  }
  .gap-x-7--pc {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }
  .gap-8--pc {
    gap: 4rem;
  }
  .gap-y-8--pc {
    row-gap: 4rem;
  }
  .gap-x-8--pc {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .gap-9--pc {
    gap: 4.5rem;
  }
  .gap-y-9--pc {
    row-gap: 4.5rem;
  }
  .gap-x-9--pc {
    -webkit-column-gap: 4.5rem;
       -moz-column-gap: 4.5rem;
            column-gap: 4.5rem;
  }
  .gap-10--pc {
    gap: 5rem;
  }
  .gap-y-10--pc {
    row-gap: 5rem;
  }
  .gap-x-10--pc {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .grid-col-1--pc {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-col-2--pc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-col-3--pc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-col-4--pc {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-col-5--pc {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-col-6--pc {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-col-7--pc {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-col-8--pc {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-col-9--pc {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-col-10--pc {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-col-11--pc {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-col-12--pc {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .form input:not([type=radio]):not([type=checkbox]):not([type=button]),
.form textarea,
.form select {
    padding: 1.8rem 2rem;
  }
  .form textarea {
    padding: 1rem 1.4rem;
  }
  .form__description {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .form__inputarea {
    margin-top: 8rem;
  }
  .form-container {
    max-width: var(--content-narrow);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
  }
  .form-container--error {
    padding: 5rem;
  }
  .form-submit__button {
    max-width: 300px;
  }
  .form-privacy {
    margin-top: 1.5rem;
  }
  .form-privacy__scroll {
    padding: 3rem;
  }
  .form-privacy__checkbox {
    margin-top: 3rem;
  }
  .nav__text--en {
    font-size: var(--text-l--pc);
  }
  .nav__text--ja {
    font-size: var(--text-xs--pc);
  }
  .breadcrumb {
    margin-top: 5rem;
  }
  .breadcrumb__list {
    gap: 0.8rem 4.1rem;
  }
  .heading-block {
    margin-bottom: 4.6rem;
  }
  .heading-block__title {
    font-size: var(--text-xl--pc);
    padding-left: 3.2rem;
  }
  .heading-block__title::before {
    width: 22px;
    height: 20px;
  }
  .heading-block__catch {
    margin-top: 6.7rem;
  }
  .heading-block__catch--textvisible {
    margin-top: 3.4rem;
  }
  .heading-block__catch--textvisible .heading-block__catch-text {
    font-size: var(--text-h2--pc);
  }
  .grid--content-padding {
    padding: 0 5rem;
  }
  .section {
    margin: var(--content-gap) 0;
  }
  .section--padding {
    padding: 0 clamp(30px, 30px + 3.9vw - 29.952px, 50px);
  }
  .section__wrapper {
    padding: var(--content-gap) clamp(30px, 30px + 13.7vw - 105.216px, 100px);
  }
  .section__column {
    grid-template-columns: minmax(0, 725px) minmax(0, 725px);
    gap: clamp(30px, 30px + 3.9vw - 29.952px, 50px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section__column--padding {
    padding: 0 clamp(30px, 30px + 3.9vw - 29.952px, 50px);
  }
  .section__header-sticky {
    top: 20rem;
  }
  .section__content--paddingTop {
    padding-top: 7.4rem;
  }
  .section__description {
    font-size: var(--text-l--pc);
  }
  .recruit {
    padding: 18rem 0;
    margin-top: -3rem;
    background-image: url(../img/common/recruit_background_pc.jpg);
  }
  .recruit__heading {
    margin-bottom: 2.4rem;
  }
  .recruit__description {
    font-size: var(--text-l--pc);
  }
  .icon-entry {
    width: 32px;
    height: 36px;
  }
  .icon-arrow::before, .icon-arrow::after {
    width: 3.5rem;
    height: 3.5rem;
    right: 2rem;
  }
  .home__main {
    background-image: url(../img/hero_background_pc.jpg);
    padding: 3rem;
  }
  .home-hero__slides {
    border-radius: 3rem;
  }
  .home-hero__image img {
    min-width: 120%;
    margin-left: -10%;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-hero__catch {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 7rem;
  }
  .home-hero__title--en {
    gap: 0.25em;
    font-size: clamp(60px, 60px + 10.1vw - 77.568px, 120px);
  }
  .home-hero__title--ja {
    font-size: clamp(20px, 20px + 3.4vw - 26.112px, 40px);
  }
  .home-messegae {
    padding: 13.5rem 0;
  }
  .home-messegae__text {
    text-align: center;
    font-size: clamp(30px, 30px + 5.1vw - 39.168px, 60px);
    line-height: var(--line-height-wide);
  }
  .home-company {
    margin-bottom: 15rem;
  }
  .home-company__box {
    border-radius: 3rem;
    padding: 5rem;
  }
  .home-company__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
  }
  .home-company__list-image img {
    border-radius: 1.5rem;
  }
  .home-company__list-header {
    margin-top: 2rem;
    padding: 0 6.5rem 0.3rem clamp(10px, 10px + 3.9vw - 29.952px, 20px);
  }
  .home-company__list-title--en {
    font-size: var(--text-s--pc);
  }
  .home-company__list-title--ja {
    font-size: var(--text-xl--pc);
  }
  .home-interview {
    border-radius: 3rem;
    padding: 8rem 0 11.3rem;
  }
  .home-interview .section__column {
    grid-template-columns: 1fr 65.7982631931%;
  }
  .home-interview .section__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-interview .section__header .heading-block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .home-interview .section__header .heading-block__catch {
    margin-top: 4rem;
  }
  .home-interview__menu {
    gap: 1rem;
  }
  .home-interview__menu-item .interview-button {
    padding: 1rem 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 250px;
  }
  .home-interview__menu-item .interview-button__image {
    width: 4rem;
  }
  .home-interview__visual-link {
    gap: 4.2rem;
  }
  .home-interview__visual-main {
    padding-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-interview__visual-sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.5rem;
  }
  .home-interview__visual-image img {
    width: 100%;
    border-radius: 1.5rem;
  }
  .home-interview__visual-text {
    padding: 1.2rem 0 1.2rem 2rem;
    font-size: var(--text-xl--pc);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .company__table th {
    width: clamp(70px, 70px + 12.5vw - 96px, 134px);
  }
  .company-philosophy__catch {
    margin-top: 6rem;
  }
  .company-philosophy .section__content {
    padding-top: 7.4rem;
  }
  .company-vision {
    margin-top: -1rem;
  }
  .company-vision__catch {
    margin-top: 7.2rem;
  }
  .interview .heading-block {
    margin-bottom: 3.6rem;
  }
  .interview .heading-block__catch {
    margin-top: 3.9rem;
  }
  .interview__profile-position {
    font-size: var(--text-xs--pc);
  }
  .interview__profile-name {
    font-size: var(--text-xxl--pc);
    margin-top: -0.5rem;
  }
  .interview__content {
    gap: 6rem;
  }
  .interview__image {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .interview__question {
    font-size: var(--text-l--pc);
    padding-left: 4rem;
  }
  .interview__answer {
    margin-top: 0.8em;
  }
  .interview__schedule {
    margin-top: 4.6rem;
  }
  .interview__schedule-title {
    font-size: var(--text-l--pc);
  }
  .interview__schedule-list {
    gap: 2rem;
    margin-top: 2.4rem;
  }
  .interview__schedule-item {
    padding-left: 3rem;
  }
  .interview__schedule-item::before {
    left: 1rem;
  }
  .interview__schedule-text {
    font-size: var(--text-s--pc);
  }
  .interview__more {
    max-width: calc(var(--content-base) - 5rem);
    margin-top: 8rem;
  }
  .interview__more-list {
    gap: 2.5rem;
    width: calc(50% - 2.5rem);
    max-width: 72.5rem;
    margin-left: auto;
  }
  .interview-button__image {
    max-width: 8rem;
  }
  .interview-button__position {
    font-size: var(--text-xs--pc);
  }
  .requirements .table th {
    width: 134px;
  }
  .requirements .heading-block {
    margin-bottom: 3.6rem;
  }
  .requirements__catch {
    margin-top: 6rem;
  }
  .requirements__welfare {
    padding: 5rem;
    margin-top: 2rem;
  }
  .requirements__welfare-title {
    font-size: var(--text-xxl--pc);
  }
  .requirements__welfare-data {
    margin-top: 2.4rem;
  }
  .requirements__welfare-label::before {
    top: 0.3em;
  }
  .requirements__welfare-label[data-icon=ticket]::before {
    top: 0.24em;
  }
  .requirements__welfare-text {
    margin-bottom: 3rem;
    margin-top: 0.4rem;
  }
  .requirements__entry {
    margin-top: 5rem;
  }
  .requirements__button {
    padding: 3.2rem 5rem;
    max-width: 625px;
    margin-left: auto;
    margin-right: auto;
  }
  .requirements__button::after {
    width: 20px;
    height: 20px;
    right: 5rem;
  }
  .requirements__button-icon {
    margin-right: 2rem;
  }
  .requirements__button-text--en {
    font-size: clamp(24px, 24px + 1.9vw - 24.32px, 30px);
    margin-right: 1.5rem;
  }
  .requirements__button-text--ja {
    font-size: var(--text-xs--pc);
  }
  .entry-thanks__button {
    margin-top: 9.6rem;
  }
}
@media (hover: hover) {
  .header__nav-entry-link:hover {
    background-color: var(--color-primary);
  }
  .header__nav-list a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .footer__nav-list a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .button:hover {
    opacity: 0.8;
  }
  .button:hover::before, .button:hover::after {
    -webkit-transform: translate(-1.6rem, -50%);
            transform: translate(-1.6rem, -50%);
  }
  .breadcrumb__item a:hover {
    text-decoration: underline;
  }
  .icon-arrow:hover::before {
    background-color: var(--color-primary);
  }
  .icon-arrow:hover::after {
    background-color: #fff;
  }
  .home-interview__visual-link:hover .icon-arrow::before {
    background-color: var(--color-primary);
  }
  .home-interview__visual-link:hover .icon-arrow::after {
    background-color: #fff;
  }
  .interview-button:hover {
    background-color: var(--color-background-light);
  }
  .requirements__button:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
@media screen and (min-width: 1024px) {
  .footer__column {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__nav-list {
    gap: 4rem;
  }
  .footer__copy {
    font-size: 1.3rem;
    margin-top: 7rem;
  }
  .form-inputs {
    gap: 1.5rem 2rem;
    grid-template-columns: auto 1fr;
  }
  .form-inputs__label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form-inputs__label-text {
    text-align: right;
  }
  .form-inputs__input .form-toggle {
    margin: 1.2rem 0;
    width: 400px;
  }
  .recruit__buttons {
    gap: 2rem;
    max-width: 700px;
    margin-left: auto;
  }
  .recruit__button {
    grid-template-columns: clamp(150px, 150px + 25vw - 320px, 230px) 1fr;
    padding: 3rem 5rem;
    gap: 5rem;
  }
  .recruit__button.icon-arrow::before, .recruit__button.icon-arrow::after {
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .recruit__button.icon-arrow::before {
    background-color: var(--color-background-light);
  }
  .recruit__button-text--en {
    border-right: 1px solid var(--border-color);
    line-height: 60px;
    height: 60px;
    padding-left: 3.2rem;
  }
  .recruit__button-text--en::before {
    width: 22px;
    height: 20px;
  }
  .recruit__button-text--ja {
    font-size: var(--text-l--pc);
  }
  .home-hero__slide {
    min-height: 600px;
    height: calc(100vh - 6rem);
    max-height: 1020px;
  }
}
@media screen and (max-width: 1023.98px) {
  .footer__column {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    line-height: 1.5;
  }
  .footer__logo {
    width: 42.564vw;
    max-width: 332px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__copy {
    text-align: center;
    font-size: 1rem;
    margin-top: 3rem;
  }
  .form-inputs__label {
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form-inputs__label-text {
    padding-top: 0.5rem;
  }
  .form-inputs__input {
    margin-bottom: 2.2rem;
    margin-top: 1.2rem;
  }
  .recruit__buttons {
    gap: 1.5rem;
    margin-top: 0.2rem;
  }
  .recruit__button {
    padding: 3rem 2rem 3.5rem;
  }
  .recruit__button.icon-arrow::before, .recruit__button.icon-arrow::after {
    right: 2.5rem;
    bottom: 3rem;
    width: 3rem;
    height: 3rem;
  }
  .recruit__button-text--en {
    padding-left: 3rem;
  }
  .recruit__button-text--en::before {
    width: 17px;
    height: 16px;
    left: 0.3rem;
  }
  .recruit__button-text--ja {
    border-top: 1px solid var(--border-color);
    padding-top: 2.1rem;
    margin-top: 1rem;
    padding-left: 0.5rem;
  }
}
@media screen and (max-width: 1199.98px) {
  .recruit .heading-block__catch-text span {
    display: inline-block;
  }
  .interview__more-list {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .recruit .heading-block__catch-text span {
    display: block;
  }
  .interview__more-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .home-company__list-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    white-space: nowrap;
  }
}