@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
:root {
  --newgraduate-color: #33AD00;
  --midcarrer-color: #FF5200;
  --hd-height: 50px;
  --font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (min-width: 768px) {
  :root {
    --hd-height: 80px;
  }
}

.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1;
  --aspect-ratio-pc: 1;
}

.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 3/2;
}

.aspect-ratio-3x4 {
  --aspect-ratio-sp: 3/4;
  --aspect-ratio-pc: 3/4;
}

.aspect-ratio-4x3 {
  --aspect-ratio-sp: 4/3;
  --aspect-ratio-pc: 4/3;
}

.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16/9;
  --aspect-ratio-pc: 16/9;
}

.aspect-ratio-15x17 {
  --aspect-ratio-sp: 15/17;
  --aspect-ratio-pc: 15/17;
}

.aspect-ratio-10x3 {
  --aspect-ratio-sp: 10/3;
  --aspect-ratio-pc: 10/3;
}

.aspect-ratio-5x1 {
  --aspect-ratio-sp: 5/1;
  --aspect-ratio-pc: 5/1;
}

.aspect-ratio-kv {
  --aspect-ratio-sp: 750/507;
  --aspect-ratio-pc: 1920/504;
}

.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

/******************************************************************
  ■common-base
*****************************************************************/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  body.fixed {
    overflow-y: hidden;
    position: fixed;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

#wrap {
  overflow: hidden;
}

.data-for-aidemlog { /* 独自ログ計測用 */ }

/* フォント */
.font-min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-bold {
  font-weight: bold;
}

dl, ol, ul {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  select, input[type=text] {
    font-size: 1.6rem;
    transform: scale(0.875);
  }
}

@media (max-width: 767px) {
  .text-sp-center {
    text-align: center;
  }
}

/* 画像 */
img {
  width: 100%;
  height: auto;
}

.cent-img {
  height: 200px;
  text-align: center;
  margin: 0 0 20px;
}
.cent-img img {
  position: relative;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(-50%);
}

.img-hover {
  overflow: hidden;
}
.img-hover img {
  transition: 1s linear;
}
.img-hover:hover img {
  transform: scale(1.05) rotate(0.1deg);
}

.main {
  padding-top: 60px;
  min-height: 700px;
}

.float-left {
  float: left;
}

.f-end {
  justify-content: flex-end;
}

/* paddingの追加
----------------------------------------------- */
.pb-6 {
  padding-bottom: 3.5rem;
}

.pb-7 {
  padding-bottom: 4rem;
}

.pb-8 {
  padding-bottom: 4.5rem;
}

.pb-9 {
  padding-bottom: 5rem;
}

/* = Selected Text
----------------------------------------------- */
::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}
::selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}

::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Firefox */
}

/******************************************************************
  ■bootstrapリセット
*****************************************************************/
@media (min-width: 576px) {
  .container, .contents-inn {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container, .contents-inn {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .container, .contents-inn {
    max-width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .container, .contents-inn {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container {
    margin: var(--hd-height) auto 0 !important;
  }
}
@media (max-width: 767px) {
  .container {
    margin-top: var(--hd-height);
  }
}
footer .container, #index .container, .sticky-bottom-wrap .container {
  margin: auto !important;
}

/******************************************************************
  ■common
*****************************************************************/
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: #333;
  text-decoration: none;
}
a:link.inline, a:visited.inline, a:active.inline, a:hover:hover.inline {
  display: inline;
  text-decoration: underline;
}
a.hov_scale:hover > img {
  transform: scale(1.05);
}
a > img {
  width: 100%;
  transition: transform 0.7s ease-out;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* パンくずリスト
------------------------------*/
@media (max-width: 767px) {
  #breadcrumbs {
    background: #eee;
    margin: 0 calc(50% - 50vw);
    padding: 0 20px;
  }
}
#breadcrumbs ol {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #breadcrumbs ol {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    white-space: nowrap;
  }
  #breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  #breadcrumbs ol {
    padding: 7px 0;
  }
}
#breadcrumbs ol li {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0;
}
@media (min-width: 768px) {
  #breadcrumbs ol li {
    height: auto;
  }
}
#breadcrumbs ol li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin-left: 5px;
}
@media (max-width: 767px) {
  #breadcrumbs ol li:not(:last-child)::after {
    padding: 10px 0;
  }
}
#breadcrumbs ol li a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #888888;
  overflow: visible;
}
@media (max-width: 767px) {
  #breadcrumbs ol li a {
    border-bottom: none;
  }
}

/* ネガティブマージン
------------------------------*/
.full-width {
  margin: 0 calc(50% - 50vw);
}
.full-width .contents-inn {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .full-width .contents-inn {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .full-sp-width {
    margin: 0 calc(50% - 50vw);
  }
}
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* SVG
------------------------------*/
svg.svg-icon {
  margin: 2px 5px 0 0;
  height: 20px;
  width: 20px;
  fill: #33AD00;
}
@media (min-width: 768px) {
  svg.svg-icon {
    width: 27px;
    height: 27px;
    margin-right: 10px;
    margin-top: -2px;
  }
}

#index svg.svg-icon {
  margin: -2px 5px 0 0;
}

