@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ以外専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
.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: #4E3F2D;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, 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;
  }
}
/******************************************************************
  ■common
*****************************************************************/
a {
  color: #4E3F2D;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: #4E3F2D;
  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: 24px 15px;
}
@media (min-width: 768px) {
  .full-width .contents-inn {
    padding: 40px 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: #4A795C;
}
@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: #77634C;
  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: #77634C;
  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: 24px 0;
}
@media (min-width: 768px) {
  .contents {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .contents-sp-15 {
    padding: 15px 0;
  }
}
.contents-inn {
  padding: 24px 0;
}
@media (min-width: 768px) {
  .contents-inn {
    padding: 40px 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: #4A795C;
}
@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: #4A795C;
  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: #4A795C;
}
@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: #4A795C;
}

/* タイトル(タイプ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: #4A795C;
}
@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;
  }
  .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(74, 121, 92, 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: #4A795C;
}
@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: #4A795C;
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: #4A795C;
  border-bottom: 1px solid #4A795C;
  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: #4A795C;
  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 #4A795C;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block {
    border: 2px solid #4A795C;
  }
}

.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: #4A795C;
  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: #4E3F2D;
  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 #4A795C;
  color: #4A795C;
}
.ic li.ic-style {
  background: #fff;
  border: 1px solid #888;
  color: #4E3F2D;
}
.ic li.ic-notice {
  background: #FDFFCA;
  color: #4E3F2D;
}
.ic li.ic-ic-company {
  background: #ccc;
  color: #4E3F2D;
}
.ic li.ic-intern {
  background: #ccc;
  color: #4E3F2D;
}
.ic li.ic-volunteer {
  background: #ccc;
  color: #4E3F2D;
}
.ic li.ic-others {
  background: #ccc;
  color: #4E3F2D;
}
@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 #4A795C;
  border-bottom: none;
  margin-top: 15px;
  background: #fff;
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: #4A795C;
}
@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 #4A795C;
}
@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 #4A795C;
  }
}
@media (max-width: 767px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #4A795C;
  }
  .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 #4A795C;
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .guide-link-type-a {
    border: 2px solid #4A795C;
    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 #4A795C 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: 32px 0 22px;
}
@media (min-width: 768px) {
  .index-seolink {
    padding: 40px 0 50px;
  }
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/******************************************************************
  ■ 全ページ共通表示コンテンツ（フッター直上表示＋動的ページ＋TOPページ）
*****************************************************************/
/******* 共通フッターコンテンツ *******/
.html-bottom {
  padding: 0;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  .html-bottom {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
.html-bottom-inn {
  background: url(../img/common/footer-bg-sp-001.png) no-repeat top 0 left 0/46.6667vw 57.3333vw, url(../img/common/footer-bg-sp-002.png) no-repeat bottom 0 right 0/47.2vw 33.0667vw;
  padding: 32px 0;
}
@media (min-width: 992px) {
  .html-bottom-inn {
    background: url(../img/common/footer-bg-pc-001.png) no-repeat top 0 left 0/auto 100%, url(../img/common/footer-bg-pc-002.png) no-repeat bottom 0 right 0/auto 100%;
  }
}
@media (min-width: 1400px) {
  .html-bottom-inn {
    background: url(../img/common/footer-bg-pc-001.png) no-repeat top 0 left 0/auto 100%, url(../img/common/footer-bg-pc-002.png) no-repeat bottom 0 right 0/auto 100%;
  }
}
.html-bottom .contents-inn {
  padding: 32px 15px;
}
@media (min-width: 768px) {
  .html-bottom .contents-inn {
    padding: 40px 0;
  }
}
.html-bottom .contents-ttl-sub {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .html-bottom .contents-ttl-sub {
    margin-bottom: 40px;
  }
}
.html-bottom .contents-ttl-sub img {
  height: 70px;
}
@media (min-width: 768px) {
  .html-bottom .contents-ttl-sub img {
    height: 36px;
  }
}
.html-bottom-button {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .html-bottom-button {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
  }
}
.html-bottom-button li {
  position: relative;
}
@media (max-width: 767px) {
  .html-bottom-button li {
    width: 100%;
  }
  .html-bottom-button li:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .html-bottom-button li {
    width: calc((100% - 15px) / 3);
  }
}
@media (min-width: 992px) {
  .html-bottom-button li {
    width: calc((100% - 64px) / 3);
  }
}
.html-bottom-button li::before, .html-bottom-button li::after {
  content: "";
  position: absolute;
  left: 0;
}
.html-bottom-button li::before {
  width: 48px;
  height: 48px;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  margin: auto 0 auto 16px;
  z-index: 1;
  top: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .html-bottom-button li::before {
    width: 40px;
    height: 40px;
    margin: auto 0 auto 12px;
  }
}
@media (min-width: 992px) {
  .html-bottom-button li::before {
    width: 56px;
    height: 56px;
    margin: auto 0 auto 16px;
  }
}
.html-bottom-button li::after {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.html-bottom-button li:nth-of-type(1)::after {
  background: url(../img/common/ic-entry-001.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 27px;
  margin-left: 28px;
}
@media (min-width: 768px) {
  .html-bottom-button li:nth-of-type(1)::after {
    width: 22px;
    height: 25px;
    margin-left: 21px;
  }
}
@media (min-width: 992px) {
  .html-bottom-button li:nth-of-type(1)::after {
    width: 30px;
    height: 34px;
    margin-left: 29px;
  }
}
.html-bottom-button li:nth-of-type(2)::after {
  background: url(../img/common/ic-entry-002.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-left: 28px;
}
@media (min-width: 768px) {
  .html-bottom-button li:nth-of-type(2)::after {
    width: 25px;
    height: 25px;
    margin-left: 21px;
  }
}
@media (min-width: 992px) {
  .html-bottom-button li:nth-of-type(2)::after {
    width: 32px;
    height: 32px;
    margin-left: 29px;
  }
}
.html-bottom-button li:nth-of-type(3)::after {
  background: url(../img/common/ic-entry-003.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-left: 28px;
}
@media (min-width: 768px) {
  .html-bottom-button li:nth-of-type(3)::after {
    width: 24px;
    height: 24px;
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  .html-bottom-button li:nth-of-type(3)::after {
    width: 31px;
    height: 31px;
    margin-left: 29px;
  }
}
.html-bottom-button li:hover::before {
  background-color: #DBF1C0;
}
.html-bottom-button a:link, .html-bottom-button a:visited {
  position: relative;
  border-radius: 50vh;
  border: 2px solid #4A795C;
  background-color: #4A795C;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 20px 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .html-bottom-button a:link, .html-bottom-button a:visited {
    font-size: 1.5rem;
    margin: 0 auto;
    padding: 17px 0 17px 16px;
    line-height: 1.75;
  }
}
@media (min-width: 992px) {
  .html-bottom-button a:link, .html-bottom-button a:visited {
    font-size: 1.8rem;
    padding: 17px 0 17px 36px;
  }
}
@media (min-width: 1200px) {
  .html-bottom-button a:link, .html-bottom-button a:visited {
    font-size: 1.8rem;
    padding: 17px 0;
  }
}
.html-bottom-button a:link::before, .html-bottom-button a:visited::before {
  position: absolute;
  content: "";
  display: block;
  margin-top: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/common/ic-arrow-g-002.png");
  width: 21px;
  height: 13px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .html-bottom-button a:link::before, .html-bottom-button a:visited::before {
    right: 12px;
  }
}
@media (min-width: 992px) {
  .html-bottom-button a:link::before, .html-bottom-button a:visited::before {
    right: 16px;
  }
}
.html-bottom-button a:hover {
  background-color: #fff;
  color: #4A795C;
  opacity: 1;
}
.html-bottom-button a:hover::before {
  background-image: url("../img/common/ic-arrow-w-002.png");
}
@media (min-width: 768px) {
  .html-bottom .index-button a:link, .html-bottom .index-button a:visited {
    width: 360px !important;
  }
}
@media (min-width: 992px) {
  .html-bottom .index-button a:link, .html-bottom .index-button a:visited {
    width: 380px !important;
  }
}
.html-bottom p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .html-bottom p {
    font-size: 1.8rem;
  }
}

/******* 共通フッターコンテンツ ＋ 動的ページ ＋ TOPページ 共通 *******/
.contents-ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contents-ttl {
    margin-bottom: 40px;
  }
}
.contents-ttl img {
  width: auto;
  height: 72px;
}
@media (min-width: 768px) {
  .contents-ttl img {
    height: 90px;
  }
}

.contents-ttl-sub {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contents-ttl-sub {
    margin-bottom: 24px;
  }
}
.contents-ttl-sub img {
  width: auto;
}

/*ボタン
------------------------------*/
.index-button a:link, .index-button a:visited {
  position: relative;
  border-radius: 50vh;
  border: 2px solid #4A795C;
  background-color: #4A795C;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 32px auto 0;
  padding: 20px 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .index-button a:link, .index-button a:visited {
    font-size: 1.8rem;
    width: 360px;
    margin: 40px auto 0;
    padding: 17px 0;
    line-height: 1.75;
  }
}
@media (min-width: 992px) {
  .index-button a:link, .index-button a:visited {
    width: 380px;
  }
}
.index-button a:link::before, .index-button a:visited::before {
  position: absolute;
  content: "";
  display: block;
  margin-top: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/common/ic-arrow-w-001.png");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .index-button a:link::before, .index-button a:visited::before {
    width: 24px;
    height: 24px;
  }
}
.index-button a:hover {
  background-color: #fff;
  color: #4A795C;
  opacity: 1;
}
.index-button a:hover::before {
  background-image: url("../img/common/ic-arrow-g-001.png");
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: #4A795C;
  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: #4E3F2D;
  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 #4A795C;
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: #4A795C;
}
@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%);
  }
}

/******************************************************************
  ■ common-other（詳細ページ以外で共通するスタイル）
*****************************************************************/
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* キービジュアル
------------------------------*/
.mainimg {
  width: 100%;
  overflow: hidden;
}
.mainimg .slick-slide img {
  width: 100%;
}

/* 雇用形態
------------------------------*/
.ic li {
  min-width: 95px;
  width: calc((100% - 12px) / 2);
}
@media (max-width: 767px) {
  .ic li:nth-child(even) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .ic li {
    width: 95px;
  }
}

