@charset "UTF-8";
:root {
  --black: 52,53,56;
  --red: 255,0,0;
  --main: 48,155,111;
  --hover-main: 35, 130, 91;
  --lightgreen: 0,204,102;
  --hover-lightgreen: 0, 166, 83;
  --green02: 68, 164, 125;
  --gray: 145,147,155;
  --gray02: 246,249,248;
  --border: 208,209,209;
  --bg: 236,236,236;
  --bg02: 240, 240, 240;
  --bg03: 230, 230, 230;
  --base: 253,253,253;
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

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

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  background: rgb(var(--base));
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media all and (max-width: 767px) {
  body.is-recruit.is-interview {
    padding-top: 60px;
  }
  body.is-recruit.is-interview .l-header-recruit {
    background: #fff;
  }
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: 110px;
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.u-font-en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 1460px ) {
  .u-inner.is-wide-pc {
    max-width: 1400px;
  }
}

/*  .c-anchor01
================================================== */
.c-anchor01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.c-anchor01__item {
  width: calc(50% - 24px);
  margin: 0 12px -1px;
}
.c-anchor01__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 59px;
  border-top: solid 1px rgb(var(--border));
  border-bottom: solid 1px rgb(var(--border));
  padding-right: 12px;
  position: relative;
}
.c-anchor01__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  transition: none;
}
.c-anchor01__link::after {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 0;
  height: 100%;
  border-top: solid 1px rgb(var(--main));
  border-bottom: solid 1px rgb(var(--main));
}
@media all and (max-width: 767px) {
  .c-anchor01__link::before {
    width: 10px;
    height: 9px;
  }
}
@media all and (min-width: 768px) {
  .c-anchor01 {
    margin: 0 -10px;
  }
  .c-anchor01__item {
    width: calc(25% - 20px);
    margin: 0 10px;
  }
  .c-anchor01__link {
    font-size: 1.6rem;
    min-height: 62px;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .c-anchor01__link:hover {
    color: rgb(var(--main));
  }
  .c-anchor01__link:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
}

/*  .c-anchor01.is-col3-pc
================================================== */
@media all and (min-width: 768px) {
  .c-anchor01.is-col3-pc {
    margin: 0 -27px -30px;
  }
  .c-anchor01.is-col3-pc .c-anchor01__item {
    width: calc(33.3% - 54px);
    margin: 0 27px 30px;
  }
}

/*  .c-anchor01.is-col5-pc
================================================== */
@media all and (min-width: 768px) {
  .c-anchor01.is-col5-pc {
    margin: 0 -10px;
  }
  .c-anchor01.is-col5-pc .c-anchor01__item {
    width: calc(20% - 20px);
    margin: 0 10px;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
  border-color: rgb(var(--border));
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 20px 25px 23px 0;
  position: relative;
}
.c-archive01__item-in::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
}
.c-archive01__item-in::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0;
  border-bottom: solid 1px rgb(var(--main));
}
.c-archive01__item-in[target=_blank]::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
}
.c-archive01__item-in[href*=".pdf"]::before {
  display: inline-block;
  width: 22px;
  height: 14px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 14"><path d="M19.382,0H.618A1.638,1.638,0,0,0-1,1.653V12.347A1.638,1.638,0,0,0,.618,14H19.382A1.638,1.638,0,0,0,21,12.347V1.653A1.638,1.638,0,0,0,19.382,0m.757,12.347a.766.766,0,0,1-.757.773H.618a.766.766,0,0,1-.757-.773V1.653A.766.766,0,0,1,.618.88H19.382a.766.766,0,0,1,.757.773Z" transform="translate(1)" fill="currentColor"/><path d="M148.015,249.6a7.386,7.386,0,0,0-1.54-.1H144.4v6.553h1.3v-2.472h.844a7.238,7.238,0,0,0,1.343-.094,1.859,1.859,0,0,0,.672-.311,1.786,1.786,0,0,0,.545-.646,2.177,2.177,0,0,0,.214-1.015,2.065,2.065,0,0,0-.372-1.276,1.681,1.681,0,0,0-.923-.641m-.186,2.445a.853.853,0,0,1-.4.322,3.281,3.281,0,0,1-1.024.1h-.709v-1.86h.626a6.108,6.108,0,0,1,.932.045.891.891,0,0,1,.521.291.858.858,0,0,1,.206.59.894.894,0,0,1-.147.51" transform="translate(-141.36 -245.781)" fill="currentColor"/><path d="M557.812,250.233a2.138,2.138,0,0,0-.967-.6,4.531,4.531,0,0,0-1.221-.125h-2.367v6.553h2.437a3.839,3.839,0,0,0,1.146-.139,2.265,2.265,0,0,0,.91-.523,2.9,2.9,0,0,0,.687-1.158,4.392,4.392,0,0,0,.2-1.395,4.933,4.933,0,0,0-.21-1.549,2.876,2.876,0,0,0-.613-1.062m-.647,3.753a1.4,1.4,0,0,1-.339.633,1.187,1.187,0,0,1-.523.273,3.455,3.455,0,0,1-.783.063h-.967v-4.34h.582a5.754,5.754,0,0,1,1.063.063,1.224,1.224,0,0,1,.6.308,1.506,1.506,0,0,1,.368.635,3.992,3.992,0,0,1,.131,1.167,4.359,4.359,0,0,1-.131,1.2" transform="translate(-544.248 -245.781)" fill="currentColor"/><path d="M997.165,256.058h1.3v-2.785h2.678v-1.109H998.46v-1.551h3.1V249.5h-4.4Z" transform="translate(-981.671 -245.781)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 14"><path d="M19.382,0H.618A1.638,1.638,0,0,0-1,1.653V12.347A1.638,1.638,0,0,0,.618,14H19.382A1.638,1.638,0,0,0,21,12.347V1.653A1.638,1.638,0,0,0,19.382,0m.757,12.347a.766.766,0,0,1-.757.773H.618a.766.766,0,0,1-.757-.773V1.653A.766.766,0,0,1,.618.88H19.382a.766.766,0,0,1,.757.773Z" transform="translate(1)" fill="currentColor"/><path d="M148.015,249.6a7.386,7.386,0,0,0-1.54-.1H144.4v6.553h1.3v-2.472h.844a7.238,7.238,0,0,0,1.343-.094,1.859,1.859,0,0,0,.672-.311,1.786,1.786,0,0,0,.545-.646,2.177,2.177,0,0,0,.214-1.015,2.065,2.065,0,0,0-.372-1.276,1.681,1.681,0,0,0-.923-.641m-.186,2.445a.853.853,0,0,1-.4.322,3.281,3.281,0,0,1-1.024.1h-.709v-1.86h.626a6.108,6.108,0,0,1,.932.045.891.891,0,0,1,.521.291.858.858,0,0,1,.206.59.894.894,0,0,1-.147.51" transform="translate(-141.36 -245.781)" fill="currentColor"/><path d="M557.812,250.233a2.138,2.138,0,0,0-.967-.6,4.531,4.531,0,0,0-1.221-.125h-2.367v6.553h2.437a3.839,3.839,0,0,0,1.146-.139,2.265,2.265,0,0,0,.91-.523,2.9,2.9,0,0,0,.687-1.158,4.392,4.392,0,0,0,.2-1.395,4.933,4.933,0,0,0-.21-1.549,2.876,2.876,0,0,0-.613-1.062m-.647,3.753a1.4,1.4,0,0,1-.339.633,1.187,1.187,0,0,1-.523.273,3.455,3.455,0,0,1-.783.063h-.967v-4.34h.582a5.754,5.754,0,0,1,1.063.063,1.224,1.224,0,0,1,.6.308,1.506,1.506,0,0,1,.368.635,3.992,3.992,0,0,1,.131,1.167,4.359,4.359,0,0,1-.131,1.2" transform="translate(-544.248 -245.781)" fill="currentColor"/><path d="M997.165,256.058h1.3v-2.785h2.678v-1.109H998.46v-1.551h3.1V249.5h-4.4Z" transform="translate(-981.671 -245.781)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  flex: 0 0 72px;
  margin: 0;
  line-height: 26px;
  font-size: 1.2rem;
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  box-sizing: border-box;
  min-width: 110px;
  margin: 0 5px 5px 0;
  padding: 0px 15px;
  color: rgb(var(--main));
  border: solid 1px;
  border-radius: 9999px;
  font-size: 1.2rem;
  text-align: center;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 3em;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 1.3rem;
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-in {
    padding: 25px 6px;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.3s ease;
  }
  .c-archive01__item-in::before {
    right: 6px;
  }
  .c-archive01__item-in:hover {
    color: rgb(var(--main));
  }
  .c-archive01__item-in:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .c-archive01__item-in:hover::before {
    color: rgb(var(--main));
  }
  .c-archive01__item-meta {
    width: 216px;
  }
  .c-archive01__item-date {
    font-size: 1.3rem;
    margin-right: 8px;
  }
  .c-archive01__item-head {
    width: calc(100% - 216px);
    max-height: 3em;
    -webkit-line-clamp: 2;
    font-size: 1.6rem;
    margin: 0;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  counter-reset: pickup -1;
}
.c-archive02__item-in {
  display: block;
  position: relative;
}
.c-archive02__item-in::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 39px;
  height: 39px;
  background: url(../img/common/ico_arrow01.png) no-repeat 0 100%/cover;
  z-index: 3;
}
.c-archive02__item-num {
  position: absolute;
  bottom: 10px;
  right: 13px;
  font-size: 4.8rem;
  line-height: 1;
  z-index: 2;
  color: #fff;
  opacity: 0.14;
}
.c-archive02__item-img {
  position: relative;
}
.c-archive02__item-img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 122px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.35));
}
.c-archive02__item-cap {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.1rem;
  padding: 1px 10px 2px;
  color: #fff;
  background: rgba(var(--main), 0.68);
}
.c-archive02__item-head {
  position: absolute;
  bottom: 15px;
  left: 15px;
  overflow: hidden;
  display: -webkit-box;
  max-height: 1.5em;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .c-archive02__item-in::before {
    width: 70px;
    height: 70px;
  }
  .c-archive02__item-num {
    right: 35px;
    bottom: 20px;
    font-size: 8rem;
  }
  .c-archive02__item-cap {
    font-size: 1.4rem;
  }
  .c-archive02__item-head {
    bottom: 28px;
    left: 29px;
    max-height: 1.5em;
    -webkit-line-clamp: 1;
    font-size: 2rem;
    padding-right: 55px;
  }
}

/*  .c-archive03
================================================== */
.c-archive03 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -25px;
}
.c-archive03__item {
  width: calc(50% - 24px);
  margin: 0 12px 25px;
}
.c-archive03__item-head {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 15px;
}
.c-archive03__item-txt {
  margin-top: 8px;
}
.c-archive03__item-info {
  margin-top: 10px;
  font-size: 1.2rem;
}
.c-archive03__item-info dt {
  color: #fff;
  background: rgb(var(--main));
  text-align: center;
  margin-bottom: 5px;
}
@media all and (min-width: 768px) {
  .c-archive03 {
    margin: 0 -27px -80px;
  }
  .c-archive03__item {
    width: 330px;
    margin: 0 27px 80px;
  }
  .c-archive03__item-head {
    font-size: 1.8rem;
    margin-top: 20px;
  }
  .c-archive03__item-info {
    margin-top: 15px;
    font-size: 1.4rem;
    display: flex;
    flex-wrap: wrap;
  }
  .c-archive03__item-info dt {
    width: 143px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-archive03__item-info dd {
    width: calc(100% - 143px);
    padding-left: 8px;
    box-sizing: border-box;
  }
}

/*  .c-archive03.is-col4-pc
================================================== */
@media all and (min-width: 768px) {
  .c-archive03.is-col4-pc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    margin: 0;
  }
  .c-archive03.is-col4-pc .c-archive03__item {
    margin: 0;
    width: auto;
  }
}

/*  .c-archive04
================================================== */
.c-archive04__item {
  padding: 20px;
  background: #fff;
  margin-top: 15px;
  border: solid 1px rgb(var(--border));
  box-sizing: border-box;
}
.c-archive04__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-archive04__item-head-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.c-archive04__item-head-txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 7px;
}
.c-archive04__item-info {
  margin-top: 10px;
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
}
.c-archive04__item-info dd {
  width: calc(100% - 75px);
  padding-left: 13px;
  box-sizing: border-box;
}
.c-archive04__item-child {
  margin-bottom: -6px;
}
.c-archive04__item-child-item {
  margin-bottom: 6px;
  display: inline-block;
  padding: 0 8px;
  line-height: 1.5;
  color: #fff;
  background: rgb(var(--gray));
}
.c-archive04__item-child-item.is-checked {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-archive04 {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
  }
  .c-archive04__item {
    width: 535px;
    margin: 15px;
    padding: 30px;
  }
  .c-archive04__item-head-ico {
    width: 80px;
    height: 80px;
  }
  .c-archive04__item-head-txt {
    font-size: 2rem;
    padding-left: 15px;
  }
  .c-archive04__item-info {
    margin-top: 20px;
  }
  .c-archive04__item-info + .c-archive04__item-info {
    margin-top: 12px;
  }
  .c-archive04__item-info dt {
    width: 80px;
    height: 27px;
    margin-top: 0;
  }
  .c-archive04__item-info dd {
    width: calc(100% - 80px);
    padding-left: 0;
  }
  .c-archive04__item-child {
    margin-bottom: -10px;
  }
  .c-archive04__item-child-item {
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 3px 16px;
  }
}

/*  .c-archive05
================================================== */
.c-archive05__item + .c-archive05__item {
  margin-top: 65px;
}
.c-archive05__item-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.c-archive05__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive05__item-areaTxt {
  margin-top: 30px;
}
.c-archive05__item-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  background: rgb(var(--main));
  padding: 0 10px;
  color: #fff;
  font-weight: 700;
}
.c-archive05__item-head {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-archive05__item-info {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgb(var(--border));
}
.c-archive05__item-detail {
  font-size: 1.7rem;
  font-weight: 700;
}
.c-archive05__item .c-archive05__item-btn {
  margin-top: 15px;
  text-align: right;
}
@media all and (min-width: 768px) {
  .c-archive05__item + .c-archive05__item {
    margin-top: 100px;
  }
  .c-archive05__item:nth-child(even) .c-archive05__item-link {
    flex-direction: row-reverse;
  }
  .c-archive05__item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .c-archive05__item-link:hover .c-archive05__item-img img {
    transform: scale(1.1);
  }
  .c-archive05__item-link:hover .c-btn01__link::before {
    background: rgb(var(--main));
    transform: translateY(-50%) scale(1.1);
  }
  .c-archive05__item-link:hover .c-btn01__link::after {
    -webkit-animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  .c-archive05__item-img {
    flex: 0 0 430px;
    padding-top: 430px;
    overflow: hidden;
  }
  .c-archive05__item-img img {
    transition: all 0.3s ease;
  }
  .c-archive05__item-areaTxt {
    flex: 0 0 590px;
    margin-top: 0;
  }
  .c-archive05__item-label {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .c-archive05__item-head {
    font-size: 3.7rem;
  }
  .c-archive05__item-info {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
  }
  .c-archive05__item-detail {
    font-size: 2.1rem;
  }
  .c-archive05__item .c-archive05__item-btn {
    margin: 0;
  }
}

/*  .c-archive06
================================================== */
.c-archive06 {
  display: grid;
  grid-template-columns: 100%;
}
.c-archive06__item:first-child {
  margin-bottom: 50px;
}
.c-archive06__item.is-toggle {
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 1px 0 0;
}
.c-archive06__item.is-toggle:last-child {
  border-width: 1px 0;
}
.c-archive06__area-img {
  margin-bottom: 8px;
  position: relative;
}
.c-archive06__lbl {
  background: linear-gradient(to right, rgb(var(--main)) 0%, rgb(var(--lightgreen)) 100%);
  border-radius: 50%;
  color: #fff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}
.c-archive06__img {
  position: relative;
}
.c-archive06__img-item {
  aspect-ratio: 670/446;
}
.c-archive06__img-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive06__img .slick-dots {
  position: absolute;
  right: 8px;
  bottom: 12px;
}
.c-archive06__img .slick-dots li {
  display: inline-block;
  margin: 0 3px;
}
.c-archive06__img .slick-dots li button {
  position: relative;
  text-indent: -9999px;
  padding: 0;
  font-size: 0;
  border: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.c-archive06__img .slick-dots li.slick-active button {
  background: rgb(var(--lightgreen));
}
.c-archive06__head {
  position: relative;
}
.c-archive06__head-date {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.c-archive06__head-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-archive06__head[class*=toggle] {
  padding: 20px 35px 20px 0;
  cursor: pointer;
}
.c-archive06__head[class*=toggle]::before, .c-archive06__head[class*=toggle]::after {
  content: "";
  background: rgb(var(--main));
  display: block;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  transition: all 0.3s ease;
}
.c-archive06__head[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-archive06__head[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-archive06__con[class*=toggle] {
  padding-bottom: 20px;
}
.c-archive06__txt {
  margin-top: 10px;
}
.c-archive06__pdf {
  margin-top: 1em;
}
.c-archive06__pdf-link {
  color: rgb(var(--main));
}
.c-archive06__pdf-link::after {
  display: inline-block;
  width: 22px;
  height: 14px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 14"><path d="M19.382,0H.618A1.638,1.638,0,0,0-1,1.653V12.347A1.638,1.638,0,0,0,.618,14H19.382A1.638,1.638,0,0,0,21,12.347V1.653A1.638,1.638,0,0,0,19.382,0m.757,12.347a.766.766,0,0,1-.757.773H.618a.766.766,0,0,1-.757-.773V1.653A.766.766,0,0,1,.618.88H19.382a.766.766,0,0,1,.757.773Z" transform="translate(1)" fill="currentColor"/><path d="M148.015,249.6a7.386,7.386,0,0,0-1.54-.1H144.4v6.553h1.3v-2.472h.844a7.238,7.238,0,0,0,1.343-.094,1.859,1.859,0,0,0,.672-.311,1.786,1.786,0,0,0,.545-.646,2.177,2.177,0,0,0,.214-1.015,2.065,2.065,0,0,0-.372-1.276,1.681,1.681,0,0,0-.923-.641m-.186,2.445a.853.853,0,0,1-.4.322,3.281,3.281,0,0,1-1.024.1h-.709v-1.86h.626a6.108,6.108,0,0,1,.932.045.891.891,0,0,1,.521.291.858.858,0,0,1,.206.59.894.894,0,0,1-.147.51" transform="translate(-141.36 -245.781)" fill="currentColor"/><path d="M557.812,250.233a2.138,2.138,0,0,0-.967-.6,4.531,4.531,0,0,0-1.221-.125h-2.367v6.553h2.437a3.839,3.839,0,0,0,1.146-.139,2.265,2.265,0,0,0,.91-.523,2.9,2.9,0,0,0,.687-1.158,4.392,4.392,0,0,0,.2-1.395,4.933,4.933,0,0,0-.21-1.549,2.876,2.876,0,0,0-.613-1.062m-.647,3.753a1.4,1.4,0,0,1-.339.633,1.187,1.187,0,0,1-.523.273,3.455,3.455,0,0,1-.783.063h-.967v-4.34h.582a5.754,5.754,0,0,1,1.063.063,1.224,1.224,0,0,1,.6.308,1.506,1.506,0,0,1,.368.635,3.992,3.992,0,0,1,.131,1.167,4.359,4.359,0,0,1-.131,1.2" transform="translate(-544.248 -245.781)" fill="currentColor"/><path d="M997.165,256.058h1.3v-2.785h2.678v-1.109H998.46v-1.551h3.1V249.5h-4.4Z" transform="translate(-981.671 -245.781)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 14"><path d="M19.382,0H.618A1.638,1.638,0,0,0-1,1.653V12.347A1.638,1.638,0,0,0,.618,14H19.382A1.638,1.638,0,0,0,21,12.347V1.653A1.638,1.638,0,0,0,19.382,0m.757,12.347a.766.766,0,0,1-.757.773H.618a.766.766,0,0,1-.757-.773V1.653A.766.766,0,0,1,.618.88H19.382a.766.766,0,0,1,.757.773Z" transform="translate(1)" fill="currentColor"/><path d="M148.015,249.6a7.386,7.386,0,0,0-1.54-.1H144.4v6.553h1.3v-2.472h.844a7.238,7.238,0,0,0,1.343-.094,1.859,1.859,0,0,0,.672-.311,1.786,1.786,0,0,0,.545-.646,2.177,2.177,0,0,0,.214-1.015,2.065,2.065,0,0,0-.372-1.276,1.681,1.681,0,0,0-.923-.641m-.186,2.445a.853.853,0,0,1-.4.322,3.281,3.281,0,0,1-1.024.1h-.709v-1.86h.626a6.108,6.108,0,0,1,.932.045.891.891,0,0,1,.521.291.858.858,0,0,1,.206.59.894.894,0,0,1-.147.51" transform="translate(-141.36 -245.781)" fill="currentColor"/><path d="M557.812,250.233a2.138,2.138,0,0,0-.967-.6,4.531,4.531,0,0,0-1.221-.125h-2.367v6.553h2.437a3.839,3.839,0,0,0,1.146-.139,2.265,2.265,0,0,0,.91-.523,2.9,2.9,0,0,0,.687-1.158,4.392,4.392,0,0,0,.2-1.395,4.933,4.933,0,0,0-.21-1.549,2.876,2.876,0,0,0-.613-1.062m-.647,3.753a1.4,1.4,0,0,1-.339.633,1.187,1.187,0,0,1-.523.273,3.455,3.455,0,0,1-.783.063h-.967v-4.34h.582a5.754,5.754,0,0,1,1.063.063,1.224,1.224,0,0,1,.6.308,1.506,1.506,0,0,1,.368.635,3.992,3.992,0,0,1,.131,1.167,4.359,4.359,0,0,1-.131,1.2" transform="translate(-544.248 -245.781)" fill="currentColor"/><path d="M997.165,256.058h1.3v-2.785h2.678v-1.109H998.46v-1.551h3.1V249.5h-4.4Z" transform="translate(-981.671 -245.781)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin: 0 0 2px 10px;
}
@media all and (min-width: 768px) {
  .c-archive06 {
    grid-template-columns: 450px 570px;
    gap: 0 80px;
  }
  .c-archive06 > * {
    min-height: 0;
    min-width: 0;
  }
  .c-archive06__item {
    grid-column: 2/3;
  }
  .c-archive06__item:first-child {
    grid-column: 1/2;
    grid-row: 1/100;
    margin-bottom: 0;
  }
  .c-archive06__item.is-toggle {
    border-color: rgb(var(--border));
    border-style: solid;
    border-width: 0 0 1px;
  }
  .c-archive06__item.is-toggle:last-child {
    border-width: 0 0 1px;
  }
  .c-archive06__area-img {
    margin-bottom: 8px;
    position: relative;
  }
  .c-archive06__lbl {
    width: 60px;
    height: 60px;
    left: 10px;
    top: 10px;
  }
  .c-archive06__img .slick-dots {
    right: 12px;
    bottom: 20px;
  }
  .c-archive06__img .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .c-archive06__head-date {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
  .c-archive06__head-txt {
    font-size: 1.8rem;
  }
  .c-archive06__head[class*=toggle] {
    padding: 20px 50px 20px 0;
  }
  .c-archive06__con[class*=toggle] {
    padding-bottom: 25px;
  }
  .c-archive06__txt {
    margin-top: 16px;
  }
}

/*  .c-btn01
================================================== */
.c-btn01 {
  margin: 30px auto 0;
  text-align: center;
}
.c-btn01__link {
  display: inline-block;
  font-weight: 700;
  padding-right: 66px;
  position: relative;
}
.c-btn01__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgb(var(--black));
}
.c-btn01__link::after {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: #fff;
  width: 19px;
  height: 15px;
}
.c-btn01__txt {
  display: flex;
  align-items: center;
  min-height: 54px;
}
@media all and (min-width: 768px) {
  .c-btn01__link {
    padding-right: 85px;
  }
  .c-btn01__link::before {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
  }
  .c-btn01__link::after {
    right: 21px;
    width: 25px;
    height: 19px;
  }
  .c-btn01__link:hover::before {
    transform: translateY(-50%) scale(1.1);
  }
  .c-btn01__link:hover::after {
    -webkit-animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  .c-btn01__txt {
    min-height: 70px;
  }
}

@-webkit-keyframes arw-r {
  0% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}

@keyframes arw-r {
  0% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
/*  .c-btn01.is-left-pc
================================================== */
@media all and (min-width: 768px) {
  .c-btn01.is-left-pc {
    text-align: left;
  }
}

/*  .c-btn01.is-back
================================================== */
.c-btn01.is-back .c-btn01__link {
  padding-right: 0;
  padding-left: 66px;
}
.c-btn01.is-back .c-btn01__link::before {
  right: auto;
  left: 0;
}
.c-btn01.is-back .c-btn01__link::after {
  right: auto;
  left: 17px;
  transform: translateY(-50%) scale(-1, 1);
}
@media all and (min-width: 768px) {
  .c-btn01.is-back .c-btn01__link {
    padding-left: 85px;
  }
  .c-btn01.is-back .c-btn01__link::after {
    left: 21px;
  }
  .c-btn01.is-back .c-btn01__link:hover::after {
    -webkit-animation: arw-l 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    animation: arw-l 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
}

@-webkit-keyframes arw-l {
  0% {
    transform: translateX(0) translateY(-50%) scale(-1, 1);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%) translateY(-50%) scale(-1, 1);
    opacity: 0;
  }
  50.1% {
    transform: translateX(100%) translateY(-50%) scale(-1, 1);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%) scale(-1, 1);
    opacity: 1;
  }
}

@keyframes arw-l {
  0% {
    transform: translateX(0) translateY(-50%) scale(-1, 1);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%) translateY(-50%) scale(-1, 1);
    opacity: 0;
  }
  50.1% {
    transform: translateX(100%) translateY(-50%) scale(-1, 1);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%) scale(-1, 1);
    opacity: 1;
  }
}
/*  .c-btn01.is-back
================================================== */
@media all and (min-width: 768px) {
  .c-btn01.is-recruit .c-btn01__link:hover::before {
    background: rgb(var(--main));
  }
}

/*  .c-btn02
================================================== */
.c-btn02-list {
  margin-top: -20px;
}
.c-btn02__link {
  display: block;
  padding: 20px 0;
  border-bottom: solid 1px rgb(var(--border));
  position: relative;
}
.c-btn02__link::before {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.c-btn02__link::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0;
  border-bottom: solid 1px rgb(var(--main));
}
.c-btn02__en {
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgb(var(--gray));
  padding-left: 14px;
  position: relative;
}
.c-btn02__en::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--gray));
}
.c-btn02__main {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
}
@media all and (min-width: 768px) {
  .c-btn02 + .c-btn02 {
    margin-top: 13px;
  }
  .c-btn02__link {
    padding: 18px 0;
  }
  .c-btn02__link:hover::before {
    color: rgb(var(--main));
  }
  .c-btn02__link:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .c-btn02__link:hover .c-btn02__main {
    color: rgb(var(--main));
  }
  .c-btn02__en {
    font-size: 1.4rem;
  }
  .c-btn02__main {
    font-size: 2.4rem;
    transition: all 0.3s ease;
  }
}

@-webkit-keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*  .c-card01
================================================== */
.c-card01__item + .c-card01__item {
  margin-top: 50px;
}
.c-card01__img {
  position: relative;
  width: 100%;
  padding-top: 56.12%;
}
.c-card01__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card01__areaTxt {
  margin-top: 16px;
}
.c-card01__areaTxt-head {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--border));
  font-weight: 700;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-card01__item {
    display: flex;
    justify-content: space-between;
  }
  .c-card01__item + .c-card01__item {
    margin-top: 70px;
  }
  .c-card01__item.is-reverse {
    flex-direction: row-reverse;
  }
  .c-card01__img {
    flex: 0 0 535px;
    padding-top: 300px;
  }
  .c-card01__areaTxt {
    flex: 0 0 535px;
    margin-top: 0;
  }
  .c-card01__areaTxt-head {
    margin-bottom: 26px;
    padding-bottom: 15px;
    font-size: 2.2rem;
  }
}

@media all and (min-width: 768px) {
  .c-card01.is-pc-col2 {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -15px;
  }
  .c-card01.is-pc-col2 .c-card01__item {
    display: block;
    width: 535px;
    margin: 25px 15px;
  }
  .c-card01.is-pc-col2 .c-card01__areaTxt {
    margin-top: 16px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-main
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/* .c-bg01
================================================== */
.c-bg01 {
  background: rgb(var(--bg));
}

/* .c-bg02
================================================== */
.c-bg02 {
  background: rgb(var(--bg02));
}

/*  .c-dot01
================================================== */
.c-dot01 {
  text-align: center;
}
.c-dot01 li {
  display: inline-block;
  margin: 0 4px;
}
.c-dot01 li button {
  position: relative;
  text-indent: -9999px;
  padding: 0;
  font-size: 0;
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--border));
}
.c-dot01 li.slick-active button {
  background: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-dot01 li {
    margin: 0 5px;
  }
  .c-dot01 li button {
    width: 10px;
    height: 10px;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 54px;
  padding: 5px 15px;
  font-size: 1.6rem;
  border: 1px solid rgb(var(--gray));
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
input.c-form-parts:focus, select.c-form-parts:focus, textarea.c-form-parts:focus, button.c-form-parts:focus {
  border-color: rgb(var(--main));
  box-shadow: 0 0 6px rgba(var(--main), 0.5);
}
@media all and (min-width: 768px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    width: 450px;
    padding: 5px 20px;
  }
  input.c-form-parts.is-wide-pc, select.c-form-parts.is-wide-pc, textarea.c-form-parts.is-wide-pc, button.c-form-parts.is-wide-pc {
    width: 600px;
  }
}

textarea.c-form-parts {
  height: 250px;
  resize: vertical;
}
@media all and (min-width: 768px) {
  textarea.c-form-parts {
    width: 100%;
    padding: 15px 20px;
  }
}

select.c-form-parts {
  padding-right: 24px;
  background: no-repeat right 20px top 50%/12px;
  background-image: url(../img/common/ico_arrow02.png);
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default th, .c-form.is-default td {
  padding: 15px 0;
  border-style: solid;
  border-width: 0;
}
.c-form.is-default th {
  padding: 15px 0;
  font-weight: 700;
  text-align: left;
}
.c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
  display: block;
}
.c-form.is-default th {
  padding: 0 0 10px;
  border-bottom: 0;
}
.c-form.is-default td {
  padding: 0 0 30px;
}
.c-form.is-default tr + tr th {
  border-top: 0;
}
@media all and (min-width: 768px) {
  .c-form.is-default th {
    font-size: 1.8rem;
  }
  .c-form.is-default td {
    padding-bottom: 40px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-block;
  text-align: center;
  width: 41px;
  height: 18px;
  margin-left: 10px;
  background: rgb(var(--gray));
  color: #fff;
  font-size: 1.2rem;
  line-height: 18px;
}
.c-form-label.is-required {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-form-label {
    width: 53px;
    height: 24px;
    font-size: 1.6rem;
    line-height: 24px;
    margin-left: 15px;
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: rgb(var(--gray));
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}
@media all and (min-width: 768px) {
  .c-form-note {
    font-size: 1.6rem;
  }
}

td .c-form-note {
  margin-bottom: 9px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1160px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 20px;
  text-align: center;
}
.c-form-agreement__txt {
  text-align: center;
}
.c-form-agreement__txt a[target=_blank]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
  margin: 0 10px 3px 6px;
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 40px;
}

.c-form-btn {
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
  width: calc(100% - 40px);
  max-width: 400px;
  height: 70px;
  padding: 5px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  background: rgb(var(--black));
  border-radius: 9999px;
  position: relative;
}
.c-form-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
}
.c-form-btn::after {
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--black));
}
.c-form-btn + .c-form-btn {
  margin-top: 25px;
}
.c-form-btn.is-back {
  width: calc(100% - 80px);
  max-width: 300px;
  background: rgb(var(--gray));
}
.c-form-btn.is-back::before {
  right: auto;
  left: 17px;
}
.c-form-btn.is-back::after {
  right: auto;
  left: 27px;
  transform: translateY(-50%) scale(-1, 1);
  color: rgb(var(--gray));
}
@media all and (min-width: 768px) {
  .c-form-btn {
    height: 80px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .c-form-btn::before {
    width: 46px;
    height: 46px;
  }
  .c-form-btn::after {
    right: 32px;
    width: 16px;
    height: 13px;
  }
  .c-form-btn.is-back::after {
    left: 32px;
  }
  .c-form-btn:hover {
    opacity: 0.7;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(var(--border));
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 8px;
  left: 8px;
  content: "";
  display: block;
  width: 17px;
  height: 7px;
  border-style: solid;
  border-width: 4px 4px 0 0;
  transform: rotate(135deg);
  border-color: rgb(var(--main));
}
.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

.mw_wp_form .error {
  text-align: left;
}

/*  .c-head01
================================================== */
.c-head01 {
  margin-bottom: 44px;
  flex-shrink: 0;
}
.c-head01__en {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.c-head01__main {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgb(var(--main));
  padding-left: 22px;
  position: relative;
}
.c-head01__main::before, .c-head01__main::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.c-head01__main::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 65px;
  }
  .c-head01__en {
    font-size: 6rem;
    margin-bottom: 8px;
  }
  .c-head01__main {
    font-size: 1.5rem;
    padding-left: 32px;
  }
  .c-head01__main::before, .c-head01__main::after {
    width: 15px;
    height: 15px;
  }
  .c-head01__main::after {
    left: 8px;
  }
}

/*  .c-head01.is-white
================================================== */
.c-head01.is-white {
  color: #fff;
}
.c-head01.is-white .c-head01__main {
  color: #fff;
}
.c-head01.is-white .c-head01__main::before, .c-head01.is-white .c-head01__main::after {
  background: #fff;
  opacity: 0.4;
}
.c-head01.is-white .c-head01__main::after {
  opacity: 0.7;
}

/*  .c-head01.is-large
================================================== */
.c-head01.is-large .c-head01__en {
  font-size: 5rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-large .c-head01__en {
    font-size: 10rem;
    line-height: 1.2;
  }
}

/*  .c-head01.is-md
================================================== */
.c-head01.is-md .c-head01__en {
  font-size: 4rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-md .c-head01__en {
    font-size: 7.4rem;
    line-height: 1.2;
  }
}

/*  .c-head01.is-sm
================================================== */
.c-head01.is-sm .c-head01__en {
  font-size: 4rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-sm .c-head01__en {
    font-size: 5.6rem;
    line-height: 1.2;
  }
}

/*  .c-head02
================================================== */
.c-head02 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 17px;
  padding-bottom: 15px;
  border-bottom: solid 2px rgb(var(--border));
  margin-bottom: 25px;
  position: relative;
}
.c-head02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: calc(100% - 13px);
  background: linear-gradient(to bottom, rgb(var(--main)) 50%, rgb(var(--lightgreen)) 51%);
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 2.8rem;
    padding-left: 28px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .c-head02::before {
    width: 8px;
    height: calc(100% - 30px);
  }
}