/* ボタン
------------------------------*/
.submitBtn {
  font-size: 1.6rem;
  /* font-weight: bold;*/
  padding: 0 10px 10px;
  letter-spacing: 0;
  line-height: 1;
}
.submitBtn li {
  padding: 0 5px 10px !important;
}
.submitBtn li a {
  position: relative;
  background: #33AD00;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 0 1px #ccc;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .submitBtn li a {
    padding: 22px 0;
  }
}
.submitBtn li a:hover {
  color: #fff;
}
.submitBtn li.oubo a {
  background: #bf2e3c;
}
.submitBtn li.oubo a::before {
  border: 0;
}
.submitBtn li.oubo a span {
  position: relative;
  padding-left: 35px;
}
.submitBtn li.oubo a span::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  background: url("../img/common/icon-oubo-web.png") center/contain no-repeat;
  width: 25px;
  height: 25px;
  border: 0;
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span::after {
    width: 29px;
    height: 29px;
    top: 0;
  }
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span {
    padding-left: 39px;
  }
}
.submitBtn li.oubo.tel a span::after {
  background: url("../img/common/icon-oubo-tel.png") center/contain no-repeat;
}
.submitBtn li.oubo.map {
  padding: 10px 5px !important;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .submitBtn li.oubo.map {
    font-size: 1.6rem;
    padding: 15px 30px 0 0 !important;
  }
}
.submitBtn li.oubo.map a {
  background: #33AD00;
  padding: 15px 20px;
}
.submitBtn li.oubo.map a span::after {
  background: url("../img/common/icon-link-map.png") center/contain no-repeat;
  top: -4px;
  width: 25px;
  height: 25px;
}
@media (min-width: 768px) {
  .submitBtn li.oubo.map a span::after {
    top: -2px;
  }
}
@media (min-width: 768px) {
  .submitBtn li {
    padding: 0 10px !important;
  }
}
@media (min-width: 768px) {
  .submitBtn {
    font-size: 2.4rem;
    padding: 0 30px 30px 30px;
    letter-spacing: 2px;
  }
}
.submitBtn.button {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .submitBtn.button {
    padding: 40px 0;
  }
}
.submitBtn.map-link {
  padding: 0;
}
.submitBtn .blank {
  position: relative;
}
.submitBtn .blank::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(0deg);
  border: none;
  background: url(../img/common/icon-blank-w_pc.png) center/10px no-repeat;
}

.contents {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .contents-sp-15 {
    padding: 15px 0;
  }
}
.contents-inn {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents-inn {
    padding: 60px 0;
  }
}

/******************************************************************
  ■ タイトルタイプ
*****************************************************************/
/* タイトル2段
------------------------------*/
.tit_type_2nd {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
  font-weight: normal;
}
.tit_type_2nd .ttl-en {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #424656;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-en {
    font-size: 1.4rem;
  }
}
.tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-jp {
    font-size: 2.6rem;
  }
}

/* タイトル横並び
------------------------------*/
.tit_type_side {
  line-height: 1.2;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .tit_type_side {
    flex-wrap: wrap;
  }
}
.tit_type_side .ttl-en {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #424656;
  margin-right: 10px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tit_type_side .ttl-en {
    width: 100%;
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) {
  .tit_type_side .ttl-en {
    font-size: 1.6rem;
  }
}
.tit_type_side .ttl-jp {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_side .ttl-jp {
    font-size: 3.6rem;
  }
}

/* タイトル(タイプA)
------------------------------*/
.tit_type_a {
  position: relative;
  text-align: center;
  margin-bottom: 43px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_a {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}
.tit_type_a::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  transform: translate3d(-50%, 0, 0);
  background: #33AD00;
}
@media (min-width: 768px) {
  .tit_type_a::before {
    width: 50px;
    height: 4px;
  }
}

/* タイトル(タイプB)
------------------------------*/
.tit_type_b {
  position: relative;
  font-size: 1.6rem;
  padding: 0 10px 0.5em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .tit_type_b {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
.tit_type_b::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  content: "";
  width: 30%;
  height: 1px;
  background-color: #424656;
}

/* タイトル(タイプC)
------------------------------*/
.tit_type_c {
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .tit_type_c {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .tit_type_c {
    background: none;
  }
}
.tit_type_c::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: #424656;
}
@media (min-width: 768px) {
  .tit_type_c::before {
    width: 6px;
  }
}
@media (min-width: 768px) {
  .tit_type_c .tit_type_c_txt {
    padding: 5px 10px;
    position: relative;
    letter-spacing: 0.2em;
  }
  .tit_type_c .tit_type_c_txt::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    content: "";
    min-width: 1000px;
    height: 1px;
    background: #ccc;
  }
}

/* タイトル(タイプD)
------------------------------*/
.tit_type_d {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .tit_type_d {
    font-size: 2.4rem;
  }
}
.tit_type_d span {
  background: linear-gradient(#fff 60%, rgba(51, 173, 0, 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: #424656;
}
@media (min-width: 768px) {
  .tit_type_e {
    font-size: 1.6rem;
  }
}

/* タイトル(タイプF)
------------------------------*/
.tit_type_f {
  position: relative;
  margin-bottom: 10px;
  padding-left: 13px;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .tit_type_f {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.tit_type_f::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  border-radius: 3px;
  content: "";
  background-color: #33AD00;
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: #33AD00;
  border-bottom: 1px solid #33AD00;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 20px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .tit_type_g {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

/* タイトル(タイプH)
------------------------------*/
.tit_type_h {
  color: #fff;
  background: #33AD00;
  font-size: 1.5rem;
  padding: 10px;
}
@media (min-width: 768px) {
  .tit_type_h {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}

.card-img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 768px) {
  .card-img {
    height: 300px;
  }
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.link-list li {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .link-list li {
    border-left: 1px solid #ccc;
  }
  .link-list li:nth-child(4n), .link-list li:last-child {
    border-right: 1px solid #ccc;
  }
}
@media (max-width: 767px) {
  .link-list li {
    border-bottom: 1px solid #ccc;
  }
  .link-list li:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
}
.link-list li a {
  position: relative;
  padding: 17px 30px 17px 17px;
}
.link-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
  right: 20px;
}
@media (min-width: 768px) {
  .link-list li a::before {
    border-color: #333;
  }
}

.block {
  border: 1px solid #33AD00;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block {
    border: 2px solid #33AD00;
  }
}

.detail-title {
  font-size: 12px;
  margin-bottom: 5px;
}

.note-block .note-block-l {
  width: 50%;
  padding-right: 3px;
}
@media (min-width: 768px) {
  .note-block .note-block-l {
    margin-right: 15px;
  }
}
.note-block .note-block-r {
  width: 50%;
  padding-left: 3px;
}
@media (min-width: 768px) {
  .note-block .note-block-r {
    margin-left: 15px;
  }
}

.cts-copy {
  color: #33AD00;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .cts-copy {
    font-size: 20px;
  }
}

.ic {
  font-size: 0;
  display: inline-block;
}
@media (min-width: 768px) {
  .ic {
    margin-bottom: 9px;
  }
}
.ic li {
  display: inline-block;
  color: #333;
  line-height: 1;
  font-size: 11px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  white-space: nowrap;
  background: #ccc;
}
.ic li.ic-arbeit {
  background: #A12626;
  color: #fff;
}
.ic li.ic-parttimer {
  background: #773E7E;
  color: #fff;
}
.ic li.ic-career {
  background: #2D557B;
  color: #fff;
}
.ic li.ic-contract {
  background: #4c8341;
  color: #fff;
}
.ic li.ic-scd {
  background: #fff;
  border: 1px solid #33AD00;
  color: #33AD00;
}
.ic li.ic-style {
  background: #fff;
  border: 1px solid #888;
  color: #333;
}
.ic li.ic-ng {
  background: #00A8AD;
  color: #fff;
}
.ic li.ic-ys {
  background: #4DA878;
  color: #fff;
}
.ic li.ic-yp {
  background: #69BE91;
  color: #fff;
}
.ic li.ic-ks {
  background: #E29E51;
  color: #fff;
}
.ic li.ic-kp {
  background: #DEAF7A;
  color: #fff;
}
.ic li.ic-ms {
  background: #C58787;
  color: #fff;
}
.ic li.ic-mp {
  background: #DFA7A7;
  color: #fff;
}
.ic li.ic-os {
  background: #3E3A39;
  color: #fff;
}
.ic li.ic-is {
  background: #FF7E1C;
  color: #fff;
}
@media (min-width: 768px) {
  .ic li {
    padding: 5px 10px;
    margin: 0 5px 5px 0;
  }
}

.carous-box {
  font-size: 1.3rem;
  margin-top: -5px;
}
@media (min-width: 768px) {
  .carous-box {
    margin-top: 30px;
    display: flex;
  }
}
@media (max-width: 767px) {
  .carous-box .carous-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 5px;
  }
  .carous-box .carous-item a {
    display: table;
  }
  .carous-box .carous-item a .listItem-img {
    display: table-cell;
    width: 100px;
    height: 75px;
    vertical-align: middle;
    text-align: center;
    position: relative;
  }
  .carous-box .carous-item a .listItem-tit {
    display: table-cell;
    width: auto;
    padding-left: 10px;
    vertical-align: middle;
  }
}
@media (min-width: 768px) {
  .carous-box .carous-item {
    width: calc(20% - 8px);
  }
  .carous-box .carous-item:not(:last-child) {
    margin-right: 15px;
  }
  .carous-box .carous-item .listItem-img {
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 10px;
  }
  .carous-box .carous-item .checked-listItem .listItem-img {
    position: relative;
    overflow: hidden;
  }
  .carous-box .carous-item .checked-listItem .listItem-img::before {
    position: relative;
    display: block;
    content: "";
    padding-top: 75%;
  }
  .carous-box .carous-item .checked-listItem img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /*                    max-width: 100%;
                        max-height: 100%;
                        width: auto;
                        height: auto;*/
  }
}