/* ボタン
------------------------------*/
.submitBtn {
  font-size: 1.6rem;
}
.submitBtn li a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 15px;
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span::after {
    width: 25px;
    height: 25px;
    top: -1px;
  }
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span {
    padding-left: 35px;
  }
}
.submitBtn li.form {
  width: 250px;
}
.submitBtn li.form a::before {
  border: 0;
}
@media (min-width: 768px) {
  .submitBtn li.form {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .submitBtn {
    font-size: 1.8rem;
  }
}
.submitBtn.search {
  padding: 30px 0;
  background: #eee;
}

/* ページネーション
------------------------------*/
.pageNavi {
  position: relative;
}
@media (min-width: 768px) {
  .pageNavi .paging-count {
    padding-top: 5px;
  }
  .pageNavi .paging-count .a-count {
    font-size: 2rem;
  }
}
.pageNavi .inner {
  max-width: calc(100% - 30px);
}
@media (min-width: 576px) {
  .pageNavi .inner {
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  .pageNavi .inner {
    max-width: 100%;
  }
}
.pageNavi .inner {
  margin: 0 auto;
  overflow: hidden;
}
.pageNavi .inner a,
.pageNavi .inner .prev a,
.pageNavi .inner .next a {
  display: block;
  padding: 4px 10px;
  border: 1px solid #888;
  margin-left: 10px;
  letter-spacing: 0;
}
.pageNavi .inner .prev a,
.pageNavi .inner .next a {
  position: relative;
  color: transparent !important;
  padding: 4px 12px;
}
@media (min-width: 768px) {
  .pageNavi .inner .prev a,
  .pageNavi .inner .next a {
    padding: 4px 14px;
  }
}
.pageNavi .inner .prev a::before,
.pageNavi .inner .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #4A795C;
  border-right: 1px solid #4A795C;
}
.pageNavi .inner .prev a.d-hdn,
.pageNavi .inner .next a.d-hdn {
  opacity: 0;
}
@media (min-width: 768px) {
  .pageNavi .inner .prev a.d-hdn,
  .pageNavi .inner .next a.d-hdn {
    display: none;
  }
}
.pageNavi .inner .prev a::before {
  transform: rotate(-135deg);
  left: 13px;
}
.pageNavi .inner .next a::before {
  transform: rotate(45deg);
  right: 13px;
}
.pageNavi .inner .prev.first a,
.pageNavi .inner .next.last a {
  padding: 4px 8px;
}
@media (min-width: 768px) {
  .pageNavi .inner .prev.first a,
  .pageNavi .inner .next.last a {
    padding: 4px 10px;
  }
}
.pageNavi .inner .prev.first a::after,
.pageNavi .inner .next.last a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #4A795C;
  border-right: 1px solid #4A795C;
}
.pageNavi .inner .prev.first a {
  margin-left: 0;
  left: 0;
}
.pageNavi .inner .prev.first a::before {
  left: 7px;
}
@media (min-width: 768px) {
  .pageNavi .inner .prev.first a::before {
    left: 10px;
  }
}
.pageNavi .inner .prev.first a::after {
  transform: rotate(-135deg);
  left: 14px;
}
@media (min-width: 768px) {
  .pageNavi .inner .prev.first a::after {
    left: 17px;
  }
}
@media (min-width: 768px) {
  .pageNavi .inner .prev.page a {
    margin-right: 30px;
  }
}
.pageNavi .inner .next.last a {
  margin-right: 0;
}
.pageNavi .inner .next.last a::before {
  right: 7px;
}
@media (min-width: 768px) {
  .pageNavi .inner .next.last a::before {
    right: 10px;
  }
}
.pageNavi .inner .next.last a::after {
  transform: rotate(45deg);
  right: 14px;
}
@media (min-width: 768px) {
  .pageNavi .inner .next.last a::after {
    right: 17px;
  }
}
@media (min-width: 768px) {
  .pageNavi .inner .next.page a {
    margin-left: 20px;
  }
}
.pageNavi .inner .current {
  background: #4A795C;
  border-color: #4A795C;
  color: #fff;
}
.pageNavi.pagenavi-no-num .inner {
  max-width: 100%;
}
.pageNavi.pagenavi-no-num .inner .d-flex {
  min-width: 68px;
}
@media (min-width: 768px) {
  .pageNavi.pagenavi-no-num .inner .d-flex {
    min-width: 108px;
  }
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(1) {
  margin-left: 0;
  margin-right: auto;
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(3) {
  margin-left: auto;
  margin-right: 0;
}

/* ページ内リンク
------------------------------*/
a.inline-link {
  text-decoration: underline;
  display: inline-block;
  vertical-align: bottom;
}
a.inline-link:hover {
  display: inline-block;
}

/******************************************************************
  ■ コンテンツタイトル
*****************************************************************/
/* コンテンツタイトルタイプA
------------------------------*/
.main-type-a {
  position: relative;
  z-index: 1;
}
.main-type-a figure {
  margin-bottom: 0;
}
.main-type-a .main-ttl-BOX {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 1px solid #eeeeee;
}
@media (min-width: 768px) {
  .main-type-a .main-ttl-BOX {
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
}
.main-type-a .main-ttl-BOX .main-ttl-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 25px 65px;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transform: translate3d(-50%, -50%, 0);
}
@media (min-width: 768px) {
  .main-type-a .main-ttl-BOX .main-ttl-txt {
    font-size: 3.2rem;
  }
}

/* コンテンツタイトルタイプB
------------------------------*/
.main-type-b {
  position: relative;
}
@media (max-width: 767px) {
  .main-type-b {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .main-type-b {
    margin: 0 -50px 80px;
  }
}
.main-type-b .main-type-b-img {
  height: auto;
  margin: 0 -15px;
}
@media (min-width: 768px) {
  .main-type-b .main-type-b-img {
    position: absolute;
    width: calc(50% + 20px);
    height: 400px;
    margin: 0;
    overflow: hidden;
  }
}
.main-type-b .main-ttl-BOX {
  position: relative;
  font-size: 1.2rem;
  top: -20px;
  background: #fff;
  border-top: 2px solid #4A795C;
  padding: 20px 20px 30px;
}
@media (max-width: 767px) {
  .main-type-b .main-ttl-BOX {
    width: calc(100% - 40px);
    margin: auto;
  }
}
@media (min-width: 768px) {
  .main-type-b .main-ttl-BOX {
    top: 20px;
    border-top: none;
    border-left: 3px solid #4A795C;
    margin-left: 50%;
    padding: 40px;
    min-height: 400px;
  }
  .main-type-b .main-ttl-BOX .name {
    font-size: 1.6rem;
  }
}
.main-type-b .main-ttl-BOX .main-ttl-txt {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .main-type-b .main-ttl-BOX .main-ttl-txt {
    font-size: 2.2rem;
  }
}
.main-type-b .main-ttl-BOX .main-ttl-tit {
  font-size: 1.2rem;
  margin-bottom: 0.8em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .main-type-b .main-ttl-BOX .main-ttl-tit {
    font-size: 1.6rem;
  }
}

/******************************************************************
  ■ コンテンツ関連
*****************************************************************/
/* コンテンツ タイプA
------------------------------*/
.cts_type_a {
  background-size: cover;
  padding: 60px 0;
}
.cts_type_a.bgimg_set {
  background-image: url(../img/demo/contents-idea-bg.jpg);
}
.cts_type_a__txt {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .cts_type_a__txt {
    width: calc(100% - 80px);
    max-width: 980px;
    padding: 60px;
    line-height: 2;
  }
}

/* コンテンツ タイプB
------------------------------*/
.cts_type_b {
  position: relative;
}
@media (max-width: 767px) {
  .cts_type_b {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .cts_type_b {
    margin: 0 0 80px;
  }
}
.cts_type_b .cts-type-b-img {
  height: auto;
  margin: 0 -15px;
}
@media (min-width: 768px) {
  .cts_type_b .cts-type-b-img {
    position: absolute;
    width: calc(50% + 20px);
    height: 400px;
    margin: 0;
    overflow: hidden;
  }
}
.cts_type_b .txt-BOX {
  position: relative;
  top: -20px;
  background: #fff;
  border: 2px solid #4A795C;
  padding: 20px 20px 30px;
}
@media (max-width: 767px) {
  .cts_type_b .txt-BOX {
    width: calc(100% - 40px);
    margin: auto;
  }
}
@media (min-width: 768px) {
  .cts_type_b .txt-BOX {
    top: 20px;
    border: 3px solid #4A795C;
    margin-left: 50%;
    padding: 40px;
    min-height: 400px;
  }
  .cts_type_b .txt-BOX .txt-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
  }
}
@media (min-width: 768px) {
  .cts_type_b.reverse .cts-type-b-img {
    right: 0;
  }
}
@media (min-width: 768px) {
  .cts_type_b.reverse .txt-BOX {
    margin: 0 50% 0 0;
  }
}

/* コンテンツ タイプD
------------------------------*/
.cts_type_d_ttl {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .cts_type_d_ttl {
    width: 200px;
  }
}

@media (min-width: 768px) {
  .cts_type_d_txt {
    border-bottom: 1px solid #ccc;
  }
}

/******************************************************************
  ■ Youtube
*****************************************************************/
.short-aspect {
  aspect-ratio: 9/16;
  width: 100%;
}

/******************************************************************
  ■ カラム表示
*****************************************************************/
/* カラム表示 タイプA
------------------------------*/
.col_type_a figure {
  margin-bottom: 0;
}
.col_type_a .col_type_a_li {
  background: #eee;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .col_type_a .col_type_a_li {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .col_type_a .col_type_a_figure {
    padding: 20px 30px;
  }
}
.col_type_a .col_type_a_img {
  position: relative;
}
.col_type_a .figure_circle {
  border-radius: 50%;
}
.col_type_a .figure_frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.col_type_a .figure_frame svg {
  width: 100%;
  height: 100%;
  fill: #eee;
}
.col_type_a .col_type_a_item {
  padding: 15px;
}
@media (min-width: 768px) {
  .col_type_a .col_type_a_item {
    padding: 0 20px 20px;
  }
}
.col_type_a .col_type_a_ttl {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .col_type_a .col_type_a_ttl {
    font-size: 1.8rem;
  }
}
.col_type_a .col_type_a_edge {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #a0a0a0;
  padding: 3px 10px;
  margin-right: 7px;
  margin-bottom: 3px;
  white-space: nowrap;
}

/* カラム表示 タイプB
------------------------------*/
.col_type_b_item {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .col_type_b_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.col_type_b_item:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #4A795C transparent transparent transparent;
  position: absolute;
  margin: 0 auto;
  bottom: -27.5px;
  right: 0;
  left: 0;
}
@media (min-width: 768px) {
  .col_type_b_item:not(:last-child)::after {
    bottom: -37.5px;
  }
}
.col_type_b_item .col_type_b_item_inner {
  height: 100%;
  background: #eee;
}
.col_type_b_item dt {
  background: #4A795C;
  color: #fff;
}

/* カラム表示 タイプB その3*/
@media (min-width: 768px) {
  .ratio .col_type_b_item dt {
    width: 50%;
  }
  .ratio .col_type_b_item dd {
    width: 50%;
  }
  .ratio .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(25% - 15px);
  }
  .ratio__3_7 .col_type_b_item dt {
    width: 30%;
  }
  .ratio__3_7 .col_type_b_item dd {
    width: 70%;
  }
  .ratio__3_7 .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(15% - 15px);
  }
  .ratio__4_6 .col_type_b_item dt {
    width: 40%;
  }
  .ratio__4_6 .col_type_b_item dd {
    width: 60%;
  }
  .ratio__4_6 .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(20% - 15px);
  }
}

@media (min-width: 768px) {
  .pc-horizontal .col_type_b_item {
    margin-bottom: 60px;
  }
  .pc-horizontal .col_type_b_item:not(:last-child)::after {
    transform: rotate(-90deg);
    margin: auto;
    top: 50%;
    left: auto;
    right: -26px;
    bottom: auto;
  }
}

/* コンテンツ タイプE
------------------------------*/
.cts_type_e_item {
  position: relative;
  min-height: 40px;
  padding: 9px 10px 0 50px;
}
@media (min-width: 768px) {
  .cts_type_e_item {
    min-height: 50px;
    padding: 12px 10px 0 70px;
    font-size: 1.8rem;
  }
}
.cts_type_e_item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .cts_type_e_item::before {
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
    line-height: 50px;
  }
}
.cts_type_e_item01::before {
  content: "Q";
  background: #333;
}
.cts_type_e_item02::before {
  content: "A";
  background: #4A795C;
}
.cts_type_e_item03::before {
  content: "E";
  background: #4A795C;
}

/* コンテンツ タイプF
------------------------------*/
.cts_type_f_item {
  margin-bottom: 10px;
  padding: 0 10px 0;
  background: #fff;
  border: solid 1px #ccc;
}
@media (min-width: 768px) {
  .cts_type_f_item {
    padding: 0 20px 0;
  }
}
.cts_type_f_item dt {
  padding: 15px 40px 15px 10px;
}
@media (min-width: 768px) {
  .cts_type_f_item dt {
    padding: 25px 40px 25px 20px;
  }
}
.cts_type_f_item dd {
  border-top: solid 1px #eee;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .cts_type_f_item dd {
    padding: 30px 20px;
  }
}

.cts_type_f_tit,
.cts_type_f_cts {
  position: relative;
}
.cts_type_f_tit::before,
.cts_type_f_cts::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #4A795C;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 768px) {
  .cts_type_f_tit {
    font-size: 1.8rem;
  }
}
.cts_type_f_tit::before {
  content: "Q";
}

.cts_type_f_cts::before {
  content: "A";
}

