@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
----------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
  background-color: transparent;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
:root {
  --black-800: #5C5C5C;
  --black-800-rgb: 92,
  92,
  92;
  --black-600: #858585;
  --black-600-rgb: 133,
  133,
  133;
  --black-400: #ADADAD;
  --black-400-rgb: 173,
  173,
  173;
  --black-200: #D6D6D6;
  --black-200-rgb: 214,
  214,
  214;
  --black-100: #EBEBEB;
  --black-100-rgb: 235,
  235,
  235;
  --black: #312E26;
  --black-rgb: 49,
  46,
  38;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --border: #E5E5E5;
  --border-rgb: 229,
  229,
  229;
  --main: #54B6E4;
  --main-rgb: 84,
  182,
  228;
  --sub: #94CB5E;
  --sub-rgb: 148,
  203,
  94;
  --hover: #54B6E4;
  --hover-rgb: 84,
  182,
  228;
  --whitesmoke: #F0EFEC;
  --whitesmoke-rgb: 240,
  239,
  236;
  --lightgray: #E6E6EA;
  --lightgray-rgb: 230,
  230,
  234;
  --silver: #D4D4D8;
  --silver-rgb: 212,
  212,
  216;
  --gray: #67676B;
  --gray-rgb: 103,
  103,
  107;
  --selection_txt: #525256;
  --selection_txt-rgb: 82,
  82,
  86;
  --selection_bg: #FFD0C4;
  --selection_bg-rgb: 255,
  208,
  196;
  --tomato: #EF423B;
  --tomato-rgb: 239,
  66,
  59;
  --point: #FF00EA;
  --point-rgb: 255,
  0,
  234;
}

/*-==========================================================================
font
==========================================================================*/
/*-==========================================================================
rem変換関数
==========================================================================*/
/*-==========================================================================
vw変換
==========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
独自mixinを定義
==========================================================================*/
/*-==========================================================================
ブレイクポイント（xpc、pc、lp、tb、sp）
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html,
body {
  color: var(--black);
  font-family: "Zen Old Mincho", serif;
}

body {
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
}

main {
  position: relative;
}

::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

::selection,
::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

.over-clip {
  overflow: clip;
}

a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--whitesmoke);
  text-align: inherit;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
  text-align: justify;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

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

/* ==========================================================================
共通パーツ
========================================================================== */
.p-common-karino-bnr {
  position: relative;
}
.p-common-karino-bnr a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.p-common-karino-bnr a img {
  width: 100%;
  height: auto;
}
.p-common-karino-bnr a:hover {
  opacity: 0.7;
}