#load-recommend .contents {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #load-recommend .contents {
    padding-bottom: 30px;
  }
}

/******************************************************************
  ■ コンテンツ関連
*****************************************************************/
/* ページ内リンク(タイプA)
------------------------------*/
.guide-link-type-a {
  flex-wrap: wrap;
  border: 1px solid #33AD00;
  border-bottom: none;
  margin-top: 15px;
  background: #fff;
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: #33AD00;
}
@media (min-width: 768px) {
  .guide-link-type-a li a {
    padding: 15px 45px 15px 25px;
  }
}
.guide-link-type-a li span {
  position: relative;
}
.guide-link-type-a li span::after {
  position: relative;
  top: -2px;
  left: 5px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #33AD00;
}
@media (min-width: 768px) {
  .guide-link-type-a li span::after {
    left: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #33AD00;
  }
}
@media (max-width: 767px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #33AD00;
  }
  .guide-link-type-a li.w-sp-50 {
    width: 50%;
  }
  .guide-link-type-a li.w-sp-100 {
    width: 100%;
  }
  .guide-link-type-a li:nth-child(odd) {
    border-right: 1px solid #33AD00;
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .guide-link-type-a {
    border: 2px solid #33AD00;
    border-right: none;
    border-left: none;
  }
}

/* ページ内リンク(タイプB)
------------------------------*/
.guide-link-type-b {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .guide-link-type-b {
    padding: 60px;
  }
}
.guide-link-type-b .link-list {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .guide-link-type-b .link-list {
    justify-content: center;
  }
}
.guide-link-type-b .link-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.guide-link-type-b .link-list li a {
  width: 100%;
}

/* 4カラム:リンク(求人詳細：関連求人で使用)
------------------------------*/
.flex-link-type_b {
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .flex-link-type_b {
    font-size: 1.4rem;
  }
}
.flex-link-type_b .flex-center-img {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 0;
  overflow: hidden;
}
.flex-link-type_b .flex-center-img::before {
  content: "";
  display: block;
  padding-top: 66.666%;
}
@media (min-width: 768px) {
  .flex-link-type_b .flex-center-img {
    padding-top: 75%;
  }
  .flex-link-type_b .flex-center-img::before {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 35px 35px;
    border-color: transparent transparent #33AD00 transparent;
    z-index: 99;
  }
  .flex-link-type_b .flex-center-img::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 8px;
    right: 10px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    z-index: 700;
  }
}
.flex-link-type_b .flex-center-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.flex-link-type_b .flex-link-type_b-txt {
  padding: 20px 0;
  white-space: normal;
}
@media (max-width: 767px) {
  .flex-link-type_b .flex-link-type_b-txt {
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px 10px;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-size: 1.5rem;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
    font-size: 1.8rem;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-job {
  color: #333;
}

@media (min-width: 768px) {
  .float-md-right {
    margin: 0 0 20px 30px;
    max-width: 50%;
  }
  .float-md-left {
    margin: 0 30px 20px 0;
    max-width: 50%;
  }
  .pcHdn {
    display: none !important;
  }
  .flex-2-item li {
    width: calc(50% - 10px);
  }
  .flex-2-item li:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .flex-2-item li:last-child {
    margin-right: 0;
  }
  .flex-3-item li {
    width: calc(33.3% - 14px);
  }
  .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .flex-3-item li:last-child {
    margin-right: 0;
  }
  .flex-4-item li {
    width: calc(25% - 16px);
  }
  .flex-4-item li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
  .flex-4-item li:last-child {
    margin-right: 0;
  }
  .flex-5-item li {
    width: calc(20% - 16px);
  }
  .flex-5-item li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
  .flex-5-item li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .spHdn {
    display: none !important;
  }
  .float-sp-left {
    float: left;
  }
  .overflow-x-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .overflow-x-scroll li {
    width: 250px;
    margin-right: 20px;
  }
  .flex-2-sp-item li {
    width: calc(50% - 8px);
  }
  .flex-2-sp-item li:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .flex-2-sp-item li:last-child {
    margin-right: 0;
  }
}
/******************************************************************
  ■ 背景色を変更
*****************************************************************/
/* トップページ交互に背景色を変更
------------------------------*/
/*#index {
    .container>.contents {
        background: $bgColor;
        &:nth-child(even) {
            background: #E9F1F3;
        }
    }
}*/
/*#index .container>.contents:nth-child(odd) {
    background: #E9F1F3;
}*/
/* トップページSEOリンク
------------------------------*/
.index-seolink {
  padding: 40px 0 40px;
}
@media (min-width: 768px) {
  .index-seolink {
    padding: 40px 0;
  }
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/* 共通フッターコンテンツ背景色
------------------------------*/
.html-bottom {
  background: #ccc;
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: #33AD00;
  color: #fff;
  padding: 15px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .list-block-ttl, .detail-block-ttl {
    font-size: 24px;
    padding: 20px;
  }
}
.list-block-ttl .new, .detail-block-ttl .new {
  background: #efe24e;
  padding: 0 10px;
  color: #333;
  margin-right: 10px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .list-block-ttl .new, .detail-block-ttl .new {
    position: relative;
    top: -3px;
    padding: 2px 20px;
  }
}

.list-block-txt {
  overflow: hidden;
}
@media (max-width: 767px) {
  .list-block-txt {
    width: 100%;
  }
}
.list-block-txt .list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .list-block-txt .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.list-block-cts {
  position: relative;
  padding: 10px 10px 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .list-block-cts {
    padding: 30px;
  }
  .list-block-cts .list-block-ic {
    padding-left: 190px;
  }
  .list-block-cts .list-block-txt {
    padding-left: 190px;
  }
}

.list-block-img {
  min-width: 120px;
  max-width: 160px;
  width: 33%;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .list-block-img {
    min-width: 180px;
    max-width: 180px;
    width: 180px;
  }
  .list-block-img.float-left {
    float: none !important;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .list-block-img figure {
    margin-bottom: 0;
  }
}

.list-block-ic {
  overflow: auto;
}

.index-list .block {
  border: 1px solid #424656;
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: #424656;
}
@media (min-width: 768px) {
  .index-list .index-list-ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .index-list .note-block {
    flex-wrap: wrap;
  }
  .index-list .note-block .note-block-l, .index-list .note-block .note-block-r {
    width: 100%;
    padding-left: 0;
  }
  .index-list .note-block .note-block-r {
    padding-top: 5px;
  }
}
@media (min-width: 768px) {
  .index-list .list-block-cts {
    padding: 20px;
  }
  .index-list .float-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

/******************************************************************
  ■header
*****************************************************************/
header {
  position: fixed;
  position: -webkit-fixed;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height);
  background-color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  header {
    height: var(--hd-height);
  }
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: none;
}
@media (min-width: 1200px) {
  .header {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 0 5px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  margin: 0;
  height: var(--hd-height);
  font-size: 0;
}
.header-logo a {
  align-items: center;
}
.header-logo .logo {
  width: 78px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .header-logo .logo {
    width: min(149px, 24vw);
  }
}
.header-logo .logo-text {
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .header-logo .logo-text {
    font-size: 1rem;
    margin-left: 6px;
  }
}
@media (max-width: 374px) {
  .header-logo .logo-text {
    font-size: 0.9rem;
  }
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 992px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    align-items: center;
    height: 80px;
  }
  .main-menu-wrap .main-menu-cts:hover {
    background-color: rgb(255, 255, 255);
  }
  .main-menu-wrap .main-menu-cts a {
    height: 80px;
    padding: 0 11px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts a {
    padding: 0 22px;
  }
}
@media (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 1.2rem;
    text-align: center;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a:hover {
    background-color: rgb(255, 255, 255);
  }
  .main-menu-wrap .menu01, .main-menu-wrap .menu02 {
    transition: all 0.3s ease-out;
    border-radius: 4px;
    display: grid !important;
    place-content: center;
    text-align: center;
    padding: 8px 12px;
    height: auto;
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .main-menu-wrap .menu01, .main-menu-wrap .menu02 {
    padding: 8px 16px;
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .main-menu-wrap .menu01, .main-menu-wrap .menu02 {
    padding: 8px 48px;
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .main-menu-wrap .menu01 {
    background-color: var(--newgraduate-color);
    margin-left: 20px;
    margin-right: 4px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .main-menu-wrap .menu01 {
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .main-menu-wrap .menu01:hover {
    background-color: #3BC600;
  }
  .main-menu-wrap .menu02 {
    background-color: var(--midcarrer-color);
  }
  .main-menu-wrap .menu02:hover {
    background-color: #FF6F2B;
  }
}

/* PC用 メガメニュー（ドロップダウンメニュー）
----------------------------------------------- */
.main-menu-cts {
  transition: background-color 0.6s;
}
.main-menu-cts .megaMenu {
  transition: opacity 0.6s, visibility 0.6s;
  background-color: #fff;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 100%;
}
.main-menu-cts .megaMenu .megaMenu-list {
  padding: 32px 0 28px;
}
.main-menu-cts .megaMenu .megaMenu-list .megaMenu-item {
  display: inline-block;
  border-left: 1px solid #707070;
  margin-bottom: 8px;
}
.main-menu-cts .megaMenu .megaMenu-list .megaMenu-item:last-child {
  border-right: 1px solid #707070;
}
.main-menu-cts .megaMenu .megaMenu-list .megaMenu-item a {
  height: auto;
  padding: 5px 52px;
}
.main-menu-cts .megaMenu .megaMenu-list .megaMenu-item .megaMenu-txt-ja {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .main-menu-cts .megaMenu .megaMenu-list .megaMenu-item .megaMenu-txt-ja {
    font-size: 2rem;
  }
}
.main-menu-cts .megaMenu .megaMenu-list .megaMenu-item .megaMenu-txt-en {
  color: #33AD00;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .main-menu-cts .megaMenu .megaMenu-list .megaMenu-item .megaMenu-txt-en {
    font-size: 1.4rem;
  }
}

/* メニューをhoverした時のスタイル */
.main-menu-cts:hover .megaMenu {
  opacity: 1;
  visibility: visible;
}

/* クリックした際に表示される黒枠を非表示にするスタイル */
.main-menu button {
  font-family: var(--font-family);
}
.main-menu button:focus {
  outline: none;
}
@media (max-width: 767px) {
  .main-menu button {
    line-height: 1.167;
  }
}

/* SP+TAB用 menu
----------------------------------------------- */
.hd-menu {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .hd-menu {
    display: none;
  }
}
.hd-menu button {
  font-family: var(--font-family);
}
.hd-menu button:focus {
  outline: none;
}
@media (max-width: 767px) {
  .hd-menu button {
    line-height: 1.167;
  }
}

.menu01, .menu02 {
  border-radius: 4px;
  display: grid !important;
  place-content: center;
  text-align: center;
  padding: 8px 32px;
  margin: 10px 0;
  height: 60px;
  color: #fff !important;
  font-size: min(2.2vw, 1.6rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menu01, .menu02 {
    height: 40px;
    font-size: 1.2rem;
    margin: 2px 0;
    padding: 8px 20px;
  }
}
@media (max-width: 480px) {
  .menu01, .menu02 {
    padding-inline: 11.6px;
  }
}
@media (max-width: 374px) {
  .menu01, .menu02 {
    font-size: 0.9rem;
    padding-inline: 6px;
  }
}

.menu01 {
  background-color: var(--newgraduate-color);
  margin-right: 4px;
}

.menu02 {
  background-color: var(--midcarrer-color);
  margin-right: 4px;
}

.menu03 {
  display: grid;
  place-content: center;
  gap: 4.5px;
  width: 40px;
  aspect-ratio: 1/1;
  background: #333;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .menu03 {
    width: 60px;
    gap: 7px;
  }
}
.menu03 span {
  width: 20px;
  height: 2px;
  display: block;
  background-color: #fff;
}
@media (min-width: 768px) {
  .menu03 span {
    width: 30px;
  }
}

.close-txt {
  border: 1px solid #333333;
  padding: 10px;
  display: block;
  width: 100px;
  margin: 20px auto;
  text-align: center;
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/* モーダルウィンドウ
----------------------------------------------- */
.modal-cts {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10%);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .modal-cts {
    padding-block: 60px;
  }
}
.modal-cts.modal-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.modal-cts .modal-cts-inner {
  padding-block: 72px;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .modal-cts .modal-cts-inner {
    padding-inline: 24px;
    margin-inline: auto;
    padding-block: 60px;
    max-width: 1100px;
  }
}
.modal-cts a.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 20;
  width: 45px;
  aspect-ratio: 1/1;
  background-color: #333;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  display: grid;
  place-content: center;
}
@media (min-width: 768px) {
  .modal-cts a.modal-close {
    top: 30px;
    width: 60px;
  }
}
.modal-cts a.modal-close::before, .modal-cts a.modal-close::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .modal-cts a.modal-close::before, .modal-cts a.modal-close::after {
    width: 28px;
  }
}
.modal-cts a.modal-close::after {
  transform: rotate(135deg);
}

.menu-box .modal-cts-inner {
  padding-block: 80px 130px;
  padding-inline: 15px;
}
.menu-box .menu-link-box {
  position: relative;
  margin-inline: auto;
  max-width: 800px;
}
.menu-box .menu-link-item a {
  line-height: 1;
  padding-block: 24px 20px;
  display: block;
}
@media (max-width: 767px) {
  .menu-box .menu-link-item a {
    padding-block: 12px 10px;
  }
}
.menu-box .menu-link-item-m a {
  line-height: 1;
  padding-block: 24px 0;
  display: block;
}
@media (max-width: 767px) {
  .menu-box .menu-link-item-m a {
    padding-block: 12px 0;
  }
}
.menu-box .menu-link-item02 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .menu-box .menu-link-item02 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.menu-box .menu-link-item02 a span {
  position: relative;
  display: inline-block;
}
.menu-box .menu-link-item02 a span::before {
  position: absolute;
  top: 4px;
  right: -30px;
  content: "";
  width: 12px;
  aspect-ratio: 1;
  clip-path: polygon(0 10%, 10% 0, 60% 50%, 10% 100%, 0 90%, 40% 50%, 0 10%);
  background-color: #333;
}
@media (max-width: 767px) {
  .menu-box .menu-link-item02 a span::before {
    top: 3px;
    right: -22px;
    width: 10px;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  }
}
.menu-box .mb-m02 {
  margin-bottom: 24px;
}
.menu-box .menu-link-img {
  margin-bottom: 24px;
  display: block;
  height: 26px;
}
@media (max-width: 767px) {
  .menu-box .menu-link-img {
    margin-bottom: 18px;
    height: 17.5px;
  }
}
.menu-box .menu-link-img img {
  width: auto;
  height: 100%;
}
.menu-box .menu-link-txt-jp {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 6px 0 16px;
}
@media (min-width: 768px) {
  .menu-box .menu-link-txt-jp {
    font-size: 1.8rem;
    margin-bottom: 4px 0 16px;
  }
}
.menu-box .menu-link-txt-jp::before {
  position: absolute;
  top: 3px;
  right: -48px;
  content: "";
  width: 12px;
  aspect-ratio: 1;
  clip-path: polygon(0 10%, 10% 0, 60% 50%, 10% 100%, 0 90%, 40% 50%, 0 10%);
  background-color: #333;
}
@media (max-width: 767px) {
  .menu-box .menu-link-txt-jp::before {
    top: 2px;
    right: -35px;
    width: 10px;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  }
}
.menu-box .menu-link-txt-en {
  display: block;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .menu-box .menu-link-txt-en {
    font-size: 1.4rem;
  }
}

/* 新卒採用、中途採用 共通
-----------------------------------*/
.recruit-box-wrap + .recruit-box-wrap {
  margin-top: 16px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .recruit-box-wrap + .recruit-box-wrap {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.recruit-box .tit_type_2nd {
  margin-bottom: 38px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .recruit-box .tit_type_2nd {
    margin-bottom: 52px;
  }
}
.recruit-box .tit_type_2nd .ttl-en {
  margin: 0 !important;
  display: block;
  color: #333 !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .recruit-box .tit_type_2nd .ttl-en {
    font-size: 2rem !important;
  }
}
@media (min-width: 992px) {
  .recruit-box .tit_type_2nd .ttl-en {
    font-size: 2.8rem !important;
  }
}
.recruit-box .tit_type_2nd .ttl-jp {
  display: block;
  line-height: 1.26;
  font-size: 2.4rem !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .recruit-box .tit_type_2nd .ttl-jp {
    font-size: 4.4rem !important;
    margin-bottom: 16px !important;
  }
  .recruit-box .tit_type_2nd .ttl-jp br {
    display: none;
  }
}
@media (min-width: 992px) {
  .recruit-box .tit_type_2nd .ttl-jp {
    font-size: 4.8rem !important;
    margin-bottom: 20px !important;
  }
}

.recruit-box02 {
  background: url(../img/common/top-bg-001.jpg) repeat #f9f9f9 0 0;
}
@media (max-width: 767px) {
  .recruit-box02 {
    background-size: 80%;
  }
}
.recruit-box02.mb-rbox2 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recruit-box02.mb-rbox2 {
    margin-bottom: 56px;
  }
}
.recruit-box02 .link-btn02 {
  --btn-gap-x: min(40px, 3vw);
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 {
    justify-content: center;
  }
}
.recruit-box02 .link-btn02 .link-btn-item {
  width: 100%;
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item.btn-nwgrdt01 {
    width: min(530px, 42.3814vw) !important;
  }
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item.btn-nwgrdt02 {
    width: calc((100% - 40px) / 2) !important;
  }
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item.btn-area {
    width: calc((100% - 72px) / 3) !important;
  }
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item.btn-employment {
    width: calc((100% - 36px) / 2) !important;
  }
}
@media (min-width: 992px) {
  .recruit-box02 .link-btn02 .link-btn-item.btn-employment {
    width: calc((100% - 39px) / 4) !important;
  }
}
.recruit-box02 .link-btn02 .link-btn-item a {
  display: flex !important;
  align-items: center;
  padding: 16px 8px 16px 12px;
  background-color: #fff;
  border: solid 1px #fff;
  border-radius: 10px;
  height: 50px;
  font-size: 1.6rem !important;
  font-weight: 500;
  letter-spacing: 0.1em !important;
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item a {
    height: 84px;
    padding: 28px 28px 28px 20px;
    font-weight: bold;
  }
}
@media (min-width: 992px) {
  .recruit-box02 .link-btn02 .link-btn-item a {
    height: 95px;
    padding: 32px 32px 32px 24px;
  }
}
.recruit-box02 .link-btn02 .link-btn-item a:hover {
  opacity: 1;
  color: #777 !important;
}
.recruit-box02 .link-btn02 .link-btn-item a span.ja {
  letter-spacing: 0.05em;
}
.recruit-box02 .link-btn02 .link-btn-item a .arrow {
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  justify-self: flex-end;
  display: grid;
  place-content: center;
}
@media (max-width: 767px) {
  .recruit-box02 .link-btn02 .link-btn-item a .arrow {
    width: 10px;
  }
}
.recruit-box02 .link-btn02 .link-btn-item a .arrow::before {
  content: "";
  width: 14px;
  aspect-ratio: 1;
  clip-path: polygon(0 10%, 10% 0, 60% 50%, 10% 100%, 0 90%, 40% 50%, 0 10%);
  background-color: #333;
}
@media (max-width: 767px) {
  .recruit-box02 .link-btn02 .link-btn-item a .arrow::before {
    width: 10px;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  }
}
@media (min-width: 768px) {
  .recruit-box02 .link-btn02 .link-btn-item a:hover {
    opacity: 1;
  }
  .recruit-box02 .link-btn02 .link-btn-item a:hover .arrow::before {
    background-color: #777;
  }
}

.recruit-txtbox {
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruit-lead {
  margin: 32px auto 20px;
  font-size: 1.3rem !important;
  letter-spacing: 0.15em !important;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .recruit-lead {
    margin: 56px auto 48px;
    font-size: 1.8rem !important;
    letter-spacing: 0.2em !important;
    padding: 0 80px;
  }
}
@media (max-width: 374px) {
  .recruit-lead {
    font-size: 1.2rem !important;
  }
}
.recruit-lead::before, .recruit-lead::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  min-width: 1000px;
  height: 1px;
  background-color: #333;
}
.recruit-lead::before {
  left: 100%;
}
.recruit-lead::after {
  right: 100%;
}

.newgraduate-box, .midcarrer-box {
  color: #333;
}
@media (max-width: 767px) {
  .newgraduate-box .link-btn02 .link-btn-item a::before, .midcarrer-box .link-btn02 .link-btn-item a::before {
    right: 30px;
    width: 9.96px;
    height: 7.69px;
  }
}

.newgraduate-box {
  background-color: #fff;
}
.newgraduate-box .recruit-box02 {
  padding: 32px 15px;
}
@media (min-width: 768px) {
  .newgraduate-box .recruit-box02 {
    padding: 60px 24px;
  }
}
@media (min-width: 992px) {
  .newgraduate-box .recruit-box02 {
    padding: 80px 40px;
  }
}
.newgraduate-box .link-btn02 {
  gap: 8px;
}
@media (min-width: 768px) {
  .newgraduate-box .link-btn02 {
    gap: 40px;
  }
}
.newgraduate-box .link-btn02 .link-btn-item a {
  justify-content: space-between;
  border: solid 1px #33AD00;
}
@media (min-width: 768px) {
  .newgraduate-box .link-btn02 .link-btn-item a {
    border: solid 2px #33AD00;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
    font-size: 1.8rem !important;
  }
}
@media (min-width: 992px) {
  .newgraduate-box .link-btn02 .link-btn-item a {
    font-size: 2.4rem !important;
  }
}

.midcarrer-box {
  background-color: #fff;
}
.midcarrer-box .recruit-box02 {
  padding: 16px 15px;
}
@media (min-width: 768px) {
  .midcarrer-box .recruit-box02 {
    padding: 60px 24px;
  }
}
@media (min-width: 992px) {
  .midcarrer-box .recruit-box02 {
    padding: 48px 40px;
  }
}
.midcarrer-box .link-btn02.area-wrap {
  gap: 8px;
}
@media (min-width: 768px) {
  .midcarrer-box .link-btn02.area-wrap {
    gap: 36px;
  }
}
.midcarrer-box .link-btn02.employment-wrap {
  gap: 8px;
}
@media (min-width: 768px) {
  .midcarrer-box .link-btn02.employment-wrap {
    gap: 18px 36px;
  }
}
@media (min-width: 992px) {
  .midcarrer-box .link-btn02.employment-wrap {
    gap: 13px;
  }
}
.midcarrer-box .link-btn02 .link-btn-item a {
  justify-content: space-between;
  border: solid 1px var(--midcarrer-color);
}
@media (min-width: 768px) {
  .midcarrer-box .link-btn02 .link-btn-item a {
    position: relative;
    justify-content: center;
    border: solid 2px var(--midcarrer-color);
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
    font-size: 1.8rem !important;
  }
}
@media (min-width: 992px) {
  .midcarrer-box .link-btn02 .link-btn-item a {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) {
  .midcarrer-box .link-btn02 .link-btn-item a .arrow {
    position: absolute;
    right: 16px;
  }
}
.midcarrer-box .submitBtn {
  margin: 42px 0 0 !important;
}
@media (min-width: 768px) {
  .midcarrer-box .submitBtn {
    margin: 75px 0 0 !important;
  }
}
.midcarrer-box .submitBtn li a {
  background-color: #333 !important;
  box-shadow: none !important;
}
.midcarrer-box .submitBtn li a::before {
  content: "";
  right: min(20px, 3vw);
  width: 20px;
  height: 6px;
  border-top: none;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);
  z-index: 10;
}
@media (max-width: 767px) {
  .midcarrer-box .submitBtn li a::before {
    right: 24px;
  }
}
.midcarrer-box .submitBtn li a:hover {
  opacity: 1;
  background-color: #777 !important;
}
.midcarrer-box h3 {
  color: #333;
  font-size: 1.6rem;
  margin-bottom: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .midcarrer-box h3 {
    margin-bottom: 36px;
    font-size: 2.4rem;
    padding-left: 48px;
  }
}
@media (min-width: 992px) {
  .midcarrer-box h3 {
    margin-bottom: 44px;
    font-size: 3.2rem;
  }
}
@media (max-width: 374px) {
  .midcarrer-box h3 {
    font-size: 1.5rem;
  }
}
.midcarrer-box h3::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.midcarrer-box h3.h3-area::after {
  background: url(../img/top/search-icon-001.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .midcarrer-box h3.h3-area::after {
    width: 32px;
    height: 32px;
  }
}
.midcarrer-box h3.h3-employment::after {
  background: url(../img/top/search-icon-002.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .midcarrer-box h3.h3-employment::after {
    width: 32px;
    height: 32px;
  }
}

/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  background: #fff;
  text-align: center;
  border-top: solid 1px #EEEEEF;
}
#page_top a {
  font-style: italic;
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: #33AD00;
  white-space: nowrap;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  #page_top a {
    display: inline-block;
    width: 7em;
    padding-bottom: 4px;
  }
}
#page_top a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: -10px auto 0;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border-top: 2px solid #33AD00;
  border-right: 2px solid #33AD00;
  display: block;
}

/* footer
------------------------------*/
footer {
  background: #EEEEEF;
}
@media (max-width: 767px) {
  footer .container {
    max-width: none;
    padding: 0;
  }
}
@media (min-width: 768px) {
  footer .container {
    padding: 50px 10px;
    font-size: 1.3rem;
  }
}
footer .contents-inn {
  padding: 0;
}
@media (max-width: 767px) {
  footer .contents-inn {
    max-width: none;
  }
}
footer a {
  position: relative;
  display: block;
  padding: 10px;
}
@media (max-width: 767px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@media (min-width: 768px) {
  footer a {
    padding-left: 20px;
    font-size: 1.3rem;
  }
}
footer a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 1px solid #33AD00;
  border-right: 1px solid #33AD00;
}
@media (min-width: 768px) {
  footer a::before {
    width: 5px;
    height: 5px;
    left: 0;
  }
}
@media (min-width: 768px) {
  footer .home {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  footer .home a {
    display: inline;
    padding: 0 20px 0 0;
  }
  footer .home a:hover {
    display: inline;
  }
  footer .home a:before {
    margin-top: -5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    width: 7px;
    height: 7px;
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  footer nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  footer .footer-contents {
    margin-bottom: 20px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank] {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  footer .footer-contents a[target=_blank]::before {
    content: "";
    border: none;
    background: url(../img/common/icon-blank_sp.png) center/cover no-repeat;
    width: 13px;
    height: 11px;
    transform: rotate(0);
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank]::after {
    content: "";
    display: inline-block;
    background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
    width: 20px;
    height: 10px;
    transform: rotate(0);
  }
}
footer .footer-inner {
  background: #33AD00;
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}
footer .footer-inner .ga-pdf {
  margin-top: 5px;
}
footer .footer-inner .ga-pdf a {
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}

/******************************************************************
  ■bootstrap
*****************************************************************/
#detail .d-flex {
  display: flex;
}
#detail .d-inline-block {
  display: inline-block;
}
#detail .align-top {
  vertical-align: top;
}
#detail .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  #detail .header.container {
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  #detail .footer .container {
    padding: 0;
  }
}
#detail .d-con-txt {
  padding: 15px 10px 20px;
}
#detail .ic li {
  width: auto;
}
#detail .clearfix::after {
  display: block;
  content: "";
  clear: both;
}
#detail .cts-box {
  padding: 15px 0 0;
}
@media (min-width: 768px) {
  #detail .cts-box {
    padding-top: 30px;
  }
}
#detail .cts-box.p-top-5 {
  padding-top: 5px;
}
#detail .cts-box.c-copy .catch-copy {
  color: #33AD00;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #detail .cts-box.c-copy .catch-copy {
    font-size: 2.4rem;
  }
}
#detail .cts-box.c-copy .sub-copy {
  padding: 12px 0;
}
@media (min-width: 768px) {
  #detail .cts-box.c-copy .sub-copy {
    padding: 27px 0 3px;
  }
}
#detail .cts-box .detail-cts-ttl {
  padding: 15px;
  background: #33AD00;
  color: #fff;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #detail .cts-box .detail-cts-ttl {
    padding: 9px 15px;
    font-size: 2.4rem;
  }
}
#detail .cts-box dl {
  width: 100%;
}
@media (min-width: 768px) {
  #detail .cts-box dl {
    display: table;
  }
}
#detail .cts-box dl dt {
  width: 100%;
  display: block;
  padding: 15px 0 10px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  #detail .cts-box dl dt {
    width: 200px;
    display: table-cell;
    vertical-align: middle;
    background: none;
    padding: 30px 15px;
    color: #333;
  }
}
#detail .cts-box dl dd {
  padding: 15px 0 5px;
}
@media (min-width: 768px) {
  #detail .cts-box dl dd {
    width: calc(100% - 200px);
    display: table-cell;
    padding: 30px;
    border-bottom: 1px solid #ccc;
  }
}
#detail .appeal-box {
  padding: 15px 0 30px;
}
#detail .appeal-box .appeal-img {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  #detail .appeal-box .appeal-img {
    min-width: 360px;
    width: 360px;
  }
  #detail .appeal-box .appeal-img.appeal-img-left {
    padding-right: 30px;
  }
  #detail .appeal-box .appeal-img.appeal-img-right {
    padding-left: 30px;
    order: 1;
    margin-left: auto;
  }
}
#detail .appeal-box .appeal-txt {
  padding-top: 15px;
}
#detail .addition-txt {
  margin-left: 10px;
}
@media (max-width: 767px) {
  #detail .addition-txt {
    margin-bottom: 20px;
  }
}
#detail .submitBtn {
  display: flex;
}
#detail .submitBtn.justify-content-center {
  justify-content: center;
}
#detail .submitBtn .col-6 {
  width: 50%;
}
@media (min-width: 768px) {
  #detail .submitBtn .col-6.col-md-4 {
    width: 33.3333333333%;
  }
}
#detail .submitBtn .col-12 {
  width: 100%;
}
@media (min-width: 768px) {
  #detail .submitBtn .col-md-8 {
    width: 66%;
  }
}
#detail .sticky-bottom-wrap.btn-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  transition: all 1s ease;
  z-index: 99;
}
#detail .sticky-bottom-wrap.btn-fixed.is-hdn {
  bottom: -1000px;
}
#detail .sticky-bottom-wrap .button {
  padding: 15px 0;
}
@media (min-width: 768px) {
  #detail .sticky-bottom-wrap .button {
    padding: 30px 0;
  }
}
#detail #description, #detail #apply, #detail #appeal, #detail #about, #detail #telephone {
  margin-top: calc(-1 * var(--hd-height) + 15px);
  padding-top: var(--hd-height);
}
@media (min-width: 768px) {
  #detail #description, #detail #apply, #detail #appeal, #detail #about, #detail #telephone {
    margin-top: calc(-1 * var(--hd-height) + 30px);
  }
}
#detail #load-recommend .block {
  border-color: #424656;
}
#detail #load-recommend .block .list-block-cts {
  padding: 15px 10px 10px;
}
@media (min-width: 768px) {
  #detail #load-recommend .block .list-block-cts {
    padding: 18px;
    display: table;
  }
}
@media (min-width: 768px) {
  #detail #load-recommend .block .note-block {
    display: flex;
  }
}
#detail #load-recommend .block .note-block .note-block-l, #detail #load-recommend .block .note-block .note-block-r {
  width: 100%;
  padding: 5px 0 0;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #detail #load-recommend .block .note-block .note-block-l, #detail #load-recommend .block .note-block .note-block-r {
    width: auto;
    padding: 0;
  }
}
@media (min-width: 768px) {
  #detail #load-recommend .block .ic-block-ttl {
    font-size: 2.4rem;
  }
}
#detail #load-recommend .block .list-block-ic {
  color: #424656;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #detail #load-recommend .block .list-block-ic .ic {
    padding-top: 5px;
  }
}
@media (max-width: 767px) {
  #detail #load-recommend .block .list-block-txt {
    padding-top: 15px;
  }
}
@media (min-width: 768px) {
  #detail .slick-list img {
    padding: 0 15px;
  }
  #detail .d-md-flex {
    display: flex;
  }
  #detail .flex-md-wrap {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=detail.css.map */