/* コンテンツ タイプG
------------------------------*/
.cts_type_g {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}
.cts_type_g .box-line {
  background: #4A795C;
  left: 20px;
  position: absolute;
  top: 10px;
  display: block;
  content: "";
  width: 2px;
  height: 2000px;
}
@media (min-width: 768px) {
  .cts_type_g .box-line {
    left: 150px;
  }
}
.cts_type_g dl {
  padding: 0 0 15px 35px;
}
@media (min-width: 768px) {
  .cts_type_g dl {
    padding: 0 0 35px 35px;
  }
}
.cts_type_g dl dt {
  position: relative;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .cts_type_g dl dt {
    width: 190px;
    float: left;
  }
}
.cts_type_g dl dt::before, .cts_type_g dl dt:after {
  position: absolute;
  top: 0;
  left: -34px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .cts_type_g dl dt::before, .cts_type_g dl dt:after {
    top: 2px;
    left: 96px;
  }
}
.cts_type_g dl dt::before {
  background: #4A795C;
}
.cts_type_g dl dt:after {
  top: 4px;
  left: -30px;
  display: block;
  content: "";
  clear: both;
  width: 12px;
  height: 12px;
  background: #fff;
}
@media (min-width: 768px) {
  .cts_type_g dl dt:after {
    top: 6px;
    left: 100px;
  }
}
.cts_type_g dl dt .workstyle-time {
  font-size: 1.6rem;
  padding-right: 15px;
  position: relative;
  width: 180px;
  text-align: right;
}
@media (min-width: 768px) {
  .cts_type_g dl dt .workstyle-time::after {
    position: absolute;
    top: 8px;
    left: 125px;
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #4A795C;
  }
}
@media (min-width: 768px) {
  .cts_type_g dl dd {
    margin: 0 0 0 190px;
  }
  .cts_type_g dl .tit_type_d {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

/* アコーディオンのプラスマーク */
.icon-plus {
  position: relative;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 16px;
  height: 1px;
  background: #4A795C;
  transition: all 0.3s ease-out 0s;
}
.icon-plus::before {
  transform: rotate(90deg);
}
.icon-plus.open:before {
  transition: all 0.3s ease-out 0s;
  transform: rotate(0deg);
}

.tgl-cts {
  display: none;
}

/******************************************************************
  ■ カラムリンク
*****************************************************************/
/* カラムリンク タイプA
------------------------------*/
.flex-link-type_a {
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 2px solid #4A795C;
}
@media (min-width: 768px) {
  .flex-link-type_a {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}
.flex-link-type_a::before {
  content: "";
  display: block;
  padding-top: 66.666%;
  position: absolute;
  top: auto;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent #4A795C transparent;
  z-index: 99;
}
.flex-link-type_a::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_a .flex-link-ttl {
  padding: 10px 15px 15px;
  color: #4A795C;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .flex-link-type_a .flex-link-ttl {
    font-size: 1.8rem;
  }
}

/******************************************************************
  ■ リスト表示
*****************************************************************/
/* ラインリンクリスト
------------------------------*/
.line-link-list .line-link-item {
  /*background: $bgColor;*/
}
.line-link-list .line-link-item:first-child {
  border-top: 1px solid #eee;
  border-top: 1px solid #4A795C;
}
.line-link-list .line-link-item:last-child {
  margin-bottom: 30px;
}
.line-link-list a {
  display: block;
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #eee;
  border-bottom: 1px solid #4A795C;
  position: relative;
}
.line-link-list a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #4A795C;
  border-bottom: 1px solid #4A795C;
  transform: rotate(-45deg);
}
.line-link-list a .ic {
  margin-bottom: 0;
}
.line-link-list a .ic li {
  margin-bottom: 0;
}
.line-link-list .showdate {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .line-link-list .line-link-tit {
    flex: 1 0 0%;
  }
}
@media (max-width: 767px) {
  .line-link-list .line-link-tit {
    margin-top: 10px;
  }
}
.line-link-list .line-link-cts {
  margin-top: 10px;
  margin-bottom: 0;
}

/* コンテンツリンクリスト
------------------------------*/
.cts-link-list {
  background: #eee;
}
.cts-link-list .cts-link-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.cts-link-list .tit_type_f {
  margin-bottom: 15px;
}

/* 番号付きリスト
------------------------------*/
.no-li {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.no-li li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.no-li li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #a1d7ff;
  color: #4E3F2D;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  padding-top: 2px;
}

/******************************************************************
  お問い合わせ
*****************************************************************/
.contact {
  padding: 0 10px;
  background: url(../img/common/contact-bg.jpg) center/cover no-repeat;
}

a.ic-contact {
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 11px 0;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: #77634C;
  box-shadow: 0 1px 0 1px #ccc;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  a.ic-contact {
    padding: 33px 0;
    width: 300px;
    font-size: 1.6rem;
  }
}
a.ic-contact::before {
  content: "";
  background: url(../img/common/icon-contact.png) 0px center/20px 14px no-repeat;
  padding-left: 30px;
}
a.ic-contact:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .contact-tel {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .contact-tel {
    font-size: 2.8rem;
  }
}

.contact-address {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .contact-address {
    margin-bottom: 30px;
  }
}

/******************************************************************
  ■ タイムスケジュール
*****************************************************************/
.workstyle-block {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}
.workstyle-block .box-line {
  background: #4A795C;
  left: 20px;
  position: absolute;
  top: 10px;
  display: block;
  content: "";
  width: 2px;
  height: 2000px;
}
@media (min-width: 768px) {
  .workstyle-block .box-line {
    left: 150px;
  }
}
.workstyle-block dl {
  padding: 0 0 15px 35px;
}
@media (min-width: 768px) {
  .workstyle-block dl {
    padding: 0 0 35px 35px;
  }
}
.workstyle-block dl dt {
  position: relative;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .workstyle-block dl dt {
    width: 190px;
    float: left;
  }
}
.workstyle-block dl dt::before, .workstyle-block dl dt:after {
  position: absolute;
  top: 0;
  left: -34px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .workstyle-block dl dt::before, .workstyle-block dl dt:after {
    top: 2px;
    left: 96px;
  }
}
.workstyle-block dl dt::before {
  background: #4A795C;
}
.workstyle-block dl dt:after {
  top: 4px;
  left: -30px;
  display: block;
  content: "";
  clear: both;
  width: 12px;
  height: 12px;
  background: #fff;
}
@media (min-width: 768px) {
  .workstyle-block dl dt:after {
    top: 6px;
    left: 100px;
  }
}
.workstyle-block dl dt .workstyle-time {
  font-size: 1.6rem;
  padding-right: 15px;
  position: relative;
  width: 180px;
  text-align: right;
}
@media (min-width: 768px) {
  .workstyle-block dl dt .workstyle-time::after {
    position: absolute;
    top: 8px;
    left: 125px;
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #4A795C;
  }
}
@media (min-width: 768px) {
  .workstyle-block dl dd {
    margin: 0 0 0 190px;
  }
  .workstyle-block dl .tit_type_d {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

/******************************************************************
  ■ 追従ガイドボタン
*****************************************************************/
.menu-tab-item .menu-tab-txt {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .menu-tab-item .menu-tab-tit {
    position: relative;
    text-align: center;
    margin-bottom: 43px;
    font-size: 1.8rem;
  }
  .menu-tab-item .menu-tab-tit::before {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    content: "";
    width: 30px;
    height: 2px;
    transform: translate3d(-50%, 0, 0);
    background: #4A795C;
  }
  .menu-tab-tit-a,
  .menu-tab-tit-b {
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 1000;
    background: #4A795C;
    opacity: 0.8;
    background: #a1d7ff;
    border-right: 1px solid #fff;
    height: 50px;
    width: 50px;
    color: #4A795C;
    z-index: 998;
  }
  .menu-tab-tit-a {
    right: 50px;
  }
  .menu-tab-tit-b {
    right: 100px;
  }
  .menu-tab-tit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-tab-a-item,
  .menu-tab-b-item {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 40px 15px;
    background: #ffffff;
    top: 0;
    visibility: hidden;
    transition: all 1s;
    opacity: 0;
  }
  .open-tab-a .menu-tab-a-item {
    transition: all 1s;
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  .open-tab-b .menu-tab-b-item {
    transition: all 1s;
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  .open .menu-tab-tit-a,
  .open .menu-tab-tit-b,
  .open-tab-a .menu-tab-tit-a,
  .open-tab-a .menu-tab-tit-b,
  .open-tab-b .menu-tab-tit-a,
  .open-tab-b .menu-tab-tit-b {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .menu-tab {
    position: fixed;
    right: -480px;
    bottom: 0;
    z-index: 888;
    transition: all 0.3s ease-out;
  }
  .menu-tab .menu-tab-ttl {
    position: absolute;
    top: 0;
    left: -140px;
    font-size: 1.5rem;
  }
  .menu-tab .menu-tab-a-item,
  .menu-tab .menu-tab-b-item {
    width: 240px;
    padding: 20px;
    border: 5px solid #a1d7ff;
    background: #fff;
  }
  .menu-tab .submitBtn {
    padding: 0;
  }
  .menu-tab-item .menu-tab-tit {
    margin-bottom: 15px;
  }
  .menu-tab-tit-a,
  .menu-tab-tit-b {
    width: 140px;
    padding: 15px 20px;
    background: #a1d7ff;
    color: #4A795C;
    cursor: pointer;
    cursor: hand;
    z-index: 998;
  }
  .menu-tab-tit-a:hover,
  .menu-tab-tit-b:hover {
    opacity: 0.8;
  }
  .menu-tab-tit-a {
    -moz-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
  }
  .menu-tab-tit-b {
    border-top: 2px solid #6b98b9;
    -moz-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .open-tab-a .menu-tab,
  .open-tab-b .menu-tab {
    right: -240px;
  }
  .open-tab-a .menu-tab-tit-b {
    background: #81accc;
  }
  .open-tab-b .menu-tab-tit-a {
    background: #81accc;
  }
}
/******************************************************************
  ■ トップページ
*****************************************************************/
#index .index-ttl {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
}
#index .index-ttl .ttl-jp {
  color: #4A795C;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  #index .index-ttl .ttl-jp {
    font-size: 1.4rem;
  }
}
#index .index-ttl .index-ttl .ttl-en {
  font-size: 2.6rem;
}
#index .mainimg.bg-100vh {
  position: relative;
  min-height: 100vh;
  width: auto;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#index .mainimg.bg-100vh #video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  z-index: -10;
}
#index .mainimg.bg-100vh .mainimg-text {
  position: absolute;
  top: calc(50% - 60px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
#index .mainimg .vimeo {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
@media (max-width: 767px) {
  .paging-count {
    background: #888;
    color: #fff;
    padding: 15px 0;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .list-block-ttl {
    font-size: 18px;
    padding: 15px 20px;
  }
}

.block a {
  position: relative;
}
.block a .list-detail-btn {
  position: absolute;
  right: 40px;
  bottom: 50px;
  background: #77634C;
  padding: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 0 1px #ccc;
}

/******************************************************************
  ■ お知らせ
*****************************************************************/
/* news
------------------------------*/
#news .ic li,
.index-box .ic li {
  width: 130px;
}

#news .showdate {
  order: 1;
}
#news .list-block-ic {
  order: 2;
  display: grid;
  place-content: center;
}
#news .line-link-tit {
  order: 3;
  width: 100%;
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #news .line-link-tit {
    font-size: 1.8rem;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  #news .line-link-list a {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.index-box.line-link-list .showdate {
  order: 2;
}
.index-box.line-link-list .list-block-ic {
  order: 1;
  display: grid;
  place-content: center;
}
.index-box.line-link-list .line-link-tit {
  order: 3;
  width: 100%;
}
/* news-d
------------------------------*/
@media (min-width: 768px) {
  .news-d-box {
    margin-top: -30px;
    padding: 40px 40px 20px;
    border: 2px solid #eeeeee;
  }
}
.news-d-box section {
  margin-bottom: 60px;
}
.news-d-box .ic li {
  width: 130px;
}

.news-d-img {
  margin: 0 auto;
  max-width: 500px;
}

.news-d-slick-item:only-child {
  margin: 0 auto;
}

/******************************************************************
  ■ インタビュー
*****************************************************************/
#interview-box {
  line-height: 2;
}

/******************************************************************
  ■ 検索フォーム
*****************************************************************/
/* チェックボックス */
.checkbox {
  position: relative;
  display: block;
  padding: 0 0 0 2.5rem;
}
@media (max-width: 767px) {
  .checkbox {
    margin-bottom: 0;
    padding: 0 0 0 42px;
    background: #eee;
    z-index: 1;
  }
}
.checkbox::before, .checkbox::after {
  content: "";
  position: absolute;
  display: block;
  cursor: pointer;
}
.checkbox::before {
  top: 10px;
  left: 16px;
  z-index: 1;
  width: 0.8rem;
  height: 1.6rem;
  transform: rotate(40deg);
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  opacity: 0;
}
@media (min-width: 768px) {
  .checkbox::before {
    top: 0;
    left: 0.6rem;
  }
}
.checkbox::after {
  top: 10px;
  left: 10px;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  border: 2px solid #d2d2d2;
  background: #fff;
  opacity: 1;
}
@media (min-width: 768px) {
  .checkbox::after {
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .checkbox a {
    display: block;
    padding: 10px 8px;
    background: #fff;
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .checkbox a {
    text-decoration: underline;
  }
  .checkbox a:hover {
    text-decoration: underline;
  }
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox::before {
  opacity: 1;
}
input[type=checkbox]:checked + .checkbox::after {
  background: #4A795C;
  border: none;
}

@media (min-width: 768px) {
  .checkbox-wrap {
    padding: 20px 0 0;
  }
}
.checkbox-wrap li {
  vertical-align: middle;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .checkbox-wrap li {
    margin: 0 10px 10px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .checkbox-wrap li {
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .pref-name + .checkbox-wrap {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .pref-name + .checkbox-wrap {
    padding: 0 0 10px 10px;
  }
}

@media (min-width: 768px) {
  .pref-48 .checkbox-wrap {
    padding: 0;
  }
}

.checkbox-pref .checkbox {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .checkbox-pref .checkbox {
    display: inline-block;
    margin-right: 20px;
    border-bottom: none;
    font-size: 1.4rem;
  }
}

/* プルダウン */
@media (min-width: 768px) {
  .pull-wrap {
    width: calc(33.333333% - 10px);
  }
}
@media (max-width: 767px) {
  .pull-wrap {
    margin: 20px 10px;
  }
}

.select-kcd,
.select-kkcd,
.select-scd,
.pram-free {
  width: 112%;
  margin: 0 0 0 -6.5%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  background: url(../img/common/selectbox-arrow.png) right center/12px auto no-repeat #fff;
  background-position: right 15px center;
}
@media (min-width: 768px) {
  .select-kcd,
  .select-kkcd,
  .select-scd,
  .pram-free {
    width: 100%;
    margin: 0 auto;
  }
}

/* キーワード */
.search-form-fw {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  margin: 20px 10px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 0 0 #ccc;
  background: #fff;
}
@media (min-width: 768px) {
  .search-form-fw {
    margin: 20px 15px;
    background: #eee;
  }
}
.search-form-fw .kwText {
  width: 100%;
}
@media (max-width: 767px) {
  .search-form-fw .kwText {
    margin-left: -1.5em;
  }
}

.search-box {
  margin: 0;
}
@media (min-width: 768px) {
  .search-box {
    margin: 0 15px 30px !important;
    display: block !important;
    height: 100% !important;
  }
}

/* 検索タイトル */
.search-tit {
  position: relative;
}
@media (min-width: 768px) {
  .search-tit {
    padding: 0 0 0 25px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: none;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .search-tit {
    padding: 15px 10px;
    background: #4A795C;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .search-tit::before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    border-radius: 3px;
    background-color: #4A795C;
  }
}
.search-tit::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
}
@media (min-width: 768px) {
  .search-tit::after {
    left: auto;
    min-width: 1000px;
    height: 1px;
    background: #ccc;
  }
}

.search-ttl-add {
  font-size: 1.4rem;
  margin: 0 0 0 10px;
}

.search-form {
  background: #fff;
  padding: 0 0 30px;
}
@media (min-width: 768px) {
  .search-form {
    border: 2px solid #cccccc;
    padding: 30px;
  }
}

/* 勤務地 */
@media (max-width: 767px) {
  .search-form-kinmuchi {
    margin: 20px 0;
  }
  .search-form-kinmuchi.check-style {
    margin: 0;
  }
  .search-form-kinmuchi.pull-check-style .checkbox-wrap {
    margin-bottom: -20px;
  }
  .search-form-kinmuchi li {
    padding: 0;
  }
  .search-form-kinmuchi li:not(:first-child) .wrap-pref,
  .search-form-kinmuchi li:not(:first-child) .wrap-city {
    margin-top: 10px;
  }
  .search-form-kinmuchi .select-kcd {
    margin: 0 0 0 -3.5%;
    width: 106%;
  }
}
@media (min-width: 768px) {
  .search-form-kinmuchi {
    margin: 0 0 30px;
  }
  .search-form-kinmuchi.tab-style.active {
    border-right: none;
    border-left: none;
  }
  .search-form-kinmuchi li:only-child .wrap-city {
    padding-left: 0;
  }
  .search-form-kinmuchi.check-style > li:first-child {
    padding-left: 0;
    padding-right: 0;
  }
}

/* エリアのタブスタイル */
.select-area-tab {
  display: none;
}
@media (min-width: 768px) {
  .select-area-tab {
    display: flex;
    border-left: 1px solid #4A795C;
  }
  .select-area-tab li {
    letter-spacing: 1px;
    border: 1px solid;
    border-left: 0;
    border-color: #4A795C;
    text-align: center;
    padding: 8px 4px;
    cursor: pointer;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .select-area-tab li {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .select-area-tab li {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .select-area-tab li:hover, .select-area-tab li.current {
    background: #4A795C;
    color: #fff;
  }
}

/* プルダウンの組み合わせスタイル */
@media (min-width: 768px) {
  .pull-style > li:nth-child(1) {
    padding-right: 10px;
    padding-left: 0;
  }
  .pull-style > li:nth-child(2) {
    padding-right: 10px;
    padding-left: 10px;
  }
  .pull-style > li:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }
}

/* タブの組み合わせスタイル */
@media (min-width: 768px) {
  .search-form-kinmuchi.active .tab-style {
    border-left: 1px solid #4A795C;
    border-right: 1px solid #4A795C;
    border-bottom: 1px solid #4A795C;
  }
}

/* 都道府県名スタイル */
.pref-name {
  margin: auto 8px 10px;
  padding: 8px;
  line-height: 1;
  background-color: #eee;
}

.tab-style .wrap-pref-pull {
  padding-top: 10px;
}

/* 市区町村 */
@media (min-width: 768px) {
  .wrap-city {
    padding-left: 10px;
  }
}

@media (min-width: 768px) {
  .wrap-city-checkbox {
    padding-top: 10px;
  }
}

.tab-style .wrap-city-pull {
  padding-top: 10px;
}

/* 検索フォームボタン */
.search-form-btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.search-form-btn input[type=button] {
  font-size: 1.5rem;
  width: 100%;
  margin: 20px 0;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
  border-radius: 3px;
  background: #77634C;
  box-shadow: 0 1px 0 1px #ccc;
}
@media (max-width: 767px) {
  .search-form-btn input[type=button] {
    position: relative;
    z-index: 80;
  }
}
.search-form-btn input[type=button].disabled {
  background: #ccc;
}

.sticky-bottom-wrap.btn-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 97;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 1s ease;
}
.sticky-bottom-wrap.btn-fixed.is-hdn {
  bottom: -1000px;
}
@media (min-width: 768px) {
  .sticky-bottom-wrap .search-form-btn {
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .sticky-bottom-wrap .search-form-btn {
    margin: 10px auto;
  }
}

/* アコーディオンのプラスマーク */
@media (max-width: 767px) {
  .search-icon-plus {
    position: relative;
  }
  .search-icon-plus::before, .search-icon-plus::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 16px;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease-out 0s;
  }
  .search-icon-plus::before {
    transform: rotate(90deg);
  }
  .search-icon-plus.open:before {
    transition: all 0.3s ease-out 0s;
    transform: rotate(0deg);
  }
}
.kinmuchi-link table {
  margin-left: 0;
}
@media (max-width: 767px) {
  .kinmuchi-link table {
    width: 100%;
  }
  .kinmuchi-link table tr {
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .kinmuchi-link table {
    margin-left: auto;
  }
}
.kinmuchi-link th,
.kinmuchi-link td {
  padding: 5px;
}
@media (max-width: 767px) {
  .kinmuchi-link th,
  .kinmuchi-link td {
    display: block;
  }
}
.kinmuchi-link th {
  border-bottom: solid 1px #888;
  font-size: 1.2rem;
}
.kinmuchi-link td {
  border-bottom: solid 1px #eee;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .kinmuchi-link td {
    line-height: 2;
  }
}
.kinmuchi-link a {
  padding: 0 5px;
  text-decoration: underline;
  display: inline-block;
  vertical-align: middle;
}
.kinmuchi-link a:hover {
  display: inline-block;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .w-sp-50 {
    width: 50% !important;
  }
  .w-sp-100 {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
/******************************************************************
  ■header
*****************************************************************/
header {
  z-index: 1000;
  width: 100%;
  height: 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.3); /*横方向　下方向　ぼかし　広がり　色 */
}
@media (min-width: 768px) {
  header {
    height: 80px;
  }
}

.header {
  display: flex;
  padding-left: 5px;
  max-width: none;
}
@media (min-width: 768px) {
  .header {
    justify-content: space-between;
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .header {
    padding: 0 16px;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  .header {
    padding: 0 32px;
  }
}

.header-logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 0;
}
@media (min-width: 768px) {
  .header-logo {
    height: 80px;
  }
}
.header-logo .logo {
  width: 152px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .header-logo .logo {
    width: 160px;
  }
}
@media (min-width: 992px) {
  .header-logo .logo {
    width: 190px;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo {
    width: 240px;
  }
}
@media (min-width: 1400px) {
  .header-logo .logo {
    width: 305px;
  }
}
.header-logo .logo-text {
  margin-left: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .header-logo .logo-text {
    margin-left: 8px;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .header-logo .logo-text {
    margin-top: 4px;
    margin-left: 12px;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo-text {
    margin-top: 3px;
    margin-left: 14px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .header-logo .logo-text {
    margin-top: 0;
    margin-left: 16px;
    font-size: 1.6rem;
  }
}
.header-logo a {
  align-items: center;
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 768px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    height: 80px;
  }
  .main-menu-wrap .main-menu-cts {
    padding-left: 12px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 16px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 28px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 32px;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn {
    flex: 1 0 auto;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    position: relative;
    width: 70px;
    padding: 16px 0;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    width: 90px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    width: 120px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    width: 166px;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    display: grid;
    place-items: center;
    color: #fff;
    background-color: #77634C;
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span::after {
    display: none;
  }
  .main-menu-wrap .main-menu-cts a {
    height: 100%;
  }
  .main-menu-wrap .main-menu-cts a span {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts a span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
    transform: scaleX(0);
    background-color: #4A795C;
  }
  .main-menu-wrap .main-menu-cts.current-hover a span::after, .main-menu-wrap .main-menu-cts.current a span::after {
    transform: scaleX(1);
  }
}

/* SP用 menu
----------------------------------------------- */
.menu-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index: 1000;
  background: #4A795C;
  opacity: 0.8;
}
.menu-btn span {
  position: absolute;
  right: 10px;
  margin: 0 auto;
  width: 30px;
  height: 2px;
  display: block;
  background-color: #fff;
}
.menu-btn span:nth-of-type(1) {
  top: 15px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 33px;
  bottom: -16px;
}

.open .menu-btn, .open-tab-a .menu-btn, .open-tab-b .menu-btn {
  background: transparent;
}
.open .menu-btn span, .open-tab-a .menu-btn span, .open-tab-b .menu-btn span {
  background-color: #4A795C;
  transition: all 0.4s;
}
.open .menu-btn span:nth-of-type(1), .open-tab-a .menu-btn span:nth-of-type(1), .open-tab-b .menu-btn span:nth-of-type(1) {
  top: 17px;
  transform: translateY(5px) rotate(-45deg);
}
.open .menu-btn span:nth-of-type(2), .open-tab-a .menu-btn span:nth-of-type(2), .open-tab-b .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3), .open-tab-a .menu-btn span:nth-of-type(3), .open-tab-b .menu-btn span:nth-of-type(3) {
  bottom: -21px;
  transform: translateY(-11px) rotate(45deg);
}

.menu-box {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
  background: #ffffff;
  top: 0;
  visibility: hidden;
  transition: all 1s;
  opacity: 0;
}
.menu-box .menu-link li {
  margin: 10px 0;
}
.menu-box .menu-link li a {
  border: 1px solid #cccccc;
  line-height: 1;
  padding: 15px;
  display: block;
  margin-bottom: -1px;
  position: relative;
}
.menu-box .menu-link li a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  transition: all 0.3s ease-out 0s;
  transform: rotate(-45deg);
  border-right: 1px solid #4A795C;
  border-bottom: 1px solid #4A795C;
}
.menu-box .menu-ttl-2 {
  background: #4A795C;
  color: #fff;
  padding: 8px;
}
.menu-box .menu-contact {
  margin-top: 20px;
}
.menu-box .menu-contact .menu-contact-inner {
  padding: 20px 10px;
  border: 1px solid #eee;
}
.menu-box .menu-contact .menu-contact-tel {
  font-size: 1.5rem;
}
.menu-box .menu-contact .menu-contact-tel a {
  display: inline-block;
}
.menu-box .menu-contact .menu-contact-tel span {
  text-decoration: underline;
}
.menu-box .menu-contact .menu-contact-btn {
  margin: 20px auto 0;
}

.close-txt {
  border: 1px solid #333333;
  padding: 10px;
  display: block;
  width: 100px;
  margin: 20px auto;
  text-align: center;
}

.open .menu-box {
  transition: all 1s;
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  background: #fff;
  border-top: 1px solid #EEEEEF;
  text-align: center;
}
#page_top a {
  font-style: italic;
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: #4A795C;
  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 #4A795C;
  border-right: 2px solid #4A795C;
  display: block;
}

/* footer
------------------------------*/
footer {
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  footer {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
@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;
  font-weight: bold;
}
@media (max-width: 767px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #fff;
  }
}
@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 #4A795C;
  border-right: 1px solid #4A795C;
}
@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: #4A795C;
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: normal;
  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;
  font-weight: normal;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}

/******************************************************************
  ■ 案件別専用スタイル
*****************************************************************/
@media (min-width: 992px) {
  .sp-tbHdn {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .lgHdn {
    display: none !important;
  }
}

/******************************************************************
  ■ TOPページ 関連
*****************************************************************/
#index .contents-inn p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  #index .contents-inn p {
    font-size: 1.8rem;
  }
}
#index .box-wrap-01, #index .box-wrap-02 {
  align-items: center;
}
@media (min-width: 992px) {
  #index .box-half-01 {
    margin-right: 17px;
  }
}
@media (min-width: 992px) {
  #index .box-half-02 {
    margin-left: 17px;
  }
}
#index .embed-responsive {
  aspect-ratio: 16/9;
}
#index {
  /* mainimg
  ------------------------------*/
}
#index .mainimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .mainimg {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .mainimg::after {
  position: absolute;
  content: "";
  background: url(../img/mainimg/mainimg-deco-sp.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 17.0666vw;
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  z-index: 50;
}
@media (min-width: 768px) {
  #index .mainimg::after {
    background: url(../img/mainimg/mainimg-deco-sp.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 16.6666vw;
  }
}
@media (min-width: 992px) {
  #index .mainimg::after {
    background: url(../img/mainimg/mainimg-deco-pc.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 10.4166vw;
  }
}
#index .mainimg .mainimg-inn {
  background: url(../img/mainimg/mainimg-deco-001.png) no-repeat top 0 left 0/30.5729vw 18.6458vw, url(../img/mainimg/mainimg-deco-002.png) no-repeat top 0 right 0/30.5729vw 18.6458vw;
  padding: 24px 0 96px;
}
@media (max-width: 767px) {
  #index .mainimg .mainimg-inn {
    background: url(../img/mainimg/mainimg-deco-001.png) no-repeat top 0 left 0/78.4vw 47.7333vw;
  }
}
@media (min-width: 768px) {
  #index .mainimg .mainimg-inn {
    padding: 40px 0 90px;
  }
}
@media (min-width: 992px) {
  #index .mainimg .mainimg-inn {
    padding: 40px 0 130px;
  }
}
#index .mainimg .mainimg-slider {
  background-image: url(../img/mainimg/mainimg.png);
  height: 315px;
  animation: slide 100s linear infinite;
  background-size: cover;
  position: relative;
  z-index: 51;
}
@media (min-width: 768px) {
  #index .mainimg .mainimg-slider {
    height: 420px;
  }
}
@media (min-width: 992px) {
  #index .mainimg .mainimg-slider {
    height: 630px;
  }
}
#index .mainimg .mainimg-txt {
  position: absolute;
  width: min(67vw, 720px);
  text-align: center;
  transform: translateX(-65%);
  z-index: 52;
}
@media (max-width: 767px) {
  #index .mainimg .mainimg-txt {
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 345px);
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #index .mainimg .mainimg-txt {
    bottom: -70px;
    left: 72%;
  }
}
@media (min-width: 992px) {
  #index .mainimg .mainimg-txt {
    bottom: -130px;
    left: 70%;
  }
}
@media (min-width: 1400px) {
  #index .mainimg .mainimg-txt {
    left: 65%;
  }
}
@keyframes slide {
  0% {
    background-position: 4664px 0;
  }
  100% {
    background-position: 0 0;
  }
}
#index {
  /*スクロールして可視範囲に入るとアニメーション
  ------------------------------*/
}
#index .fadein01 {
  opacity: 0;
  transition: all 1s 0.2s ease;
  transform: translate(0, 50px);
}
#index .fadein01.active {
  opacity: 1;
  transform: translate(0, 0);
}
#index .fadein01-bg-li-deco01 {
  opacity: 0;
  transition: all 1s 1s ease;
  transform: translate(0, 50px);
}
#index .fadein01-bg-li-deco01.active {
  opacity: 1;
  transform: translate(0, 0);
}
#index .fadein01-bg-li-deco02 {
  opacity: 0;
  transition: all 1s 0.7s ease;
  transform: translate(0, 50px);
}
#index .fadein01-bg-li-deco02.active {
  opacity: 1;
  transform: translate(0, 0);
}
#index {
  /*ゆらゆらと揺れるアニメーション
  ------------------------------*/
}
#index .shake-animation {
  animation: shake 5s infinite;
  /*animation-iteration-count: 3;*/
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#index {
  /* index-lead
  ------------------------------*/
}
#index .index-lead {
  background: url(../img/top/bg-lead-deco-pc-001.png) no-repeat #fff bottom center/contain;
  padding: 0;
}
@media (max-width: 767px) {
  #index .index-lead {
    background: url(../img/top/bg-lead-deco-sp-001.png) no-repeat #fff bottom center/contain;
  }
}
@media (min-width: 992px) {
  #index .index-lead {
    padding: 40px 0;
  }
}
#index .index-lead .contents-inn {
  padding: 16px 15px 250px;
}
@media (min-width: 768px) {
  #index .index-lead .contents-inn {
    padding: 0 0 270px;
  }
}
@media (min-width: 992px) {
  #index .index-lead .contents-inn {
    padding: 0 0 385px;
  }
}
#index .index-lead p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: bold;
  text-shadow: 1px 1px 8px #fff, 1px 1px 8px #fff, 1px 1px 8px #fff, 1px 1px 8px #fff, 1px 1px 8px #fff;
}
@media (min-width: 768px) {
  #index .index-lead p {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  #index .index-lead p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
  }
}
#index .index-lead p:last-of-type {
  margin-bottom: 0;
}
#index {
  /* index-map
  ------------------------------*/
}
#index .index-map {
  padding: 0;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .index-map {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .index-map .contents-inn {
  padding: 0 15px 64px;
}
@media (min-width: 768px) {
  #index .index-map .contents-inn {
    padding: 32px 0 130px;
  }
}
@media (min-width: 992px) {
  #index .index-map .contents-inn {
    padding: 0 0 130px;
  }
}
#index .index-map .box-wrap-01 {
  flex-direction: column;
}
@media (min-width: 768px) {
  #index .index-map .box-wrap-01 {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  #index .index-map .box-half-01 {
    padding-bottom: 6px;
  }
}
#index .index-map .box-half-01 img {
  aspect-ratio: 518/505;
}
#index .index-map .txt-link a {
  color: #4A795C;
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
  text-decoration: underline;
}
#index .index-map .txt-link a:hover {
  text-decoration: none;
}
#index .index-map .txt-link a::after {
  content: "";
  background: url(../img/common/ic-arrow-g-001.png) no-repeat center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 7px;
}
@media (min-width: 768px) {
  #index .index-map .txt-link a::after {
    width: 24px;
    height: 24px;
  }
}
#index .index-map .index-button a {
  margin: 32px 0 0;
}
@media (min-width: 768px) {
  #index .index-map .index-button a {
    margin: 40px 0 0;
  }
}
#index {
  /* index-news
  ------------------------------*/
}
#index .index-news {
  position: relative;
  background: #fff;
}
#index .index-news::before {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: -5.3333vw;
  bottom: auto;
}
@media (min-width: 768px) {
  #index .index-news::before {
    background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    top: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-news::before {
    background: url(../img/top/bg-deco-pc-001.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    top: -2.6041vw;
  }
}
#index .index-news::after {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: -5.3333vw;
  z-index: 50;
}
@media (min-width: 768px) {
  #index .index-news::after {
    background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    bottom: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-news::after {
    background: url(../img/top/bg-deco-pc-002.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    bottom: -2.6041vw;
  }
}
@media (max-width: 767px) {
  #index .index-news .contents-inn {
    position: relative;
    z-index: 80;
  }
}
#index .index-news .contents-ttl .pcHdn {
  height: 120px;
}
#index {
  /* index-job
  ------------------------------*/
}
#index .index-job {
  position: relative;
  padding: 32px 0;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .index-job {
    padding: 65px 0;
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .index-job .fadein01-bg-li-deco01 {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: -100px;
  bottom: auto;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-job .fadein01-bg-li-deco01 {
    top: -120px;
  }
}
@media (min-width: 992px) {
  #index .index-job .fadein01-bg-li-deco01 {
    top: -70px;
  }
}
@media (min-width: 1200px) {
  #index .index-job .fadein01-bg-li-deco01 {
    top: -120px;
  }
}
@media (min-width: 1400px) {
  #index .index-job .fadein01-bg-li-deco01 {
    top: -180px;
  }
}
#index .index-job .fadein01-bg-li-deco01 img {
  width: 140px;
  height: 192px;
}
@media (min-width: 768px) {
  #index .index-job .fadein01-bg-li-deco01 img {
    width: 160px;
    height: 219px;
  }
}
@media (min-width: 992px) {
  #index .index-job .fadein01-bg-li-deco01 img {
    width: 14.5833vw;
    height: 20vw;
  }
}
#index .index-job .fadein01-bg-li-deco02 {
  position: absolute;
  content: "";
  display: block;
  right: 15px;
  bottom: -30px;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-job .fadein01-bg-li-deco02 {
    right: 32px;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  #index .index-job .fadein01-bg-li-deco02 {
    bottom: 20px;
  }
}
@media (min-width: 1200px) {
  #index .index-job .fadein01-bg-li-deco02 {
    bottom: -5px;
  }
}
#index .index-job .fadein01-bg-li-deco02 img {
  width: 93px;
  height: 65px;
}
@media (min-width: 768px) {
  #index .index-job .fadein01-bg-li-deco02 img {
    width: 120px;
    height: 84px;
  }
}
@media (min-width: 1200px) {
  #index .index-job .fadein01-bg-li-deco02 img {
    width: 9.6354vw;
    height: 6.7187vw;
  }
}
#index .index-job .contents-inn {
  padding: 32px 15px;
}
@media (min-width: 768px) {
  #index .index-job .contents-inn {
    padding: 65px 0;
  }
}
#index .index-job .job-btn-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px 16px;
}
#index .index-job .job-btn-item {
  flex: 1;
  flex-basis: calc(50% - 17px);
}
@media (min-width: 768px) {
  #index .index-job .job-btn-item {
    flex-basis: calc(25% - 18px);
  }
}
#index .index-job .job-btn-item .job-btn {
  color: #4E3F2D;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #FFFEE4;
  padding: 20px 0;
  position: relative;
  border: solid 4px #4A795C;
  border-radius: 40px;
  min-height: 164px;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  #index .index-job .job-btn-item .job-btn {
    font-size: 2rem;
    min-height: 175px;
  }
}
@media (min-width: 992px) {
  #index .index-job .job-btn-item .job-btn {
    font-size: 2.8rem;
    min-height: 257px;
  }
}
#index .index-job .job-btn-item .job-btn::after {
  position: absolute;
  content: "";
  background: url(../img/top/ic-job-arrow-sp.png) no-repeat center center;
  background-size: contain;
  width: 64px;
  height: 55px;
  display: block;
  right: -4px;
  bottom: -4px;
}
@media (min-width: 768px) {
  #index .index-job .job-btn-item .job-btn::after {
    background: url(../img/top/ic-job-arrow-pc.png) no-repeat center center;
    background-size: contain;
    width: 60px;
    height: 54px;
  }
}
@media (min-width: 992px) {
  #index .index-job .job-btn-item .job-btn::after {
    width: 84px;
    height: 76px;
  }
}
#index .index-job .job-btn-item .job-btn:hover {
  background: #4A795C;
  color: #FFFEE4;
  transition: all 0.3s;
  opacity: 1;
}
#index .index-job .job-btn-item .job-btn:hover::after {
  background: url(../img/top/ic-job-arrow-sp-hover.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  opacity: 1;
}
@media (min-width: 768px) {
  #index .index-job .job-btn-item .job-btn:hover::after {
    background: url(../img/top/ic-job-arrow-pc-hover.png) no-repeat center center;
    background-size: contain;
  }
}
#index .index-job .job-btn-item .job-btn span {
  display: block;
}
#index .index-job .index-button a:link::before, #index .index-job .index-button a:visited::before {
  transform: translateY(-50%) rotate(90deg);
}
#index {
  /* index-people
  ------------------------------*/
}
#index .index-people {
  position: relative;
  background: #fff;
  padding: 24px 0 48px;
}
@media (min-width: 768px) {
  #index .index-people {
    padding: 40px 0 80px;
  }
}
#index .index-people::before {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: -5.3333vw;
  bottom: auto;
}
@media (min-width: 768px) {
  #index .index-people::before {
    background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    top: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-people::before {
    background: url(../img/top/bg-deco-pc-001.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    top: -2.6041vw;
  }
}
#index .index-people::after {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: -5.3333vw;
  z-index: 50;
}
@media (min-width: 768px) {
  #index .index-people::after {
    background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    bottom: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-people::after {
    background: url(../img/top/bg-deco-pc-002.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    bottom: -2.6041vw;
  }
}
#index .index-people .contents-ttl-sub {
  text-align: left;
}
#index .index-people .contents-ttl-sub img {
  height: 69px;
}
@media (min-width: 768px) {
  #index .index-people .contents-ttl-sub img {
    height: 90px;
  }
}
#index .index-people .box-wrap-01 {
  flex-direction: column;
}
@media (min-width: 768px) {
  #index .index-people .box-wrap-01 {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  #index .index-people .box-half-01 {
    padding-bottom: 16px;
  }
}
#index {
  /* index-interview
  ------------------------------*/
}
#index .index-interview.interview-design-03 {
  padding: 6px 0 0 0;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 {
    padding: 24px 0 0 0;
  }
}
#index .index-interview.interview-design-03 .contents-inn {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .contents-inn {
    padding: 0;
  }
}
#index .index-interview.interview-design-03 {
  /*padサイズ時カラム数を指定。*/
  /*pcサイズ時カラム数を指定。*/
}
#index .index-interview.interview-design-03 .d-md-flex {
  counter-reset: num 0;
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .d-md-flex {
    padding-top: 19px;
    font-size: 0;
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .d-md-flex {
    justify-content: left !important;
  }
}
#index .index-interview.interview-design-03 .d-md-flex li {
  background: none;
  position: relative;
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .d-md-flex li {
    margin-right: 30px;
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .d-md-flex li {
    width: calc((100% - 5% * (3 - 1)) / 3);
  }
}
@media (min-width: 992px) {
  #index .index-interview.interview-design-03 .d-md-flex li {
    width: calc((100% - 5% * (3 - 1)) / 3);
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n) {
    margin-right: 0;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:not(:nth-child(3n)) {
    margin-right: 5%;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n-1) {
    margin-top: 5%;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n-2), #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n) {
    margin-top: -5%;
  }
}
@media (min-width: 992px) {
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n) {
    margin-right: 0;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:not(:nth-child(3n)) {
    margin-right: 5%;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n-1) {
    margin-top: 3%;
  }
  #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n-2), #index .index-interview.interview-design-03 .d-md-flex li:nth-child(3n) {
    margin-top: -3%;
  }
}
#index .index-interview.interview-design-03 .flex-link-type_b {
  margin-bottom: 0;
}
#index .index-interview.interview-design-03 .flex-link-type_b a {
  overflow: inherit;
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-center-img {
  border: none;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-center-img::before, #index .index-interview.interview-design-03 .flex-link-type_b a .flex-center-img::after {
  display: none;
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-center-img {
  transition: all 0.3s;
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-center-img img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt {
  position: relative;
  border: none;
  padding: 1.5em 0;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt {
    padding: 1.5em 0 0;
  }
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-weight: bold;
  color: #4E3F2D;
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-ttl {
    font-size: 1.8rem;
  }
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-job {
  color: #888888;
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-job {
    font-size: 1.4rem;
  }
}
#index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-name {
  color: #4E3F2D;
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-name {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a:hover {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a:hover .flex-center-img {
    transform: scale(0.8);
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .flex-link-type_b a:hover .flex-center-img img {
    transform: scale(1.25);
  }
}
#index .index-interview.interview-design-03 .contents-ttl-sub {
  text-align: center;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .contents-ttl-sub {
    padding-bottom: 50px;
  }
}
#index .index-interview.interview-design-03 .contents-ttl-sub img {
  height: 27px;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-03 .contents-ttl-sub img {
    height: 39px;
  }
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-03 .index-button {
    position: relative;
    z-index: 80;
  }
}
#index {
  /* index-working-environment
  ------------------------------*/
}
#index .index-working-environment {
  position: relative;
  padding: 32px 0;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .index-working-environment {
    padding: 65px 0;
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .index-working-environment .fadein01-bg-li-deco01 {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: -130px;
  bottom: auto;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-working-environment .fadein01-bg-li-deco01 {
    top: -100px;
  }
}
@media (min-width: 992px) {
  #index .index-working-environment .fadein01-bg-li-deco01 {
    top: -130px;
  }
}
@media (min-width: 1200px) {
  #index .index-working-environment .fadein01-bg-li-deco01 {
    top: -160px;
  }
}
@media (min-width: 1400px) {
  #index .index-working-environment .fadein01-bg-li-deco01 {
    top: -230px;
  }
}
#index .index-working-environment .fadein01-bg-li-deco01 img {
  width: 205px;
  height: 244px;
}
@media (min-width: 768px) {
  #index .index-working-environment .fadein01-bg-li-deco01 img {
    width: 230px;
    height: 274px;
  }
}
@media (min-width: 992px) {
  #index .index-working-environment .fadein01-bg-li-deco01 img {
    width: 21.3541vw;
    height: 25.3645vw;
  }
}
#index .index-working-environment .fadein01-bg-li-deco02 {
  position: absolute;
  content: "";
  display: block;
  right: 15px;
  bottom: -35px;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-working-environment .fadein01-bg-li-deco02 {
    right: 32px;
    bottom: -5px;
  }
}
@media (min-width: 992px) {
  #index .index-working-environment .fadein01-bg-li-deco02 {
    right: 64px;
    bottom: 20px;
  }
}
@media (min-width: 1200px) {
  #index .index-working-environment .fadein01-bg-li-deco02 {
    bottom: -5px;
  }
}
#index .index-working-environment .fadein01-bg-li-deco02 img {
  width: 82px;
  height: 67px;
}
@media (min-width: 768px) {
  #index .index-working-environment .fadein01-bg-li-deco02 img {
    width: 110px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  #index .index-working-environment .fadein01-bg-li-deco02 img {
    width: 8.4375vw;
    height: 6.9791vw;
  }
}
#index .index-working-environment .contents-inn {
  padding: 32px 15px;
}
@media (min-width: 768px) {
  #index .index-working-environment .contents-inn {
    padding: 65px 0;
  }
}
@media (max-width: 767px) {
  #index .index-working-environment .contents-inn {
    position: relative;
    z-index: 80;
  }
}
#index .index-working-environment .contents-ttl-sub {
  text-align: left;
}
#index .index-working-environment .contents-ttl-sub img {
  height: 69px;
}
@media (min-width: 768px) {
  #index .index-working-environment .contents-ttl-sub img {
    height: 89px;
  }
}
#index .index-working-environment .box-wrap-01 {
  flex-direction: column;
}
@media (min-width: 768px) {
  #index .index-working-environment .box-wrap-01 {
    flex-direction: row;
  }
}
#index .index-working-environment .box-wrap-02 {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  #index .index-working-environment .box-wrap-02 {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  #index .index-working-environment .box-half-01 {
    padding-bottom: 16px;
  }
}
#index .index-working-environment .row:nth-of-type(1) {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #index .index-working-environment .row:nth-of-type(1) {
    margin-bottom: 48px;
  }
}
#index .index-working-environment .index-button a {
  margin: 32px auto 0;
}
@media (min-width: 768px) {
  #index .index-working-environment .index-button a {
    margin: 40px auto 0;
  }
}
#index .index-working-environment .img-we {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  #index .index-working-environment .img-we {
    margin-bottom: 0;
  }
}
#index .index-working-environment .img-we img {
  aspect-ratio: 3/2;
  border-radius: 40px;
}
#index {
  /* index-work
  ------------------------------*/
}
#index .index-work {
  position: relative;
  background: #fff;
}
#index .index-work::before {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: -5.3333vw;
  bottom: auto;
}
@media (min-width: 768px) {
  #index .index-work::before {
    background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    top: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-work::before {
    background: url(../img/top/bg-deco-pc-001.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    top: -2.6041vw;
  }
}
#index .index-work::after {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: -5.3333vw;
  z-index: 50;
}
@media (min-width: 768px) {
  #index .index-work::after {
    background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    bottom: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-work::after {
    background: url(../img/top/bg-deco-pc-002.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    bottom: -2.6041vw;
  }
}
#index .index-work .contents-ttl-sub {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  #index .index-work .contents-ttl-sub {
    margin-bottom: 40px;
  }
}
#index .index-work .contents-ttl-sub img {
  height: 69px;
}
@media (min-width: 768px) {
  #index .index-work .contents-ttl-sub img {
    height: 89px;
  }
}
#index .index-work .box-work {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0 17px;
}
@media (min-width: 768px) {
  #index .index-work .box-work {
    gap: 8px;
  }
}
@media (min-width: 992px) {
  #index .index-work .box-work {
    gap: 24px;
  }
}
#index .index-work .box-work-item {
  flex: 1;
  flex-basis: calc(50% - 17px);
}
@media (min-width: 768px) {
  #index .index-work .box-work-item {
    flex-basis: calc(25% - 18px);
  }
}
#index .index-work .box-work-item:nth-of-type(2n) {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #index .index-work .box-work-item:nth-of-type(2n) {
    margin-top: 56px;
  }
}
#index .index-work .box-work-item a > img {
  width: 100%;
  transition: opacity 0.5s;
  aspect-ratio: 1/1;
}
#index {
  /* index-new-graduate
  ------------------------------*/
}
#index .index-new-graduate {
  background: url(../img/top/bg-new-graduate-pc.jpg) no-repeat #CCE2A0 center/cover;
}
@media (max-width: 767px) {
  #index .index-new-graduate {
    background: url(../img/top/bg-new-graduate-sp.jpg) no-repeat #CCE2A0 center/cover;
  }
}
@media (min-width: 768px) {
  #index .index-new-graduate .contents-inn {
    padding: 65px 0;
  }
}
#index .index-new-graduate .new-graduate-inn {
  background: url(../img/top/bg-new-graduate-002.png) center center/345px 332px no-repeat;
  max-width: 100%;
  padding: 64px 0;
}
@media (min-width: 768px) {
  #index .index-new-graduate .new-graduate-inn {
    background: url(../img/top/bg-new-graduate-002.png) center center/100% 100% no-repeat;
    max-width: 450px;
    padding: 90px 0;
  }
}
@media (min-width: 992px) {
  #index .index-new-graduate .new-graduate-inn {
    max-width: 521px;
    padding: 112px 0;
  }
}
#index .index-new-graduate .contents-ttl {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #index .index-new-graduate .contents-ttl {
    margin-bottom: 40px;
  }
}
#index .index-new-graduate .contents-ttl img {
  width: auto;
  height: 130px;
}
@media (min-width: 768px) {
  #index .index-new-graduate .contents-ttl img {
    height: 165px;
  }
}
#index .index-new-graduate .index-button a:link, #index .index-new-graduate .index-button a:visited {
  width: 280px;
}
@media (min-width: 768px) {
  #index .index-new-graduate .index-button a:link, #index .index-new-graduate .index-button a:visited {
    width: 320px;
  }
}
@media (min-width: 992px) {
  #index .index-new-graduate .index-button a:link, #index .index-new-graduate .index-button a:visited {
    width: 380px;
  }
}
#index {
  /* index-search
  ------------------------------*/
}
#index .index-search {
  position: relative;
  background: #fff;
}
#index .index-search::before {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: -5.3333vw;
  bottom: auto;
}
@media (min-width: 768px) {
  #index .index-search::before {
    background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    top: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-search::before {
    background: url(../img/top/bg-deco-pc-001.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    top: -2.6041vw;
  }
}
#index .index-search::after {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: auto;
  bottom: -5.3333vw;
  z-index: 50;
}
@media (min-width: 768px) {
  #index .index-search::after {
    background: url(../img/top/bg-deco-sp-002.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    bottom: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-search::after {
    background: url(../img/top/bg-deco-pc-002.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    bottom: -2.6041vw;
  }
}
@media (min-width: 768px) {
  #index .index-search .search-form {
    border: 4px solid #4A795C;
    border-radius: 40px;
  }
}
#index {
  /* index-list
  ------------------------------*/
}
#index .index-list {
  position: relative;
  padding: 32px 0;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .index-list {
    padding: 65px 0;
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .index-list .fadein01-bg-li-deco01 {
  position: absolute;
  content: "";
  background: url(../img/top/bg-il-deco-005.png) no-repeat center center;
  background-size: cover;
  display: block;
  left: 0;
  top: -165px;
  bottom: auto;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-list .fadein01-bg-li-deco01 {
    top: -40px;
  }
}
@media (min-width: 992px) {
  #index .index-list .fadein01-bg-li-deco01 {
    top: -30px;
  }
}
@media (min-width: 1200px) {
  #index .index-list .fadein01-bg-li-deco01 {
    top: -50px;
  }
}
@media (min-width: 1400px) {
  #index .index-list .fadein01-bg-li-deco01 {
    top: -230px;
  }
}
@media (min-width: 1400px) and (max-width: 1700px) {
  #index .index-list .fadein01-bg-li-deco01 {
    top: -70px;
  }
}
#index .index-list .fadein01-bg-li-deco01 img {
  width: 140px;
  height: 223px;
}
@media (min-width: 768px) {
  #index .index-list .fadein01-bg-li-deco01 img {
    width: 160px;
    height: 255px;
  }
}
@media (min-width: 992px) {
  #index .index-list .fadein01-bg-li-deco01 img {
    width: 14.5833vw;
    height: 23.2291vw;
  }
}
#index .index-list .fadein01-bg-li-deco02 {
  position: absolute;
  content: "";
  background: url(../img/top/bg-il-deco-006.png) no-repeat center center;
  background-size: cover;
  display: block;
  right: 15px;
  bottom: -30px;
  z-index: 70;
}
@media (min-width: 768px) {
  #index .index-list .fadein01-bg-li-deco02 {
    bottom: -30px;
    right: 32px;
  }
}
@media (min-width: 992px) {
  #index .index-list .fadein01-bg-li-deco02 {
    bottom: 20px;
  }
}
@media (min-width: 1200px) {
  #index .index-list .fadein01-bg-li-deco02 {
    bottom: -5px;
  }
}
#index .index-list .fadein01-bg-li-deco02 img {
  width: 70px;
  height: 80px;
}
@media (min-width: 768px) {
  #index .index-list .fadein01-bg-li-deco02 img {
    width: 95px;
    height: 109px;
  }
}
@media (min-width: 1200px) {
  #index .index-list .fadein01-bg-li-deco02 img {
    width: 7.2916vw;
    height: 8.3333vw;
  }
}
#index .index-list .contents-inn {
  padding: 32px 15px;
}
@media (min-width: 768px) {
  #index .index-list .contents-inn {
    padding: 65px 0;
  }
}
#index .index-list .block {
  border: 2px solid #4A795C;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #index .index-list .block {
    border: 4px solid #4A795C;
    border-radius: 40px;
  }
}
#index .index-list .block .list-block-cts {
  border-radius: 10px;
}
@media (min-width: 768px) {
  #index .index-list .block .list-block-cts {
    border-radius: 40px;
  }
}
#index {
  /* index-faq
  ------------------------------*/
}
#index .index-faq {
  position: relative;
  background: #fff;
}
#index .index-faq::before {
  position: absolute;
  content: "";
  background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
  background-size: cover;
  width: auto;
  height: 5.3333vw;
  display: block;
  left: 0;
  right: 0;
  top: -5.3333vw;
  bottom: auto;
}
@media (min-width: 768px) {
  #index .index-faq::before {
    background: url(../img/top/bg-deco-sp-001.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 5.2083vw;
    top: -5.2083vw;
  }
}
@media (min-width: 992px) {
  #index .index-faq::before {
    background: url(../img/top/bg-deco-pc-001.png) no-repeat center center;
    background-size: cover;
    height: 2.6041vw;
    top: -2.6041vw;
  }
}
#index .index-faq .cts_type_f {
  padding: 16px;
  border-radius: 40px;
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #index .index-faq .cts_type_f {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
#index .index-faq .cts_type_f .cts_type_f_item {
  border: none;
  border-radius: 40px;
}
@media (min-width: 768px) {
  #index .index-faq .cts_type_f .cts_type_f_cts, #index .index-faq .cts_type_f .cts_type_f_tit {
    padding-left: 4rem !important;
  }
}

/******************************************************************
  ■ 下層ページ 関連
*****************************************************************/
/* デザインオプション無し2ページ共通
------------------------------*/
#work #anchor-link-menu, #environment #anchor-link-menu {
  background: #FFFEE4;
  padding: 0;
}
#work #anchor-link-menu.contents, #environment #anchor-link-menu.contents {
  padding: 0;
}
#work #anchor-link-menu .contents-inn, #environment #anchor-link-menu .contents-inn {
  padding: 0;
}
@media (max-width: 767px) {
  #work #anchor-link-menu .guide-link-type-b, #environment #anchor-link-menu .guide-link-type-b {
    padding-bottom: 0;
  }
}
#work .parallax, #environment .parallax {
  padding: 0;
}
#work .contents p, #environment .contents p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #work .contents p, #environment .contents p {
    font-size: 1.8rem;
  }
}
#work .tit_type_ks, #environment .tit_type_ks {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  #work .tit_type_ks, #environment .tit_type_ks {
    font-size: 3.2rem;
    margin: 0 0 45px;
  }
}
@media (min-width: 992px) {
  #work .tit_type_ks, #environment .tit_type_ks {
    font-size: 3.6rem;
    margin: 0 0 52px;
  }
}
#work .tit_type_h3, #environment .tit_type_h3 {
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  margin: 40px 0 24px;
}
@media (min-width: 768px) {
  #work .tit_type_h3, #environment .tit_type_h3 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin: 60px 0 36px;
  }
}
@media (min-width: 992px) {
  #work .tit_type_h3, #environment .tit_type_h3 {
    font-size: 3.2rem;
    margin: 80px 0 48px;
  }
}
#work .tit_type_h4, #environment .tit_type_h4 {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  #work .tit_type_h4, #environment .tit_type_h4 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin: 0 0 28px;
  }
}
@media (min-width: 992px) {
  #work .tit_type_h4, #environment .tit_type_h4 {
    font-size: 2.5rem;
    margin: 0 0 36px;
  }
}
#work .mds, #environment .mds {
  font-size: 1.6rem;
  text-align: left;
  letter-spacing: 0.2em;
  margin: 12px 0 20px;
}
@media (min-width: 768px) {
  #work .mds, #environment .mds {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 28px;
  }
}
@media (min-width: 992px) {
  #work .mds, #environment .mds {
    font-size: 1.8rem;
    margin: 0 0 50px;
  }
}
#work .index-button.btn-thr a:link, #work .index-button.btn-thr a:visited, #environment .index-button.btn-thr a:link, #environment .index-button.btn-thr a:visited {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  #work .index-button.btn-thr a:link, #work .index-button.btn-thr a:visited, #environment .index-button.btn-thr a:link, #environment .index-button.btn-thr a:visited {
    width: 95%;
    font-size: 1.5rem;
    padding: 10px 0;
  }
}
@media (min-width: 992px) {
  #work .index-button.btn-thr a:link, #work .index-button.btn-thr a:visited, #environment .index-button.btn-thr a:link, #environment .index-button.btn-thr a:visited {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  #work .index-button.btn-thr a:link, #work .index-button.btn-thr a:visited, #environment .index-button.btn-thr a:link, #environment .index-button.btn-thr a:visited {
    width: 95%;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  #work .index-button.btn-thr a:link, #work .index-button.btn-thr a:visited, #environment .index-button.btn-thr a:link, #environment .index-button.btn-thr a:visited {
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  #work .index-button a:link, #work .index-button a:visited, #environment .index-button a:link, #environment .index-button a:visited {
    width: 400px;
  }
}
@media (min-width: 992px) {
  #work .index-button a:link, #work .index-button a:visited, #environment .index-button a:link, #environment .index-button a:visited {
    width: 420px;
  }
}
@media (min-width: 768px) {
  #work .index-button.btn-thr02 a:link, #work .index-button.btn-thr02 a:visited, #environment .index-button.btn-thr02 a:link, #environment .index-button.btn-thr02 a:visited {
    font-size: 1.7rem;
    padding: 10px 0;
    line-height: 1.333;
  }
}
@media (min-width: 992px) {
  #work .index-button.btn-thr02 a:link, #work .index-button.btn-thr02 a:visited, #environment .index-button.btn-thr02 a:link, #environment .index-button.btn-thr02 a:visited {
    font-size: 1.8rem;
    padding: 20px 0;
    line-height: 1.75;
  }
}
@media (max-width: 767px) {
  #work .index-button.btn-thr02 a:link, #work .index-button.btn-thr02 a:visited, #environment .index-button.btn-thr02 a:link, #environment .index-button.btn-thr02 a:visited {
    font-size: 1.5rem;
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  #work .index-button a:link, #work .index-button a:visited, #environment .index-button a:link, #environment .index-button a:visited {
    width: 345px;
  }
}
@media (min-width: 992px) {
  #work .index-button a:link, #work .index-button a:visited, #environment .index-button a:link, #environment .index-button a:visited {
    width: 460px;
  }
}
#work h3, #work h4, #environment h3, #environment h4 {
  font-weight: bold;
}

/* work
------------------------------*/
#work {
  /* パララックス
  --------------*/
}
#work .image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  #work .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
#work .image-box .image-box-area.n-01 {
  background-image: url(../img/work/bg-parallax-001.jpg);
}
#work .dot-list-wrap {
  background: #FFFEE4;
  padding: 30px 0 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #work .dot-list-wrap {
    padding: 50px 0 20px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  #work .dot-list-wrap {
    padding: 50px 0 40px;
  }
}
#work .dot-list-wrap ul {
  margin: 0 5% 0 10%;
}
@media (min-width: 768px) {
  #work .dot-list-wrap ul {
    margin: 0 3% 0 15%;
  }
}
@media (min-width: 992px) {
  #work .dot-list-wrap ul {
    margin: 0 5% 0 18%;
  }
}
@media (min-width: 1200px) {
  #work .dot-list-wrap ul {
    margin: 0 10% 0 23%;
  }
}
@media (min-width: 1400px) {
  #work .dot-list-wrap ul {
    margin: 0 10% 0 22%;
  }
}
#work .dot-list-wrap .dot-list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #work .dot-list-wrap .dot-list {
    margin-bottom: 56px;
  }
}
#work .dot-list-wrap .dot-list:last-of-type {
  margin-bottom: 0;
}
#work .dot-list-wrap .dot-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  #work .dot-list-wrap .dot-list li {
    font-size: 1.8rem;
    margin-bottom: 0.7em;
  }
}
#work .dot-list-wrap .dot-list li::after {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #4A795C;
  font-size: 1.4rem;
  padding-top: 0.1em;
}
@media (min-width: 768px) {
  #work .dot-list-wrap .dot-list li::after {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  #work .cts_type_b {
    margin-bottom: 68px;
  }
}
@media (max-width: 767px) {
  #work .cts_type_b {
    border-bottom: none;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  #work .cts_type_b .txt-BOX {
    min-height: 610px;
  }
}
@media (min-width: 992px) {
  #work .cts_type_b .txt-BOX {
    min-height: 490px;
  }
}
@media (min-width: 1200px) {
  #work .cts_type_b .txt-BOX {
    min-height: 440px;
  }
}
#work .cts_type_b .tit_type_e {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #work .cts_type_b .tit_type_e {
    font-size: 1.9rem;
  }
}
@media (max-width: 767px) {
  #work .cts_type_b p {
    font-size: 1.4rem;
  }
}
#work #volunteer {
  background: #FFFEE4;
}
@media (min-width: 768px) {
  #work #volunteer .contents-inn {
    padding: 40px 15px;
  }
}
#work #career-plan figure {
  margin-bottom: 0;
}
#work #career-plan figure img {
  aspect-ratio: 375/803;
}
@media (min-width: 768px) {
  #work #career-plan figure img {
    aspect-ratio: 107/66;
  }
}

/* environment
------------------------------*/
#environment {
  /* パララックス
  --------------*/
}
#environment .image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  #environment .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
#environment .image-box .image-box-area.n-01 {
  background-image: url(../img/environment/bg-parallax-001.jpg);
}
#environment .tit_type_h4-p, #environment .tit_type_h4-g, #environment .tit_type_h4-b {
  font-size: 1.6rem;
  margin-bottom: 16px;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  #environment .tit_type_h4-p, #environment .tit_type_h4-g, #environment .tit_type_h4-b {
    font-size: 2rem;
    margin-bottom: 32px;
    padding: 24px 30px;
  }
}
#environment .tit_type_h4-p {
  background: #FFC9C9;
}
#environment .tit_type_h4-g {
  background: #CDF4B4;
}
#environment .tit_type_h4-b {
  background: #C5E6F6;
}
#environment .tit_type_e {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  #environment .tit_type_e {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  #environment .tit_type_e {
    margin-top: 30px;
  }
}
#environment .col_type_a {
  margin-top: 10px;
}
@media (min-width: 768px) {
  #environment .col_type_a {
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  #environment .col_type_a {
    margin-top: 40px;
  }
}
#environment .col_type_a .col_type_a_li {
  background-color: #FFFEE4;
}
#environment .col_type_a .col_type_a_ttl {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  #environment .col_type_a .col_type_a_ttl {
    font-size: 2.2rem;
  }
}
#environment .col_type_a .col_type_a_ttl span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.25em;
}
@media (min-width: 768px) {
  #environment .col_type_a .col_type_a_ttl span {
    font-size: 1.6rem;
  }
}
#environment #facility rt {
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  #environment #facility .tit_type_e {
    margin-top: 0;
  }
}
#environment #number {
  padding: 40px 0 0;
}
#environment #number .contents-inn {
  padding: 40px 0 0;
}
#environment #benefits {
  padding: 40px 0 0;
}
#environment #benefits .contents-inn {
  padding: 40px 0 0;
}
#environment #benefits .col_type_a .col_type_a_li {
  background-color: #e0f1bf;
}
#environment #benefits .tit_type_c {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #environment #benefits .tit_type_c {
    font-size: 1.8rem;
  }
}
#environment #benefits .benefits-ic h4 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  #environment #benefits .benefits-ic h4 {
    font-size: 1.8rem;
  }
}
#environment #benefits .txt-blck {
  display: block;
  margin-top: 1em;
}
#environment #benefits .txt-indent {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  #environment #benefits .txt-indent {
    font-size: 1.5rem;
  }
}
#environment #benefits .cts_type_d_ttl h4 {
  color: #4A795C;
  font-size: 1.5rem !important;
}
@media (min-width: 768px) {
  #environment #benefits .cts_type_d_ttl h4 {
    font-size: 1.6rem !important;
  }
}
#environment #benefits .mps {
  display: flex;
}
#environment #benefits .mps dt, #environment #benefits .mps dd {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  #environment #benefits .mps dt, #environment #benefits .mps dd {
    font-size: 1.7rem;
  }
}
#environment #benefits .mps dt {
  color: #fff;
  padding: 10px 4px;
  min-width: 20%;
}
@media (min-width: 768px) {
  #environment #benefits .mps dt {
    padding: 12px 8px;
    min-width: 110px;
  }
}
#environment #benefits .mps dt.c_01 {
  background: #df6c6c;
  border: 3px solid #df6c6c;
}
#environment #benefits .mps dt.c_02 {
  background: #68a93e;
  border: 3px solid #68a93e;
}
#environment #benefits .mps dt.c_03 {
  background: #369acb;
  border: 3px solid #369acb;
}
#environment #benefits .mps dd {
  padding: 10px 4px;
  margin-bottom: 0;
  min-width: 80%;
}
@media (min-width: 768px) {
  #environment #benefits .mps dd {
    padding: 12px 8px;
    min-width: 340px;
  }
}
#environment #benefits .mps dd.c_01 {
  border: 3px solid #df6c6c;
}
#environment #benefits .mps dd.c_02 {
  border: 3px solid #68a93e;
}
#environment #benefits .mps dd.c_03 {
  border: 3px solid #369acb;
}
#environment #benefits .sq-list {
  padding: 1rem 0;
}
#environment #benefits .sq-list li {
  position: relative;
  padding-left: 25px;
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  #environment #benefits .sq-list li {
    font-size: 1.7rem;
  }
}
#environment #benefits .sq-list li::after {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #4A795C;
}
#environment #shift .img01 {
  aspect-ratio: 69/106;
}
@media (min-width: 768px) {
  #environment #shift .img01 {
    aspect-ratio: 535/258;
  }
}
#environment #shift .txt-indent {
  padding-left: 1em;
  text-indent: -1em;
}
#environment #movie {
  background: #FFFEE4;
}
@media (min-width: 768px) {
  #environment #movie .contents-inn {
    padding: 40px 15px;
  }
}