.p-common-sec {
  padding: 7.5rem 0 8.75rem;
}
@media screen and (max-width: 960px) {
  .p-common-sec {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-common-sec {
    padding: 3.75rem 0 5rem;
  }
}

.p-common-sec-remove-bottom {
  padding: 7.5rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-common-sec-remove-bottom {
    padding: 6.25rem 0 0;
  }
}
@media screen and (max-width: 428px) {
  .p-common-sec-remove-bottom {
    padding: 3.75rem 0 0;
  }
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
/* ==========================================================================
ヘッダー
========================================================================== */
/* PC版メニュー 1段
----------------------------------------------------------------- */
header.l-hd1 .l-hd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  height: 80px;
  z-index: 1010;
  position: relative;
  padding-right: 300px;
}
@media screen and (max-width: 960px) {
  header.l-hd1 .l-hd {
    width: 100%;
    padding-right: 270px;
  }
}
@media screen and (max-width: 428px) {
  header.l-hd1 .l-hd {
    height: 60px;
    padding-right: 80px;
  }
}
header.l-hd1 h1.l-hd-logo {
  position: relative;
  max-width: 360px;
  width: 100%;
  padding: 0 20px;
  z-index: 999;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 960px) {
  header.l-hd1 h1.l-hd-logo {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 428px) {
  header.l-hd1 h1.l-hd-logo {
    max-width: 380px;
    padding: 0 0 0 10px;
  }
}
header.l-hd1 h1.l-hd-logo a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header.l-hd1 h1.l-hd-logo a img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 428px) {
  header.l-hd1 h1.l-hd-logo a img {
    height: auto !important;
    width: auto;
  }
}
header.l-hd1 h1.l-hd-logo a:hover {
  opacity: 0.7;
}
header.l-hd1 .l-hd-nav__wrap {
  padding-right: 6.25rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 80px;
  padding-top: 11px;
}
@media screen and (max-width: 960px) {
  header.l-hd1 .l-hd-nav__wrap {
    padding-right: 6.25rem;
    padding-top: 15px;
  }
}
@media screen and (max-width: 428px) {
  header.l-hd1 .l-hd-nav__wrap {
    height: 60px;
  }
}
header.l-hd1 .l-hd-nav__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-hd-nav1__contact {
  width: 200px;
  max-width: 200px;
}
@media screen and (max-width: 960px) {
  .l-hd-nav1__contact {
    width: 170px;
    max-width: 170px;
  }
}
@media screen and (max-width: 428px) {
  .l-hd-nav1__contact {
    display: none;
  }
}
.l-hd-nav1__contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--main);
  padding: 8px 20px 6px 30px;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .l-hd-nav1__contact a {
    height: 50px;
  }
}
.l-hd-nav1__contact a .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.3125rem;
}
.l-hd-nav1__contact a .arrow {
  background: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
  aspect-ratio: 1;
}
.l-hd-nav1__contact a .arrow svg {
  width: 10px;
  height: auto;
  fill: var(--main);
}
.l-hd-nav1__contact:hover a {
  background-color: var(--sub);
}
.l-hd-nav1__contact:hover a .arrow svg {
  fill: var(--sub);
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-toggle {
  display: block;
  width: 80px;
  height: 80px;
  background-color: transparent;
  background-image: url(/recruit/resource/images/menu_open.svg);
  background-size: 50px 50px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1020;
  cursor: pointer;
}
@media screen and (max-width: 428px) {
  .l-toggle {
    background-size: 40px 40px;
    width: 50px;
    height: 50px;
    top: 5px;
    right: 5px;
  }
}
.l-toggle:hover {
  background-image: url(/recruit/resource/images/menu_open_blue.svg);
}

.l-toggle.is-scrolled {
  background-image: url(/recruit/resource/images/menu_open_black.svg);
}
.l-toggle.is-scrolled:hover {
  background-image: url(/recruit/resource/images/menu_open_blue.svg);
}

body.open {
  overflow: hidden;
}

/* ハンバーガー → クローズ アイコン切り替え用 */
.l-toggle.close {
  position: absolute;
  background-image: url(/recruit/resource/images/menu_close.svg);
}
.l-toggle.close:hover {
  background-image: url(/recruit/resource/images/menu_close_blue.svg);
}

/* ドロワーメニュー（toggleを押して出現するメニュー/SPメニュー）
----------------------------------------------------------------- */
/* 背景ブラー */
.menu-blur {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: -webkit-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html.open .menu-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* open時：少し遅れてスライドイン */
html.open .l-drawer {
  right: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

/* close時：ブラー解除の後半でスライドアウト */
html:not(.open) .l-drawer {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.l-drawer {
  width: 100%;
  height: 100%;
  max-width: 630px;
  position: fixed;
  top: 0;
  right: -100%;
  -webkit-transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1010;
  background-color: rgba(var(--white-rgb), 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media screen and (max-width: 428px) {
  .l-drawer {
    background-color: rgba(var(--white-rgb), 0.8);
  }
}

/* スライドイン */
.l-drawer.open {
  right: 0;
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 960px) {
  .l-drawer-body {
    padding: 0 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-body {
    padding: 0 0 5rem;
  }
}

.l-drawer-nav-hd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  gap: 40px;
  padding-right: 6.25rem;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav-hd {
    padding-right: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-hd {
    height: 60px;
    padding-right: 6.25rem;
  }
}

.l-drawer-nav__sub,
.l-drawer-nav__ext,
.l-drawer-nav-main {
  position: relative;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__sub,
  .l-drawer-nav__ext,
  .l-drawer-nav-main {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}

.l-drawer-nav-main {
  padding-top: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav-main {
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main {
    padding-top: 0.625rem;
  }
}

.l-drawer-nav-main__menu {
  display: block;
  position: relative;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 160%;
  color: var(--black);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav-main__menu {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.l-drawer-nav-main__menu > a,
.l-drawer-nav-main__menu > button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  text-align: left;
}
.l-drawer-nav-main__menu > a .text,
.l-drawer-nav-main__menu > button .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding-right: calc(1.5em + 20px);
  position: relative;
}
.l-drawer-nav-main__menu > a .circle,
.l-drawer-nav-main__menu > button .circle {
  width: 50px;
  height: 50px;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu > a .circle,
  .l-drawer-nav-main__menu > button .circle {
    width: 40px;
    height: 40px;
  }
}
.l-drawer-nav-main__menu > a .circle::before, .l-drawer-nav-main__menu > a .circle::after,
.l-drawer-nav-main__menu > button .circle::before,
.l-drawer-nav-main__menu > button .circle::after {
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  top: 23px;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s;
  transition: background 0.4s ease, -webkit-transform 0.4s;
  transition: transform 0.4s, background 0.4s ease;
  transition: transform 0.4s, background 0.4s ease, -webkit-transform 0.4s;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu > a .circle::before, .l-drawer-nav-main__menu > a .circle::after,
  .l-drawer-nav-main__menu > button .circle::before,
  .l-drawer-nav-main__menu > button .circle::after {
    top: 20px;
  }
}
.l-drawer-nav-main__menu > a .circle::before,
.l-drawer-nav-main__menu > button .circle::before {
  background: #dcdbd8;
  width: 20px;
  right: 50px;
  z-index: 5;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu > a .circle::before,
  .l-drawer-nav-main__menu > button .circle::before {
    right: 32px;
    width: 8px;
  }
}
.l-drawer-nav-main__menu > a .circle::after,
.l-drawer-nav-main__menu > button .circle::after {
  background: var(--whitesmoke);
  width: 8px;
  right: 42px;
  z-index: 6;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu > a .circle::after,
  .l-drawer-nav-main__menu > button .circle::after {
    width: 10px;
    right: 40px;
  }
}
.l-drawer-nav-main__menu > a .circle svg,
.l-drawer-nav-main__menu > button .circle svg {
  width: 10px;
  height: 15px;
  fill: var(--white);
}
.l-drawer-nav-main__menu > a:hover,
.l-drawer-nav-main__menu > button:hover {
  color: var(--hover);
}
.l-drawer-nav-main__menu > a:hover .text,
.l-drawer-nav-main__menu > button:hover .text {
  color: var(--hover);
}
.l-drawer-nav-main__menu > a:hover .text a,
.l-drawer-nav-main__menu > button:hover .text a {
  color: var(--hover);
}
.l-drawer-nav-main__menu > a:hover .text::before, .l-drawer-nav-main__menu > a:hover .text::after,
.l-drawer-nav-main__menu > button:hover .text::before,
.l-drawer-nav-main__menu > button:hover .text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.l-drawer-nav-main__menu > a:hover .text::before,
.l-drawer-nav-main__menu > button:hover .text::before {
  background: var(--white);
}
.l-drawer-nav-main__menu > a:hover .text::after,
.l-drawer-nav-main__menu > button:hover .text::after {
  background: var(--main);
  width: 25px;
  right: -5px;
}
.l-drawer-nav-main__menu .l-drawer-nav__child {
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 10px 0 0 10px;
  padding: 0;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu .l-drawer-nav__child {
    margin: 10px 0 0 5px;
  }
}
.l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu {
  padding-left: 2px;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu {
    margin-top: 5px;
  }
  .l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu {
    margin-top: 10px;
  }
}
.l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 7px;
  background-color: var(--main);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-right: 0.25em;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu::before {
    margin-bottom: 0.15em;
  }
}
.l-drawer-nav-main__menu .l-drawer-nav__child .l-drawer-nav__child__menu a:hover {
  color: var(--hover);
}
@media screen and (max-width: 428px) {
  .l-drawer-nav-main__menu .l-drawer-nav__child {
    font-size: 1rem;
  }
}

.l-drawer-nav__secondary-top,
.l-drawer-nav__secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__secondary-top,
  .l-drawer-nav__secondary {
    gap: 1.875rem;
  }
}
.l-drawer-nav__secondary-top li,
.l-drawer-nav__secondary li {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav__secondary-top li,
  .l-drawer-nav__secondary li {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__secondary-top li,
  .l-drawer-nav__secondary li {
    font-size: 1.25rem;
  }
}
.l-drawer-nav__secondary-top li a:hover,
.l-drawer-nav__secondary li a:hover {
  color: var(--hover);
}

.l-drawer-nav__secondary-top {
  margin-bottom: 2.5rem;
  margin-left: -0.3125rem;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav__secondary-top {
    margin-left: 0;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__secondary-top {
    margin-bottom: 1.875rem;
  }
}

.l-drawer-nav__ext {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.875rem 2.5rem;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .l-drawer-nav__ext {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__ext {
    margin-top: 2.5rem;
  }
}
.l-drawer-nav__ext li {
  width: 100%;
}
.l-drawer-nav__ext li a {
  background: #dcdbd8;
  padding: 8px 10px 8px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 80px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__ext li a {
    padding: 8px 15px 8px 30px;
  }
}
.l-drawer-nav__ext li a .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  font-size: 1.1875rem;
}
.l-drawer-nav__ext li a .arrow {
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  aspect-ratio: 1;
}
.l-drawer-nav__ext li a .arrow svg {
  width: 13px;
  height: auto;
  fill: var(--white);
}
.l-drawer-nav__ext li a:hover {
  background-color: var(--main);
}
.l-drawer-nav__ext li a:hover .txt {
  color: var(--white);
}
.l-drawer-nav__ext li a:hover .arrow {
  background: var(--white);
}
.l-drawer-nav__ext li a:hover .arrow svg {
  fill: var(--main);
}
.l-drawer-nav__ext .karino a {
  background: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-nav__ext .karino a .txt {
  color: var(--white);
  font-size: 1.4375rem;
  letter-spacing: 0.04em;
}
.l-drawer-nav__ext .karino a .arrow {
  background: var(--white);
}
.l-drawer-nav__ext .karino a .arrow svg {
  fill: var(--black);
}
.l-drawer-nav__ext .karino a:hover {
  background: var(--black);
  opacity: 0.7;
}
.l-drawer-nav__ext .karino a:hover .arrow svg {
  fill: var(--black);
}

.l-drawer-nav__sub {
  margin-top: 2.5rem;
}
.l-drawer-nav__sub a {
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-nav__sub a:hover {
  color: var(--hover);
}
@media screen and (max-width: 428px) {
  .l-drawer-nav__sub {
    margin-top: 1.25rem;
  }
  .l-drawer-nav__sub a {
    font-size: 0.875rem;
  }
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.l-drawer-acc {
  position: relative;
}
.l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 23px;
  right: 15px;
}
@media screen and (max-width: 428px) {
  .l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
    top: 20px;
    width: 16px;
    right: 12px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.l-drawer-acc .l-drawer-acc__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-drawer-acc .l-drawer-acc__btn.close::before {
  -webkit-transform: rotate(0deg) translateX(5px);
          transform: rotate(0deg) translateX(5px);
  opacity: 0;
}
.l-drawer-acc .l-drawer-acc__btn.close::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-drawer-acc__cont {
  display: none;
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  background-color: var(--main);
}

.l-ft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem 0 8.75rem;
  gap: 11%;
}
@media screen and (max-width: 1280px) {
  .l-ft {
    gap: 0%;
  }
}
@media screen and (max-width: 960px) {
  .l-ft {
    padding: 3.75rem 0 7.5rem;
    gap: 50px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft {
    padding: 3.125rem 0 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
.l-ft-logo__wrap {
  max-width: 390px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .l-ft-logo__wrap {
    max-width: 320px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
  max-width: 390px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .l-ft-logo__wrap .l-ft-logo {
    max-width: 320px;
  }
}
@media screen and (max-width: 960px) {
  .l-ft-logo__wrap .l-ft-logo {
    max-width: 210px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-logo {
    max-width: 380px;
  }
}
.l-ft-logo__wrap .l-ft-logo img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-logo__wrap .l-ft-logo:hover img {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add {
  margin-top: 2.5rem;
  margin-left: 86px;
}
@media screen and (max-width: 1280px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-left: 70px;
  }
}
@media screen and (max-width: 960px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-left: 0;
  }
}
.l-ft-logo__wrap .l-ft-add p {
  color: var(--white);
  line-height: 1.8;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 960px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 1rem;
    text-align: center;
  }
}
.l-ft-logo__wrap .l-ft-btn--co {
  border: 1px solid var(--white);
  margin-top: 2.5rem;
  max-width: 210px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--co {
    max-width: 200px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--co {
    max-width: 280px;
  }
}
.l-ft-logo__wrap .l-ft-btn--co a {
  width: 100%;
  position: relative;
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 1.25rem center;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
  font-size: 0.9375rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--co a {
    padding-left: 1.84375rem;
    font-size: 14px;
    background-position: right 1.21875rem center;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--co a {
    padding: 0;
    text-align: center;
    line-height: 66px;
  }
}
.l-ft-logo__wrap .l-ft-btn--co a:hover {
  color: var(--main);
  background-color: var(--white);
  background-image: url(/recruit/resource/images/ico_win_main.svg);
}
.l-ft-logo__wrap .l-ft-btn--rec {
  max-width: 240px;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec {
    max-width: 200px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a {
  display: block;
  position: relative;
  background-image: -webkit-image-set(url(/recruit/resource/images/_banner_320x100.webp) type("image/webp"), url(/recruit/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-image: image-set(url(/recruit/resource/images/_banner_320x100.webp) type("image/webp"), url(/recruit/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.125rem 1.25rem;
  height: 76px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 63px;
    padding: 13.5px 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 88px;
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.25rem;
  top: 30px;
  background-image: url(/recruit/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 20px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 32px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .en,
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  display: block;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.l-ft-logo__wrap .l-ft-btn--rec a .en {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .en {
    font-size: 11px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  font-size: 1.125rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .ja {
    font-size: 1rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a:hover {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 1.875rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: 86px;
}
@media screen and (max-width: 1280px) {
  .l-ft-logo__wrap .l-ft-sns {
    margin-left: 70px;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-sns {
    margin-top: 1.875rem;
    margin-left: 0;
  }
}
.l-ft-logo__wrap .l-ft-sns li {
  width: 40px;
  aspect-ratio: 1;
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-sns li {
    width: 50px;
  }
}
.l-ft-logo__wrap .l-ft-sns li a:hover {
  opacity: 0.7;
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  max-width: 580px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__wrap {
    max-width: 477px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-nav__wrap {
    display: none;
  }
}

.l-ft-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 5rem 2.5rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 2.5rem 2.5rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-nav__list {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list ul.l-ft-nav__parent,
  .l-ft-nav__list .l-ft-nav__parent--last {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 1.25rem);
        -ms-flex: 0 0 calc(50% - 1.25rem);
            flex: 0 0 calc(50% - 1.25rem);
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu i,
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu i,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu i,
  .l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a,
  .l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu i,
  .l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a {
    font-size: 1.0625rem;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a:hover,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a:hover {
  opacity: 0.7;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu i,
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu a {
  font-size: 1.125rem;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
  line-height: 1.4;
  margin-top: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
    margin-top: 1.25rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a:hover {
  opacity: 0.7;
}
.l-ft-nav__list ul.l-ft-nav__child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  margin-left: 0.375rem;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list ul.l-ft-nav__child {
    margin-top: 0.75rem;
    gap: 8px;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
    font-size: 0.875rem;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 4px;
  background-color: var(--white);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-right: 0.25em;
  margin-bottom: 0.25em;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a:hover {
  opacity: 0.5;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 428px) {
  .l-ft-copy {
    padding-bottom: 1.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-ft-copy .l-ft-copy__corp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 428px) {
  .l-ft-copy .l-ft-copy__corp {
    display: none;
  }
}
.l-ft-copy .l-ft-copy__corp a {
  color: var(--white);
  font-size: 0.9375rem;
}
.l-ft-copy .l-ft-copy__corp a::after {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_window.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 14px;
  height: 12px;
  margin-left: 0.25em;
}
.l-ft-copy .l-ft-copy__corp a:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__corp .karino a {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.l-ft-copy .l-ft-copy__corp .karino a:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__co p {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
@media screen and (max-width: 834px) {
  .l-ft-copy .l-ft-copy__co p {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }
}
/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}
a#pagetop img {
  width: 120px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  a#pagetop img {
    width: 140px;
  }
}
@media screen and (max-width: 428px) {
  a#pagetop img {
    width: 110px;
  }
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl,
.l-page-ttl-interview {
  width: 100%;
  height: 460px;
  margin-top: -80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .l-page-ttl,
  .l-page-ttl-interview {
    height: 360px;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl,
  .l-page-ttl-interview {
    height: 280px;
    margin-top: -60px;
  }
}
.l-page-ttl img,
.l-page-ttl-interview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.l-page-ttl .l-page-ttl-inner,
.l-page-ttl-interview .l-page-ttl-inner {
  position: absolute;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px 60px 0 0;
}
.l-page-ttl .l-page-ttl-inner .wipe-bg,
.l-page-ttl-interview .l-page-ttl-inner .wipe-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: auto;
  right: 0;
  background-color: var(--white);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  will-change: transform;
  z-index: 1;
}
@media screen and (min-width: 1281px) {
  .l-page-ttl .l-page-ttl-inner .wipe-bg,
  .l-page-ttl-interview .l-page-ttl-inner .wipe-bg {
    left: calc((100vw - 1080px) / -2);
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner .wipe-bg,
  .l-page-ttl-interview .l-page-ttl-inner .wipe-bg {
    left: -20%;
    width: 120%;
  }
}
.l-page-ttl .l-page-ttl-inner .q-badge,
.l-page-ttl-interview .l-page-ttl-inner .q-badge {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: var(--main);
  color: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1875rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  outline: 1px solid var(--white);
  outline-offset: -5px;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .l-page-ttl .l-page-ttl-inner,
  .l-page-ttl-interview .l-page-ttl-inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 40px 0 0;
    bottom: -2px;
  }
  .l-page-ttl .l-page-ttl-inner .badge,
  .l-page-ttl-interview .l-page-ttl-inner .badge {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner,
  .l-page-ttl-interview .l-page-ttl-inner {
    padding: 15px 20px 0 0;
  }
  .l-page-ttl .l-page-ttl-inner .badge,
  .l-page-ttl-interview .l-page-ttl-inner .badge {
    width: 90px;
    height: 90px;
  }
}
.l-page-ttl .l-page-ttl-inner h2,
.l-page-ttl-interview .l-page-ttl-inner h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  z-index: 3;
  position: relative;
}
.l-page-ttl .l-page-ttl-inner h2 .jp,
.l-page-ttl-interview .l-page-ttl-inner h2 .jp {
  color: var(--black);
  text-align: left;
  font-size: clamp(2.125rem, 1.418rem + 2.637vi, 3rem);
  line-height: 1.15;
  font-size: 3.5625rem;
}
@media screen and (max-width: 960px) {
  .l-page-ttl .l-page-ttl-inner h2 .jp,
  .l-page-ttl-interview .l-page-ttl-inner h2 .jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner h2 .jp,
  .l-page-ttl-interview .l-page-ttl-inner h2 .jp {
    font-size: 2.25rem;
  }
}
.l-page-ttl .l-page-ttl-inner h2 .en,
.l-page-ttl-interview .l-page-ttl-inner h2 .en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--sub);
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 6px 10px 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .l-page-ttl .l-page-ttl-inner h2 .en,
  .l-page-ttl-interview .l-page-ttl-inner h2 .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner h2 .en,
  .l-page-ttl-interview .l-page-ttl-inner h2 .en {
    font-size: 0.875rem;
    padding: 5px 8px 4px;
  }
}

.l-page-ttl-interview {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.l-page-ttl-interview .l-page-ttl-inner {
  padding: 30px 60px 40px 0;
}
@media screen and (max-width: 428px) {
  .l-page-ttl-interview .l-page-ttl-inner {
    padding: 20px 10px 30px 0;
  }
}
.l-page-ttl-interview .l-page-ttl-inner h2 {
  line-height: 1;
}
.l-page-ttl-interview .l-page-ttl-inner h2 .jp {
  font-size: 2.375rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-page-ttl-interview .l-page-ttl-inner h2 .jp {
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl-interview .l-page-ttl-inner h2 .jp {
    font-size: 1.5rem;
  }
}
.l-page-ttl-interview .l-page-ttl-inner h2 .en {
  background-color: var(--main);
  font-size: 1.1875rem;
  line-height: 1.4;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 10px;
  padding: 4px 10px 5px;
}
@media screen and (max-width: 960px) {
  .l-page-ttl-interview .l-page-ttl-inner h2 .en {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl-interview .l-page-ttl-inner h2 .en {
    padding: 3px 8px 4px;
    margin-bottom: 5px;
    font-size: 1rem;
  }
}

_::-webkit-full-page-media, _:future, :root .l-page-ttl-interview {
  height: -webkit-fill-available; /* Safari対応 */
  height: 100vh;
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec-sm {
  padding: 1rem 0;
}

.l-sec-md {
  padding: 2.5rem 0;
}

.l-sec-lg {
  padding: 5rem 0;
}
@media screen and (max-width: 428px) {
  .l-sec-lg {
    padding: 5rem 0;
  }
}

.l-sec-xlg {
  padding: 6.25rem 0;
}
@media screen and (max-width: 960px) {
  .l-sec-xlg {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xlg {
    padding: 2.5rem 0;
  }
}

.l-sec-xxlg {
  padding: 7.5rem 0;
}
@media screen and (max-width: 960px) {
  .l-sec-xxlg {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xxlg {
    padding: 3.75rem 0;
  }
}

.l-sec-xxxlg {
  padding: 8.75rem 0;
}
@media screen and (max-width: 960px) {
  .l-sec-xxxlg {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xxxlg {
    padding: 3.75rem 0;
  }
}

.l-sec-lg-remove-top {
  padding: 0 0 5rem;
}
@media screen and (max-width: 834px) {
  .l-sec-lg-remove-top {
    padding: 0 0 2.5rem;
  }
}

.l-sec-xlg-remove-top {
  padding: 0 0 6.25rem;
}
@media screen and (max-width: 960px) {
  .l-sec-xlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xlg-remove-top {
    padding: 0 0 2.5rem;
  }
}

.l-sec-xxlg-remove-top {
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 960px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}

.l-sec-xxlg-remove-top {
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 834px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}

.l-sec-xxxlg-remove-top {
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 960px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 6.25rem;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container--sm,
.l-container--lg {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 960px) {
  .l-container,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 428px) {
  .l-container,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

.l-container--sm {
  max-width: 820px;
}

.l-container {
  max-width: 1080px;
}

.l-container--lg {
  max-width: 1200px;
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox 基本
----------------------------------------------------------------- */
.c-flex,
.c-flex--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-1,
.c-flex--center .c-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-flex .c-flex-4clm,
.c-flex .c-flex-3clm,
.c-flex .c-flex-2clm,
.c-flex--center .c-flex-4clm,
.c-flex--center .c-flex-3clm,
.c-flex--center .c-flex-2clm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 428px) {
  .c-flex,
  .c-flex--center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-flex .c-flex-4clm,
  .c-flex .c-flex-3clm,
  .c-flex .c-flex-2clm,
  .c-flex--center .c-flex-4clm,
  .c-flex--center .c-flex-3clm,
  .c-flex--center .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 428px) {
  .c-flex--center {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-flex--start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-flex-allcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--sm,
.c-flex--30,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .c-flex--sm,
  .c-flex--30,
  .c-flex--md,
  .c-flex--lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-flex--sm {
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 428px) {
  .c-flex--sm {
    gap: 5rem 1.25rem;
  }
}
.c-flex--sm .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 0.625rem);
      -ms-flex: 0 0 calc(50% - 0.625rem);
          flex: 0 0 calc(50% - 0.625rem);
  min-width: 0;
}
.c-flex--sm .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(33.3333333333% - 0.625rem);
      -ms-flex: 0 0 calc(33.3333333333% - 0.625rem);
          flex: 0 0 calc(33.3333333333% - 0.625rem);
  min-width: 0;
}
.c-flex--sm .c-flex-4clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(25% - 0.625rem);
      -ms-flex: 0 0 calc(25% - 0.625rem);
          flex: 0 0 calc(25% - 0.625rem);
  min-width: 0;
}
@media screen and (max-width: 428px) {
  .c-flex--sm .c-flex-4clm,
  .c-flex--sm .c-flex-3clm,
  .c-flex--sm .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--30 {
  gap: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-flex--30 {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-flex--30 {
    gap: 3.125rem 1.875rem;
  }
}
.c-flex--30 .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 0.9375rem);
      -ms-flex: 0 0 calc(50% - 0.9375rem);
          flex: 0 0 calc(50% - 0.9375rem);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 0.9375rem);
        -ms-flex: 0 0 calc(50% - 0.9375rem);
            flex: 0 0 calc(50% - 0.9375rem);
    min-width: 0;
  }
}
.c-flex--30 .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 1.875rem);
      -ms-flex: 0 0 calc(50% - 1.875rem);
          flex: 0 0 calc(50% - 1.875rem);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 .c-flex-3clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(33.3333333333% - 1.25rem);
        -ms-flex: 0 0 calc(33.3333333333% - 1.25rem);
            flex: 0 0 calc(33.3333333333% - 1.25rem);
    min-width: 0;
  }
}
@media screen and (max-width: 428px) {
  .c-flex--30 .c-flex-3clm,
  .c-flex--30 .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--md {
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 428px) {
  .c-flex--md {
    gap: 1.875rem;
  }
}
.c-flex--md .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 1.25rem);
      -ms-flex: 0 0 calc(50% - 1.25rem);
          flex: 0 0 calc(50% - 1.25rem);
  min-width: 0;
}
.c-flex--md .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(33.3333333333% - 1.25rem);
      -ms-flex: 0 0 calc(33.3333333333% - 1.25rem);
          flex: 0 0 calc(33.3333333333% - 1.25rem);
  min-width: 0;
}
@media screen and (max-width: 428px) {
  .c-flex--md .c-flex-3clm,
  .c-flex--md .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--lg {
  gap: 2.5rem 3.75rem;
}
.c-flex--lg .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 3.75rem);
      -ms-flex: 0 0 calc(50% - 3.75rem);
          flex: 0 0 calc(50% - 3.75rem);
  min-width: 0;
}
.c-flex--lg .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(33.3333333333% - 3.75rem);
      -ms-flex: 0 0 calc(33.3333333333% - 3.75rem);
          flex: 0 0 calc(33.3333333333% - 3.75rem);
  min-width: 0;
}
@media screen and (max-width: 428px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    width: 100%;
  }
}

/*-==========================================================================
グリッドレイアウト
==========================================================================*/
/* グリッド
----------------------------------------------------------------- */
.c-grid--layout,
.c-grid--xsm,
.c-grid--sm,
.c-grid--sm2,
.c-grid--md,
.c-grid--lg,
.c-grid {
  display: grid;
}

.c-grid--xsm {
  gap: 10px;
}

.c-grid--sm {
  gap: 1.875rem 1.875rem;
}
@media screen and (max-width: 428px) {
  .c-grid--sm {
    gap: 1.875rem;
  }
}

.c-grid--sm2 {
  gap: 1.875rem 1.875rem;
}
@media screen and (max-width: 428px) {
  .c-grid--sm2 {
    gap: 1.875rem;
  }
}

.c-grid--md {
  gap: 6.25rem 2.5rem;
}
@media screen and (max-width: 960px) {
  .c-grid--md {
    gap: 1.25rem 1.25rem;
  }
}

.c-grid--lg {
  gap: 5rem 5rem;
}
@media screen and (max-width: 834px) {
  .c-grid--lg {
    gap: 2.5rem 1.25rem;
  }
}

.c-grid {
  gap: 0;
}

.c-grid-2clm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 428px) {
  .c-grid-2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 428px) {
  .c-grid-3clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm--tb2clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 428px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 428px) {
  .c-grid-4clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm--tb2clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 428px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 800;
  margin-left: -1.3125rem;
  font-family: "Roboto", sans-serif;
}

.c-list-num-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.c-list-num-divider li {
  position: relative;
  padding: 1.875rem 1.25rem;
  padding-left: 4.75rem;
}
.c-list-num-divider li span {
  margin-top: 6px;
}
.c-list-num-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  left: 1.25rem;
  display: inline-block;
  color: var(--main);
  font-family: "Roboto", sans-serif;
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.4;
  width: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  color: var(--sub);
  font-weight: 700;
}

.c-list-dot2 {
  padding-left: 10px;
}
.c-list-dot2 li {
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 500;
}
.c-list-dot2 li:before {
  content: "";
  vertical-align: middle;
  background-color: var(--black);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  display: inline-block;
  margin-right: 8.5px;
}

.c-list-check li,
.c-list-check--smoke li {
  font-size: 1.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 1.5em;
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  position: relative;
}
.c-list-check li:before,
.c-list-check--smoke li:before {
  position: absolute;
  left: 0;
  top: 0.8em;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(/recruit/resource/images/ico_check_white.svg);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 23px;
  height: 22px;
}
@media screen and (max-width: 960px) {
  .c-list-check li,
  .c-list-check--smoke li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 428px) {
  .c-list-check li,
  .c-list-check--smoke li {
    font-size: 1rem;
  }
  .c-list-check li::before,
  .c-list-check--smoke li::before {
    top: 0.75em;
    width: 20px;
    height: 17px;
  }
}

.c-list-check--smoke li:before {
  background-image: url(/recruit/resource/images/ico_check_whitesmoke.svg);
}

/* ==========================================================================
テーブル
=========================================================================*/
/* 下線だけのシンプルな表 
----------------------------------------------------------------- */
.c-tb1 tr,
.c-tb1--white tr {
  border-bottom: 1px solid var(--whitesmoke);
}
.c-tb1 tr:first-child,
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--whitesmoke);
}
.c-tb1 tr th,
.c-tb1 tr td,
.c-tb1--white tr th,
.c-tb1--white tr td {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 428px) {
  .c-tb1 tr th,
  .c-tb1 tr td,
  .c-tb1--white tr th,
  .c-tb1--white tr td {
    display: block;
  }
}
.c-tb1 tr th,
.c-tb1--white tr th {
  font-weight: 700;
  line-height: 1.8;
  vertical-align: middle;
  width: 20%;
  padding: 1.875rem 0 1.875rem 1.875rem;
  background: var(--whitesmoke);
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 960px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 0.75rem 0.9375rem;
    width: 100%;
  }
}
.c-tb1 tr td,
.c-tb1--white tr td {
  padding: 1.875rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 0.625rem 0 1.875rem 0;
    width: 100%;
  }
}

.c-tb1--white tr {
  border-bottom: 1px solid var(--white);
}
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--white);
}
.c-tb1--white tr th {
  background: var(--white);
  border-bottom: 1px solid var(--whitesmoke);
}

/* 交互のシマシマtable 
----------------------------------------------------------------- */
.c-tb2 tr:nth-child(odd) {
  background-color: var(--white);
}
.c-tb2 tr:nth-child(even) {
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .c-tb2 tr th,
  .c-tb2 tr td {
    display: block;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.c-tb2 tr th {
  font-weight: 700;
  line-height: 1.8;
  vertical-align: top;
  width: 20%;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 960px) {
  .c-tb2 tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-tb2 tr th {
    padding: 1.25rem 1.25rem 0 1.25rem;
    width: 100%;
  }
}
.c-tb2 tr td {
  padding: 1.875rem 1.875rem 1.875rem 0;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .c-tb2 tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .c-tb2 tr td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* thがベタtdが下線のtable
----------------------------------------------------------------- */
.c-tb3 tr:last-child th,
.c-tb3 tr:last-child td {
  border: none;
}
@media screen and (max-width: 428px) {
  .c-tb3 th,
  .c-tb3 td {
    display: block;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.c-tb3 th {
  border-bottom: 1px solid var(--white);
  background-color: var(--whitesmoke);
  font-weight: 700;
  vertical-align: top;
  width: 22%;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 960px) {
  .c-tb3 th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-tb3 th {
    padding: 1.25rem;
    width: 100%;
  }
}
.c-tb3 td {
  border-bottom: 1px solid var(--whitesmoke);
  background-color: var(--white);
  padding: 1.875rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .c-tb3 td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .c-tb3 td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* 複雑な表
----------------------------------------------------------------- */
.c-tb4 {
  overflow: auto;
}
@media screen and (max-width: 428px) {
  .c-tb4 {
    max-height: 445px;
  }
}
.c-tb4::-webkit-scrollbar {
  width: 8px;
  background: var(--whitesmoke);
}
.c-tb4::-webkit-scrollbar:horizontal {
  height: 8px;
  background: var(--whitesmoke);
}
.c-tb4::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 4px;
}
.c-tb4::-webkit-scrollbar-thumb:horizontal {
  background: var(--main);
  border-radius: 4px;
}
.c-tb4 table {
  width: 100%;
  min-width: 720px;
}
.c-tb4 table th,
.c-tb4 table td {
  border: solid 1px var(--border);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb4 table th {
  color: var(--main);
  border: solid 1px var(--white);
  background-color: rgba(var(--main-rgb), 0.1);
}
.c-tb4 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  border: solid 1px var(--border);
  background-color: var(--white);
}
.c-tb4 table .first {
  background-color: rgba(var(--black-rgb), 0.1);
  font-weight: 700;
  border: solid 1px var(--white);
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.c-modal__bg {
  background: rgba(var(--black-rgb), 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal__cont {
  color: var(--white);
  background: rgba(var(--white-rgb), 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  max-width: 860px;
}
@media screen and (max-width: 1280px) {
  .c-modal__cont {
    width: 90%;
  }
}

.c-modal__cont__inner {
  position: relative;
}
.c-modal__cont__inner .c-modal-close__btn {
  width: 28px;
  height: 28px;
  position: absolute;
  top: -3rem;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 428px) {
  .c-modal__cont__inner .c-modal-close__btn {
    width: 24px;
    height: 24px;
  }
}
.c-modal__cont__inner .c-modal__txt {
  margin-top: 10px;
}
@media screen and (max-width: 428px) {
  .c-modal__cont__inner .c-modal__txt {
    font-size: 14px;
  }
}

.c-modal__open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__open:before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_plus_main.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__open img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modal__open:hover {
  opacity: 0.7;
}
.c-modal__open:hover:before {
  background-image: url(/recruit/resource/images/ico_plus_white.svg);
  background-color: var(--main);
}

/* ==========================================================================
ナビ
=========================================================================*/
/* ------------------------------
   PC：アンカー左固定（sticky）
------------------------------ */
.c-page-nav-block .l-container {
  padding-left: 240px;
}
@media screen and (max-width: 960px) {
  .c-page-nav-block .l-container {
    padding-left: 4.6341463415%;
  }
}
@media screen and (max-width: 428px) {
  .c-page-nav-block .l-container {
    padding-left: 4.8%;
  }
}

.c-page-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  padding: 40px 20px 0 40px;
  width: 100%;
  max-width: 1466px;
  margin: auto;
  height: 0;
  z-index: 5;
}
.c-page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 210px;
}
.c-page-nav ul li {
  margin-bottom: 10px;
  position: relative;
}
.c-page-nav ul li a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--silver);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 600;
}
.c-page-nav ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  background-color: var(--silver);
  -webkit-clip-path: polygon(100% 50%, 0px 0px, 0px 100%);
          clip-path: polygon(100% 50%, 0px 0px, 0px 100%);
  margin-right: 0em;
  margin-bottom: 0em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-page-nav ul li a.active {
  color: var(--black);
}
.c-page-nav ul li a.active::before {
  background-color: var(--sub);
}
.c-page-nav ul li a:hover {
  color: var(--sub);
}
.c-page-nav ul li a:hover::before {
  background-color: var(--sub);
}

/* ------------------------------
   LP以下：横並びで固定
   SP以下：縦並びで固定
------------------------------ */
@media screen and (max-width: 960px) {
  .c-page-nav {
    position: relative !important;
    top: 0 !important;
    left: 0;
    width: 95%;
    height: auto;
    max-width: inherit;
    margin: 0 0 100px 0;
    background: var(--whitesmoke);
    padding: 40px 38px;
    z-index: 999;
  }
  .c-page-nav ul {
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 30px 30px;
  }
  .c-page-nav ul li {
    margin: 0;
  }
  .c-page-nav ul li a {
    color: var(--black);
    font-size: 1.1875rem;
  }
  .c-page-nav ul li a::before {
    background-color: var(--sub);
  }
}
@media screen and (max-width: 428px) {
  .c-page-nav {
    margin: 0 0 60px 0;
    padding: 20px 6%;
  }
  .c-page-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 30px;
  }
  .c-page-nav ul li a {
    font-size: 1.125rem;
  }
  .c-page-nav ul li a::before {
    width: 8px;
    height: 6px;
    margin-top: 1px;
  }
}
/* ------------------------------
// ページナビ
.c-page-nav {
	margin-top: rem(60);

	.c-page-nav__wrap {
		display: flex;
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
		gap: 1rem rem(20);

		.c-page-nav__menu {
			max-width: 255px;
			width: 100%;
			text-align: center;

			@include less_than_tb {
				max-width: initial;
				width: calc((100% - 40px) / 3);
			}

			@include less_than_sp {
				max-width: initial;
				width: 98%;
			}

			a {
				background-color: var(--white);
				display: block;
				color: var(--main);
				line-height: 56px;
				font-weight: 700;
				position: relative;

				&:after {
					content: "";
					width: 8px;
					height: 13px;
					background-image: url(/recruit/resource/images/ico_arrow_main.svg);
					background-size: contain;
					background-position: center;
					background-repeat: no-repeat;
					position: absolute;
					top: 50%;
					transform: translateY(-50%) rotate(90deg);
					right: 14.5px;
					margin: auto;
					transition: .3s;
				}

				&:hover {
					color: var(--white);
					background-color: var(--hover);

					&:after {
						background-image: url(/recruit/resource/images/ico_arrow_white.svg);
					}
				}
			}
		}
	}
}

------------------------------ */
.c-page-nav-tag__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 834px) {
  .c-page-nav-tag__wrap {
    gap: 10px 10px;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu {
  display: inline-block;
  max-width: 255px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu {
    max-width: initial;
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 428px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu {
    max-width: initial;
    width: 98%;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu a {
  display: block;
  color: var(--white);
  background-color: var(--main);
  font-weight: 700;
  line-height: 58px;
  padding: 0 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 428px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu a {
    line-height: 3rem;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu a:hover {
  background-color: var(--hover);
}

.c-nav-relate__wrap {
  padding: 7.5rem 0;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .c-nav-relate__wrap {
    padding: 5rem 0;
  }
}

.c-nav-relate__wrap__tmb {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
  position: absolute;
  left: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 8.547008547%;
  }
}
@media screen and (max-width: 428px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 20px;
  }
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl span {
  color: var(--white);
  font-weight: 700;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .en {
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 428px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.4375rem;
  }
}
.c-nav-relate__wrap__tmb .btn {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100px;
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-size: 8px auto;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  position: absolute;
  right: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 25px;
    height: 25px;
    right: 8.547008547%;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 428px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}
.c-nav-relate__wrap__tmb:hover {
  opacity: 0.7;
}
.c-nav-relate__wrap__tmb:hover .btn {
  background-color: var(--main);
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb {
  font-size: 13px;
  line-height: 40px;
}
@media screen and (max-width: 428px) {
  .c-breadcrumb {
    line-height: 36px;
  }
}
.c-breadcrumb .c-breadcrumb__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 428px) {
  .c-breadcrumb .c-breadcrumb__wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list {
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a {
  text-decoration: underline;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a:hover {
  color: var(--main);
  text-decoration: none;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:nth-child(n+2) {
  padding-left: 25px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:nth-child(n+2):before {
  content: "";
  width: 5px;
  height: 8px;
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: 10px;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.c-form-nav,
.c-form-nav--white {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form-nav::before,
.c-form-nav--white::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: var(--whitesmoke);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form-nav li,
.c-form-nav--white li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: var(--whitesmoke);
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
}
@media screen and (max-width: 428px) {
  .c-form-nav li,
  .c-form-nav--white li {
    height: 80px;
    width: 80px;
  }
}
.c-form-nav li.c-form-nav__active,
.c-form-nav--white li.c-form-nav__active {
  background-color: var(--main);
}
.c-form-nav li.c-form-nav__active span,
.c-form-nav--white li.c-form-nav__active span {
  color: var(--white);
}
.c-form-nav li span,
.c-form-nav--white li span {
  display: block;
  color: var(--white);
  font-size: 1.1875rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 428px) {
  .c-form-nav li span,
  .c-form-nav--white li span {
    font-size: 1.125rem;
  }
}
.c-form-nav li .num,
.c-form-nav--white li .num {
  font-family: "Roboto", sans-serif;
}

.c-form-nav--white::before {
  background-color: var(--white);
}
.c-form-nav--white li {
  background-color: var(--white);
}
.c-form-nav--white li span {
  color: var(--whitesmoke);
}

/* 入力フォーム
----------------------------------------------------------------- */
.c-form-wrap {
  margin-top: 2.5rem;
}
.c-form-wrap table {
  font-size: 1rem;
  background-color: var(--whitesmoke);
}
.c-form-wrap table tr {
  border-bottom: 1px solid var(--white);
}
.c-form-wrap table tr:first-child {
  border-top: 1px solid var(--white);
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding: 1.875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 428px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 24%;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table tr th {
    width: 30%;
    padding-right: 0;
  }
}
@media screen and (max-width: 428px) {
  .c-form-wrap table tr th {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .c-form-wrap table tr td {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 428px) {
  .c-form-required {
    text-align: center;
  }
}
.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: var(--main);
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 24px;
  width: 48px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 960px) {
  .c-form-required::after {
    margin-left: 10px;
  }
}

/* 入力欄
----------------------------------------------------------------- */
.c-form-radio,
.c-form-checkbox,
.c-form-checkbox--white {
  display: inline-block;
  margin: -4px 8px 0 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled),
.c-form-checkbox--white:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 6px solid var(--main);
}

.c-form-checkbox,
.c-form-checkbox--white {
  position: relative;
  background-color: var(--whitesmoke);
}
.c-form-checkbox:checked:before,
.c-form-checkbox--white:checked:before {
  content: "";
  background-image: url(/recruit/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .c-form-checkbox:checked:before,
  .c-form-checkbox--white:checked:before {
    top: -5px;
  }
}

.c-form-checkbox--white {
  background-color: var(--white);
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid var(--white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 760px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

.c-form-select,
.c-form-input {
  height: 40px;
}

.c-form-select__wrap {
  position: relative;
}
.c-form-select__wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select__wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px var(--main);
  border-bottom: solid 1px var(--main);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-radio__wrap,
.c-form-radio__wrap--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-form-radio__wrap--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0px 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form-input-file {
  cursor: pointer;
  display: block;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .c-form-input-file {
    font-size: 14px;
  }
}

.c-form-input-file::-webkit-file-upload-button {
  background: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}

.c-form-input-file::file-selector-button {
  background: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}
@media screen and (max-width: 428px) {
  .c-form-input-file::-webkit-file-upload-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  .c-form-input-file::file-selector-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.c-form-cap {
  line-height: 1.8;
  font-size: 13px;
  color: rgba(var(--black-rgb), 0.6);
}

/* 個⼈情報の取扱いについて
----------------------------------------------------------------- */
.c-form-privacy {
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 428px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy__panel {
  font-size: 14px;
  height: 180px;
  margin-top: 1.875rem;
  padding: 1.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}

.c-form-checkfocus {
  cursor: pointer;
}

.c-form-notsale__attention {
  vertical-align: middle;
}
.c-form-notsale__attention img {
  margin-right: 10px;
  margin-top: -4px;
}
.c-form-notsale__attention p {
  color: var(--main);
  display: inline-block;
  font-weight: 700;
}

.c-form-notsale__wrap {
  padding: 2.5rem;
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  background-color: var(--white);
  padding: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 428px) {
  .c-form-notsale__wrap .c-form-notsale__cheackbox {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
.c-form-notsale__wrap .c-form-notsale__cheackbox .c-form-checkbox {
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .c-form-notsale__wrap .c-form-required:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: 20px;
  }
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main {
  max-width: 195px;
}
.c-btn-main a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-btn-main a .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding-right: calc(1.5em + 20px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-btn-main a .text {
    padding-right: calc(1.5em + 5px);
  }
}
.c-btn-main a .text::before, .c-btn-main a .text::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s;
  transition: background 0.4s ease, -webkit-transform 0.4s;
  transition: transform 0.4s, background 0.4s ease;
  transition: transform 0.4s, background 0.4s ease, -webkit-transform 0.4s;
}
.c-btn-main a .text::before {
  background: var(--whitesmoke);
  right: -20px;
  z-index: 5;
}
.c-btn-main a .text::after {
  background: var(--whitesmoke);
  right: 0;
  z-index: 6;
}
.c-btn-main a .circle {
  width: 70px;
  height: 70px;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-btn-main a .circle svg {
  width: 10px;
  height: 15px;
  fill: var(--white);
}
@media screen and (max-width: 960px) {
  .c-btn-main a .circle {
    width: 60px;
    height: 60px;
  }
}
.c-btn-main a:hover {
  color: var(--main);
}
.c-btn-main a:hover::before {
  background: var(--main);
  mix-blend-mode: exclusion;
}
.c-btn-main a:hover .text {
  color: var(--main);
}
.c-btn-main a:hover .text::before, .c-btn-main a:hover .text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.c-btn-main a:hover .text::before {
  background: var(--white);
}
.c-btn-main a:hover .text::after {
  background: var(--main);
  width: 25px;
  right: -5px;
}
.c-btn-main a:hover .circle {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

_::-webkit-full-page-media, _:future, :root .c-btn-main a .text {
  white-space: nowrap;
}

/* サブボタン
----------------------------------------------------------------- */
.c-btn-sub,
.c-btn-sub--white {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-btn-sub a,
.c-btn-sub--white a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  height: 110px;
  text-decoration: none;
  background-color: var(--main);
  padding: 0 20px 0 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .c-btn-sub a,
  .c-btn-sub--white a {
    height: 100px;
  }
}
@media screen and (max-width: 428px) {
  .c-btn-sub a,
  .c-btn-sub--white a {
    height: 90px;
  }
}
.c-btn-sub a .text,
.c-btn-sub--white a .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1rem, 0.849rem + 0.565vi, 1.188rem);
  padding-right: calc(1.5em + 20px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.c-btn-sub a .text::before, .c-btn-sub a .text::after,
.c-btn-sub--white a .text::before,
.c-btn-sub--white a .text::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-btn-sub a .text::before,
.c-btn-sub--white a .text::before {
  background: var(--whitesmoke);
  right: -20px;
  z-index: 5;
}
.c-btn-sub a .text::after,
.c-btn-sub--white a .text::after {
  background: var(--whitesmoke);
  right: 0;
  z-index: 6;
}
@media screen and (max-width: 428px) {
  .c-btn-sub a .text::before, .c-btn-sub a .text::after,
  .c-btn-sub--white a .text::before,
  .c-btn-sub--white a .text::after {
    width: 15px;
  }
  .c-btn-sub a .text::before,
  .c-btn-sub--white a .text::before {
    right: -15px;
  }
}
.c-btn-sub a .circle,
.c-btn-sub--white a .circle {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-btn-sub a .circle .arrow,
.c-btn-sub--white a .circle .arrow {
  margin-top: -5px;
}
.c-btn-sub a .circle .arrow svg,
.c-btn-sub--white a .circle .arrow svg {
  width: auto;
  height: 13px;
  fill: var(--main);
}
@media screen and (max-width: 428px) {
  .c-btn-sub a .circle,
  .c-btn-sub--white a .circle {
    width: 50px;
    height: 50px;
  }
}
.c-btn-sub a:hover,
.c-btn-sub--white a:hover {
  background-color: var(--sub);
}
.c-btn-sub a:hover .text,
.c-btn-sub--white a:hover .text {
  color: var(--white);
}
.c-btn-sub a:hover .text::before, .c-btn-sub a:hover .text::after,
.c-btn-sub--white a:hover .text::before,
.c-btn-sub--white a:hover .text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.c-btn-sub a:hover .text::before,
.c-btn-sub--white a:hover .text::before {
  background: var(--sub);
}
.c-btn-sub a:hover .text::after,
.c-btn-sub--white a:hover .text::after {
  background: var(--white);
  width: 25px;
  right: -5px;
}
@media screen and (max-width: 428px) {
  .c-btn-sub a:hover .text::after,
  .c-btn-sub--white a:hover .text::after {
    width: 20px;
  }
}
.c-btn-sub a:hover .circle,
.c-btn-sub--white a:hover .circle {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background: var(--white);
}
.c-btn-sub a:hover .circle svg,
.c-btn-sub--white a:hover .circle svg {
  fill: var(--sub);
}

.c-btn-sub--white {
  max-width: 335px;
}
.c-btn-sub--white a {
  background-color: var(--white);
}
.c-btn-sub--white a .text {
  color: var(--main);
  font-size: clamp(1.25rem, 1.099rem + 0.565vi, 1.438rem);
  text-align: center;
}
.c-btn-sub--white a .circle {
  background: var(--main);
}
.c-btn-sub--white a .circle .arrow svg {
  fill: var(--white);
}
.c-btn-sub--white a:hover .circle svg {
  fill: var(--sub);
}

/* コンタクトボタン
----------------------------------------------------------------- */
.p-idx-contact__box {
  width: 100%;
}
.p-idx-contact__box a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  height: 150px;
  text-decoration: none;
  background-color: var(--whitesmoke);
  padding: 0 20px 0 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .p-idx-contact__box a {
    height: 120px;
    padding: 0 15px 0 24px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__box a {
    height: 90px;
    padding: 0 15px 0 15px;
  }
}
.p-idx-contact__box a .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1rem, 0.394rem + 2.26vi, 1.75rem);
  padding-right: calc(1.5em + 20px);
  color: var(--black);
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-idx-contact__box a .text {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 960px) {
  .p-idx-contact__box a .text {
    padding-right: calc(1em + 5px);
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__box a .text {
    font-size: 1.1875rem;
  }
}
.p-idx-contact__box a .text::before, .p-idx-contact__box a .text::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-idx-contact__box a .text::before {
  background: var(--white);
  right: -20px;
  z-index: 5;
}
.p-idx-contact__box a .text::after {
  background: var(--white);
  right: 0;
  z-index: 6;
}
@media screen and (max-width: 960px) {
  .p-idx-contact__box a .text::before, .p-idx-contact__box a .text::after {
    width: 20px;
  }
  .p-idx-contact__box a .text::before {
    right: -15px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__box a .text::before, .p-idx-contact__box a .text::after {
    width: 15px;
  }
  .p-idx-contact__box a .text::before {
    right: -15px;
  }
}
.p-idx-contact__box a .circle {
  width: 70px;
  height: 70px;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-idx-contact__box a .circle svg {
  width: 10px;
  height: 15px;
  fill: var(--white);
}
@media screen and (max-width: 960px) {
  .p-idx-contact__box a .circle {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__box a .circle {
    width: 50px;
    height: 50px;
  }
  .p-idx-contact__box a .circle svg {
    width: 8px;
    height: 12px;
  }
}
.p-idx-contact__box a:hover {
  background-color: var(--main);
}
.p-idx-contact__box a:hover .text {
  color: var(--white);
}
.p-idx-contact__box a:hover .text::before, .p-idx-contact__box a:hover .text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.p-idx-contact__box a:hover .text::before {
  background: var(--main);
}
.p-idx-contact__box a:hover .text::after {
  width: 45px;
  right: -5px;
}
.p-idx-contact__box a:hover .circle {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background: var(--white);
}
.p-idx-contact__box a:hover .circle svg {
  fill: var(--main);
}

/* サブボタン ⚠️使用しない場合は削除 or コメントアウト
//下線のあるボタン
.c-btn-sub {

	a,
	.c-btn-sub__inner,
	button {
		display: flex;
		align-items: center;
		width: fit-content;
		gap: 10px;
		transition: .3s;

		@include less_than_sp {
			gap: 5px;
		}

		.txt {
			position: relative;
			display: inline-block;
			line-height: 1.4;
			font-weight: 700;

		}

		.btn {
			display: inline-block;
			background-color: var(--main);
			border-radius: 100%;
			background-image: url(/recruit/resource/images/ico_arrow_white.svg);
			background-position: center;
			background-size: 6px auto;
			background-repeat: no-repeat;
			width: 30px;
			height: 30px;
			transition: .3s;

			@include less_than_sp {
				width: 25px;
				height: 25px;
			}
		}

		&:hover {
			color: var(--hover);

			.txt {
				&::before {
					content: none;
				}
			}

			.btn {
				background-color: var(--hover);
			}
		}
	}
}

----------------------------------------------------------------- */
/* カード型の横長ボタン 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-card,
.c-btn-card--white {
  background-color: var(--whitesmoke);
  padding: 1.875rem 5.625rem 1.875rem 3.75rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 960px) {
  .c-btn-card,
  .c-btn-card--white {
    padding: 2.5rem 3.75rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .c-btn-card,
  .c-btn-card--white {
    padding: 1.875rem;
  }
}
.c-btn-card::before,
.c-btn-card--white::before {
  content: "";
  display: block;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  background-image: url("/recruit/resource/images/ico_arrow_white.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-btn-card::before,
  .c-btn-card--white::before {
    width: 40px;
    height: 40px;
    background-size: 8px auto;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--white .c-btn-card__ttl {
  margin-bottom: 8px;
  color: var(--main);
}
.c-btn-card .c-btn-card__cont,
.c-btn-card--white .c-btn-card__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-collapse: separate;
  border-spacing: 5px;
}
.c-btn-card .c-btn-card__cont th,
.c-btn-card--white .c-btn-card__cont th {
  font-weight: 700;
  width: 80px;
}
.c-btn-card .c-btn-card__cont th,
.c-btn-card .c-btn-card__cont td,
.c-btn-card--white .c-btn-card__cont th,
.c-btn-card--white .c-btn-card__cont td {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card:hover,
.c-btn-card--white:hover {
  opacity: 0.7;
}
.c-btn-card:hover::before,
.c-btn-card--white:hover::before {
  background-color: var(--hover);
}
.c-btn-card:hover .c-btn-card__cont th,
.c-btn-card:hover .c-btn-card__cont td,
.c-btn-card--white:hover .c-btn-card__cont th,
.c-btn-card--white:hover .c-btn-card__cont td {
  color: var(--main);
}

.c-btn-card--white {
  background-color: var(--white);
}

/* PDF、Excel、Wordボタン（情報公開） 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-pdf a,
.c-btn-excel a,
.c-btn-word a {
  display: block;
  padding: 20px;
  background-color: var(--whitesmoke);
  text-align: left;
  position: relative;
}
.c-btn-pdf a::before,
.c-btn-excel a::before,
.c-btn-word a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 23px;
  vertical-align: top;
  background-image: url(/recruit/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 11px;
  margin-top: 4px;
}
.c-btn-pdf a::after,
.c-btn-excel a::after,
.c-btn-word a::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/recruit/resource/images/ico_win2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-pdf a span,
.c-btn-excel a span,
.c-btn-word a span {
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.c-btn-pdf a:hover,
.c-btn-excel a:hover,
.c-btn-word a:hover {
  opacity: 0.7;
}
.c-btn-pdf a:hover::after,
.c-btn-excel a:hover::after,
.c-btn-word a:hover::after {
  background-image: url(/recruit/resource/images/ico_win2_main.svg);
}
.c-btn-pdf a:hover span,
.c-btn-excel a:hover span,
.c-btn-word a:hover span {
  color: var(--main);
}

.c-btn-excel a::before {
  background-image: url(/recruit/resource/images/ico_excel.svg);
}

.c-btn-word a::before {
  background-image: url(/recruit/resource/images/ico_word.svg);
}

/* ==========================================================================
カード
=========================================================================*/
/* 余白だけのシンプルなカード
----------------------------------------------------------------- */
.c-card-basic {
  padding: 1.875rem;
}
@media screen and (max-width: 428px) {
  .c-card-basic {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--sm {
  padding: 1.875rem;
}
@media screen and (max-width: 428px) {
  .c-card--sm {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--md {
  padding: 2.5rem;
}
@media screen and (max-width: 428px) {
  .c-card--md {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--lg {
  padding: 5rem;
}
@media screen and (max-width: 834px) {
  .c-card--lg {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .c-card--lg {
    padding: 1.875rem 1.25rem;
  }
}

/* 画像とその下にタイトルとテキストのあるカード ※ボタンつき
----------------------------------------------------------------- */
.c-card-img {
  position: relative;
}
.c-card-img .c-card-img__head img {
  max-width: 100%;
  height: auto;
}
.c-card-img .c-card-img__cont {
  padding: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-card-img .c-card-img__cont {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-img .c-card-img__cont .c-card-img__ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.c-card-img .c-card-img__cont .c-card-img__txt {
  margin-top: 10px;
}
.c-card-img:hover {
  opacity: 0.7;
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner {
  color: var(--hover);
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner .txt::before {
  content: none;
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner .btn {
  background-color: var(--hover);
}

/* 数字つき　タイトルとテキストのカード
----------------------------------------------------------------- */
.c-card-num {
  padding: 1.875rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-card-num {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-num .c-card-num__num {
  color: var(--main);
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.c-card-num .c-card-num__num span {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-card-num .c-card-num__ttl {
  margin-top: 10px;
  text-align: center;
  font-size: 1.75rem;
}
.c-card-num .c-card-num__txt {
  margin-top: 1.875rem;
  text-align: center;
}

/* サムネイル画像とタイトルのリンクのついたカード
----------------------------------------------------------------- */
.c-card-tmb-link {
  padding: 0;
  position: relative;
}
.c-card-tmb-link .c-card-tmb-link__img {
  overflow: hidden;
  height: 206px;
}
.c-card-tmb-link .c-card-tmb-link__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-card-tmb-link .c-card-tmb-link__body {
  margin-top: 1.25rem;
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--main);
  padding: 4px 8px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
    font-size: 14px;
    padding: 3px 6px;
  }
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .name {
  font-weight: 500;
  line-height: 1.4;
  color: var(--main);
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__ttl {
  margin-top: 10px;
}
.c-card-tmb-link:hover {
  opacity: 0.7;
}

/* サムネイル画像とタイトルのほか、カテゴリもあるリンクのついたカード
----------------------------------------------------------------- */
.c-card-tmb-cat {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__head img {
  max-width: 100%;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__cont {
  padding: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__cat {
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--main);
  padding: 4px 8px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__cat {
    padding: 3px 6px;
    font-size: 14px;
  }
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__ttl {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__txt {
  margin-top: 5px;
}
.c-card-tmb-cat:hover {
  opacity: 0.7;
}

/* データカード（数字付きカード）
----------------------------------------------------------------- */
.c-card-data {
  padding: 1.875rem;
}
.c-card-data .c-card-data__txt-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}
.c-card-data .c-card-data__txt-data .num {
  color: var(--main);
  font-weight: 700;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-size: 6.25rem;
}
.c-card-data .c-card-data__txt-data .txt {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ==========================================================================
タイトル
=========================================================================*/
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

h2 {
  font-size: 3.5625rem;
}
@media screen and (max-width: 960px) {
  h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 428px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 3rem;
}
@media screen and (max-width: 960px) {
  h3 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 428px) {
  h3 {
    font-size: 2.0625rem;
  }
}

h4 {
  font-size: 2.0625rem;
}
@media screen and (max-width: 960px) {
  h4 {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 428px) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  font-size: 1.75rem;
}
@media screen and (max-width: 960px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  h5 {
    font-size: 1.4375rem;
  }
}

h6 {
  font-size: 1.4375rem;
}
@media screen and (max-width: 960px) {
  h6 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 428px) {
  h6 {
    font-size: 1.25rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main,
.c-ttl-main--white {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 960px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 428px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 2.5rem;
  }
}
.c-ttl-main .en,
.c-ttl-main--white .en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1rem, 0.849rem + 0.565vi, 1.188rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--main);
}
@media screen and (max-width: 428px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    letter-spacing: 0em;
  }
}
.c-ttl-main .ja,
.c-ttl-main--white .ja {
  display: block;
  font-size: clamp(2.063rem, 1.608rem + 1.695vi, 2.625rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.c-ttl-main--white {
  margin-bottom: 2.5rem;
  text-align: center;
}
.c-ttl-main--white .en {
  color: var(--white);
}
.c-ttl-main--white .ja {
  color: var(--white);
}

.c-ttl-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(1.625rem, 1.272rem + 1.318vi, 2.063rem);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 428px) {
  .c-ttl-icon {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-icon::before {
  content: "";
  display: inline-block;
  width: clamp(0.75rem, 0.447rem + 1.13vi, 1.25rem);
  height: clamp(0.563rem, 0.361rem + 0.753vi, 0.9375rem);
  background-color: var(--main);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-right: 0.25em;
  top: -5px;
  position: relative;
}

.c-ttl-sub--lg,
.c-ttl-sub {
  font-size: clamp(1.438rem, 1.185rem + 0.942vi, 1.75rem);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .c-ttl-sub--lg,
  .c-ttl-sub {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 428px) {
  .c-ttl-sub--lg,
  .c-ttl-sub {
    margin-bottom: 1.25rem;
  }
}

.c-ttl-sub--lg {
  font-size: clamp(1.625rem, 1.272rem + 1.318vi, 2.063rem);
}

/* ==========================================================================
スライド（swiper、slick）
=========================================================================*/
/* サムネイル付きのスワイパー
-----------------------------------------------------*/
.c-slide-tmb__wrap {
  position: relative;
}
.c-slide-tmb__wrap .swiper.tmbslide_main {
  width: 100%;
  aspect-ratio: 1080/567;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper {
  width: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .p-works__tmb.swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .p-works__tmb.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  border: none;
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next,
.c-slide-tmb__wrap .swiper-button .swiper-button-prev {
  z-index: 2;
  width: 60px;
  height: 60px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 428px) {
  .c-slide-tmb__wrap .swiper-button .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 41%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next:after,
.c-slide-tmb__wrap .swiper-button .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next::before,
.c-slide-tmb__wrap .swiper-button .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button .swiper-button-prev:hover:after {
  background-color: var(--hover);
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button .swiper-button-prev:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
}
.c-slide-tmb__wrap .swiper-button .swiper-button-next {
  right: -25px;
}
@media screen and (max-width: 428px) {
  .c-slide-tmb__wrap .swiper-button .swiper-button-next {
    right: -15px;
  }
}
.c-slide-tmb__wrap .swiper-button .swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -25px;
}
@media screen and (max-width: 428px) {
  .c-slide-tmb__wrap .swiper-button .swiper-button-prev {
    -webkit-transform: scale(-1, 1) translateY(0%);
            transform: scale(-1, 1) translateY(0%);
    left: -15px;
  }
}

.swiper.tmbslide_tmb {
  width: 100%;
  max-width: initial;
  margin-top: 2.5rem;
}
@media screen and (max-width: 428px) {
  .swiper.tmbslide_tmb {
    margin-top: 1.25rem;
  }
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 208/109;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide:hover img {
  opacity: 0.7;
}

/* スマホでスワイパーに変化
-----------------------------------------------------*/
.c-slide-sp__wrap {
  position: relative;
}
@media screen and (max-width: 428px) {
  .c-slide-sp__wrap {
    padding-bottom: 28px;
  }
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination {
  bottom: -8px;
  z-index: 1;
}
@media screen and (min-width: 429px) {
  .c-slide-sp__wrap .sp-pagination.swiper-pagination {
    display: none;
  }
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background-color: rgba(var(--whitesmoke-rgb), 1);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}

.c-slide-sp {
  position: relative;
}
.c-slide-sp .swiper.spSwiper .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 10px;
}
@media screen and (max-width: 428px) {
  .c-slide-sp .swiper.spSwiper .swiper-wrapper {
    gap: 0;
  }
}
.c-slide-sp .swiper.spSwiper .swiper-wrapper .swiper-slide {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 428px) {
  .c-slide-sp .swiper.spSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
}
.c-slide-sp .slide-next.swiper-button-next,
.c-slide-sp .slide-prev.swiper-button-prev {
  z-index: 2;
  width: 30px;
  height: 30px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (min-width: 429px) {
  .c-slide-sp .slide-next.swiper-button-next,
  .c-slide-sp .slide-prev.swiper-button-prev {
    display: none;
  }
  .c-slide-sp .slide-next.swiper-button-next::before, .c-slide-sp .slide-next.swiper-button-next::after,
  .c-slide-sp .slide-prev.swiper-button-prev::before,
  .c-slide-sp .slide-prev.swiper-button-prev::after {
    content: none;
  }
}
.c-slide-sp .slide-next.swiper-button-next:after,
.c-slide-sp .slide-prev.swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--whitesmoke);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-sp .slide-next.swiper-button-next::before,
.c-slide-sp .slide-prev.swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-sp .slide-next.swiper-button-next:hover:after,
.c-slide-sp .slide-prev.swiper-button-prev:hover:after {
  background-color: var(--main);
}
.c-slide-sp .slide-next.swiper-button-next:hover::before,
.c-slide-sp .slide-prev.swiper-button-prev:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
}
.c-slide-sp .slide-next.swiper-button-next {
  right: -10px;
}
.c-slide-sp .slide-prev.swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -10px;
}

/* マップスワイパーに変化
-----------------------------------------------------*/
.c-slide-map__wrap .c-slide-map__img {
  position: relative;
  width: 100%;
}
.c-slide-map__wrap .c-slide-map__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li {
  position: absolute;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button:hover {
  opacity: 0.7;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--01 {
  left: 20%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--02 {
  right: 40%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--03 {
  left: 40%;
  bottom: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--04 {
  right: 20%;
  bottom: 30%;
}

.swiper.mapSwiper {
  margin-top: 1.25rem;
  overflow: visible;
  position: relative;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide {
  padding: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 834px) {
  .swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-prev,
.swiper.mapSwiper .swiper-wrapper .swiper-slide .swiper-slide-next {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.map-next.swiper-button-next,
.map-prev.swiper-button-prev {
  z-index: 2;
  width: 40px;
  height: 62px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
@media screen and (max-width: 428px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
.map-next.swiper-button-next:after,
.map-prev.swiper-button-prev:after {
  content: none;
}
.map-next.swiper-button-next::before,
.map-prev.swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 30px auto;
  }
}
@media screen and (max-width: 428px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 20px auto;
  }
}
.map-next.swiper-button-next:hover::before,
.map-prev.swiper-button-prev:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_main.svg);
}

.map-next.swiper-button-next {
  right: 100px;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next {
    right: 15px;
  }
}
@media screen and (max-width: 428px) {
  .map-next.swiper-button-next {
    right: -5px;
  }
}

.map-prev.swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: 100px;
}
@media screen and (max-width: 834px) {
  .map-prev.swiper-button-prev {
    left: 15px;
  }
}
@media screen and (max-width: 428px) {
  .map-prev.swiper-button-prev {
    left: -5px;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  margin-top: -80px;
  overflow: hidden;
  /* アクティブなスライド内の画像だけを拡大させる */
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap {
    margin-top: -60px;
  }
}
.p-idx-slide__wrap .p-idx-slide__catch {
  z-index: 2;
  position: absolute;
  left: 100px;
  top: -10%;
  bottom: 0;
  display: block;
  margin: auto;
  max-width: 42%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1400px) {
  .p-idx-slide__wrap .p-idx-slide__catch {
    max-width: 590px;
  }
}
@media screen and (max-width: 1280px) {
  .p-idx-slide__wrap .p-idx-slide__catch {
    left: 5%;
    max-width: 70%;
  }
}
@media screen and (max-width: 960px) {
  .p-idx-slide__wrap .p-idx-slide__catch {
    max-width: clamp(25.5rem, 16.613rem + 33.145vi, 36.5rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__catch {
    left: 3%;
    max-width: inherit;
    width: 90%;
  }
}
.p-idx-slide__wrap .p-idx-slide__catch img {
  width: 100%;
}
.p-idx-slide__wrap .p-idx-slide__items .p-idx-slide-item {
  height: 100vh;
}
.p-idx-slide__wrap .p-idx-slide__items .p-idx-slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.p-idx-slide__wrap .swiper-slide-active img,
.p-idx-slide__wrap .swiper-slide-duplicate-active img,
.p-idx-slide__wrap .swiper-slide-prev img {
  -webkit-animation: zoom-in 15s linear 0s 1 normal both;
          animation: zoom-in 15s linear 0s 1 normal both;
}
.p-idx-slide__wrap .swiper.fvSwiper {
  position: relative;
}
.p-idx-slide__wrap .swiper.fvSwiper .fv-swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: rgba(var(--whitesmoke-rgb), 1);
  opacity: 1;
  width: 30px;
  height: 3px;
  border-radius: 1.5px;
}
.p-idx-slide__wrap .swiper.fvSwiper .fv-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}
.p-idx-slide__wrap .p-idx-slide-scroll {
  position: absolute;
  right: 35px;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
  /* 装飾用 */
}
@media screen and (max-width: 960px) {
  .p-idx-slide__wrap .p-idx-slide-scroll {
    right: 25px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide-scroll {
    right: 18px;
  }
}
.p-idx-slide__wrap .p-idx-slide-scroll .text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.9;
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide-scroll .text {
    font-size: 0.6875rem;
  }
}
.p-idx-slide__wrap .p-idx-slide-scroll .line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}
.p-idx-slide__wrap .p-idx-slide-scroll .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1.5px;
  background: #fff;
  height: 20px;
  -webkit-animation: sdl 2s ease infinite;
          animation: sdl 2s ease infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50%, 100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  50%, 100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/* INDEX共通
----------------------------------------------------------------- */
.p-idx-ttl-sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  position: absolute;
  top: 0;
}
.p-idx-ttl-sec .en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Roboto", sans-serif;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
}
.p-idx-ttl-sec .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 33px;
  line-height: 140%;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-idx-ttl-sec .en {
    font-size: 58px;
  }
  .p-idx-ttl-sec .ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-ttl-sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-idx-ttl-sec .en {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-family: "Roboto", sans-serif;
    font-size: 38px;
  }
  .p-idx-ttl-sec .ja {
    font-size: 19px;
  }
}

.p-idx-ttl-main {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-idx-ttl-main .en {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--sub);
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.813rem, 0.661rem + 0.565vi, 1rem);
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 10px 5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-left: 0.625rem;
}
@media screen and (max-width: 428px) {
  .p-idx-ttl-main .en {
    margin-left: 0.3125rem;
    padding: 8px 5px;
    font-size: 0.8125rem;
  }
}
.p-idx-ttl-main .ja {
  color: var(--black);
  text-align: left;
  font-size: clamp(2.125rem, 1.418rem + 2.637vi, 3rem);
  line-height: 1.15;
  padding-top: 0.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-idx-ttl-main .ja {
    font-size: clamp(2.125rem, 1.418rem + 2.637vi, 2.375rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-ttl-main .ja {
    font-size: clamp(2.125rem, 1.418rem + 2.637vi, 2.125rem);
  }
}
.p-idx-ttl-main .ja .yoko {
  display: inline-block;
  text-combine-upright: all;
  letter-spacing: normal;
  top: -5px;
  left: -8px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-idx-ttl-main .ja .yoko {
    left: -6px;
  }
}

@media screen and (max-width: 428px) {
  _::-webkit-full-page-media, _:future, :root .p-idx-ttl-main .ja .yoko {
    left: 0;
  }
}

.p-idx-txt--vertical-rl {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* セクション1
----------------------------------------------------------------- */
.p-idx-sec1__wrap,
.p-idx-sec1__wrap--re {
  padding: 0;
}
.p-idx-sec1__wrap .p-idx-sec1__cont,
.p-idx-sec1__wrap--re .p-idx-sec1__cont {
  display: grid;
  grid-template-columns: 1px repeat(2, 1fr) 1px;
  grid-template-rows: 1fr;
  grid-column-gap: 140px;
  grid-row-gap: 60px;
}
@media screen and (min-width: 1537px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont {
    grid-column-gap: 70px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont {
    grid-template-columns: 1fr;
    grid-template-rows: inherit;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
    grid-area: initial;
    padding-left: 50px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
    padding-left: 1.125rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt_inner,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt_inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt_inner,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt_inner {
    margin-left: 0;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt {
  font-size: 1.125rem;
  line-height: 220%;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-top: 1.875rem;
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt:first-child,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt:first-child {
  margin-top: 0rem;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 200%;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt {
    line-height: 210%;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
  grid-area: 1/3/2/5;
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img img,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img img {
  width: 100%;
  max-width: 620px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
    grid-area: initial;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
    padding-right: 1.125rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img.fullwidth img,
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img.fullwidth img {
  width: 100%;
  max-width: 1220px;
  height: 465px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__img.fullwidth img,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img.fullwidth img {
    height: 293px;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont2,
.p-idx-sec1__wrap--re .p-idx-sec1__cont2 {
  padding: 7.5rem 0 10rem;
  display: grid;
  grid-template-columns: 1fr repeat(2, min(100vw, 600px)) 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 60px;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 {
    padding: 6.25rem 0 7.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 {
    padding: 3.75rem 0 5rem;
    grid-template-columns: 1fr;
    grid-template-rows: inherit;
    padding-right: 1.125rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_l,
.p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_l {
  grid-area: 1/2/2/3;
  padding-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_l,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_l {
    grid-area: initial;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_l,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_l {
    padding-top: 0;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_l img,
.p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_l img {
  width: 100%;
  max-width: 620px;
  height: auto;
}
.p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_r,
.p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_r {
  grid-area: 1/3/2/5;
  padding-left: 3.75rem;
}
.p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_r img,
.p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_r img {
  width: 100%;
  max-width: 1220px;
  height: 465px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_r,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_r {
    grid-area: initial;
    padding-left: 0;
  }
  .p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_r img,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_r img {
    height: 293px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont2 .p-idx-sec1__img_r img,
  .p-idx-sec1__wrap--re .p-idx-sec1__cont2 .p-idx-sec1__img_r img {
    height: 268px;
  }
}

.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
  grid-area: 1/1/2/3;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
    grid-area: initial;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__img {
    padding-right: 1.125rem;
  }
}
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
  grid-area: 1/3/2/4;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 960px) {
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
    grid-area: initial;
    padding-left: 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    padding-left: 1.125rem;
  }
}
.p-idx-sec1__wrap--re .p-idx-sec1__cont .p-idx-sec1__txt_wrap .p-idx-sec1__txt_inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: inherit;
}

/* 会社のこと
----------------------------------------------------------------- */
.p-idx-co__wrap {
  padding: 10rem 0 12.5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-co__wrap {
    padding: 6.25rem 0 8.75rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap {
    padding: 3.75rem 0 6.25rem;
  }
}
.p-idx-co__wrap .p-idx-ttl-sec {
  left: -15px;
  color: var(--white);
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-ttl-sec {
    left: 0;
    top: -4px;
  }
}
.p-idx-co__wrap .p-idx-ttl-sec .en {
  margin-left: 3px;
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-ttl-sec .en {
    margin-left: 0;
    margin-top: -1px;
  }
}
.p-idx-co__wrap .p-idx-ttl-sec .ja {
  margin-top: 3px;
  margin-left: 10px;
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-ttl-sec .ja {
    margin-left: 5px;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap,
.p-idx-co__wrap .p-idx-co__box-wrap--re {
  display: grid;
  grid-template-columns: 1fr min(100vw, 1140px) 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  position: relative;
}
.p-idx-co__wrap .p-idx-co__box-wrap > *,
.p-idx-co__wrap .p-idx-co__box-wrap--re > * {
  position: relative;
  z-index: 1;
}
.p-idx-co__wrap .p-idx-co__box-wrap::before,
.p-idx-co__wrap .p-idx-co__box-wrap--re::before {
  content: "";
  position: absolute;
  background: var(--white);
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
  width: 88%;
  max-width: 1140px;
  height: calc(100% - 40px);
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap::before,
  .p-idx-co__wrap .p-idx-co__box-wrap--re::before {
    right: auto;
    left: 38px;
    height: calc(100% - 30px);
    margin: auto auto;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap::before,
  .p-idx-co__wrap .p-idx-co__box-wrap--re::before {
    width: calc(100% - 36px);
    left: 18px;
    height: calc(100% - 120px);
    bottom: 90px;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__box,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__box {
  grid-area: 1/2/2/4;
  padding-bottom: 3.75rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, 1.995rem + 1.883vi, 3.125rem);
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__box,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__box {
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__box,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: clamp(2.5rem, 1.995rem + 1.883vi, 3.125rem);
  grid-row-gap: clamp(1.875rem, 1.37rem + 1.883vi, 2.5rem);
  padding-left: 3.75rem;
  padding-right: 0;
  margin-left: 60px;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
    grid-row-gap: clamp(1.25rem, 1.25rem + 1.883vi, 1.875rem);
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
    padding-right: 0;
    padding-left: 0;
    margin-inline: auto;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview .cell1,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview .cell1 {
  grid-area: 1/2/2/3;
  padding-bottom: 40px;
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview .cell2,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview .cell2 {
  grid-area: 1/1/2/2;
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview .cell2,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview .cell2 {
    padding-top: 80px;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__overview .cell3,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview .cell3 {
  grid-area: 2/1/3/3;
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
    text-align: right;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
    position: relative;
    right: auto;
    top: auto;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img img,
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img img {
  width: 100%;
  max-width: 1020px;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img img,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img img {
    width: 100%;
    max-width: 429px;
    aspect-ratio: 1/1;
    height: auto;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap .p-idx-co__img img,
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img img {
    height: 210px;
    width: 90%;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap--re {
  margin-top: 200px;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re {
    margin-top: 120px;
  }
  .p-idx-co__wrap .p-idx-co__box-wrap--re::before {
    right: 38px;
    left: auto;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re {
    margin-top: 3.75rem;
  }
  .p-idx-co__wrap .p-idx-co__box-wrap--re::before {
    right: 18px;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__box {
  grid-area: 1/1/2/3;
}
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding-right: 3.75rem;
  padding-left: 0;
  margin-left: 0;
  margin-right: 3.75rem;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
    padding-right: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__overview {
    padding-right: 0;
    padding-left: 0;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
    text-align: left;
    padding-right: 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-co__wrap .p-idx-co__box-wrap--re .p-idx-co__img {
    padding-right: 0;
  }
}

/* 社員のこと
----------------------------------------------------------------- */
.p-idx-employee__wrap {
  padding: 0 0 5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-idx-employee__wrap {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap {
    padding: 0 0 5rem;
  }
}
.p-idx-employee__wrap .p-idx-ttl-sec {
  right: -12px;
  color: var(--whitesmoke);
}
.p-idx-employee__wrap .p-idx-ttl-sec .en {
  margin-right: 6px;
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-ttl-sec .en {
    margin-right: -2px;
    margin-top: -1px;
  }
}
.p-idx-employee__wrap .p-idx-ttl-sec .ja {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  margin-top: 6px;
}
@media screen and (max-width: 960px) {
  .p-idx-employee__wrap .p-idx-ttl-sec .ja {
    margin-top: 2px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-ttl-sec .ja {
    margin-top: 3px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-ttl-sec {
    right: 0;
    top: -4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-idx-employee__wrap .p-idx-ttl-main {
  margin-top: -30px;
}
.p-idx-employee__wrap .p-idx-employee-box__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0rem, -3.03rem + 11.299vi, 3.75rem);
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee-box__wrap {
    gap: 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee-box__wrap {
    padding-right: 18px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 114px 40px;
  grid-template-columns: repeat(auto-fit, 280px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 7.5rem;
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee__cards {
    grid-template-columns: repeat(auto-fit, 240px);
    padding-top: 6.25rem;
    gap: 70px 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-idx-employee__wrap .p-idx-employee__cards {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee__cards {
    gap: 45px 30px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-idx-employee__wrap .p-idx-employee__cards .card a {
  display: block;
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-img img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-tag {
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
  position: absolute;
  margin-top: -5px;
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-tag {
    margin-top: 0;
    font-size: 16px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-tag span {
  position: relative;
  z-index: 2;
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-tag::after {
  content: "";
  display: inline-block;
  background-color: var(--main);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  width: 148px;
  height: 95px;
  position: absolute;
  top: -10px;
  left: -10px;
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-tag::after {
    width: 130px;
    height: 78px;
    top: -6px;
    left: -8px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-img {
  position: relative;
  overflow: hidden;
  z-index: -1;
  margin-top: 35px;
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-img {
    margin-top: 30px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .vertical-text {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4375rem;
  line-height: 140%;
  font-weight: 700;
  height: 354px;
  padding: 0 15px;
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .vertical-text {
    font-size: 1.3125rem;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card:hover .card-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-idx-employee__wrap .p-idx-employee__cards .card:hover .card-body h3 {
  color: var(--main);
}
.p-idx-employee__wrap .p-idx-employee__cards .card:hover .hashtags li {
  color: var(--main);
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-body {
  padding: 15px 0 0 15px;
  background: var(--white);
  width: calc(100% - 15px);
  margin-left: 15px;
  margin-top: -50px;
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-body {
    padding: 15px 0 0 15px;
    width: calc(100% - 10px);
    margin-left: 10px;
    margin-top: -45px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-body h3 {
  font-size: 1.4375rem;
  line-height: 1.4;
  margin-bottom: 15px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-body h3 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-body h3 {
    margin-bottom: 10px;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .card-body h3 .year {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-left: 0.5em;
}
@media screen and (max-width: 1280px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card .card-body h3 .year {
    font-size: 0.75rem;
    margin-left: 0.1875rem;
  }
}
.p-idx-employee__wrap .p-idx-employee__cards .card .hashtags {
  line-height: 1.5;
}
.p-idx-employee__wrap .p-idx-employee__cards .card .hashtags li {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  margin-right: 0.625rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.p-idx-employee__wrap .p-idx-employee__cards .card .hashtags li::before {
  content: "#";
  color: var(--main);
  margin-right: 0.25em;
}
.p-idx-employee__wrap .p-idx-employee__cards .card:nth-of-type(2) {
  grid-row: span 2;
  align-self: center;
}
@media screen and (max-width: 834px) {
  .p-idx-employee__wrap .p-idx-employee__cards .card:nth-of-type(2) {
    margin-top: 0;
  }
}

/* 環境のこと
----------------------------------------------------------------- */
.p-idx-env__wrap {
  padding: 0 0 8.75rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap {
    padding: 0 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap {
    padding: 0 0 5rem;
  }
}
.p-idx-env__wrap .p-idx-ttl-sec {
  left: -14px;
  top: -7px;
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-ttl-sec {
    left: 0;
    top: 0;
  }
}
.p-idx-env__wrap .p-idx-ttl-sec .en {
  letter-spacing: 0.02em;
  margin-left: 7px;
  margin-top: 4px;
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-ttl-sec .en {
    margin-left: -1px;
    margin-top: -4px;
  }
}
.p-idx-env__wrap .p-idx-ttl-sec .ja {
  margin-top: 12px;
  margin-left: 8px;
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-ttl-sec .ja {
    margin-top: 3px;
    margin-left: 2px;
  }
}
.p-idx-env__wrap .p-idx-ttl-main {
  margin-top: -30px;
}
.p-idx-env__wrap .p-idx-env-box__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(0rem, -3.03rem + 11.299vi, 3.75rem);
}
@media screen and (max-width: 1280px) {
  .p-idx-env__wrap .p-idx-env-box__wrap {
    gap: clamp(0rem, -3.03rem + 11.299vi, 2.5rem);
  }
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-env-box__wrap {
    gap: clamp(0rem, -3.03rem + 11.299vi, 1.875rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-env-box__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-env__wrap .p-idx-env-box__wrap .p-idx-env-box__hd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(0rem, -3.03rem + 11.299vi, 3.75rem);
}
@media screen and (max-width: 1280px) {
  .p-idx-env__wrap .p-idx-env-box__wrap .p-idx-env-box__hd {
    gap: clamp(0rem, -3.03rem + 11.299vi, 2.5rem);
  }
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-env-box__wrap .p-idx-env-box__hd {
    gap: clamp(0rem, -3.03rem + 11.299vi, 1.875rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-env-box__wrap .p-idx-env-box__hd {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-idx-env__wrap .p-idx-txt--vertical-rl,
.p-idx-env__wrap .p-idx-env__cards {
  padding-top: 7.5rem;
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-txt--vertical-rl,
  .p-idx-env__wrap .p-idx-env__cards {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-txt--vertical-rl,
  .p-idx-env__wrap .p-idx-env__cards {
    padding-top: 5.625rem;
    white-space: nowrap;
  }
}
.p-idx-env__wrap .p-idx-env__cards {
  padding-top: 6.25rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 50px 40px;
  grid-template-columns: repeat(3, minmax(-webkit-min-content, 230px));
  grid-template-columns: repeat(3, minmax(min-content, 230px));
  direction: rtl;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) {
  .p-idx-env__wrap .p-idx-env__cards {
    gap: 50px 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-env__cards {
    grid-template-columns: repeat(2, minmax(-webkit-min-content, 230px));
    grid-template-columns: repeat(2, minmax(min-content, 230px));
    padding-top: 4.375rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-env__cards {
    grid-template-columns: minmax(-webkit-min-content, 280px);
    grid-template-columns: minmax(min-content, 280px);
    padding-top: 2.5rem;
  }
}
.p-idx-env__wrap .p-idx-env__cards .card {
  display: block;
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-env__cards .card {
    padding-top: 15px;
  }
}
.p-idx-env__wrap .p-idx-env__cards .card h3 {
  position: absolute;
  right: 20px;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .p-idx-env__wrap .p-idx-env__cards .card h3 {
    right: clamp(0rem, -3.03rem + 11.299vi, 1rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-env__cards .card h3 {
    right: 20px;
  }
}
.p-idx-env__wrap .p-idx-env__cards .card h3 .card-label {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .p-idx-env__wrap .p-idx-env__cards .card h3 .card-label {
    font-size: clamp(1.125rem, 0.62rem + 1.883vi, 1.75rem);
  }
}
@media screen and (max-width: 428px) {
  .p-idx-env__wrap .p-idx-env__cards .card h3 .card-label {
    font-size: 1.75rem;
  }
}
.p-idx-env__wrap .p-idx-env__cards .card h3 .card-arrow {
  width: 30px;
  height: 30px;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-idx-env__wrap .p-idx-env__cards .card .card-img {
  overflow: hidden;
}
.p-idx-env__wrap .p-idx-env__cards .card .card-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 230/326;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  min-width: 80px;
}
.p-idx-env__wrap .p-idx-env__cards .card:hover .card-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-idx-env__wrap .p-idx-env__cards .card:hover h3 {
  color: var(--main);
}
.p-idx-env__wrap .p-idx-env__cards .card:nth-of-type(2) {
  grid-row: span 2;
  align-self: center;
}
@media screen and (max-width: 834px) {
  .p-idx-env__wrap .p-idx-env__cards .card:nth-of-type(2) {
    margin-top: 0;
  }
}

/* 社員アンケート
----------------------------------------------------------------- */
.p-idx-question__wrap {
  padding: 0 0;
  position: relative;
  /* 画像 */
  /* 中央ブロック */
}
.p-idx-question__wrap .p-idx-question {
  display: grid;
  grid-template-columns: 1fr repeat(2, 120px) 1fr;
  grid-template-rows: 1fr repeat(2, 3fr) 1fr;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  position: relative;
  margin-top: 6px;
}
@media screen and (max-width: 1280px) {
  .p-idx-question__wrap .p-idx-question {
    grid-template-rows: 60px repeat(2, 1fr) 60px;
  }
}
.p-idx-question__wrap .q-item1 img,
.p-idx-question__wrap .q-item2 img,
.p-idx-question__wrap .q-item3 img,
.p-idx-question__wrap .q-item4 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-idx-question__wrap .q-item1 {
  grid-area: 1/1/3/3;
}
.p-idx-question__wrap .q-item2 {
  grid-area: 1/3/3/5;
}
.p-idx-question__wrap .q-item3 {
  grid-area: 3/1/5/3;
}
.p-idx-question__wrap .q-item4 {
  grid-area: 3/3/5/5;
}
.p-idx-question__wrap .p-idx-question-center {
  grid-area: 2/2/4/4;
  background: var(--white);
  padding: 30px 20px 20px;
  text-align: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .p-idx-question__wrap .p-idx-question-center {
    padding: 20px 20px 20px;
  }
}
.p-idx-question__wrap .p-idx-question-center .p-idx-ttl-main .ja {
  display: inline-block;
  text-align: right;
  line-height: 1.4;
}
.p-idx-question__wrap .badge {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 120px;
  height: 120px;
  background: var(--main);
  color: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1875rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  outline: 1px solid var(--white);
  outline-offset: -5px;
}
@media screen and (max-width: 960px) {
  .p-idx-question__wrap .p-idx-question {
    grid-template-columns: 1fr repeat(2, 106px) 1fr;
    grid-template-rows: 56px repeat(2, 252px) 56px;
  }
  .p-idx-question__wrap .p-idx-question-center {
    padding: 30px 10px 20px 20px;
  }
  .p-idx-question__wrap .badge {
    top: -30px;
    left: -30px;
    width: 110px;
    height: 110px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-question__wrap .p-idx-question {
    grid-template-columns: 1fr repeat(2, 95px) 1fr;
    grid-template-rows: 60px repeat(2, 200px) 60px;
  }
  .p-idx-question__wrap .p-idx-question-center {
    background: var(--white);
    padding: 18px 10px 18px 15px;
    gap: 30px;
  }
  .p-idx-question__wrap .badge {
    width: 100px;
    height: 100px;
    font-size: 0.875rem;
  }
}

/* 募集要項
----------------------------------------------------------------- */
.p-idx-guideline__wrap {
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 960px) {
  .p-idx-guideline__wrap {
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-guideline__wrap {
    padding: 3.75rem 0 3.75rem;
  }
}
.p-idx-guideline__wrap .p-idx-guideline__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-idx-guideline__wrap .p-idx-guideline__inner {
    gap: 1.875rem;
  }
}
.p-idx-guideline__wrap .p-idx-guideline__inner .p-idx-guideline__btn {
  max-width: 910px;
  width: 100%;
  padding-top: 3.75rem;
}
@media screen and (max-width: 960px) {
  .p-idx-guideline__wrap .p-idx-guideline__inner .p-idx-guideline__btn {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-guideline__wrap .p-idx-guideline__inner .p-idx-guideline__btn {
    padding-top: 0;
  }
}

/* 会社情報
----------------------------------------------------------------- */
.p-idx-com__wrap,
.p-idx-com__wrap--re {
  padding: 7.5rem 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-com__wrap,
  .p-idx-com__wrap--re {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-com__wrap,
  .p-idx-com__wrap--re {
    padding: 5rem 0;
  }
}
.p-idx-com__wrap .p-idx-com__img-area,
.p-idx-com__wrap--re .p-idx-com__img-area {
  position: relative;
  height: 409px;
}
@media screen and (max-width: 834px) {
  .p-idx-com__wrap .p-idx-com__img-area,
  .p-idx-com__wrap--re .p-idx-com__img-area {
    height: auto;
  }
}
.p-idx-com__wrap .p-idx-com__img-area .p-idx-com__img,
.p-idx-com__wrap--re .p-idx-com__img-area .p-idx-com__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 48.5358711567%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-idx-com__wrap .p-idx-com__img-area .p-idx-com__img,
  .p-idx-com__wrap--re .p-idx-com__img-area .p-idx-com__img {
    width: 47.5609756098%;
    height: 293px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-com__wrap .p-idx-com__img-area .p-idx-com__img,
  .p-idx-com__wrap--re .p-idx-com__img-area .p-idx-com__img {
    width: 95.2%;
    height: 211px;
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    margin-right: 0;
    margin-top: 1.875rem;
  }
}
.p-idx-com__wrap .p-idx-com__img-area .p-idx-com__img img,
.p-idx-com__wrap--re .p-idx-com__img-area .p-idx-com__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-idx-com__wrap .p-idx-com__cont,
.p-idx-com__wrap--re .p-idx-com__cont {
  max-width: 48.1481481481%;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .p-idx-com__wrap .p-idx-com__cont,
  .p-idx-com__wrap--re .p-idx-com__cont {
    max-width: initial;
  }
}
.p-idx-com__wrap .p-idx-com__cont .c-btn-main,
.p-idx-com__wrap--re .p-idx-com__cont .c-btn-main {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-com__wrap .p-idx-com__cont .c-btn-main,
  .p-idx-com__wrap--re .p-idx-com__cont .c-btn-main {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-com__wrap .p-idx-com__cont .c-btn-main,
  .p-idx-com__wrap--re .p-idx-com__cont .c-btn-main {
    margin-top: 1.875rem;
  }
}

.p-idx-com__wrap--re .p-idx-com__img-area .p-idx-com__img {
  right: auto;
  left: 0;
}
.p-idx-com__wrap--re .p-idx-com__cont {
  margin-left: auto;
  margin-right: 0;
}

/* 採用情報
----------------------------------------------------------------- */
.p-idx-rec__wrap,
.p-idx-rec__wrap--re {
  padding: 7.5rem 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap,
  .p-idx-rec__wrap--re {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap,
  .p-idx-rec__wrap--re {
    padding: 5rem 0;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area,
.p-idx-rec__wrap--re .p-idx-rec__img-area {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area,
  .p-idx-rec__wrap--re .p-idx-rec__img-area {
    height: auto;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img,
.p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 48.5358711567%;
  height: 409px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img,
  .p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img {
    width: 47.6829268293%;
    height: 293px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img,
  .p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img {
    width: 95.2%;
    height: 211px;
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}
.p-idx-rec__wrap .p-idx-rec__img-area .p-idx-rec__img img,
.p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-idx-rec__wrap .p-idx-rec__cont,
.p-idx-rec__wrap--re .p-idx-rec__cont {
  max-width: 47.2222222222%;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont,
  .p-idx-rec__wrap--re .p-idx-rec__cont {
    max-width: 47.1774193548%;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap .p-idx-rec__cont,
  .p-idx-rec__wrap--re .p-idx-rec__cont {
    max-width: initial;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link,
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white {
  border-top: 1px solid var(--whitesmoke);
  width: 100%;
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a,
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a {
  display: block;
  position: relative;
  line-height: 75px;
  font-size: 1.1875rem;
  font-weight: 700;
  border-bottom: 1px solid var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a,
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a,
  .p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a,
  .p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a {
    line-height: 62px;
    font-size: 1rem;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a::before,
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a::before,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a::before,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/recruit/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 16px;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a::before,
  .p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a::before,
  .p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a::before,
  .p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a::before {
    width: 8px;
    height: 13px;
  }
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a:hover,
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a:hover,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a:hover,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a:hover {
  color: var(--main);
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link li a:hover::before,
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a:hover::before,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link li a:hover::before,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_main.svg);
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white {
  border-top: 1px solid var(--white);
}
.p-idx-rec__wrap .p-idx-rec__cont .p-idx-rec__link--white li a,
.p-idx-rec__wrap--re .p-idx-rec__cont .p-idx-rec__link--white li a {
  border-bottom: 1px solid var(--white);
}
.p-idx-rec__wrap .p-idx-rec__cont .c-btn-main,
.p-idx-rec__wrap--re .p-idx-rec__cont .c-btn-main {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-rec__wrap .p-idx-rec__cont .c-btn-main,
  .p-idx-rec__wrap--re .p-idx-rec__cont .c-btn-main {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap .p-idx-rec__cont .c-btn-main,
  .p-idx-rec__wrap--re .p-idx-rec__cont .c-btn-main {
    margin-top: 1.875rem;
  }
}

.p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img {
  right: 0;
  left: auto;
}
@media screen and (max-width: 428px) {
  .p-idx-rec__wrap--re .p-idx-rec__img-area .p-idx-rec__img {
    top: auto;
    right: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
.p-idx-rec__wrap--re .p-idx-rec__cont {
  margin-left: 0;
  margin-right: auto;
}

/* 会社情報／採用情報
----------------------------------------------------------------- */
.p-idx-info__wrap .p-idx-info__box {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5rem 5%;
  height: 384px;
}
.p-idx-info__wrap .p-idx-info__box:first-child {
  background-image: -webkit-image-set(url(/recruit/resource/images/_dummy_960x593.webp) type("image/webp"), url(/recruit/resource/images/_dummy_960x593.jpg) type("image/jpeg"));
  background-image: image-set(url(/recruit/resource/images/_dummy_960x593.webp) type("image/webp"), url(/recruit/resource/images/_dummy_960x593.jpg) type("image/jpeg"));
}
.p-idx-info__wrap .p-idx-info__box:last-child {
  background-image: -webkit-image-set(url(/recruit/resource/images/_dummy_960x593.webp) type("image/webp"), url(/recruit/resource/images/_dummy_960x593.jpg) type("image/jpeg"));
  background-image: image-set(url(/recruit/resource/images/_dummy_960x593.webp) type("image/webp"), url(/recruit/resource/images/_dummy_960x593.jpg) type("image/jpeg"));
}
@media screen and (max-width: 428px) {
  .p-idx-info__wrap .p-idx-info__box {
    padding: 3.75rem 5%;
  }
  .p-idx-info__wrap .p-idx-info__box:nth-child(n+2) {
    margin-top: 1rem;
  }
}

/* バナーエリア
----------------------------------------------------------------- */
.p-idx-bnr__wrap {
  padding: 5rem 0;
}
@media screen and (max-width: 428px) {
  .p-idx-bnr__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-bnr__wrap .p-idx-bnr__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 428px) {
  .p-idx-bnr__wrap .p-idx-bnr__inner {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}
.p-idx-bnr__wrap .p-idx-bnr__inner .p-idx-bnr__clm a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-bnr__wrap .p-idx-bnr__inner .p-idx-bnr__clm a img {
  width: 100%;
  height: 100%;
}
.p-idx-bnr__wrap .p-idx-bnr__inner .p-idx-bnr__clm a:hover {
  opacity: 0.6;
}

/* ブランドムービー
----------------------------------------------------------------- */
.p-idx-mov__wrap {
  padding: 7.5rem 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-mov__wrap {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-mov__wrap {
    padding: 5rem 0;
  }
}
.p-idx-mov__wrap .p-idx-mov {
  overflow: hidden;
  position: relative;
}
.p-idx-mov__wrap .p-idx-mov a:hover .p-idx-mov__btn {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-idx-mov__wrap .p-idx-mov a:hover .p-idx-mov-img {
  opacity: 0.9;
}
.p-idx-mov__wrap .p-idx-mov .p-idx-mov-img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  border-radius: inherit;
}
.p-idx-mov__wrap .p-idx-mov .p-idx-mov__btn {
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 180px;
  height: 180px;
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 834px) {
  .p-idx-mov__wrap .p-idx-mov .p-idx-mov__btn {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-mov__wrap .p-idx-mov .p-idx-mov__btn {
    width: 80px;
    height: 80px;
    background-size: 28px auto;
  }
}
.p-idx-mov__wrap .is-movie-open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-mov__wrap .is-movie-open:hover {
  opacity: 0.7;
}
.p-idx-mov__wrap .is-movie-area {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
}
.p-idx-mov__wrap .p-idx-mov__video {
  width: 100%;
  height: auto;
  position: relative;
}
.p-idx-mov__wrap .p-idx-mov__video video {
  width: 100%;
  height: 100%;
}
.p-idx-mov__wrap .p-idx-mov__video .p-idx-mov__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-idx-mov__wrap .p-idx-mov__youtube {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.p-idx-mov__wrap .p-idx-mov__youtube iframe {
  width: 100%;
  height: 100%;
}

/* お知らせ1（ニュースティッカータイプ）
----------------------------------------------------------------- */
@media screen and (max-width: 428px) {
  .p-idx-news__wrap .l-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.p-idx-news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  vertical-align: middle;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner {
    padding: 1.25rem 0;
  }
}
.p-idx-news__inner .p-idx-news__items {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  padding: 18px 0;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__items {
    padding: 0;
  }
}
.p-idx-news__inner .p-idx-news__items ul {
  overflow: hidden;
  height: 24px;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__items ul {
    height: 58px;
  }
}
.p-idx-news__inner .p-idx-news__items ul li {
  padding: 1px 0;
}
.p-idx-news__inner .p-idx-news__items ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__items ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__items__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__items__flex .p-idx-news__date {
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Roboto", sans-serif;
}
.p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__items__flex .p-idx-news__cat {
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 3px 10px 3px;
  text-align: center;
  min-width: 72px;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__items__flex .p-idx-news__cat {
    font-size: 14px;
  }
}
.p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__ttl {
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__items ul li a .p-idx-news__ttl {
    display: block;
  }
}
.p-idx-news__inner .p-idx-news__items ul li a:hover .p-idx-news__date,
.p-idx-news__inner .p-idx-news__items ul li a:hover .p-idx-news__ttl {
  color: var(--main);
}
.p-idx-news__inner .p-idx-news__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__btn {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-news__inner .p-idx-news__btn a .txt {
    font-size: 14px;
  }
}

/* お知らせ2（リストタイプ）
----------------------------------------------------------------- */
.p-idx-newslist__wrap {
  padding: 7.5rem 0;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__wrap {
    padding: 5rem 0;
  }
}

.p-idx-newslist__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13.7%;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__inner {
    gap: 10.3494623656%;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-idx-newslist__ttl {
  min-width: 192px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__ttl {
    min-width: 160px;
  }
}

.p-idx-newslist__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  margin-left: 0;
}
.p-idx-newslist__cont ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__cont ul {
    gap: 15px;
  }
}
.p-idx-newslist__cont ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem;
  background-color: var(--whitesmoke);
  position: relative;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a {
    gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__cont ul li a {
    padding: 1.25rem;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-newslist__cont ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 8px;
  height: 12px;
  background-image: url(/recruit/resource/images/ico_arrow_main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a::after {
    right: 1.25rem;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex {
    gap: 10px;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cont__data {
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cat {
  display: block;
  background-color: var(--main);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 5px 16px 5px;
  text-align: center;
  min-width: 84px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cat {
    min-width: 72px;
    padding: 3px 10px;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__ttl {
  display: inline-block;
  line-height: 1.4;
}
.p-idx-newslist__cont ul li a:hover {
  color: var(--main);
  opacity: 0.7;
}
.p-idx-newslist__cont ul li a:hover .p-idx-newslist__cont__ttl::after {
  right: 0;
}

.p-idx-newslist__btn {
  margin-top: 1.875rem;
}
.p-idx-newslist__btn a {
  margin-left: auto;
  margin-right: 0;
}

/* ==========================================================================
よろずの基礎
========================================================================== */
/* 万建設興業の原点
----------------------------------------------------------------- */
.p-philosophy-sec1-hd {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  gap: 40px;
}
.p-philosophy-sec1-hd .img,
.p-philosophy-sec1-hd .txt {
  z-index: 1;
}
.p-philosophy-sec1-hd .img {
  width: 50%;
}
.p-philosophy-sec1-hd .img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/321;
}
.p-philosophy-sec1-hd .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 40px;
  padding-right: 40px;
}
.p-philosophy-sec1-hd::after {
  content: "";
  display: inline-block;
  background: var(--whitesmoke);
  width: calc(100% - 118px);
  height: calc(100% + 40px);
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 1281px) {
  .p-philosophy-sec1-hd::after {
    height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec1-hd {
    margin-top: 100px;
  }
  .p-philosophy-sec1-hd .img img {
    aspect-ratio: 372/279;
  }
}
@media screen and (max-width: 428px) {
  .p-philosophy-sec1-hd {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-philosophy-sec1-hd .img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0;
    margin-left: -5%;
  }
  .p-philosophy-sec1-hd .img img {
    aspect-ratio: 520/321;
  }
  .p-philosophy-sec1-hd .txt {
    padding-bottom: 0;
    padding-right: 30px;
    padding-top: 30px;
    padding-left: 30px;
  }
  .p-philosophy-sec1-hd::after {
    top: 0;
    height: calc(100% - 80px);
    width: 100%;
  }
}

.p-philosophy-origin__txt {
  line-height: 2.4;
}
@media screen and (max-width: 428px) {
  .p-philosophy-origin__txt {
    line-height: 2.1;
  }
}

/* 万建設興業を支える柱
----------------------------------------------------------------- */
.p-philosophy-sec2-box,
.p-philosophy-sec2-box--re {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  position: relative;
}
.p-philosophy-sec2-box .img,
.p-philosophy-sec2-box .txt,
.p-philosophy-sec2-box--re .img,
.p-philosophy-sec2-box--re .txt {
  z-index: 1;
}
.p-philosophy-sec2-box .txt,
.p-philosophy-sec2-box--re .txt {
  position: relative;
  padding: 80px 0 40px 60px;
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec2-box .txt,
  .p-philosophy-sec2-box--re .txt {
    padding: 50px 40px 40px 0;
  }
}
.p-philosophy-sec2-box .img img,
.p-philosophy-sec2-box--re .img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/321;
}
.p-philosophy-sec2-box .label,
.p-philosophy-sec2-box--re .label {
  position: absolute;
  left: -10px;
  top: 30px;
  background-color: var(--sub);
  width: 140px;
  height: 90px;
  padding: 11px 15px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec2-box .label,
  .p-philosophy-sec2-box--re .label {
    padding: 8px 10px;
  }
}
.p-philosophy-sec2-box .label .category,
.p-philosophy-sec2-box--re .label .category {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.813rem, 0.661rem + 0.565vi, 1rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.p-philosophy-sec2-box .label .number,
.p-philosophy-sec2-box--re .label .number {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.438rem, 1.286rem + 0.565vi, 1.625rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-left: 5px;
  margin-top: 2px;
}
.p-philosophy-sec2-box::after,
.p-philosophy-sec2-box--re::after {
  content: "";
  display: inline-block;
  background: var(--whitesmoke);
  width: calc(100% - 118px);
  height: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec2-box .txt,
  .p-philosophy-sec2-box--re .txt {
    padding: 50px 0 40px 40px;
  }
  .p-philosophy-sec2-box .txt .c-ttl-sub,
  .p-philosophy-sec2-box--re .txt .c-ttl-sub {
    margin-bottom: 1.25rem;
  }
  .p-philosophy-sec2-box .img img,
  .p-philosophy-sec2-box--re .img img {
    aspect-ratio: 352/264;
  }
  .p-philosophy-sec2-box .label,
  .p-philosophy-sec2-box--re .label {
    width: 125px;
    height: 82px;
    left: -10px;
    top: 0;
  }
  .p-philosophy-sec2-box::after,
  .p-philosophy-sec2-box--re::after {
    width: calc(100% - 40px);
    height: calc(100% - 10px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}
@media screen and (max-width: 428px) {
  .p-philosophy-sec2-box,
  .p-philosophy-sec2-box--re {
    grid-template-columns: 1fr;
  }
  .p-philosophy-sec2-box .img,
  .p-philosophy-sec2-box--re .img {
    width: 100%;
    margin-left: -20px;
  }
  .p-philosophy-sec2-box .img img,
  .p-philosophy-sec2-box--re .img img {
    aspect-ratio: 520/321;
  }
  .p-philosophy-sec2-box .txt,
  .p-philosophy-sec2-box--re .txt {
    padding: 35px 20px 0;
  }
  .p-philosophy-sec2-box .txt .label,
  .p-philosophy-sec2-box--re .txt .label {
    top: -10px;
  }
  .p-philosophy-sec2-box .label,
  .p-philosophy-sec2-box--re .label {
    width: 100px;
    height: 65px;
    padding: 7px 9px;
  }
  .p-philosophy-sec2-box .label .number,
  .p-philosophy-sec2-box--re .label .number {
    margin-left: 2px;
    font-size: 1.3125rem;
  }
  .p-philosophy-sec2-box::after,
  .p-philosophy-sec2-box--re::after {
    width: 100%;
    height: calc(100% - 100px);
    bottom: auto;
    top: 0;
    left: 0;
  }
}

.p-philosophy-sec2-box--re .txt {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding: 80px 60px 40px 0;
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec2-box--re .txt {
    padding: 50px 40px 40px 0;
  }
}
.p-philosophy-sec2-box--re .label {
  left: inherit;
  right: -10px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  text-align: right;
}
.p-philosophy-sec2-box--re .label .number {
  margin-left: auto;
  margin-right: 5px;
}
.p-philosophy-sec2-box--re::after {
  left: inherit;
  right: 0;
}
@media screen and (max-width: 428px) {
  .p-philosophy-sec2-box--re .img {
    width: 100%;
    margin-left: auto;
    margin-right: -20px;
  }
  .p-philosophy-sec2-box--re .txt {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    padding: 35px 20px 0;
  }
  .p-philosophy-sec2-box--re .txt .label {
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
    text-align: left;
    left: -10px;
    right: inherit;
  }
}

.p-philosophy-sec2-ttl {
  margin-bottom: 1.875rem;
}

/* 未来へつなぐ、Karino
----------------------------------------------------------------- */
.p-philosophy-sec2-box--white,
.p-philosophy-sec2-box--white--re {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  position: relative;
}
.p-philosophy-sec2-box--white .img,
.p-philosophy-sec2-box--white .txt,
.p-philosophy-sec2-box--white--re .img,
.p-philosophy-sec2-box--white--re .txt {
  z-index: 1;
}
.p-philosophy-sec2-box--white .txt,
.p-philosophy-sec2-box--white--re .txt {
  position: relative;
  padding: 50px 0 40px 60px;
}
.p-philosophy-sec2-box--white .img,
.p-philosophy-sec2-box--white--re .img {
  padding-top: 50px;
}
.p-philosophy-sec2-box--white .img img,
.p-philosophy-sec2-box--white--re .img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/321;
}
.p-philosophy-sec2-box--white .label,
.p-philosophy-sec2-box--white--re .label {
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: var(--sub);
  width: 140px;
  height: 90px;
  padding: 11px 11px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-philosophy-sec2-box--white .label .category,
.p-philosophy-sec2-box--white--re .label .category {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.813rem, 0.661rem + 0.565vi, 1rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.p-philosophy-sec2-box--white .label .number,
.p-philosophy-sec2-box--white--re .label .number {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.438rem, 1.286rem + 0.565vi, 1.625rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-left: 12px;
  margin-top: 2px;
}
.p-philosophy-sec2-box--white::after,
.p-philosophy-sec2-box--white--re::after {
  content: "";
  display: inline-block;
  background: var(--white);
  width: calc(100% - 118px);
  height: calc(100% - 0px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 1281px) {
  .p-philosophy-sec2-box--white::after,
  .p-philosophy-sec2-box--white--re::after {
    height: calc(100% - 20px);
  }
}
@media screen and (max-width: 960px) {
  .p-philosophy-sec2-box--white,
  .p-philosophy-sec2-box--white--re {
    grid-column-gap: 45px;
  }
  .p-philosophy-sec2-box--white .img,
  .p-philosophy-sec2-box--white--re .img {
    padding-top: 40px;
  }
  .p-philosophy-sec2-box--white .img img,
  .p-philosophy-sec2-box--white--re .img img {
    aspect-ratio: 352/264;
  }
  .p-philosophy-sec2-box--white .txt,
  .p-philosophy-sec2-box--white--re .txt {
    position: relative;
    padding: 40px 0 30px 40px;
  }
  .p-philosophy-sec2-box--white .txt .c-ttl-sub,
  .p-philosophy-sec2-box--white--re .txt .c-ttl-sub {
    margin-bottom: 1.25rem;
  }
  .p-philosophy-sec2-box--white .label,
  .p-philosophy-sec2-box--white--re .label {
    width: 125px;
    height: 82px;
    padding: 8px 10px;
  }
  .p-philosophy-sec2-box--white::after,
  .p-philosophy-sec2-box--white--re::after {
    width: 95%;
  }
}
@media screen and (max-width: 428px) {
  .p-philosophy-sec2-box--white,
  .p-philosophy-sec2-box--white--re {
    grid-template-columns: 1fr;
  }
  .p-philosophy-sec2-box--white .img,
  .p-philosophy-sec2-box--white--re .img {
    padding-top: 0;
    width: 100%;
    margin-left: -20px;
  }
  .p-philosophy-sec2-box--white .img img,
  .p-philosophy-sec2-box--white--re .img img {
    aspect-ratio: 520/321;
  }
  .p-philosophy-sec2-box--white .txt,
  .p-philosophy-sec2-box--white--re .txt {
    padding: 35px 20px 0;
  }
  .p-philosophy-sec2-box--white .txt .label,
  .p-philosophy-sec2-box--white--re .txt .label {
    top: -10px;
  }
  .p-philosophy-sec2-box--white .label,
  .p-philosophy-sec2-box--white--re .label {
    width: 100px;
    height: 65px;
    padding: 7px 9px;
  }
  .p-philosophy-sec2-box--white .label .number,
  .p-philosophy-sec2-box--white--re .label .number {
    margin-left: 2px;
    font-size: 1.3125rem;
  }
  .p-philosophy-sec2-box--white::after,
  .p-philosophy-sec2-box--white--re::after {
    width: 100%;
    height: calc(100% - 100px);
    bottom: auto;
    top: 0;
    left: 0;
  }
}

.p-philosophy-sec2-box--white--re .txt {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding: 50px 60px 40px 0;
}
.p-philosophy-sec2-box--white--re .label {
  left: inherit;
  right: -10px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  text-align: right;
}
.p-philosophy-sec2-box--white--re .label .number {
  margin-left: auto;
  margin-right: 12px;
}
.p-philosophy-sec2-box--white--re::after {
  left: inherit;
  right: 0;
}
@media screen and (max-width: 428px) {
  .p-philosophy-sec2-box--white--re .img {
    width: 100%;
    margin-left: auto;
    margin-right: -20px;
  }
  .p-philosophy-sec2-box--white--re .txt {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    padding: 35px 20px 0;
  }
  .p-philosophy-sec2-box--white--re .txt .label {
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
    text-align: left;
    left: -10px;
    right: inherit;
  }
}

.p-philosophy-karino__txt {
  line-height: 2.4;
}
@media screen and (max-width: 428px) {
  .p-philosophy-karino__txt {
    line-height: 2.1;
  }
}

.p-philosophy-karino-concept {
  margin-top: 7.5rem;
}
@media screen and (max-width: 960px) {
  .p-philosophy-karino-concept {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-philosophy-karino-concept {
    margin-top: 5rem;
  }
}

/* ==========================================================================
よろずの仕事
========================================================================== */
/* 共通
----------------------------------------------------------------- */
.p-business-project-wrap {
  background: -webkit-linear-gradient(white 190px, var(--whitesmoke) 190px);
  background: linear-gradient(white 190px, var(--whitesmoke) 190px);
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 960px) {
  .p-business-project-wrap {
    padding-bottom: 7.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-business-project-wrap {
    padding-bottom: 6.25rem;
  }
}

.p-business-topic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
  position: relative;
  background-color: var(--whitesmoke);
  padding: 60px;
}
.p-business-topic::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -5px;
  top: -5px;
  background-color: var(--sub);
  width: 80px;
  height: 51px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 960px) {
  .p-business-topic {
    padding: 40px 60px;
    grid-template-columns: 1fr;
  }
  .p-business-topic .label {
    width: 120px;
    height: 77px;
  }
}
@media screen and (max-width: 428px) {
  .p-business-topic {
    padding: 30px 20px;
  }
  .p-business-topic::before {
    width: 70px;
    height: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-business-topic .c-ttl-sub--lg {
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-business-topic .c-ttl-sub--lg {
    margin-bottom: 0.9375rem;
  }
}

.p-business-project {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1080px) 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 240px;
  grid-row-gap: 0px;
}
@media (min-width: 1501px) {
  .p-business-project {
    grid-column-gap: 300px;
  }
}
@media screen and (max-width: 960px) {
  .p-business-project {
    grid-column-gap: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-business-project {
    grid-column-gap: 0;
  }
}

.p-business-project_inner {
  grid-area: 1/2/2/4;
  padding-left: 0;
}
@media screen and (min-width: 1537px) {
  .p-business-project_inner {
    padding-left: 3%;
  }
}

/* 施工実績
----------------------------------------------------------------- */
/* Swiperコンテナの基本設定 */
.p-business-swiper {
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  /* 画像スタイル */
  /* キャプションのスタイル */
}
.p-business-swiper .p-business-swiper-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1180px;
  padding-right: 6%;
  margin-bottom: 2.5rem;
}
.p-business-swiper .p-business-swiper-ttl .c-ttl-icon {
  margin-bottom: 0;
  line-height: 2;
}
.p-business-swiper .p-business-swiper-ttl .c-ttl-icon .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 960px) {
  .p-business-swiper .p-business-swiper-ttl .c-ttl-icon {
    padding-left: 5%;
  }
}
.p-business-swiper .p-business-swiper-ttl .swiper-button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: 10px;
  /* ナビゲーションボタン */
}
@media screen and (max-width: 428px) {
  .p-business-swiper .p-business-swiper-ttl .swiper-button {
    top: 3px;
  }
}
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-next,
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-prev {
  position: relative;
  color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--whitesmoke);
  top: 0;
  left: auto;
  right: auto;
}
@media screen and (max-width: 428px) {
  .p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-next,
  .p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 13px;
  }
}
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-next::after,
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-prev::after {
  font-size: 15px;
}
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-prev {
  right: 20px;
}
.p-business-swiper .p-business-swiper-ttl .swiper-button .swiper-button-next {
  right: 0;
}
.p-business-swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-business-swiper .slide-caption {
  margin-top: 0.625rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 428px) {
  .p-business-swiper .slide-caption {
    font-size: 0.875rem;
  }
}

/* キャリア
----------------------------------------------------------------- */
.p-business-career-hd {
  background: var(--whitesmoke);
  padding: 3.75rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-business-career-hd {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-business-career-hd {
    padding: 2.5rem 1.25rem;
  }
}
.p-business-career-hd .tit {
  line-height: 1;
  position: absolute;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -33px;
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .p-business-career-hd .tit {
    top: -23px;
    max-width: 260px;
  }
}
.p-business-career-hd .txt {
  text-align: center;
  font-size: clamp(1.3125rem, 1.185rem + 0.942vi, 1.75rem);
  font-weight: 600;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 960px) {
  .p-business-career-hd .txt {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-business-career-hd .txt {
    line-height: 1.6;
    margin-bottom: 3.75rem;
  }
}
.p-business-career-hd .card {
  padding: 40px 60px 30px;
  background: var(--white);
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-business-career-hd .card {
    padding: 30px 20px 20px;
  }
}
.p-business-career-hd .card .ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--main);
  top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 428px) {
  .p-business-career-hd .card .ico {
    width: 55px;
    height: 55px;
  }
}
.p-business-career-hd .card .ico img {
  width: 80%;
  height: auto;
}
.p-business-career-hd .card .ico.karino {
  background: var(--black);
}
.p-business-career-hd .card .ico.karino img {
  width: 50%;
  height: auto;
}
.p-business-career-hd .card h4 {
  text-align: center;
  font-size: clamp(1.438rem, 1.185rem + 0.942vi, 1.75rem);
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 428px) {
  .p-business-career-hd .card h4 {
    margin-bottom: 0.9375rem;
  }
}

.p-business-career-job-block {
  display: block;
  position: relative;
  background-color: var(--whitesmoke);
  padding: 80px 60px;
}
@media screen and (max-width: 960px) {
  .p-business-career-job-block {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block {
    padding: 35px 20px;
  }
}
.p-business-career-job-block .hd-txt {
  font-size: clamp(1rem, 1.185rem + 0.942vi, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.2em;
  line-height: 1.6;
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block .hd-txt {
    font-size: 1.3125rem;
  }
}
.p-business-career-job-block .label {
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: var(--main);
  width: 185px;
  height: 113px;
  padding: 20px 10px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-business-career-job-block .label .category {
  display: block;
  color: var(--white);
  font-size: 1.4375rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.p-business-career-job-block .label .category-2txt {
  margin-left: 12px;
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block .label .category-2txt {
    margin-left: 3px;
  }
}
@media screen and (max-width: 960px) {
  .p-business-career-job-block .label {
    width: 170px;
    height: 87px;
    padding: 15px 10px;
  }
  .p-business-career-job-block .label .category {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block .label {
    width: 125px;
    height: 65px;
    padding: 12px 8px;
  }
  .p-business-career-job-block .label .category {
    font-size: 1rem;
  }
}
.p-business-career-job-block .p-business-career-job-inner,
.p-business-career-job-block .p-business-career-job-inner--re {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  padding: 2.5rem 0;
  gap: 30px;
}
.p-business-career-job-block .p-business-career-job-inner::after,
.p-business-career-job-block .p-business-career-job-inner--re::after {
  content: "";
  display: inline-block;
  background: var(--white);
  width: calc(100% - 80px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-business-career-job-block .p-business-career-job-inner .img,
.p-business-career-job-block .p-business-career-job-inner .txt,
.p-business-career-job-block .p-business-career-job-inner--re .img,
.p-business-career-job-block .p-business-career-job-inner--re .txt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 1.25rem);
      -ms-flex: 0 0 calc(50% - 1.25rem);
          flex: 0 0 calc(50% - 1.25rem);
  min-width: 0;
  z-index: 1;
}
.p-business-career-job-block .p-business-career-job-inner .img img,
.p-business-career-job-block .p-business-career-job-inner--re .img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/321;
}
.p-business-career-job-block .p-business-career-job-inner .txt,
.p-business-career-job-block .p-business-career-job-inner--re .txt {
  padding-left: 2.5rem;
  position: relative;
}
.p-business-career-job-block .p-business-career-job-inner .txt p,
.p-business-career-job-block .p-business-career-job-inner--re .txt p {
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-business-career-job-block .p-business-career-job-inner,
  .p-business-career-job-block .p-business-career-job-inner--re {
    padding: 1.875rem 0;
  }
  .p-business-career-job-block .p-business-career-job-inner::after,
  .p-business-career-job-block .p-business-career-job-inner--re::after {
    width: calc(100% - 40px);
  }
  .p-business-career-job-block .p-business-career-job-inner .img img,
  .p-business-career-job-block .p-business-career-job-inner--re .img img {
    aspect-ratio: 352/264;
  }
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block .p-business-career-job-inner,
  .p-business-career-job-block .p-business-career-job-inner--re {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0;
  }
  .p-business-career-job-block .p-business-career-job-inner .txt,
  .p-business-career-job-block .p-business-career-job-inner--re .txt {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .p-business-career-job-block .p-business-career-job-inner .txt .c-ttl-sub,
  .p-business-career-job-block .p-business-career-job-inner--re .txt .c-ttl-sub {
    margin-bottom: 0.9375rem;
  }
  .p-business-career-job-block .p-business-career-job-inner .img img,
  .p-business-career-job-block .p-business-career-job-inner--re .img img {
    width: 100%;
    aspect-ratio: 520/321;
    margin-left: -20px;
  }
  .p-business-career-job-block .p-business-career-job-inner::after,
  .p-business-career-job-block .p-business-career-job-inner--re::after {
    width: calc(100% - 0px);
    height: calc(100% - 100px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.p-business-career-job-block .p-business-career-job-inner--re .txt {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 0;
  padding-right: 2.5rem;
}
.p-business-career-job-block .p-business-career-job-inner--re::after {
  left: auto;
  right: 0;
}
@media screen and (max-width: 428px) {
  .p-business-career-job-block .p-business-career-job-inner--re .txt {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .p-business-career-job-block .p-business-career-job-inner--re .img img {
    display: block;
    margin-left: 20px;
  }
}

/* ==========================================================================
社員のこと
========================================================================== */
/* リード文
----------------------------------------------------------------- */
.p-interview-infor-wrap {
  padding: 2.5rem 0 8.75rem;
}
@media screen and (max-width: 960px) {
  .p-interview-infor-wrap {
    padding: 2.5rem 0 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-infor-wrap {
    padding: 1.25rem 0 5rem;
  }
}

.p-interview-infor .department {
  font-size: clamp(1.25rem, 1.099rem + 0.565vi, 1.438rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
.p-interview-infor .department .year {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-left: 0.625rem;
}
.p-interview-infor .hashtags li {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  margin-right: 1em;
}
.p-interview-infor .hashtags li::before {
  content: "#";
  color: var(--main);
  margin-right: 0.25em;
}

.p-interview-lead {
  position: relative;
  background: var(--whitesmoke);
  padding: 3.75rem;
}
@media screen and (max-width: 960px) {
  .p-interview-lead {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-lead {
    padding: 1.875rem;
  }
}
.p-interview-lead .label {
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: var(--sub);
  width: 140px;
  height: 90px;
  padding: 10px 12px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-interview-lead .label .category {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.813rem, 0.661rem + 0.565vi, 1rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.p-interview-lead .label .number {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.438rem, 1.286rem + 0.565vi, 1.625rem);
  line-height: 1;
  font-weight: 600;
  margin-left: 9px;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .p-interview-lead .label {
    width: 120px;
    height: 77px;
    padding: 8px 10px;
  }
}

.p-interview-lead-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem 3.75rem;
}
.p-interview-lead-inner .img img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 428px) {
  .p-interview-lead-inner .img img {
    width: 140px;
    height: 140px;
  }
}
.p-interview-lead-inner .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 428px) {
  .p-interview-lead-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 428px) {
  .p-interview-inner--re {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-interview-inner--re .c-flex--md {
    gap: 2.5rem;
  }
}

/* これからのキャリア
----------------------------------------------------------------- */
.p-interview-topic {
  position: relative;
  padding: 3.125rem 0;
}
@media screen and (max-width: 960px) {
  .p-interview-topic {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-topic {
    padding: 2.5rem 0 0;
  }
}
.p-interview-topic .label {
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: var(--sub);
  width: 140px;
  height: 90px;
  padding: 10px 8px;
  z-index: 5;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-interview-topic .label .category {
  display: block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.813rem, 0.661rem + 0.565vi, 1.125rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-indent: 1em;
}
@media screen and (max-width: 960px) {
  .p-interview-topic .label {
    width: 120px;
    height: 77px;
    padding: 8px 10px;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-topic .label {
    width: 110px;
    height: 65px;
    padding: 8px 6px;
  }
}
.p-interview-topic .p-interview-topic-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem 3.125rem;
}
.p-interview-topic .p-interview-topic-inner .img,
.p-interview-topic .p-interview-topic-inner .txt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 1.875rem);
      -ms-flex: 0 0 calc(50% - 1.875rem);
          flex: 0 0 calc(50% - 1.875rem);
  min-width: 0;
  z-index: 1;
}
.p-interview-topic .p-interview-topic-inner .img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/321;
}
.p-interview-topic .p-interview-topic-inner .txt {
  padding-left: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-interview-topic .p-interview-topic-inner .txt h4 {
  font-size: clamp(1.438rem, 1.185rem + 0.942vi, 1.75rem);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .p-interview-topic .p-interview-topic-inner .txt {
    padding-left: 40px;
  }
  .p-interview-topic .p-interview-topic-inner .img img {
    aspect-ratio: 352/264;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-topic .p-interview-topic-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview-topic .p-interview-topic-inner .txt {
    padding-left: 18px;
    padding-right: 18px;
  }
  .p-interview-topic .p-interview-topic-inner .txt h4 {
    margin-bottom: 15px;
  }
  .p-interview-topic .p-interview-topic-inner .img img {
    width: 100%;
    aspect-ratio: 520/321;
    margin-left: 20px;
  }
}
.p-interview-topic::after {
  content: "";
  display: inline-block;
  background: var(--whitesmoke);
  width: calc(100% - 80px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-interview-topic::after {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 428px) {
  .p-interview-topic::after {
    width: 100%;
    height: calc(100% - 100px);
  }
}

/* インタビュー2
----------------------------------------------------------------- */
.p-interview-2-wrap {
  padding: 8.75rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-interview-2-wrap {
    padding: 6.25rem 0 5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-interview-2-wrap {
    padding: 5rem 0 5rem;
  }
}

/* ==========================================================================
よろずの働き方
========================================================================== */
/* 数字で見る
----------------------------------------------------------------- */
.p-working-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 428px) {
  .p-working-data {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, auto);
  }
}
.p-working-data .p-working-data-box {
  background: var(--whitesmoke);
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .p-working-data .p-working-data-box {
    padding: 18px;
  }
}
@media screen and (max-width: 428px) {
  .p-working-data .p-working-data-box {
    padding: 20px;
  }
}
.p-working-data .p-working-data-box .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background: var(--white);
  color: var(--main);
  font-size: 1.4375rem;
  line-height: 1;
  padding: 8px 10px 9px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .p-working-data .p-working-data-box .label {
    padding: 5px 8px 6px;
    font-size: clamp(1rem, 0.647rem + 1.318vi, 1.438rem);
  }
}
@media screen and (max-width: 428px) {
  .p-working-data .p-working-data-box .label {
    padding: 8px 10px 9px;
    font-size: 1.25rem;
  }
}
.p-working-data .p-working-data-box .value {
  font-size: 5.6875rem;
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  white-space: nowrap;
}
.p-working-data .p-working-data-box .value span {
  font-size: 2.375rem;
  margin-left: 0.15em;
}
@media screen and (max-width: 960px) {
  .p-working-data .p-working-data-box .value {
    font-size: clamp(2.375rem, -0.301rem + 9.981vi, 5.688rem);
  }
  .p-working-data .p-working-data-box .value span {
    font-size: clamp(1.125rem, 0.519rem + 2.26vi, 1.875rem);
  }
}
@media screen and (max-width: 428px) {
  .p-working-data .p-working-data-box .value {
    font-size: 4.6875rem;
  }
  .p-working-data .p-working-data-box .value span {
    font-size: 1.875rem;
  }
}
.p-working-data .p-working-data-box .desc {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
.p-working-data .p-working-data-box:nth-child(6) {
  grid-column: 1;
  grid-row: 5;
}
.p-working-data .p-working-data-box:nth-child(7) {
  grid-column: 1;
  grid-row: 6;
}
@media screen and (max-width: 428px) {
  .p-working-data .p-working-data-box:nth-child(6), .p-working-data .p-working-data-box:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-working-data .p-working-data-ttl .label {
  margin-bottom: 10px;
}
.p-working-data .large {
  grid-row: span 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.p-working-data .small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-working-data .small .icon-placeholder img {
  min-width: 60px;
  height: auto;
}

/* 各種研修
----------------------------------------------------------------- */
.p-working-training {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-working-training .item {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  background: var(--white);
}
@media screen and (max-width: 834px) {
  .p-working-training .item {
    padding: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 428px) {
  .p-working-training .item {
    padding: 20px;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
}
.p-working-training .item:last-child {
  margin-bottom: 0;
}
.p-working-training .title {
  font-size: clamp(1.438rem, 1.185rem + 0.942vi, 1.75rem);
  font-weight: 600;
  color: var(--main);
  margin: 0;
}
.p-working-training .text {
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 428px) {
  .p-working-training-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 191px;
    width: 100%;
  }
}

/* 福利厚生
----------------------------------------------------------------- */
.p-working-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 960px) {
  .p-working-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 428px) {
  .p-working-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.p-working-benefits .benefit-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 30px 30px;
  background: var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .p-working-benefits .benefit-item {
    padding: 30px 20px 30px;
  }
}
.p-working-benefits .benefit-title {
  font-size: 1.4375rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: center;
  height: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 428px) {
  .p-working-benefits .benefit-title {
    height: auto;
    margin-bottom: 20px;
  }
}
.p-working-benefits .benefit-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .p-working-benefits .benefit-icon {
    width: 110px;
    height: 110px;
  }
}
@media screen and (max-width: 428px) {
  .p-working-benefits .benefit-icon {
    width: 100px;
    height: 100px;
  }
}
.p-working-benefits .benefit-text {
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
}
.p-working-benefits .benefit-list li {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 1em;
}

/* ==========================================================================
若手社員に聞く10の質問
========================================================================== */
/* 働く人のリアル
----------------------------------------------------------------- */
.p-faq-question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.p-faq-question .icon {
  width: 62px;
  height: 62px;
  aspect-ratio: 75/64;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-top: -5px;
}
.p-faq-question .icon::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: var(--main);
  top: calc(50% - 5px);
  right: -10px;
  width: 10px;
  height: 8px;
}
.p-faq-question h3 {
  font-size: clamp(1.625rem, 1.272rem + 1.318vi, 2.063rem);
  font-weight: 600;
}
@media screen and (max-width: 428px) {
  .p-faq-question {
    gap: 15px;
  }
  .p-faq-question .icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  .p-faq-question .icon::after {
    top: calc(50% - 3.5px);
    right: -6px;
    width: 7px;
    height: 8px;
  }
  .p-faq-question h3 {
    font-size: 1.4375rem;
  }
}

.p-faq-tags,
.p-faq-answers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}
.p-faq-tags .bubble,
.p-faq-answers .bubble {
  background: var(--whitesmoke);
  padding: 40px 30px;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.p-faq-tags .bubble::after,
.p-faq-answers .bubble::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--whitesmoke);
  width: 25px;
  height: 25px;
  bottom: -23px;
  left: calc(50% - 12px);
}
.p-faq-tags .bubble .job-label,
.p-faq-answers .bubble .job-label {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--sub);
  font-family: "Zen Old Mincho", serif;
  color: var(--white);
  padding: 7px 12px 8px;
  font-weight: 600;
  line-height: 1;
}
.p-faq-tags .bubble.small,
.p-faq-answers .bubble.small {
  text-align: center;
  padding: 30px 20px;
}
@media screen and (max-width: 960px) {
  .p-faq-tags,
  .p-faq-answers {
    gap: 30px 30px;
  }
  .p-faq-tags .bubble,
  .p-faq-answers .bubble {
    padding: 30px;
  }
  .p-faq-tags .bubble::after,
  .p-faq-answers .bubble::after {
    width: 20px;
    height: 20px;
    bottom: -19px;
    left: calc(50% - 10px);
  }
}
@media screen and (max-width: 428px) {
  .p-faq-tags .bubble,
  .p-faq-answers .bubble {
    padding: 20px;
  }
  .p-faq-tags .bubble .job-label,
  .p-faq-answers .bubble .job-label {
    top: -10px;
    padding: 5px 8px 6px;
    font-size: 0.875rem;
  }
  .p-faq-tags .bubble.small,
  .p-faq-answers .bubble.small {
    padding: 20px 20px;
  }
}

.p-faq-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 960px) {
  .p-faq-tags {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 色違い */
.bg-whitesmoke .p-faq-tags .bubble,
.bg-whitesmoke .p-faq-answers .bubble {
  background: var(--white);
}
.bg-whitesmoke .p-faq-tags .bubble::after,
.bg-whitesmoke .p-faq-answers .bubble::after {
  background: var(--white);
}

/* レスポンシブ */
@media screen and (max-width: 428px) {
  .p-faq-answers,
  .p-faq-tags {
    grid-template-columns: 1fr;
  }
}
/* よくあるご質問１
----------------------------------------------------------------- */
.p-faq__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-faq__wrap {
    gap: 1.875rem;
  }
}

.p-faq__cont {
  padding: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-faq__cont {
    padding: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 428px) {
  .p-faq__cont {
    padding: 1.875rem 1.25rem;
  }
}
.p-faq__cont .p-faq-q {
  vertical-align: middle;
  position: relative;
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
  padding-left: 4.375rem;
}
@media screen and (max-width: 834px) {
  .p-faq__cont .p-faq-q {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .p-faq__cont .p-faq-q {
    font-size: 1.4375rem;
    padding-left: 3.125rem;
  }
}
.p-faq__cont .p-faq-q::before {
  content: "Q";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.0625rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--white);
  background-color: var(--main);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-faq__cont .p-faq-q::before {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 428px) {
  .p-faq__cont .p-faq-q::before {
    font-size: 1.4375rem;
    width: 36px;
    height: 36px;
  }
}
.p-faq__cont .p-faq-a {
  position: relative;
  margin-top: 1.875rem;
  padding-left: 4.375rem;
}
@media screen and (max-width: 428px) {
  .p-faq__cont .p-faq-a {
    margin-top: 1.25rem;
    padding-left: 3.125rem;
  }
}

/* パターン2
----------------------------------------------------------------- */
.p-faq2__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 428px) {
  .p-faq2__wrap {
    gap: 1.875rem;
  }
}

/*アコーディオン全体*/
.p-faq2__cont {
  padding: 1.5rem 1.875rem 1.875rem;
}
@media screen and (max-width: 428px) {
  .p-faq2__cont {
    padding: 1.25rem 1.25rem;
  }
}
.p-faq2__cont .p-faq2-area {
  /*アコーディオンタイトル*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.p-faq2__cont .p-faq2-area .p-faq2-q {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  margin-top: 5px;
  position: relative;
  font-size: 1.4375rem;
  line-height: 1.6;
  font-weight: 700;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
}
@media screen and (max-width: 960px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q {
    font-size: 1.125rem;
    padding: 0 2.5rem;
    margin-top: 0px;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q::before, .p-faq2__cont .p-faq2-area .p-faq2-q::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::before, .p-faq2__cont .p-faq2-area .p-faq2-q::after {
    width: 15px;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q::before {
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::before {
    top: 15px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q::after {
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::after {
    top: 15px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner {
  position: relative;
}
.p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
  content: "Q";
  display: block;
  position: absolute;
  left: -50px;
  top: -3px;
  font-size: 1.4375rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--white);
  background-color: var(--main);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
    left: -48px;
  }
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
    font-size: 1.1875rem;
    top: 0px;
    left: -40px;
    width: 30px;
    height: 30px;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q.close::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-faq2__cont .p-faq2-area .p-faq2-q.close::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-faq2__cont .p-faq2-area .p-faq2-a {
  display: none;
  margin-top: 1.875rem;
  padding: 0 3.125rem 0 3.75rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 960px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a {
    padding: 0 3.125rem 0 3.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a {
    padding: 0 2.5rem;
    margin-top: 1.25rem;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-a::before {
  content: "A";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 1.4375rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--main);
  background-color: var(--white);
  border: 1px solid var(--main);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a::before {
    left: 3px;
  }
}
@media screen and (max-width: 428px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a::before {
    font-size: 1.1875rem;
    left: 0;
    margin-top: 1px;
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
募集要項
========================================================================== */
/* 高卒採用について
----------------------------------------------------------------- */
.p-guideline-school-txt-bold {
  font-size: 1.1875rem;
}
@media screen and (max-width: 428px) {
  .p-guideline-school-txt-bold {
    font-size: 1rem;
  }
}

.p-guideline-school-phone {
  padding: 2.5rem;
}
@media screen and (max-width: 428px) {
  .p-guideline-school-phone {
    padding: 1.25rem;
  }
}

/* エントリーはこちら
----------------------------------------------------------------- */
.p-guideline-contact-box {
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 834px) {
  .p-guideline-contact-box {
    padding: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 428px) {
  .p-guideline-contact-box {
    padding: 1.875rem 1.25rem;
  }
}
.p-guideline-contact-box h4 {
  font-size: clamp(1.438rem, 1.185rem + 0.942vi, 1.75rem);
  color: var(--white);
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.margin-auto {
  margin: auto;
}

.margin-xxxsm-top {
  margin-top: 5px;
}

.margin-xxsm-top {
  margin-top: 0.625rem;
}

.margin-xsm-top {
  margin-top: 1.25rem;
}
@media screen and (max-width: 960px) {
  .margin-xsm-top {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .margin-xsm-top {
    margin-top: 0.625rem;
  }
}

.margin-sm-top {
  margin-top: 1.875rem;
}
@media screen and (max-width: 428px) {
  .margin-sm-top {
    margin-top: 1.25rem;
  }
}

.margin-md-top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 428px) {
  .margin-md-top {
    margin-top: 1.875rem;
  }
}

.margin-xmd-top {
  margin-top: 3.75rem;
}
@media screen and (max-width: 428px) {
  .margin-xmd-top {
    margin-top: 2.5rem;
  }
}

.margin-lg-top {
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .margin-lg-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 428px) {
  .margin-lg-top {
    margin-top: 2.5rem;
  }
}

.margin-xlg-top {
  margin-top: 6.25rem;
}
@media screen and (max-width: 960px) {
  .margin-xlg-top {
    margin-top: 5rem;
  }
}

.margin-xxlg-top {
  margin-top: 7.5rem;
}
@media screen and (max-width: 960px) {
  .margin-xxlg-top {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .margin-xxlg-top {
    margin-top: 3.75rem;
  }
}

.margin-xxxlg-top {
  margin-top: 8.75rem;
}
@media screen and (max-width: 960px) {
  .margin-xxxlg-top {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .margin-xxxlg-top {
    margin-top: 5rem;
  }
}

.margin-xxxxlg-top {
  margin-top: 10rem;
}
@media screen and (max-width: 960px) {
  .margin-xxxxlg-top {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .margin-xxxxlg-top {
    margin-top: 5rem;
  }
}

.margin-30-top {
  margin-top: 1.875rem;
}

.margin-xxsm-right {
  margin-right: 0.625rem;
}

/* パディング
----------------------------------------------------------------- */
.padding-sm {
  padding: 1.875rem;
}

.padding-md {
  padding: 2.5rem;
}
@media screen and (max-width: 428px) {
  .padding-md {
    padding: 1.875rem;
  }
}

.padding-xlg-top {
  padding-top: 6.25rem;
}
@media screen and (max-width: 428px) {
  .padding-xlg-top {
    padding-top: 5rem;
  }
}

.padding-xxlg-top {
  padding-top: 7.5rem;
}
@media screen and (max-width: 960px) {
  .padding-xxlg-top {
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 428px) {
  .padding-xxlg-top {
    padding-top: 6.25rem;
  }
}

/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Roboto", sans-serif;
}

.txt-gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.txt-bold {
  font-weight: 700 !important;
}

.txt-lead {
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .txt-lead {
    line-height: 2;
  }
}
@media screen and (max-width: 428px) {
  .txt-lead {
    line-height: 1.8;
  }
}

.txt-cap {
  font-size: 1rem;
  line-height: 1.4;
}

.txt-sm {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(49, 46, 38, 0.8);
}
@media screen and (max-width: 428px) {
  .txt-sm {
    font-size: 14px;
  }
}

.txt-lg {
  font-size: 1.1875rem;
  line-height: 2;
}
@media screen and (max-width: 428px) {
  .txt-lg {
    font-size: 1.125rem;
  }
}

.txt-xlg {
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 428px) {
  .txt-xlg {
    font-size: 1.125rem;
  }
}

.txt-lead {
  line-height: 2.2;
}
@media screen and (max-width: 960px) {
  .txt-lead {
    line-height: 2;
  }
}

.txt-link,
.txt-link--arrow,
.txt-link--win {
  font-weight: 700;
  line-height: 1.6;
  color: var(--main);
  position: relative;
}
.txt-link::before,
.txt-link--arrow::before,
.txt-link--win::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.txt-link--arrow::before {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: 4px;
  margin-top: 2px;
}
.txt-link--arrow:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_green.svg);
}

.txt-link--win {
  margin-right: 2px;
}
.txt-link--win::after {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-left: 3px;
}
.txt-link--win:hover:after {
  background-image: url(/recruit/resource/images/ico_win_green.svg);
}

.txt-center {
  text-align: center !important;
}

.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-top {
  vertical-align: top !important;
}

.txt-center--sp-left {
  text-align: center !important;
}
@media screen and (max-width: 428px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

.txt-center--tb-left {
  text-align: center !important;
}
@media screen and (max-width: 834px) {
  .txt-center--tb-left {
    text-align: left !important;
  }
}

.txt-black-800 {
  color: #5C5C5C !important;
}

.txt-black-600 {
  color: #858585 !important;
}

.txt-black-400 {
  color: #ADADAD !important;
}

.txt-black-200 {
  color: #D6D6D6 !important;
}

.txt-black-100 {
  color: #EBEBEB !important;
}

.txt-black {
  color: #312E26 !important;
}

.txt-white {
  color: #fff !important;
}

.txt-border {
  color: #E5E5E5 !important;
}

.txt-main {
  color: #54B6E4 !important;
}

.txt-sub {
  color: #94CB5E !important;
}

.txt-hover {
  color: #54B6E4 !important;
}

.txt-whitesmoke {
  color: #F0EFEC !important;
}

.txt-lightgray {
  color: #E6E6EA !important;
}

.txt-silver {
  color: #D4D4D8 !important;
}

.txt-gray {
  color: #67676B !important;
}

.txt-selection_txt {
  color: #525256 !important;
}

.txt-selection_bg {
  color: #FFD0C4 !important;
}

.txt-tomato {
  color: #EF423B !important;
}

.txt-point {
  color: #FF00EA !important;
}

/* 電話番号
----------------------------------------------------------------- */
.txt-tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 428px) {
  .txt-tel {
    gap: 5px;
    margin-left: -20px;
  }
}
.txt-tel img {
  margin-right: 5px;
  width: 45px;
  vertical-align: baseline;
}
@media screen and (max-width: 428px) {
  .txt-tel img {
    width: 35px;
  }
}
.txt-tel a[href^="tel:"] {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .txt-tel a[href^="tel:"] {
    font-size: 3rem;
  }
}
@media screen and (max-width: 960px) {
  .txt-tel a[href^="tel:"] {
    font-size: 5.7553956835vw;
  }
}
@media screen and (max-width: 428px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
    font-size: 1.9375rem;
  }
  .txt-tel a[href^="tel:"]:hover {
    color: var(--hover);
  }
}

.txt-tel__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
@media screen and (max-width: 834px) {
  .txt-tel__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-top: 9px;
  }
}
.txt-tel__info p {
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .txt-tel__info p {
    font-size: 13px;
  }
}

/*-==========================================================================
角丸
==========================================================================*/
.radi10 {
  border-radius: 0.625rem;
}

.radi15 {
  border-radius: 0.9375rem;
}

.radi20 {
  border-radius: 1.25rem;
}

.radi30 {
  border-radius: 1.875rem;
}

/*-==========================================================================
boder
==========================================================================*/
/*-==========================================================================
背景
==========================================================================*/
.bg-black-800 {
  background-color: #5C5C5C !important;
}

.bg-black-600 {
  background-color: #858585 !important;
}

.bg-black-400 {
  background-color: #ADADAD !important;
}

.bg-black-200 {
  background-color: #D6D6D6 !important;
}

.bg-black-100 {
  background-color: #EBEBEB !important;
}

.bg-black {
  background-color: #312E26 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-border {
  background-color: #E5E5E5 !important;
}

.bg-main {
  background-color: #54B6E4 !important;
}

.bg-sub {
  background-color: #94CB5E !important;
}

.bg-hover {
  background-color: #54B6E4 !important;
}

.bg-whitesmoke {
  background-color: #F0EFEC !important;
}

.bg-lightgray {
  background-color: #E6E6EA !important;
}

.bg-silver {
  background-color: #D4D4D8 !important;
}

.bg-gray {
  background-color: #67676B !important;
}

.bg-selection_txt {
  background-color: #525256 !important;
}

.bg-selection_bg {
  background-color: #FFD0C4 !important;
}

.bg-tomato {
  background-color: #EF423B !important;
}

.bg-point {
  background-color: #FF00EA !important;
}

.bg-even-whitesmoke:nth-of-type(even) {
  background-color: var(--whitesmoke);
}

.bg-parallax-img {
  height: 410px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0%;
}
@media screen and (max-width: 834px) {
  .bg-parallax-img {
    height: 320px;
  }
}
@media screen and (max-width: 428px) {
  .bg-parallax-img {
    height: 180px;
  }
}

/* ==========================================================================
 スクロール
=========================================================================*/
.scroll-anchor {
  display: block;
}
@media screen and (max-width: 960px) {
  .scroll-anchor {
    padding-top: 5rem;
    margin-top: -5rem;
  }
}
@media screen and (max-width: 428px) {
  .scroll-anchor {
    padding-top: 1.875rem;
    margin-top: -1.875rem;
  }
}

.scroll-anchor__idx-employee {
  padding-top: 2.5rem;
  margin-top: -2.5rem;
}

/* ==========================================================================
 非表示
=========================================================================*/
.visible-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/*-==========================================================================
特定の画面幅で表示・非表示するクラス
==========================================================================*/
/* xpc以上*/
@media screen and (min-width: 1537px) {
  .visible-more-xpc {
    display: block;
  }
}
@media screen and (max-width: 1536px) {
  .visible-more-xpc {
    display: none !important;
  }
}

/* xpcのみ*/
@media screen and (min-width: 1281px) and (max-width: 1536px) {
  .visible-xpc {
    display: block;
  }
}
@media screen and (max-width: 1280px), (min-width: 1537px) {
  .visible-xpc {
    display: none !important;
  }
}

/* xpc以下*/
@media screen and (max-width: 1536px) {
  .visible-less-xpc {
    display: block;
  }
}
@media screen and (min-width: 1537px) {
  .visible-less-xpc {
    display: none !important;
  }
}

/* pc以上*/
@media screen and (min-width: 1281px) {
  .visible-more-pc {
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  .visible-more-pc {
    display: none !important;
  }
}

/* pcのみ*/
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (max-width: 960px), (min-width: 1281px) {
  .visible-pc {
    display: none !important;
  }
}

/*  pc以下*/
@media screen and (max-width: 1280px) {
  .visible-less-pc {
    display: block;
  }
}
@media screen and (min-width: 1281px) {
  .visible-less-pc {
    display: none !important;
  }
}

/* lp以上*/
@media screen and (min-width: 961px) {
  .visible-more-lp {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .visible-more-lp {
    display: none !important;
  }
}

/* lpのみ*/
@media screen and (min-width: 835px) and (max-width: 960px) {
  .visible-lp {
    display: block;
  }
}
@media screen and (max-width: 834px), (min-width: 961px) {
  .visible-lp {
    display: none !important;
  }
}

/*  lp以下*/
@media screen and (max-width: 960px) {
  .visible-less-lp {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .visible-less-lp {
    display: none !important;
  }
}

/* tb以上*/
@media screen and (min-width: 835px) {
  .visible-more-tb {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .visible-more-tb {
    display: none !important;
  }
}

/* tbのみ*/
@media screen and (min-width: 429px) and (max-width: 834px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 428px), (min-width: 835px) {
  .visible-tb {
    display: none !important;
  }
}

/*  tb以下*/
@media screen and (max-width: 834px) {
  .visible-less-tb {
    display: block;
  }
}
@media screen and (min-width: 835px) {
  .visible-less-tb {
    display: none !important;
  }
}

/* sp以上*/
@media screen and (min-width: 429px) {
  .visible-more-sp {
    display: block;
  }
}
@media screen and (max-width: 428px) {
  .visible-more-sp {
    display: none !important;
  }
}

/* spのみ*/
@media screen and (max-width: 428px) {
  .visible-sp {
    display: block;
  }
}
@media screen and (min-width: 429px) {
  .visible-sp {
    display: none !important;
  }
}

/*-==========================================================================
その他
==========================================================================*/
.js-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 99999;
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */