@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: #313131;
  --black-rgb: 49,
  49,
  49;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --border: #E5E5E5;
  --border-rgb: 229,
  229,
  229;
  --disabled: #B8B9B7;
  --disabled-rgb: 184,
  185,
  183;
  --main: #4D9C28;
  --main-rgb: 77,
  156,
  40;
  --sub: #90E43D;
  --sub-rgb: 144,
  228,
  61;
  --job1: #10B23B;
  --job1-rgb: 16,
  178,
  59;
  --job2: #409F13;
  --job2-rgb: 64,
  159,
  19;
  --job3: #68BB08;
  --job3-rgb: 104,
  187,
  8;
  --job4: #00AF83;
  --job4-rgb: 0,
  175,
  131;
  --hover: #00E1FF;
  --hover-rgb: 0,
  225,
  255;
  --whitesmoke: #F2F4F0;
  --whitesmoke-rgb: 242,
  244,
  240;
  --selection_txt: #525252;
  --selection_txt-rgb: 82,
  82,
  82;
  --selection_bg: #8eda9f;
  --selection_bg-rgb: 142,
  218,
  159;
  --tomato: #ef423b;
  --tomato-rgb: 239,
  66,
  59;
}

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

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

::-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;
  letter-spacing: 0.02em;
}

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

/* ==========================================================================
ヘッダー
========================================================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--main);
  z-index: 9999;
}

/* PC版メニュー 1段
----------------------------------------------------------------- */
header {
  position: absolute;
  left: 0;
  top: 0;
}
header .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;
  max-width: 207px;
  width: 100%;
  z-index: 800;
  position: relative;
}
header h1.l-hd-logo {
  position: relative;
  padding: 27px 37px;
  z-index: 700;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: var(--white);
  border-radius: 0 0 40px 0;
}
@media screen and (max-width: 1024px) {
  header h1.l-hd-logo {
    padding: 10px 15px 15px 15px;
  }
}
header h1.l-hd-logo::before, header h1.l-hd-logo::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: -40px;
  background-image: url(/recruit/resource/images/corner.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 460px) {
  header h1.l-hd-logo::before, header h1.l-hd-logo::after {
    top: 10px;
    width: 30px;
    height: 30px;
    right: -30px;
  }
}
header h1.l-hd-logo::after {
  top: auto;
  right: auto;
  bottom: -40px;
  left: 20px;
}
@media screen and (max-width: 460px) {
  header h1.l-hd-logo::after {
    left: 10px;
    bottom: -30px;
  }
}
header 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 133px;
  height: auto;
  aspect-ratio: 133/168.4;
}
@media screen and (max-width: 1024px) {
  header h1.l-hd-logo a {
    width: 80%;
    margin: auto;
  }
}
header h1.l-hd-logo a img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
header h1.l-hd-logo a:hover {
  opacity: 0.7;
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-hd-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  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: 20px;
}
@media screen and (max-width: 460px) {
  .l-hd-menu {
    gap: 10px;
  }
}

.l-toggle {
  display: block;
  width: 100px;
  height: 100px;
  background-color: var(--main);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .l-toggle {
    width: 85px;
    height: 85px;
  }
}
@media screen and (max-width: 460px) {
  .l-toggle {
    width: 70px;
    height: 70px;
  }
}
.l-toggle:hover {
  background-color: var(--sub);
}
.l-toggle p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 820px) {
  .l-toggle p {
    top: 23px;
  }
}
@media screen and (max-width: 460px) {
  .l-toggle p {
    top: 18px;
  }
}
.l-toggle p::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "MENU";
  display: block;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 460px) {
  .l-toggle p::before {
    font-size: 13px;
  }
}
.l-toggle span {
  display: block;
  width: 46px;
  height: 3px;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .l-toggle span {
    width: 40px;
  }
}
.l-toggle span:nth-of-type(1) {
  bottom: 43px;
}
@media screen and (max-width: 820px) {
  .l-toggle span:nth-of-type(1) {
    bottom: 35px;
  }
}
@media screen and (max-width: 460px) {
  .l-toggle span:nth-of-type(1) {
    bottom: 28px;
  }
}
.l-toggle span:nth-of-type(2) {
  bottom: 29px;
}
@media screen and (max-width: 820px) {
  .l-toggle span:nth-of-type(2) {
    bottom: 23px;
  }
}
@media screen and (max-width: 460px) {
  .l-toggle span:nth-of-type(2) {
    bottom: 18px;
  }
}

body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-color: var(--sub);
}
body.open .l-toggle p::before {
  content: "CLOSE";
}
body.open .l-toggle span:nth-of-type(1) {
  -webkit-transform: rotate(-22deg) translateX(-50%);
          transform: rotate(-22deg) translateX(-50%);
}
@media screen and (max-width: 460px) {
  body.open .l-toggle span:nth-of-type(1) {
    bottom: 31px;
  }
}
body.open .l-toggle span:nth-of-type(2) {
  bottom: 26px;
  -webkit-transform: rotate(22deg) translateX(-50%);
          transform: rotate(22deg) translateX(-50%);
}
@media screen and (max-width: 820px) {
  body.open .l-toggle span:nth-of-type(2) {
    bottom: 17px;
  }
}
@media screen and (max-width: 460px) {
  body.open .l-toggle span:nth-of-type(2) {
    bottom: 16px;
  }
}

.l-hd-entry {
  display: block;
  width: 100px;
  height: 100px;
  background-color: var(--whitesmoke);
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 15px;
  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;
  gap: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .l-hd-entry {
    width: 85px;
    height: 85px;
  }
}
@media screen and (max-width: 460px) {
  .l-hd-entry {
    width: 70px;
    height: 70px;
  }
}
.l-hd-entry p {
  color: var(--main);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hd-entry p.en {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 460px) {
  .l-hd-entry p.en {
    font-size: 14px;
  }
}
.l-hd-entry p.ja {
  font-size: 0.8125rem;
}
@media screen and (max-width: 460px) {
  .l-hd-entry p.ja {
    font-size: 12px;
  }
}
.l-hd-entry:hover {
  background-color: var(--sub);
}
.l-hd-entry:hover p {
  color: var(--white);
}

/* ドロワーメニュー（toggleを押して出現するメニュー/SPメニュー）
----------------------------------------------------------------- */
.l-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: var(--main);
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100%;
  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;
}
@media screen and (max-width: 820px) {
  .l-drawer-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.l-drawer-body .l-drawer-body__inner {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  padding-left: 100px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1366px) {
  .l-drawer-body .l-drawer-body__inner {
    padding-left: 7.3206442167%;
  }
}
@media screen and (max-width: 820px) {
  .l-drawer-body .l-drawer-body__inner {
    overflow: visible;
    -webkit-overflow-scrolling: auto;
    padding-bottom: 40px;
    padding-left: 12%;
    padding-right: 12%;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-body .l-drawer-body__inner {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 820px) {
  .l-drawer-body .l-drawer-body__inner .c-btn-cosite {
    margin-top: 3.75rem;
  }
}
.l-drawer-body .l-drawer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .l-drawer-body .l-drawer-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-drawer-body .l-drawer-logo img {
  max-width: 270px;
  width: 100%;
  height: 52px;
}
@media screen and (max-width: 460px) {
  .l-drawer-body .l-drawer-logo img {
    height: 40px;
    width: auto;
    max-width: initial;
  }
}
.l-drawer-body .l-drawer-logo p {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 460px) {
  .l-drawer-body .l-drawer-logo p {
    padding-left: 56px;
  }
}
.l-drawer-body .l-drawer-logo:hover {
  opacity: 0.7;
}

.l-drawer-nav-main {
  position: relative;
  margin-top: 4.375rem;
  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.875rem;
  max-width: 432px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .l-drawer-nav-main {
    max-width: 680px;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main {
    gap: 1.875rem;
  }
}

.l-drawer-nav-main__menu {
  padding-left: 30.27px;
  display: block;
  position: relative;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  width: calc(100% - 30.27px);
}
.l-drawer-nav-main__menu::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_ttl-white.svg);
  width: 18px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu {
    padding-left: 30.27px;
    font-size: 1.25rem;
  }
}
.l-drawer-nav-main__menu:hover {
  color: var(--sub);
}

.l-drawer-img {
  width: 54.9780380673%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1366px) {
  .l-drawer-img {
    width: 48%;
  }
}
@media screen and (max-width: 820px) {
  .l-drawer-img {
    width: 100%;
    max-height: 500px;
    max-width: initial;
    top: auto;
    bottom: auto;
    position: relative;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-img {
    top: auto;
    bottom: auto;
    position: relative;
    margin-top: 240px;
    max-height: 300px;
  }
}
.l-drawer-img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.l-drawer-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;
}
.l-drawer-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -1px;
  top: 0;
  background-image: url(/recruit/resource/images/menu_clip.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  aspect-ratio: 237/844;
}
@media screen and (max-width: 820px) {
  .l-drawer-img::before {
    left: 0;
    top: -1px;
    height: auto;
    aspect-ratio: 820/177;
    background-image: url(/recruit/resource/images/menu_clip-tb.svg);
  }
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.l-drawer-acc {
  width: 100%;
  position: relative;
}
.l-drawer-acc .l-drawer-nav-main__menu:after {
  content: none;
}
.l-drawer-acc .l-drawer-acc__btn {
  position: absolute;
  right: 0;
  top: 33px;
  display: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn {
    width: 20px;
    height: 20px;
    top: 12px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
    width: 16px;
    height: 1.5px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before {
  top: 0;
  right: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.l-drawer-acc .l-drawer-acc__btn::after {
  top: 0;
  right: 0;
  -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 {
  margin-top: 1rem;
  padding-left: 30.27px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont {
    margin-top: 0rem;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
    margin-bottom: 0rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont.is-open {
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
  }
}
.l-drawer-acc__cont.--grid {
  display: grid;
  /* 3列 */
  grid-template-columns: repeat(3, auto);
  /* 3段（＝左列に3つ入る） */
  grid-template-rows: repeat(3, auto);
  /* 「上から下へ」埋めてから次の列へ */
  grid-auto-flow: column;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 14px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.l-drawer-acc__cont.--grid.is-open {
  display: grid;
}
@media screen and (max-width: 820px) {
  .l-drawer-acc__cont.--grid {
    /* 4列 */
    grid-template-columns: repeat(4, auto);
    /* 3段（＝左列に3つ入る） */
    grid-template-rows: repeat(2, auto);
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont.--grid {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    grid-auto-flow: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 15px;
  }
}
.l-drawer-acc__cont.--flex {
  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: 14px;
}
.l-drawer-acc__cont.--flex.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu {
  line-height: 1.4;
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a {
  display: inline-block;
  font-size: 1.0625rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a:hover {
  color: var(--sub);
}

/* ==========================================================================
フッター
========================================================================== */
/* FT CONTACT & ENTRY
----------------------------------------------------------------- */
.l-ft-entry__wrap,
.l-ft-entry__wrap--white,
.l-ft-contact__wrap,
.l-ft-contact__wrap--white {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.l-ft-entry__wrap .is-dot-tree,
.l-ft-entry__wrap--white .is-dot-tree,
.l-ft-contact__wrap .is-dot-tree,
.l-ft-contact__wrap--white .is-dot-tree {
  position: absolute;
  top: -47px;
  left: 2.196193265%;
  z-index: 2;
  display: block;
}
@media screen and (min-width: 1367px) {
  .l-ft-entry__wrap .is-dot-tree,
  .l-ft-entry__wrap--white .is-dot-tree,
  .l-ft-contact__wrap .is-dot-tree,
  .l-ft-contact__wrap--white .is-dot-tree {
    width: clamp(110px, 7vw, 10%);
  }
}
@media screen and (max-width: 1024px) {
  .l-ft-entry__wrap .is-dot-tree,
  .l-ft-entry__wrap--white .is-dot-tree,
  .l-ft-contact__wrap .is-dot-tree,
  .l-ft-contact__wrap--white .is-dot-tree {
    width: 8.7890625%;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-entry__wrap .is-dot-tree,
  .l-ft-entry__wrap--white .is-dot-tree,
  .l-ft-contact__wrap .is-dot-tree,
  .l-ft-contact__wrap--white .is-dot-tree {
    width: 16%;
    top: -50px;
  }
}
.l-ft-entry__wrap .clip,
.l-ft-entry__wrap--white .clip,
.l-ft-contact__wrap .clip,
.l-ft-contact__wrap--white .clip {
  display: block;
  width: 100vw;
  aspect-ratio: 1366/215.1346;
  background-image: url(/recruit/resource/images/ft_contact_clip.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.l-ft-entry__wrap .p-idx-ttl--sm .ja,
.l-ft-entry__wrap--white .p-idx-ttl--sm .ja,
.l-ft-contact__wrap .p-idx-ttl--sm .ja,
.l-ft-contact__wrap--white .p-idx-ttl--sm .ja {
  font-size: 1.4375rem;
}
@media screen and (max-width: 460px) {
  .l-ft-entry__wrap .p-idx-ttl--sm .ja,
  .l-ft-entry__wrap--white .p-idx-ttl--sm .ja,
  .l-ft-contact__wrap .p-idx-ttl--sm .ja,
  .l-ft-contact__wrap--white .p-idx-ttl--sm .ja {
    font-size: 1.25rem;
  }
}
.l-ft-entry__wrap .p-idx-ttl--sm .en,
.l-ft-entry__wrap--white .p-idx-ttl--sm .en,
.l-ft-contact__wrap .p-idx-ttl--sm .en,
.l-ft-contact__wrap--white .p-idx-ttl--sm .en {
  font-size: 4.25rem;
}
@media screen and (max-width: 460px) {
  .l-ft-entry__wrap .p-idx-ttl--sm .en,
  .l-ft-entry__wrap--white .p-idx-ttl--sm .en,
  .l-ft-contact__wrap .p-idx-ttl--sm .en,
  .l-ft-contact__wrap--white .p-idx-ttl--sm .en {
    font-size: 3rem;
  }
}

.l-ft-contact__wrap--white .clip,
.l-ft-entry__wrap--white .clip {
  background-image: url(/recruit/resource/images/ft_contact_clip--white.svg);
}

.swiper.ftSwiper,
.swiper.ftSwiper_under {
  position: relative;
  z-index: -1;
}
.swiper.ftSwiper .l-ft__items.swiper-wrapper,
.swiper.ftSwiper_under .l-ft__items.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}
.swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide {
  margin-left: -1px;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 646px;
  height: 416px;
  aspect-ratio: 646/416;
}
@media screen and (max-width: 460px) {
  .swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
  .swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide {
    width: 680px;
    height: auto;
  }
}
.swiper.ftSwiper .l-ft__items.swiper-wrapper picture,
.swiper.ftSwiper .l-ft__items.swiper-wrapper img,
.swiper.ftSwiper_under .l-ft__items.swiper-wrapper picture,
.swiper.ftSwiper_under .l-ft__items.swiper-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-ft-entry__wrap--white .swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-entry__wrap--white .swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-entry__wrap .swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-entry__wrap .swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide {
  width: 688px;
  height: 443px;
}

.swiper.ftSwiper {
  top: 2px;
}

.swiper.ftSwiper_under {
  top: 1px;
  bottom: 0;
}

.l-ft-contact__wrap--white .swiper.ftSwiper,
.l-ft-contact__wrap--white .swiper.ftSwiper_under,
.l-ft-contact__wrap .swiper.ftSwiper,
.l-ft-contact__wrap .swiper.ftSwiper_under {
  position: relative;
  z-index: -1;
}
.l-ft-contact__wrap--white .swiper.ftSwiper .l-ft__items.swiper-wrapper,
.l-ft-contact__wrap--white .swiper.ftSwiper_under .l-ft__items.swiper-wrapper,
.l-ft-contact__wrap .swiper.ftSwiper .l-ft__items.swiper-wrapper,
.l-ft-contact__wrap .swiper.ftSwiper_under .l-ft__items.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}
.l-ft-contact__wrap--white .swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-contact__wrap--white .swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-contact__wrap .swiper.ftSwiper .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide,
.l-ft-contact__wrap .swiper.ftSwiper_under .l-ft__items.swiper-wrapper .l-ft-slide-item.swiper-slide {
  aspect-ratio: 646/416;
  width: 530px;
}

/* お問い合わせセクション
----------------------------------------------------------------- */
.l-ft-contact__box {
  background-color: var(--white);
  border-radius: 40px;
  padding: 3.75rem;
  position: absolute;
  top: 200px;
  left: 10.4685212299vw;
  z-index: 3;
}
@media screen and (min-width: 1920px) {
  .l-ft-contact__box {
    left: 17vw;
  }
}
@media screen and (max-width: 1024px) {
  .l-ft-contact__box {
    left: 6%;
  }
}
@media screen and (max-width: 820px) {
  .l-ft-contact__box {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-contact__box {
    padding: 2.5rem 24px;
    border-radius: 30px;
    top: 120px;
    width: 90%;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-ft-contact__box .l-ft-contact__txt {
  margin-top: 2.5rem;
}
.l-ft-contact__box .l-ft-contact__tel {
  margin-top: 1.875rem;
}
.l-ft-contact__box .c-btn-contact {
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .l-ft-contact__box .c-btn-contact {
    font-size: 1.125rem;
  }
}

/* エントリーセクション
----------------------------------------------------------------- */
.l-ft-entry__box {
  position: absolute;
  z-index: 3;
  background-color: var(--white);
  border-radius: 40px;
  padding: 2.5rem 3.75rem;
  top: 200px;
  left: 10.4685212299vw;
  z-index: 3;
}
@media screen and (min-width: 1920px) {
  .l-ft-entry__box {
    left: 17vw;
  }
}
@media screen and (max-width: 1024px) {
  .l-ft-entry__box {
    left: 6%;
  }
}
@media screen and (max-width: 820px) {
  .l-ft-entry__box {
    max-width: 540px;
    width: 100%;
    padding: 2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .l-ft-entry__box {
    padding: 2.5rem 24px;
    border-radius: 30px;
    top: 120px;
    width: 90%;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-ft-entry__box .l-ft-entry__ttl {
  color: var(--main);
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: 3.875rem;
  margin-bottom: 1.875rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 460px) {
  .l-ft-entry__box .l-ft-entry__ttl {
    font-size: 3rem;
  }
}
.l-ft-entry__box .l-ft-entry__cont {
  margin-top: 1.25rem;
}
.l-ft-entry__box .l-ft-entry__cont .l-ft-entry__btn-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;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  .l-ft-entry__box .l-ft-entry__cont .l-ft-entry__btn-wrap {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-entry__box .l-ft-entry__cont .l-ft-entry__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-ft-entry__box .l-ft-entry__cont .l-ft-entry__intern {
  margin-top: 1.25rem;
  border-radius: 10px;
  background-color: var(--whitesmoke);
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem;
}
@media screen and (max-width: 820px) {
  .l-ft-entry__box .l-ft-entry__cont .l-ft-entry__intern {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-entry__box .l-ft-entry__cont .l-ft-entry__intern {
    padding: 1.25rem;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 820px) {
  .l-ft-entry__box .l-ft-entry__cont .l-ft-entry__intern p {
    text-align: center;
  }
}
.l-ft-entry__box .l-ft-entry__cont .l-ft-entry__intern .c-btn-entry--intern {
  width: 100%;
}
/* フッター
----------------------------------------------------------------- */
footer {
  background-color: var(--main);
  position: relative;
  z-index: 2;
}
footer .l-container {
  max-width: clamp(1080px, 70vw, 1440px);
}

.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 3.75rem;
  gap: 11%;
}
@media screen and (max-width: 820px) {
  .l-ft {
    padding: 5rem 0 3.75rem;
    gap: 47px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft {
    padding: 3.75rem 0 2.5rem;
    -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 {
  width: 429px;
}
@media screen and (max-width: 820px) {
  .l-ft-logo__wrap {
    width: auto;
  }
}
@media screen and (max-width: 460px) {
  .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 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-ft-logo__wrap .l-ft-logo p {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-logo p {
    padding-left: 80px;
  }
}
.l-ft-logo__wrap .l-ft-logo img {
  max-width: 280px;
  height: 55px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-logo__wrap .l-ft-logo:hover {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-top: 1.875rem;
  }
}
.l-ft-logo__wrap .l-ft-add p {
  color: var(--white);
  line-height: 1.8;
  opacity: 0.9;
}
.l-ft-logo__wrap .l-ft-add p.name {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.l-ft-logo__wrap .l-ft-add p.address {
  font-size: 1rem;
  font-weight: 400;
}
.l-ft-logo__wrap .l-ft-add p.tel {
  font-size: 1rem;
  font-weight: 400;
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-ft-nav__list {
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.25rem;
}
@media screen and (max-width: 460px) {
  .l-ft-nav__list {
    display: none;
  }
}
.l-ft-nav__list .l-ft-nav__list__menu a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 820px) {
  .l-ft-nav__list .l-ft-nav__list__menu a {
    font-size: 1rem;
  }
}
.l-ft-nav__list .l-ft-nav__list__menu a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22.27px;
  height: 22.27px;
  background-image: url(/recruit/resource/images/ico_ttl-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-nav__list .l-ft-nav__list__menu a:hover {
  color: var(--sub);
  padding-right: 30px;
}
.l-ft-nav__list .l-ft-nav__list__menu a:hover::after {
  opacity: 1;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy p {
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
@media screen and (max-width: 820px) {
  .l-ft-copy p {
    font-size: 11px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-copy p {
    font-size: 10px;
    text-align: center;
  }
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: -20px;
  bottom: 1.25rem;
  z-index: 100;
}
a#pagetop .kirara {
  width: 120px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a#pagetop .eyes {
  position: absolute;
  bottom: 60px;
  right: 33px;
  width: 34px;
  height: 11px;
  -webkit-transform: rotate(-12.22deg);
          transform: rotate(-12.22deg);
  display: block;
  -o-object-fit: fill;
     object-fit: fill;
}
a#pagetop:hover {
  -webkit-animation: poyon 0.7s cubic-bezier(0.25, 1.2, 0.35, 1);
          animation: poyon 0.7s cubic-bezier(0.25, 1.2, 0.35, 1);
}
@-webkit-keyframes poyon {
  /* 初期 */
  0% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
  /* しゃがむ（潰れ） */
  15% {
    -webkit-transform: translateY(2px) scaleX(1.08) scaleY(0.88);
            transform: translateY(2px) scaleX(1.08) scaleY(0.88);
  }
  /* ぐっと伸びてジャンプ */
  35% {
    -webkit-transform: translateY(-18px) scaleX(0.95) scaleY(1.12);
            transform: translateY(-18px) scaleX(0.95) scaleY(1.12);
  }
  /* 着地（潰れ） */
  60% {
    -webkit-transform: translateY(0) scaleX(1.06) scaleY(0.9);
            transform: translateY(0) scaleX(1.06) scaleY(0.9);
  }
  /* 小さく跳ね返り */
  75% {
    -webkit-transform: translateY(-6px) scaleX(0.98) scaleY(1.04);
            transform: translateY(-6px) scaleX(0.98) scaleY(1.04);
  }
  /* 収束 */
  100% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
}
@keyframes poyon {
  /* 初期 */
  0% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
  /* しゃがむ（潰れ） */
  15% {
    -webkit-transform: translateY(2px) scaleX(1.08) scaleY(0.88);
            transform: translateY(2px) scaleX(1.08) scaleY(0.88);
  }
  /* ぐっと伸びてジャンプ */
  35% {
    -webkit-transform: translateY(-18px) scaleX(0.95) scaleY(1.12);
            transform: translateY(-18px) scaleX(0.95) scaleY(1.12);
  }
  /* 着地（潰れ） */
  60% {
    -webkit-transform: translateY(0) scaleX(1.06) scaleY(0.9);
            transform: translateY(0) scaleX(1.06) scaleY(0.9);
  }
  /* 小さく跳ね返り */
  75% {
    -webkit-transform: translateY(-6px) scaleX(0.98) scaleY(1.04);
            transform: translateY(-6px) scaleX(0.98) scaleY(1.04);
  }
  /* 収束 */
  100% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl {
  width: 100%;
  height: 584px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .l-page-ttl {
    height: 480px;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl {
    height: 350px;
  }
}
.l-page-ttl::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/pagetop_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 151px;
  -webkit-transform: translateX(calc(-50% - 12px));
          transform: translateX(calc(-50% - 12px));
  width: 126.1346998536vw;
  height: auto;
  aspect-ratio: 1723/1010;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .l-page-ttl::before {
    top: 140px;
    width: 160vw;
    -webkit-transform: translateX(calc(-50% - 100px));
            transform: translateX(calc(-50% - 100px));
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl::before {
    width: 300vw;
  }
}

.l-page-ttl__inner {
  position: relative;
  width: calc(100% - 20px - 142px);
  height: 100%;
  z-index: 1;
  margin-left: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__inner {
    width: calc(100% - 20px - 126px);
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl__inner {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-top: 10px;
  }
}
.l-page-ttl__inner picture {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .l-page-ttl__inner picture {
    border-radius: 24px;
  }
}
.l-page-ttl__inner 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;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__inner.--recruitment picture img {
    -o-object-position: 10% 50%;
       object-position: 10% 50%;
  }
}

.l-page-ttl__cont {
  position: absolute;
  bottom: 77px;
  right: -30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .l-page-ttl__cont {
    bottom: 40px;
    right: 10px;
  }
}
.l-page-ttl__cont .jp {
  color: var(--main);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 700;
  font-size: 3.0625rem;
  padding: 8px 24px 12px;
  border-radius: 5px;
  background-color: var(--white);
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 820px) {
  .l-page-ttl__cont .jp {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl__cont .jp {
    font-size: 2.0625rem;
    padding: 9px 15px 11px;
  }
}
.l-page-ttl__cont .jp .jp__en {
  font-size: 3.4375rem;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__cont .jp .jp__en {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl__cont .jp .jp__en {
    font-size: 2.375rem;
  }
}
.l-page-ttl__cont .en {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.4375rem;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__cont .en {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl__cont .en {
    font-size: 1rem;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec__wrap,
.l-sec__wrap--white {
  position: relative;
  padding-bottom: 7.5rem;
}
.l-sec__wrap::before,
.l-sec__wrap--white::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/sec_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 77px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150.0732064422vw;
  height: auto;
  aspect-ratio: 2050/639;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .l-sec__wrap::before,
  .l-sec__wrap--white::before {
    width: 160vw;
    -webkit-transform: translateX(calc(-50% - 180px));
            transform: translateX(calc(-50% - 180px));
  }
}
.l-sec__wrap::after,
.l-sec__wrap--white::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--whitesmoke);
  z-index: -2;
  position: absolute;
  left: 0;
  top: 0;
}

.l-sec__wrap--white::after {
  height: 50%;
  top: 10%;
}

.l-sec {
  padding: 6.25rem 0;
  background-color: var(--white);
  border-radius: 40px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .l-sec {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .l-sec {
    padding: 2.5rem 0;
    border-radius: 30px;
    width: calc(100% - 20px);
  }
}

.l-sec-lead {
  padding: 3.75rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .l-sec-lead {
    padding: 2.5rem 0;
  }
}

.l-sec-sm {
  padding: 1rem 0;
}

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

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

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

.l-sec-xxlg {
  padding: 6.25rem 0;
}
@media screen and (max-width: 820px) {
  .l-sec-xxlg {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxlg {
    padding: 3.75rem 0;
  }
}

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

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

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

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container--sm,
.l-container--lg,
.l-container--sec {
  -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: 820px) {
  .l-container,
  .l-container--sm,
  .l-container--lg,
  .l-container--sec {
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .l-container,
  .l-container--sm,
  .l-container--lg,
  .l-container--sec {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

.l-container--sec {
  max-width: 1092px;
}

.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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .c-flex--sm {
    gap: 1.25rem;
  }
}
.c-flex--sm .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--sm .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;
}
.c-flex--sm .c-flex-4clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(25% - 1.25rem);
      -ms-flex: 0 0 calc(25% - 1.25rem);
          flex: 0 0 calc(25% - 1.25rem);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .c-flex--30 {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-flex--30 {
    gap: 1.875rem;
  }
}
.c-flex--30 .c-flex-2clm {
  -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: 820px) {
  .c-flex--30 .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--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: 820px) {
  .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: 460px) {
  .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: 460px) {
  .c-flex--md {
    gap: 2.5rem;
  }
}
.c-flex--md .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 2.5rem);
      -ms-flex: 0 0 calc(50% - 2.5rem);
          flex: 0 0 calc(50% - 2.5rem);
  min-width: 0;
}
.c-flex--md .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(33.3333333333% - 2.5rem);
      -ms-flex: 0 0 calc(33.3333333333% - 2.5rem);
          flex: 0 0 calc(33.3333333333% - 2.5rem);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .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: 460px) {
  .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.25rem;
}
@media screen and (max-width: 460px) {
  .c-grid--sm {
    gap: 1.875rem;
  }
}

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

.c-grid--md {
  gap: 5rem 2.5rem;
}
@media screen and (max-width: 820px) {
  .c-grid--md {
    gap: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-grid--md {
    gap: 1.875rem 1.25rem;
  }
}

.c-grid--lg {
  gap: 3.75rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .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: 460px) {
  .c-grid-2clm {
    grid-template-columns: 1fr;
  }
}

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

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

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

.c-grid-4clm--tb2clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 820px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .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;
}
.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: "Poppins", 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: "Poppins", 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 {
  position: relative;
  padding-left: 1rem;
}
.c-list-dot li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0px;
  font-weight: 700;
}

.c-list-dot2 li {
  line-height: 1.6;
  text-indent: -24px;
  margin-left: 21px;
}
@media screen and (max-width: 820px) {
  .c-list-dot2 li {
    text-indent: -21px;
  }
}
@media screen and (max-width: 460px) {
  .c-list-dot2 li {
    margin-left: 15px;
    text-indent: -15px;
  }
}
.c-list-dot2 li:before {
  content: "";
  vertical-align: middle;
  background-color: var(--main);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  display: inline-block;
  margin-left: 4px;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -2px;
}
@media screen and (max-width: 820px) {
  .c-list-dot2 li:before {
    margin-right: 4px;
  }
}

/* ==========================================================================
テーブル
=========================================================================*/
/* 下線だけのシンプルな表 
----------------------------------------------------------------- */
.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);
}
@media screen and (max-width: 460px) {
  .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: top;
  width: 20%;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 820px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 0 0;
    width: 100%;
  }
}
.c-tb1 tr td,
.c-tb1--white tr td {
  padding: 1.875rem 1.875rem 1.875rem 0;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem 0 1.25rem 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);
}

/* 交互のシマシマtable 
----------------------------------------------------------------- */
.c-tb2 tr:nth-child(odd) {
  background-color: var(--whitesmoke);
}
.c-tb2 tr:nth-child(even) {
  background-color: var(--white);
}
@media screen and (max-width: 460px) {
  .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.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  vertical-align: top;
  color: var(--main);
  font-size: 1.125rem;
  width: 140px;
  padding: 1.25rem 1rem 1.25rem;
}
@media screen and (max-width: 820px) {
  .c-tb2 tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb2 tr th {
    padding: 1.25rem 1.25rem 0 1.25rem;
    width: 100%;
  }
}
.c-tb2 tr td {
  padding: 1.25rem 1rem;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .c-tb2 tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .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: 460px) {
  .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: 820px) {
  .c-tb3 th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .c-tb3 td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb3 td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* 複雑な表
----------------------------------------------------------------- */
.c-tb4 {
  overflow: auto;
}
@media screen and (max-width: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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);
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav .c-page-nav__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap.--recruitment {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a {
  display: block;
  color: var(--white);
  line-height: 1.4;
  font-size: 1.125rem;
  font-weight: 700;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .arrow {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: var(--white);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .arrow::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 11px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 999px;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a .arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-right: solid 2px var(--main);
  border-bottom: solid 2px var(--main);
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover {
  color: var(--sub);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .arrow {
  background-color: var(--sub);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .arrow::before {
  background-color: var(--white);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover .arrow::after {
  border-right: solid 2px var(--white);
  border-bottom: solid 2px var(--white);
}

.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: 820px) {
  .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: 820px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu {
    max-width: initial;
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 460px) {
  .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: 460px) {
  .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: 6.25rem 0;
}
@media screen and (max-width: 820px) {
  .c-nav-relate__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-nav-relate__wrap {
    padding: 3.75rem 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: 820px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 8.547008547%;
  }
}
@media screen and (max-width: 460px) {
  .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: "Poppins", 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: 820px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 25px;
    height: 25px;
    right: 8.547008547%;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: "Poppins", 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: 460px) {
  .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: 820px) {
  .c-form-wrap table tr th {
    width: 30%;
    padding-right: 0;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr th {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr td {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 460px) {
  .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: 1024px) {
  .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: 820px) {
  .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: 1024px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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: 460px) {
  .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,
.c-btn-main--white {
  text-align: center;
  width: auto;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--white a,
.c-btn-main--white button {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  gap: 20px;
}
.c-btn-main a .txt,
.c-btn-main button .txt,
.c-btn-main--white a .txt,
.c-btn-main--white button .txt {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  color: var(--black);
}
.c-btn-main a .arrow,
.c-btn-main button .arrow,
.c-btn-main--white a .arrow,
.c-btn-main--white button .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 75px;
  height: 75px;
  background-color: var(--main);
  border-radius: 100px;
  position: relative;
}
.c-btn-main a .arrow::before,
.c-btn-main button .arrow::before,
.c-btn-main--white a .arrow::before,
.c-btn-main--white button .arrow::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 38.5px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main a .arrow::after,
.c-btn-main button .arrow::after,
.c-btn-main--white a .arrow::after,
.c-btn-main--white button .arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-right: solid 2px var(--white);
  border-bottom: solid 2px var(--white);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main a:hover .txt,
.c-btn-main button:hover .txt,
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt {
  color: var(--sub);
}
.c-btn-main a:hover .arrow,
.c-btn-main button:hover .arrow,
.c-btn-main--white a:hover .arrow,
.c-btn-main--white button:hover .arrow {
  background-color: var(--sub);
}
.c-btn-main a:hover .arrow::before,
.c-btn-main button:hover .arrow::before,
.c-btn-main--white a:hover .arrow::before,
.c-btn-main--white button:hover .arrow::before {
  width: 44.5px;
}
.c-btn-main a:hover .arrow::after,
.c-btn-main button:hover .arrow::after,
.c-btn-main--white a:hover .arrow::after,
.c-btn-main--white button:hover .arrow::after {
  left: 36.5px;
}

.c-btn-main--white a .txt,
.c-btn-main--white button .txt {
  color: var(--white);
}
.c-btn-main--white a .arrow,
.c-btn-main--white button .arrow {
  background-color: var(--white);
}
.c-btn-main--white a .arrow::before,
.c-btn-main--white button .arrow::before {
  background-color: var(--main);
}
.c-btn-main--white a .arrow::after,
.c-btn-main--white button .arrow::after {
  border-right: solid 2px var(--main);
  border-bottom: solid 2px var(--main);
}
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt {
  color: var(--sub);
}
.c-btn-main--white a:hover .arrow,
.c-btn-main--white button:hover .arrow {
  background-color: var(--sub);
}

/* コンタクトボタン
----------------------------------------------------------------- */
.c-btn-contact {
  width: 100%;
}
.c-btn-contact a,
.c-btn-contact 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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--main);
  border-radius: 10px;
  height: 80px;
  position: relative;
}
.c-btn-contact a .txt,
.c-btn-contact button .txt {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .c-btn-contact a .txt,
  .c-btn-contact button .txt {
    font-size: 1rem;
  }
}
.c-btn-contact a .txt::before,
.c-btn-contact button .txt::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 14px;
  height: 11.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -21.75px;
}
.c-btn-contact a .btn,
.c-btn-contact button .btn {
  display: inline-block;
  position: absolute;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--white);
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .c-btn-contact a .btn,
  .c-btn-contact button .btn {
    width: 25px;
    height: 25px;
  }
}
.c-btn-contact a .btn.win,
.c-btn-contact button .btn.win {
  background-image: initial;
}
.c-btn-contact a .btn.win::before,
.c-btn-contact button .btn.win::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: var(--main);
  -webkit-mask: url(/recruit/resource/images/ico_win_main.svg) no-repeat center/contain;
  mask: url(/recruit/resource/images/ico_win_main.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-contact a:hover,
.c-btn-contact button:hover {
  background-color: var(--sub);
}
.c-btn-contact a:hover .btn.win::before,
.c-btn-contact button:hover .btn.win::before {
  content: "";
  background-color: var(--sub);
}

/* エントリーボタン
----------------------------------------------------------------- */
.c-btn-entry,
.c-btn-entry--intern {
  width: 100%;
}
.c-btn-entry a,
.c-btn-entry button,
.c-btn-entry--intern a,
.c-btn-entry--intern 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;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--whitesmoke);
  border-radius: 10px;
  height: 80px;
  position: relative;
  padding: 28px 20px;
}
@media screen and (max-width: 460px) {
  .c-btn-entry a,
  .c-btn-entry button,
  .c-btn-entry--intern a,
  .c-btn-entry--intern button {
    padding: 28px 14px;
  }
}
.c-btn-entry a .txt,
.c-btn-entry button .txt,
.c-btn-entry--intern a .txt,
.c-btn-entry--intern button .txt {
  position: relative;
  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: 10px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.1875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 38px;
}
@media screen and (max-width: 820px) {
  .c-btn-entry a .txt,
  .c-btn-entry button .txt,
  .c-btn-entry--intern a .txt,
  .c-btn-entry--intern button .txt {
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-btn-entry a .txt::before,
.c-btn-entry button .txt::before,
.c-btn-entry--intern a .txt::before,
.c-btn-entry--intern button .txt::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_ttl-main.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 22.27px;
  height: 14px;
  position: absolute;
  top: 8px;
  left: 0px;
}
.c-btn-entry a .txt .sm,
.c-btn-entry button .txt .sm,
.c-btn-entry--intern a .txt .sm,
.c-btn-entry--intern button .txt .sm {
  font-size: 1rem;
}
.c-btn-entry a .btn,
.c-btn-entry button .btn,
.c-btn-entry--intern a .btn,
.c-btn-entry--intern button .btn {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-entry a .btn::before,
.c-btn-entry button .btn::before,
.c-btn-entry--intern a .btn::before,
.c-btn-entry--intern button .btn::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-entry a .btn::after,
.c-btn-entry button .btn::after,
.c-btn-entry--intern a .btn::after,
.c-btn-entry--intern button .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-right: solid 2px var(--white);
  border-bottom: solid 2px var(--white);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-entry a:hover,
.c-btn-entry button:hover,
.c-btn-entry--intern a:hover,
.c-btn-entry--intern button:hover {
  background-color: var(--sub);
}
.c-btn-entry a:hover .txt,
.c-btn-entry button:hover .txt,
.c-btn-entry--intern a:hover .txt,
.c-btn-entry--intern button:hover .txt {
  color: var(--white);
}
.c-btn-entry a:hover .txt::before,
.c-btn-entry button:hover .txt::before,
.c-btn-entry--intern a:hover .txt::before,
.c-btn-entry--intern button:hover .txt::before {
  background-image: url(/recruit/resource/images/ico_ttl-sub.svg);
}
.c-btn-entry a:hover .btn,
.c-btn-entry button:hover .btn,
.c-btn-entry--intern a:hover .btn,
.c-btn-entry--intern button:hover .btn {
  background-color: var(--white);
}
.c-btn-entry a:hover .btn::before,
.c-btn-entry button:hover .btn::before,
.c-btn-entry--intern a:hover .btn::before,
.c-btn-entry--intern button:hover .btn::before {
  background-color: var(--sub);
  width: 24px;
}
.c-btn-entry a:hover .btn::after,
.c-btn-entry button:hover .btn::after,
.c-btn-entry--intern a:hover .btn::after,
.c-btn-entry--intern button:hover .btn::after {
  border-right: solid 2px var(--sub);
  border-bottom: solid 2px var(--sub);
  left: 14px;
}

.c-btn-entry--intern a {
  height: 64px;
  border: 1px solid var(--main);
  background-color: var(--white);
  padding: 0 3.125rem;
}
@media screen and (max-width: 460px) {
  .c-btn-entry--intern a {
    padding: 0 1.25rem;
  }
}
.c-btn-entry--intern a .txt {
  padding-left: 0px;
  font-size: 1.0625rem;
}
.c-btn-entry--intern a .txt::before {
  content: none;
}
.c-btn-entry--intern a:hover {
  border: 1px solid var(--sub);
}

/* 企業サイトへのボタン
----------------------------------------------------------------- */
.c-btn-cosite {
  max-width: 240px;
  width: 100%;
  margin-top: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .c-btn-cosite {
    max-width: 200px;
  }
}
@media screen and (max-width: 460px) {
  .c-btn-cosite {
    max-width: 280px;
  }
}
.c-btn-cosite a {
  display: block;
  position: relative;
  padding: 1.125rem 1.25rem;
  height: 76px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .c-btn-cosite a {
    height: 63px;
    padding: 13.5px 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-btn-cosite a {
    height: 88px;
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
.c-btn-cosite a .en,
.c-btn-cosite a .ja {
  display: block;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.c-btn-cosite a .en {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 820px) {
  .c-btn-cosite a .en {
    font-size: 12px;
  }
}
.c-btn-cosite a .ja {
  font-size: 1.125rem;
}
@media screen and (max-width: 820px) {
  .c-btn-cosite a .ja {
    font-size: 18px;
  }
}
.c-btn-cosite a .win {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/recruit/resource/images/ico_win_main.svg);
  width: 30px;
  height: 30px;
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  border-radius: 100px;
}
.c-btn-cosite a .c-btn-cosite__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-btn-cosite a .c-btn-cosite__bg 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;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-cosite a:hover .c-btn-cosite__bg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-btn-link {
  max-width: 406px;
  height: 80px;
  width: 100%;
  border-radius: 5px;
  background-color: var(--white);
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-link img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-link:hover img {
  opacity: 0.6;
}

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

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

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

.c-card--lg {
  padding: 3.75rem;
}
@media screen and (max-width: 820px) {
  .c-card--lg {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .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: 820px) {
  .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: 820px) {
  .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: 820px) {
  .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: "Poppins", 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.5;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

h2 {
  font-size: 3.0625rem;
}
@media screen and (max-width: 820px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  h2 {
    font-size: 1.9375rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media screen and (max-width: 820px) {
  h3 {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 460px) {
  h3 {
    font-size: 1.6875rem;
  }
}

h4 {
  font-size: 1.75rem;
}
@media screen and (max-width: 820px) {
  h4 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 460px) {
  h4 {
    font-size: 1.375rem;
  }
}

h5 {
  font-size: 1.4375rem;
}
@media screen and (max-width: 820px) {
  h5 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.25rem;
}
@media screen and (max-width: 820px) {
  h6 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 460px) {
  h6 {
    font-size: 1.125rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main,
.c-ttl-main--white {
  margin-bottom: 3.75rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 820px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-main .en,
.c-ttl-main--white .en {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: var(--main);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 820px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.c-ttl-main .en::before,
.c-ttl-main--white .en::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1px));
          transform: translateY(calc(-50% + 1px));
  width: 22.27px;
  height: 12px;
  background-image: url(/recruit/resource/images/ico_ttl-main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-ttl-main .ja,
.c-ttl-main--white .ja {
  display: inline-block;
  font-size: 2.625rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 820px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 1.875rem;
  }
}

.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-sub {
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 1.75rem;
  padding-left: 32px;
}
@media screen and (max-width: 460px) {
  .c-ttl-sub {
    font-size: 1.4375rem;
  }
}
.c-ttl-sub::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1px));
          transform: translateY(calc(-50% + 1px));
  width: 22.27px;
  height: 12px;
  background-image: url(/recruit/resource/images/ico_ttl-main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 820px) {
  .c-ttl-sub {
    margin-bottom: 1.875rem;
  }
}

.c-ttl-dot {
  font-size: 1.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 14px;
  margin-bottom: 1.875rem;
  background-size: 8px 2px;
  background-image: -webkit-linear-gradient(left, var(--main) 2px, transparent 2px);
  background-image: linear-gradient(to right, var(--main) 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 460px) {
  .c-ttl-dot {
    font-size: 1.4375rem;
  }
}

/* ==========================================================================
スライド（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 .swiper-slide {
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .swiper-slide {
    border-radius: 15px;
  }
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .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-next,
.c-slide-tmb__wrap .swiper-button-prev {
  z-index: 2;
  width: 68px;
  height: 68px;
  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: 820px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 41%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-slide-tmb__wrap .swiper-button-next:after,
.c-slide-tmb__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--main);
  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-next::before,
.c-slide-tmb__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next::before,
  .c-slide-tmb__wrap .swiper-button-prev::before {
    background-size: 12px auto;
  }
}
.c-slide-tmb__wrap .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button-prev:hover:after {
  background-color: var(--sub);
}
.c-slide-tmb__wrap .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button-prev:hover::before {
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
}
.c-slide-tmb__wrap .swiper-button-next {
  right: -25px;
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next {
    right: -20px;
    -webkit-transform: scale(-1, 1) translateY(0%);
            transform: scale(-1, 1) translateY(0%);
  }
}
.c-slide-tmb__wrap .swiper-button-prev {
  left: -25px;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-prev {
    left: -20px;
  }
}

.swiper.tmbslide_tmb {
  width: 100%;
  max-width: initial;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .swiper.tmbslide_tmb {
    margin-top: 1rem;
  }
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide {
  cursor: pointer;
  aspect-ratio: 231/121;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 820px) {
  .swiper.tmbslide_tmb .swiper-wrapper .swiper-slide picture {
    border-radius: 10px;
  }
}
@media screen and (max-width: 460px) {
  .swiper.tmbslide_tmb .swiper-wrapper .swiper-slide picture {
    border-radius: 8px;
    height: auto;
  }
}
.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: 460px) {
  .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: 461px) {
  .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;
}
@media screen and (max-width: 460px) {
  .c-slide-sp__wrap .sp-pagination.swiper-pagination .swiper-pagination-bullet {
    margin: 0 2px;
  }
}
.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: 460px) {
  .c-slide-sp .swiper.spSwiper .swiper-wrapper {
    gap: 0;
  }
}
.c-slide-sp .swiper.spSwiper .swiper-wrapper .swiper-slide {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 460px) {
  .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: 461px) {
  .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: 820px) {
  .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: 820px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 30px auto;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .map-next.swiper-button-next {
    right: 15px;
  }
}
@media screen and (max-width: 460px) {
  .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: 820px) {
  .map-prev.swiper-button-prev {
    left: 15px;
  }
}
@media screen and (max-width: 460px) {
  .map-prev.swiper-button-prev {
    left: -5px;
  }
}

/* ==========================================================================
indx - トップページ
========================================================================== */
.p-idx .l-container {
  max-width: clamp(1080px, 70vw, 1440px);
}

/* 見出し
----------------------------------------------------------------- */
.p-idx-ttl--lg {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.p-idx-ttl--lg .en {
  font-family: "Poppins", sans-serif;
  font-size: 5.125rem;
  line-height: 1;
  letter-spacing: -0.01em;
  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: 1366px) {
  .p-idx-ttl--lg .en {
    font-size: clamp(64px, 6vw, 6.0029282577vw);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-ttl--lg .en {
    font-size: 3.75rem;
  }
}
.p-idx-ttl--lg .en .sm {
  font-size: 3.5rem;
}
@media screen and (max-width: 1366px) {
  .p-idx-ttl--lg .en .sm {
    font-size: 4.0995607613vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-ttl--lg .en .sm {
    font-size: 1.75rem;
  }
}
.p-idx-ttl--lg .ja {
  font-size: 1.4375rem;
  color: var(--main);
  position: relative;
  padding-left: 30.27px;
}
@media screen and (max-width: 1366px) {
  .p-idx-ttl--lg .ja {
    font-size: clamp(20px, 6vw, 1.6837481698vw);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-ttl--lg .ja {
    font-size: 1.25rem;
  }
}
.p-idx-ttl--lg .ja::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1px));
          transform: translateY(calc(-50% + 1px));
  width: 22.27px;
  height: 12.12px;
  background-image: url(/recruit/resource/images/ico_ttl-main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-idx-ttl--sm,
.p-idx-ttl--sm--white {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.p-idx-ttl--sm .en,
.p-idx-ttl--sm--white .en {
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
  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;
}
@media screen and (max-width: 1366px) {
  .p-idx-ttl--sm .en,
  .p-idx-ttl--sm--white .en {
    font-size: clamp(64px, 6vw, 5.270863836vw);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-ttl--sm .en,
  .p-idx-ttl--sm--white .en {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-ttl--sm .en,
  .p-idx-ttl--sm--white .en {
    font-size: 3rem;
  }
}
.p-idx-ttl--sm .ja,
.p-idx-ttl--sm--white .ja {
  font-size: 1.75rem;
  color: var(--main);
  position: relative;
  line-height: 1;
  padding-left: 30.27px;
}
@media screen and (max-width: 1366px) {
  .p-idx-ttl--sm .ja,
  .p-idx-ttl--sm--white .ja {
    font-size: clamp(23px, 6vw, 2.0497803807vw);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-ttl--sm .ja,
  .p-idx-ttl--sm--white .ja {
    font-size: 1.25rem;
  }
}
.p-idx-ttl--sm .ja::before,
.p-idx-ttl--sm--white .ja::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 2px));
          transform: translateY(calc(-50% + 2px));
  width: 22.27px;
  height: 12.12px;
  background-image: url(/recruit/resource/images/ico_ttl-main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-idx-ttl--sm--white .en {
  color: var(--white);
}
.p-idx-ttl--sm--white .ja {
  color: var(--white);
}
.p-idx-ttl--sm--white .ja::before {
  background-image: url(/recruit/resource/images/ico_ttl-white.svg);
}

/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide__bg {
  position: relative;
  width: 100%;
}
.p-idx-slide__bg::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/idx-slider-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 178px;
  -webkit-transform: translateX(calc(-50% - 83px));
          transform: translateX(calc(-50% - 83px));
  width: 123.2064421669vw;
  height: auto;
  aspect-ratio: 1683/1079;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__bg::before {
    top: 400px;
    width: 160vw;
    -webkit-transform: translateX(calc(-50% - 180px));
            transform: translateX(calc(-50% - 180px));
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__bg::before {
    top: 271px;
    width: 222vw;
  }
}

.p-idx-slide__wrap {
  width: 100%;
  height: 98vh;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__wrap {
    height: 80vh;
    min-height: clamp(520px, 80vh, 720px);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap {
    height: 88vh;
  }
}

.p-idx-slide__inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 20px - 148px);
  margin-left: 20px;
  margin-top: 20px;
  height: calc(100% - 40px);
}
@media screen and (max-width: 820px) {
  .p-idx-slide__inner {
    width: calc(100% - 60px - 85px);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__inner {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-top: 10px;
    height: calc(100% - 40px);
  }
}

.p-idx-slide__catch {
  z-index: 2;
  position: absolute;
  right: 5.8430717863%;
  left: auto;
  top: auto;
  bottom: -20px;
  display: block;
  margin: auto;
  width: 22.9549248748%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  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: 34px;
}
@media screen and (max-width: 1024px) {
  .p-idx-slide__catch {
    width: 28%;
  }
}
@media screen and (max-width: 820px) {
  .p-idx-slide__catch {
    width: 38%;
    bottom: -16px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__catch {
    width: 50%;
    gap: 20px;
    bottom: -28px;
  }
}
.p-idx-slide__catch .p-idx-slide__catch-img {
  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: 23px;
  width: 68%;
}
@media screen and (min-width: 1367px) {
  .p-idx-slide__catch .p-idx-slide__catch-img {
    width: clamp(187px, 10vw, 50%);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__catch .p-idx-slide__catch-img {
    gap: 10px;
  }
}
.p-idx-slide__catch .p-idx-slide__catch-txt {
  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: 16px;
}
@media screen and (min-width: 1367px) {
  .p-idx-slide__catch .p-idx-slide__catch-txt {
    gap: clamp(16px, 1vw, 24px);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__catch .p-idx-slide__catch-txt {
    gap: 10px;
  }
}
.p-idx-slide__catch .p-idx-slide__catch-img1,
.p-idx-slide__catch .p-idx-slide__catch-img2 {
  width: 43.8502673797%;
}
@media screen and (min-width: 1367px) {
  .p-idx-slide__catch .p-idx-slide__catch-img1,
  .p-idx-slide__catch .p-idx-slide__catch-img2 {
    width: clamp(82px, 5vw, 40%);
  }
}
.p-idx-slide__catch .p-idx-slide__catch-img1 picture,
.p-idx-slide__catch .p-idx-slide__catch-img2 picture {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.p-idx-slide__catch .p-idx-slide__catch-img1 picture img,
.p-idx-slide__catch .p-idx-slide__catch-img2 picture img {
  width: 100%;
  height: auto;
}
.p-idx-slide__catch .p-idx-slide__catch-txt1,
.p-idx-slide__catch .p-idx-slide__catch-txt2 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
}
@media screen and (min-width: 1367px) {
  .p-idx-slide__catch .p-idx-slide__catch-txt1,
  .p-idx-slide__catch .p-idx-slide__catch-txt2 {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__catch .p-idx-slide__catch-txt1,
  .p-idx-slide__catch .p-idx-slide__catch-txt2 {
    font-size: 16px;
  }
}
.p-idx-slide__catch .p-idx-slide__catch-txt1 {
  margin-bottom: 10px;
}

.p-idx-slide__scroll {
  position: absolute;
  right: 68px;
  bottom: 20px;
  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: 13px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__scroll {
    right: 54px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__scroll {
    display: none;
  }
}
.p-idx-slide__scroll p {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-idx-slide__scroll span {
  display: block;
  width: 1px;
  height: 120px;
  background-color: var(--white);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
.p-idx-slide__items .p-idx-slide-item {
  height: 100vh;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item {
    height: 88vh;
  }
}
.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;
  height: 100vh;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item img {
    height: 88vh;
  }
}
.p-idx-slide__items .p-idx-slide-item.--1 img {
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__items .p-idx-slide-item.--1 img {
    -o-object-position: 16% 50%;
       object-position: 16% 50%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item.--1 img {
    -o-object-position: 18% 50%;
       object-position: 18% 50%;
  }
}
.p-idx-slide__items .p-idx-slide-item.--2 img {
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__items .p-idx-slide-item.--2 img {
    -o-object-position: 65% 50%;
       object-position: 65% 50%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item.--2 img {
    -o-object-position: 65% 50%;
       object-position: 65% 50%;
  }
}
.p-idx-slide__items .p-idx-slide-item.--3 img {
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__items .p-idx-slide-item.--3 img {
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item.--3 img {
    -o-object-position: center;
       object-position: center;
  }
}
.p-idx-slide__items .p-idx-slide-item.--4 img {
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__items .p-idx-slide-item.--4 img {
    -o-object-position: 20% 50%;
       object-position: 20% 50%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item.--4 img {
    -o-object-position: center;
       object-position: center;
  }
}

.swiper.fvSwiper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 460px) {
  .swiper.fvSwiper {
    border-radius: 30px;
  }
}
.swiper.fvSwiper .fv-swiper-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 3.7562604341%;
  bottom: 28px;
}
.swiper.fvSwiper .fv-swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px;
  background-color: rgba(var(--white-rgb), 0.7);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 1.5px;
  border-radius: 100px;
}
.swiper.fvSwiper .fv-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--sub);
}
.swiper.fvSwiper .fv-swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--main);
}

/* MESSAGE
----------------------------------------------------------------- */
.p-idx-sec1__wrap {
  margin-top: clamp(5.25rem, 6vw, 8.75rem);
  padding: clamp(6.25rem, 7vw, 12.5rem) 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap {
    margin-top: 2.5rem;
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-sec1__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 208px));
          transform: translateX(calc(-50% - 208px));
  width: 94.4363103953vw;
  height: auto;
  aspect-ratio: 1290/916;
  background-image: url(/recruit/resource/images/idx_message_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap::before {
    width: 120vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: -23%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap::before {
    left: -15%;
  }
}
.p-idx-sec1__wrap .l-container {
  position: relative;
}
.p-idx-sec1__wrap .is-tree-white {
  position: absolute;
  top: -177px;
  left: -40px;
  width: 10.3221083455%;
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap .is-tree-white {
    left: 0;
    top: -100px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .is-tree-white {
    left: 10px;
    top: -120px;
    width: 21.3333333333%;
  }
}
@media screen and (min-width: 1367px) {
  .p-idx-sec1__wrap .is-tree-white {
    left: -80px;
    width: clamp(168px, 10vw, 12%);
  }
}
.p-idx-sec1__wrap .is-dot-tree {
  position: absolute;
  top: 380px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 120px));
          transform: translateX(calc(-50% - 120px));
  z-index: 5;
}
@media screen and (min-width: 1367px) {
  .p-idx-sec1__wrap .is-dot-tree {
    width: clamp(91px, 10vw, 8%);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap .is-dot-tree {
    width: 65px;
    -webkit-transform: translateX(calc(-50% - 80px));
            transform: translateX(calc(-50% - 80px));
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .is-dot-tree {
    top: 320px;
    left: 13%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 13.3333333333%;
  }
}
.p-idx-sec1__wrap .is-tree {
  position: absolute;
  bottom: 18px;
  left: 1.9765739385%;
}
@media screen and (min-width: 1367px) {
  .p-idx-sec1__wrap .is-tree {
    left: 27px;
    width: clamp(168px, 10vw, 8%);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap .is-tree {
    width: 100px;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont {
  width: 48.1481481481%;
  min-height: 409px;
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 47.311827957%;
    min-height: initial;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 100%;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--main);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
    margin-bottom: 1.875rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt {
  line-height: 2.25;
  font-weight: 600;
}
.p-idx-sec1__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 45.60761347vw;
  height: auto;
  aspect-ratio: 623/440;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img {
    width: 95.2%;
    position: relative;
    right: auto;
    top: auto;
    margin-top: 3.75rem;
    margin-left: auto;
    margin-right: 0;
  }
}
.p-idx-sec1__img::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 200px;
  right: 0;
  z-index: -1;
}
.p-idx-sec1__img .p-idx-sec1__img-lg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: auto;
  overflow: hidden;
  width: 45.60761347vw;
  aspect-ratio: 623/440;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img .p-idx-sec1__img-lg {
    border-radius: 30px 0 0 30px;
    width: 80%;
  }
}
.p-idx-sec1__img .p-idx-sec1__img-lg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

.p-idx-sec1__img-deco1 {
  position: absolute;
  right: 17.2767203514%;
  top: clamp(543px, 35vw, 39vw);
  width: 31.3323572474%;
  height: auto;
  display: block;
  z-index: 2;
  aspect-ratio: 428/278;
}
@media screen and (max-width: 1366px) {
  .p-idx-sec1__img-deco1 {
    top: 61.5646258503%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img-deco1 {
    right: 10px;
    top: auto;
    bottom: 150px;
    width: 42.6666666667%;
    height: 17%;
  }
}
.p-idx-sec1__img-deco1 .kirara-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 39.2523364486%;
  aspect-ratio: 168/178;
  height: auto;
  display: block;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img-deco1 .kirara-box {
    width: 62.5%;
  }
}
.p-idx-sec1__img-deco1 .kirara-box .kirara {
  display: block;
  z-index: 2;
  width: 100%;
  height: auto;
}
.p-idx-sec1__img-deco1 .kirara-box .shadow {
  width: 93.4523809524%;
  aspect-ratio: 157/42;
  height: auto;
  display: block;
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.p-idx-sec1__img-deco1 .forest {
  width: 78.9719626168%;
  aspect-ratio: 338/228;
  height: auto;
  display: block;
  z-index: 3;
  position: absolute;
  bottom: 0;
  right: 0;
}

.p-idx-sec1__img-deco2 {
  position: absolute;
  right: -14.3484626647%;
  top: clamp(378px, 26vw, 39vw);
  width: 48.0234260615%;
  height: auto;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 1366px) {
  .p-idx-sec1__img-deco2 {
    top: 42.8571428571%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img-deco2 {
    width: 58.6666666667%;
    right: auto;
    left: -30px;
    top: auto;
    bottom: 226px;
  }
}
.p-idx-sec1__img-deco2 .img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 3;
}
.p-idx-sec1__img-deco2 .hero__blur {
  position: absolute;
  inset: 0;
  /* 背面だけぼかす本体 */
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  /* ぼかしレイヤーは “透明” でもOK（背面をぼかすので） */
  background: rgba(255, 255, 255, 0);
  /* SVGマスクで必要な形だけ表示 */
  -webkit-mask: url(#waveMask);
          mask: url(#waveMask);
  /* 念のため：クリック邪魔しない */
  pointer-events: none;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}
.p-idx-sec1__img-deco2 .hero__defs {
  position: absolute;
}

.p-idx-sec1__img-sm {
  border-radius: 0 35px 35px 0;
  overflow: hidden;
  width: 28.2576866764vw;
  height: auto;
  aspect-ratio: 386/273;
  display: block;
}
@media screen and (max-width: 820px) {
  .p-idx-sec1__img-sm {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__img-sm {
    width: 53.3333333333%;
    margin-top: 10px;
  }
}
.p-idx-sec1__img-sm picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* HIRAKATAを知る
----------------------------------------------------------------- */
.p-idx-dis__wrap {
  padding: clamp(6.25rem, 5vw, 10rem) 0 clamp(3.75rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-idx-dis__wrap {
    padding: 6.25rem 0 0rem 80;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap {
    padding: 6.25rem 0 3.75rem;
  }
}
.p-idx-dis__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 35px));
          transform: translateX(calc(-50% - 35px));
  width: 111.0541727672vw;
  height: auto;
  aspect-ratio: 1517/895;
  background-image: url(/recruit/resource/images/idx_dis_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-dis__wrap::before {
    width: 125vw;
    left: -13%;
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap::before {
    width: 160vw;
    top: 0px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 80%;
    bottom: 0;
    z-index: -1;
    background-color: var(--whitesmoke);
  }
}
.p-idx-dis__wrap .l-container {
  position: relative;
}
.p-idx-dis__wrap .l-container .is-tree {
  position: absolute;
  top: -85px;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 3;
}
@media screen and (min-width: 1367px) {
  .p-idx-dis__wrap .l-container .is-tree {
    width: clamp(168px, 10vw, 13%);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-dis__wrap .l-container .is-tree {
    width: 120px;
  }
}
.p-idx-dis__wrap .p-idx-dis__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: clamp(3.75rem, 4vw, 7.5rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap .p-idx-dis__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__cont {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__cont .c-btn-main {
  margin-top: 1.875rem;
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__cont .c-btn-main a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__img {
  width: 55.5555555556%;
  height: auto;
  aspect-ratio: 600/371;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__img {
    width: 100%;
  }
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__img picture {
  overflow: hidden;
  display: block;
}
.p-idx-dis__wrap .p-idx-dis__inner .p-idx-dis__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* JOB
----------------------------------------------------------------- */
.p-idx-job__wrap {
  padding: clamp(3.75rem, 5vw, 5rem) 0 clamp(6.25rem, 7vw, 10rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-idx-job__wrap {
    padding: 6.25rem 0;
  }
}
.p-idx-job__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 290px));
          transform: translateX(calc(-50% + 290px));
  width: 68.0819912152vw;
  height: auto;
  aspect-ratio: 930/759;
  background-image: url(/recruit/resource/images/idx_job_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-job__wrap::before {
    width: 80vw;
    -webkit-transform: translateX(calc(-50% + 200px));
            transform: translateX(calc(-50% + 200px));
  }
}
@media screen and (max-width: 460px) {
  .p-idx-job__wrap::before {
    width: 120vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-job__wrap::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 80%;
    bottom: 0;
    z-index: -1;
    background-color: var(--white);
  }
}
.p-idx-job__wrap .p-idx-job__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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(3.75rem, 4vw, 7.5rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-idx-job__wrap .p-idx-job__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-job__wrap .p-idx-job__inner .p-idx-job__cont {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__cont .c-btn-main {
  margin-top: 1.875rem;
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__cont .c-btn-main a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__img {
  width: 55.5555555556%;
  height: auto;
  aspect-ratio: 600/371;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-job__wrap .p-idx-job__inner .p-idx-job__img {
    width: 100%;
  }
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__img picture {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.p-idx-job__wrap .p-idx-job__inner .p-idx-job__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 働く環境
----------------------------------------------------------------- */
.p-idx-enviro__wrap {
  padding: clamp(6.25rem, 5vw, 10rem) 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-idx-enviro__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-enviro__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-enviro__wrap .p-idx-enviro__cont {
  margin-top: 2.5rem;
}
.p-idx-enviro__wrap .p-idx-enviro__cont {
  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;
  gap: 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-idx-enviro__wrap .p-idx-enviro__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-enviro__wrap .p-idx-enviro__cont .c-btn-main {
    margin-top: 2.5rem;
  }
}
.p-idx-enviro__wrap .p-idx-enviro__img {
  padding-left: 7.3206442167%;
  margin-top: clamp(2.5rem, 3vw, 5rem);
}
@media screen and (max-width: 820px) {
  .p-idx-enviro__wrap .p-idx-enviro__img {
    padding-left: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-enviro__wrap .p-idx-enviro__img {
    padding-left: 4.8%;
    height: 200px;
  }
}
.p-idx-enviro__wrap .p-idx-enviro__img picture {
  width: 100%;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 460px) {
  .p-idx-enviro__wrap .p-idx-enviro__img picture {
    border-radius: 30px 0 0 30px;
    height: 100%;
  }
}
.p-idx-enviro__wrap .p-idx-enviro__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* RECRUITMENT
----------------------------------------------------------------- */
.p-idx-rec__wrap {
  padding: clamp(6.25rem, 5vw, 7.5rem) 0 clamp(3.75rem, 4vw, 5rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-idx-rec__wrap {
    padding: 5rem 0 2.5rem;
  }
}
.p-idx-rec__wrap .l-container {
  position: relative;
}
.p-idx-rec__wrap .l-container .is-tree {
  position: absolute;
  top: -85px;
  right: 0px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 2;
  display: block;
}
@media screen and (min-width: 1367px) {
  .p-idx-rec__wrap .l-container .is-tree {
    width: clamp(168px, 10vw, 13%);
  }
}
@media screen and (max-width: 1024px) {
  .p-idx-rec__wrap .l-container .is-tree {
    width: 120px;
  }
}
.p-idx-rec__wrap .p-idx-ttl--sm {
  margin-bottom: 2.5rem;
}
.p-idx-rec__wrap .p-idx-rec__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: clamp(3.75rem, 4vw, 7.5rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .p-idx-rec__wrap .p-idx-rec__inner {
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__cont {
  width: 46.0185185185%;
}
@media screen and (max-width: 820px) {
  .p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__cont {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__cont {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__cont .c-btn-main {
  margin-top: 1.875rem;
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__cont .c-btn-main a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__img {
  width: 37.0424597365vw;
  height: auto;
  aspect-ratio: 506/313;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__img {
    width: 100%;
  }
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__img picture {
  overflow: hidden;
  display: block;
}
.p-idx-rec__wrap .p-idx-rec__inner .p-idx-rec__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* INTERNSHIP
----------------------------------------------------------------- */
.p-idx-int__wrap {
  padding: clamp(3.75rem, 4vw, 5rem) 0 clamp(6.25rem, 5vw, 10rem);
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-int__wrap {
    padding: 2.5rem 0 5rem;
  }
}
.p-idx-int__wrap .p-idx-ttl--sm {
  margin-bottom: 2.5rem;
}
.p-idx-int__wrap .p-idx-int__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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(3.75rem, 4vw, 7.5rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .p-idx-int__wrap .p-idx-int__inner {
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-int__wrap .p-idx-int__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__cont {
  width: 46.0185185185%;
}
@media screen and (max-width: 820px) {
  .p-idx-int__wrap .p-idx-int__inner .p-idx-int__cont {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-int__wrap .p-idx-int__inner .p-idx-int__cont {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__cont .c-btn-main {
  margin-top: 1.875rem;
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__cont .c-btn-main a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__img {
  width: 37.0424597365vw;
  height: auto;
  aspect-ratio: 506/313;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-int__wrap .p-idx-int__inner .p-idx-int__img {
    width: 100%;
  }
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__img picture {
  overflow: hidden;
  display: block;
}
.p-idx-int__wrap .p-idx-int__inner .p-idx-int__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==========================================================================
HIRAKATAを知る
=========================================================================*/
/* 歴史が繋ぐ100年企
----------------------------------------------------------------- */
.p-dis-history__wrap {
  position: relative;
  margin-top: 7.5rem;
  padding: 6.25rem 0 22.5rem;
  border-radius: 40px 40px 40px 0;
  z-index: 2;
}
@media screen and (min-width: 1367px) {
  .p-dis-history__wrap {
    padding: 6.25rem 0 26.3543191801vw;
  }
}
@media screen and (max-width: 820px) {
  .p-dis-history__wrap {
    margin-top: 5rem;
    padding: 5rem 0 12.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap {
    margin-top: 3.75rem;
    padding: 3.75rem 0 12.5rem;
  }
}
.p-dis-history__wrap .p-dis-history__imgs {
  position: absolute;
  right: -20px;
  top: -56px;
  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: 50px;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs {
    position: relative;
    top: auto;
    right: auto;
    right: -5%;
    margin-top: 2.5rem;
  }
}
.p-dis-history__wrap .p-dis-history__imgs .img1 picture,
.p-dis-history__wrap .p-dis-history__imgs .img2 picture {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.p-dis-history__wrap .p-dis-history__imgs .img1 picture img,
.p-dis-history__wrap .p-dis-history__imgs .img2 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;
}
.p-dis-history__wrap .p-dis-history__imgs .is-dot-tree {
  position: absolute;
  right: 77px;
  top: 394px;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs .is-dot-tree {
    right: 18%;
    top: 200px;
    width: 21.3333333333%;
  }
}
.p-dis-history__wrap .p-dis-history__imgs .img1 {
  margin-right: 0;
  margin-left: auto;
  width: 40.4099560761vw;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs .img1 {
    width: 80%;
  }
}
.p-dis-history__wrap .p-dis-history__imgs .img1 picture {
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs .img1 picture {
    border-radius: 30px 0 0 30px;
  }
}
.p-dis-history__wrap .p-dis-history__imgs .img2 {
  margin-right: 15.9590043924vw;
  width: 32.3572474378vw;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs .img2 {
    width: 64%;
  }
}
.p-dis-history__wrap .p-dis-history__imgs .img2 picture {
  border-radius: 40px;
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__imgs .img2 picture {
    border-radius: 30px;
  }
}
.p-dis-history__wrap .p-dis-history__txt {
  width: 36.6464339909%;
}
@media screen and (max-width: 820px) {
  .p-dis-history__wrap .p-dis-history__txt {
    width: 42.0731707317%;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-history__wrap .p-dis-history__txt {
    width: 100%;
  }
}

/* 木と木造建築の プロフェッショナル
----------------------------------------------------------------- */
.p-dis-expert__wrap {
  position: relative;
  padding: 0rem 0 6.25rem;
  z-index: 2;
  background-color: var(--white);
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap {
    padding: 0rem 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap {
    background-color: var(--whitesmoke);
  }
}
.p-dis-expert__wrap::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/dis_bg-lg.svg);
  background-repeat: no-repeat;
  width: 103.4407027818%;
  height: 800px;
  aspect-ratio: 1413/800;
  position: absolute;
  top: -160px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 71px));
          transform: translateX(calc(-50% + 71px));
}
@media screen and (min-width: 1367px) {
  .p-dis-expert__wrap::before {
    width: 103.4407027818vw;
    height: 58.5651537335vw;
    top: -11.7130307467vw;
    left: auto;
    right: -5.1976573939vw;
    -webkit-transform: none;
            transform: none;
    background-position: top right;
    background-size: cover;
  }
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap::before {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-position: 34%;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap::before {
    background-position: 51% 0;
    background-size: cover;
    width: 100%;
    height: 400px;
    top: -100px;
  }
}
.p-dis-expert__wrap::after {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/dis_bg-sm.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 605/311;
  position: absolute;
  top: -258px;
  left: -251px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap::after {
    width: 39%;
    top: -192px;
    left: -148px;
    background-size: contain;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap::after {
    left: 0%;
    top: -100px;
    width: 80%;
    left: -120px;
    top: -150px;
  }
}
.p-dis-expert__wrap .p-dis-expert__flex {
  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: 6.75rem;
}
@media screen and (min-width: 1367px) {
  .p-dis-expert__wrap .p-dis-expert__flex {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap .p-dis-expert__flex {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap .p-dis-expert__flex {
    gap: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-dis-expert__wrap .p-dis-expert__txt {
  width: 36.6464339909%;
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap .p-dis-expert__txt {
    width: 46.3414634146%;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap .p-dis-expert__txt {
    width: 100%;
  }
}
.p-dis-expert__wrap .p-dis-expert__img {
  width: 42.2161172161%;
}
@media screen and (max-width: 820px) {
  .p-dis-expert__wrap .p-dis-expert__img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-expert__wrap .p-dis-expert__img {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-dis-expert__wrap .p-dis-expert__img img {
  width: 100%;
  height: auto;
  position: relative;
}

/* 森と人を育てていく 木の未来への想い
----------------------------------------------------------------- */
.p-dis-growing__wrap {
  position: relative;
  z-index: 3;
  padding: 7.5rem 0 0;
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap {
    padding: 6.25rem 0 0;
  }
}
.p-dis-growing__wrap::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/forest.svg);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background-size: contain;
  background-repeat: no-repeat;
  width: 302px;
  height: 204px;
  aspect-ratio: 302/204;
  position: absolute;
  top: -122px;
  left: -53px;
}
@media screen and (max-width: 820px) {
  .p-dis-growing__wrap::before {
    width: 30%;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap::before {
    width: 48%;
    height: auto;
    top: -80px;
  }
}
.p-dis-growing__wrap .p-dis-growing__txt {
  width: 44.6130500759%;
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap .p-dis-growing__txt {
    width: 100%;
  }
}
.p-dis-growing__wrap .p-dis-growing__img {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap .p-dis-growing__img {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-dis-growing__wrap .p-dis-growing__img picture {
  overflow: hidden;
  display: block;
}
.p-dis-growing__wrap .p-dis-growing__img picture img {
  width: 100%;
  height: auto;
  position: relative;
}
.p-dis-growing__wrap .p-dis-growing__img .is-tree {
  position: absolute;
  right: -102px;
  top: -77px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-dis-growing__wrap .p-dis-growing__img .is-tree {
    right: -41px;
    top: -70px;
    width: 42.1686746988%;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap .p-dis-growing__img .is-tree {
    right: -20px;
    top: -50px;
    width: 26.6666666667%;
    height: auto;
  }
}
.p-dis-growing__wrap .p-dis-growing__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 460px) {
  .p-dis-growing__wrap .p-dis-growing__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

/* ==========================================================================
JOB -　仕事紹介
========================================================================== */
/* 相関図
----------------------------------------------------------------- */
.p-job-tree__wrap {
  padding-bottom: 0;
}

/* ナビゲーション
----------------------------------------------------------------- */
.p-job-list__wrap {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 6.25rem;
}
@media screen and (max-width: 460px) {
  .p-job-list__wrap {
    width: calc(100% - 20px);
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1367px) {
  .p-job-list__wrap {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-job-list__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;
  position: relative;
}
@media screen and (min-width: 1367px) {
  .p-job-list__inner {
    gap: 2.9282576867vw;
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__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: 460px) {
  .p-job-list__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-job-list__inner .p-job-list-nav__wrap {
  -webkit-flex-basis: 266px;
      -ms-flex-preferred-size: 266px;
          flex-basis: 266px;
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__inner .p-job-list-nav__wrap {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.p-job-list__inner .p-job-list-nav__wrap .sticky-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner {
  padding-left: 2.5rem;
  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;
}
@media screen and (max-width: 820px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 8px;
    -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: 460px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px 8px;
    -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-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a {
  padding-left: 26px;
  font-size: 1.125rem;
  line-height: 1.4;
  position: relative;
  font-weight: 700;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a {
    color: var(--white);
    border-radius: 50px;
    padding: 10px 23px;
    font-size: 1rem;
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a {
    color: var(--white);
    border-radius: 50px;
    padding: 10px 23px;
    font-size: 1rem;
    display: block;
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 8px 1px 8px 1px;
  background-color: var(--job1);
  position: absolute;
  left: 0;
  top: 6px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a::before {
    content: none;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li a::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(1) a {
    background-color: var(--job1);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(1) a.is-active {
  color: var(--job1);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(1) a.is-active::before {
  background-color: var(--job1);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(1) a:hover {
  color: var(--job1);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(1) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(2) a {
    background-color: var(--job1);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(2) a.is-active {
  color: var(--job1);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(2) a.is-active::before {
  background-color: var(--job1);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(2) a:hover {
  color: var(--job1);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(2) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(3) a {
    background-color: var(--job1);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(3) a.is-active {
  color: var(--job1);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(3) a.is-active::before {
  background-color: var(--job1);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(3) a:hover {
  color: var(--job1);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(3) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(4) a {
    background-color: var(--job2);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(4) a.is-active {
  color: var(--job2);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(4) a.is-active::before {
  background-color: var(--job2);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(4) a:hover {
  color: var(--job2);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(4) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(5) a {
    background-color: var(--job2);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(5) a.is-active {
  color: var(--job2);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(5) a.is-active::before {
  background-color: var(--job2);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(5) a:hover {
  color: var(--job2);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(5) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(6) a {
    background-color: var(--job2);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(6) a.is-active {
  color: var(--job2);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(6) a.is-active::before {
  background-color: var(--job2);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(6) a:hover {
  color: var(--job2);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(6) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(7) a {
    background-color: var(--job3);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(7) a.is-active {
  color: var(--job3);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(7) a.is-active::before {
  background-color: var(--job3);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(7) a:hover {
  color: var(--job3);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(7) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(8) a {
    background-color: var(--job4);
  }
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(8) a.is-active {
  color: var(--job4);
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(8) a.is-active::before {
  background-color: var(--job4);
  opacity: 1;
}
.p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(8) a:hover {
  color: var(--job4);
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list-nav__wrap .p-job-list-nav__inner li:nth-child(8) a:hover {
    color: var(--white);
    background-color: var(--sub);
  }
}
.p-job-list__inner .p-job-list__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-job-list__inner .p-job-list__cont {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__inner .p-job-list__cont {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}

.p-job-list__tree-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job-list__tree-wrap {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__tree-wrap {
    display: none;
  }
}

/* 木のイラストナビゲーション
----------------------------------------------------------------- */
.p-job-list__tree {
  margin-top: 30px;
  position: relative;
  min-height: 195px;
}
.p-job-list__tree::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 57px;
  bottom: 0;
  background-image: url(/recruit/resource/images/tree_nav.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 106px;
  height: 133px;
}
.p-job-list__tree li {
  position: absolute;
}
.p-job-list__tree li a {
  text-align: center;
  color: var(--disabled);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 100px;
  background-color: var(--white);
  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-job-list__tree li a:hover {
  background-color: rgba(var(--white-rgb), 0.7);
}
.p-job-list__tree li a:hover::before {
  opacity: 1;
}
.p-job-list__tree li:nth-child(1) {
  left: 61px;
  top: 31px;
}
.p-job-list__tree li:nth-child(1) a.is-active {
  color: var(--job1);
}
.p-job-list__tree li:nth-child(2) {
  left: 33px;
  top: 74px;
}
.p-job-list__tree li:nth-child(2) a.is-active {
  color: var(--job1);
}
.p-job-list__tree li:nth-child(3) {
  left: 68px;
  top: 112px;
}
.p-job-list__tree li:nth-child(3) a.is-active {
  color: var(--job1);
}
.p-job-list__tree li:nth-child(4) {
  right: 105px;
  top: 8px;
}
.p-job-list__tree li:nth-child(4) a.is-active {
  color: var(--job2);
}
.p-job-list__tree li:nth-child(5) {
  right: 54px;
  top: 21px;
}
.p-job-list__tree li:nth-child(5) a.is-active {
  color: var(--job2);
}
.p-job-list__tree li:nth-child(6) {
  right: 26px;
  top: 62px;
}
.p-job-list__tree li:nth-child(6) a.is-active {
  color: var(--job2);
}
.p-job-list__tree li:nth-child(7) {
  right: 44px;
  top: 107px;
}
.p-job-list__tree li:nth-child(7) a.is-active {
  color: var(--job3);
}
.p-job-list__tree li:nth-child(8) {
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 6px));
          transform: translateX(calc(-50% + 6px));
  z-index: 5;
}

.job01 {
  position: absolute;
  left: 26px;
  top: 23px;
  z-index: -1;
}
.job01 path {
  fill: var(--disabled);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.job01.is-active path {
  fill: var(--job1);
}

.job02 {
  position: absolute;
  right: 18px;
  top: 0;
  z-index: -1;
}
.job02 path {
  fill: var(--disabled);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.job02.is-active path {
  fill: var(--job2);
}

.job3 {
  width: 62px;
  height: 62px;
  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;
}
.job3 a {
  position: relative;
}
.job3 a::before {
  content: "";
  display: block;
  background-color: var(--disabled);
  width: 62px;
  height: 62px;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100px;
  opacity: 1;
}
.job3 a.is-active::before {
  background-color: var(--job3);
}

.job4 a {
  color: var(--white);
  background-color: initial !important;
  width: 100% !important;
}
.job4 a span {
  position: relative;
  width: 157px;
  height: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background-color: initial;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.job4 a span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 148px;
  background: var(--disabled);
  border-radius: 100%;
  z-index: -1;
}
.job4 a.is-active span::before {
  background-color: var(--job4);
}
.job4 a:hover {
  opacity: 1;
}
.job4 a:hover span {
  color: rgba(var(--white-rgb), 0.5);
}

/* 仕事紹介コンテンツボックス
----------------------------------------------------------------- */
.p-job-list__cont-box {
  position: relative;
  margin-bottom: 3.75rem;
  padding-top: 15px;
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box {
    margin-bottom: 2.5rem;
  }
}
.p-job-list__cont-box:last-child {
  margin-bottom: 0;
}
.p-job-list__cont-box .job-tag {
  color: var(--white);
  padding: 0.625rem 2.5rem;
  border-radius: 30px 0 30px 0;
  font-weight: 700;
  position: absolute;
  left: -12px;
  top: 0px;
  font-size: 1.75rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box .job-tag {
    font-size: 1.4375rem;
    padding: 8px 20px;
    left: 0px;
  }
}
.p-job-list__cont-box:nth-child(1) .job-tag {
  background-color: var(--job1);
}
.p-job-list__cont-box:nth-child(2) .job-tag {
  background-color: var(--job1);
}
.p-job-list__cont-box:nth-child(3) .job-tag {
  background-color: var(--job1);
}
.p-job-list__cont-box:nth-child(4) .job-tag {
  background-color: var(--job2);
}
.p-job-list__cont-box:nth-child(5) .job-tag {
  background-color: var(--job2);
}
.p-job-list__cont-box:nth-child(6) .job-tag {
  background-color: var(--job2);
}
.p-job-list__cont-box:nth-child(7) .job-tag {
  background-color: var(--job3);
}
.p-job-list__cont-box:nth-child(8) .job-tag {
  background-color: var(--job4);
}
.p-job-list__cont-box .p-job-list__cont-box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8.8888888889%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -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;
  background-color: var(--white);
  border-radius: 30px;
  padding: 3.75rem;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner {
    padding: 3.75rem 2.5rem 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner {
    padding: 3.125rem 20px 2.5rem;
  }
}
.p-job-list__cont-box .p-job-list__cont-box__inner .txt {
  width: 53.6666666667%;
}
@media screen and (max-width: 820px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .txt {
    width: 100%;
  }
}
.p-job-list__cont-box .p-job-list__cont-box__inner .txt .p-job-list__cont-box__ttl {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .txt .p-job-list__cont-box__ttl {
    margin-bottom: 1.25rem;
  }
}
.p-job-list__cont-box .p-job-list__cont-box__inner .img {
  width: 35.5555555556%;
  position: relative;
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .img {
    width: 70%;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .img {
    width: 80%;
  }
}
.p-job-list__cont-box .p-job-list__cont-box__inner .img::before {
  content: "";
  display: block;
  position: absolute;
  right: -7px;
  bottom: -8px;
  width: 125px;
  height: 87px;
  background-image: url(/recruit/resource/images/job_accent.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .img::before {
    width: 15.243902439vw;
    height: 10.6097560976vw;
  }
}
@media screen and (max-width: 460px) {
  .p-job-list__cont-box .p-job-list__cont-box__inner .img::before {
    width: 125px;
    height: 87px;
  }
}
.p-job-list__cont-box .p-job-list__cont-box__inner .img picture img {
  display: block;
  width: 100%;
  height: 100%;
  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;
  border-radius: 100%;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
}
.p-job-list__cont-box .p-job-list__cont-box__inner .img .is-accent {
  position: absolute;
  right: 0;
  bottom: 0px;
}

/* YOUTUBE bnr
----------------------------------------------------------------- */
.p-job-bnr {
  margin-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .p-job-bnr {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-job-bnr {
    margin-top: 3.75rem;
  }
}

.p-job-bnr__cont {
  height: 356px;
  -webkit-box-shadow: 0px 0px 20px 0px rgb(242, 244, 240);
          box-shadow: 0px 0px 20px 0px rgb(242, 244, 240);
}
.p-job-bnr__cont a picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .p-job-bnr__cont a picture img {
    border-radius: 10px;
  }
}
.p-job-bnr__cont a:hover picture img {
  opacity: 0.7;
}

/* ==========================================================================
働く環境
=========================================================================*/
/* 木の匂いがする空間
----------------------------------------------------------------- */
.p-env__office__wrap .p-env__office__box {
  border-radius: 30px;
  padding: 3.75rem;
}
@media screen and (max-width: 820px) {
  .p-env__office__wrap .p-env__office__box {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-env__office__wrap .p-env__office__box {
    padding: 2.5rem 1.25rem;
  }
}

/* 社員アンケート
----------------------------------------------------------------- */
.p-enviro-voice__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;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-enviro-voice__ttl {
    margin-bottom: 1.5rem;
  }
}
.p-enviro-voice__ttl .q {
  background-color: var(--main);
  color: var(--white);
  font-size: 2.6875rem;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 100%;
  width: 72px;
  height: 72px;
  display: inline-block;
  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;
  margin-right: 20px;
  position: relative;
  aspect-ratio: 1;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__ttl .q {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    font-size: 1.875rem;
  }
}
.p-enviro-voice__ttl .q::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/hukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11px;
  height: 12px;
  position: absolute;
  bottom: -1px;
  right: 6px;
}
.p-enviro-voice__ttl .txt {
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--main);
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__ttl .txt {
    font-size: 1.4375rem;
  }
}

.p-enviro-voice__card {
  border-radius: 30px;
  background-color: var(--whitesmoke);
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .p-enviro-voice__card {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card {
    padding: 2.5rem 1.25rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__img img {
  width: 100%;
  height: 100%;
  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;
}
.p-enviro-voice__card .p-enviro-voice__card__list__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__list__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list {
  width: 213.1578947368%;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list {
    width: 100%;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list li {
  font-size: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 20px;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list li {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list li:last-child {
  margin-bottom: 0;
}
.p-enviro-voice__card .p-enviro-voice__card__list__wrap .p-enviro-voice__card__list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 14px;
  background-color: var(--main);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  margin-right: 8px;
}
.p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap {
    gap: 1.875rem;
  }
}
.p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap .p-enviro-voice__card__hukidashi {
  position: relative;
  background-color: var(--white);
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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-size: 1.25rem;
  padding: 1.5rem 1.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap .p-enviro-voice__card__hukidashi {
    width: 100%;
    font-size: 1rem;
    padding: 1.25rem 1.875rem;
  }
}
.p-enviro-voice__card.p-enviro-voice__card__hukidashi__wrap .p-enviro-voice__card__hukidashi::before {
  content: "";
  display: block;
  background-image: url(/recruit/resource/images/hukidashi--white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 22px;
  height: 14px;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-enviro-voice__card .p-enviro-voice__card__graph {
  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;
}
.p-enviro-voice__card .p-enviro-voice__card__rank {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-enviro-voice__card .p-enviro-voice__card__rank li {
  font-weight: 700;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 10px;
  margin-bottom: 14px;
  background-size: 8px 2px;
  background-image: -webkit-linear-gradient(left, var(--main) 2px, transparent 2px);
  background-image: linear-gradient(to right, var(--main) 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li {
    gap: 16px;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:last-child {
  margin-bottom: 0;
}
.p-enviro-voice__card .p-enviro-voice__card__rank li span {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  background-color: var(--white);
  border-radius: 4px;
  padding: 6px 0;
  text-align: center;
  display: inline-block;
  min-width: 120px;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li span {
    min-width: initial;
    max-width: 80px;
    width: 100%;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(1) {
  font-size: 1.6875rem;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(1) {
    font-size: 1.4375rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(1) span {
  font-size: 2.125rem;
  color: var(--main);
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(1) span {
    font-size: 1.75rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(1) span::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -23px;
  background-image: url(/recruit/resource/images/sparkle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 26px;
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(2), .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(3) {
  font-size: 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(2), .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(3) {
    font-size: 1.125rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(2) span, .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(3) span {
  font-size: 1.75rem;
  color: rgba(var(--main-rgb), 0.8);
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(2) span, .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(3) span {
    font-size: 1.4375rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(4), .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(5) {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(4), .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(5) {
    font-size: 1rem;
  }
}
.p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(4) span, .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(5) span {
  font-weight: 700;
  font-size: 1.4375rem;
  color: rgba(var(--main-rgb), 0.6);
}
@media screen and (max-width: 460px) {
  .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(4) span, .p-enviro-voice__card .p-enviro-voice__card__rank li:nth-child(5) span {
    font-size: 1.125rem;
  }
}

.c-flex--md.p-enviro-voice__felx {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 820px) {
  .c-flex--md.p-enviro-voice__felx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.c-flex--md.p-enviro-voice__felx .c-flex-2clm {
  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-flex--md.p-enviro-voice__felx .p-enviro-voice__card {
  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;
}

.p-enviro__sec-img {
  margin-top: 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-enviro__sec-img {
    margin-top: 2.5rem;
  }
}
.p-enviro__sec-img picture {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-enviro__sec-img picture {
    border-radius: 20px;
  }
}
.p-enviro__sec-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;
}

/* 採用トピックス
----------------------------------------------------------------- */
.p-enviro-topic__card,
.p-enviro-topic__card--re {
  padding: 2.5rem 3.75rem;
  border-radius: 30px;
  background-color: var(--whitesmoke);
  position: relative;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 820px) {
  .p-enviro-topic__card,
  .p-enviro-topic__card--re {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-topic__card,
  .p-enviro-topic__card--re {
    padding: 2.5rem 1.25rem;
    margin-top: 3.75rem;
  }
}
.p-enviro-topic__card .tag,
.p-enviro-topic__card--re .tag {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  padding: 12px 34px;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  display: inline-block;
  position: absolute;
  font-weight: 600;
  top: -14px;
  left: -12px;
  border-radius: 30px 0 30px 0;
}
@media screen and (max-width: 820px) {
  .p-enviro-topic__card .tag,
  .p-enviro-topic__card--re .tag {
    top: -12px;
    left: -10px;
    padding: 8px 30px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-topic__card .tag,
  .p-enviro-topic__card--re .tag {
    left: -10px;
  }
}
.p-enviro-topic__card .p-enviro-topic__card__flex,
.p-enviro-topic__card--re .p-enviro-topic__card__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: 3.75rem;
}
@media screen and (max-width: 820px) {
  .p-enviro-topic__card .p-enviro-topic__card__flex,
  .p-enviro-topic__card--re .p-enviro-topic__card__flex {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-topic__card .p-enviro-topic__card__flex,
  .p-enviro-topic__card--re .p-enviro-topic__card__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}
.p-enviro-topic__card .p-enviro-topic__card__txt,
.p-enviro-topic__card--re .p-enviro-topic__card__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-enviro-topic__card .p-enviro-topic__card__img,
.p-enviro-topic__card--re .p-enviro-topic__card__img {
  width: 23.8095238095%;
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-enviro-topic__card .p-enviro-topic__card__img,
  .p-enviro-topic__card--re .p-enviro-topic__card__img {
    width: 28.28854314%;
  }
}
@media screen and (max-width: 460px) {
  .p-enviro-topic__card .p-enviro-topic__card__img,
  .p-enviro-topic__card--re .p-enviro-topic__card__img {
    width: 68%;
    margin: auto;
  }
}
.p-enviro-topic__card .p-enviro-topic__card__img img,
.p-enviro-topic__card--re .p-enviro-topic__card__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-enviro-topic__card--re:last-child {
  margin-bottom: 0;
}
.p-enviro-topic__card--re .p-enviro-topic__card__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 460px) {
  .p-enviro-topic__card--re .p-enviro-topic__card__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}
.p-enviro-topic__card--re .tag {
  left: auto;
  right: -12px;
  border-radius: 0 30px 0 30px;
}
@media screen and (max-width: 820px) {
  .p-enviro-topic__card--re .tag {
    right: -10px;
  }
}

/* ==========================================================================
インターンシップ
=========================================================================*/
/* 「木の建物」の良さがわかる体験ツアー！
----------------------------------------------------------------- */
.p-rec-program-box {
  background-color: var(--whitesmoke);
  padding: 3.75rem;
  border-radius: 30px;
}
@media screen and (max-width: 820px) {
  .p-rec-program-box {
    padding: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-program-box {
    padding: 2.5rem 1.25rem;
  }
}
.p-rec-program-box .txt-main {
  font-size: 1.75rem;
  color: var(--main);
}
.p-rec-program-box .p-rec-program-box__inner {
  padding: 3.125rem;
  background-color: var(--white);
  border-radius: 30px;
}
@media screen and (max-width: 820px) {
  .p-rec-program-box .p-rec-program-box__inner {
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner {
    border-radius: 20px;
    padding: 2.5rem 20px;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 15px;
  background-size: 8px 2px;
  background-image: -webkit-linear-gradient(left, var(--main) 2px, transparent 2px);
  background-image: linear-gradient(to right, var(--main) 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .txt {
  font-size: 1.4375rem;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .txt {
    padding-left: 28px;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .txt::before {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_intern.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 26px;
  height: 33px;
  vertical-align: bottom;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .txt::before {
    position: absolute;
    left: 0;
    width: 20px;
    height: 26px;
    top: 3px;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .sm {
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 820px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .sm {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__ttl .sm {
    font-size: 1rem;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .program {
  width: 56.7660550459%;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .program {
    width: 100%;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img {
  width: 38.5321100917%;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img {
    width: 100%;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img picture {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img picture:last-child {
  margin-top: 1.875rem;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box .p-rec-program-box__inner .p-rec-program-box__cont .img picture:last-child {
    margin-top: 20px;
  }
}

.p-rec-program-box__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 460px) {
  .p-rec-program-box__item {
    -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;
  }
}
.p-rec-program-box__item:last-child {
  margin-bottom: 0;
}
.p-rec-program-box__item .ttl {
  font-weight: 700;
  color: var(--main);
  background-color: var(--whitesmoke);
  border-radius: 100px;
  width: 4.5rem;
  height: 4.5rem;
  aspect-ratio: 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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 2em;
  text-shadow: 0px 0px 3px rgb(255, 255, 255);
}
.p-rec-program-box__item .txt {
  font-size: 1.125rem;
  font-weight: 500;
}

.p-rec-program-sec-img {
  border-radius: 30px;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-rec-program-sec-img {
    margin-top: 20px;
    border-radius: 20px;
    aspect-ratio: 336/208;
    overflow: hidden;
  }
  .p-rec-program-sec-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

/* 応募の流れ
----------------------------------------------------------------- */
.p-rec-flow__wrap {
  position: relative;
}
.p-rec-flow__wrap::before {
  content: "";
  display: block;
  width: 3px;
  height: 90%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 111px;
  background-size: 2px 8px;
  background-image: -webkit-linear-gradient(top, var(--main) 2px, transparent 4px);
  background-image: linear-gradient(to bottom, var(--main) 2px, transparent 4px);
  background-repeat: repeat-y;
  background-position: left bottom;
  z-index: -1;
}
@media screen and (max-width: 460px) {
  .p-rec-flow__wrap::before {
    left: 80px;
  }
}

.p-rec-flow-box {
  background-color: var(--whitesmoke);
  border-radius: 1.25rem;
  padding: 2.5rem 3.75rem;
  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: 5rem;
}
@media screen and (max-width: 820px) {
  .p-rec-flow-box {
    padding: 2.5rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-flow-box {
    padding: 2.5rem 1.875rem;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-flow-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-rec-flow-box__step {
  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: 0.625rem;
  width: 40.5677655678%;
}
@media screen and (max-width: 820px) {
  .p-rec-flow-box__step {
    width: 250px;
  }
}
@media screen and (max-width: 460px) {
  .p-rec-flow-box__step {
    width: 100%;
  }
}
.p-rec-flow-box__step .p-rec-flow-box__step__num {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2.0625rem;
  line-height: 1em;
  color: var(--main);
}
@media screen and (max-width: 460px) {
  .p-rec-flow-box__step .p-rec-flow-box__step__num {
    font-size: 1.75rem;
  }
}
.p-rec-flow-box__step .p-rec-flow-box__step__txt {
  font-size: 1.25rem;
  line-height: 1.5em;
  color: var(--black);
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .p-rec-flow-box__step .p-rec-flow-box__step__txt {
    font-size: 1.125rem;
  }
}

.p-rec-flow-box__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-rec-flow-box__desc {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-rec-flow-box__desc .c-btn-link {
  max-width: 340px;
  width: 100%;
}

/* ==========================================================================
募集要項
=========================================================================*/
/* エントリーボックス
----------------------------------------------------------------- */
.p-rec-entry-box__wrap {
  background-color: var(--whitesmoke);
  border-radius: 30px;
  position: relative;
}
.p-rec-entry-box__wrap .is-tree {
  position: absolute;
  top: -76px;
  right: 33px;
}
@media screen and (max-width: 460px) {
  .p-rec-entry-box__wrap .is-tree {
    top: -46px;
    right: 5px;
    width: 21.4285714286%;
  }
}
.p-rec-entry-box__wrap .p-rec-entry-box__ttl {
  font-family: "Poppins", sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: var(--main);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-rec-entry-box__wrap .p-rec-entry-box__ttl {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
}
.p-rec-entry-box__wrap .c-btn-contact {
  max-width: 406px;
}
.p-rec-entry-box__wrap .c-flex {
  margin-top: 2.5rem;
  gap: 2.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .p-rec-entry-box__wrap .c-flex {
    gap: 1.25rem;
  }
}

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

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

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

.margin-xsm-top {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 820px) {
  .margin-xsm-top {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xsm-top {
    margin-top: 0.625rem;
  }
}

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

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

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

.margin-xxlg-top {
  margin-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .margin-xxlg-top {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .margin-xxlg-top {
    margin-top: 3.75rem;
  }
}

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

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

/* パディング
----------------------------------------------------------------- */
.padding-xlg-top {
  padding-top: 5rem;
}
@media screen and (max-width: 460px) {
  .padding-xlg-top {
    padding-top: 3.75rem;
  }
}

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

/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Poppins", 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: 820px) {
  .txt-lead {
    line-height: 2;
  }
}
@media screen and (max-width: 460px) {
  .txt-lead {
    line-height: 1.8;
  }
}

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

.txt-sm {
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .txt-sm {
    font-size: 14px;
  }
}

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

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

.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:hover,
.txt-link--arrow:hover,
.txt-link--win:hover {
  color: var(--hover);
}

.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: 460px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

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

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

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

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

.txt-disabled {
  color: #B8B9B7 !important;
}

.txt-main {
  color: #4D9C28 !important;
}

.txt-sub {
  color: #90E43D !important;
}

.txt-job1 {
  color: #10B23B !important;
}

.txt-job2 {
  color: #409F13 !important;
}

.txt-job3 {
  color: #68BB08 !important;
}

.txt-job4 {
  color: #00AF83 !important;
}

.txt-hover {
  color: #00E1FF !important;
}

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

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

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

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

/* 電話番号
----------------------------------------------------------------- */
.txt-tel img {
  margin-right: 8px;
  width: 26px;
  vertical-align: baseline;
}
@media screen and (max-width: 820px) {
  .txt-tel img {
    width: 24px;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel img {
    width: 20px;
  }
}
.txt-tel a[href^="tel:"] {
  font-family: "Poppins", sans-serif;
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .txt-tel a[href^="tel:"] {
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  .txt-tel a[href^="tel:"] {
    font-size: 5.8536585366vw;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
    font-size: 2.375rem;
  }
  .txt-tel a[href^="tel:"]:hover {
    color: var(--hover);
  }
}

.txt-tel__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .txt-tel__info {
    font-size: 13px;
    margin-top: 9px;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel__info {
    text-align: left !important;
    line-height: 1.2;
    font-size: 12px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.txt-tel__info .highlight {
  border-radius: 4px;
  color: var(--main);
  margin-right: 8px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .txt-tel__info .highlight {
    margin-right: 2px;
    font-size: 12px;
  }
}

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

.radi15 {
  border-radius: 0.9375rem;
}

.radi20 {
  border-radius: 1.25rem;
}

.radi30 {
  border-radius: 1.875rem;
}

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

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

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

.bg-disabled {
  background-color: #B8B9B7 !important;
}

.bg-main {
  background-color: #4D9C28 !important;
}

.bg-sub {
  background-color: #90E43D !important;
}

.bg-job1 {
  background-color: #10B23B !important;
}

.bg-job2 {
  background-color: #409F13 !important;
}

.bg-job3 {
  background-color: #68BB08 !important;
}

.bg-job4 {
  background-color: #00AF83 !important;
}

.bg-hover {
  background-color: #00E1FF !important;
}

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

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

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

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

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

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

/* ==========================================================================
 非表示
=========================================================================*/
.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: 1367px) {
  .visible-more-xpc {
    display: block;
  }
}
@media screen and (max-width: 1366px) {
  .visible-more-xpc {
    display: none !important;
  }
}

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

/* xpc以下*/
@media screen and (max-width: 1366px) {
  .visible-less-xpc {
    display: block;
  }
}
@media screen and (min-width: 1367px) {
  .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: 1025px) and (max-width: 1280px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (max-width: 1024px), (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: 1025px) {
  .visible-more-lp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .visible-more-lp {
    display: none !important;
  }
}

/* lpのみ*/
@media screen and (min-width: 821px) and (max-width: 1024px) {
  .visible-lp {
    display: block;
  }
}
@media screen and (max-width: 820px), (min-width: 1025px) {
  .visible-lp {
    display: none !important;
  }
}

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

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

/* tbのみ*/
@media screen and (min-width: 461px) and (max-width: 820px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 460px), (min-width: 821px) {
  .visible-tb {
    display: none !important;
  }
}

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

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

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

/*-==========================================================================
その他
==========================================================================*/
/* アニメーション関連
----------------------------------------------------------------- */
.js-clip-text {
  display: inline-block; /* 必須 */
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* 右側を100%切り取る */
}

/* 角丸
----------------------------------------------------------------- */
.radi-md {
  border-radius: 40px;
}
@media screen and (max-width: 460px) {
  .radi-md {
    border-radius: 30px;
  }
}/*# sourceMappingURL=main.css.map */