/*  .c-head03
================================================== */
.c-head03 {
  margin-bottom: 44px;
  flex-shrink: 0;
}
.c-head03__en {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 25px;
  margin-bottom: 10px;
  color: rgb(var(--main));
  position: relative;
}
.c-head03__en::before, .c-head03__en::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.c-head03__en::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
.c-head03__main {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-head03 {
    margin-bottom: 80px;
  }
  .c-head03__en {
    font-size: 1.5rem;
    padding-left: 35px;
    margin-bottom: 20px;
  }
  .c-head03__en::before, .c-head03__en::after {
    width: 15px;
    height: 15px;
  }
  .c-head03__en::after {
    left: 8px;
  }
  .c-head03__main {
    font-size: 5rem;
  }
}

/*  .c-head03.is-center
================================================== */
.c-head03.is-center {
  text-align: center;
}
.c-head03.is-center .c-head03__en {
  display: inline-block;
}

/*  .c-head01
================================================== */
.c-head04 {
  position: relative;
  margin-bottom: 16px;
  padding-left: 33px;
  font-size: 2.1rem;
  line-height: 1.5;
}
.c-head04::before, .c-head04::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.c-head04::after {
  left: 8px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
@media all and (min-width: 768px) {
  .c-head04 {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
}

/* .c-head05
================================================== */
.c-head05 {
  position: relative;
  z-index: 1;
  margin-bottom: 31px;
}
.c-head05.is-has-ico {
  padding-top: 40px;
}
.c-head05.is-has-ico::before {
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.714' height='30' viewBox='0 0 25.714 30'%3E%3Cg id='Group_86956' data-name='Group 86956' transform='translate(3582.714 -603) rotate(90)'%3E%3Cpath id='Polygon_53' data-name='Polygon 53' d='M12.857,0,25.714,18.571H0Z' transform='translate(633 3557) rotate(90)' fill='%23309b6f'/%3E%3Cpath id='Polygon_59' data-name='Polygon 59' d='M12.857,0,25.714,18.571H0Z' transform='translate(621.571 3557) rotate(90)' fill='%230c6' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.c-head05.is-en-right .c-head05__en {
  left: unset;
  right: -20px;
}
.c-head05__en {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.1;
  color: rgba(var(--main), 0.1);
  letter-spacing: 0;
  position: absolute;
  top: 7px;
  left: -20px;
  z-index: -1;
}
.c-head05__lbl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 26px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto 10px;
  background-image: linear-gradient(to right, rgb(var(--main)), rgb(var(--lightgreen)));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 6px;
  box-sizing: border-box;
}
.c-head05__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-head05 {
    margin-bottom: 52px;
  }
  .c-head05.is-has-ico {
    padding-top: 60px;
  }
  .c-head05.is-has-ico::before {
    display: inline-block;
    width: 34px;
    height: 40px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.714' height='30' viewBox='0 0 25.714 30'%3E%3Cg id='Group_86956' data-name='Group 86956' transform='translate(3582.714 -603) rotate(90)'%3E%3Cpath id='Polygon_53' data-name='Polygon 53' d='M12.857,0,25.714,18.571H0Z' transform='translate(633 3557) rotate(90)' fill='%23309b6f'/%3E%3Cpath id='Polygon_59' data-name='Polygon 59' d='M12.857,0,25.714,18.571H0Z' transform='translate(621.571 3557) rotate(90)' fill='%230c6' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    transition: all 0.3s ease;
  }
  .c-head05.is-en-right .c-head05__en {
    right: -150px;
  }
  .c-head05__en {
    font-size: 20rem;
    top: -20px;
    left: -150px;
  }
  .c-head05__lbl {
    min-height: 50px;
    margin-bottom: 30px;
    font-size: 2.8rem;
    padding: 0 17px;
  }
  .c-head05__head {
    font-size: 5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .c-head05.is-en-right .c-head05__en {
    right: -20px;
  }
  .c-head05__en {
    left: -20px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/*  .c-intro01
================================================== */
.c-intro01__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}
.c-intro01__sub {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  color: rgb(var(--main));
}
@media all and (max-width: 767px) {
  .c-intro01__head.is-center-sp {
    text-align: center;
  }
}
@media all and (min-width: 768px) {
  .c-intro01__head {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 45px;
  }
  .c-intro01__sub {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .c-intro01__txt {
    text-align: center;
  }
}

/*  .c-list01
================================================== */
.c-list01 {
  counter-reset: list;
}
.c-list01__item {
  counter-increment: list;
  line-height: 1.5;
  padding-left: 23px;
  margin-top: 10px;
  position: relative;
}
.c-list01__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(list) ". ";
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-list01__item::before {
    top: 2px;
  }
}

/*  .c-list02
================================================== */
.c-list02__item {
  line-height: 1.5;
  padding-left: 18px;
  margin-top: 10px;
  position: relative;
}
.c-list02__item::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-list02__item::before {
    top: 9px;
  }
}

/*  .c-list02.is-col2-pc
================================================== */
@media all and (min-width: 768px) {
  .c-list02.is-col2-pc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* .c-marquee01
================================================== */
.c-marquee01 {
  display: block;
  height: 65px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.c-marquee01__content {
  display: flex;
  align-items: center;
  -webkit-animation: marquee 100s linear infinite;
  animation: marquee 100s linear infinite;
}
.c-marquee01__en {
  padding-left: 30px;
  max-width: 2000px;
  height: 65px;
}
@media all and (min-width: 768px) {
  .c-marquee01 {
    height: 121px;
  }
  .c-marquee01__en {
    padding-left: 80px;
    max-width: 15978px;
    height: 121px;
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5400px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5400px);
  }
}
@-webkit-keyframes marquee02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3600px);
  }
}
@keyframes marquee02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3600px);
  }
}
/*  .c-menu01
================================================== */
.c-menu01 {
  padding-top: 70px;
}
.c-menu01__content {
  background: rgb(var(--bg));
  border-radius: 10px;
}
.c-menu01__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}
.c-menu01__head {
  font-size: 1.6rem;
  color: rgb(var(--black));
}
.c-menu01-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.c-menu01-list__item {
  width: calc(50% - 14px);
  margin: 30px 7px 0;
}
.c-menu01-list__link {
  display: block;
}
.c-menu01-list__txt {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 20px 15px 0;
  border-bottom: solid 1px rgb(var(--border));
  position: relative;
}
.c-menu01-list__txt::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.c-menu01-list__txt::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0;
  border-bottom: solid 1px rgb(var(--main));
}
.c-menu01-list__cap {
  padding-top: 15px;
}
.c-menu01-list.is-large {
  margin: 0 0 -50px;
}
.c-menu01-list.is-large .c-menu01-list__item {
  width: 100%;
  margin: 0 0 50px;
}
.c-menu01-list.is-large .c-menu01-list__link {
  border-bottom: none;
}
.c-menu01-list.is-large .c-menu01-list__txt {
  font-size: 1.4rem;
  padding-top: 17px;
}
.c-menu01-list.is-large .c-menu01-list__txt::before {
  width: 12px;
  height: 10px;
  margin-top: 1px;
}
@media all and (max-width: 767px) {
  .c-menu01__content {
    margin-left: 20px;
    margin-right: 20px;
  }
  .c-menu01-list__img {
    width: 100%;
    padding-top: 58.6%;
    margin: 0 auto;
    position: relative;
  }
  .c-menu01-list__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-menu01-list__txt::before {
    width: 9px;
    height: 8px;
    margin-top: -1px;
  }
  .c-menu01-list__txt.is-high-sp {
    padding-top: 22px;
    padding-bottom: 23px;
  }
}
@media all and (min-width: 768px) {
  .c-menu01 {
    padding-top: 180px;
  }
  .c-menu01__content {
    max-width: 1720px;
    margin: 0 auto;
  }
  .c-menu01__inner {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .c-menu01__head {
    font-size: 2.4rem;
    padding-left: 38px;
    margin-bottom: 40px;
  }
  .c-menu01-list {
    margin: 0 -13px;
  }
  .c-menu01-list__img {
    width: 199px;
    height: 132px;
  }
  .c-menu01-list__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-menu01-list__item {
    width: 199px;
    margin: 0 13px;
  }
  .c-menu01-list__link {
    transition: all 0.3s ease;
  }
  .c-menu01-list__link:hover {
    color: rgb(var(--main));
  }
  .c-menu01-list__link:hover .c-menu01-list__txt::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .c-menu01-list__txt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.6rem;
    padding: 0 20px 0 0;
    min-height: 68px;
  }
  .c-menu01-list__cap {
    padding-top: 20px;
  }
  .c-menu01-list.is-col6-pc {
    margin: 0 -14px;
  }
  .c-menu01-list.is-col6-pc .c-menu01-list__item {
    width: 160px;
    margin: 0 14px;
  }
  .c-menu01-list.is-col4-pc {
    margin: 0 -13px;
  }
  .c-menu01-list.is-col4-pc .c-menu01-list__item {
    width: 255px;
    margin: 0 13px;
  }
  .c-menu01-list.is-col4-pc .c-menu01-list__img {
    width: 100%;
    height: 150px;
  }
  .c-menu01-list.is-large {
    margin: 0 -15px -90px;
  }
  .c-menu01-list.is-large .c-menu01-list__item {
    width: 535px;
    margin: 0 15px 90px;
  }
  .c-menu01-list.is-large .c-menu01-list__img {
    width: 100%;
    height: 0;
    padding-top: 58.6%;
    margin: 0 auto;
    position: relative;
  }
  .c-menu01-list.is-large .c-menu01-list__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-menu01-list.is-large .c-menu01-list__txt {
    font-size: 2.2rem;
    padding-top: 0;
  }
}

/*  .c-menu01.c-bg01
================================================== */
.c-menu01.c-bg01 .c-menu01__content {
  background: #fff;
}
.c-menu01.c-bg01 + .l-breadcrumb {
  background: rgb(var(--bg));
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0 0;
}
.c-pager01 li {
  margin: 0 2px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  background: rgb(var(--bg));
  border-radius: 50%;
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.previous, .c-pager01 li.next {
  margin-left: 15px;
}
.c-pager01 li.previous a, .c-pager01 li.next a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px rgb(var(--black));
  background: #fff;
  color: #fff;
  position: relative;
}
.c-pager01 li.previous a::before, .c-pager01 li.next a::before {
  display: inline-block;
  width: 11.464px;
  height: 6.833px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: rgb(var(--black));
}
.c-pager01 li.previous {
  margin-right: 15px;
  margin-left: 0;
}
.c-pager01 li.previous a::before {
  transform: translate(-50%, -50%) scale(-1, 1) rotate(-90deg);
}
@media all and (min-width: 768px) {
  .c-pager01 li {
    margin: 0 5px;
  }
  .c-pager01 li a, .c-pager01 li span {
    width: 40px;
    height: 40px;
  }
  .c-pager01 li.previous a, .c-pager01 li.next a {
    width: 50px;
    height: 50px;
  }
  .c-pager01 li.previous a::before, .c-pager01 li.next a::before {
    width: 15px;
    height: 9px;
  }
  .c-pager01 li.previous a:hover, .c-pager01 li.next a:hover {
    color: rgb(var(--main));
    background: rgb(var(--main));
    border-color: rgb(var(--main));
  }
  .c-pager01 li.previous a:hover::before, .c-pager01 li.next a:hover::before {
    color: #fff;
  }
  .c-pager01 li.next {
    margin-left: 20px;
    margin-right: 0;
  }
  .c-pager01 li.previous {
    margin-right: 20px;
  }
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    color: #fff;
    background: rgb(var(--black));
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding-top: 30px;
  line-height: 1;
  border-top: solid 1px rgb(var(--border));
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  padding: 15px 0;
  font-weight: 700;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: auto;
}
.c-pager02__previous a, .c-pager02__next a {
  position: relative;
}
.c-pager02__previous a::before, .c-pager02__next a::before {
  display: inline-block;
  width: 11.464px;
  height: 6.833px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
  transition: none;
}
.c-pager02__previous a::after, .c-pager02__next a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 50px;
}
.c-pager02__previous a::before {
  left: 14px;
  transform: translateY(-50%) rotate(90deg);
}
.c-pager02__previous a::after {
  right: auto;
  left: 0;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 50px;
}
.c-pager02__next a::before {
  right: 14px;
}
.c-pager02__all {
  display: flex;
  justify-content: center;
  clear: both;
  margin: 0 auto;
}
.c-pager02__all a {
  margin-top: 30px;
  height: 55px;
  padding-left: 66px;
  position: relative;
}
.c-pager02__all a::before {
  display: inline-block;
  width: 19.286px;
  height: 18.879px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.286 18.879"><path d="M3.857,1.929A1.928,1.928,0,1,1,1.929,0,1.928,1.928,0,0,1,3.857,1.929" fill="currentColor"/><path d="M22.449,1.929A1.928,1.928,0,1,1,20.521,0a1.929,1.929,0,0,1,1.928,1.929" transform="translate(-10.878)" fill="currentColor"/><path d="M41.039,1.929A1.929,1.929,0,1,1,39.11,0a1.929,1.929,0,0,1,1.929,1.929" transform="translate(-21.753)" fill="currentColor"/><path d="M3.857,20.031A1.928,1.928,0,1,1,1.929,18.1a1.928,1.928,0,0,1,1.928,1.929" transform="translate(0 -10.591)" fill="currentColor"/><path d="M22.449,20.031A1.928,1.928,0,1,1,20.521,18.1a1.928,1.928,0,0,1,1.928,1.929" transform="translate(-10.878 -10.591)" fill="currentColor"/><path d="M41.039,20.031A1.929,1.929,0,1,1,39.11,18.1a1.929,1.929,0,0,1,1.929,1.929" transform="translate(-21.753 -10.591)" fill="currentColor"/><path d="M3.857,38.133a1.928,1.928,0,1,1-1.928-1.928,1.928,1.928,0,0,1,1.928,1.928" transform="translate(0 -21.182)" fill="currentColor"/><path d="M22.449,38.133a1.928,1.928,0,1,1-1.928-1.928,1.928,1.928,0,0,1,1.928,1.928" transform="translate(-10.878 -21.182)" fill="currentColor"/><path d="M41.039,38.133a1.929,1.929,0,1,1-1.929-1.928,1.928,1.928,0,0,1,1.929,1.928" transform="translate(-21.753 -21.182)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.286 18.879"><path d="M3.857,1.929A1.928,1.928,0,1,1,1.929,0,1.928,1.928,0,0,1,3.857,1.929" fill="currentColor"/><path d="M22.449,1.929A1.928,1.928,0,1,1,20.521,0a1.929,1.929,0,0,1,1.928,1.929" transform="translate(-10.878)" fill="currentColor"/><path d="M41.039,1.929A1.929,1.929,0,1,1,39.11,0a1.929,1.929,0,0,1,1.929,1.929" transform="translate(-21.753)" fill="currentColor"/><path d="M3.857,20.031A1.928,1.928,0,1,1,1.929,18.1a1.928,1.928,0,0,1,1.928,1.929" transform="translate(0 -10.591)" fill="currentColor"/><path d="M22.449,20.031A1.928,1.928,0,1,1,20.521,18.1a1.928,1.928,0,0,1,1.928,1.929" transform="translate(-10.878 -10.591)" fill="currentColor"/><path d="M41.039,20.031A1.929,1.929,0,1,1,39.11,18.1a1.929,1.929,0,0,1,1.929,1.929" transform="translate(-21.753 -10.591)" fill="currentColor"/><path d="M3.857,38.133a1.928,1.928,0,1,1-1.928-1.928,1.928,1.928,0,0,1,1.928,1.928" transform="translate(0 -21.182)" fill="currentColor"/><path d="M22.449,38.133a1.928,1.928,0,1,1-1.928-1.928,1.928,1.928,0,0,1,1.928,1.928" transform="translate(-10.878 -21.182)" fill="currentColor"/><path d="M41.039,38.133a1.929,1.929,0,1,1-1.929-1.928,1.928,1.928,0,0,1,1.929,1.928" transform="translate(-21.753 -21.182)" fill="currentColor"/></svg>');
  mask-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
  color: #fff;
}
.c-pager02__all a::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgb(var(--black));
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-pager02 {
    margin-top: 100px;
    padding-top: 50px;
  }
  .c-pager02 a {
    height: 50px;
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    color: rgb(var(--main));
  }
  .c-pager02 a:hover::before {
    color: #fff;
  }
  .c-pager02 a:hover::after {
    background: rgb(var(--main));
  }
  .c-pager02__previous, .c-pager02__next {
    margin-bottom: -70px;
  }
  .c-pager02__previous a::before, .c-pager02__next a::before {
    width: 15px;
    height: 9px;
  }
  .c-pager02__previous a::after, .c-pager02__next a::after {
    width: 50px;
    height: 50px;
  }
  .c-pager02__previous a {
    padding-left: 70px;
  }
  .c-pager02__previous a::before {
    left: 17px;
  }
  .c-pager02__next a {
    padding-right: 70px;
  }
  .c-pager02__next a::before {
    right: 17px;
  }
  .c-pager02__all a {
    margin-top: -10px;
    height: 72px;
    padding-left: 80px;
  }
  .c-pager02__all a::before {
    width: 25px;
    height: 25px;
    left: 23px;
  }
  .c-pager02__all a::after {
    width: 70px;
    height: 70px;
  }
}

/*  .c-policy01-intro
================================================== */
.c-policy01-intro {
  margin-bottom: 70px;
}
@media all and (min-width: 768px) {
  .c-policy01-intro {
    margin-bottom: 170px;
  }
}

/*  .c-policy01-sec
================================================== */
.c-policy01-sec + .c-policy01-sec {
  margin-top: 55px;
}
.c-policy01-sec a[target=_blank]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
  margin: 0 0 2px 10px;
}
.c-policy01-sec__tit {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 10px;
}
.c-policy01-sec__list.is-high .c-list01__item {
  line-height: 2;
}
.c-policy01-sec .c-list01,
.c-policy01-sec .c-list02 {
  margin: 15px 0;
}
@media all and (min-width: 768px) {
  .c-policy01-sec + .c-policy01-sec {
    margin-top: 100px;
  }
  .c-policy01-sec__tit {
    font-size: 2.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .c-policy01-sec .c-list01,
.c-policy01-sec .c-list02 {
    margin: 20px 0;
  }
}

/*  .c-recommend01
================================================== */
.c-recommend01 {
  position: relative;
  z-index: 3;
  margin-top: 74px;
  background: rgb(var(--main));
  color: #fff;
}
.c-recommend01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 72.46vw;
  background: url(../img/recruit/recommend/bg_deco01_sp.png) no-repeat top right/contain;
}
.c-recommend01__inner {
  padding-top: 58px;
  padding-bottom: 50px;
}
.c-recommend01__head {
  margin-bottom: 30px;
  text-align: center;
  font-size: 3.3rem;
  line-height: 1.2;
}
@media all and (min-width: 768px) {
  .c-recommend01 {
    margin-top: 150px;
  }
  .c-recommend01::before {
    width: 1151px;
    height: 519px;
    background-image: url(../img/recruit/recommend/bg_deco01_pc.png);
  }
  .c-recommend01__inner {
    padding-top: 106px;
    padding-bottom: 106px;
  }
  .c-recommend01__head {
    margin-bottom: 40px;
    font-size: 5.6rem;
  }
}

.c-recommend01-list {
  position: relative;
  z-index: 2;
}
.c-recommend01-list__item {
  margin-top: 10px;
}
.c-recommend01-list__item.is-number .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_number01.jpg) no-repeat center/cover;
}
.c-recommend01-list__item.is-field .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_field01.jpg) no-repeat center/cover;
}
.c-recommend01-list__item.is-training .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_training01.jpg) no-repeat center/cover;
}
.c-recommend01-list__item.is-interview .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_interview01.jpg) no-repeat center/cover;
}
.c-recommend01-list__item.is-system01 .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_system01.jpg) no-repeat center/cover;
}
.c-recommend01-list__item.is-system02 .c-recommend01-list__item-link::before {
  background: url(../img/recruit/recommend/bg_system02.jpg) no-repeat center/cover;
}
.c-recommend01-list__item-link {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 126px;
  padding: 18px 20px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-recommend01-list__item-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.c-recommend01-list__item-link::after {
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-recommend01-list__item-en {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .c-recommend01-list {
    display: flex;
    margin: 0 -20px;
  }
  .c-recommend01-list__item {
    width: calc(50% - 40px);
    margin: 0 20px;
  }
  .c-recommend01-list__item-link {
    overflow: hidden;
    min-height: 200px;
    padding: 18px 60px;
    font-size: 2.8rem;
  }
  .c-recommend01-list__item-link::after {
    width: 33px;
    height: 25px;
    right: 60px;
  }
  .c-recommend01-list__item-link:hover::before {
    transform: scale(1.2);
  }
  .c-recommend01-list__item-link:hover::after {
    transform: translate(15px, -50%);
  }
  .c-recommend01-list__item-en {
    margin-top: 6px;
    font-size: 1.6rem;
  }
}

/*  .c-recruit-info01
================================================== */
.c-recruit-info01 {
  position: relative;
}
.c-recruit-info01::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 165px;
  height: 206px;
  background: url(../img/recruit/bg_info01_sp.png) no-repeat center/contain;
}
.c-recruit-info01::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 192px;
  background: rgb(var(--bg02));
}
.c-recruit-info01__inner {
  padding-top: 25px;
}
@media all and (min-width: 768px) {
  .c-recruit-info01::before {
    width: 685px;
    height: 564px;
    background-image: url(../img/recruit/bg_info01_pc.png);
  }
  .c-recruit-info01::after {
    height: 132px;
  }
  .c-recruit-info01__inner {
    padding-top: 145px;
  }
}

.c-recruit-info01-list {
  position: relative;
  z-index: 3;
}
.c-recruit-info01-list-wrap {
  padding: 0 20px;
}
.c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-link {
  background: rgb(var(--lightgreen));
}
.c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-ico::before {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g transform="translate(-260 -4873)"><circle cx="25" cy="25" r="25" transform="translate(260 4873)" fill="none" opacity="0.25"/><g transform="translate(274 4887)"><path d="M300.031,316.992a.076.076,0,0,0,.077-.076v-2.2a.066.066,0,0,0,0-.015.076.076,0,0,0-.059-.059l-.016,0h-1.343l-.015,0-.014,0h0a.075.075,0,0,0-.043.047.073.073,0,0,0,0,.022v2.2a.076.076,0,0,0,.076.076Z" transform="translate(-288.11 -303.682)" fill="currentColor"/><path d="M21.336,124.35H1.165A1.159,1.159,0,0,0,0,125.5v3.618a.46.46,0,0,1,.1.012l9.487,2.2v-.281a.984.984,0,0,1,.988-.979h1.343a.984.984,0,0,1,.988.979v.281l9.487-2.2a.458.458,0,0,1,.1-.012V125.5a1.159,1.159,0,0,0-1.164-1.153" transform="translate(0 -120.018)" fill="currentColor"/><path d="M12.909,290.816a.984.984,0,0,1-.988.978H10.579a.984.984,0,0,1-.988-.978v-.99l-4.15-.963L0,287.6v8.829a1.159,1.159,0,0,0,1.165,1.153H21.336a1.159,1.159,0,0,0,1.164-1.153V287.6l-9.591,2.226Z" transform="translate(0 -277.581)" fill="currentColor"/><path d="M199.258,2.15a.64.64,0,0,1,.565-.694h5.068a.64.64,0,0,1,.565.694V3.3h1.185V2.15A1.983,1.983,0,0,0,204.891,0h-5.068a1.983,1.983,0,0,0-1.75,2.149V3.3h1.185Z" transform="translate(-191.107 -0.001)" fill="currentColor"/></g></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g transform="translate(-260 -4873)"><circle cx="25" cy="25" r="25" transform="translate(260 4873)" fill="none" opacity="0.25"/><g transform="translate(274 4887)"><path d="M300.031,316.992a.076.076,0,0,0,.077-.076v-2.2a.066.066,0,0,0,0-.015.076.076,0,0,0-.059-.059l-.016,0h-1.343l-.015,0-.014,0h0a.075.075,0,0,0-.043.047.073.073,0,0,0,0,.022v2.2a.076.076,0,0,0,.076.076Z" transform="translate(-288.11 -303.682)" fill="currentColor"/><path d="M21.336,124.35H1.165A1.159,1.159,0,0,0,0,125.5v3.618a.46.46,0,0,1,.1.012l9.487,2.2v-.281a.984.984,0,0,1,.988-.979h1.343a.984.984,0,0,1,.988.979v.281l9.487-2.2a.458.458,0,0,1,.1-.012V125.5a1.159,1.159,0,0,0-1.164-1.153" transform="translate(0 -120.018)" fill="currentColor"/><path d="M12.909,290.816a.984.984,0,0,1-.988.978H10.579a.984.984,0,0,1-.988-.978v-.99l-4.15-.963L0,287.6v8.829a1.159,1.159,0,0,0,1.165,1.153H21.336a1.159,1.159,0,0,0,1.164-1.153V287.6l-9.591,2.226Z" transform="translate(0 -277.581)" fill="currentColor"/><path d="M199.258,2.15a.64.64,0,0,1,.565-.694h5.068a.64.64,0,0,1,.565.694V3.3h1.185V2.15A1.983,1.983,0,0,0,204.891,0h-5.068a1.983,1.983,0,0,0-1.75,2.149V3.3h1.185Z" transform="translate(-191.107 -0.001)" fill="currentColor"/></g></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-link {
  background: rgb(var(--main));
}
.c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-ico::before {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g transform="translate(-260 -4873)"><circle cx="25" cy="25" r="25" transform="translate(260 4873)" fill="none" opacity="0.25"/><path d="M-7453.34,880.5a.661.661,0,0,1-.661-.66V859.977a1.977,1.977,0,0,1,1.978-1.977h12.549a1.954,1.954,0,0,1,1.953,1.953v8.918a5.725,5.725,0,0,0-3.156,2.357h-6.4a.659.659,0,0,0-.655.733.669.669,0,0,0,.671.584h5.747a5.611,5.611,0,0,0-.271,1.319h-5.492a.66.66,0,0,0-.655.735.669.669,0,0,0,.671.584h5.515a6.7,6.7,0,0,0,1.119,2.638,5.727,5.727,0,0,0,2.907,2v.017a.659.659,0,0,1-.659.66Zm1.646-5.966a.676.676,0,0,0,.683.647h1.3a.658.658,0,0,0,.658-.672.674.674,0,0,0-.681-.647h-1.3A.662.662,0,0,0-7451.694,874.535Zm0-2.636a.673.673,0,0,0,.681.645h1.3a.659.659,0,0,0,.658-.67.673.673,0,0,0-.681-.647h-1.3A.661.661,0,0,0-7451.694,871.9Zm5.784-10.121a2.149,2.149,0,0,0-1.945,2.011,2.235,2.235,0,0,0,.458,1.53,2.85,2.85,0,0,0-1.757,2.658v.335a.494.494,0,0,0,.484.5h5.818a.494.494,0,0,0,.485-.5v-.335a2.852,2.852,0,0,0-1.759-2.658,2.231,2.231,0,0,0,.466-1.367,2.143,2.143,0,0,0-2.1-2.179C-7445.808,861.773-7445.859,861.775-7445.91,861.779Zm5.62,12.569a4.395,4.395,0,0,1,4.4-4.394,4.394,4.394,0,0,1,4.394,4.394,4.395,4.395,0,0,1-4.394,4.394A4.4,4.4,0,0,1-7440.29,874.348Zm1.951-.391a.66.66,0,0,0,0,.932l1.244,1.244a.661.661,0,0,0,.932,0l2.486-2.486a.658.658,0,0,0,0-.932.657.657,0,0,0-.932,0l-2.021,2.018-.776-.776a.66.66,0,0,0-.467-.192A.661.661,0,0,0-7438.339,873.957Z" transform="translate(7730 4029)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g transform="translate(-260 -4873)"><circle cx="25" cy="25" r="25" transform="translate(260 4873)" fill="none" opacity="0.25"/><path d="M-7453.34,880.5a.661.661,0,0,1-.661-.66V859.977a1.977,1.977,0,0,1,1.978-1.977h12.549a1.954,1.954,0,0,1,1.953,1.953v8.918a5.725,5.725,0,0,0-3.156,2.357h-6.4a.659.659,0,0,0-.655.733.669.669,0,0,0,.671.584h5.747a5.611,5.611,0,0,0-.271,1.319h-5.492a.66.66,0,0,0-.655.735.669.669,0,0,0,.671.584h5.515a6.7,6.7,0,0,0,1.119,2.638,5.727,5.727,0,0,0,2.907,2v.017a.659.659,0,0,1-.659.66Zm1.646-5.966a.676.676,0,0,0,.683.647h1.3a.658.658,0,0,0,.658-.672.674.674,0,0,0-.681-.647h-1.3A.662.662,0,0,0-7451.694,874.535Zm0-2.636a.673.673,0,0,0,.681.645h1.3a.659.659,0,0,0,.658-.67.673.673,0,0,0-.681-.647h-1.3A.661.661,0,0,0-7451.694,871.9Zm5.784-10.121a2.149,2.149,0,0,0-1.945,2.011,2.235,2.235,0,0,0,.458,1.53,2.85,2.85,0,0,0-1.757,2.658v.335a.494.494,0,0,0,.484.5h5.818a.494.494,0,0,0,.485-.5v-.335a2.852,2.852,0,0,0-1.759-2.658,2.231,2.231,0,0,0,.466-1.367,2.143,2.143,0,0,0-2.1-2.179C-7445.808,861.773-7445.859,861.775-7445.91,861.779Zm5.62,12.569a4.395,4.395,0,0,1,4.4-4.394,4.394,4.394,0,0,1,4.394,4.394,4.395,4.395,0,0,1-4.394,4.394A4.4,4.4,0,0,1-7440.29,874.348Zm1.951-.391a.66.66,0,0,0,0,.932l1.244,1.244a.661.661,0,0,0,.932,0l2.486-2.486a.658.658,0,0,0,0-.932.657.657,0,0,0-.932,0l-2.021,2.018-.776-.776a.66.66,0,0,0-.467-.192A.661.661,0,0,0-7438.339,873.957Z" transform="translate(7730 4029)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.c-recruit-info01-list__item-link {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 36px 20px;
  color: #fff;
}
.c-recruit-info01-list__item-link::after {
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.c-recruit-info01-list__item-ico {
  flex: 0 0 50px;
  margin-right: 10px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}
.c-recruit-info01-list__item-txt {
  font-weight: 700;
  line-height: 1.5;
}
.c-recruit-info01-list__item-txt-lg {
  padding-right: 0.5em;
  font-size: 2.3rem;
}
.c-recruit-info01-list__item-txt-en {
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .c-recruit-info01-list {
    display: flex;
  }
  .c-recruit-info01-list-wrap {
    max-width: 1400px;
    margin: 0 auto;
  }
  .c-recruit-info01-list__item {
    width: 50%;
  }
  .c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-link:hover {
    background: rgb(var(--hover-lightgreen));
  }
  .c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-link:hover .c-recruit-info01-list__item-ico::before {
    color: rgb(var(--hover-lightgreen));
  }
  .c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-ico::before {
    width: 100px;
    height: 100px;
  }
  .c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-link:hover {
    background: rgb(var(--hover-main));
  }
  .c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-link:hover .c-recruit-info01-list__item-ico::before {
    color: rgb(var(--hover-main));
  }
  .c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-ico::before {
    width: 100px;
    height: 100px;
  }
  .c-recruit-info01-list__item-link {
    padding: 127px 40px;
    transition: all 0.3s ease;
  }
  .c-recruit-info01-list__item-link::after {
    bottom: 40px;
    right: 40px;
    width: 39px;
    height: 30px;
    transition: all 0.3s ease;
  }
  .c-recruit-info01-list__item-link:hover::after {
    transform: translateX(15px);
  }
  .c-recruit-info01-list__item-link:hover .c-recruit-info01-list__item-ico {
    background: #fff;
    border-color: #fff;
  }
  .c-recruit-info01-list__item-ico {
    flex: 0 0 100px;
    margin-right: 30px;
    transition: all 0.3s ease;
  }
  .c-recruit-info01-list__item-txt {
    font-size: 2rem;
  }
  .c-recruit-info01-list__item-txt-lg {
    padding-right: 0.5em;
    font-size: 3rem;
  }
  .c-recruit-info01-list__item-txt-en {
    font-size: 1.8rem;
  }
}
@media (min-width: 1520px) {
  .c-recruit-info01-list-wrap {
    max-width: 1720px;
    padding: 0 50px;
  }
  .c-recruit-info01-list__item-link {
    padding-left: 80px;
    padding-right: 80px;
  }
  .c-recruit-info01-list__item-link::after {
    bottom: 60px;
    right: 60px;
  }
  .c-recruit-info01-list__item-txt {
    font-size: 2.8rem;
  }
  .c-recruit-info01-list__item-txt-lg {
    padding-right: 0.5em;
    font-size: 4.3rem;
  }
  .c-recruit-info01-list__item-txt-en {
    font-size: 2.1rem;
  }
}
@media (min-width: 1820px) {
  .c-recruit-info01-list__item.is-fresh .c-recruit-info01-list__item-link {
    padding-left: 18.6%;
  }
  .c-recruit-info01-list__item.is-career .c-recruit-info01-list__item-link {
    padding-left: 11.6%;
  }
}

.c-recruit-link {
  margin-top: 50px;
}
.c-recruit-link__item {
  width: 100%;
  max-width: 295px;
  margin: 10px auto 0;
}
.c-recruit-link__link {
  position: relative;
  display: block;
  padding: 11px 20px;
  border-radius: 30px;
  background: rgb(var(--lightgreen));
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.c-recruit-link__link[target]::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-recruit-link__link-lg {
  font-size: 1.9rem;
}
@media all and (min-width: 768px) {
  .c-recruit-link {
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }
  .c-recruit-link__item {
    width: 360px;
    max-width: 360px;
    margin: 0 20px;
  }
  .c-recruit-link__link {
    padding: 26px 40px;
    border-radius: 60px;
    font-size: 1.8rem;
    line-height: 1.5;
    transition: all 0.3s ease;
  }
  .c-recruit-link__link[target]::after {
    right: 40px;
    width: 20px;
    height: 20px;
  }
  .c-recruit-link__link-lg {
    font-size: 2.8rem;
  }
  .c-recruit-link__link:hover {
    background: rgb(var(--hover-lightgreen));
  }
}

.c-pager-recruit-interview {
  margin-top: -20px;
}
.c-pager-recruit-interview__item {
  border-bottom: 1px solid rgb(var(--border));
}
.c-pager-recruit-interview__link {
  position: relative;
  display: block;
  padding: 20px 0;
}
.c-pager-recruit-interview__link::before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgb(var(--black));
}
.c-pager-recruit-interview__link::after {
  position: absolute;
  bottom: 40px;
  right: 18px;
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: #fff;
  width: 19px;
  height: 15px;
}
.c-pager-recruit-interview__img {
  position: relative;
}
.c-pager-recruit-interview__img-label {
  position: absolute;
  top: 6px;
  left: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  background: rgb(var(--main));
  color: #fff;
  font-weight: 700;
}
.c-pager-recruit-interview__areaTxt {
  margin-top: 18px;
  font-weight: 700;
}
.c-pager-recruit-interview__areaTxt-head {
  margin-bottom: 5px;
  font-size: 1.9rem;
  line-height: 1.5;
}
.c-pager-recruit-interview__areaTxt-year {
  padding-left: 8px;
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .c-pager-recruit-interview {
    display: flex;
    margin: 0 -30px;
  }
  .c-pager-recruit-interview__item {
    width: calc(50% - 60px);
    margin: 0 30px;
  }
  .c-pager-recruit-interview__link {
    padding: 0 0 30px;
  }
  .c-pager-recruit-interview__link::before {
    bottom: 20px;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
  }
  .c-pager-recruit-interview__link::after {
    bottom: 46px;
    right: 22px;
    width: 24px;
    height: 19px;
    transition: all 0.3s ease;
  }
  .c-pager-recruit-interview__link:hover .c-pager-recruit-interview__img img {
    transform: scale(1.1);
  }
  .c-pager-recruit-interview__link:hover::before {
    transform: scale(1.1);
    background: rgb(var(--main));
  }
  .c-pager-recruit-interview__link:hover::after {
    -webkit-animation: arw-r-anime 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    animation: arw-r-anime 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  .c-pager-recruit-interview__img {
    overflow: hidden;
  }
  .c-pager-recruit-interview__img img {
    transition: all 0.3s ease;
  }
  .c-pager-recruit-interview__img-label {
    top: 10px;
    left: 10px;
  }
  .c-pager-recruit-interview__areaTxt {
    margin-top: 30px;
  }
  .c-pager-recruit-interview__areaTxt-head {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}

@-webkit-keyframes arw-r-anime {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arw-r-anime {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*  .c-set01
================================================== */
.c-set01 + .c-set01 {
  margin-top: 50px;
}
.c-set01__area-txt {
  margin-top: 16px;
}
.c-set01__head {
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: solid 1px rgb(var(--border));
}
.c-set01 sub {
  vertical-align: sub;
}
@media all and (min-width: 768px) {
  .c-set01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .c-set01 + .c-set01 {
    margin-top: 80px;
  }
  .c-set01__area-img {
    width: 400px;
  }
  .c-set01__area-txt {
    margin-top: 0;
    width: 660px;
  }
  .c-set01__head {
    font-size: 2.2rem;
    padding-bottom: 18px;
    margin-bottom: 25px;
  }
}

/*  .c-set01.is-550-pc
================================================== */
.c-set01.is-550-pc .c-set01__area-txt {
  margin-top: 0;
}
.c-set01.is-550-pc .c-set01__area-img {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .c-set01.is-550-pc .c-set01__area-txt {
    width: 500px;
  }
  .c-set01.is-550-pc .c-set01__area-img {
    margin-top: 0;
    width: 550px;
  }
}

/*  .c-single01
================================================== */
.c-single01__meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.c-single01__date {
  margin: 0 8px 0 0;
  line-height: 26px;
  font-size: 1.2rem;
}
.c-single01__cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-single01__cat-item {
  margin: 0 5px 5px 0;
  padding: 0px 28px;
  color: rgb(var(--main));
  border: solid 1px;
  border-radius: 9999px;
  font-size: 1.2rem;
}
.c-single01__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  padding-bottom: 25px;
  border-bottom: solid 1px rgb(var(--border));
  margin-bottom: 25px;
}
@media all and (min-width: 768px) {
  .c-single01__meta {
    margin-bottom: 25px;
  }
  .c-single01__date {
    font-size: 1.3rem;
    margin-right: 11px;
  }
  .c-single01__head {
    font-size: 3.2rem;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  color: rgb(var(--main));
  text-decoration: underline;
}
.c-single-content ul {
  margin: 25px 0;
  line-height: 1.5;
}
.c-single-content ul li {
  margin: 8px 0;
}
.c-single-content ul ::marker {
  color: rgb(var(--main));
}
.c-single-content ol {
  margin: 25px 0 25px 0.9em;
  padding-left: 0;
  counter-reset: number 0;
}
.c-single-content ol li {
  position: relative;
  padding-left: 0.9em;
  text-indent: -0.9em;
  box-sizing: border-box;
  counter-increment: number 1;
  list-style-type: none;
  line-height: 1.5;
}
.c-single-content ol li::before {
  content: counter(number) ".";
  display: inline-block;
  box-sizing: border-box;
  min-width: 0.5em;
  color: rgb(var(--main));
  font-family: "Poppins", sans-serif;
}
.c-single-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 17px;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
}
.c-single-content h2::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, rgb(var(--main)) 50%, rgb(var(--lightgreen)) 51%);
}
.c-single-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 15px;
}
.c-single-content .quotation, .c-single-content blockquote {
  margin: 30px 0 40px;
  padding: 16px 20px;
  background-color: rgb(var(--bg));
}
.c-single-content .quotation .src, .c-single-content blockquote .src {
  text-align: right;
  color: rgb(var(--gray));
}
@media all and (min-width: 1160px) {
  .c-single-content {
    clear: both;
    overflow: hidden;
  }
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content h2 {
    font-size: 2.8rem;
    padding-left: 28px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .c-single-content h2::before {
    width: 8px;
  }
  .c-single-content h3 {
    font-size: 2.4rem;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .c-single-content .quotation, .c-single-content blockquote {
    margin: 50px 0 50px;
    padding: 30px 40px;
  }
  .c-single-content .quotation .src, .c-single-content blockquote .src {
    font-size: 1.4rem;
  }
  .c-single-content img.alignleft {
    float: left;
    margin-right: 50px;
    margin-bottom: 40px;
  }
  .c-single-content img.alignright {
    float: right;
    margin-left: 50px;
    margin-bottom: 40px;
  }
  .c-single-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/*  .c-step01
================================================== */
.c-step01 {
  margin-bottom: 50px;
  display: flex;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-step01::-webkit-scrollbar {
  display: none;
}
.c-step01__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
  height: 54px;
  width: 33.3%;
  background: rgb(var(--border));
  white-space: nowrap;
}
.c-step01__item::before, .c-step01__item::after {
  position: absolute;
  top: 50%;
  right: 5px;
  bottom: 0;
  content: "";
  display: block;
  border-style: solid;
  border-width: 38px 24px;
  border-color: transparent transparent transparent rgb(var(--border));
  transform: translateX(100%) translateY(-50%);
}
.c-step01__item::before {
  right: 0;
  border-color: transparent transparent transparent rgb(var(--bg));
}
.c-step01__item .u-font-en {
  font-weight: 500;
}
.c-step01__item.is-current {
  background: rgb(var(--black));
  color: #fff;
}
.c-step01__item.is-current::after {
  border-left-color: rgb(var(--black));
}
.c-step01__item.is-input {
  z-index: 3;
  width: calc(33.3% + 10px);
}
.c-step01__item.is-confirm {
  z-index: 2;
  padding-left: 35px;
}
.c-step01__item.is-complete {
  padding-left: 30px;
  width: calc(33.3% + 10px);
}
@media all and (min-width: 768px) {
  .c-step01 {
    margin-bottom: 60px;
  }
  .c-step01__item {
    font-size: 1.8rem;
    height: 60px;
  }
  .c-step01__item::before, .c-step01__item::after {
    right: 10px;
    border-width: 40px 40px;
  }
  .c-step01__item::before {
    right: 0;
  }
  .c-step01__item .u-font-en {
    margin-right: 1em;
  }
}

/*  .mw_wp_form
================================================ */
.mw_wp_form_input .c-step01__item.is-input {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_input .c-step01__item.is-input::after {
  border-left-color: rgb(var(--main));
}

.mw_wp_form_confirm .c-step01__item.is-confirm {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_confirm .c-step01__item.is-confirm::after {
  border-left-color: rgb(var(--main));
}

.mw_wp_form_complete .c-step01__item.is-complete {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_complete .c-step01__item.is-complete::after {
  border-left-color: rgb(var(--main));
}

/*  .c-table01
================================================== */
.c-table01 th {
  background: rgb(var(--bg));
  border-top: 1px solid rgb(var(--border));
}
.c-table01 td {
  background: #fff;
  border-bottom: 1px solid rgb(var(--border));
}
.c-table01 td a {
  color: rgb(var(--lightgreen));
}
.c-table01 td a[href*=".pdf"]::after {
  display: inline-block;
  width: 14.341px;
  height: 19.121px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.341 19.121"><path d="M6.453,9.933a5.372,5.372,0,0,1,0-2.2C6.762,7.735,6.659,9.558,6.453,9.933Zm0,1.465a13.93,13.93,0,0,1-.717,2.2,11.617,11.617,0,0,1,2.151-.733A4.937,4.937,0,0,1,6.453,11.4ZM2.868,16.526c0,.03.637-.159,1.434-1.465C4.056,15.3,3.081,15.937,2.868,16.526ZM9.322,6.27h5.019V18.724c0,.5-.945.733-1.434.733H.717c-.489,0-.717-.233-.717-.733V1.143C0,.643.228.41.717.41h7.17V5.538C7.887,6.033,8.836,6.27,9.322,6.27ZM8.6,12.863a4.025,4.025,0,0,1-1.434-2.2,4.493,4.493,0,0,0,0-2.2C7,7.364,5.935,7,5.736,7.735a5.752,5.752,0,0,0,0,2.93C5.31,11.7,4.747,13.532,4.3,14.328h0c-1,.522-2.136,1.315-1.434,2.2.206.259.515.733.717.733.658,0,1.218-1.286,2.151-2.93A19.257,19.257,0,0,1,8.6,13.6a4.768,4.768,0,0,0,2.151.733.863.863,0,0,0,.717-1.465C10.962,12.353,9.314,12.769,8.6,12.863Zm5.019-8.79L10.039.41c-.165-.169-.482,0-.717,0h0v4.4h5.019C14.341,4.569,13.789,4.242,13.624,4.073ZM11.473,13.6c.151-.1-.67-.109-2.151,0A2.185,2.185,0,0,0,11.473,13.6Z" transform="translate(0 -0.335)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.341 19.121"><path d="M6.453,9.933a5.372,5.372,0,0,1,0-2.2C6.762,7.735,6.659,9.558,6.453,9.933Zm0,1.465a13.93,13.93,0,0,1-.717,2.2,11.617,11.617,0,0,1,2.151-.733A4.937,4.937,0,0,1,6.453,11.4ZM2.868,16.526c0,.03.637-.159,1.434-1.465C4.056,15.3,3.081,15.937,2.868,16.526ZM9.322,6.27h5.019V18.724c0,.5-.945.733-1.434.733H.717c-.489,0-.717-.233-.717-.733V1.143C0,.643.228.41.717.41h7.17V5.538C7.887,6.033,8.836,6.27,9.322,6.27ZM8.6,12.863a4.025,4.025,0,0,1-1.434-2.2,4.493,4.493,0,0,0,0-2.2C7,7.364,5.935,7,5.736,7.735a5.752,5.752,0,0,0,0,2.93C5.31,11.7,4.747,13.532,4.3,14.328h0c-1,.522-2.136,1.315-1.434,2.2.206.259.515.733.717.733.658,0,1.218-1.286,2.151-2.93A19.257,19.257,0,0,1,8.6,13.6a4.768,4.768,0,0,0,2.151.733.863.863,0,0,0,.717-1.465C10.962,12.353,9.314,12.769,8.6,12.863Zm5.019-8.79L10.039.41c-.165-.169-.482,0-.717,0h0v4.4h5.019C14.341,4.569,13.789,4.242,13.624,4.073ZM11.473,13.6c.151-.1-.67-.109-2.151,0A2.185,2.185,0,0,0,11.473,13.6Z" transform="translate(0 -0.335)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin: 0 0 3px 3px;
}
.c-table01 th, .c-table01 td {
  padding: 11px 15px;
  text-align: left;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-table01 th, .c-table01 td {
    padding: 18px 20px;
    border-top: 1px solid rgb(var(--border));
    border-bottom: 1px solid rgb(var(--border));
  }
  .c-table01 th {
    width: 260px;
  }
  .c-table01 td + td {
    border-left: 1px solid rgb(var(--border));
    width: 580px;
  }
  .c-table01 td a[href*=".pdf"]::after {
    width: 20px;
    height: 26px;
    margin: 0 0 6px 6px;
  }
}

/*  .c-table01.is-block-sp
================================================== */
@media all and (max-width: 767px) {
  .c-table01.is-block-sp table, .c-table01.is-block-sp thead, .c-table01.is-block-sp tbody, .c-table01.is-block-sp tr, .c-table01.is-block-sp th, .c-table01.is-block-sp td {
    display: block;
  }
  .c-table01.is-block-sp th, .c-table01.is-block-sp td {
    font-size: 1.3rem;
  }
  .c-table01.is-block-sp th {
    border-bottom: 0;
  }
  .c-table01.is-block-sp tr + tr th {
    border-top: 0;
  }
}

/*  .c-table01.is-block-pc
================================================== */
@media all and (min-width: 768px) {
  .c-table01.is-block-pc table, .c-table01.is-block-pc thead, .c-table01.is-block-pc tbody, .c-table01.is-block-pc tr, .c-table01.is-block-pc th, .c-table01.is-block-pc td {
    display: block;
  }
  .c-table01.is-block-pc th, .c-table01.is-block-pc td {
    font-size: 1.6rem;
    width: auto;
  }
  .c-table01.is-block-pc th {
    border-bottom: 0;
    padding: 10px 20px;
  }
  .c-table01.is-block-pc td {
    padding: 15px 20px;
  }
  .c-table01.is-block-pc tr + tr th {
    border-top: 0;
  }
}

/*  .c-table01.has-thead
================================================== */
.c-table01.has-thead thead th {
  text-align: center;
  border: none;
}
.c-table01.has-thead thead th:first-child {
  border-right: 1px solid #fff;
}
.c-table01.has-thead tbody th {
  background: #fff;
  line-height: 1.4;
}
.c-table01.has-thead tbody th, .c-table01.has-thead tbody td {
  border: 1px solid rgb(var(--border));
  font-size: 1.3rem;
}
.c-table01.has-thead tr *:first-child {
  width: 90px;
}
@media all and (min-width: 768px) {
  .c-table01.has-thead th {
    width: auto;
  }
  .c-table01.has-thead tbody th, .c-table01.has-thead tbody td {
    font-size: 1.6rem;
  }
  .c-table01.has-thead tr *:first-child {
    width: 260px;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .l-breadcrumb {
    padding-top: 150px;
  }
}
@media all and (min-width: 1460px ) {
  .l-breadcrumb {
    padding-left: 100px;
  }
  .l-breadcrumb__inner {
    max-width: 100%;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: top;
  color: rgb(var(--gray));
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 6px;
  padding-left: 16px;
  position: relative;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: rgb(var(--border));
  top: 50%;
  left: 0;
}
.l-breadcrumb-list__item a {
  color: rgb(var(--black));
  text-decoration: underline;
}
.l-breadcrumb-list__item a:hover {
  text-decoration: none;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list__item {
    font-size: 1.3rem;
  }
  .l-breadcrumb-list__item + .l-breadcrumb-list__item {
    margin-left: 10px;
    padding-left: 25px;
  }
  .l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
    width: 15px;
  }
}
@media all and (min-width: 1460px ) {
  .l-breadcrumb-list {
    max-width: 100%;
  }
}

/* .l-breadcrumb.is-recruit
================================================ */
.l-breadcrumb.is-recruit {
  padding-top: 0;
  padding-left: 0;
}
@media all and (min-width: 1460px ) {
  .l-breadcrumb.is-recruit .l-breadcrumb-list {
    max-width: var(--contents_width);
  }
}

@-webkit-keyframes cookieSlideIn {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieSlideIn {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes cookieSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(150%);
    opacity: 0;
  }
}
@keyframes cookieSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(150%);
    opacity: 0;
  }
}
/*! 通知バー */
.l-cookie {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: cookieSlideIn;
  animation-name: cookieSlideIn;
  background: rgba(255, 255, 255, 0.96);
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 1.3rem;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px 0;
}
.l-cookie__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-cookie.state-remove {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: cookieSlideOut;
  animation-name: cookieSlideOut;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  pointer-events: none;
}
.l-cookie__txt {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.l-cookie__txt a {
  color: rgb(var(--main));
}
.l-cookie__accept {
  width: 60%;
  padding: 7px;
  color: #fff;
  background: rgb(var(--main));
  font-size: 1.3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: block;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-cookie__deny {
  width: calc(40% - 6px);
  padding: 7px;
  color: #fff;
  background: rgb(var(--gray));
  font-size: 1.3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: block;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-cookie__btns {
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto 0;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media all and (min-width: 768px) {
  .l-cookie {
    left: auto;
    right: 0;
    bottom: 0;
    width: 375px;
  }
  .l-cookie__inner {
    padding: 20px;
  }
  .l-cookie__accept:hover, .l-cookie__deny:hover {
    opacity: 0.7;
  }
}

/* .l-footer-recruit
================================================ */
.l-footer-recruit {
  position: relative;
  background: rgb(var(--bg02));
  z-index: 2;
}
.l-footer-recruit::before, .l-footer-recruit::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
}
.l-footer-recruit::before {
  top: -192px;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../img/recruit/bg_footer01_sp.png) no-repeat center/contain;
}
.l-footer-recruit::after {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background: url(../img/recruit/bg_footer02_sp.png) no-repeat center/contain;
}
@media all and (min-width: 768px) {
  .l-footer-recruit::before {
    top: -132px;
    width: 52.13%;
    height: 117%;
    background-image: url(../img/recruit/bg_footer01_pc.png);
  }
  .l-footer-recruit::after {
    width: 48.54%;
    height: 86.55%;
    background-image: url(../img/recruit/bg_footer02_pc.png);
  }
}

/* .l-footer-recruit-info
================================================ */
.l-footer-recruit-info__inner {
  padding-top: 60px;
  padding-bottom: 45px;
}
.l-footer-recruit-info__logo {
  width: 244px;
  margin: 0 auto;
}
.l-footer-recruit-info__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px auto 0;
  padding: 0 8px;
  background: #fff;
  font-size: 1.3rem;
}
.l-footer-recruit-info__area-sitemap {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .l-footer-recruit-info__inner {
    margin: 0 auto;
    padding-top: 180px;
    padding-bottom: 98px;
  }
  .l-footer-recruit-info .l-footer-recruit__info-logo-link {
    display: flex;
    align-items: center;
  }
  .l-footer-recruit-info__logo {
    width: 285px;
    margin: 0;
  }
  .l-footer-recruit-info__txt {
    margin: 0 0 0 20px;
    padding: 0 8px;
    font-size: 1.4rem;
  }
  .l-footer-recruit-info__area-sitemap {
    width: 650px;
    margin-top: 46px;
  }
}
@media all and (min-width: 1160px) {
  .l-footer-recruit-info .l-footer-recruit-info__inner {
    max-width: 1820px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* .l-footer-recruit-sitemap
================================================ */
.l-footer-recruit-sitemap__item-link {
  display: block;
  padding: 11px 0;
  font-weight: 700;
}
.l-footer-recruit-sitemap__item-link[target=_blank]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin-left: 6px;
  margin-bottom: 1px;
}
@media all and (min-width: 768px) {
  .l-footer-recruit-sitemap {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 50px;
    grid-row-gap: 25px;
  }
  .l-footer-recruit-sitemap__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .l-footer-recruit-sitemap__item-link {
    display: inline-block;
    padding: 0;
    font-weight: 700;
    position: relative;
  }
  .l-footer-recruit-sitemap__item-link::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-footer-recruit-sitemap__item-link:hover::before {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
}

/* .l-footer-recruit-other
================================================ */
.l-footer-recruit-other {
  text-align: center;
}
.l-footer-recruit-other__inner {
  padding-bottom: 40px;
}
.l-footer-recruit-other__item {
  padding-top: 40px;
  border-top: 1px solid rgb(var(--border));
}
.l-footer-recruit-other__item-link {
  font-weight: 700;
}
.l-footer-recruit-other__item-link[target=_blank]::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin-left: 6px;
  margin-bottom: 1px;
}
.l-footer-recruit-other__cr {
  margin-top: 25px;
  color: rgb(var(--gray));
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .l-footer-recruit-other__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-footer-recruit-other__inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    height: 1px;
    background: rgb(var(--border));
  }
  .l-footer-recruit-other__item {
    padding-top: 0;
    border-top: none;
  }
  .l-footer-recruit-other__item-link {
    position: relative;
  }
  .l-footer-recruit-other__item-link::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-footer-recruit-other__item-link:hover::before {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .l-footer-recruit-other__cr {
    margin-top: 0;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 1160px) {
  .l-footer-recruit-other .l-footer-recruit-other__inner {
    max-width: 1820px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .l-footer-recruit-other .l-footer-recruit-other__inner::before {
    left: 50px;
    right: 50px;
  }
}

/* .l-footer-recruit-page-top
================================================ */
.l-footer-recruit-page-top {
  position: absolute;
  right: 20px;
  bottom: 210px;
  width: 50px;
  height: 50px;
}
.l-footer-recruit-page-top__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgb(var(--black));
  border-radius: 25px;
  color: #fff;
}
.l-footer-recruit-page-top__link::before {
  display: inline-block;
  width: 18px;
  height: 14px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  transform: rotate(-90deg);
  margin-bottom: 3px;
}
@media all and (min-width: 768px) {
  .l-footer-recruit-page-top {
    right: 50px;
    bottom: 258px;
  }
  .l-footer-recruit-page-top__link {
    transition: all 0.3s ease;
  }
  .l-footer-recruit-page-top__link:hover {
    transform: scale(1.2);
    background: rgb(var(--main));
  }
  .l-footer-recruit-page-top__link:hover::before {
    -webkit-animation: pagetop-anime 0.4s ease-in-out 0s;
    animation: pagetop-anime 0.4s ease-in-out 0s;
  }
}
@media (min-width: 1820px) {
  .l-footer-recruit-page-top {
    right: 100px;
  }
}

@-webkit-keyframes pagetop-anime {
  0% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%) rotate(-90deg);
    opacity: 0;
  }
  51% {
    transform: translateY(100%) rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
}

@keyframes pagetop-anime {
  0% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%) rotate(-90deg);
    opacity: 0;
  }
  51% {
    transform: translateY(100%) rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
}
/* .l-footer-contact
================================================ */
.l-footer-contact {
  position: relative;
  overflow: hidden;
}
.l-footer-contact::before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 70px);
  background: rgba(159, 162, 172, 0.92);
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.l-footer-contact__en {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 3;
  -webkit-animation: marquee02 150s linear infinite;
  animation: marquee02 150s linear infinite;
}
.l-footer-contact__en .c-marquee01__en {
  font-size: 11.5rem;
  line-height: 1;
  width: 2022px;
  color: #fff;
  opacity: 0.05;
}
.l-footer-contact__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.l-footer-contact__movie {
  position: relative;
  width: 100%;
  padding-top: 114.6%;
  overflow: hidden;
}
.l-footer-contact__movie iframe,
.l-footer-contact__movie video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  min-height: 100%;
  min-width: 100%;
}
.l-footer-contact__inner {
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
.l-footer-contact__content {
  color: #fff;
  padding: 60px 20px 100px;
}
.l-footer-contact__head {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}
.l-footer-contact__head::before, .l-footer-contact__head::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 6px;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.l-footer-contact__head::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
.l-footer-contact__txt {
  font-size: 1.3rem;
}
.l-footer-contact__area-btn {
  margin-top: 35px;
}
.l-footer-contact__btn + .l-footer-contact__btn {
  margin-top: 10px;
}
.l-footer-contact__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: solid 1px;
  border-radius: 9999px;
  box-sizing: border-box;
  min-height: 70px;
  position: relative;
  text-align: center;
}
.l-footer-contact__btn-link-in {
  padding: 10px 10px 15px;
}
.l-footer-contact__btn-sub {
  display: block;
  font-size: 1.2rem;
}
.l-footer-contact__btn-tel {
  display: block;
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.1;
}
.l-footer-contact__btn-tel::before {
  display: inline-block;
  width: 21.521px;
  height: 21.415px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.521 21.415"><path d="M15.442,21.415a7.574,7.574,0,0,1-1.491-.134,19.928,19.928,0,0,1-5.336-2.753A22.864,22.864,0,0,1,1.766,11.5a13.042,13.042,0,0,1-1.6-4.14A8.732,8.732,0,0,1,.15,4.085,7.093,7.093,0,0,1,1.012,1.8,4.093,4.093,0,0,1,2.042.6,4.763,4.763,0,0,1,4.693,0a.986.986,0,0,1,.825.487L8.092,4.914a.976.976,0,0,1-.173,1.2L5.752,8.178a.944.944,0,0,0-.246.977,9.521,9.521,0,0,0,3.332,4.416,18.827,18.827,0,0,0,3.571,2.153.423.423,0,0,0,.492-.092c.549-.584.992-1.041,1.353-1.4.253-.25.464-.447.626-.585a1.265,1.265,0,0,1,.544-.332c.192-.064.463-.034,1.275.245.629.216,1.359.507,1.861.714.646.266,1.3.552,1.8.784.258.12.466.222.618.3.243.129.363.21.435.346a2.482,2.482,0,0,1,.021,1.333,7.091,7.091,0,0,1-.83,2.129,4.7,4.7,0,0,1-3.258,2.049,9.236,9.236,0,0,1-1.907.2M4.534.881a3.83,3.83,0,0,0-1.987.445,3.251,3.251,0,0,0-.781.934,6.169,6.169,0,0,0-.752,1.994A7.856,7.856,0,0,0,1.027,7.2a12.169,12.169,0,0,0,1.5,3.858A21.987,21.987,0,0,0,9.111,17.8a26.735,26.735,0,0,0,3.171,1.866,9.756,9.756,0,0,0,1.849.752,7.949,7.949,0,0,0,3.033-.061,3.974,3.974,0,0,0,2.679-1.628,6.311,6.311,0,0,0,.712-1.777,2.845,2.845,0,0,0,.081-.776c-.3-.165-1.189-.583-2.4-1.082a15.923,15.923,0,0,0-2.592-.922l-.009,0a18.084,18.084,0,0,0-2.09,2.06,1.3,1.3,0,0,1-1.514.283,19.66,19.66,0,0,1-3.734-2.255A10.378,10.378,0,0,1,4.671,9.432,1.828,1.828,0,0,1,5.146,7.54L7.314,5.479a.1.1,0,0,0,.018-.122L4.756.932A.1.1,0,0,0,4.673.882l-.139,0M20.625,16.094h0Zm-5.087-1.9h0Zm-.158-.855h0m.111-.024h0" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.521 21.415"><path d="M15.442,21.415a7.574,7.574,0,0,1-1.491-.134,19.928,19.928,0,0,1-5.336-2.753A22.864,22.864,0,0,1,1.766,11.5a13.042,13.042,0,0,1-1.6-4.14A8.732,8.732,0,0,1,.15,4.085,7.093,7.093,0,0,1,1.012,1.8,4.093,4.093,0,0,1,2.042.6,4.763,4.763,0,0,1,4.693,0a.986.986,0,0,1,.825.487L8.092,4.914a.976.976,0,0,1-.173,1.2L5.752,8.178a.944.944,0,0,0-.246.977,9.521,9.521,0,0,0,3.332,4.416,18.827,18.827,0,0,0,3.571,2.153.423.423,0,0,0,.492-.092c.549-.584.992-1.041,1.353-1.4.253-.25.464-.447.626-.585a1.265,1.265,0,0,1,.544-.332c.192-.064.463-.034,1.275.245.629.216,1.359.507,1.861.714.646.266,1.3.552,1.8.784.258.12.466.222.618.3.243.129.363.21.435.346a2.482,2.482,0,0,1,.021,1.333,7.091,7.091,0,0,1-.83,2.129,4.7,4.7,0,0,1-3.258,2.049,9.236,9.236,0,0,1-1.907.2M4.534.881a3.83,3.83,0,0,0-1.987.445,3.251,3.251,0,0,0-.781.934,6.169,6.169,0,0,0-.752,1.994A7.856,7.856,0,0,0,1.027,7.2a12.169,12.169,0,0,0,1.5,3.858A21.987,21.987,0,0,0,9.111,17.8a26.735,26.735,0,0,0,3.171,1.866,9.756,9.756,0,0,0,1.849.752,7.949,7.949,0,0,0,3.033-.061,3.974,3.974,0,0,0,2.679-1.628,6.311,6.311,0,0,0,.712-1.777,2.845,2.845,0,0,0,.081-.776c-.3-.165-1.189-.583-2.4-1.082a15.923,15.923,0,0,0-2.592-.922l-.009,0a18.084,18.084,0,0,0-2.09,2.06,1.3,1.3,0,0,1-1.514.283,19.66,19.66,0,0,1-3.734-2.255A10.378,10.378,0,0,1,4.671,9.432,1.828,1.828,0,0,1,5.146,7.54L7.314,5.479a.1.1,0,0,0,.018-.122L4.756.932A.1.1,0,0,0,4.673.882l-.139,0M20.625,16.094h0Zm-5.087-1.9h0Zm-.158-.855h0m.111-.024h0" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  transform: rotate(11deg);
  margin: 0 4px 2px 0;
}
.l-footer-contact__btn-note {
  display: block;
  font-weight: normal;
  font-size: 1.1rem;
  line-height: 1.5;
}
.l-footer-contact__btn.is-contact .l-footer-contact__btn-link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
}
.l-footer-contact__btn.is-contact .l-footer-contact__btn-link::after {
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
}
.l-footer-contact__btn.is-tel .l-footer-contact__btn-link {
  border-radius: 10px;
}
@media all and (min-width: 768px) {
  .l-footer-contact::before {
    top: 120px;
    height: calc(100% - 120px);
    max-width: 1720px;
    transition: all 0.3s ease;
  }
  .l-footer-contact__en {
    bottom: 50px;
  }
  .l-footer-contact__en .c-marquee01__en {
    font-size: 20rem;
    width: 3517px;
  }
  .l-footer-contact__movie {
    padding-top: 29.6%;
  }
  .l-footer-contact__inner {
    padding-top: 120px;
  }
  .l-footer-contact__content {
    min-height: 620px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .l-footer-contact__area-txt {
    width: calc(100% - 530px);
  }
  .l-footer-contact__head {
    font-size: 10rem;
    line-height: 1.2;
  }
  .l-footer-contact__head::before, .l-footer-contact__head::after {
    top: 3px;
    width: 15px;
    height: 15px;
  }
  .l-footer-contact__head::after {
    left: 8px;
  }
  .l-footer-contact__txt {
    font-size: 1.6rem;
  }
  .l-footer-contact__area-btn {
    width: 530px;
    padding: 96px 0;
    padding-left: 130px;
    box-sizing: border-box;
    margin: 0;
    border-left: solid 1px rgba(255, 255, 255, 0.15);
  }
  .l-footer-contact__btn {
    width: 400px;
    margin: 0;
  }
  .l-footer-contact__btn + .l-footer-contact__btn {
    margin-top: 25px;
  }
  .l-footer-contact__btn-link {
    min-height: 80px;
  }
  .l-footer-contact__btn-txt {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .l-footer-contact__btn-sub {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .l-footer-contact__btn-tel {
    font-size: 4.5rem;
  }
  .l-footer-contact__btn-tel::before {
    width: 32px;
    height: 32px;
  }
  .l-footer-contact__btn-note {
    font-size: 1.4rem;
  }
  .l-footer-contact__btn.is-contact {
    overflow: hidden;
    border-radius: 9999px;
  }
  .l-footer-contact__btn.is-contact em {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1px;
    width: 1px;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
  }
  .l-footer-contact__btn.is-contact .l-footer-contact__btn-link::before {
    width: 46px;
    height: 46px;
    transition: all 0.3s ease;
  }
  .l-footer-contact__btn.is-contact .l-footer-contact__btn-link::after {
    right: 32px;
    width: 16px;
    height: 13px;
  }
  .l-footer-contact__btn.is-tel .l-footer-contact__btn-link {
    border: none;
  }
  .l-footer-contact__link:hover .l-footer-contact::before {
    background: rgb(var(--main));
  }
  .l-footer-contact__link:hover .l-footer-contact__btn-txt {
    color: rgb(var(--main));
  }
  .l-footer-contact__link:hover .l-footer-contact__btn-link em {
    width: 110%;
  }
  .l-footer-contact__link:hover .l-footer-contact__btn-link::after {
    color: rgb(var(--main));
  }
}

/* .l-footer
================================================ */
.l-footer {
  overflow: hidden;
  position: relative;
  text-align: center;
  background: rgb(var(--bg));
  z-index: 2;
}
.l-footer__ico {
  position: absolute;
  bottom: -30px;
  right: -38px;
  width: 337px;
  color: rgba(var(--base), 0.3);
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-footer {
    text-align: left;
  }
}

/* .l-footer-info
================================================ */
.l-footer-info__inner {
  padding-top: 60px;
  padding-bottom: 55px;
}
.l-footer-info__logo {
  width: 240px;
  margin: 0 auto;
}
.l-footer-info__txt {
  margin-top: 20px;
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .l-footer-info__inner {
    padding-top: 133px;
    padding-bottom: 140px;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-info__area-txt {
    width: calc(100% - 730px);
  }
  .l-footer-info__logo {
    width: 285px;
    margin: 0 auto 0 0;
  }
  .l-footer-info__txt {
    font-size: 1.4rem;
    margin-top: 35px;
  }
  .l-footer-info__area-sitemap {
    width: 730px;
    margin-top: -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* .l-footer-sitemap
================================================ */
@media all and (min-width: 768px) {
  .l-footer-sitemap__item {
    position: relative;
    padding-left: 17px;
  }
  .l-footer-sitemap__item::before {
    position: absolute;
    content: "";
    top: 23px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(var(--main));
    margin-top: 1px;
  }
  .l-footer-sitemap__item-link {
    display: inline-block;
    padding: 10px 0;
    font-weight: 700;
    position: relative;
  }
  .l-footer-sitemap__item-link::before {
    position: absolute;
    content: "";
    bottom: 15px;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-footer-sitemap__item-link:hover::before {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .l-footer-sitemap__item-link[target=_blank] {
    padding-right: 19px;
  }
  .l-footer-sitemap__item-link[target=_blank]::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
    color: rgb(var(--gray));
  }
  .l-footer-sitemap__child {
    margin-left: -17px;
  }
  .l-footer-sitemap__child-item {
    margin: 7px 0;
    padding-left: 17px;
    position: relative;
  }
  .l-footer-sitemap__child-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 7px;
    height: 1px;
    background: rgb(var(--gray));
  }
  .l-footer-sitemap__child-item-link {
    display: inline-block;
    font-size: 1.4rem;
    position: relative;
  }
  .l-footer-sitemap__child-item-link::after {
    position: absolute;
    content: "";
    bottom: 4px;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-footer-sitemap__child-item-link:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
}

/* .l-footer-other
================================================ */
.l-footer-other {
  border-top: solid 1px #fff;
}
.l-footer-other__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.l-footer-other__cr {
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .l-footer-other__inner {
    padding-top: 42px;
    padding-bottom: 52px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer-other__cr {
    font-size: 1.2rem;
  }
}

/* .l-footer-policy
================================================== */
.l-footer-policy {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-policy__item::before {
  content: "- ";
  color: rgb(var(--gray));
}
.l-footer-policy__item + .l-footer-policy__item {
  margin-left: 40px;
}
.l-footer-policy__item-link {
  display: inline-block;
  font-size: 1.3rem;
  color: rgb(var(--gray));
  padding: 4px 0;
  position: relative;
}
.l-footer-policy__item-link::after {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 0;
  border-bottom: solid 1px rgb(var(--main));
}
.l-footer-policy__item-link:hover::after {
  -webkit-animation: border_anim 0.3s linear forwards;
  animation: border_anim 0.3s linear forwards;
}
/* .l-footer-page-top
================================================ */
/* .l-header-recruit
================================================ */
.l-header-recruit {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  min-width: 320px;
  transition: all 0.3s ease;
}
.l-header-recruit.is-active {
  background: #fff;
  box-shadow: 0px 5px 15px rgba(52, 53, 56, 0.1);
}
.l-header-recruit.is-open {
  background: #fff;
}
@media all and (min-width: 768px) {
  .l-header-recruit {
    min-width: var(--contents_width_with_padding);
    transition: all 0.3s ease;
  }
}

/* .l-header-recruit-info
================================================== */
.l-header-recruit-info {
  position: relative;
  z-index: 3;
  height: 60px;
}
.l-header-recruit-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-recruit-info__logo {
  padding: 15px 0 0 20px;
}
.l-header-recruit-info__logo .l-header-recruit-info__logo-link {
  display: flex;
  align-items: center;
}
.l-header-recruit-info__logo svg {
  width: 140px;
}
.l-header-recruit-info__logo-txt {
  background: #fff;
  margin-left: 8px;
  padding: 0 5px;
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .l-header-recruit-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  .l-header-recruit-info__logo {
    padding: 0 0 0 20px;
  }
  .l-header-recruit-info__logo svg {
    width: 200px;
  }
  .l-header-recruit-info__logo-txt {
    margin-left: 20px;
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 1460px ) {
  .l-header-recruit-info__logo svg {
    width: 285px;
  }
}

/* .l-nav-recruit-btn
================================================== */
.l-nav-recruit-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 70px;
  height: 60px;
  padding: 0;
  border: none;
  cursor: pointer;
}
.l-nav-recruit-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(var(--black));
  transition: all 0.3s ease;
}
.l-nav-recruit-btn__line-box {
  position: relative;
  width: 30px;
  height: 22px;
  margin: 0 auto;
}
.l-nav-recruit-btn__line:nth-child(1) {
  top: 0;
}
.l-nav-recruit-btn__line:nth-child(2) {
  top: 50%;
}
.l-nav-recruit-btn__line:nth-child(3) {
  top: 100%;
}
.l-nav-recruit-btn.is-open .l-nav-recruit-btn__line:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}
.l-nav-recruit-btn.is-open .l-nav-recruit-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-recruit-btn.is-open .l-nav-recruit-btn__line:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}
@media all and (min-width: 768px) {
  .l-nav-recruit-btn {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
  }
  .l-nav-recruit-btn:hover {
    opacity: 0.5;
  }
  .l-nav-recruit-btn__line-box {
    width: 40px;
    height: 27px;
  }
}

/* .l-nav-recruit
================================================ */
.l-nav-recruit {
  position: absolute;
  left: 0;
  z-index: 2000;
  width: 100%;
  max-height: calc(100svh - 60px);
  max-height: calc(100vh - 60px);
  min-width: 320px;
  padding: 15px 40px 60px;
  background: #fff;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease;
  overflow: auto;
}
@media all and (max-width: 767px) {
  .l-nav-recruit {
    transform: translateX(120%);
  }
  .l-nav-recruit::-webkit-scrollbar {
    display: none;
  }
  .l-nav-recruit.is-open {
    transform: translateX(0);
    opacity: 1;
  }
}
@media all and (min-width: 768px) {
  .l-nav-recruit {
    opacity: 0;
    visibility: hidden;
    height: calc(100svh - 60px);
    height: calc(100vh - 60px);
    max-height: calc(100svh - 60px);
    max-height: calc(100vh - 60px);
    padding: 120px 0;
  }
  .l-nav-recruit::before, .l-nav-recruit::after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
  }
  .l-nav-recruit::before {
    top: -100px;
    left: 0;
    width: 687px;
    height: 353px;
    background: url(../img/recruit/bg_header01.png) no-repeat center/contain;
  }
  .l-nav-recruit::after {
    bottom: 0;
    right: 0;
    width: 960px;
    height: 800px;
    background: url(../img/recruit/bg_header02.png) no-repeat center/contain;
  }
  .l-nav-recruit.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* .l-nav-recruit-list
================================================== */
.l-nav-recruit-list__item-link {
  position: relative;
  display: block;
  padding: 15px 0;
  border-bottom: solid 1px rgb(var(--border));
  font-size: 1.5rem;
  font-weight: 700;
}
.l-nav-recruit-list__item-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 14px;
  vertical-align: middle;
  color: rgb(var(--main));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.l-nav-recruit-list__item-link[target=_blank]::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: rgb(var(--main));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-nav-recruit-list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 2000;
  }
  .l-nav-recruit-list__item {
    width: 46%;
    max-width: 500px;
  }
  .l-nav-recruit-list__item:nth-child(odd) {
    margin-right: 8%;
  }
  .l-nav-recruit-list__item-link {
    padding: 30px 0;
    font-size: 2.4rem;
    transition: all 0.3s ease;
  }
  .l-nav-recruit-list__item-link::before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-nav-recruit-list__item-link::after {
    width: 20px;
    height: 17px;
  }
  .l-nav-recruit-list__item-link[target=_blank]::after {
    width: 14px;
    height: 14px;
  }
  .l-nav-recruit-list__item-link:hover {
    color: rgb(var(--main));
  }
  .l-nav-recruit-list__item-link:hover::before {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
}

/* .l-nav-recruit-other
================================================== */
.l-nav-recruit-other {
  margin-top: 30px;
}
.l-nav-recruit-other__item {
  width: 100%;
  max-width: 280px;
  margin: 10px auto;
}
.l-nav-recruit-other__item-link {
  position: relative;
  display: block;
  padding: 16px 0;
  border-radius: 30px;
  background: rgb(var(--lightgreen));
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.l-nav-recruit-other__item-link.is-corporate {
  background: rgb(var(--main));
}
.l-nav-recruit-other__item-link-sm {
  font-size: 1.2rem;
}
.l-nav-recruit-other__item-link::after {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path d="M-8482-455v-8h2.667v1.333h-1.335v5.332h5.335v-1.333H-8474V-455Zm4-4v-8h8v8Zm1.33-1.333h5.334v-5.332h-5.334Z" transform="translate(8482.5 467.501)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-nav-recruit-other {
    display: flex;
    margin: 0 95px 0 0;
  }
  .l-nav-recruit-other__item {
    width: 180px;
    margin: 0 5px;
  }
  .l-nav-recruit-other__item-link {
    box-sizing: border-box;
    min-height: 60px;
    padding: 11px 0;
    font-size: 1.6rem;
    line-height: 1.2;
    transition: all 0.3s ease;
  }
  .l-nav-recruit-other__item-link::after {
    right: 20px;
  }
  .l-nav-recruit-other__item-link.is-corporate {
    line-height: 60px;
    padding: 0;
  }
  .l-nav-recruit-other__item-link.is-corporate:hover {
    background: rgb(var(--hover-main));
  }
  .l-nav-recruit-other__item-link:hover {
    background: rgb(var(--hover-lightgreen));
  }
}

/* .l-nav-recruit-contact
================================================== */
@media all and (min-width: 768px) {
  .l-nav-recruit-contact {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 2000;
  }
  .l-nav-recruit-contact__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border-radius: 9999px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgb(var(--main));
    transition: all 0.3s ease;
  }
  .l-nav-recruit-contact__link:hover {
    background: rgb(var(--lightgreen));
  }
}

/* .l-nav-recruit-overlay
================================================ */
.l-nav-recruit-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-recruit-overlay {
    top: 100px;
  }
  .l-nav-recruit-overlay.is-active {
    display: block !important;
  }
}

/* .c-loading
================================================ */
.c-loading {
  position: fixed;
  top: 0;
  right: 0;
  background: rgb(var(--main));
  z-index: 9999;
  -webkit-animation: loading 1.2s forwards;
  animation: loading 1.2s forwards;
}

@-webkit-keyframes loading {
  30% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 100%;
  }
}

@keyframes loading {
  30% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 100%;
  }
}
/* .l-header
================================================ */
.l-header {
  position: relative;
  width: 100%;
  min-width: 320px;
}
@media all and (min-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    min-width: var(--contents_width_with_padding);
    transition: all 0.3s ease;
  }
  .l-header.is-hide {
    transform: translateY(-100%);
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 60px;
  background: rgb(var(--base));
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 185px;
  padding: 11px 0 0 9px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 109px;
    border-bottom: solid 1px rgb(var(--border));
  }
  .l-header-info__logo {
    width: 200px;
    padding: 35px 0 0 26px;
  }
}
@media all and (min-width: 1460px ) {
  .l-header-info__logo {
    width: 285px;
    padding: 28px 0 0 26px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgb(var(--main));
  border: none;
  cursor: pointer;
  z-index: 2000;
}
.l-nav-btn__line {
  position: absolute;
  left: 17px;
  width: 26px;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 23px;
}
.l-nav-btn__line:nth-child(2) {
  top: 30px;
}
.l-nav-btn__line:nth-child(3) {
  top: 37px;
  width: 17px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 30px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 30px;
  width: 26px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

/* .l-nav
================================================ */
.l-nav {
  position: fixed;
  top: 60px;
  left: 20px;
  z-index: 2000;
  width: calc(100% - 20px);
  max-height: calc(100vh - 70px);
  min-width: 320px;
  background: #fff;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    opacity: 1;
    display: block;
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    position: static;
    width: 100%;
    min-width: auto;
    padding: 0;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 19px 25px;
  border-bottom: solid 1px rgb(var(--border));
  position: relative;
}
.l-nav-list__item-link[target=_blank]::before {
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g><path d="M564.408.5c0-.008,0-.016,0-.023V.452l0-.015V.428l0-.016V.4l0-.016,0-.008,0-.015,0-.008,0-.014,0-.009,0-.012,0-.011,0-.011-.005-.012,0-.009L564.35.266l0-.008-.008-.014,0-.007-.009-.014,0-.007L564.311.2,564.3.2,564.3.186l-.008-.009L564.28.167,564.264.15h0l-.017-.016-.009-.008-.009-.008-.012-.009L564.208.1l-.013-.009-.007,0-.014-.009-.007,0-.014-.008-.007,0-.013-.007-.009,0-.012-.006-.01,0-.011,0-.012,0-.01,0-.014,0-.009,0-.015,0-.008,0-.016,0H564l-.015,0h-.01l-.014,0H560.8a.5.5,0,0,0,0,.993h1.912L558.6,5.11a.5.5,0,1,0,.7.7L563.415,1.7V3.543a.5.5,0,0,0,.993,0V.5h0" transform="translate(-554.408 -0.004)" fill="currentColor"/><path d="M8.953,80.652a.5.5,0,0,0-.5.5v3.3H.993V76.986H4.249a.5.5,0,0,0,0-.993H.5a.5.5,0,0,0-.5.5v8.456a.5.5,0,0,0,.5.5H8.953a.5.5,0,0,0,.5-.5v-3.8a.5.5,0,0,0-.5-.5" transform="translate(0 -75.442)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
}
.l-nav-list__child-item {
  margin: 7px 0;
}
.l-nav-list__child-item-link {
  display: block;
  padding-left: 17px;
  position: relative;
}
.l-nav-list__child-item-link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 7px;
  height: 1px;
  background: rgb(var(--gray));
}
@media all and (max-width: 767px) {
  .l-nav-list__item-link[class*=meganav] {
    padding-right: 50px;
    cursor: pointer;
  }
  .l-nav-list__item-link[class*=meganav]::before, .l-nav-list__item-link[class*=meganav]::after {
    position: absolute;
    top: 50%;
    right: 24px;
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    margin-top: -1px;
    background: rgb(var(--gray));
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link[class*=meganav]::before {
    transform: rotate(-90deg);
  }
  .l-nav-list__item-link[class*=meganav].is-active::before {
    transform: rotate(0);
  }
  .l-nav-list__child-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .l-nav-list__child-wrap {
    height: 0;
    padding: 0 25px;
    background: rgb(var(--bg));
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s ease;
  }
  .l-nav-list__child-wrap.is-active {
    height: auto;
    padding: 19px 25px;
    transition: all 0.3s ease;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: absolute;
    top: 0;
    right: 230px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2000;
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-left: 16px;
  }
  .l-nav-list__item-link {
    display: block;
    font-size: 1.3rem;
    padding: 40px 0;
    border-bottom: none;
  }
  .l-nav-list__item-link::after {
    position: absolute;
    content: "";
    bottom: 1px;
    left: 0;
    width: 0;
    border-bottom: solid 2px rgb(var(--main));
  }
  .l-nav-list__item-link[class*=meganav] {
    padding-right: 17px;
    cursor: pointer;
  }
  .l-nav-list__item-link[class*=meganav]::before {
    position: absolute;
    content: "";
    right: 0;
    top: 52px;
    width: 5px;
    height: 5px;
    border-top: solid 1px rgb(var(--black));
    border-right: solid 1px rgb(var(--black));
    transform: rotate(135deg);
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link[class*=meganav].is-active::before {
    transform: rotate(-45deg);
    top: 55px;
    border-color: rgb(var(--main));
  }
  .l-nav-list__item-link[class*=meganav].is-active::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .l-nav-list__item-link[target=_blank] {
    padding-right: 18px;
  }
  .l-nav-list__item-link[target=_blank]::before {
    right: 0;
  }
  .l-nav-list__item-link:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .l-nav-list__child-wrap {
    box-sizing: border-box;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
  }
  .l-nav-list__child-wrap.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-nav-list__child-inner {
    position: relative;
  }
  .l-nav-list__child-head {
    margin-bottom: 50px;
  }
  .l-nav-list__child-btn {
    position: absolute;
    top: 10px;
    right: 0;
    margin: 0;
  }
  .l-nav-list__child-first {
    width: 32.7%;
  }
  .l-nav-list__child-first-txt {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 13px;
    padding-right: 20px;
    position: relative;
  }
  .l-nav-list__child-first-txt::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 12.803px;
    height: 10px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-list__child-first-link {
    transition: all 0.3s ease;
  }
  .l-nav-list__child-first-link:hover {
    color: rgb(var(--main));
  }
  .l-nav-list__child-flex {
    position: relative;
  }
  .l-nav-list__child-item {
    margin: 0;
  }
  .l-nav-list__child-item.is-small {
    width: 26.2%;
  }
  .l-nav-list__child-item.is-small + .l-nav-list__child-item.is-small {
    margin-left: 5.7%;
  }
  .l-nav-list__child-item-link {
    padding: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    color: rgb(var(--black));
    border-bottom: solid 1px rgb(var(--border));
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link::before {
    top: auto;
    bottom: -1px;
    width: 0;
    height: 0;
    background: none;
    border-bottom: solid 1px rgb(var(--main));
  }
  .l-nav-list__child-item-link::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: inline-block;
    width: 12.803px;
    height: 10px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link:hover {
    color: rgb(var(--main));
  }
  .l-nav-list__child-item-link:hover::before {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
}
@media all and (min-width: 1460px ) {
  .l-nav-list__item + .l-nav-list__item {
    margin-left: 24px;
  }
  .l-nav-list__item-link {
    font-size: 1.6rem;
    padding: 39px 0;
  }
}

/* .l-nav-other
================================================== */
.l-nav-other {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 25px 34px;
}
.l-nav-other__item:nth-child(odd) {
  width: 50%;
}
.l-nav-other__item:nth-child(even) {
  margin-left: 30px;
}
.l-nav-other__item-link {
  display: block;
  font-size: 1.1rem;
  color: rgb(var(--gray));
  padding: 4px 0;
}
.l-nav-other__item-link::before {
  content: "- ";
}

/* .l-nav-contact
================================================== */
@media all and (min-width: 768px) {
  .l-nav-contact {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 2000;
  }
  .l-nav-contact__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border-radius: 9999px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgb(var(--main));
    transition: all 0.3s ease;
  }
  .l-nav-contact__link:hover {
    background: rgb(var(--lightgreen));
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay.is-active {
    display: block !important;
  }
}

/* .c-loading
================================================ */
.c-loading {
  position: fixed;
  top: 0;
  right: 0;
  background: rgb(var(--main));
  z-index: 9999;
  -webkit-animation: loading 1.2s forwards;
  animation: loading 1.2s forwards;
}

@keyframes loading {
  30% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 100%;
  }
}
/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background: rgb(var(--base));
  overflow: hidden;
}
.l-main-img.is-animated .l-main-img__area-img::after {
  width: 0;
  transition-delay: 1.5s;
}
.l-main-img__inner {
  padding-top: 124px;
  position: relative;
  z-index: 2;
}
.l-main-img__ico {
  position: absolute;
  top: 24px;
  right: -21px;
  width: 257px;
  z-index: -1;
  color: #F7F7F7;
  opacity: 0;
}
.l-main-img__copy {
  padding-left: 20px;
  position: relative;
  z-index: 3;
  margin-bottom: -9px;
}
.l-main-img__copy::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 93%;
  margin-top: 8px;
  background: linear-gradient(to bottom, rgb(var(--main)) 50%, rgb(var(--lightgreen)) 51%);
}
.l-main-img__copy-main {
  font-size: 21.3vw;
  line-height: 1;
  letter-spacing: -0.1em;
}
.l-main-img__copy-main:first-letter {
  letter-spacing: 0;
}
.l-main-img__copy-sub {
  font-size: 4.26vw;
  line-height: 0.5;
  padding-left: 5px;
}
.l-main-img__copy-sub:first-letter {
  color: rgb(var(--main));
}
.l-main-img__copy-sub::after {
  display: inline-block;
  width: 15.162px;
  height: 17.24px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.162 17.24"><path d="M-12.855,1.231l5.532,7.494-5.523,7.284h-5.633l5.518-7.328L-18.5,1.231h5.642M-12.234,0h-8.713L-14.5,8.676l-6.449,8.564h8.713l6.449-8.505Z" transform="translate(20.947)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.162 17.24"><path d="M-12.855,1.231l5.532,7.494-5.523,7.284h-5.633l5.518-7.328L-18.5,1.231h5.642M-12.234,0h-8.713L-14.5,8.676l-6.449,8.564h8.713l6.449-8.505Z" transform="translate(20.947)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--lightgreen));
  width: 4vw;
  height: 4vw;
  margin: 0 0 2px 6px;
}
.l-main-img__area-img {
  overflow: hidden;
  padding: 0 25px;
  padding-top: 0 !important;
  text-align: center;
  position: relative;
  font-size: 0;
}
.l-main-img__area-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 72.8%;
  bottom: 0;
  left: 0;
  background: url(../img/home/bg_mv01_sp.jpg) no-repeat bottom center/cover;
  z-index: -1;
}
.l-main-img__area-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgb(var(--base));
  z-index: 2;
  transition: all 3s 0s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-main-img__area-img.is-active::after {
  width: 0%;
}
.l-main-img__movie {
  position: relative;
  width: 100%;
  padding-top: 150.7%;
  overflow: hidden;
}
.l-main-img__movie iframe,
.l-main-img__movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 101%;
  min-width: 101%;
}
.l-main-img__scroll-link {
  display: inline-block;
  position: absolute;
  right: -2px;
  top: 35%;
  z-index: 2;
  padding: 10px 10px 150px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  color: #fff;
}
.l-main-img__scroll-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  width: 1px;
  height: 138px;
  background: #fff;
  -webkit-animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@media all and (min-width: 768px) {
  .l-main-img__inner {
    padding-top: 70px;
  }
  .l-main-img__ico {
    top: 66px;
    right: 36px;
    width: 25.5%;
  }
  .l-main-img__copy {
    padding-left: 30px;
    margin-bottom: -16px;
  }
  .l-main-img__copy::before {
    width: 11px;
  }
  .l-main-img__copy-main {
    font-size: 13vw;
    line-height: 0.9;
  }
  .l-main-img__copy-sub {
    font-size: 2.4vw;
    padding-left: 10px;
  }
  .l-main-img__copy-sub-ico {
    width: 15px;
  }
  .l-main-img__copy-sub::after {
    display: inline-block;
    width: 15.162px;
    height: 17.24px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.162 17.24"><path d="M-12.855,1.231l5.532,7.494-5.523,7.284h-5.633l5.518-7.328L-18.5,1.231h5.642M-12.234,0h-8.713L-14.5,8.676l-6.449,8.564h8.713l6.449-8.505Z" transform="translate(20.947)" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.162 17.24"><path d="M-12.855,1.231l5.532,7.494-5.523,7.284h-5.633l5.518-7.328L-18.5,1.231h5.642M-12.234,0h-8.713L-14.5,8.676l-6.449,8.564h8.713l6.449-8.505Z" transform="translate(20.947)" fill="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
    width: 2vw;
    height: 2vw;
    color: rgb(var(--lightgreen));
    margin: 0 0 2px 7px;
  }
  .l-main-img__area-img {
    padding: 0 60px;
    padding-bottom: 60px !important;
  }
  .l-main-img__area-img::before {
    height: 56.4%;
    background: url(../img/home/bg_mv01_pc.jpg) no-repeat bottom center/cover;
  }
  .l-main-img__movie {
    padding-top: 43%;
  }
  .l-main-img__scroll-link {
    right: 15px;
    top: 46%;
    z-index: 2;
    padding: 10px 10px 90px;
    font-size: 1.1rem;
  }
  .l-main-img__scroll-link::after {
    height: 80px;
  }
}
@media all and (min-width: 1460px ) {
  .l-main-img__inner {
    padding-top: 120px;
  }
  .l-main-img__ico {
    top: 109px;
    right: 59px;
  }
  .l-main-img__copy {
    padding-left: 50px;
    margin-bottom: -23px;
  }
  .l-main-img__copy::before {
    width: 18px;
    height: 90%;
    margin-top: 13px;
  }
  .l-main-img__copy-sub {
    padding-left: 15px;
  }
  .l-main-img__area-img {
    padding: 0 100px;
    padding-bottom: 100px !important;
  }
  .l-main-img__scroll-link {
    right: 32px;
    padding: 10px 10px 140px;
  }
  .l-main-img__scroll-link::after {
    height: 130px;
  }
}

@-webkit-keyframes sdl03 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdl03 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
}
.l-sub-img::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 275px;
  height: 354px;
  background: url(../img/common/bg_mv01_sp.png) no-repeat 0 100%/cover;
  z-index: -1;
}
.l-sub-img__inner {
  padding-top: 55px;
  padding-bottom: 53px;
}
.l-sub-img__en {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.l-sub-img__head {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgb(var(--main));
  padding-left: 22px;
  position: relative;
}
.l-sub-img__head::before, .l-sub-img__head::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.l-sub-img__head::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
@media all and (min-width: 768px) {
  .l-sub-img::before {
    top: 20px;
    width: 722px;
    height: 720px;
    background: url(../img/common/bg_mv01_pc.png) no-repeat 0 100%/cover;
  }
  .l-sub-img__inner {
    padding-top: 140px;
    padding-bottom: 94px;
  }
  .l-sub-img__en {
    font-size: 10rem;
    margin-bottom: 0;
  }
  .l-sub-img__head {
    font-size: 1.5rem;
    padding-left: 32px;
  }
  .l-sub-img__head::before, .l-sub-img__head::after {
    width: 15px;
    height: 15px;
  }
  .l-sub-img__head::after {
    left: 8px;
  }
}

/* .l-sub-img.has-img
================================================ */
.l-sub-img.has-img {
  position: relative;
  overflow: hidden;
}
.l-sub-img.has-img::before {
  display: none;
}
.l-sub-img.has-img .l-sub-img__area-img {
  padding: 0 20px 30px;
  position: relative;
}
.l-sub-img.has-img .l-sub-img__area-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 78%;
  bottom: 0;
  left: 0;
  background: url(../img/home/bg_mv01_sp.jpg) no-repeat bottom center/cover;
  z-index: -1;
}
.l-sub-img.has-img .l-sub-img__ico {
  position: absolute;
  top: 74px;
  right: -20px;
  width: 180px;
  color: #F9F9F9;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-sub-img.has-img .l-sub-img__inner {
    max-width: 100%;
    padding-top: 82px;
    padding-left: 40px;
  }
  .l-sub-img.has-img .l-sub-img__area-img {
    padding: 0 0 80px 40px;
  }
  .l-sub-img.has-img .l-sub-img__area-img::before {
    height: 74%;
    width: calc(100% - 40px);
    background: url(../img/home/bg_mv01_pc.jpg) no-repeat bottom center/cover;
  }
  .l-sub-img.has-img .l-sub-img__ico {
    top: 70px;
    right: 60px;
    width: 482px;
  }
}
@media all and (min-width: 1460px ) {
  .l-sub-img.has-img .l-sub-img__inner {
    padding-left: 100px;
  }
  .l-sub-img.has-img .l-sub-img__area-img {
    padding: 0 0 80px 100px;
  }
  .l-sub-img.has-img .l-sub-img__area-img::before {
    width: calc(100% - 100px);
  }
}

/* .l-sub-img.has-movie
================================================ */
.l-sub-img.has-movie .l-sub-img {
  position: relative;
}
.l-sub-img.has-movie .l-sub-img__movie {
  position: relative;
  width: 100%;
  padding-top: 119%;
  overflow: hidden;
}
.l-sub-img.has-movie .l-sub-img__movie::before, .l-sub-img.has-movie .l-sub-img__movie::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top right, #29B980, rgba(255, 255, 255, 0) 65%);
  opacity: 0.81;
  z-index: 2;
}
.l-sub-img.has-movie .l-sub-img__movie::after {
  background: #000;
  opacity: 0.08;
}
.l-sub-img.has-movie .l-sub-img__movie iframe,
.l-sub-img.has-movie .l-sub-img__movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 101%;
  min-width: 101%;
}
.l-sub-img.has-movie .l-sub-img__area-copy {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 30px;
  left: 20px;
  color: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  z-index: 3;
}
.l-sub-img.has-movie .l-sub-img__copy-head {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.l-sub-img.has-movie .l-sub-img__copy-txt {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .l-sub-img.has-movie .l-sub-img__area-img {
    padding: 0 40px 80px;
  }
  .l-sub-img.has-movie .l-sub-img__area-img::before {
    height: 58%;
    width: 100%;
    background: url(../img/home/bg_mv01_pc.jpg) no-repeat bottom center/cover;
  }
  .l-sub-img.has-movie .l-sub-img__movie {
    padding-top: 36.6%;
  }
  .l-sub-img.has-movie .l-sub-img__area-copy {
    width: calc(100% - 80px);
    bottom: 80px;
    left: 40px;
    padding: 80px;
  }
  .l-sub-img.has-movie .l-sub-img__copy-head {
    font-size: 3.6rem;
  }
  .l-sub-img.has-movie .l-sub-img__copy-txt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
@media all and (min-width: 1460px ) {
  .l-sub-img.has-movie .l-sub-img__area-img {
    padding: 0 100px 80px;
  }
  .l-sub-img.has-movie .l-sub-img__area-copy {
    width: calc(100% - 200px);
    bottom: 80px;
    left: 100px;
  }
  .l-sub-img.has-movie .l-sub-img__copy-head {
    font-size: 5rem;
  }
}

/* .l-sub-img.is-greeting
================================================ */
.l-sub-img.is-greeting {
  overflow: hidden;
}
.l-sub-img.is-greeting::before {
  display: none;
}
.l-sub-img.is-greeting .l-sub-img__ico {
  position: absolute;
  top: 74px;
  right: -20px;
  width: 180px;
  color: #F9F9F9;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-sub-img.is-greeting .l-sub-img__inner {
    max-width: 100%;
    padding: 82px 0 146px 100px;
  }
  .l-sub-img.is-greeting .l-sub-img__ico {
    top: 70px;
    right: 60px;
    width: 482px;
  }
}

/* .l-sub-img.is-csr
================================================ */
.l-sub-img.is-csr .l-sub-img__en {
  text-transform: uppercase;
}

/* .l-recruit-img
================================================ */
.l-recruit-img {
  overflow: hidden;
  height: 124.4svh;
  height: 124.4vh;
  max-height: 830px;
  background: url(../img/recruit/bg_main01_sp.png) no-repeat center/cover;
}
.l-recruit-img__inner {
  position: relative;
  display: grid;
  place-items: center;
  height: 100svh;
  height: 100vh;
  max-height: 667px;
}
.l-recruit-img__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--bg02));
}
.l-recruit-img__copy {
  box-sizing: border-box;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 0 23px;
}
.l-recruit-img__area-img {
  position: absolute;
  top: 12.4%;
  left: -8.6%;
  width: 106.13%;
}
@media (min-width: 500px) and (max-width: 767px) {
  .l-recruit-img__area-img {
    width: 90%;
    top: 0;
    left: 5%;
  }
}
@media all and (min-width: 768px) {
  .l-recruit-img {
    background-image: url(../img/recruit/bg_main01_pc.png);
  }
  .l-recruit-img__copy {
    width: 36.5%;
    max-width: 700px;
    padding: 0;
  }
  .l-recruit-img__area-img {
    top: 10%;
    left: -5.8%;
    width: 101.5%;
  }
}
@media all and (min-width: 1160px) {
  .l-recruit-img {
    height: 118svh;
    height: 118vh;
    max-height: calc(56.25vw + 180px);
  }
  .l-recruit-img__inner {
    max-height: 56.25vw;
  }
}

/* .l-recruit-sub-img
================================================ */
.l-recruit-sub-img {
  position: relative;
  height: 300px;
  background: rgb(var(--bg02)) url(../img/recruit/bg_subimg01_sp.png) no-repeat top right/cover;
}
.l-recruit-sub-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -89.33%;
  left: 0;
  right: 0;
  width: 100%;
  height: 89.33%;
  background: url(../img/recruit/bg_deco01_sp.png) no-repeat center/cover;
}
.l-recruit-sub-img__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.l-recruit-sub-img__area-txt {
  margin-top: 35px;
}
.l-recruit-sub-img__en {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}
.l-recruit-sub-img__head {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgb(var(--main));
  padding-left: 22px;
  position: relative;
}
.l-recruit-sub-img__head::before, .l-recruit-sub-img__head::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.l-recruit-sub-img__head::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
@media all and (min-width: 768px) {
  .l-recruit-sub-img {
    height: 400px;
    background-image: url(../img/recruit/bg_subimg01_pc.png);
  }
  .l-recruit-sub-img::after {
    bottom: -100%;
    left: auto;
    width: 960px;
    height: 100%;
    background-image: url(../img/recruit/bg_deco01_pc.png);
  }
  .l-recruit-sub-img__area-txt {
    margin-top: 37px;
  }
  .l-recruit-sub-img__en {
    font-size: 7.4rem;
    margin-bottom: 4px;
  }
  .l-recruit-sub-img__head {
    font-size: 1.5rem;
    padding-left: 32px;
  }
  .l-recruit-sub-img__head::before, .l-recruit-sub-img__head::after {
    width: 15px;
    height: 15px;
  }
  .l-recruit-sub-img__head::after {
    left: 8px;
  }
}

/* .l-recruit-interview-img
================================================ */
.l-recruit-interview-img {
  position: relative;
}
.l-recruit-interview-img__img {
  position: relative;
  width: 100%;
  padding-top: 50.66%;
}
.l-recruit-interview-img__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-recruit-interview-img__img::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  right: 0;
  width: calc(100% - 47px);
  height: 232%;
  background: url(../img/recruit/interviews/bg_deco02_sp.png) no-repeat center/cover;
}
.l-recruit-interview-img__inner {
  position: relative;
  z-index: 2;
  margin-top: -77px;
}
.l-recruit-interview-img__en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 0 6px;
  background: linear-gradient(to right, rgb(var(--main)) 0%, rgb(var(--lightgreen)) 100%);
  color: #fff;
  font-size: 1.5rem;
}
.l-recruit-interview-img__head {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: #fff;
  padding: 5px 10px;
  line-height: 2;
  font-size: 2.5rem;
}
.l-recruit-interview-img__info {
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid rgb(var(--border));
  background: #fff;
}
.l-recruit-interview-img__info-detail {
  font-weight: 700;
}
.l-recruit-interview-img__info-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  padding: 0 10px;
  background: rgb(var(--main));
  color: #fff;
  font-size: 1.3rem;
}
.l-recruit-interview-img__info-name {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
}
.l-recruit-interview-img__info-career {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgb(var(--border));
}
.l-recruit-interview-img__info-career-head {
  font-size: 1.5rem;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .l-recruit-interview-img__img {
    padding-top: 600px;
  }
  .l-recruit-interview-img__img::after {
    width: 960px;
    height: 400px;
    background-image: url(../img/recruit/interviews/bg_deco02_pc.png);
  }
  .l-recruit-interview-img__inner {
    margin-top: -280px;
  }
  .l-recruit-interview-img__en {
    padding: 0 15px;
    font-size: 2.1rem;
  }
  .l-recruit-interview-img__head {
    line-height: 1.9;
    font-size: 3.7rem;
  }
  .l-recruit-interview-img__info {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    padding: 40px;
  }
  .l-recruit-interview-img__info-detail {
    flex: 0 0 50%;
    line-height: 1.5;
  }
  .l-recruit-interview-img__info-label {
    margin-top: 3px;
    padding: 2px 10px;
    font-size: 1.4rem;
  }
  .l-recruit-interview-img__info-name {
    font-size: 2.4rem;
  }
  .l-recruit-interview-img__info-year {
    margin-top: 10px;
  }
  .l-recruit-interview-img__info-career {
    min-height: 70px;
    margin-top: 0;
    padding-top: 0;
    padding-left: 40px;
    border-top: none;
    border-left: 1px solid rgb(var(--border));
  }
  .l-recruit-interview-img__info-career-head {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-anime-elem[data-anime=fadein-left-dash] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 3s 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-c-anime-elem[data-anime=fadein-left-dash].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-left-copy] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 3s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-c-anime-elem[data-anime=fadein-left-copy].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-left-txt] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 3s 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-c-anime-elem[data-anime=fadein-left-txt].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-cliptext__line {
  display: inline-block;
  -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  opacity: 0;
}
.js-c-cliptext.is-animated .js-c-cliptext__line {
  transition: clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, -webkit-clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition-property: clip-path, opacity, -webkit-clip-path;
  -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  opacity: 1;
}

/* .js-c-slider
================================================== */
.js-c-slider__arrow {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px;
  box-sizing: border-box;
}
.js-c-slider__arrow::before {
  display: inline-block;
  width: 11.464px;
  height: 6.833px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.464 6.833"><path d="M5.2,6.305-.532.528.532-.528,5.2,4.175l4.668-4.7L10.932.528Z" transform="translate(0.532 0.528)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.js-c-slider__arrow.is-prev {
  right: 65px;
}
.js-c-slider__arrow.is-prev::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.js-c-slider__arrow.is-next {
  right: 20px;
}
@media all and (min-width: 768px) {
  .js-c-slider__arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .js-c-slider__arrow::before {
    width: 15px;
    height: 9px;
  }
  .js-c-slider__arrow.is-prev {
    right: auto;
    left: 90px;
  }
  .js-c-slider__arrow.is-next {
    right: auto;
    left: 146px;
  }
  .js-c-slider__arrow:hover {
    border-color: rgb(var(--main));
    background: rgb(var(--main));
  }
  .js-c-slider__arrow:hover::before {
    color: #fff;
  }
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* pagination
================================================== */
.swiper-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  position: relative;
}
.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet {
  transition: background 0.3s ease;
  background: rgb(var(--border));
  border-radius: 50%;
  display: block;
  margin: 0 5px;
  height: 6px;
  width: 6px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(var(--main));
}

/* navigation
================================================== */
.swiper-button-prev,
.swiper-button-next {
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: rgb(var(--black));
  border: solid 1px rgb(var(--black));
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  position: relative;
  text-indent: 200%;
  white-space: nowrap;
  z-index: 2;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  box-shadow: none;
  background: #EFEFEF;
  color: #9A9EA1;
  pointer-events: none;
  border: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  height: 8px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 80px;
    height: 80px;
    cursor: pointer;
  }
  .swiper-button-prev svg,
.swiper-button-next svg {
    width: 29px;
    height: 16px;
  }
  .swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
  }
}

.swiper-button-prev svg {
  transform: translate(-50%, -50%) scale(-1, 1);
}

/* scrollbar
================================================== */
/* .about-anchor
================================================ */
.about-anchor__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .about-anchor__inner {
    padding-bottom: 130px;
  }
}

/* .about-sec-list
================================================ */
.about-sec-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -40px;
}
.about-sec-list__item {
  width: calc(50% - 24px);
  margin: 0 12px 40px;
}
.about-sec-list__img {
  margin-bottom: 15px;
}
.about-sec-list__head {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media all and (min-width: 768px) {
  .about-sec-list {
    margin: 0 -13px;
  }
  .about-sec-list__item {
    width: calc(25% - 26px);
    margin: 0 13px;
  }
  .about-sec-list__img {
    margin-bottom: 20px;
  }
  .about-sec-list__head {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .about-sec-list.is-col3-pc {
    margin: 0 -27px;
  }
  .about-sec-list.is-col3-pc .about-sec-list__item {
    width: calc(33.3% - 54px);
    margin: 0 27px;
  }
}

/* .about-history
================================================ */
.about-history {
  position: relative;
  z-index: 2;
}
.about-history::before, .about-history::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 50px;
  top: 0;
  left: 0;
  background: #FDFDFD;
  z-index: -1;
}
.about-history::after {
  top: auto;
  bottom: -50px;
  left: 0;
  background: rgb(var(--bg));
}
.about-history__en {
  font-size: 20rem;
  line-height: 1;
  position: absolute;
  top: 60px;
  left: -20px;
  color: #fff;
  opacity: 0.25;
}
.about-history__inner {
  padding-top: 120px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}
.about-history-list__item {
  position: relative;
  z-index: 2;
}
.about-history-list__area-txt {
  margin-top: -30px;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.about-history-list__area-txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about-history-list__tab {
  display: inline-block;
  color: #fff;
  background: rgb(var(--main));
  padding: 0 15px;
  line-height: 1.6;
}
.about-history-list__year {
  font-size: 3.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.about-history-list__table {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .about-history-list__item {
    margin-top: 40px;
  }
  .about-history-list__set {
    margin: 0 -20px;
  }
  .about-history-list__area-txt {
    margin-right: 20px;
  }
  .about-history-list__item:nth-child(even) .about-history-list__area-txt {
    margin-right: 0;
    margin-left: 20px;
  }
}
@media all and (min-width: 768px) {
  .about-history::before, .about-history::after {
    height: 130px;
  }
  .about-history::after {
    bottom: -130px;
  }
  .about-history__en {
    font-size: 30rem;
    left: auto;
    top: 130px;
    right: 0;
  }
  .about-history__inner {
    padding-top: 300px;
    padding-bottom: 180px;
  }
  .about-history-list__item + .about-history-list__item {
    margin-top: 80px;
  }
  .about-history-list__item:nth-child(even) .about-history-list__img {
    text-align: left;
  }
  .about-history-list__item:nth-child(even) .about-history-list__area-txt {
    margin-right: 0;
    margin-left: auto;
  }
  .about-history-list__img {
    text-align: right;
  }
  .about-history-list__area-txt {
    margin-top: -340px;
    width: 650px;
    min-height: 366px;
    padding: 50px;
    box-sizing: border-box;
  }
  .about-history-list__tab {
    font-size: 2rem;
    padding: 4px 25px;
  }
  .about-history-list__year {
    font-size: 5rem;
    margin-bottom: 20px;
    margin-top: 5px;
  }
  .about-history-list__table {
    margin-top: 40px;
  }
}
@media all and (min-width: 1460px ) {
  .about-history__en {
    font-size: 40rem;
  }
}

/* .about-service
================================================ */
.about-service {
  position: relative;
}
.about-service::before {
  position: absolute;
  z-index: 2;
  top: -44px;
  right: 21px;
  display: inline-block;
  width: 140.89px;
  height: 88.44px;
  vertical-align: middle;
  color: #F6F9F8;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 257.465 161.618"><g transform="translate(0 0)"><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(136.274 0)" fill="currentColor"/><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(20.947 0)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 257.465 161.618"><g transform="translate(0 0)"><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(136.274 0)" fill="currentColor"/><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(20.947 0)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  mix-blend-mode: multiply;
}
.about-service__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.about-service__list {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .about-service::before {
    top: -201px;
    right: 50px;
    width: 641px;
    height: 403px;
  }
  .about-service__inner {
    padding-top: 250px;
    padding-bottom: 170px;
  }
  .about-service__list {
    margin-top: 100px;
  }
}

/* .about-structure
================================================ */
.about-structure__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.about-structure-list__item {
  min-height: 186px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.about-structure-list__item::before {
  position: absolute;
  content: "";
  width: 186px;
  height: 186px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.about-structure-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border-bottom: solid 1px rgb(var(--main));
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
@media all and (min-width: 768px) {
  .about-structure__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .about-structure-list {
    display: flex;
    flex-wrap: wrap;
    margin: 100px -27px -70px;
  }
  .about-structure-list__item {
    width: calc(33.3% - 54px);
    margin: 0 27px 70px;
    min-height: 271px;
  }
  .about-structure-list__item::before {
    width: 271px;
    height: 271px;
  }
  .about-structure-list__head {
    font-size: 2.2rem;
    padding-bottom: 15px;
    padding-top: 30px;
    margin-bottom: 25px;
  }
}

/* .about-reason
================================================ */
.about-reason__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.about-reason-list {
  counter-reset: reason;
}
.about-reason-list__item {
  margin-top: 15px;
  padding: 20px;
  background: #F7F7F7;
  counter-increment: reason;
}
.about-reason-list__head {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 54px;
  margin-bottom: 10px;
  min-height: 44px;
  position: relative;
}
.about-reason-list__head::before {
  position: absolute;
  content: "0" counter(reason);
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: normal;
  line-height: 44px;
  color: #fff;
  background: rgb(var(--main));
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media all and (min-width: 768px) {
  .about-reason__inner {
    padding-top: 170px;
    padding-bottom: 210px;
  }
  .about-reason-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
  }
  .about-reason-list__item {
    width: calc(50% - 30px);
    margin: 15px;
    padding: 30px;
    box-sizing: border-box;
  }
  .about-reason-list__head {
    padding-left: 64px;
    font-size: 2.2rem;
    min-height: 54px;
    margin-bottom: 15px;
  }
  .about-reason-list__head::before {
    width: 54px;
    height: 54px;
    line-height: 54px;
    font-size: 1.8rem;
  }
}

/* .about-number
================================================ */
.about-number {
  position: relative;
}
.about-number::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #309B6F, #91D4AC);
  opacity: 0.28;
  z-index: -1;
}
.about-number__en {
  font-size: 20rem;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: -20px;
  color: #fff;
  opacity: 0.25;
  white-space: nowrap;
}
.about-number__inner {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}
.about-number-list__item {
  background: #fff;
  padding: 27px 25px 20px;
  border: solid 5px #F6F9F8;
  box-sizing: border-box;
  text-align: center;
  margin-top: 15px;
}
.about-number-list__head {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}
.about-number-list__txt {
  margin-top: 15px;
}
.about-number-list__box {
  color: rgb(var(--main));
  background: #F6F9F8;
  padding: 10px;
  margin-top: 10px;
  line-height: 1.4;
}
.about-number-list__box-num {
  font-size: 6.4rem;
}
.about-number-list__box-txt {
  font-size: 1.9rem;
  font-weight: 700;
}
.about-number-list__btn {
  margin-top: 15px;
  text-align: right;
}
@media all and (max-width: 767px) {
  .about-number {
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .about-number__en {
    font-size: 30rem;
    left: auto;
    top: -70px;
    right: 0;
  }
  .about-number__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .about-number-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
  }
  .about-number-list__item {
    width: calc(50% - 30px);
    margin: 15px;
    padding: 40px 35px 35px;
    box-sizing: border-box;
    border-width: 10px;
  }
  .about-number-list__head {
    font-size: 2.8rem;
  }
  .about-number-list__box {
    padding: 18px;
    margin-top: 15px;
  }
  .about-number-list__box-num {
    font-size: 10.3rem;
  }
  .about-number-list__box-txt {
    font-size: 3rem;
  }
  .about-number-list__btn {
    margin-top: 30px;
  }
}
@media all and (min-width: 1460px ) {
  .about-number__en {
    font-size: 40rem;
  }
}

/* .about-local
================================================ */
.about-local__inner {
  padding-top: 70px;
}
.about-local__btn {
  text-align: right;
}
@media all and (min-width: 768px) {
  .about-local__inner {
    padding-top: 170px;
    position: relative;
  }
  .about-local__btn {
    position: absolute;
    top: 209px;
    right: 0;
    margin: 0;
  }
}

/* .activity-intro
================================================ */
.activity-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .activity-intro {
    margin-bottom: 160px;
  }
}

/* .activity-activity
================================================ */
.activity-activity {
  margin-top: 65px;
}
.activity-activity__inner {
  padding-top: 75px;
}
@media all and (min-width: 768px) {
  .activity-activity {
    margin-top: 160px;
  }
  .activity-activity__inner {
    padding-top: 170px;
  }
}

/* .company-about
================================================ */
.company-about {
  margin-bottom: 70px;
}
.company-about__inner {
  padding-top: 70px;
}
@media all and (max-width: 767px) {
  .company-about__area-img {
    margin-top: 35px;
  }
}
@media all and (min-width: 768px) {
  .company-about {
    margin-bottom: 190px;
  }
  .company-about__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 170px;
  }
  .company-about__area-txt {
    width: 50%;
    padding-right: 50px;
    box-sizing: border-box;
  }
  .company-about__head {
    margin-bottom: 45px;
  }
  .company-about__area-img {
    width: 50%;
  }
  .company-about__btn {
    margin-top: 45px;
  }
}

/* .company-other
================================================ */
.company-other__inner {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .company-other__inner {
    padding-top: 150px;
  }
}

#contact .l-breadcrumb, #confirm .l-breadcrumb {
  background: rgb(var(--bg));
}

/* .contact-intro
================================================ */
.contact-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .contact-intro {
    margin-bottom: 160px;
  }
}

/* .contact-info
================================================ */
.contact-info-sec + .contact-info-sec {
  margin-top: 30px;
}
.contact-info-sec__head {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.contact-info-table.is-tel {
  margin-bottom: -1px;
}
.contact-info-table.is-tel th {
  position: relative;
}
.contact-info-table.is-tel th::before {
  display: inline-block;
  width: 21.521px;
  height: 21.415px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.521 21.415"><path d="M15.442,21.415a7.574,7.574,0,0,1-1.491-.134,19.928,19.928,0,0,1-5.336-2.753A22.864,22.864,0,0,1,1.766,11.5a13.042,13.042,0,0,1-1.6-4.14A8.732,8.732,0,0,1,.15,4.085,7.093,7.093,0,0,1,1.012,1.8,4.093,4.093,0,0,1,2.042.6,4.763,4.763,0,0,1,4.693,0a.986.986,0,0,1,.825.487L8.092,4.914a.976.976,0,0,1-.173,1.2L5.752,8.178a.944.944,0,0,0-.246.977,9.521,9.521,0,0,0,3.332,4.416,18.827,18.827,0,0,0,3.571,2.153.423.423,0,0,0,.492-.092c.549-.584.992-1.041,1.353-1.4.253-.25.464-.447.626-.585a1.265,1.265,0,0,1,.544-.332c.192-.064.463-.034,1.275.245.629.216,1.359.507,1.861.714.646.266,1.3.552,1.8.784.258.12.466.222.618.3.243.129.363.21.435.346a2.482,2.482,0,0,1,.021,1.333,7.091,7.091,0,0,1-.83,2.129,4.7,4.7,0,0,1-3.258,2.049,9.236,9.236,0,0,1-1.907.2M4.534.881a3.83,3.83,0,0,0-1.987.445,3.251,3.251,0,0,0-.781.934,6.169,6.169,0,0,0-.752,1.994A7.856,7.856,0,0,0,1.027,7.2a12.169,12.169,0,0,0,1.5,3.858A21.987,21.987,0,0,0,9.111,17.8a26.735,26.735,0,0,0,3.171,1.866,9.756,9.756,0,0,0,1.849.752,7.949,7.949,0,0,0,3.033-.061,3.974,3.974,0,0,0,2.679-1.628,6.311,6.311,0,0,0,.712-1.777,2.845,2.845,0,0,0,.081-.776c-.3-.165-1.189-.583-2.4-1.082a15.923,15.923,0,0,0-2.592-.922l-.009,0a18.084,18.084,0,0,0-2.09,2.06,1.3,1.3,0,0,1-1.514.283,19.66,19.66,0,0,1-3.734-2.255A10.378,10.378,0,0,1,4.671,9.432,1.828,1.828,0,0,1,5.146,7.54L7.314,5.479a.1.1,0,0,0,.018-.122L4.756.932A.1.1,0,0,0,4.673.882l-.139,0M20.625,16.094h0Zm-5.087-1.9h0Zm-.158-.855h0m.111-.024h0" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.521 21.415"><path d="M15.442,21.415a7.574,7.574,0,0,1-1.491-.134,19.928,19.928,0,0,1-5.336-2.753A22.864,22.864,0,0,1,1.766,11.5a13.042,13.042,0,0,1-1.6-4.14A8.732,8.732,0,0,1,.15,4.085,7.093,7.093,0,0,1,1.012,1.8,4.093,4.093,0,0,1,2.042.6,4.763,4.763,0,0,1,4.693,0a.986.986,0,0,1,.825.487L8.092,4.914a.976.976,0,0,1-.173,1.2L5.752,8.178a.944.944,0,0,0-.246.977,9.521,9.521,0,0,0,3.332,4.416,18.827,18.827,0,0,0,3.571,2.153.423.423,0,0,0,.492-.092c.549-.584.992-1.041,1.353-1.4.253-.25.464-.447.626-.585a1.265,1.265,0,0,1,.544-.332c.192-.064.463-.034,1.275.245.629.216,1.359.507,1.861.714.646.266,1.3.552,1.8.784.258.12.466.222.618.3.243.129.363.21.435.346a2.482,2.482,0,0,1,.021,1.333,7.091,7.091,0,0,1-.83,2.129,4.7,4.7,0,0,1-3.258,2.049,9.236,9.236,0,0,1-1.907.2M4.534.881a3.83,3.83,0,0,0-1.987.445,3.251,3.251,0,0,0-.781.934,6.169,6.169,0,0,0-.752,1.994A7.856,7.856,0,0,0,1.027,7.2a12.169,12.169,0,0,0,1.5,3.858A21.987,21.987,0,0,0,9.111,17.8a26.735,26.735,0,0,0,3.171,1.866,9.756,9.756,0,0,0,1.849.752,7.949,7.949,0,0,0,3.033-.061,3.974,3.974,0,0,0,2.679-1.628,6.311,6.311,0,0,0,.712-1.777,2.845,2.845,0,0,0,.081-.776c-.3-.165-1.189-.583-2.4-1.082a15.923,15.923,0,0,0-2.592-.922l-.009,0a18.084,18.084,0,0,0-2.09,2.06,1.3,1.3,0,0,1-1.514.283,19.66,19.66,0,0,1-3.734-2.255A10.378,10.378,0,0,1,4.671,9.432,1.828,1.828,0,0,1,5.146,7.54L7.314,5.479a.1.1,0,0,0,.018-.122L4.756.932A.1.1,0,0,0,4.673.882l-.139,0M20.625,16.094h0Zm-5.087-1.9h0Zm-.158-.855h0m.111-.024h0" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  transform: rotate(11deg);
  width: 15px;
  height: 15px;
  color: rgb(var(--gray));
  margin: 0 3px 2px 0;
}
.contact-info-table.is-mail th {
  position: relative;
}
.contact-info-table.is-mail th::before {
  display: inline-block;
  width: 18px;
  height: 12.486px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12.486"><g transform="translate(0 0)"><g><path d="M.464-.5H16.536A.965.965,0,0,1,17.5.464V11.022a.965.965,0,0,1-.964.964H.464A.965.965,0,0,1-.5,11.022V.464A.965.965,0,0,1,.464-.5ZM16.536,11.344a.322.322,0,0,0,.321-.321V.464a.322.322,0,0,0-.321-.321H.464A.322.322,0,0,0,.143.464V11.022a.322.322,0,0,0,.321.321Z" transform="translate(0.5 0.5)" fill="currentColor"/><path d="M20.514,19.544a1.956,1.956,0,0,1-1.232-.434l0,0L12.716,13.62a.321.321,0,0,1,.412-.493l6.56,5.485a1.321,1.321,0,0,0,1.665-.011l6.368-5.47a.321.321,0,0,1,.419.488l-6.37,5.472,0,0A1.957,1.957,0,0,1,20.514,19.544Z" transform="translate(-11.427 -11.827)" fill="currentColor"/><path d="M-.178,3.972a.321.321,0,0,1-.236-.1A.321.321,0,0,1-.4,3.414L3.738-.414A.321.321,0,0,1,4.192-.4a.321.321,0,0,1-.017.454L.04,3.886A.32.32,0,0,1-.178,3.972Z" transform="translate(1.751 7.443)" fill="currentColor"/><path d="M3.956,3.972a.32.32,0,0,1-.218-.086L-.4.057A.321.321,0,0,1-.414-.4.321.321,0,0,1,.04-.414L4.175,3.414a.321.321,0,0,1-.218.557Z" transform="translate(12.471 7.443)" fill="currentColor"/></g><path d="M3.956,3.972a.32.32,0,0,1-.218-.086L-.4.057A.321.321,0,0,1-.414-.4.321.321,0,0,1,.04-.414L4.175,3.414a.321.321,0,0,1-.218.557Z" transform="translate(12.471 7.443)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12.486"><g transform="translate(0 0)"><g><path d="M.464-.5H16.536A.965.965,0,0,1,17.5.464V11.022a.965.965,0,0,1-.964.964H.464A.965.965,0,0,1-.5,11.022V.464A.965.965,0,0,1,.464-.5ZM16.536,11.344a.322.322,0,0,0,.321-.321V.464a.322.322,0,0,0-.321-.321H.464A.322.322,0,0,0,.143.464V11.022a.322.322,0,0,0,.321.321Z" transform="translate(0.5 0.5)" fill="currentColor"/><path d="M20.514,19.544a1.956,1.956,0,0,1-1.232-.434l0,0L12.716,13.62a.321.321,0,0,1,.412-.493l6.56,5.485a1.321,1.321,0,0,0,1.665-.011l6.368-5.47a.321.321,0,0,1,.419.488l-6.37,5.472,0,0A1.957,1.957,0,0,1,20.514,19.544Z" transform="translate(-11.427 -11.827)" fill="currentColor"/><path d="M-.178,3.972a.321.321,0,0,1-.236-.1A.321.321,0,0,1-.4,3.414L3.738-.414A.321.321,0,0,1,4.192-.4a.321.321,0,0,1-.017.454L.04,3.886A.32.32,0,0,1-.178,3.972Z" transform="translate(1.751 7.443)" fill="currentColor"/><path d="M3.956,3.972a.32.32,0,0,1-.218-.086L-.4.057A.321.321,0,0,1-.414-.4.321.321,0,0,1,.04-.414L4.175,3.414a.321.321,0,0,1-.218.557Z" transform="translate(12.471 7.443)" fill="currentColor"/></g><path d="M3.956,3.972a.32.32,0,0,1-.218-.086L-.4.057A.321.321,0,0,1-.414-.4.321.321,0,0,1,.04-.414L4.175,3.414a.321.321,0,0,1-.218.557Z" transform="translate(12.471 7.443)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--gray));
  margin: 0 5px 3px 0;
}
.contact-info-table .is-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(var(--black));
}
.contact-info-table .is-bold {
  font-size: 1.4rem;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .contact-info-table__mail + .contact-info-table__mail {
    padding-top: 10px;
    margin-top: 10px;
    position: relative;
  }
  .contact-info-table__mail + .contact-info-table__mail::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    border-top: solid 1px rgb(var(--border));
  }
}
@media all and (min-width: 768px) {
  .contact-info-sec__head {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .contact-info-table__wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-info-table.is-tel {
    width: 266px;
    border-right: solid 1px rgb(var(--border));
  }
  .contact-info-table.is-tel th::before {
    width: 20px;
    height: 20px;
    margin: 0 3px 2px 0;
  }
  .contact-info-table.is-tel td {
    width: 266px;
    padding: 27px 20px;
  }
  .contact-info-table.is-mail {
    width: calc(100% - 267px);
  }
  .contact-info-table.is-mail th::before {
    width: 24px;
    height: 16px;
    margin: 0 6px 4px 0;
  }
  .contact-info-table .is-num {
    font-size: 2rem;
    pointer-events: none;
  }
  .contact-info-table .is-bold {
    font-size: 1.6rem;
  }
  .contact-info-table__mail-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-info-table__mail + .contact-info-table__mail {
    padding-left: 22px;
    margin-left: 22px;
    border-left: solid 1px rgb(var(--border));
  }
}

/* .contact-form
================================================ */
.contact-form {
  margin-top: 70px;
}
.contact-form__inner {
  padding-top: 50px;
}
.contact-form-content {
  margin-top: 30px;
}
.contact-form-content__box {
  background: #fff;
  padding: 50px 20px 70px;
  margin: 0 -20px;
}
@media all and (min-width: 768px) {
  .contact-form {
    margin-top: 160px;
  }
  .contact-form__inner {
    padding-top: 160px;
  }
  .contact-form-content {
    margin-top: 60px;
  }
  .contact-form-content__box {
    padding: 80px 100px;
    margin: 0;
    border-radius: 10px;
  }
}

/* .csr-intro
================================================ */
.csr-intro__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .csr-intro__inner {
    padding-bottom: 170px;
  }
}

/* .csr-sec
================================================ */
.csr-sec + .csr-sec {
  margin-top: 60px;
}
@media all and (min-width: 768px) {
  .csr-sec + .csr-sec {
    margin-top: 100px;
  }
}

/* .data-content
================================================ */
.data-content__inner {
  padding-top: 50px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .data-content__inner {
    padding-top: 98px;
    padding-bottom: 100px;
  }
}

.data-content-list {
  display: grid;
  grid-template-columns: 275px;
  grid-row-gap: 20px;
  justify-content: center;
}
.data-content-list__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 275px;
  border: 8px solid rgb(var(--bg02));
  border-radius: 10px;
  background: #fff;
}
.data-content-list__item.is-turn .data-content-list__item-ico {
  margin-bottom: 10px;
}
.data-content-list__item:nth-child(2) .data-content-list__item-num {
  margin-top: 10px;
}
.data-content-list__item-num {
  color: rgb(var(--main));
  font-weight: 700;
  line-height: 1.2;
}
.data-content-list__item-num.is-graph {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.data-content-list__item-num.is-graph.is-left {
  left: 10px;
}
.data-content-list__item-num.is-graph.is-right {
  right: 5px;
}
.data-content-list__item-num.is-graph.is-right .data-content-list__item-num-count {
  padding-left: 4px;
}
.data-content-list__item-num.is-graph .data-content-list__item-num-count {
  font-size: 2.4rem;
  line-height: 1.4;
}
.data-content-list__item-num-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.data-content-list__item-num-box.is-mb {
  margin-bottom: 15px;
}
.data-content-list__item-num-box .data-content-list__item-num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 12px;
  text-align: center;
}
.data-content-list__item-num-label {
  display: flex;
  align-items: center;
  min-height: 32px;
  color: rgb(var(--black));
}
.data-content-list__item-num-label.is-car img {
  width: 29px;
  margin-right: 4px;
}
.data-content-list__item-num-label.is-public img {
  width: 17px;
  margin-right: 6px;
}
.data-content-list__item-num-label.is-other img {
  width: 32px;
  margin-right: 5px;
}
.data-content-list__item-num-count {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
}
.data-content-list__item-num-count.is-small {
  font-size: 3.9rem;
}
.data-content-list__item-num-graph {
  display: block;
  font-size: 1.3rem;
}
.data-content-list__item-ico {
  margin-top: 10px;
  margin-bottom: 20px;
}
.data-content-list__item-ico img {
  height: 82px;
  width: auto;
}
.data-content-list__item-ico.is-lg {
  margin-bottom: 5px;
}
.data-content-list__item-ico.is-lg img {
  height: 100px;
}
.data-content-list__item-ico.is-graph {
  position: relative;
}
.data-content-list__item-ico.is-graph img {
  height: 160px;
}
.data-content-list__item-txt {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}
.data-content-list__item-txt-en {
  display: block;
  color: rgb(var(--main));
  font-size: 1.3rem;
  font-weight: 500;
}
.data-content-list__item-txt-sub {
  font-size: 1.2rem;
}
.data-content-list__item-sub {
  font-size: 1.3rem;
  line-height: 1.2;
}
@media all and (min-width: 768px) {
  .data-content-list {
    grid-template-columns: repeat(3, 340px);
    gap: 40px;
  }
  .data-content-list__item {
    height: 340px;
  }
  .data-content-list__item.is-turn .data-content-list__item-num-label {
    margin-bottom: 0;
  }
  .data-content-list__item.is-turn .data-content-list__item-num-count {
    font-size: 4.9rem;
  }
  .data-content-list__item:nth-child(2) .data-content-list__item-num {
    margin-top: 28px;
  }
  .data-content-list__item-num {
    font-size: 2.1rem;
  }
  .data-content-list__item-num.is-graph.is-left {
    left: 15px;
  }
  .data-content-list__item-num.is-graph.is-right {
    right: 10px;
  }
  .data-content-list__item-num.is-graph.is-right .data-content-list__item-num-count {
    padding-left: 4px;
  }
  .data-content-list__item-num.is-graph .data-content-list__item-num-count {
    font-size: 3.2rem;
  }
  .data-content-list__item-num-box .data-content-list__item-num {
    margin: 5px 16px;
  }
  .data-content-list__item-num-box.is-mb .data-content-list__item-num-count {
    font-size: 4.9rem;
  }
  .data-content-list__item-num-label {
    min-height: 30px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .data-content-list__item-num-label.is-car img {
    width: 36px;
    margin-right: 5px;
  }
  .data-content-list__item-num-label.is-public img {
    width: 16px;
    margin-right: 8px;
  }
  .data-content-list__item-num-label.is-other img {
    margin-right: 3px;
  }
  .data-content-list__item-num-count {
    font-size: 6.5rem;
  }
  .data-content-list__item-num-count.is-small {
    font-size: 4.9rem;
  }
  .data-content-list__item-num-graph {
    font-size: 1.4rem;
  }
  .data-content-list__item-ico {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .data-content-list__item-ico img {
    height: 100px;
  }
  .data-content-list__item-ico.is-lg {
    margin-bottom: 10px;
  }
  .data-content-list__item-ico.is-lg img {
    height: 106px;
  }
  .data-content-list__item-ico.is-graph {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .data-content-list__item-ico.is-graph img {
    height: 210px;
  }
  .data-content-list__item-txt {
    font-size: 2.1rem;
  }
  .data-content-list__item-txt-en {
    font-size: 1.5rem;
  }
  .data-content-list__item-txt-sub {
    font-size: 1.3rem;
  }
  .data-content-list__item-sub {
    font-size: 1.4rem;
  }
}

/* .data-major
================================================ */
.data-major {
  position: relative;
}
.data-major::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  background: rgb(var(--bg02));
  border-radius: 10px;
}
.data-major__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.data-major__header {
  margin-bottom: 30px;
  text-align: center;
}
.data-major__header-head {
  font-size: 1.7rem;
  font-weight: 700;
}
.data-major__header-en {
  color: rgb(var(--main));
  font-size: 1.3rem;
}
.data-major__note {
  position: absolute;
  bottom: -35px;
  right: 20px;
  font-size: 1.3rem;
  color: rgb(var(--gray));
}
@media all and (min-width: 768px) {
  .data-major::before {
    width: 100%;
    max-width: 1720px;
  }
  .data-major__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .data-major__header {
    margin-bottom: 40px;
  }
  .data-major__header-head {
    font-size: 2.8rem;
  }
  .data-major__header-en {
    font-size: 1.5rem;
  }
  .data-major__note {
    font-size: 1.4rem;
    right: 90px;
  }
}

.data-major-dlist {
  margin: 0 20px;
}
.data-major-dlist__item {
  margin-top: 15px;
}
.data-major-dlist__term {
  padding: 6px 1em;
  background: rgb(var(--main));
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.data-major-dlist__desc {
  padding: 15px;
  background: #fff;
  text-align: center;
}
@media all and (min-width: 768px) {
  .data-major-dlist {
    display: grid;
    grid-template-columns: repeat(4, 257px);
    gap: 24px;
    margin: 0;
  }
  .data-major-dlist__item {
    margin-top: 0;
    background: #fff;
  }
}

/* .development_facilities-sec
================================================ */
.development_facilities-sec:nth-child(even) {
  background: rgb(var(--bg));
}
.development_facilities-sec:nth-child(even):last-of-type {
  padding-bottom: 70px;
}
.development_facilities-sec:last-child {
  position: relative;
}
.development_facilities-sec:last-child::before {
  position: absolute;
  content: "";
  bottom: 45px;
  right: -112px;
  display: inline-block;
  width: 257.465px;
  height: 161.618px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 257.465 161.618"><g transform="translate(0 0)"><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(136.274 0)" fill="currentColor"/><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(20.947 0)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 257.465 161.618"><g transform="translate(0 0)"><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(136.274 0)" fill="currentColor"/><path d="M54.909,11.544l51.864,70.249L55,150.074H2.2L53.925,81.381,2.017,11.544H54.909M60.736,0H-20.947L39.507,81.336l-60.455,80.282H60.736L121.19,81.886Z" transform="translate(20.947 0)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  width: 381px;
  height: 239px;
  color: #F6F9F8;
  z-index: -1;
}
.development_facilities-sec:last-child .development_facilities-sec__inner {
  padding-bottom: 0;
}
.development_facilities-sec.is-col3 .development_facilities-sec__wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -70px;
}
.development_facilities-sec.is-col3 .development_facilities-sec__content {
  width: calc(50% - 24px);
  margin: 0 12px 70px;
}
.development_facilities-sec.is-col3 .c-archive03 {
  margin: 0;
}
.development_facilities-sec.is-col3 .c-archive03__item {
  width: 100%;
  margin: 0;
}
.development_facilities-sec__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.development_facilities-sec__txt + .development_facilities-list {
  margin-top: 35px;
}
.development_facilities-sec__table {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .development_facilities-sec:last-child {
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .development_facilities-sec:nth-child(even):last-of-type {
    padding-bottom: 170px;
  }
  .development_facilities-sec:last-child::before {
    bottom: 30px;
    right: 100px;
    width: 641px;
    height: 402px;
  }
  .development_facilities-sec.is-col3 .development_facilities-sec__wrap {
    margin: 0 -27px -80px;
  }
  .development_facilities-sec.is-col3 .development_facilities-sec__content {
    width: 330px;
    margin: 0 27px 80px;
  }
  .development_facilities-sec__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .development_facilities-sec__txt + .development_facilities-list {
    margin-top: 55px;
  }
  .development_facilities-sec__table {
    margin-top: 70px;
  }
}

/* .environment-intro
================================================ */
.environment-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .environment-intro {
    margin-bottom: 160px;
  }
}

/* .environment-sec
================================================ */
.environment-sec + .environment-sec {
  margin-top: 60px;
}
.environment-sec__txt.is-right {
  text-align: right;
  margin-top: 25px;
}
.environment-sec__list {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .environment-sec + .environment-sec {
    margin-top: 100px;
  }
  .environment-sec__list {
    margin-top: 25px;
  }
}

/* .environment-activity
================================================ */
.environment-activity {
  margin-top: 65px;
}
.environment-activity__inner {
  padding-top: 75px;
}
@media all and (min-width: 768px) {
  .environment-activity {
    margin-top: 160px;
  }
  .environment-activity__inner {
    padding-top: 170px;
  }
}

/* .error-page404
================================================ */
.error-page404__btn {
  margin-top: 40px;
}

/* .field-ems
================================================ */
.field-ems {
  overflow: hidden;
}
.field-ems-intro {
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}
.field-ems-intro__inner {
  padding-top: 43px;
}
.field-ems-intro__box {
  position: relative;
  padding: 30px 20px 40px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
}
.field-ems-intro__box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #fff;
  border: 5px solid rgb(var(--gray02));
  box-sizing: border-box;
}
.field-ems-intro__box-head {
  font-size: 2.5rem;
  line-height: 1.52;
}
.field-ems-intro__box-en {
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-word;
  margin-bottom: -2px;
}
.field-ems-intro__box-ja {
  font-size: 1.3rem;
  line-height: 1.5333333333;
  padding-top: 24px;
  position: relative;
}
.field-ems-intro__box-ja::before {
  content: "＝";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(var(--main));
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%) rotate(90deg);
}
.field-ems-intro__box-light {
  font-size: 1.5rem;
}
.field-ems-main__inner {
  padding-top: 150px;
  padding-bottom: 75px;
}
.field-ems-main__img {
  overflow-x: scroll;
  margin-right: -20px;
  padding: 0 30px 10px 0;
  text-align: center;
}
.field-ems-main__img img {
  width: 556px;
  max-width: none;
}
.field-ems-main-value {
  border-top: 2px solid rgb(var(--border));
  margin-top: 38px;
  padding-top: 50px;
}
.field-ems-main-value__list-item {
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.field-ems-main-value__list-item + .field-ems-main-value__list-item {
  margin-top: 10px;
}
.field-ems-main-value__list-item::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15' height='15' viewBox='0 0 15 15'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_48906' data-name='Rectangle 48906' width='15' height='15' fill='%23309b6f'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_86953' data-name='Group 86953' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_177859' data-name='Path 177859' d='M7.5,0A7.5,7.5,0,1,0,15,7.5,7.5,7.5,0,0,0,7.5,0m4.4,5.229-4.8,5.747a.976.976,0,0,1-.792.37.954.954,0,0,1-.71-.293L3.143,8.387a1.016,1.016,0,0,1,.048-1.38.959.959,0,0,1,.654-.24.973.973,0,0,1,.729.305l1.666,1.8,4.108-4.821a.984.984,0,0,1,.617-.389.6.6,0,0,1,.089-.008h.078A.972.972,0,0,1,11.9,5.231' fill='%23309b6f'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 3px;
  left: 0;
}
@media all and (min-width: 768px) {
  .field-ems-intro {
    margin-bottom: -160px;
  }
  .field-ems-intro__inner {
    padding-top: 84px;
  }
  .field-ems-intro__box {
    padding: 45px 50px 70px;
  }
  .field-ems-intro__box::before {
    width: calc(100% + 300px);
    border: 10px solid rgb(var(--gray02));
  }
  .field-ems-intro__box-head {
    font-size: 3.7rem;
    line-height: 1.6216216216;
    margin-bottom: 7px;
  }
  .field-ems-intro__box-en {
    font-size: 2.1rem;
    line-height: 1.5238095238;
    margin-bottom: 6px;
  }
  .field-ems-intro__box-ja {
    font-size: 2.1rem;
    padding-top: 40px;
  }
  .field-ems-intro__box-ja::before {
    top: -3px;
    font-size: 3.7rem;
  }
  .field-ems-intro__box-light {
    font-size: 2.8rem;
  }
  .field-ems-main__inner {
    padding-top: 230px;
    padding-bottom: 100px;
  }
  .field-ems-main__img {
    overflow: hidden;
    margin-right: 0;
    padding: 0;
  }
  .field-ems-main__img img {
    max-width: 1097px;
    width: 100%;
    margin: 0 auto;
  }
  .field-ems-main-value {
    margin-top: 80px;
  }
  .field-ems-main-value__list-item {
    padding-left: 30px;
  }
  .field-ems-main-value__list-item::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .field-ems-intro__box::before {
    width: 100%;
  }
}

/* .field-network
================================================ */
.field-network {
  overflow: hidden;
  position: relative;
  padding-bottom: 75px;
}
.field-network::before {
  content: "";
  width: 100%;
  height: 268px;
  background: url(../img/recruit/field/bg_network01_sp.png) no-repeat center/cover;
  position: absolute;
  top: -6px;
  left: 0;
  z-index: -1;
}
.field-network__inner {
  padding-top: 75px;
}
.field-network__head {
  margin-bottom: 26px;
}
.field-network__txt {
  margin-bottom: 15px;
}
.field-network__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .field-network {
    padding-bottom: 150px;
  }
  .field-network::before {
    width: 960px;
    height: 800px;
    background: url(../img/recruit/field/bg_network01_pc.png) no-repeat center/cover;
    top: -448px;
  }
  .field-network__inner {
    padding-top: 150px;
  }
  .field-network__head {
    margin-bottom: 46px;
  }
  .field-network__txt {
    margin-bottom: 77px;
    text-align: center;
  }
  .field-network__img {
    max-width: 1400px;
    padding: 0;
  }
}

/* .field-field
================================================ */
.field-field {
  overflow: hidden;
}
.field-field__head {
  margin-bottom: 26px;
}
.field-field__txt {
  margin-bottom: 46px;
}
.field-field__gallery {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}
.field-field__gallery img {
  -webkit-animation: slideGallery 25s linear infinite;
  animation: slideGallery 25s linear infinite;
  width: 1024px;
  height: 150px;
  max-width: none;
}
@-webkit-keyframes slideGallery {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideGallery {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.field-field-product {
  position: relative;
  padding: 40px 20px 45px;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.field-field-product::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(var(--bg02));
  border-radius: 10px;
  z-index: -1;
}
.field-field-product__head {
  margin-bottom: 21px;
}
.field-field-product-list__item + .field-field-product-list__item {
  margin-top: 35px;
}
.field-field-product-list__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 15px;
}
.field-field-product-list__head {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5333333333;
  margin-bottom: 6px;
}
.field-field-technology__en {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.1;
  color: rgba(var(--main), 0.1);
  text-align: center;
  white-space: nowrap;
  margin-left: -20px;
  margin-bottom: 10px;
  position: relative;
}
.field-field-technology__en::before {
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.714' height='30' viewBox='0 0 25.714 30'%3E%3Cg id='Group_86956' data-name='Group 86956' transform='translate(3582.714 -603) rotate(90)'%3E%3Cpath id='Polygon_53' data-name='Polygon 53' d='M12.857,0,25.714,18.571H0Z' transform='translate(633 3557) rotate(90)' fill='%23309b6f'/%3E%3Cpath id='Polygon_59' data-name='Polygon 59' d='M12.857,0,25.714,18.571H0Z' transform='translate(621.571 3557) rotate(90)' fill='%230c6' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: calc(50% + 9px);
  left: calc(50% + 10px);
  transform: translate(-50%, -50%);
}
.field-field-technology__box {
  background-image: linear-gradient(to bottom, rgb(var(--main)), rgb(var(--lightgreen)));
  padding: 5px;
  box-sizing: border-box;
}
.field-field-technology__box-in {
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.9));
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
.field-field-technology__box-in::before, .field-field-technology__box-in::after {
  content: "";
  position: absolute;
}
.field-field-technology__box-in::before {
  width: 31px;
  height: 30px;
  background: url(../img/recruit/field/ico_field02.png) no-repeat center/cover;
  top: 5px;
  left: 10px;
}
.field-field-technology__box-in::after {
  width: 32px;
  height: 43px;
  background: url(../img/recruit/field/ico_field03.png) no-repeat center/cover;
  bottom: 5px;
  right: 5px;
}
.field-field-technology__txt {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5789473684;
  color: rgb(var(--main));
  text-align: center;
}
@media all and (min-width: 768px) {
  .field-field__head {
    margin-bottom: 46px;
  }
  .field-field__txt {
    text-align: center;
    margin-bottom: 95px;
  }
  .field-field__gallery {
    margin-bottom: 100px;
  }
  .field-field__gallery img {
    -webkit-animation: slideGallery 50s linear infinite;
    animation: slideGallery 50s linear infinite;
    width: 2730px;
    height: 400px;
  }
  .field-field-product {
    padding: 80px 0 96px;
    margin-bottom: 80px;
  }
  .field-field-product::before {
    width: calc(100% + 620px);
  }
  .field-field-product__head {
    margin-bottom: 34px;
  }
  .field-field-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 27px;
  }
  .field-field-product-list__item + .field-field-product-list__item {
    margin-top: 0;
  }
  .field-field-product-list__img {
    max-width: none;
    margin-bottom: 13px;
  }
  .field-field-product-list__head {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 6px;
  }
  .field-field-technology__en {
    font-size: 20rem;
    margin: 0 0 -70px -118px;
    z-index: -1;
  }
  .field-field-technology__en::before {
    width: 34px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% + 60px);
  }
  .field-field-technology__box {
    padding: 10px;
  }
  .field-field-technology__box-in {
    min-height: 306px;
    padding: 67px 67px 60px 67px;
  }
  .field-field-technology__box-in::before {
    width: 86px;
    height: 84px;
    top: 20px;
    left: 20px;
  }
  .field-field-technology__box-in::after {
    width: 128px;
    height: 170px;
    bottom: 0;
    right: 20px;
  }
  .field-field-technology__txt {
    font-size: 3.7rem;
    line-height: 1.6216216216;
  }
}

/* .greeting-intro
================================================ */
.greeting-intro__inner {
  padding-top: 16px;
}
.greeting-intro__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 40px;
}
.greeting-intro__head {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media all and (min-width: 768px) {
  .greeting-intro__inner {
    padding-top: 0;
  }
  .greeting-intro__img {
    max-width: 700px;
    margin-bottom: 80px;
  }
  .greeting-intro__head {
    font-size: 5rem;
    line-height: 1.5;
    margin-bottom: 33px;
  }
}

/* .history-intro
================================================ */
.history-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .history-intro {
    margin-bottom: 160px;
  }
}

/* .history-sec
================================================ */
.history-sec + .history-sec {
  margin-top: 70px;
}
@media all and (min-width: 768px) {
  .history-sec + .history-sec {
    margin-top: 100px;
  }
}

@media all and (min-width: 768px) {
  #home {
    padding-top: 0;
  }
  #home .l-main-img {
    padding-top: 110px;
  }
}

/* .home-pickup
================================================ */
.home-pickup {
  background: rgb(var(--base));
}
.home-pickup__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-pickup__head {
  font-size: 3rem;
  color: rgb(var(--black));
  font-weight: normal;
  margin-bottom: 20px;
}
.home-pickup-list {
  position: relative;
  margin-right: -20px;
  padding-bottom: 60px;
}
.home-pickup-list .c-dot01 {
  position: absolute;
  bottom: 12px;
  right: 120px;
}
.home-pickup-list .slick-slide {
  font-size: 0;
  width: 240px !important;
  margin-right: 1px;
}
@media all and (min-width: 768px) {
  .home-pickup__inner {
    padding-top: 110px;
  }
  .home-pickup__head {
    font-size: 5rem;
    margin-bottom: 40px;
  }
  .home-pickup-list {
    padding-bottom: 100px;
  }
  .home-pickup-list .js-c-slider__arrow {
    margin-left: 40px;
  }
  .home-pickup-list .c-dot01 {
    right: auto;
    bottom: 15px;
    left: -5px;
  }
  .home-pickup-list .slick-slide {
    width: 455px !important;
  }
  .home-pickup-list.is-arrow-hidden .slick-arrow {
    display: none;
  }
}
@media all and (min-width: 1160px) {
  .home-pickup-list {
    margin-right: calc(50% - 50vw);
  }
}

/* .home-about
================================================ */
.home-about {
  position: relative;
  overflow: hidden;
}
.home-about::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 50px;
  top: 0;
  left: 0;
  background: rgb(var(--base));
}
.home-about__inner {
  padding-top: 125px;
  padding-bottom: 80px;
}
.home-about__area-img {
  margin-bottom: 35px;
}
.home-about__head {
  margin-bottom: 30px;
}
.home-about__copy {
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.home-about__copy-sub {
  font-weight: 700;
  margin-bottom: 5px;
}
.home-about__list {
  margin-top: 20px;
}
.home-about__parallax {
  position: relative;
  height: 300px;
}
.home-about__parallax::before {
  content: "";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_about01_sp.jpg) no-repeat center center/cover;
}
@media all and (max-width: 767px) {
  .home-about__head {
    margin-top: 40px;
  }
}
@media all and (min-width: 768px) {
  .home-about::before {
    height: 130px;
  }
  .home-about__en {
    position: absolute;
    top: 360px;
    left: 0;
  }
  .home-about__en .c-marquee01__en {
    font-size: 40rem;
    line-height: 1.3;
    width: 5800px;
    z-index: -1;
    color: #fff;
    opacity: 0.25;
  }
  .home-about__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
  }
  .home-about__area-img {
    width: 50%;
    margin-top: 150px;
  }
  .home-about__area-txt {
    width: 500px;
  }
  .home-about__head {
    margin-bottom: 80px;
  }
  .home-about__copy {
    font-size: 5rem;
  }
  .home-about__copy-sub {
    font-size: 2rem;
  }
  .home-about__list {
    margin-top: 40px;
  }
  .home-about__parallax {
    position: relative;
    height: 445px;
  }
  .home-about__parallax::before {
    width: calc(100% - 120px);
    background: url(../img/home/bg_about01_pc.jpg) no-repeat center center/cover;
  }
  .home-about__parallax::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 220px;
    top: 0;
    left: 0;
    background: rgb(var(--bg));
    z-index: -2;
  }
}
@media (min-width: 1560px) {
  .home-about__area-img {
    width: 850px;
    margin-left: -95px;
  }
  .home-about__parallax {
    height: 720px;
  }
  .home-about__parallax::before {
    width: calc(100% - 200px);
  }
  .home-about__parallax::after {
    height: 360px;
  }
}

/* .home-technology
================================================ */
.home-technology {
  background: #fff;
  position: relative;
}
.home-technology__ico {
  position: absolute;
  top: 47px;
  right: 0;
  width: 240px;
  color: #F6F9F8;
}
.home-technology__inner {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}
.home-technology-list {
  position: relative;
  padding-bottom: 70px;
}
.home-technology-list .c-dot01 {
  position: absolute;
  bottom: 12px;
  right: 120px;
}
.home-technology-list__link {
  display: block;
  padding-bottom: 14px;
  border-bottom: solid 1px rgb(var(--border));
  position: relative;
}
.home-technology-list__link::before {
  position: absolute;
  bottom: 20px;
  right: 0;
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.home-technology-list__link::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0;
  border-bottom: solid 1px rgb(var(--main));
}
.home-technology-list__cat {
  margin-top: 12px;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0 20px;
  border: solid 1px;
  border-radius: 9999px;
  color: rgb(var(--main));
}
.home-technology-list__head {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 7px;
  padding-right: 20px;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .home-technology-list {
    margin-right: -20px;
  }
  .home-technology-list .slick-slide {
    width: 200px !important;
    margin-right: 25px;
  }
  .home-technology-list__link::before {
    width: 10px;
    height: 8px;
  }
  .home-technology-list__head {
    display: block;
  }
}
@media all and (min-width: 768px) {
  .home-technology__ico {
    top: 117px;
    right: 60px;
    width: 641px;
  }
  .home-technology__inner {
    position: relative;
    padding-top: 170px;
    padding-bottom: 140px;
  }
  .home-technology-list {
    padding-bottom: 30px;
  }
  .home-technology-list__link {
    padding-bottom: 21px;
  }
  .home-technology-list__link::before {
    bottom: 31px;
  }
  .home-technology-list__link:hover .home-technology-list__head {
    color: rgb(var(--main));
  }
  .home-technology-list__link:hover::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .home-technology-list__cat {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 21px;
    margin-right: 5px;
  }
  .home-technology-list .slick-list {
    min-height: 439px;
  }
  .home-technology-list .slick-slide {
    width: 340px !important;
    margin-right: 40px;
    transition: all 0.3s ease;
  }
  .home-technology-list .slick-active {
    margin-top: 80px;
  }
  .home-technology-list .slick-current {
    margin-top: 0;
  }
  .home-technology-list .slick-current + .slick-active {
    margin-top: 40px;
  }
  .home-technology-list .c-dot01 {
    right: auto;
    bottom: 15px;
    left: -5px;
  }
  .home-technology-list .c-dot01 .slick-active {
    margin-top: 0;
  }
  .home-technology__btn {
    position: absolute;
    top: 170px;
    right: 0;
    margin: 0;
  }
}
@media all and (min-width: 768px) {
  .home-technology-list .slick-slide {
    width: 430px !important;
    margin-right: 55px;
  }
}

/* .home-sustainability
================================================ */
.home-sustainability {
  background: #fff;
  position: relative;
}
.home-sustainability::before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 60px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: solid 5px #F6F9F8;
  box-sizing: border-box;
  box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.02);
}
.home-sustainability::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 89px);
  bottom: 0;
  left: 0;
  background: url(../img/home/bg_sustainability_sp.jpg) no-repeat bottom center/cover;
  z-index: -1;
}
.home-sustainability__inner {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.home-sustainability__content {
  padding: 60px 35px;
}
.home-sustainability-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -35px;
}
.home-sustainability-list__item {
  width: calc(50% - 24px);
  margin: 0 12px 35px;
}
.home-sustainability-list__link {
  display: block;
  text-align: center;
}
.home-sustainability-list__head {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0;
}
.home-sustainability-list__more {
  color: rgb(var(--gray));
  display: inline-block;
  border-top: solid 1px;
  border-bottom: solid 1px;
  line-height: 1;
  font-size: 1rem;
  padding: 7px 10px;
}
.home-sustainability-list__more-txt {
  padding-right: 10px;
  position: relative;
}
.home-sustainability-list__more-txt::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px;
  border-right: solid 1px;
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
}
@media all and (min-width: 768px) {
  .home-sustainability::before {
    max-width: 1720px;
    height: calc(100% - 120px);
    border-width: 10px;
  }
  .home-sustainability::after {
    height: calc(100% - 380px);
    background: url(../img/home/bg_sustainability_pc.jpg) no-repeat bottom center/cover;
  }
  .home-sustainability__inner {
    padding-bottom: 120px;
    position: relative;
  }
  .home-sustainability__content {
    padding: 138px 30px 149px;
  }
  .home-sustainability-list {
    margin: 0 -14px;
    justify-content: center;
  }
  .home-sustainability-list__item {
    width: calc(16.66% - 28px);
    margin: 0 14px;
  }
  .home-sustainability-list__ico-wrap {
    border-radius: 50%;
  }
  .home-sustainability-list__head {
    font-size: 1.6rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
  }
  .home-sustainability-list__more {
    font-size: 1.2rem;
    padding: 11px 16px;
    position: relative;
  }
  .home-sustainability-list__more::before, .home-sustainability-list__more::after {
    position: absolute;
    content: "";
    top: -1px;
    left: 0;
    width: 0;
    border-bottom: solid 1px rgb(var(--main));
  }
  .home-sustainability-list__more::after {
    width: 0;
    bottom: -1px;
  }
  .home-sustainability-list__more-txt {
    padding-right: 16px;
    transition: all 0.3s ease;
  }
  .home-sustainability-list__more-txt::after {
    top: 6px;
  }
  .home-sustainability-list__link:hover .home-sustainability-list__head,
.home-sustainability-list__link:hover .home-sustainability-list__more-txt {
    color: rgb(var(--main));
  }
  .home-sustainability-list__link:hover .home-sustainability-list__more::before, .home-sustainability-list__link:hover .home-sustainability-list__more::after {
    -webkit-animation: border_anim 0.3s linear forwards;
    animation: border_anim 0.3s linear forwards;
  }
  .home-sustainability__btn {
    position: absolute;
    top: 136px;
    right: 0;
    margin: 0;
  }
}
@media all and (min-width: 1460px ) {
  .home-sustainability__content {
    padding: 138px 0 149px;
  }
  .home-sustainability-list {
    margin: 0 -20px;
  }
  .home-sustainability-list__item {
    width: 200px;
    margin: 0 20px;
  }
}

/* .home-company
================================================ */
.home-company__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-company-list {
  margin-top: -20px;
}
.home-company-list__link {
  display: block;
  padding: 20px 0;
  border-bottom: solid 1px rgb(var(--border));
  position: relative;
}
.home-company-list__link::before {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.home-company-list__en {
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgb(var(--gray));
  padding-left: 14px;
  position: relative;
}
.home-company-list__en::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--gray));
}
.home-company-list__main {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
}
@media all and (max-width: 767px) {
  .home-company__list + .home-company__list {
    margin-top: 0;
  }
}
@media all and (min-width: 768px) {
  .home-company__inner {
    padding-top: 170px;
    padding-bottom: 170px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .home-company__head {
    width: 35%;
  }
  .home-company__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .home-company__list-wrap {
    width: 65%;
  }
  .home-company__list .c-btn02 {
    margin-top: 13px;
    width: calc(50% - 54px);
  }
  .home-company__list .c-btn02:nth-child(2n) {
    margin-left: 54px;
  }
  .home-company__btn {
    position: absolute;
    top: 350px;
    left: 0;
    margin: 0;
  }
}

/* .home-recruit
================================================ */
.home-recruit {
  color: #fff;
  position: relative;
}
.home-recruit__ico {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  color: rgba(236, 236, 236, 0.06);
}
.home-recruit__logo {
  position: absolute;
  bottom: -10px;
  right: -40px;
  width: 217px;
  color: rgba(255, 255, 255, 0.07);
  z-index: 2;
}
.home-recruit__link {
  display: block;
  position: relative;
}
.home-recruit__link::before, .home-recruit__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 125px);
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgb(var(--main)) 50%, rgb(var(--lightgreen)));
}
.home-recruit__link::after {
  background: rgb(var(--lightgreen));
  transition: all 0.3s ease;
  opacity: 0;
}
.home-recruit__link-ico {
  position: absolute;
  bottom: 60px;
  right: 20px;
  width: 54px;
  height: 54px;
  z-index: 2;
}
.home-recruit__link-ico::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgb(var(--black));
}
.home-recruit__link-ico::after {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--main));
  width: 19px;
  height: 15px;
}
.home-recruit__inner {
  padding-bottom: 54px;
  position: relative;
  z-index: 2;
}
.home-recruit__area-img {
  overflow: hidden;
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.home-recruit__area-img .swiper-wrapper {
  transition-timing-function: linear;
}
.home-recruit__area-img .swiper-slide img {
  height: 250px;
  width: 827px;
}
.home-recruit__img {
  height: 250px;
  width: 827px;
}
.home-recruit__copy {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-top: 45px;
  margin-bottom: 20px;
}
.home-recruit__head {
  margin: 0;
}
@media all and (max-width: 767px) {
  .home-recruit {
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .home-recruit__ico {
    top: 113px;
    left: -150px;
    width: 341px;
  }
  .home-recruit__logo {
    right: 136px;
    width: 406px;
  }
  .home-recruit__inner {
    padding-top: 144px;
    padding-bottom: 195px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home-recruit__link::before, .home-recruit__link::after {
    height: calc(100% - 260px);
  }
  .home-recruit__link-ico {
    bottom: -24px;
    right: 100px;
    width: 100px;
    height: 100px;
  }
  .home-recruit__link-ico::before {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
  }
  .home-recruit__link-ico::after {
    width: 34px;
    height: 26px;
    right: 30px;
    color: #fff;
  }
  .home-recruit__link:hover .home-recruit__link-ico::before {
    transform: translateY(-50%) scale(1.1);
  }
  .home-recruit__link:hover .home-recruit__link-ico::after {
    -webkit-animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    animation: arw-r 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  .home-recruit__link:hover::after {
    opacity: 1;
  }
  .home-recruit__area-img {
    margin: 0;
    overflow: hidden;
  }
  .home-recruit__area-img .swiper-slide img {
    height: 520px;
    width: 1720px;
  }
  .home-recruit__img {
    height: 520px;
    width: 1720px;
  }
  .home-recruit__copy {
    font-size: 4.7rem;
    margin: 0;
  }
}
@media all and (min-width: 1460px ) {
  .home-recruit__area-img {
    margin: 0 100px;
  }
}

/* .home-news
================================================ */
.home-news {
  background: rgb(var(--base));
}
.home-news__inner {
  padding-top: 70px;
  padding-bottom: 66px;
}
@media all and (min-width: 768px) {
  .home-news__inner {
    padding-top: 160px;
    padding-bottom: 144px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .home-news__head {
    width: calc(100% - 760px);
    margin: 0;
    margin-top: 8px;
  }
  .home-news__archive {
    width: 760px;
  }
  .home-news__btn {
    position: absolute;
    top: 350px;
    left: 0;
    margin: 0;
  }
}

/* .info-detail
================================================ */
.info-detail__inner {
  padding-top: 50px;
}
.info-detail__head {
  margin-top: 30px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
}
.info-detail-table__txt + .info-detail-table__list {
  margin-top: 10px;
}
.info-detail-table__list {
  margin-top: -10px;
}
@media all and (min-width: 768px) {
  .info-detail {
    position: relative;
  }
  .info-detail::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 990px;
    left: 0;
    width: 960px;
    height: 800px;
    background: url(../img/recruit/info/bg_deco01.png) no-repeat top left/contain;
  }
  .info-detail__inner {
    padding-top: 98px;
  }
  .info-detail__head {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 5rem;
  }
  .info-detail__txt {
    text-align: center;
  }
}

/* .interview-archive
================================================ */
.interview-archive {
  position: relative;
}
.interview-archive::after {
  content: "";
  position: absolute;
  bottom: -74px;
  left: 0;
  width: 100%;
  height: 71.46vw;
  background: url(../img/recruit/interviews/bg_deco01_sp.png) no-repeat bottom left/contain;
}
.interview-archive__inner {
  position: relative;
  z-index: 3;
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .interview-archive::after {
    bottom: -150px;
    width: 960px;
    height: 800px;
    background-image: url(../img/recruit/interviews/bg_deco01_pc.png);
  }
  .interview-archive__inner {
    padding-top: 90px;
  }
}

/* .interview-single
================================================ */
.interview-single {
  overflow: hidden;
}
.interview-single__bg {
  white-space: nowrap;
}
.interview-single__bg br {
  display: none !important;
}
.interview-single__bg-txt {
  -webkit-animation: cover01Text 30s linear infinite;
  animation: cover01Text 30s linear infinite;
  display: inline-block;
  padding: 0 0.5em;
  color: #fff;
  font-size: 3.6rem;
  text-shadow: 1px 1px 0px rgb(var(--border)), -1px 1px 0px rgb(var(--border)), 1px -1px 0px rgb(var(--border)), -1px -1px 0px rgb(var(--border)), 1px 0px 0px rgb(var(--border)), 0px 1px 0px rgb(var(--border)), -1px 0px 0px rgb(var(--border)), 0px -1px 0px rgb(var(--border));
}
@media all and (min-width: 768px) {
  .interview-single__bg-txt {
    font-size: 6.5rem;
  }
}

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

@keyframes cover01Text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.interview-single-sec {
  margin-top: 60px;
}
.interview-single-sec__header {
  margin-bottom: 15px;
  font-weight: 700;
}
.interview-single-sec__header-q {
  color: rgb(var(--main));
}
.interview-single-sec__header-head {
  margin-top: 5px;
  font-size: 2.1rem;
  line-height: 1.5;
}
.interview-single-sec__box-img {
  margin-top: 20px;
}
.interview-single-sec__cover {
  position: relative;
  width: 100%;
  margin-top: 60px;
  padding-top: 48%;
}
.interview-single-sec__cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.interview-single-sec__cover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% - 20px);
  height: 186%;
  background: url(../img/recruit/interviews/bg_deco03_sp.png) no-repeat top left/contain;
}
@media all and (min-width: 768px) {
  .interview-single-sec {
    margin-top: 120px;
  }
  .interview-single-sec.is-item04 {
    position: relative;
  }
  .interview-single-sec.is-item04::after {
    content: "";
    position: absolute;
    right: -410px;
    top: -42px;
    width: 785px;
    height: 442px;
    background: url(../img/recruit/interviews/bg_deco05.png) no-repeat top right/contain;
  }
  .interview-single-sec__header {
    margin-bottom: 30px;
  }
  .interview-single-sec__header-q {
    color: rgb(var(--main));
  }
  .interview-single-sec__header-head {
    margin-top: 10px;
    font-size: 2.8rem;
  }
  .interview-single-sec__box {
    display: flex;
    justify-content: space-between;
  }
  .interview-single-sec__box.is-reverse {
    flex-direction: row-reverse;
  }
  .interview-single-sec__box-areaTxt {
    flex: 0 0 550px;
  }
  .interview-single-sec__box-img {
    flex: 0 0 490px;
    margin-top: 0;
  }
  .interview-single-sec__cover {
    margin-top: 120px;
    padding-top: 400px;
  }
  .interview-single-sec__cover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 350px;
    height: 378px;
    background: url(../img/recruit/interviews/bg_deco04.png) no-repeat center/contain;
  }
  .interview-single-sec__cover::after {
    width: 960px;
    height: 400px;
    background-image: url(../img/recruit/interviews/bg_deco03_pc.png);
  }
}

/* .interview-schedule
================================================ */
.interview-schedule {
  position: relative;
  margin-top: 70px;
  color: #fff;
}
.interview-schedule::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  background: url(../img/recruit/interviews/bg_schedule01_sp.jpg) no-repeat top center/cover;
}
.interview-schedule__inner {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
.interview-schedule__head .c-head01__main {
  color: #fff;
}
@media all and (min-width: 768px) {
  .interview-schedule {
    margin-top: 150px;
  }
  .interview-schedule::before {
    width: 100%;
    max-width: 1720px;
    background-image: url(../img/recruit/interviews/bg_schedule01_pc.jpg);
  }
  .interview-schedule__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.interview-schedule-list__item {
  position: relative;
  padding-left: 17px;
}
.interview-schedule-list__item + .interview-schedule-list__item {
  margin-top: 20px;
}
.interview-schedule-list__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}
.interview-schedule-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 3px;
  width: 1px;
  height: calc(100% + 20px);
  background: rgb(var(--border));
}
.interview-schedule-list__item-time {
  font-size: 1.9rem;
  line-height: 1.5;
}
.interview-schedule-list__detail-head {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .interview-schedule-list {
    flex: 0 0 682px;
  }
  .interview-schedule-list__item {
    display: flex;
  }
  .interview-schedule-list__item + .interview-schedule-list__item {
    margin-top: 40px;
  }
  .interview-schedule-list__item::before {
    top: 14px;
  }
  .interview-schedule-list__item:not(:last-child)::after {
    top: 14px;
    height: calc(100% + 40px);
  }
  .interview-schedule-list__item-time {
    flex: 0 0 68px;
    margin-right: 30px;
    font-size: 2.4rem;
  }
  .interview-schedule-list__detail-head {
    margin-bottom: 5px;
    font-size: 2.4rem;
  }
}

/* .interview-holiday
================================================ */
.interview-holiday {
  position: relative;
}
.interview-holiday::before, .interview-holiday::after {
  content: "";
  position: absolute;
  left: 0;
}
.interview-holiday::before {
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--bg03));
}
.interview-holiday::after {
  top: 10px;
  width: calc(100% - 20px);
  padding-top: 130%;
  background: url(../img/recruit/interviews/bg_holiday01_sp.png) no-repeat top left/contain;
}
.interview-holiday__inner {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
.interview-holiday__areaTxt {
  margin-top: 30px;
}
.interview-holiday__areaTxt-em {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}
.interview-holiday__areaTxt-txt {
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .interview-holiday::before, .interview-holiday::after {
    top: -400px;
    z-index: -1;
  }
  .interview-holiday::after {
    top: -400px;
    width: 722px;
    padding-top: 800px;
    background-image: url(../img/recruit/interviews/bg_holiday01_pc.png);
  }
  .interview-holiday__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .interview-holiday__areaTxt {
    flex: auto;
    margin-top: 0;
  }
  .interview-holiday__areaTxt-em {
    font-size: 2.1rem;
  }
  .interview-holiday__areaTxt-txt {
    margin-top: 15px;
  }
  .interview-holiday__img {
    flex: 0 0 430px;
    margin-right: 60px;
  }
}

/* .interview-pager
================================================ */
.interview-pager__inner {
  padding-top: 70px;
  padding-bottom: 78px;
}
@media all and (min-width: 768px) {
  .interview-pager__inner {
    padding-top: 150px;
    padding-bottom: 158px;
  }
}

#katata_tech .l-sub-img__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  #katata_tech .l-sub-img__inner {
    padding-bottom: 150px;
  }
}

/* .katata_tech-intro
================================================ */
.katata_tech-intro {
  margin-bottom: 40px;
}
@media all and (min-width: 768px) {
  .katata_tech-intro {
    margin-bottom: 80px;
  }
}

/* .katata_tech-map
================================================ */
.katata_tech-map__inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 35px;
  position: relative;
}
.katata_tech-map__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 83%;
  bottom: 0;
  left: 0;
  background: url(../img/home/bg_mv01_sp.jpg) no-repeat bottom center/cover;
  z-index: -1;
}
.katata_tech-map__content {
  margin: 0 auto;
  max-width: 1720px;
  position: relative;
}
.katata_tech-map__btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 63px;
  font-size: 2rem;
  padding-bottom: 9px;
  color: #fff;
  border: none;
  box-sizing: border-box;
  z-index: 2;
}
.katata_tech-map__btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/technology/katata_tech/ico_pin01.png) no-repeat 0 100%/cover;
  z-index: -1;
}
.katata_tech-map__btn:first-child {
  top: 74%;
  left: 34%;
}
.katata_tech-map__btn:nth-child(2) {
  top: 57.5%;
  left: 83.1%;
}
.katata_tech-map__btn:nth-child(3) {
  top: 35.8%;
  left: 63.7%;
}
.katata_tech-map__btn:nth-child(4) {
  top: 41%;
  left: 37.8%;
}
.katata_tech-map__btn:nth-child(5) {
  top: 49%;
  left: 11.3%;
}
.katata_tech-map__btn:nth-child(6) {
  top: 22%;
  left: 46%;
}
@media all and (max-width: 767px) {
  .katata_tech-map__content {
    width: 800px;
  }
  .katata_tech-map__content-wrap {
    overflow-x: scroll;
    margin-right: -20px;
    padding-right: 20px;
  }
  .katata_tech-map__img {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 768px) {
  .katata_tech-map__inner {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 100px;
  }
  .katata_tech-map__inner::before {
    height: 43%;
    background: url(../img/home/bg_mv01_pc.jpg) no-repeat bottom center/cover;
  }
  .katata_tech-map__btn {
    transition: all 0.3s ease;
  }
  .katata_tech-map__btn:hover {
    transform: translateY(-10px);
  }
  .katata_tech-map__btn:first-child {
    top: 79%;
    left: 35%;
  }
  .katata_tech-map__btn:nth-child(2) {
    top: 62.5%;
    left: 84.1%;
  }
  .katata_tech-map__btn:nth-child(3) {
    top: 42.8%;
    left: 65.7%;
  }
  .katata_tech-map__btn:nth-child(4) {
    top: 48%;
    left: 38.8%;
  }
  .katata_tech-map__btn:nth-child(5) {
    top: 56%;
    left: 12.3%;
  }
  .katata_tech-map__btn:nth-child(6) {
    top: 28%;
    left: 47%;
  }
}
@media all and (min-width: 1460px ) {
  .katata_tech-map__inner {
    padding-left: 100px;
    padding-right: 100px;
  }
  .katata_tech-map__btn {
    width: 70px;
    height: 82px;
    font-size: 3.2rem;
  }
}

/* .katata_tech-modal
================================================ */
.katata_tech-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(52, 53, 56, 0.5);
  box-sizing: border-box;
}
.katata_tech-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.katata_tech-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.katata_tech-modal__content {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.katata_tech-modal__inner {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.katata_tech-modal__close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 20;
}
.katata_tech-modal .lineClose {
  display: inline-block;
  vertical-align: middle;
  color: rgb(var(--black));
  line-height: 1;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}
.katata_tech-modal .lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
@media all and (min-width: 768px) {
  .katata_tech-modal__content {
    max-width: 630px;
  }
}

/* .katata_tech-slide
================================================ */
.katata_tech-slide {
  padding: 47px 20px 30px;
  box-sizing: border-box;
  position: relative;
}
.katata_tech-slide__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 31px;
  font-size: 1.8rem;
  line-height: 31px;
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, rgb(var(--main)) 50%, rgb(var(--lightgreen)));
}
.katata_tech-slide__img {
  margin-bottom: 15px;
}
.katata_tech-slide__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(var(--main));
  margin-bottom: 5px;
}
.katata_tech-slide__relate {
  padding-top: 10px;
  margin-top: 10px;
  border-top: solid 1px rgb(var(--border));
}
.katata_tech-slide__relate-head {
  margin-right: 18px;
}
.katata_tech-slide__arrow {
  width: 40px;
  position: absolute;
  top: 120px;
  border: none;
  background: rgb(var(--main));
}
.katata_tech-slide__arrow::before {
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: #fff;
  transform: translate(-50%, -50%) rotate(0);
}
.katata_tech-slide__arrow.is-prev {
  left: -10px;
}
.katata_tech-slide__arrow.is-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.katata_tech-slide__arrow.is-next {
  right: -10px;
  left: auto;
}
@media all and (min-width: 768px) {
  .katata_tech-slide {
    padding: 50px 50px 30px;
  }
  .katata_tech-slide__num {
    width: 90px;
    height: 40px;
    font-size: 2.4rem;
    line-height: 40px;
  }
  .katata_tech-slide__img {
    margin-bottom: 55px;
  }
  .katata_tech-slide__head {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .katata_tech-slide__relate {
    padding-top: 25px;
    margin-top: 25px;
  }
  .katata_tech-slide__arrow {
    width: 60px;
    height: 60px;
    top: 300px;
  }
  .katata_tech-slide__arrow::before {
    width: 21px;
    height: 16px;
  }
  .katata_tech-slide__arrow.is-prev {
    left: -30px;
  }
  .katata_tech-slide__arrow.is-next {
    right: -30px;
  }
}

/* .message-sec
================================================ */
.message-sec + .message-sec {
  margin-top: 70px;
}
.message-sec__cap {
  margin-top: 10px;
}
.message-sec__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media all and (max-width: 767px) {
  .message-sec__area-img {
    margin-top: 35px;
  }
}
@media all and (min-width: 768px) {
  .message-sec + .message-sec {
    margin-top: 170px;
  }
  .message-sec:nth-child(even) .message-sec__inner {
    flex-direction: row-reverse;
  }
  .message-sec:nth-child(even) .message-sec__area-img {
    padding-left: 0;
    padding-right: 50px;
  }
  .message-sec__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .message-sec__area-txt {
    width: 50%;
  }
  .message-sec__area-img {
    width: 50%;
    padding-left: 50px;
    box-sizing: border-box;
  }
  .message-sec__name {
    font-size: 2.2rem;
  }
}

/* .network-map
================================================ */
.network-map__inner {
  padding-top: 25px;
}
.network-map-btn {
  max-width: 300px;
  margin: 0 auto;
  counter-increment: map;
}
.network-map-btn__wrap {
  counter-reset: map;
}
.network-map-btn__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  color: #fff;
  background: rgb(var(--black));
  border-radius: 9999px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.network-map-btn__link::before {
  position: absolute;
  content: counter(map);
  line-height: 1.2;
  padding-left: 1px;
  box-sizing: border-box;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgb(var(--black));
  background: rgb(var(--lightgreen));
  border-radius: 50%;
}
.network-map-btn__link::after {
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(90deg);
  display: inline-block;
  width: 12.803px;
  height: 10px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.803 10"><g transform="translate(0 9.468) rotate(-90)"><path d="M4.468,5.462l-5-5.035L.43-.528,4.468,3.538,8.506-.528l.962.955Z" transform="translate(0 7.341)" fill="currentColor"/><path d="M.606,11.819H-.75V0H.606Z" transform="translate(4.54)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--lightgreen));
}
@media all and (max-width: 767px) {
  .network-map-btn__wrap {
    margin-top: 20px;
  }
  .network-map-btn + .network-map-btn {
    margin-top: 5px;
  }
}
@media all and (min-width: 768px) {
  .network-map__inner {
    padding-top: 75px;
  }
  .network-map__area-img {
    position: relative;
  }
  .network-map-btn {
    position: absolute;
    width: 271px;
  }
  .network-map-btn:nth-child(1) {
    top: 35%;
    left: 68%;
    width: 243px;
  }
  .network-map-btn:nth-child(2) {
    top: 16.8%;
    left: 27.7%;
  }
  .network-map-btn:nth-child(3) {
    top: 62%;
    left: 56.1%;
  }
  .network-map-btn:nth-child(4) {
    top: 60%;
    left: 10.2%;
    width: 252px;
  }
  .network-map-btn:nth-child(4) .network-map-btn__link {
    height: 78px;
  }
  .network-map-btn__link {
    justify-content: flex-start;
    padding-left: 25px;
    height: 58px;
    box-sizing: border-box;
  }
  .network-map-btn__link::before {
    display: none;
  }
  .network-map-btn__link:hover {
    background: rgb(var(--main));
  }
  .network-map-btn__link:hover::after {
    color: #fff;
  }
}

/* .network-sec
================================================ */
.network-sec {
  margin-top: 70px;
}
.network-sec__head {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 16px 0 19px;
  border-top: solid 4px;
  border-bottom: solid 1px;
  border-color: rgb(var(--main));
  box-sizing: border-box;
}
.network-sec-content {
  margin-top: 30px;
}
.network-sec-content__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.network-sec-content__lead {
  margin-bottom: 30px;
}
.network-sec-content__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 59.7%;
}
.network-sec-content__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.network-sec-content__table .is-col2 {
  display: flex;
  flex-wrap: wrap;
}
.network-sec-content__table .is-col2 .is-maker {
  width: 72%;
  padding-right: 20px;
  box-sizing: border-box;
}
.network-sec-content__table .is-col2 .is-num {
  width: 28%;
}
.network-sec-area {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -40px;
}
.network-sec-area__area-img {
  width: calc(50% - 24px);
  margin: 0 12px 40px;
}
.network-sec-area__area-img.is-wide {
  width: 100%;
}
.network-sec-area__head {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .network-sec {
    margin-top: 170px;
  }
  .network-sec__head {
    font-size: 2.8rem;
    padding: 23px 0 26px;
  }
  .network-sec-content {
    margin-top: 40px;
  }
  .network-sec-content + .network-sec-content {
    margin-top: 60px;
  }
  .network-sec-content__head {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .network-sec-content__lead {
    margin-bottom: 40px;
  }
  .network-sec-content__map {
    width: 100%;
    height: 400px;
    padding-top: 0;
  }
  .network-sec-content__table.is-wide-pc th {
    width: 560px;
  }
  .network-sec-content__table .is-col2 .is-maker {
    width: 65%;
  }
  .network-sec-content__table .is-col2 .is-num {
    width: 35%;
    padding-left: 20px;
    box-sizing: border-box;
    position: relative;
  }
  .network-sec-content__table .is-col2 .is-num::before {
    position: absolute;
    content: "";
    top: -19px;
    left: 0;
    width: 1px;
    height: calc(100% + 38px);
    background: rgb(var(--border));
  }
  .network-sec-area {
    margin: 0 -25px -60px;
  }
  .network-sec-area__area-img {
    width: calc(50% - 50px);
    margin: 0 25px 60px;
  }
  .network-sec-area__area-img.is-small {
    width: calc(33.33% - 50px);
  }
  .network-sec-area__head {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

/* .news-archive-cat
================================================ */
.news-archive-cat {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.news-archive-cat__head {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: solid 1px rgb(var(--border));
}
.news-archive-cat__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.news-archive-cat__list-item {
  width: calc(50% - 10px);
  margin: 5px;
}
.news-archive-cat__list-item.is-active .news-archive-cat__list-link {
  color: #fff;
  background: rgb(var(--main));
}
.news-archive-cat__list-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: solid 1px rgb(var(--main));
  border-radius: 9999px;
  color: rgb(var(--main));
  background: #fff;
  font-size: 1.3rem;
  min-height: 30px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .news-archive-cat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 25px;
  }
  .news-archive-cat__head {
    font-size: 1.6rem;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    padding-right: 30px;
    margin-right: 30px;
    border-right: solid 1px rgb(var(--border));
    line-height: 34px;
  }
  .news-archive-cat__list {
    margin: 0 -7px;
  }
  .news-archive-cat__list-item {
    width: 126px;
    margin: 0 7px;
  }
  .news-archive-cat__list-link {
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .news-archive-cat__list-link:hover {
    color: #fff;
    background: rgb(var(--main));
  }
}

/* .outline-sec
================================================ */
.outline-sec + .outline-sec {
  margin-top: 70px;
}
@media all and (min-width: 768px) {
  .outline-sec + .outline-sec {
    margin-top: 100px;
  }
}

.l-sub-img02 {
  padding: 40px 20px 0;
}
.l-sub-img02__inner {
  position: relative;
}
.l-sub-img02__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-sub-img02__area-txt {
  color: #fff;
  padding: 32px 20px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.l-sub-img02__en {
  filter: url(#filter-outline);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.l-sub-img02__head {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .l-sub-img02 {
    padding: 90px 40px 0;
  }
  .l-sub-img02__area-txt {
    padding: 62px 60px;
  }
  .l-sub-img02__en {
    font-size: 7.8rem;
  }
  .l-sub-img02__head {
    font-size: 2.8rem;
  }
}
@media all and (min-width: 1460px ) {
  .l-sub-img02 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .l-sub-img02__en {
    font-size: 12.3rem;
  }
  .l-sub-img02__head {
    font-size: 4.3rem;
  }
}

/* .project-intro
================================================ */
.project-intro {
  color: #fff;
  position: relative;
}
.project-intro__bg {
  background: linear-gradient(to bottom, rgb(var(--main)) 0%, rgb(var(--lightgreen)) 100%);
  overflow: hidden;
  position: absolute;
  top: -184px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.project-intro__bg::after {
  content: "";
  position: absolute;
  top: 400px;
  right: 0;
  width: 275px;
  height: 354px;
  background: url(../img/common/bg_mv01_sp.png) no-repeat 0 100%/cover;
}
@media all and (min-width: 768px) {
  .project-intro__bg {
    top: -178px;
  }
  .project-intro__bg::after {
    top: 292px;
    width: 722px;
    height: 720px;
    background: url(../img/common/bg_mv01_pc.png) no-repeat 0 100%/cover;
  }
}

/* .project-message
================================================ */
.project-message__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.project-message__copy {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.project-message__lead + .project-message__lead {
  margin-top: 2em;
}
@media all and (min-width: 768px) {
  .project-message__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .project-message__copy {
    font-size: 3.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
  }
  .project-message__lead {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* .project-about
================================================ */
.project-about {
  position: relative;
  padding-bottom: 20px;
}
.project-about::before {
  content: "";
  background: url(../img/project/bg_about01.jpg) repeat center/100px;
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: -1;
}
.project-about__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.project-about__img {
  margin-bottom: 30px;
}
.project-about-data dt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 27px;
  position: relative;
  margin-bottom: 8px;
}
.project-about-data dt::before, .project-about-data dt::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgb(var(--lightgreen));
}
.project-about-data dt::after {
  left: 6px;
  background: rgb(var(--main));
  mix-blend-mode: multiply;
}
.project-about-data dd + dt {
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .project-about__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (min-width: 768px) {
  .project-about {
    padding-bottom: 60px;
  }
  .project-about::before {
    bottom: 60px;
    left: 60px;
    right: 60px;
  }
  .project-about__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .project-about__img {
    margin: 0 6.36% 0 0;
    width: 48.2%;
  }
  .project-about__area-txt {
    flex: 1;
  }
  .project-about-data dt {
    font-size: 2rem;
    padding-left: 33px;
    margin-bottom: 15px;
  }
  .project-about-data dt::before, .project-about-data dt::after {
    width: 15px;
    height: 15px;
  }
  .project-about-data dt::after {
    left: 8px;
  }
  .project-about-data dd + dt {
    margin-top: 26px;
  }
}

/* .project-gallery
================================================== */
.project-gallery {
  position: relative;
}
.project-gallery::after {
  content: "";
  background: rgb(var(--bg));
  height: 30px;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.project-gallery__inner {
  padding-top: 70px;
  padding-bottom: 90px;
}
.project-gallery-slider {
  margin: 0 -20px;
}
.project-gallery-slider__ui {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  margin-top: 25px;
}
.project-gallery-slider__ui .c-dot01 {
  margin-bottom: 11px;
}
.project-gallery-slider__ui-arrows {
  margin-left: 16px;
  position: relative;
  width: 85px;
  height: 40px;
}
.project-gallery-slider__ui-arrows .js-c-slider__arrow.is-prev {
  left: 0;
  right: auto;
}
.project-gallery-slider__ui-arrows .js-c-slider__arrow.is-next {
  right: 0;
  left: auto;
}
.project-gallery-slider__item {
  box-sizing: border-box;
  padding: 0 5px;
}
.project-gallery-slider__item-txt {
  color: rgb(var(--gray));
  font-size: 1.4rem;
  margin-top: 6px;
}
@media all and (min-width: 768px) {
  .project-gallery::after {
    height: 80px;
  }
  .project-gallery__inner {
    padding-top: 120px;
    padding-bottom: 230px;
  }
  .project-gallery-slider {
    margin: 0 -28px;
  }
  .project-gallery-slider__ui {
    justify-content: flex-end;
    margin-top: 35px;
  }
  .project-gallery-slider__ui-arrows {
    margin-left: 20px;
    width: 106px;
    height: 50px;
  }
  .project-gallery-slider__item {
    padding: 0 28px;
  }
}

/* .project-report
================================================== */
.project-report {
  background: rgb(var(--bg));
}
.project-report__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.project-report-search {
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 20px;
}
.project-report-search__head {
  font-size: 1.8rem;
  font-weight: 700;
}
.project-report-search__select select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 54px;
  font-size: 1.6rem;
  border: 1px solid rgb(var(--gray));
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  padding: 5px 15px;
  padding-right: 24px;
  background: no-repeat right 20px top 50%/12px;
  background-image: url(../img/common/ico_arrow02.png);
}
.project-report-search__select select:focus {
  border-color: rgb(var(--main));
  box-shadow: 0 0 6px rgba(var(--main), 0.5);
}
.project-report__sub {
  border-bottom: 1px solid;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .project-report__inner {
    padding-top: 120px;
    padding-bottom: 170px;
  }
  .project-report-search {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px 60px;
  }
  .project-report-search__head {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .project-report-search__con {
    flex: 1;
    margin-left: 100px;
  }
  .project-report__sub {
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}

/* .quality-intro
================================================ */
.quality-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .quality-intro {
    margin-bottom: 160px;
  }
}

/* .quality-sec
================================================ */
.quality-sec + .quality-sec {
  margin-top: 60px;
}
.quality-sec__txt.is-right {
  text-align: right;
  margin-top: 25px;
}
.quality-sec__list {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .quality-sec + .quality-sec {
    margin-top: 100px;
  }
  .quality-sec__list {
    margin-top: 25px;
  }
}

/* .quality-global
================================================ */
.quality-global {
  margin-top: 65px;
}
.quality-global__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.quality-global__area-img {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .quality-global {
    margin-top: 160px;
  }
  .quality-global__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .quality-global__area-img {
    margin-top: 75px;
  }
}

/* .quality-activity
================================================ */
.quality-activity__inner {
  padding-top: 75px;
}
@media all and (min-width: 768px) {
  .quality-activity__inner {
    padding-top: 170px;
  }
}

body.is-recruit {
  padding-top: 0;
}

/* .recruit-intro
================================================ */
.recruit-intro {
  position: relative;
  margin-top: -86px;
}
.recruit-intro::before, .recruit-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
}
.recruit-intro::before {
  top: -20px;
  right: 0;
  width: 174px;
  height: 158px;
  background: url(../img/recruit/bg_intro01_sp.png) no-repeat center/contain;
}
.recruit-intro::after {
  bottom: -10px;
  left: 0;
  width: 280px;
  height: 218px;
  background: url(../img/recruit/bg_intro02_sp.png) no-repeat center/contain;
}
.recruit-intro__inner {
  padding-bottom: 100px;
}
.recruit-intro__txt {
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5;
}
@media all and (min-width: 768px) {
  .recruit-intro {
    margin-top: 0;
  }
  .recruit-intro::before {
    top: -10px;
    right: 6.875%;
    width: 696px;
    height: 634px;
    background-image: url(../img/recruit/bg_intro01_pc.png);
  }
  .recruit-intro::after {
    bottom: -47px;
    width: 785px;
    height: 612px;
    background-image: url(../img/recruit/bg_intro02_pc.png);
  }
  .recruit-intro__inner {
    max-width: 900px;
    padding-top: 46px;
    padding-bottom: 250px;
  }
  .recruit-intro__txt {
    text-align: left;
    font-size: 1.8rem;
    line-height: 3;
  }
}

/* .recruit-about
================================================ */
.recruit-about {
  color: #fff;
  position: relative;
}
.recruit-about::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  background: url(../img/recruit/bg_about01_sp.jpg) no-repeat center/cover;
}
.recruit-about__inner {
  padding-top: 75px;
  padding-bottom: 75px;
}
.recruit-about__inner-in {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.recruit-about__head .c-head01__main {
  color: #fff;
}
@media all and (min-width: 768px) {
  .recruit-about::before {
    top: -15px;
    width: 100%;
    max-width: 1720px;
    background-image: url(../img/recruit/bg_about01_pc.jpg);
  }
  .recruit-about__inner {
    padding-top: 145px;
    padding-bottom: 150px;
  }
  .recruit-about__inner-in {
    padding: 0;
  }
}

.recruit-about-list {
  margin-top: 50px;
}
.recruit-about-list__item {
  margin-top: 15px;
}
.recruit-about-list__item-link {
  position: relative;
  display: block;
  padding: 30px 20px;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
}
.recruit-about-list__item-link.is-number::before {
  background: url(../img/recruit/bg_number01_sp.jpg) no-repeat center/cover;
}
.recruit-about-list__item-link.is-field::before {
  background: url(../img/recruit/bg_field01_sp.jpg) no-repeat center/cover;
}
.recruit-about-list__item-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.recruit-about-list__item-link::after {
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  bottom: 30px;
  right: 20px;
}
.recruit-about-list__item-en {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
}
@media all and (min-width: 768px) {
  .recruit-about-list {
    display: flex;
    margin: 72px -20px 0;
  }
  .recruit-about-list__item {
    width: calc(50% - 40px);
    margin: 0 20px;
  }
  .recruit-about-list__item-link {
    overflow: hidden;
    padding: 144px 60px 60px;
    font-size: 3.7rem;
  }
  .recruit-about-list__item-link.is-number::before {
    background-image: url(../img/recruit/bg_number01_pc.jpg);
  }
  .recruit-about-list__item-link.is-field::before {
    background-image: url(../img/recruit/bg_field01_pc.jpg);
  }
  .recruit-about-list__item-link::before {
    transition: all 0.3s ease;
  }
  .recruit-about-list__item-link::after {
    width: 39px;
    height: 30px;
    bottom: 60px;
    right: 55px;
  }
  .recruit-about-list__item-link:hover::before {
    transform: scale(1.2);
  }
  .recruit-about-list__item-link:hover::after {
    transform: translateX(15px);
  }
  .recruit-about-list__item-en {
    margin-top: 8px;
    font-size: 2.1rem;
  }
}

/* .recruit-interviews
================================================ */
.recruit-interviews {
  position: relative;
  margin-top: -150px;
  background-color: rgb(var(--bg03));
}
.recruit-interviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 14px);
  max-width: 361px;
  height: 400px;
  background: rgb(var(--bg03)) url(../img/recruit/bg_interviews01.png) no-repeat center/contain;
}
.recruit-interviews__inner {
  padding-top: 225px;
  padding-bottom: 75px;
}
.recruit-interviews__btn {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .recruit-interviews {
    margin-top: -240px;
    overflow-x: hidden;
  }
  .recruit-interviews::before {
    width: 722px;
    max-width: 722px;
    height: 800px;
  }
  .recruit-interviews__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 396px;
    padding-bottom: 190px;
  }
  .recruit-interviews__areaTxt {
    flex: 0 0 620px;
    margin-right: 5.7%;
  }
  .recruit-interviews__btn {
    position: absolute;
    margin-top: 0;
    bottom: 203px;
  }
}

.recruit-interviews-slider {
  margin: 50px -20px 0;
}
.recruit-interviews-slider__navi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.recruit-interviews-slider .swiper-pagination {
  margin: 0 18px;
  font-size: 1.2rem;
}
.recruit-interviews-slider .swiper-pagination span {
  box-sizing: border-box;
  min-width: 25px;
  text-align: center;
  padding: 0 7px;
  font-size: 1.7rem;
}
.recruit-interviews-slider .swiper-button-next,
.recruit-interviews-slider .swiper-button-prev {
  display: grid;
  place-items: center;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  height: 24px;
  padding: 0;
}
.recruit-interviews-slider .swiper-button-next::before,
.recruit-interviews-slider .swiper-button-prev::before {
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  color: rgb(var(--black));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14"><path d="M6.287,0V13.564L1.013,8.85,0,9.742,7,16l7-6.258L12.987,8.85,7.715,13.563V0Z" transform="translate(0 14) rotate(-90)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.recruit-interviews-slider .swiper-button-prev::before {
  transform: scale(-1, 1);
}
@media all and (min-width: 768px) {
  .recruit-interviews-slider {
    flex: 0 0 68.6%;
    margin: 0;
  }
  .recruit-interviews-slider__navi {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .recruit-interviews-slider .swiper-pagination {
    font-size: 1.4rem;
  }
  .recruit-interviews-slider .swiper-pagination span {
    min-width: 29px;
    padding: 0 8px;
    font-size: 2.1rem;
  }
  .recruit-interviews-slider .swiper-button-next,
.recruit-interviews-slider .swiper-button-prev {
    width: 33px;
  }
  .recruit-interviews-slider .swiper-button-next::before,
.recruit-interviews-slider .swiper-button-prev::before {
    width: 33px;
    height: 25px;
  }
  .recruit-interviews-slider .swiper-button-next:hover,
.recruit-interviews-slider .swiper-button-prev:hover {
    transform: none;
  }
  .recruit-interviews-slider .swiper-button-next:hover::before,
.recruit-interviews-slider .swiper-button-prev:hover::before {
    color: rgb(var(--main));
  }
}

.recruit-interviews-list.swiper-wrapper {
  height: auto;
}
.recruit-interviews-list__item.swiper-slide {
  transition: 0.7s;
  opacity: 0.6;
}
.recruit-interviews-list__item.swiper-slide-active {
  opacity: 1;
}
.recruit-interviews-list__item-link {
  position: relative;
  display: block;
}
.recruit-interviews-list__item-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: block;
  padding: 0 10px;
  background: rgb(var(--main));
  color: #fff;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .recruit-interviews-list__item.swiper-slide {
    width: 380px;
    transform: scale(0.91);
    transform-origin: top;
  }
  .recruit-interviews-list__item.swiper-slide-active {
    transform: scale(1);
  }
  .recruit-interviews-list__item-link {
    overflow: hidden;
  }
  .recruit-interviews-list__item-link img {
    transition: all 0.3s ease;
  }
  .recruit-interviews-list__item-link:hover img {
    transform: scale(1.1);
  }
}
@media all and (min-width: 1160px) {
  .recruit-interviews-list__item.swiper-slide {
    width: 440px;
  }
}

/* .recruit-system
================================================ */
.recruit-system {
  position: relative;
}
.recruit-system::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: url(../img/recruit/bg_system01_sp.png) no-repeat center/contain;
}
.recruit-system__inner {
  padding-top: 75px;
  padding-bottom: 50px;
}
.recruit-system__areaTxt {
  margin-top: 30px;
}
.recruit-system__btn {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .recruit-system::after {
    top: 0;
    bottom: auto;
    height: 860px;
    background-image: url(../img/recruit/bg_system01_pc.png);
  }
  .recruit-system__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 156px;
    padding-bottom: 20px;
  }
  .recruit-system__img {
    flex: 0 0 50%;
  }
  .recruit-system__areaTxt {
    flex: 0 0 43%;
    max-width: 600px;
    margin-top: 18px;
  }
  .recruit-system__btn {
    margin-top: 60px;
    text-align: right;
  }
}

/* .security-intro
================================================ */
.security-intro {
  margin-bottom: 60px;
}
@media all and (min-width: 768px) {
  .security-intro {
    margin-bottom: 160px;
  }
}

/* .security-sec
================================================ */
.security-sec + .security-sec {
  margin-top: 60px;
}
.security-sec__txt.is-right {
  text-align: right;
  margin-top: 25px;
}
.security-sec__list {
  margin-top: 15px;
}
.security-sec__list .is-bold {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
@media all and (min-width: 768px) {
  .security-sec + .security-sec {
    margin-top: 100px;
  }
  .security-sec__list {
    margin-top: 25px;
  }
}

/* .security-activity
================================================ */
.security-activity {
  margin-top: 65px;
}
.security-activity__inner {
  padding-top: 75px;
}
@media all and (min-width: 768px) {
  .security-activity {
    margin-top: 160px;
  }
  .security-activity__inner {
    padding-top: 170px;
  }
}

/* .sustainability-intro
================================================ */
.sustainability-intro__inner {
  padding-top: 51px;
  padding-bottom: 66px;
}
.sustainability-intro__head {
  text-align: center;
  margin-bottom: 25px;
}
@media all and (min-width: 768px) {
  .sustainability-intro__inner {
    padding-top: 166px;
    padding-bottom: 166px;
  }
  .sustainability-intro__txt {
    max-width: 902px;
    margin: 0 auto;
    text-align: center;
  }
}

/* .sustainability-initiative
================================================ */
.sustainability-initiative__inner {
  padding-top: 70px;
}
@media all and (min-width: 768px) {
  .sustainability-initiative__inner {
    padding-top: 170px;
  }
  .sustainability-initiative__head {
    margin-bottom: 69px;
  }
}

/* .technology-business
================================================ */
.technology-business__inner {
  padding-top: 73px;
  padding-bottom: 80px;
}
.technology-business__info {
  margin-bottom: 36px;
}
.technology-business__head {
  margin-bottom: 28px;
}
@media all and (min-width: 768px) {
  .technology-business__inner {
    padding-top: 192px;
    padding-bottom: 170px;
  }
  .technology-business__main {
    display: flex;
    justify-content: space-between;
  }
  .technology-business__info {
    flex: 1;
    margin-bottom: 0;
  }
  .technology-business__head {
    margin-bottom: 48px;
  }
  .technology-business__img {
    max-width: 550px;
    width: 100%;
    margin-left: 50px;
  }
}

/* .technology-technology
================================================ */
.technology-technology {
  background: url(../img/technology/bg_technology01_sp.jpg) no-repeat center/cover;
  position: relative;
}
.technology-technology::before, .technology-technology::after {
  content: "";
  width: 188px;
  height: 30px;
  background-color: rgb(var(--base));
  position: absolute;
}
.technology-technology::before {
  top: 0;
  right: 0;
}
.technology-technology::after {
  bottom: 0;
  left: 0;
  background-color: rgb(var(--bg));
}
.technology-technology__inner {
  padding-top: 145px;
  padding-bottom: 142px;
}
.technology-technology__head {
  margin-bottom: 40px;
}
.technology-technology__head.is-large .technology-technology__head-en {
  font-size: 3.5rem;
}
.technology-technology__head-main {
  z-index: 1;
}
.technology-technology__btn {
  -moz-text-align-last: left;
  text-align-last: left;
  color: #fff;
  margin: 0;
}
.technology-technology__btn-link::before {
  background-color: #fff;
}
.technology-technology__btn-link::after {
  color: rgb(var(--green02));
}
@media all and (min-width: 768px) {
  .technology-technology {
    background: url(../img/technology/bg_technology01_pc.jpg) no-repeat center/cover;
  }
  .technology-technology::before, .technology-technology::after {
    max-width: 960px;
    width: 50%;
    height: 80px;
  }
  .technology-technology__inner {
    padding-top: 236px;
    padding-bottom: 218px;
  }
  .technology-technology__head {
    margin-bottom: 111px;
  }
  .technology-technology__head.is-large .technology-technology__head-en {
    font-size: 10rem;
    margin-bottom: 0;
  }
  .technology-technology__btn {
    -moz-text-align-last: right;
    text-align-last: right;
  }
}

/* .technology-production
================================================ */
.technology-production {
  position: relative;
  z-index: 1;
}
.technology-production::after {
  content: "";
  width: 188px;
  height: 30px;
  background-color: rgb(var(--bg));
  position: absolute;
  bottom: -30px;
  right: 0;
}
.technology-production__inner {
  padding-top: 71px;
  padding-bottom: 80px;
}
.technology-production__ico {
  width: 280px;
  color: rgba(var(--base), 0.35);
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  z-index: -1;
}
.technology-production__info {
  margin-bottom: 25px;
}
.technology-production__head {
  margin-bottom: 31px;
}
.technology-production__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .technology-production::after {
    width: 50%;
    max-width: 960px;
    height: 80px;
    bottom: -80px;
    z-index: -2;
  }
  .technology-production__inner {
    padding-top: 153px;
    padding-bottom: 190px;
  }
  .technology-production__ico {
    width: 641px;
    left: unset;
    bottom: -155px;
    right: 66px;
    transform: none;
  }
  .technology-production__main {
    display: flex;
    justify-content: space-between;
  }
  .technology-production__info {
    flex: 1;
    margin-bottom: 0;
  }
  .technology-production__head {
    margin-bottom: 48px;
  }
  .technology-production__img {
    max-width: 550px;
    margin: 0 0 0 50px;
  }
}

/* .technology-flow
================================================ */
.technology-flow {
  overflow: hidden;
}
.technology-flow__inner {
  padding-top: 100px;
  padding-bottom: 70px;
}
.technology-flow__head {
  margin-bottom: 41px;
}
.technology-flow-list {
  display: flex;
  overflow-x: scroll;
  margin-right: -20px;
  margin-bottom: 44px;
  padding-right: 30px;
}
.technology-flow-list__item {
  width: 135px;
  flex-shrink: 0;
}
.technology-flow-list__item + .technology-flow-list__item {
  margin-left: 24px;
}
.technology-flow-list__item:last-child .technology-flow-list__img::after {
  display: none;
}
.technology-flow-list__img {
  margin-bottom: 15px;
  position: relative;
}
.technology-flow-list__img::after {
  content: "";
  width: 14px;
  height: 12px;
  background: url(../img/technology/ico_flow01.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
}
.technology-flow-diagram__header {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgb(var(--main));
  color: #fff;
}
.technology-flow-diagram__header.is-active .technology-flow-diagram__header-ico::after {
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.technology-flow-diagram__header-head {
  display: inline-block;
  position: relative;
  margin-left: -30px;
}
.technology-flow-diagram__header-ico {
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
}
.technology-flow-diagram__header-ico::before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: rgb(var(--main));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.technology-flow-diagram__header-ico::after {
  transition: all 0.3s ease;
  content: "";
  width: 1px;
  height: 9px;
  background-color: rgb(var(--main));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.technology-flow-diagram__con {
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: rgb(var(--border));
  box-sizing: border-box;
  padding: 0 0 4px 0;
}
.technology-flow-diagram__con-in {
  padding: 19px;
  overflow-x: scroll;
}
.technology-flow-diagram__img {
  width: 600px;
}
@media all and (max-width: 767px) {
  .technology-flow-diagram__con-in::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: rgb(var(--bg));
  }
  .technology-flow-diagram__con-in::-webkit-scrollbar {
    height: 6px;
    background-color: rgb(var(--bg));
  }
  .technology-flow-diagram__con-in::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgb(var(--gray));
  }
}
@media all and (min-width: 768px) {
  .technology-flow__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .technology-flow__head {
    margin-bottom: 62px;
  }
  .technology-flow-list {
    display: flex;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 106px;
    padding-right: 0;
  }
  .technology-flow-list__item {
    width: 190px;
  }
  .technology-flow-list__item + .technology-flow-list__item {
    margin-left: 38px;
  }
  .technology-flow-list__img {
    width: 180px;
    margin: 0 auto 13px;
  }
  .technology-flow-list__img::after {
    width: 21px;
    height: 18px;
    right: -34px;
  }
  .technology-flow-diagram__header {
    min-height: 80px;
  }
  .technology-flow-diagram__header-head {
    font-size: 1.8rem;
    margin-left: -50px;
  }
  .technology-flow-diagram__header-ico {
    width: 38px;
    height: 38px;
    right: -48px;
  }
  .technology-flow-diagram__header-ico::before {
    content: "";
    width: 14px;
    height: 2px;
  }
  .technology-flow-diagram__header-ico::after {
    content: "";
    width: 2px;
    height: 14px;
  }
  .technology-flow-diagram__con {
    padding: 0;
  }
  .technology-flow-diagram__con-in {
    padding: 50px 99px 70px;
    overflow-x: hidden;
  }
  .technology-flow-diagram__img {
    max-width: 900px;
    width: 100%;
  }
}

/* .technology-facilities
================================================ */
.technology-facilities__inner {
  padding-top: 70px;
  padding-bottom: 116px;
}
.technology-facilities__head {
  margin-bottom: 31px;
}
.technology-facilities__txt {
  margin-bottom: 45px;
}
.technology-facilities-list.is-large .technology-facilities-list__item {
  margin-bottom: 27px;
}
.technology-facilities-list.is-large .technology-facilities-list__item:last-child {
  margin-bottom: 0;
}
.technology-facilities-list.is-large .technology-facilities-list__txt {
  padding-top: 15px;
}
.technology-facilities-list__img-area {
  position: relative;
}
.technology-facilities-list__header {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-align: center;
}
.technology-facilities-list__header-en {
  font-size: 0.9rem;
}
.technology-facilities-list__header-ja {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.technology-facilities-list__video {
  width: 100%;
  padding-top: 56%;
  margin: 0 auto;
  position: relative;
}
.technology-facilities-list__video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.technology-facilities-list__layer {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) {
  .technology-facilities__inner {
    padding-top: 170px;
    padding-bottom: 253px;
  }
  .technology-facilities__head {
    margin-bottom: 46px;
  }
  .technology-facilities__txt {
    margin-bottom: 76px;
  }
  .technology-facilities-list.is-large .technology-facilities-list__txt {
    font-size: 1.6rem;
    padding-top: 0;
  }
  .technology-facilities-list__header-en {
    font-size: 1.5rem;
  }
  .technology-facilities-list__header-ja {
    font-size: 3rem;
  }
}

/* .technology-achievements
================================================ */
.technology-achievements__inner {
  padding-top: 75px;
}
.technology-achievements__head {
  margin-bottom: 27px;
}
.technology-achievements__txt {
  margin-bottom: 36px;
}
.technology-achievements__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.technology-achievements__btn {
  text-align: center;
}
@media all and (min-width: 768px) {
  .technology-achievements__inner {
    padding-top: 170px;
  }
  .technology-achievements__main {
    display: grid;
    gap: 0 50px;
    grid-template-columns: 500px 1fr;
  }
  .technology-achievements__head {
    margin-bottom: 47px;
  }
  .technology-achievements__txt {
    margin-bottom: 50px;
  }
  .technology-achievements__img {
    grid-column: 2/span 1;
    grid-row: 1/span 4;
    max-width: 550px;
    margin: 0;
  }
  .technology-achievements__btn {
    text-align: left;
    margin: 0;
  }
}

/* .training-education
================================================ */
.training-education__inner {
  padding-top: 48px;
  padding-bottom: 73px;
}
.training-education__head {
  margin-bottom: 38px;
}
.training-education__con {
  margin-bottom: 60px;
}
.training-education__info {
  margin-bottom: 16px;
}
.training-education__lead {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5238095238;
  margin-bottom: 10px;
}
.training-education__txt + .training-education__txt {
  margin-top: 28px;
}
.training-education__img {
  overflow: auto;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 17px;
}
.training-education__img::-webkit-scrollbar {
  height: 4px;
}
.training-education__img::-webkit-scrollbar-thumb {
  background-color: rgb(var(--border));
}
.training-education__img img {
  width: 640px;
  max-width: 640px;
}
.training-education-pickup {
  padding: 42px 20px 45px;
  box-sizing: border-box;
  position: relative;
}
.training-education-pickup::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(var(--bg02));
  border-radius: 10px;
  z-index: -1;
}
.training-education-pickup__head {
  font-weight: 500;
  margin-bottom: 17px;
}
.training-education-pickup__list-item + .training-education-pickup__list-item {
  margin-top: 36px;
}
.training-education-pickup__list-img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 15px;
}
.training-education-pickup__list-head {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5333333333;
  margin-bottom: 6px;
}
@media all and (min-width: 768px) {
  .training-education {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .training-education::after {
    content: "";
    width: 960px;
    height: 800px;
    background: url(../img/recruit/training/bg_education01.png) no-repeat center/cover;
    position: absolute;
    bottom: -87px;
    left: 0;
    z-index: -2;
  }
  .training-education__inner {
    padding-top: 93px;
    padding-bottom: 175px;
  }
  .training-education__head {
    margin-bottom: 41px;
  }
  .training-education__con {
    margin-bottom: 173px;
  }
  .training-education__info {
    margin-bottom: 0;
  }
  .training-education__lead {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .training-education__txt + .training-education__txt {
    margin-top: 31px;
  }
  .training-education__img {
    margin-top: 80px;
    padding-bottom: 0;
  }
  .training-education__img img {
    max-width: 100%;
    width: 100%;
  }
  .training-education-pickup {
    padding: 80px 0 97px;
  }
  .training-education-pickup::before {
    width: calc(100% + 620px);
  }
  .training-education-pickup__head {
    margin-bottom: 33px;
  }
  .training-education-pickup__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 55px;
  }
  .training-education-pickup__list-item + .training-education-pickup__list-item {
    margin-top: 0;
  }
  .training-education-pickup__list-img {
    max-width: none;
    margin-bottom: 20px;
  }
  .training-education-pickup__list-head {
    font-size: 2rem;
    line-height: 1.65;
    margin-bottom: 10px;
  }
}

/* .training-system
================================================ */
.training-system__inner {
  padding-bottom: 74px;
}
.training-system__head {
  margin-bottom: 36px;
}
.training-system__info {
  margin-bottom: 16px;
}
.training-system__txt + .training-system__txt {
  margin-top: 28px;
}
.training-system__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .training-system__inner {
    padding-bottom: 173px;
  }
  .training-system__main {
    display: grid;
    grid-template-columns: 550px 490px;
    gap: 0 60px;
  }
  .training-system__head {
    margin-bottom: 41px;
  }
  .training-system__info {
    margin-bottom: 0;
  }
  .training-system__txt + .training-system__txt {
    margin-top: 31px;
  }
  .training-system__img {
    max-width: 490px;
    margin: -5px 0 0 0;
    align-self: flex-start;
  }
}

/* .training-welfare
================================================ */
.training-welfare__inner {
  padding-bottom: 70px;
}
.training-welfare__head {
  margin-bottom: 40px;
}
.training-welfare-list {
  margin-bottom: 57px;
}
.training-welfare-list__item {
  background-color: #fff;
  border: 10px solid rgb(var(--gray02));
  padding: 20px 20px 30px 20px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.02) 10px 20px 20px;
}
.training-welfare-list__item + .training-welfare-list__item {
  margin-top: 8px;
}
.training-welfare-list__img {
  width: 126px;
  margin: 0 auto 8px;
}
.training-welfare-list__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 12px;
}
.training-welfare-list__txt {
  letter-spacing: 0.22em;
  line-height: 2.2;
}
.training-welfare-pickup {
  position: relative;
  padding: 42px 20px 50px;
  box-sizing: border-box;
}
.training-welfare-pickup::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(var(--bg02));
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.training-welfare-pickup__info {
  margin-bottom: 15px;
}
.training-welfare-pickup__lead {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5238095238;
  margin-bottom: 11px;
}
.training-welfare-pickup__img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .training-welfare {
    overflow: hidden;
  }
  .training-welfare__inner {
    padding-bottom: 0;
  }
  .training-welfare__head {
    margin-bottom: 46px;
  }
  .training-welfare-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 95px;
  }
  .training-welfare-list__item {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 5px;
    padding: 35px 25px;
  }
  .training-welfare-list__item + .training-welfare-list__item {
    margin-top: 0;
  }
  .training-welfare-list__head {
    grid-area: 1/2/2/3;
    margin-bottom: 0;
    text-align: left;
  }
  .training-welfare-list .c-list02 {
    grid-area: 2/2/3/3;
  }
  .training-welfare-list__img {
    grid-area: 1/1/3/2;
    width: 150px;
    margin-bottom: 0;
  }
  .training-welfare-pickup {
    position: relative;
    padding: 80px 0 130px;
    box-sizing: border-box;
  }
  .training-welfare-pickup::before {
    width: calc(100% + 620px);
  }
  .training-welfare-pickup__con {
    display: grid;
    grid-template-columns: 550px 490px;
    gap: 0 60px;
  }
  .training-welfare-pickup__info {
    margin-bottom: 0;
  }
  .training-welfare-pickup__lead {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .training-welfare-pickup__img {
    max-width: 490px;
    margin: 0;
  }
}

/* .works-anchor
================================================ */
.works-anchor__inner {
  padding-top: 70px;
}
@media all and (min-width: 768px) {
  .works-anchor__inner {
    padding-top: 170px;
  }
}

/* .works-sec
================================================ */
.works-sec:nth-child(odd) {
  background: rgb(var(--bg));
}
.works-sec:nth-child(odd):last-of-type {
  padding-bottom: 70px;
}
.works-sec:last-child .works-sec__inner {
  padding-bottom: 0;
}
.works-sec__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media all and (max-width: 767px) {
  .works-sec:last-child {
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .works-sec:nth-child(odd):last-of-type {
    padding-bottom: 170px;
  }
  .works-sec__inner {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}