/* newgrads
------------------------------*/
#newgrads {
  /* パララックス
  --------------*/
}
#newgrads .parallax {
  padding: 0;
}
#newgrads .image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  #newgrads .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
#newgrads .image-box .image-box-area.n-01 {
  background-image: url(../img/newgrads/bg-parallax-001.jpg);
}
#newgrads #child {
  background: url(../img/common/bg-green-noise-sp.jpg) repeat-y center center/100% #CCE2A0;
}
@media (min-width: 768px) {
  #newgrads #child {
    background: url(../img/common/bg-green-noise-pc.jpg) repeat-y center center/100% #CCE2A0;
  }
}
@media (min-width: 768px) {
  #newgrads #child .contents-inn {
    padding: 40px 15px;
  }
}
#newgrads #child .flex-center02 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#newgrads #child .flex-center02 p {
  background: #fff;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 23px 16px;
}
@media (min-width: 768px) {
  #newgrads #child .flex-center02 p {
    font-size: 1.8rem;
    line-height: 2.222;
    padding: 24px;
  }
}
#newgrads #child .index-button a {
  margin-top: 16px;
}
@media (min-width: 768px) {
  #newgrads #child .index-button a {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  #newgrads #environment .img-w-environment {
    width: 70%;
  }
}
#newgrads #environment p a {
  text-decoration: underline;
}
#newgrads #schedule {
  background: #FFFEE4;
}
@media (min-width: 768px) {
  #newgrads #schedule .contents-inn {
    padding: 40px 15px;
  }
}
#newgrads #schedule .cts_type_g {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g {
    margin-bottom: 0;
  }
}
#newgrads #schedule .cts_type_g .left {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g .left {
    width: calc(100% - 220px);
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g .left {
    width: calc(100% - 400px);
  }
}
#newgrads #schedule .cts_type_g .right {
  margin: 0;
  width: 70%;
  max-width: 350px;
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g .right {
    width: 190px;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g .right {
    width: 351px;
  }
}
#newgrads #schedule .cts_type_g .box-line {
  height: 3000px;
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g .box-line {
    height: 1890px;
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g .box-line {
    height: 2335px;
    margin-top: 85px;
  }
}
@media (min-width: 1200px) {
  #newgrads #schedule .cts_type_g .box-line {
    height: 2155px;
  }
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dt {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g dl dt {
    margin-top: 9rem;
  }
}
#newgrads #schedule .cts_type_g dl dt::before {
  background: #4A795C;
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dt.dt-01 {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g dl dt.dt-01 {
    margin-top: 9rem;
  }
}
@media (min-width: 1200px) {
  #newgrads #schedule .cts_type_g dl dt.dt-01 {
    margin-top: 10rem;
  }
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dt.dt-02 {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g dl dt.dt-02 {
    margin-top: 9rem;
  }
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dt.dt-03 {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  #newgrads #schedule .cts_type_g dl dt.dt-03 {
    margin-top: 6.8rem;
  }
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dt .workstyle-time::after {
    border-top: 2px dashed #4A795C;
  }
}
@media (min-width: 768px) {
  #newgrads #schedule .cts_type_g dl dd {
    align-items: center;
  }
}
#newgrads #schedule .cts_type_g dl dd p {
  letter-spacing: 0.2em;
  line-height: 1.422;
}
#newgrads #schedule .tit-half-bgcolor {
  font-size: 1.6rem;
  margin-bottom: 0.4em;
}
@media (min-width: 768px) {
  #newgrads #schedule .tit-half-bgcolor {
    font-size: 1.8rem;
  }
}
#newgrads #schedule .tit-half-bgcolor span {
  background: linear-gradient(#FFFEE4 70%, #A4BA9F 30%);
}
#newgrads #intern .index-button a {
  margin-top: 16px;
}
@media (min-width: 768px) {
  #newgrads #intern .index-button a {
    margin-top: 30px;
  }
}
#newgrads #intern .img01 {
  aspect-ratio: 107/40;
}
#newgrads #intern .tit_type_h4 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  #newgrads #intern .tit_type_h4 {
    font-size: 2rem;
    margin: 0 0 8px;
  }
}
#newgrads #flow {
  background: #FFFEE4;
}
@media (min-width: 768px) {
  #newgrads #flow .contents-inn {
    padding: 40px 15px;
  }
}
#newgrads #flow .dl_flow01 .col_type_b_item .col_type_b_item_inner, #newgrads #flow .dl_flow02 .col_type_b_item .col_type_b_item_inner {
  background: none;
}
#newgrads #flow .dl_flow01 dt, #newgrads #flow .dl_flow02 dt {
  border-radius: 40px 40px 0 0;
  color: #4E3F2D;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #newgrads #flow .dl_flow01 dt, #newgrads #flow .dl_flow02 dt {
    border-radius: 40px 0 0 40px;
    font-size: 2rem;
    line-height: 1.75;
  }
}
@media (max-width: 767px) {
  #newgrads #flow .dl_flow01 dt, #newgrads #flow .dl_flow02 dt {
    padding: 1.05em 1em !important;
  }
}
#newgrads #flow .dl_flow01 dd, #newgrads #flow .dl_flow02 dd {
  background: #fff;
  border-radius: 0 0 40px 40px;
  margin-bottom: 0;
  padding: 16px 20px 24px;
}
@media (min-width: 768px) {
  #newgrads #flow .dl_flow01 dd, #newgrads #flow .dl_flow02 dd {
    border-radius: 0 40px 40px 0;
    padding: 24px 16px;
  }
}
#newgrads #flow .dl_flow01 dd .txt-blck, #newgrads #flow .dl_flow02 dd .txt-blck {
  display: block;
  margin-top: 1em;
}
#newgrads #flow .dl_flow01 dd .txt-indent, #newgrads #flow .dl_flow02 dd .txt-indent {
  padding-left: 1em;
  text-indent: -1em;
}
#newgrads #flow .dl_flow01 dt {
  background: #FFB2B2;
}
#newgrads #flow .dl_flow01 .col_type_b_item:not(:last-child)::after {
  border-color: #FFB2B2 transparent transparent transparent;
}
#newgrads #flow .dl_flow02 dt {
  background: #ADDCF3;
}
#newgrads #flow .dl_flow02 .col_type_b_item:not(:last-child)::after {
  border-color: #ADDCF3 transparent transparent transparent;
}
#newgrads #flow .p_flow {
  background: #fff;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 24px 20px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  #newgrads #flow .p_flow {
    font-size: 1.8rem;
    padding: 48px 20px;
    width: min(80%, 720px);
  }
}
#newgrads h3, #newgrads h4 {
  font-weight: bold;
}
#newgrads .tit_type_ng {
  position: relative;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 0 36px;
  padding: 40px 0;
  z-index: 1;
}
@media (min-width: 768px) {
  #newgrads .tit_type_ng {
    font-size: 3rem;
    line-height: 1.75;
    margin: 0 0 45px;
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  #newgrads .tit_type_ng {
    font-size: 4rem;
    margin: 0 0 40px;
  }
}
#newgrads .tit_type_ng::before {
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../img/newgrads/ttl-deco.png) no-repeat center center/160px 160px;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 768px) {
  #newgrads .tit_type_ng::before {
    background: url(../img/newgrads/ttl-deco.png) no-repeat center center/180px 180px;
    width: 180px;
    height: 180px;
    top: 50%;
  }
}
@media (min-width: 768px) {
  #newgrads .tit_type_ng.g1 {
    padding: 52px 0;
  }
}
@media (max-width: 767px) {
  #newgrads .tit_type_ng.g2 {
    padding: 20px 0;
  }
}
@media (max-width: 390px) {
  #newgrads .tit_type_ng.g2 {
    padding: 20px 0 0;
  }
}
#newgrads .tit_type_h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  #newgrads .tit_type_h3 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin: 0 0 36px;
  }
}
@media (min-width: 992px) {
  #newgrads .tit_type_h3 {
    font-size: 2.8rem;
    margin: 0 0 48px;
  }
}
#newgrads .tit_type_h3-2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: left;
}
@media (min-width: 768px) {
  #newgrads .tit_type_h3-2 {
    line-height: 1.75;
    margin: 0 0 28px;
  }
}
@media (min-width: 992px) {
  #newgrads .tit_type_h3-2 {
    margin: 0 0 36px;
  }
}
#newgrads .tit_type_h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: left;
}
@media (min-width: 768px) {
  #newgrads .tit_type_h4 {
    line-height: 1.75;
    margin: 0 0 20px;
  }
}
@media (min-width: 992px) {
  #newgrads .tit_type_h4 {
    margin: 0 0 23px;
  }
}
@media (min-width: 768px) {
  #newgrads .index-button.btn-thr a:link, #newgrads .index-button.btn-thr a:visited {
    font-size: 1.7rem;
    padding: 10px 0;
    line-height: 1.333;
  }
}
@media (min-width: 992px) {
  #newgrads .index-button.btn-thr a:link, #newgrads .index-button.btn-thr a:visited {
    font-size: 1.8rem;
    padding: 20px 0;
    line-height: 1.75;
  }
}
@media (max-width: 767px) {
  #newgrads .index-button.btn-thr a:link, #newgrads .index-button.btn-thr a:visited {
    font-size: 1.5rem;
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  #newgrads .index-button a:link, #newgrads .index-button a:visited {
    width: 345px;
  }
}
@media (min-width: 992px) {
  #newgrads .index-button a:link, #newgrads .index-button a:visited {
    width: 460px;
  }
}
#newgrads .flex-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#newgrads .flex-center p {
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
#newgrads .p_txt {
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
#newgrads .p_txt a {
  text-decoration: underline;
}
#newgrads .p_txt a:hover {
  text-decoration: none !important;
}
#newgrads .img_kdmr {
  border-radius: 40px;
}/*# sourceMappingURL=style.css.map */