@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ以外専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
/******************************************************************
  ■common-base
*****************************************************************/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: "ヒラギノ角ゴシック 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: #333;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: #333;
  text-decoration: none;
}
a:link.inline, a:visited.inline, a:active.inline, a:hover:hover.inline {
  display: inline;
  text-decoration: underline;
}
a.hov_scale:hover > img {
  transform: scale(1.05);
}
a > img {
  width: 100%;
  transition: transform 0.7s ease-out;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* パンくずリスト
------------------------------*/
@media (max-width: 767px) {
  #breadcrumbs {
    background: #eee;
    margin: 0 calc(50% - 50vw);
    padding: 0 20px;
  }
}
#breadcrumbs ol {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #breadcrumbs ol {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    white-space: nowrap;
  }
  #breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  #breadcrumbs ol {
    padding: 7px 0;
  }
}
#breadcrumbs ol li {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0;
}
@media (min-width: 768px) {
  #breadcrumbs ol li {
    height: auto;
  }
}
#breadcrumbs ol li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin-left: 5px;
}
@media (max-width: 767px) {
  #breadcrumbs ol li:not(:last-child)::after {
    padding: 10px 0;
  }
}
#breadcrumbs ol li a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #888888;
  overflow: visible;
}
@media (max-width: 767px) {
  #breadcrumbs ol li a {
    border-bottom: none;
  }
}

/* ネガティブマージン
------------------------------*/
.full-width {
  margin: 0 calc(50% - 50vw);
}
.full-width .contents-inn {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .full-width .contents-inn {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .full-sp-width {
    margin: 0 calc(50% - 50vw);
  }
}
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* SVG
------------------------------*/
svg.svg-icon {
  margin: 2px 5px 0 0;
  height: 20px;
  width: 20px;
  fill: #555;
}
@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: #333;
  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: #B50081;
}
.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: #333;
  padding: 15px 20px;
}
.submitBtn li.oubo.map a span::after {
  background: url("../img/common/icon-link-map.png") center/contain no-repeat;
  top: -4px;
  width: 25px;
  height: 25px;
}
@media (min-width: 768px) {
  .submitBtn li.oubo.map a span::after {
    top: -2px;
  }
}
@media (min-width: 768px) {
  .submitBtn li {
    padding: 0 10px !important;
  }
}
@media (min-width: 768px) {
  .submitBtn {
    font-size: 2.4rem;
    padding: 0 30px 30px 30px;
    letter-spacing: 2px;
  }
}
.submitBtn.button {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .submitBtn.button {
    padding: 40px 0;
  }
}
.submitBtn.map-link {
  padding: 0;
}
.submitBtn .blank {
  position: relative;
}
.submitBtn .blank::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(0deg);
  border: none;
  background: url(../img/common/icon-blank-w_pc.png) center/10px no-repeat;
}

.contents {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .contents-sp-15 {
    padding: 15px 0;
  }
}
.contents-inn {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents-inn {
    padding: 60px 0;
  }
}

/******************************************************************
  ■ タイトルタイプ
*****************************************************************/
/* タイトル2段
------------------------------*/
.tit_type_2nd {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
  font-weight: normal;
}
.tit_type_2nd .ttl-en {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #424656;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-en {
    font-size: 1.4rem;
  }
}
.tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-jp {
    font-size: 2.6rem;
  }
}

/* タイトル横並び
------------------------------*/
.tit_type_side {
  line-height: 1.2;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .tit_type_side {
    flex-wrap: wrap;
  }
}
.tit_type_side .ttl-en {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #424656;
  margin-right: 10px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tit_type_side .ttl-en {
    width: 100%;
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) {
  .tit_type_side .ttl-en {
    font-size: 1.6rem;
  }
}
.tit_type_side .ttl-jp {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_side .ttl-jp {
    font-size: 3.6rem;
  }
}

/* タイトル(タイプA)
------------------------------*/
.tit_type_a {
  position: relative;
  text-align: center;
  margin-bottom: 43px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_a {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}
.tit_type_a::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  transform: translate3d(-50%, 0, 0);
  background: #555;
}
@media (min-width: 768px) {
  .tit_type_a::before {
    width: 50px;
    height: 4px;
  }
}

/* タイトル(タイプB)
------------------------------*/
.tit_type_b {
  position: relative;
  font-size: 1.6rem;
  padding: 0 10px 0.5em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .tit_type_b {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
.tit_type_b::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  content: "";
  width: 30%;
  height: 1px;
  background-color: #424656;
}

/* タイトル(タイプC)
------------------------------*/
.tit_type_c {
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .tit_type_c {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .tit_type_c {
    background: none;
  }
}
.tit_type_c::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: #424656;
}
@media (min-width: 768px) {
  .tit_type_c::before {
    width: 6px;
  }
}
@media (min-width: 768px) {
  .tit_type_c .tit_type_c_txt {
    padding: 5px 10px;
    position: relative;
  }
  .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(85, 85, 85, 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: #424656;
}
@media (min-width: 768px) {
  .tit_type_e {
    font-size: 1.6rem;
  }
}

/* タイトル(タイプF)
------------------------------*/
.tit_type_f {
  position: relative;
  margin-bottom: 10px;
  padding-left: 13px;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .tit_type_f {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.tit_type_f::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  border-radius: 3px;
  content: "";
  background-color: #555;
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: #555;
  border-bottom: 1px solid #555;
  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: #555;
  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 #555;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block {
    border: 2px solid #555;
  }
}

.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: #555;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .cts-copy {
    font-size: 20px;
  }
}

.ic {
  font-size: 0;
  display: inline-block;
}
@media (min-width: 768px) {
  .ic {
    margin-bottom: 9px;
  }
}
.ic li {
  display: inline-block;
  color: #333;
  line-height: 1;
  font-size: 11px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  white-space: nowrap;
  background: #ccc;
}
.ic li.ic-arbeit {
  background: #A12626;
  color: #fff;
}
.ic li.ic-parttimer {
  background: #773E7E;
  color: #fff;
}
.ic li.ic-career {
  background: #2D557B;
  color: #fff;
}
.ic li.ic-contract {
  background: #4c8341;
  color: #fff;
}
.ic li.ic-scd {
  background: #fff;
  border: 1px solid #555;
  color: #555;
}
.ic li.ic-style {
  background: #fff;
  border: 1px solid #888;
  color: #333;
}
@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 #555;
  border-bottom: none;
  margin-top: 15px;
  background: #fff;
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: #555;
}
@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 #555;
}
@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 #555;
  }
}
@media (max-width: 767px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #555;
  }
  .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 #555;
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .guide-link-type-a {
    border: 2px solid #555;
    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 #555 transparent;
    z-index: 99;
  }
  .flex-link-type_b .flex-center-img::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 8px;
    right: 10px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    z-index: 700;
  }
}
.flex-link-type_b .flex-center-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.flex-link-type_b .flex-link-type_b-txt {
  padding: 20px 0;
  white-space: normal;
}
@media (max-width: 767px) {
  .flex-link-type_b .flex-link-type_b-txt {
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px 10px;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-size: 1.5rem;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
    font-size: 1.8rem;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-job {
  color: #333;
}

@media (min-width: 768px) {
  .float-md-right {
    margin: 0 0 20px 30px;
    max-width: 50%;
  }
  .float-md-left {
    margin: 0 30px 20px 0;
    max-width: 50%;
  }
  .pcHdn {
    display: none !important;
  }
  .flex-2-item li {
    width: calc(50% - 10px);
  }
  .flex-2-item li:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .flex-2-item li:last-child {
    margin-right: 0;
  }
  .flex-3-item li {
    width: calc(33.3% - 14px);
  }
  .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .flex-3-item li:last-child {
    margin-right: 0;
  }
  .flex-4-item li {
    width: calc(25% - 16px);
  }
  .flex-4-item li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
  .flex-4-item li:last-child {
    margin-right: 0;
  }
  .flex-5-item li {
    width: calc(20% - 16px);
  }
  .flex-5-item li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
  .flex-5-item li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .spHdn {
    display: none !important;
  }
  .float-sp-left {
    float: left;
  }
  .overflow-x-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .overflow-x-scroll li {
    width: 250px;
    margin-right: 20px;
  }
  .flex-2-sp-item li {
    width: calc(50% - 8px);
  }
  .flex-2-sp-item li:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .flex-2-sp-item li:last-child {
    margin-right: 0;
  }
}
/******************************************************************
  ■ 背景色を変更
*****************************************************************/
/* トップページ交互に背景色を変更
------------------------------*/
/* #index {
    .container>.contents {
        background: $bgColor;
        &:nth-child(even) {
            background: #E9F1F3;
        }
    }
} */
/*#index .container>.contents:nth-child(odd) {
    background: #E9F1F3;
}*/
/* トップページSEOリンク
------------------------------*/
.index-seolink {
  padding: 40px 0 50px;
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/* 共通フッターコンテンツ背景色
------------------------------*/
.html-bottom {
  background: #ccc;
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: #555;
  color: #fff;
  padding: 15px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .list-block-ttl, .detail-block-ttl {
    font-size: 24px;
    padding: 20px;
  }
}
.list-block-ttl .new, .detail-block-ttl .new {
  background: #efe24e;
  padding: 0 10px;
  color: #333;
  margin-right: 10px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .list-block-ttl .new, .detail-block-ttl .new {
    position: relative;
    top: -3px;
    padding: 2px 20px;
  }
}

.list-block-txt {
  overflow: hidden;
}
@media (max-width: 767px) {
  .list-block-txt {
    width: 100%;
  }
}
.list-block-txt .list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .list-block-txt .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.list-block-cts {
  position: relative;
  padding: 10px 10px 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .list-block-cts {
    padding: 30px;
  }
  .list-block-cts .list-block-ic {
    padding-left: 190px;
  }
  .list-block-cts .list-block-txt {
    padding-left: 190px;
  }
}

.list-block-img {
  min-width: 120px;
  max-width: 160px;
  width: 33%;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .list-block-img {
    min-width: 180px;
    max-width: 180px;
    width: 180px;
  }
  .list-block-img.float-left {
    float: none !important;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .list-block-img figure {
    margin-bottom: 0;
  }
}

.list-block-ic {
  overflow: auto;
}

.index-list .block {
  border: 1px solid #424656;
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: #424656;
}
@media (min-width: 768px) {
  .index-list .index-list-ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .index-list .note-block {
    flex-wrap: wrap;
  }
  .index-list .note-block .note-block-l, .index-list .note-block .note-block-r {
    width: 100%;
    padding-left: 0;
  }
  .index-list .note-block .note-block-r {
    padding-top: 5px;
  }
}
@media (min-width: 768px) {
  .index-list .list-block-cts {
    padding: 20px;
  }
  .index-list .float-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

/******************************************************************
  ■ 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);
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 576px) {
  .pageNavi .inner {
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  .pageNavi .inner {
    max-width: 100%;
  }
}
.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 #555;
  border-right: 1px solid #555;
}
.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 #555;
  border-right: 1px solid #555;
}
.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: #424656;
  border-color: #424656;
  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 #555;
  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 #555;
    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 #555;
  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 #555;
    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: #555 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: #555;
  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: #555;
}
.cts_type_e_item03::before {
  content: "E";
  background: #424656;
}

/* コンテンツ タイプ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: #555;
  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: #555;
  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: #555;
}
.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 #555;
  }
}
@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: #555;
  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 #555;
}
@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 #555 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: #555;
  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 #424656;
}
.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 #424656;
  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 #555;
  border-bottom: 1px solid #555;
  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: #333;
  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: #333;
  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: #555;
  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: #555;
}
.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 #555;
  }
}
@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: #555;
  }
  .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: #555;
    opacity: 0.8;
    background: #a1d7ff;
    border-right: 1px solid #fff;
    height: 50px;
    width: 50px;
    color: #555;
    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: #555;
    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: #424656;
  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: #333;
  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: #555;
  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;
  }
}

.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: #555;
    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: #424656;
  }
}
.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;
    border-bottom: 1px solid #555;
  }
  .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 #555;
  }
  .select-area-tab li {
    letter-spacing: 1px;
    border: 1px solid;
    border-left: 0;
    border-color: #555;
    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: #555;
    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 #555;
    border-right: 1px solid #555;
  }
}

/* 都道府県名スタイル */
.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: #333;
  box-shadow: 0 1px 0 1px #ccc;
}
.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); /*横方向　下方向　ぼかし　広がり　色 */
  position: fixed;
}
@media (min-width: 768px) {
  header {
    height: 88px;
  }
}

.header {
  display: flex;
  padding-left: 5px;
  max-width: none;
}
@media (min-width: 768px) {
  .header {
    justify-content: space-between;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .header {
    padding-left: 32px;
  }
}

.header-logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 0;
}
@media (min-width: 768px) {
  .header-logo {
    height: 88px;
  }
}
.header-logo .logo {
  width: 180px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .header-logo .logo {
    width: 300px;
  }
}
.header-logo .logo-text {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.2;
}
.header-logo .logo-text img {
  width: 120px;
}
@media (min-width: 768px) {
  .header-logo .logo-text {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .header-logo .logo-text img {
    width: 157px;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo-text {
    margin-top: 0;
    margin-left: 24px;
    font-size: 1.6rem;
    align-self: center;
  }
}
.header-logo .d-flex {
  flex-direction: column;
}
@media (min-width: 1200px) {
  .header-logo .d-flex {
    flex-direction: row;
  }
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 768px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    height: 60px;
  }
  .main-menu-wrap .main-menu-cts {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 20px;
  }
}
@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: 150px;
    padding: 10px 0;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    display: grid;
    place-items: center;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    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.2rem;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.4rem;
  }
}
@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: #555;
  }
  .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: #183E6D;
}
@media (min-width: 768px) {
  .menu-btn {
    width: 88px;
    height: 88px;
  }
  .menu-btn .menu-txt {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .menu-btn .menu-txt::before {
    position: absolute;
    display: block;
    content: "MENU";
    top: 14px;
    left: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
.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;
}
@media (min-width: 768px) {
  .menu-btn span {
    right: 24px;
    width: 40px;
  }
  .menu-btn span:nth-of-type(1) {
    top: 43px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 57px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 71px;
    bottom: -15px;
  }
}
.menu-btn:focus {
  outline: none;
}

.open .menu-btn, .open-tab-a .menu-btn, .open-tab-b .menu-btn {
  background: #555;
}
@media (min-width: 768px) {
  .open .menu-btn .menu-txt::before, .open-tab-a .menu-btn .menu-txt::before, .open-tab-b .menu-btn .menu-txt::before {
    content: "CLOSE";
  }
}
.open .menu-btn span, .open-tab-a .menu-btn span, .open-tab-b .menu-btn span {
  background-color: #fff;
  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);
}
@media (min-width: 768px) {
  .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: 38px;
    transform: translateY(20px) 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: -15px;
    transform: translateY(-12px) rotate(45deg);
  }
}
.open .menu-btn:focus, .open-tab-a .menu-btn:focus, .open-tab-b .menu-btn:focus {
  outline: none;
}
.open header, .open-tab-a header, .open-tab-b header {
  position: fixed;
}

.menu-box {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  top: 50px;
  right: 0;
  visibility: hidden;
  transition: all 1s;
  opacity: 0;
  transform: translateX(100%);
  z-index: 999;
}
@media (min-width: 768px) {
  .menu-box {
    top: 88px;
  }
  .menu-box a:hover {
    opacity: 0.6;
  }
}
.menu-box .menu-link li {
  margin: 10px 0;
}
.menu-box .menu-link li a {
  line-height: 1;
  padding: 15px;
  display: block;
  letter-spacing: 0.016em;
  position: relative;
}
.menu-box .menu-link li a::after {
  position: absolute;
  top: 0;
  right: 10px;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  transition: all 0.3s ease-out 0s;
  transform: rotate(-45deg);
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
}
.menu-box .menu-link.entry li {
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .menu-box .menu-link.entry li {
    margin: 0 0 18px;
  }
}
.menu-box .menu-link.entry li a {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 30px 0;
  background: linear-gradient(90deg, #31288c, #477ac6);
}
@media (min-width: 768px) {
  .menu-box .menu-link.entry li a {
    font-size: 1.8rem;
    padding: 24px 0;
  }
}
.menu-box .menu-link.entry li a span {
  position: relative;
  z-index: 1;
}
.menu-box .menu-link.entry li a::before {
  background: linear-gradient(90deg, #477ac6, #31288c);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.menu-box .menu-link.entry li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-other-w.png) center/contain no-repeat;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border: none;
}
@media (min-width: 768px) {
  .menu-box .menu-link.entry li a::after {
    right: 24px;
    width: 14px;
    height: 14px;
  }
}
.menu-box .menu-link.entry li a:hover {
  opacity: 1;
}
.menu-box .menu-link.entry li a:hover::before {
  opacity: 0;
}
.menu-box .menu-link.entry li:first-child {
  aspect-ratio: 8/3;
  margin: 0 0 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-box .menu-link.entry li:first-child {
    margin: 0 0 32px;
  }
}
.menu-box .menu-link.entry li:first-child a {
  font-size: 2rem;
  height: 100%;
}
.menu-box .menu-link.entry li:first-child a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.menu-box .menu-link.entry li:first-child a:before {
  background: url(../img/common/menu-ph-001.jpg) center/cover no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: initial;
  transition: all 0.3s ease;
}
.menu-box .menu-link.entry li:first-child a::after {
  right: 24px;
  background: url(../img/common/ic-arrow-w-002.png) center/contain no-repeat;
  width: 10px;
  height: 19px;
}
@media (min-width: 768px) {
  .menu-box .menu-link.entry li:first-child a::after {
    width: 14px;
    height: 26px;
  }
}
.menu-box .menu-link.entry li:first-child a:hover {
  opacity: 1;
}
.menu-box .menu-link.entry li:first-child a:hover::before {
  opacity: 1;
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .menu-box .menu-link.entry {
    padding: 0 0 60px;
  }
}
.menu-box .menu-link .menu-link-ttl {
  padding: 0;
  border-bottom: solid 2px #888;
  margin: 0 0 20px;
}
.menu-box .menu-link .menu-link-ttl a {
  position: relative;
  display: block;
  color: #183E6D;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 6px 0;
}
.menu-box .menu-link .menu-link-ttl a::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-b-002.png) center/contain no-repeat;
  width: 10px;
  height: 18px;
  transform: translateY(-50%);
  border: none;
}
@media (max-width: 991px) {
  .menu-box .menu-link .menu-link-ttl.tgl a::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .menu-box .menu-link .menu-link-ttl {
    position: relative;
  }
  .menu-box .menu-link .menu-link-ttl .trigger {
    position: absolute;
    top: 40%;
    right: 16px;
    cursor: pointer;
  }
  .menu-box .menu-link .menu-link-ttl .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/common/ic-arrow-b-002.png) center/contain no-repeat;
    width: 11px;
    height: 20px;
    top: 50%;
    right: 0;
    transform: translateY(-60%) rotate(90deg);
    transition: all 0.4s;
  }
  .menu-box .menu-link .menu-link-ttl .trigger.op::after {
    transform: translateY(-50%) rotate(270deg);
    transform-origin: center;
  }
}
.menu-box .menu-link .menu-link-box li {
  margin: 4px 0;
}
.menu-box .menu-link .menu-link-box li:last-child {
  margin: 4px 0 0;
}
.menu-box .menu-link .menu-link-box li a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 7px 50px 7px 0;
}
.menu-box .menu-link .menu-link-box li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-b-001.png) center/contain no-repeat;
  width: 16px;
  height: 13px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  border: none;
}
.menu-box .menu-link .menu-link-box li a.blank::after {
  background: url(../img/common/ic-other.png) center/contain no-repeat;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .menu-box .menu-link .menu-link-box li a.blank::after {
    width: 14px;
    height: 14px;
  }
}
.menu-box .menu-link .menu-link-box li a.blank:hover::after {
  right: 10px;
}
.menu-box .menu-link .menu-link-box li a:hover::after {
  right: 0;
}
.menu-box .menu-link dl {
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .menu-box .menu-link dl {
    margin: 0 0 32px;
  }
}
@media (min-width: 1200px) {
  .menu-box .menu-link dl:last-child {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .menu-box .menu-link dl dd .menu-link-box {
    display: none;
  }
}
.menu-box .menu-ttl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.016em;
  padding: 6px 0;
  margin: 0 0 8px;
}
.menu-box .menu-ttl-2 {
  background: #555;
  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;
}
.menu-box .d-flex {
  gap: 4vw;
  padding: 3vw 8vw;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .menu-box .d-flex {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .menu-box .d-flex {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1200px) {
  .menu-box .d-flex {
    flex-direction: row-reverse;
    padding: 3vw 12vw;
  }
}
.menu-box .menu-inner-box {
  flex-grow: 1;
}
@media (min-width: 992px) {
  .menu-box .menu-inner-box:first-child {
    flex-grow: 2;
  }
}
@media (min-width: 992px) {
  .menu-box .menu-inner-box:first-child .menu-link {
    flex-grow: 1;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .menu-box .menu-inner-box:last-child {
    width: 33.3333333333%;
  }
}
.menu-box .menu-inner-box .d-flex {
  gap: 0;
  padding: 0;
  flex-direction: column;
  overflow-y: unset;
}
@media (max-width: 767px) {
  .menu-box .menu-inner-box .d-flex {
    padding: 0 0 24px;
  }
}
@media (min-width: 992px) {
  .menu-box .menu-inner-box .d-flex {
    gap: 4vw;
    flex-direction: row;
  }
}

.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;
  transform: translateX(0%);
}
@media (min-width: 768px) {
  .open .menu-box::-webkit-scrollbar {
    display: none;
  }
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/* --------------------------------------------
エントリーボタンのスタイル ( 2025.7 add )
-------------------------------------------- */
.entry-btn {
  position: fixed;
  top: 0;
  right: 88px;
  background: linear-gradient(90deg, #31288c, #477ac6);
  z-index: 1010;
  transition: translate 0.3s;
}
@media (max-width: 767px) {
  .entry-btn {
    right: 50px;
  }
}

.menu-parent {
  width: 230px;
  height: 88px;
  position: relative;
}
@media (max-width: 767px) {
  .menu-parent {
    width: 77px;
    height: 50px;
  }
}
.menu-parent button {
  position: relative;
  color: #fff;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.024em;
  transition: all 0.5s ease;
}
.menu-parent button:link, .menu-parent button:visited, .menu-parent button:active, .menu-parent button:hover:hover {
  color: #fff;
}
.menu-parent button:focus {
  outline: none;
}
.menu-parent button::after {
  position: absolute;
  top: 38%;
  right: 20px;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg);
}
.menu-parent button:before {
  background: linear-gradient(90deg, #477ac6, #31288c);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 1s ease-out;
}
.menu-parent button:hover::before {
  opacity: 0;
}
@media (max-width: 767px) {
  .menu-parent button {
    font-size: 1.2rem;
    letter-spacing: 0.018em;
  }
  .menu-parent button::after {
    top: 41%;
    right: 4px;
    width: 6px;
    height: 6px;
  }
}

.menu-parent:last-child {
  border-right: 0;
}

.menu-parent_a {
  display: block;
  padding: 10px;
  text-align: center;
}

.menu-parent_a.blrn {
  border-left: none;
  border-right: none;
}

.menu-child {
  display: none;
  position: absolute;
  right: -50px;
  width: 80vw;
}
@media (min-width: 768px) {
  .menu-child {
    right: -88px;
    width: 400px;
  }
}

.menu-child_li {
  padding: 0;
  font-size: 1.6rem;
  background: #fff;
  border-bottom: solid 1px #D0D0D0;
}
.menu-child_li a {
  position: relative;
  padding: 18px 12px;
}
.menu-child_li a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-b-001.png) center/contain no-repeat;
  width: 16px;
  height: 14px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .menu-child_li a::after {
    width: 24px;
    height: 20px;
  }
}
.menu-child_li a.blank::after {
  background: url(../img/common/ic-other.png) center/contain no-repeat;
  width: 16px;
  height: 12px;
}
@media (min-width: 768px) {
  .menu-child_li a.blank::after {
    width: 24px;
    height: 16px;
  }
}
.menu-child_li a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .menu-child_li {
    padding: 12px;
    font-size: 2rem;
  }
}
.menu-child_li:last-child {
  border-bottom: none;
  background: transparent;
}
.menu-child_li:last-child a {
  overflow: unset;
  pointer-events: none;
}
.menu-child_li:last-child a::after {
  display: none;
}

.fixed.open .entry-btn {
  translate: 0 -100%;
}

/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  background: #fff;
  text-align: center;
}
#page_top a {
  font-style: italic;
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: #555;
  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 #555;
  border-right: 2px solid #555;
  display: block;
}

/* footer
------------------------------*/
footer {
  background: #183E6D;
}
@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 !important;
}
@media (max-width: 767px) {
  footer .contents-inn {
    max-width: none;
  }
}
@media (min-width: 768px) {
  footer .contents-inn {
    gap: 18px;
  }
}
@media (min-width: 992px) {
  footer .contents-inn {
    gap: 38px;
  }
}
@media (min-width: 1200px) {
  footer .contents-inn {
    gap: 42px;
  }
}
footer a {
  position: relative;
  display: block;
  padding: 10px;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@media (min-width: 768px) {
  footer a {
    padding-left: 20px;
    font-size: 1.5rem;
  }
}
footer a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (min-width: 768px) {
  footer a::before {
    width: 5px;
    height: 5px;
    left: 0;
  }
}
footer a:link, footer a:visited, footer a:active, footer a:hover:hover {
  color: #fff;
}
@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 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  footer .footer-contents:first-child {
    flex: 0 0 35%;
    max-width: 35%;
  }
  footer .footer-contents ul li.link-ttl a, footer .footer-contents ul li.link-ttl span {
    font-size: 1.6rem;
    font-weight: bold;
    padding-left: 10px;
  }
  footer .footer-contents ul li.link-ttl a::before, footer .footer-contents ul li.link-ttl span::before {
    display: none;
  }
  footer .footer-contents ul li.link-ttl a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    margin-top: -3px;
    transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  footer .footer-contents ul li a::before {
    left: 0;
    width: 0;
    height: 0;
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    margin-top: initial;
    transform: rotate(0deg) translateY(-50%);
  }
}
@media (min-width: 992px) {
  footer .footer-contents {
    flex: 0 0 21%;
    max-width: 21%;
  }
  footer .footer-contents:first-child {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
footer .footer-contents span {
  display: block;
  color: #fff;
  padding: 10px;
}
@media (max-width: 767px) {
  footer .footer-contents span {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@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/ic-other-w.png) center/contain 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/ic-other-w.png) center/contain no-repeat;
    width: 20px;
    height: 10px;
    transform: rotate(0);
    margin-left: 5px;
  }
}
footer .footer-inner {
  background: #183E6D;
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}
footer .footer-inner .ga-pdf {
  margin-top: 5px;
}
footer .footer-inner .ga-pdf a {
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}
@media (max-width: 767px) {
  footer .footer-inner {
    border-top: 1px solid #d2d2d2;
  }
}

/******************************************************************
  ■ 案件別専用スタイル
*****************************************************************/
@media (min-width: 768px) {
  body.fixed {
    overflow-y: hidden;
    position: unset;
  }
}
@media (max-width: 767px) {
  body.fixed {
    top: 0px !important;
  }
}

/* MV */
.index-hero {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .index-hero {
    padding-top: 88px;
  }
}
.index-hero .mainimg img {
  aspect-ratio: 75/98;
}
@media (min-width: 768px) {
  .index-hero .mainimg img {
    aspect-ratio: 32/13;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.index-hero-animation {
  animation: zoomUp 10s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s normal both;
}

.index-hero {
  position: relative;
  padding-bottom: 0;
}
.index-hero .heromes {
  position: absolute;
  z-index: 100;
  bottom: 4.5%;
  left: 7.5%;
}
@media (min-width: 768px) {
  .index-hero .heromes {
    top: 50%;
    left: 3.4%;
    bottom: initial;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) {
  .index-hero .heromes__001 {
    margin: auto;
  }
}
.index-hero .heromes__001 span {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}
.index-hero .heromes__001-01 {
  max-width: 85.3vw;
  margin-bottom: 3vw;
  animation: flow-anime 0.5s both ease-in;
  animation-delay: 0.5s;
}
@media (min-width: 768px) {
  .index-hero .heromes__001-01 {
    max-width: 33.8vw;
    margin-bottom: 1.4vw;
  }
}
.index-hero .heromes__001-02 {
  max-width: 75.6vw;
  margin-bottom: 3.5vw;
  animation: flow-anime 0.5s both ease-in;
  animation-delay: calc(0.5s + 0.5s);
}
@media (min-width: 768px) {
  .index-hero .heromes__001-02 {
    max-width: 29.3vw;
    margin-bottom: 1.8vw;
  }
}
.index-hero .heromes__002 span {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}
.index-hero .heromes__002-01 {
  max-width: 81.3vw;
  animation: flow-anime 0.5s both ease-in;
  animation-delay: calc(0.5s * 2 + 0.5s);
}
@media (min-width: 768px) {
  .index-hero .heromes__002-01 {
    max-width: 28.2vw;
  }
}
@media (min-width: 768px) {
  .index-hero .heromes__002-02 {
    display: inline-block;
    animation: flow-anime 0.5s both ease-in;
    animation-delay: calc(0.5s * 3 + 0.5s);
  }
}
@keyframes flow-anime {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}

/* スクロールして可視範囲に入るとアニメーション */
.fadein01 {
  opacity: 0;
  transition: all 1s 0.5s ease;
  transform: translate(0, 50px);
}
.fadein01.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 装飾のアニメーション */
@keyframes fadeIn_01 {
  from {
    transform: translate(-150px, 300px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeIn_02 {
  from {
    transform: translate(150px, 300px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* トップページ */
#index .contents {
  padding: 24px 0;
}
@media (min-width: 768px) {
  #index .contents {
    padding: 40px 0;
  }
}
#index .contents-inn {
  padding: 24px 15px;
}
@media (min-width: 768px) {
  #index .contents-inn {
    padding: 40px 0;
  }
}
#index .tit_type_2nd {
  margin: 0 0 48px;
}
@media (min-width: 768px) {
  #index .tit_type_2nd {
    margin: 0 0 64px;
  }
}
#index .tit_type_2nd .ttl-en {
  margin: 0 0 16px;
}
#index .tit_type_2nd .ttl-en figure {
  margin: 0;
}
#index .tit_type_2nd .ttl-en img {
  height: 52px;
  width: auto;
}
@media (min-width: 768px) {
  #index .tit_type_2nd .ttl-en img {
    height: 77px;
  }
}
#index .tit_type_2nd .ttl-jp {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding: 5px 0;
}
#index .tit-01 {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.016em;
  padding: 0 0 0 32px;
}
@media (min-width: 768px) {
  #index .tit-01 {
    font-size: 2.4rem;
    padding: 0 0 0 36px;
  }
}
#index .tit-01::before {
  position: absolute;
  content: "";
  display: inline-block;
  border-radius: 50vh;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  background: linear-gradient(90deg, #477ac6, #31288c);
  margin-right: 8px;
  transform: translateY(-50%);
}
#index .index-msg {
  background: url(../img/top/top-bg-003.png) bottom/100% repeat-y, url(../img/top/top-bg-001.jpg) bottom/cover no-repeat;
  background-blend-mode: color-burn;
}
#index .index-msg .txt-box {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  #index .index-msg .txt-box {
    margin-bottom: 64px;
  }
}
#index .index-msg .msg-ttl {
  font-size: 2.6rem;
  padding: 12px 0;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 768px) {
  #index .index-msg .msg-ttl {
    font-size: 4.8rem;
    padding: 18px 0;
  }
}
#index .index-msg .msg-ttl span {
  display: inline-block;
}
#index .index-msg .msg-ttl span::first-letter {
  color: #31288c;
  font-size: 4rem;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  #index .index-msg .msg-ttl span::first-letter {
    font-size: 6.4rem;
  }
}
#index .index-msg p {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2;
  font-weight: 600;
  padding: 7px 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #index .index-msg p {
    text-align: center;
    font-size: 2rem;
    line-height: 2;
    padding: 20px 0;
  }
}
#index .index-msg p span {
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  background: linear-gradient(90deg, #477ac6, #31288c);
  padding: 0 0.5em;
  margin: 0.5em 0.5em;
  line-height: 2;
}
@media (min-width: 768px) {
  #index .index-msg p span {
    font-size: 2.2rem;
  }
}
#index .index-wrap {
  background: url(../img/top/top-bg-003.png) top/contain repeat-y, url(../img/top/top-bg-002.jpg) top/contain repeat-y;
  background-blend-mode: color-burn;
}
#index .index-wrap .btn-vm li {
  display: inline-block;
}
#index .index-wrap .btn-vm a {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  padding-right: 88px;
  height: 72px;
}
@media (min-width: 768px) {
  #index .index-wrap .btn-vm a {
    padding-right: 104px;
    height: 88px;
  }
}
#index .index-wrap .btn-vm a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-w-001.png) center/contain no-repeat;
  width: 32px;
  height: 27px;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #index .index-wrap .btn-vm a::before {
    right: 28px;
  }
}
#index .index-wrap .btn-vm a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: inline-block;
  background: linear-gradient(90deg, #477ac6, #31288c);
  width: 72px;
  height: 72px;
  border-radius: 50vh;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #index .index-wrap .btn-vm a::after {
    width: 88px;
    height: 88px;
  }
}
@media (min-width: 768px) {
  #index .index-wrap .btn-vm a:hover::after {
    right: 4px;
    background: linear-gradient(90deg, #1E257D, #8A098B);
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 992px) {
  #index .index-about .contents-inn,
  #index .index-works .contents-inn,
  #index .index-benefit .contents-inn {
    width: 91.6%;
    max-width: none;
    margin: 0 0 0 auto;
  }
}
#index .index-about .d-flex,
#index .index-works .d-flex,
#index .index-benefit .d-flex {
  flex-direction: column;
}
@media (min-width: 768px) {
  #index .index-about .d-flex,
  #index .index-works .d-flex,
  #index .index-benefit .d-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  #index .index-about .d-flex,
  #index .index-works .d-flex,
  #index .index-benefit .d-flex {
    flex-direction: column;
    align-items: initial;
  }
}
@media (min-width: 1600px) {
  #index .index-about .d-flex,
  #index .index-works .d-flex,
  #index .index-benefit .d-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#index .index-about .tit_type_2nd,
#index .index-works .tit_type_2nd,
#index .index-benefit .tit_type_2nd {
  margin: 0;
}
#index .index-about .link-box,
#index .index-works .link-box,
#index .index-benefit .link-box {
  margin: 32px 0;
}
@media (min-width: 992px) {
  #index .index-about .link-box,
  #index .index-works .link-box,
  #index .index-benefit .link-box {
    width: 87.5%;
    margin: 64px 0 0;
  }
}
#index .index-about .link-box a,
#index .index-works .link-box a,
#index .index-benefit .link-box a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 22px 16px;
  border-bottom: solid 2px #333;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  #index .index-about .link-box a,
  #index .index-works .link-box a,
  #index .index-benefit .link-box a {
    font-size: 2rem;
    padding: 30px 32px;
  }
}
#index .index-about .link-box a::after,
#index .index-works .link-box a::after,
#index .index-benefit .link-box a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-b-001.png) center/contain no-repeat;
  width: 24px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #index .index-about .link-box a::after,
  #index .index-works .link-box a::after,
  #index .index-benefit .link-box a::after {
    right: 32px;
  }
}
#index .index-about .link-box a:hover,
#index .index-works .link-box a:hover,
#index .index-benefit .link-box a:hover {
  color: #B50081;
  background: rgba(255, 245, 252, 0.5);
  border-bottom: solid 2px #B50081;
}
#index .index-about .link-box a:hover::after,
#index .index-works .link-box a:hover::after,
#index .index-benefit .link-box a:hover::after {
  background: url(../img/common/ic-arrow-hover-001.png) center/contain no-repeat;
}
@media (min-width: 768px) {
  #index .index-about .link-box a:hover::after,
  #index .index-works .link-box a:hover::after,
  #index .index-benefit .link-box a:hover::after {
    right: 22px;
  }
}
#index .index-about .link-img a figure,
#index .index-works .link-img a figure,
#index .index-benefit .link-img a figure {
  margin: 0;
  overflow: hidden;
}
#index .index-about .link-img a figure img,
#index .index-works .link-img a figure img,
#index .index-benefit .link-img a figure img {
  aspect-ratio: 208/117;
  transition: all 0.3s ease-out;
  transform: scale(1);
}
#index .index-about .link-img a:hover,
#index .index-works .link-img a:hover,
#index .index-benefit .link-img a:hover {
  opacity: 1;
}
#index .index-about .link-img a:hover img,
#index .index-works .link-img a:hover img,
#index .index-benefit .link-img a:hover img {
  transform: scale(1.1);
}
#index .index-about .link-img::after {
  position: absolute;
  bottom: -68.6vw;
  right: 0;
  content: "";
  background: url(../img/top/deco-001.png) center/contain no-repeat;
  width: 53.3vw;
  aspect-ratio: 453/583;
}
@media (min-width: 576px) {
  #index .index-about .link-img::after {
    right: calc((50vw - 288px + 15px) * -1);
  }
}
@media (min-width: 768px) {
  #index .index-about .link-img::after {
    right: calc((50vw - 375px) * -1);
  }
}
@media (min-width: 992px) {
  #index .index-about .link-img::after {
    right: 0;
    bottom: -30.4vw;
    width: 23.6vw;
  }
}
@media (min-width: 768px) {
  #index .index-about .link-img.active::after {
    animation: fadeIn_02 2s forwards; /* フェードインアニメーションを適用 */
  }
}
@media (min-width: 992px) {
  #index .index-works .contents-inn {
    margin: 0 auto 0 0;
  }
}
#index .index-works .link-img::after {
  position: absolute;
  bottom: -72.4vw;
  left: 0;
  content: "";
  background: url(../img/top/deco-002.png) center/contain no-repeat;
  width: 53.3vw;
  aspect-ratio: 400/543;
}
@media (min-width: 576px) {
  #index .index-works .link-img::after {
    left: calc((50vw - 288px + 15px) * -1);
  }
}
@media (min-width: 768px) {
  #index .index-works .link-img::after {
    left: calc((50vw - 375px) * -1);
  }
}
@media (min-width: 992px) {
  #index .index-works .link-img::after {
    left: 0;
    bottom: -28.2vw;
    width: 20.8vw;
  }
}
@media (min-width: 768px) {
  #index .index-works .link-img.active::after {
    animation: fadeIn_01 2.5s forwards; /* フェードインアニメーションを適用 */
  }
}
@media (min-width: 768px) {
  #index .index-interview.contents {
    padding: 40px 0 0;
  }
}
#index .index-interview.interview-design-01 {
  /*カラム数を指定。変更する場合は数値も変更してください。*/
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-01 .contents-inn {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  #index .index-interview.interview-design-01 .d-md-flex {
    font-size: 0;
    margin: 0 calc((100% - 100vw) / 2);
  }
}
#index .index-interview.interview-design-01 .d-md-flex li {
  background: none;
  margin-right: 8px;
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-01 .d-md-flex li {
    width: calc((100% - 2px * (3 - 1)) / 3);
  }
}
@media (min-width: 768px) {
  #index .index-interview.interview-design-01 .d-md-flex li {
    margin-right: 20px;
  }
}
#index .index-interview.interview-design-01 .flex-link-type_b a {
  overflow: inherit;
}
#index .index-interview.interview-design-01 .flex-link-type_b a .flex-center-img {
  border: none;
  width: 100%;
  padding-top: 75%;
}
#index .index-interview.interview-design-01 .flex-link-type_b a .flex-center-img::before, #index .index-interview.interview-design-01 .flex-link-type_b a .flex-center-img::after {
  display: none;
}
#index .index-interview.interview-design-01 .flex-link-type_b a .flex-center-img img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transform: scale(1);
  -moz-transition: all 0.3s ease-out;
  -moz-transform: scale(1);
  -ms-transition: all 0.3s ease-out;
  -ms-transform: scale(1);
  transition: all 0.3s ease-out;
  transform: scale(1);
}
#index .index-interview.interview-design-01 .flex-link-type_b a .flex-link-type_b-txt {
  background: #FFFFFF;
  position: relative;
  margin: -6% 1em 0;
  padding: 1.5em;
  border: none;
}
#index .index-interview.interview-design-01 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-weight: bold;
}
#index .index-interview.interview-design-01 .flex-link-type_b a:hover {
  opacity: 1;
}
#index .index-interview.interview-design-01 .flex-link-type_b a:hover .flex-center-img img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  #index .index-interview .contents-inn {
    width: 91.6%;
    max-width: none;
    margin: 0 0 0 auto;
  }
}
#index .index-interview .overflow-x-scroll {
  margin-right: 0;
  display: block !important;
  overflow-x: scroll;
  overflow-y: clip;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
#index .index-interview .tit_type_2nd .ttl-jp {
  padding: 15px 0;
}
#index .index-interview .btn-vm {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #index .index-interview .btn-vm {
    margin-top: 48px;
    margin-right: 5.2vw;
  }
}
@media (min-width: 1700px) {
  #index .index-interview .btn-vm {
    margin-right: 8.3vw;
  }
}
@media (min-width: 768px) {
  #index .index-movie.contents {
    padding: 0 0 40px;
  }
}
@media (min-width: 1400px) {
  #index .index-movie .contents-inn {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  #index .index-movie .contents-inn {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  #index .index-movie .contents-inn {
    max-width: 1600px;
  }
}
#index .index-movie p {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 15px 0;
}
#index .index-recruit button {
  height: 60px;
}
#index .index-recruit button:focus {
  outline: none;
}
#index .index-recruit .tit_type_2nd {
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  #index .index-recruit .tit_type_2nd {
    margin: 0 0 48px;
  }
}
#index .index-recruit .tit_type_2nd .ttl-en {
  margin: 0 0 10px;
}
#index .index-recruit .tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
  padding: 0;
}
@media (min-width: 768px) {
  #index .index-recruit .tit_type_2nd .ttl-jp {
    font-size: 2.6rem;
  }
}
#index .index-questions.contents {
  padding: 16px 0 24px;
}
#index .index-questions .contents-inn {
  padding: 16px 15px 24px;
}
@media (min-width: 768px) {
  #index .index-questions .contents-inn {
    padding: 16px 0 24px;
  }
}
@media (min-width: 1400px) {
  #index .index-questions .contents-inn {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  #index .index-questions .contents-inn {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  #index .index-questions .contents-inn {
    max-width: 1600px;
  }
}
#index .index-questions .tit_type_2nd {
  margin: 0;
}
@media (max-width: 767px) {
  #index .index-questions .tit_type_2nd {
    margin-bottom: 24px;
  }
}
#index .index-questions .tit_type_2nd .ttl-en {
  margin: 0;
}
#index .index-questions .tit_type_2nd .ttl-en img {
  height: 38px;
  width: auto;
}
#index .index-questions .tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
  padding: 15px 0;
}
#index .index-questions .submitBtn {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.016em;
}
@media (min-width: 768px) {
  #index .index-questions .submitBtn {
    font-size: 2rem;
    padding: 0;
  }
}
#index .index-questions .submitBtn li a {
  background: #505D6D;
  border-radius: 0;
  outline: solid 4px #505D6D;
  padding: 24px 0;
}
@media (min-width: 768px) {
  #index .index-questions .submitBtn li a {
    padding: 34px 0;
  }
}
#index .index-questions .submitBtn li a::before {
  display: none;
}
#index .index-questions .submitBtn li a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-w-001.png) center/contain no-repeat;
  width: 24px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #index .index-questions .submitBtn li a::after {
    right: 24px;
  }
}
#index .index-questions .submitBtn li a:hover {
  color: #405774;
  background: #fff;
  opacity: 1;
}
#index .index-questions .submitBtn li a:hover::after {
  background: url(../img/common/ic-arrow-b-001.png) center/contain no-repeat;
}
@media (min-width: 768px) and (max-width: 1200px) {
  #index .index-questions .submitBtn li:first-child a {
    line-height: 1.25;
    padding: 19px 0;
  }
  #index .index-questions .submitBtn li:first-child a br {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  #index .index-questions .submitBtn li:first-child {
    margin-bottom: 24px;
  }
}
#index .html-bottom .tit_type_2nd .ttl-jp {
  color: #fff;
}
@media (min-width: 768px) {
  #index .html-bottom .tit_type_2nd .ttl-jp {
    padding: 15px 0;
  }
}

/* フッター上共通部分 */
.html-bottom {
  background: linear-gradient(90deg, #477ac6, #31288c);
}
.html-bottom.contents {
  padding: 32px 0 !important;
}
@media (min-width: 768px) {
  .html-bottom.contents {
    padding: 40px 0 !important;
  }
}
.html-bottom .contents-inn {
  padding: 32px 15px !important;
}
@media (min-width: 768px) {
  .html-bottom .contents-inn {
    padding: 40px 0 !important;
  }
}
@media (min-width: 1400px) {
  .html-bottom .contents-inn {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .html-bottom .contents-inn {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  .html-bottom .contents-inn {
    max-width: 1600px;
  }
}
.html-bottom .tit_type_2nd {
  margin: 0 0 48px;
}
@media (min-width: 768px) {
  .html-bottom .tit_type_2nd {
    margin: 0 0 64px;
  }
}
.html-bottom .tit_type_2nd .ttl-en {
  margin: 0 0 16px;
  padding: 0;
}
.html-bottom .tit_type_2nd .ttl-en img {
  height: 52px;
  width: auto;
}
@media (min-width: 768px) {
  .html-bottom .tit_type_2nd .ttl-en img {
    height: 77px;
  }
}
.html-bottom .tit_type_2nd .ttl-jp {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .html-bottom .tit_type_2nd .ttl-jp {
    padding: 15px 0;
  }
}
.html-bottom .submitBtn {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.016em;
}
@media (min-width: 768px) {
  .html-bottom .submitBtn {
    padding: 0;
  }
}
.html-bottom .submitBtn li {
  padding: 0 5px 16px !important;
}
@media (min-width: 768px) {
  .html-bottom .submitBtn li {
    padding: 0 16px !important;
  }
  .html-bottom .submitBtn li:nth-child(-n+2) {
    padding: 0 16px 36px !important;
  }
}
@media (min-width: 1200px) {
  .html-bottom .submitBtn li {
    padding: 0 16px !important;
  }
  .html-bottom .submitBtn li:nth-child(-n+2) {
    padding: 0 16px !important;
  }
}
.html-bottom .submitBtn li a {
  position: relative;
  background: #fff;
  padding: 32px 0;
  text-align: center;
  color: #333;
  box-shadow: none;
  border-radius: 0;
}
@media (min-width: 768px) {
  .html-bottom .submitBtn li a {
    padding: 38px 0;
    outline: solid 6px #fff;
  }
}
.html-bottom .submitBtn li a::before {
  display: none;
}
.html-bottom .submitBtn li a::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-b-001.png) center/contain no-repeat;
  width: 24px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .html-bottom .submitBtn li a::after {
    right: 32px;
  }
}
.html-bottom .submitBtn li a:hover {
  background: linear-gradient(90deg, #477ac6, #31288c);
  color: #fff;
  outline: solid 6px #fff;
  opacity: 1;
}
.html-bottom .submitBtn li a:hover::after {
  background: url(../img/common/ic-arrow-w-001.png) center/contain no-repeat;
}
.html-bottom .submitBtn li a.blank::before {
  display: none;
}
.html-bottom .submitBtn li a.blank::after {
  background: url(../img/common/ic-other.png) center/contain no-repeat;
  width: 16px;
  height: 16px;
}
.html-bottom .submitBtn li a.blank:hover::after {
  background: url(../img/common/ic-other-w.png) center/contain no-repeat;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .html-bottom .submitBtn li:nth-child(3) a {
    line-height: 1.25;
    padding: 23px 0;
  }
  .html-bottom .submitBtn li:nth-child(3) a br {
    display: inline !important;
  }
}

/* 下層ページ */
#about .main-type-a,
#work .main-type-a,
#support .main-type-a {
  overflow: hidden;
}
#about .main-type-a figure img,
#work .main-type-a figure img,
#support .main-type-a figure img {
  aspect-ratio: 12/5;
}
@media (max-width: 767px) {
  #about .main-type-a figure img,
  #work .main-type-a figure img,
  #support .main-type-a figure img {
    aspect-ratio: 75/64;
  }
}
#about section:not(.footer) p,
#work section:not(.footer) p,
#support section:not(.footer) p {
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  line-height: 1.75;
  padding: 6px 0;
}
#about section:not(.footer) ul li, #about section:not(.footer) ol li,
#work section:not(.footer) ul li,
#work section:not(.footer) ol li,
#support section:not(.footer) ul li,
#support section:not(.footer) ol li {
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  line-height: 1.75;
}

#breadcrumbs {
  padding-top: 50px;
}
@media (min-width: 768px) {
  #breadcrumbs {
    padding-top: 88px;
  }
}

@media (min-width: 768px) {
  .guide-link-type-b.navy {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .guide-link-type-b.navy .link-list {
    margin-top: 24px;
  }
}
.guide-link-type-b.navy .link-list li {
  border: none;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .guide-link-type-b.navy .link-list li:nth-child(odd) {
    padding-left: 15px;
    padding-right: 5px;
  }
  .guide-link-type-b.navy .link-list li:nth-child(even) {
    padding-left: 5px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .guide-link-type-b.navy .link-list li {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 992px) {
  .guide-link-type-b.navy .link-list li {
    margin-bottom: 0;
  }
}
.guide-link-type-b.navy .link-list li a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.016em;
  color: #fff;
  background: #183E6D;
  padding: 19px 30px 19px 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .guide-link-type-b.navy .link-list li a {
    font-size: 1.6rem;
    padding: 1.75em 30px;
  }
}
.guide-link-type-b.navy .link-list li a::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.tit_type_2nd {
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .tit_type_2nd {
    margin: 0 0 48px;
  }
}
.tit_type_2nd span {
  display: block;
}
.tit_type_2nd .ttl-en {
  color: #183E6D;
  font-size: 1.8rem;
  padding: 4px 0;
  margin: 0;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-en {
    font-size: 2.4rem;
    padding: 6px 0;
  }
}
.tit_type_2nd .ttl-jp {
  font-size: 4rem;
  padding: 10px 0;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-jp {
    font-size: 5.6rem;
    padding: 14px 0;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .tit_type_b {
    font-size: 2rem;
  }
}
.tit_type_b::after {
  background-color: #183E6D;
}

.tit_type_d {
  font-size: 2rem;
}
.tit_type_d span {
  background: linear-gradient(transparent 60%, rgba(181, 0, 129, 0.2) 40%);
}

.tit_type_f {
  margin-bottom: 0;
  padding-left: 13px;
  font-size: 1.9rem;
  margin-top: 16px;
}

#about section .submitBtn,
#work section .submitBtn {
  font-weight: 600;
  letter-spacing: 0.016em;
}
@media (min-width: 768px) {
  #about section .submitBtn,
  #work section .submitBtn {
    padding: 0;
  }
}
#about section .submitBtn li,
#work section .submitBtn li {
  padding: 0 5px 16px !important;
}
@media (min-width: 768px) {
  #about section .submitBtn li,
  #work section .submitBtn li {
    padding: 0 16px !important;
  }
}
#about section .submitBtn li a,
#work section .submitBtn li a {
  position: relative;
  background: linear-gradient(90deg, #31288c, #477ac6);
  padding: 16px 0;
  text-align: center;
  color: #fff;
  box-shadow: none;
  border-radius: 50vh;
}
@media (min-width: 768px) {
  #about section .submitBtn li a,
  #work section .submitBtn li a {
    padding: 24px 0;
  }
}
#about section .submitBtn li a span,
#work section .submitBtn li a span {
  position: relative;
  z-index: 1;
}
#about section .submitBtn li a:before,
#work section .submitBtn li a:before {
  background: linear-gradient(90deg, #477ac6, #31288c);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
  transform: rotate(0deg);
  border: none;
  margin: 0;
}
#about section .submitBtn li a::after,
#work section .submitBtn li a::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-w-001.png) center/contain no-repeat;
  width: 24px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
#about section .submitBtn li a:hover,
#work section .submitBtn li a:hover {
  opacity: 1;
}
#about section .submitBtn li a:hover::before,
#work section .submitBtn li a:hover::before {
  opacity: 0;
}
#about section .submitBtn li a:hover::after,
#work section .submitBtn li a:hover::after {
  right: 14px;
}

.cts_type_f_tit::before, .cts_type_f_cts::before {
  color: #183E6D;
  line-height: 1.75;
}

.list-process li {
  position: relative;
  margin-bottom: 2em;
}
.list-process li::after {
  content: "▼";
  position: absolute;
  top: 100%;
  bottom: 0px;
  left: 0;
  margin-left: 1em;
}
.list-process li:last-child::after {
  display: none;
}

.bg_color {
  background: #EBF3FF;
}

.list-box li {
  background: #fff;
  border: solid 1px #ccc;
  padding: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .list-box li {
    padding: 32px;
  }
}

.anchor {
  margin-top: -100px !important;
  padding-top: 100px !important;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.text-indent_01 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.aspect-ratio_4_3 {
  aspect-ratio: 4/3;
}

@media (max-width: 767px) {
  #about .guide-link-type-b .link-list li:nth-child(2) a {
    padding: 10px 30px 10px 15px;
  }
}
#about .guide-link-type-b .link-list li:nth-child(3) a {
  padding: 10px 30px 10px 15px;
}
@media (min-width: 768px) {
  #about .guide-link-type-b .link-list li:nth-child(3) a {
    padding: 1em 30px;
  }
}
@media (max-width: 767px) {
  #about .guide-link-type-b .link-list:last-child {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  #about .guide-link-type-b .link-list:last-child {
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  #about .guide-link-type-b .link-list:last-child {
    margin-top: 18px;
  }
}
#about .guide-link-type-b .link-list:last-child li:nth-child(2) {
  padding-left: 15px;
  padding-right: 5px;
}
@media (max-width: 767px) {
  #about .guide-link-type-b .link-list:last-child li:nth-child(2) a {
    padding: 19px 30px 19px 15px;
  }
}
#about .about-sec-01 img.lead-img,
#about .about-sec-02 img.lead-img {
  aspect-ratio: 261/297;
}
#about .txt_name img {
  aspect-ratio: 247/39;
}
@media (min-width: 768px) {
  #about .txt_name img {
    max-width: 494px;
    width: 80%;
  }
}
@media (min-width: 992px) {
  #about .txt_name img {
    width: 60%;
  }
}
#about .col_type_a .col_type_a_li {
  background: #fff;
  padding: 40px 40px 30px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #about .col_type_a .col_type_a_li {
    position: relative;
    padding: 40px 40px 20px;
  }
  #about .col_type_a .col_type_a_li:nth-child(n+5) {
    padding: 40px 40px 50px;
  }
}
#about .col_type_a .col_type_a_li a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  #about .col_type_a .col_type_a_li span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
#about .col_type_a .col_type_a_img img {
  max-width: 200px;
  aspect-ratio: 1/1;
}
#about .col_type_a .col_type_a_item {
  padding: 0;
}
@media (min-width: 768px) {
  #about .col_type_a .col_type_a_item {
    padding: 0 20px 20px;
  }
}
#about .col_type_a .col_type_a_ttl {
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #about .col_type_a .col_type_a_ttl {
    margin-bottom: 1em;
  }
}

#support .col_type_a .col_type_a_li {
  background: #fff;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #support .col_type_a .col_type_a_li {
    position: relative;
    padding: 0 0 30px;
  }
}
#support .col_type_a .col_type_a_li a {
  text-decoration: underline;
}
#support .col_type_a .col_type_a_img img {
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  #support .col_type_a .col_type_a_img img {
    max-width: 140px;
  }
}
@media (min-width: 768px) {
  #support .col_type_a .col_type_a_item {
    padding: 0 3.125vw 30px;
  }
}
#support .col_type_a .col_type_a_ttl {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #support .col_type_a .col_type_a_ttl {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}
#support .col_type_a .col_type_a_txt ul li, #support .col_type_a .col_type_a_txt ol li {
  width: initial;
  margin-right: initial;
}
@media (max-width: 767px) {
  #support .col_type_a .col_type_a_txt {
    font-size: 1.6rem;
  }
  #support .col_type_a .col_type_a_txt p {
    font-size: 1.6rem;
  }
  #support .col_type_a .col_type_a_txt ul li, #support .col_type_a .col_type_a_txt ol li {
    font-size: 1.6rem;
  }
}
#support .col_type_a .col_type_a_edge {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  border: none;
  padding: 8px 16px;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  background: #183E6D;
}
#support .col_type_a .col_type_a_edge.all {
  background: #B50081;
}
@media (min-width: 768px) {
  #support .col_type_a .col_type_a_edge {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 1.6rem;
    width: 98px;
  }
}
@media (min-width: 768px) {
  #support .col_type_a ul:last-child .col_type_a_li {
    padding: 0;
  }
}
#support .col_type_a ul:last-child .col_type_a_li a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  #support .col_type_a ul:last-child .col_type_a_figure {
    padding: 0;
  }
}
#support .col_type_a ul:last-child .col_type_a_img img {
  aspect-ratio: 84/63;
}
@media (min-width: 768px) {
  #support .col_type_a ul:last-child .col_type_a_img img {
    max-width: initial;
  }
}
@media (min-width: 768px) {
  #support .col_type_a ul:last-child .col_type_a_item {
    padding: 0 3.125vw;
  }
}
#support .col_type_a a.blank {
  position: relative;
  padding: 0 18px 0 0;
}
#support .col_type_a a.blank::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border: none;
  background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
}
#support .list-box li h4 {
  font-size: 2rem;
  padding: 6px 0;
  margin: 0 16px 0 0;
}
@media (min-width: 768px) {
  #support .list-box li h4 {
    font-size: 2.2rem;
  }
}
#support .list-box li span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 16px;
  white-space: nowrap;
}
#support .list-box li span.ico_01 {
  background: #31288C;
}
#support .list-box li span.ico_02 {
  background: #4D5FA9;
}
#support .list-box li span.ico_03 {
  background: #4777C4;
}
#support .list-box li span.ico_04 {
  background: #4AB2EC;
}
#support .list-box li span.ico_05 {
  background: #183E6D;
}
#support .list-box li li {
  border: initial;
  padding: initial;
  margin: initial;
}
#support .support-sec-03 img {
  aspect-ratio: 400/369;
}
#support .support-sec-03 .cts_type_g .tit_type_d {
  font-weight: normal;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #support .support-sec-03 .cts_type_g .tit_type_d {
    font-size: 1.6rem;
  }
}

#work .work-sec-01 .guide-link-type-b {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  #work .work-sec-01 .guide-link-type-b {
    padding: 0 0 60px;
  }
}
#work .work-sec-01 .guide-link-type-b .link-list li {
  font-size: 1.4rem;
}
#work .work-sec-01 .tit_type_d {
  margin-bottom: 40px;
}
#work .work-sec-01 .job-box {
  margin-bottom: 100px;
}
#work .work-sec-01 .job-box img {
  aspect-ratio: 1/1;
}
#work .work-sec-02 .status-box {
  margin-bottom: 48px;
}
#work .work-sec-02 .status-box img {
  aspect-ratio: 1/1;
}

#interview,
#interview-d {
  background: #EBF3FF;
}
#interview .flex-link-type_b,
#interview-d .flex-link-type_b {
  background: #EBF3FF;
}

#interview-d .main-type-b .main-ttl-BOX {
  border-top: 2px solid #183E6D;
}
@media (min-width: 768px) {
  #interview-d .main-type-b .main-ttl-BOX {
    border-top: none;
    border-left: 3px solid #183E6D;
  }
}
#interview-d #interview-box {
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  #interview-d #interview-box.contents {
    padding: 120px 0 0;
  }
}
#interview-d #workstyle-box {
  padding: 60px 0 30px;
}
@media (min-width: 768px) {
  #interview-d #workstyle-box.contents {
    padding: 120px 0 60px;
  }
}

/* 新卒採用ページ */
#newgen .newgen-mainimg {
  position: relative;
}
#newgen .newgen-mainimg .catch-sub {
  position: absolute;
  top: 63vw;
  left: 4.3vw;
  width: 29vw;
}
#newgen .newgen-mainimg .catch-sub img {
  aspect-ratio: 218/122;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg .catch-sub {
    top: 10.9vw;
    left: 16.7vw;
    width: 10.625vw;
  }
  #newgen .newgen-mainimg .catch-sub img {
    aspect-ratio: 204/128;
  }
}
#newgen .newgen-mainimg-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#newgen .newgen-mainimg-box .slick-slide a:hover {
  opacity: 1;
}
#newgen .newgen-mainimg-box .slick-slide figure {
  margin: 0;
}
#newgen .newgen-mainimg-box .slick-slide img {
  aspect-ratio: 75/98;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box .slick-slide img {
    aspect-ratio: 32/13;
  }
}
@keyframes mv_slide {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#newgen .newgen-mainimg-box .newgen-hero-animation figure {
  animation: mv_slide 6000ms linear both;
}
#newgen .newgen-mainimg-box li {
  position: relative;
  padding-bottom: 0;
}
#newgen .newgen-mainimg-box li .main-catch {
  position: absolute;
  z-index: 100;
  bottom: 3.3%;
  left: 4.3%;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li .main-catch {
    top: 45%;
    left: 16.7%;
    bottom: initial;
  }
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li .main-catch .catch__001 {
    margin: auto;
  }
}
#newgen .newgen-mainimg-box li .main-catch .catch__001 span {
  display: inline-block;
}
#newgen .newgen-mainimg-box li .main-catch .catch__001-01 {
  max-width: 77.9vw;
  margin-bottom: 3vw;
}
#newgen .newgen-mainimg-box li .main-catch .catch__001-01 img {
  aspect-ratio: 584/186;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li .main-catch .catch__001-01 {
    max-width: 35.4vw;
    margin-bottom: 1.4vw;
  }
  #newgen .newgen-mainimg-box li .main-catch .catch__001-01 img {
    aspect-ratio: 680/224;
  }
}
#newgen .newgen-mainimg-box li .main-catch .catch__001-02 {
  max-width: 48.3vw;
}
#newgen .newgen-mainimg-box li .main-catch .catch__001-02 img {
  aspect-ratio: 362/92;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li .main-catch .catch__001-02 {
    max-width: 16.4vw;
  }
  #newgen .newgen-mainimg-box li .main-catch .catch__001-02 img {
    aspect-ratio: 314/95;
  }
}
#newgen .newgen-mainimg-box li:nth-child(2) .main-catch .catch__001-02, #newgen .newgen-mainimg-box li:last-child .main-catch .catch__001-02 {
  max-width: 30.1vw;
}
#newgen .newgen-mainimg-box li:nth-child(2) .main-catch .catch__001-02 img, #newgen .newgen-mainimg-box li:last-child .main-catch .catch__001-02 img {
  aspect-ratio: 226/92;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li:nth-child(2) .main-catch .catch__001-02, #newgen .newgen-mainimg-box li:last-child .main-catch .catch__001-02 {
    max-width: 10.3vw;
  }
  #newgen .newgen-mainimg-box li:nth-child(2) .main-catch .catch__001-02 img, #newgen .newgen-mainimg-box li:last-child .main-catch .catch__001-02 img {
    aspect-ratio: 198/95;
  }
}
#newgen .newgen-mainimg-box li:nth-child(3) .main-catch .catch__001-02 {
  max-width: 39.6vw;
}
#newgen .newgen-mainimg-box li:nth-child(3) .main-catch .catch__001-02 img {
  aspect-ratio: 297/92;
}
@media (min-width: 768px) {
  #newgen .newgen-mainimg-box li:nth-child(3) .main-catch .catch__001-02 {
    max-width: 13.4vw;
  }
  #newgen .newgen-mainimg-box li:nth-child(3) .main-catch .catch__001-02 img {
    aspect-ratio: 258/95;
  }
}
#newgen .newgen-mainimg-box li.newgen-hero-animation .main-catch .catch__001 span {
  clip-path: inset(100% 0 0 0);
}
#newgen .newgen-mainimg-box li.newgen-hero-animation .main-catch .catch__001-01 {
  animation: flow-anime_b 0.5s both ease-in;
  animation-delay: 0.5s;
}
#newgen .newgen-mainimg-box li.newgen-hero-animation .main-catch .catch__001-02 {
  animation: flow-anime_b 0.5s both ease-in;
  animation-delay: calc(0.5s + 0.5s);
}
@keyframes flow-anime_b {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
#newgen .newgen-mainimg-box .slick-dots {
  bottom: 25px;
}
#newgen .newgen-mainimg-box .slick-dots li button::before {
  color: #fff;
  opacity: 1;
}
#newgen .newgen-mainimg-box .slick-dots li.slick-active button::before {
  color: #183E6D;
  opacity: 1;
}
#newgen .sliding-box {
  overflow: hidden;
}
#newgen .sliding-box .sliding {
  height: 560px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat-x: repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  #newgen .sliding-box .sliding {
    height: 280px;
  }
}
#newgen .sliding-box .sliding.n-01 {
  background-image: url(../img/newgen/lead-img.png);
}
@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2240px 0;
  }
}
#newgen section:not(.newgen-sec-04):not(.footer) p {
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  line-height: 1.75;
  padding: 6px 0;
}
#newgen section:not(.newgen-sec-04):not(.footer) ul li, #newgen section:not(.newgen-sec-04):not(.footer) ol li {
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  line-height: 1.75;
}
#newgen .guide-link-type-b .link-list li:first-child a {
  padding: 10px 30px 10px 15px;
}
@media (min-width: 768px) {
  #newgen .guide-link-type-b .link-list li:first-child a {
    padding: 1em 30px;
  }
}
@media (min-width: 1200px) {
  #newgen .guide-link-type-b .link-list li:first-child a {
    padding: 1.75em 30px;
  }
}
@media (max-width: 1200px) {
  #newgen .guide-link-type-b .link-list li:first-child a .pcHdn {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  #newgen .guide-link-type-b .link-list:last-child {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  #newgen .guide-link-type-b .link-list:last-child {
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  #newgen .guide-link-type-b .link-list:last-child {
    margin-top: 18px;
  }
}
#newgen .guide-link-type-b .link-list:last-child li:first-child a {
  padding: 10px 30px 10px 15px;
}
@media (min-width: 768px) {
  #newgen .guide-link-type-b .link-list:last-child li:first-child a {
    padding: 1.75em 30px;
  }
}
@media (max-width: 767px) {
  #newgen .guide-link-type-b .link-list:last-child li:nth-child(2) {
    padding-left: 15px;
    padding-right: 5px;
  }
  #newgen .guide-link-type-b .link-list:last-child li:nth-child(3) {
    padding-left: 5px;
    padding-right: 15px;
  }
}
#newgen .bg_pattern {
  background: url(../img/newgen/sub-bg-002.png) top/100% repeat-y, #F1FDFF;
}
@media (max-width: 767px) {
  #newgen .bg_pattern {
    background: url(../img/newgen/sub-bg-002.png) top center/150% repeat-y, #F1FDFF;
  }
}
#newgen .tit_type_2nd {
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  #newgen .tit_type_2nd {
    margin: 0 0 64px;
  }
}
#newgen .tit_type_2nd figure {
  margin: 0 auto;
}
@media (min-width: 768px) {
  #newgen .tit_type_2nd figure {
    max-width: 1060px;
  }
}
#newgen .newgen-sec-01 .msg-ttl {
  font-size: 2.6rem;
  padding: 12px 0;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-01 .msg-ttl {
    font-size: 4.8rem;
    padding: 18px 0;
  }
}
#newgen .newgen-sec-01 .msg-ttl span {
  display: inline-block;
}
#newgen .newgen-sec-01 .msg-ttl span::first-letter {
  color: #31288c;
  font-size: 4rem;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-01 .msg-ttl span::first-letter {
    font-size: 6.4rem;
  }
}
#newgen .newgen-sec-01 p {
  font-size: 1.6rem !important;
  letter-spacing: 0.02em !important;
  line-height: 2.25 !important;
  font-weight: 600;
  padding: 7px 0 !important;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-01 p {
    text-align: center;
    font-size: 2rem !important;
    line-height: 2.75 !important;
    padding: 20px 0 !important;
  }
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-02 .contents-inn {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  #newgen .newgen-sec-02 .contents-inn {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  #newgen .newgen-sec-02 .contents-inn {
    max-width: 1600px;
  }
}
#newgen .newgen-sec-02 .features-link-box {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box {
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 345/175;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link a {
    aspect-ratio: 788/400;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link a h3 {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 8px 4px;
  background: linear-gradient(90deg, #204878, #4AB2EC);
  z-index: 1;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link a h3 {
    font-size: 1.8rem;
    padding: 10px;
  }
}
@media (min-width: 992px) {
  #newgen .newgen-sec-02 .features-link-box .features-link a h3 {
    font-size: 2.4rem;
    padding: 16px;
  }
}
@media (min-width: 1600px) {
  #newgen .newgen-sec-02 .features-link-box .features-link a h3 .tbHdn {
    display: none !important;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link a .bg-box {
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
}
#newgen .newgen-sec-02 .features-link-box .features-link a:hover .bg-box {
  transform: scale(1.1);
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/2;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(1) .bg-box {
  background: url(../img/newgen/features-ph-001.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(2) a {
  aspect-ratio: 167.5/175;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(2) a {
    aspect-ratio: 382/400;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(2) .bg-box {
  background: url(../img/newgen/features-ph-002.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(3) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(3) a {
  aspect-ratio: 167.5/175;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(3) a {
    aspect-ratio: 382/400;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(3) .bg-box {
  background: url(../img/newgen/features-ph-003.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(4) {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(4) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(4) a {
  aspect-ratio: 167.5/175;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(4) a {
    aspect-ratio: 382/400;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(4) .bg-box {
  background: url(../img/newgen/features-ph-004-pc.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(5) {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(5) a {
  aspect-ratio: 167.5/175;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(5) a {
    aspect-ratio: 382/400;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(5) .bg-box {
  background: url(../img/newgen/features-ph-005.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(6) {
  grid-column: 1/3;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(6) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(6) .bg-box {
  background: url(../img/newgen/features-ph-006.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(7) {
  grid-column: 1/3;
  grid-row: 5/6;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(7) {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(7) .bg-box {
  background: url(../img/newgen/features-ph-007.jpg) center/cover no-repeat;
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(8) {
  grid-column: 1/3;
  grid-row: 6/7;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .features-link-box .features-link:nth-child(8) {
    grid-column: 3/5;
    grid-row: 3/4;
  }
}
#newgen .newgen-sec-02 .features-link-box .features-link:nth-child(8) .bg-box {
  background: url(../img/newgen/features-ph-008.jpg) center/cover no-repeat;
}
@media (min-width: 576px) {
  #newgen .newgen-sec-02 .modal-dialog.contents-inn {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .modal-dialog.contents-inn {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #newgen .newgen-sec-02 .modal-dialog.contents-inn {
    max-width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #newgen .newgen-sec-02 .modal-dialog.contents-inn {
    max-width: 1100px;
    margin: 0 auto;
  }
}
#newgen .newgen-sec-02 .modal-content {
  border-radius: var(--bd-radius);
}
#newgen .newgen-sec-02 .modal-body {
  padding: min(56px, 2.9vw) min(40px, 2.1vw);
}
@media (max-width: 767px) {
  #newgen .newgen-sec-02 .modal-body {
    padding: 40px 24px 24px;
  }
}
#newgen .newgen-sec-02 .modal-box {
  display: flex;
  align-items: center;
  gap: min(40px, 2.1vw);
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .modal-box figure {
    max-width: 380px;
    flex-basis: 40%;
  }
}
@media (max-width: 767px) {
  #newgen .newgen-sec-02 .modal-box {
    flex-direction: column;
    gap: 24px;
  }
  #newgen .newgen-sec-02 .modal-box figure {
    display: none;
  }
}
@media (min-width: 768px) {
  #newgen .newgen-sec-02 .modal-txt {
    flex-basis: 60%;
  }
}
@media (max-width: 767px) {
  #newgen .newgen-sec-02 .modal-txt p, #newgen .newgen-sec-02 .modal-txt li {
    font-size: 1.6rem !important;
  }
}
#newgen .newgen-sec-02 .modal-tit {
  margin-bottom: 24px;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  #newgen .newgen-sec-02 .modal-tit {
    margin-bottom: 16px;
    font-size: 2rem;
  }
}
#newgen .newgen-sec-02 .modal-tit br {
  display: none;
}
#newgen .newgen-sec-02 .modal .close {
  position: absolute;
  top: min(32px, 1.7vw);
  right: min(32px, 1.7vw);
  display: inline-block;
  width: min(36px, 4.7vw);
  height: min(36px, 4.7vw);
  opacity: 1;
}
@media (min-width: 992px) {
  #newgen .newgen-sec-02 .modal .close {
    width: min(72px, 3.75vw);
    height: min(72px, 3.75vw);
  }
}
@media (max-width: 767px) {
  #newgen .newgen-sec-02 .modal .close {
    top: 8px;
    right: 8px;
    width: min(36px, 9.6vw);
    height: min(36px, 9.6vw);
  }
}
#newgen .newgen-sec-02 .modal .close:focus {
  outline: none;
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-03 .contents-inn {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  #newgen .newgen-sec-03 .contents-inn {
    max-width: 1400px;
  }
}
@media (min-width: 1700px) {
  #newgen .newgen-sec-03 .contents-inn {
    max-width: 1600px;
  }
}
#newgen .newgen-sec-03 .recommend-link-box {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #newgen .newgen-sec-03 .recommend-link-box {
    gap: 40px;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 345/130;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a {
    aspect-ratio: 788/298;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .link-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  background: #fff;
  padding: 4px;
  white-space: nowrap;
  z-index: 2;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .link-txt {
    font-size: 1.8rem;
    padding: 8px;
  }
}
@media (min-width: 992px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .link-txt {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .link-txt {
    font-size: 2.4rem;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn {
  position: absolute;
  display: inline-block;
  z-index: 2;
}
@media (max-width: 767px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    bottom: 20px;
    right: 20px;
    width: 15vw;
    height: 3vw;
  }
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn {
    bottom: 24px;
    right: 24px;
    height: 4.6vw;
  }
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn::before {
    content: "VIEW MORE";
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: underline;
    color: transparent;
    margin-right: 1em;
  }
}
@media (min-width: 992px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn::before {
    font-size: 1.4rem;
  }
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn::before {
    font-size: 1.6rem;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span {
    display: flex;
    align-items: center;
    width: 3vw;
  }
}
@media (min-width: 1400px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span {
    width: 4.6vw;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span::before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50vh;
  background: linear-gradient(90deg, #31288c, #477ac6);
  transition: all 0.3s ease;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  background: url(../img/common/ic-arrow-w-001.png) center/contain no-repeat;
  width: 4.3vw;
  aspect-ratio: 32/27;
  z-index: 3;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a .vm-btn span::after {
    width: 1.7vw;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(74, 178, 236, 0.5), rgba(32, 72, 120, 0.5));
  outline: 1px solid #fff;
  outline-offset: -5px;
  z-index: 1;
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a::before {
    outline: 2px solid #fff;
    outline-offset: -10px;
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a .bg-box {
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link a:hover .bg-box {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a:hover .vm-btn::before {
    color: #333;
  }
  #newgen .newgen-sec-03 .recommend-link-box .recommend-link a:hover .vm-btn span::before {
    background: linear-gradient(90deg, #1E257D, #8A098B);
    transform: scale(0.9);
  }
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.data .bg-box {
  background: url(../img/newgen/recommend-ph-001.jpg) center/contain no-repeat;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.job .bg-box {
  background: url(../img/newgen/recommend-ph-002.jpg) center/contain no-repeat;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.status .bg-box {
  background: url(../img/newgen/recommend-ph-003.jpg) center/contain no-repeat;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.welfare .bg-box {
  background: url(../img/newgen/recommend-ph-004.jpg) center/contain no-repeat;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.education .bg-box {
  background: url(../img/newgen/recommend-ph-005.jpg) center/contain no-repeat;
}
#newgen .newgen-sec-03 .recommend-link-box .recommend-link.career .bg-box {
  background: url(../img/newgen/recommend-ph-006.jpg) center/contain no-repeat;
}
#newgen #newgen-interview.interview-design-01 {
  /*カラム数を指定。変更する場合は数値も変更してください。*/
}
@media (min-width: 768px) {
  #newgen #newgen-interview.interview-design-01 .contents-inn {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  #newgen #newgen-interview.interview-design-01 .d-md-flex {
    font-size: 0;
    margin: 0 calc((100% - 100vw) / 2);
  }
}
#newgen #newgen-interview.interview-design-01 .d-md-flex li {
  background: none;
  margin-right: 8px;
}
@media (min-width: 768px) {
  #newgen #newgen-interview.interview-design-01 .d-md-flex li {
    width: calc((100% - 2px * (3 - 1)) / 3);
  }
}
@media (min-width: 768px) {
  #newgen #newgen-interview.interview-design-01 .d-md-flex li {
    margin-right: 20px;
  }
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a {
  overflow: inherit;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-center-img {
  border: none;
  width: 100%;
  padding-top: 75%;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-center-img::before, #newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-center-img::after {
  display: none;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-center-img img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transform: scale(1);
  -moz-transition: all 0.3s ease-out;
  -moz-transform: scale(1);
  -ms-transition: all 0.3s ease-out;
  -ms-transform: scale(1);
  transition: all 0.3s ease-out;
  transform: scale(1);
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-link-type_b-txt {
  background: #FFFFFF;
  position: relative;
  margin: -6% 1em 0;
  padding: 1.5em;
  border: none;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-weight: bold;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a:hover {
  opacity: 1;
}
#newgen #newgen-interview.interview-design-01 .flex-link-type_b a:hover .flex-center-img img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  #newgen #newgen-interview .contents-inn {
    width: 91.6%;
    max-width: none;
    margin: 0 0 0 auto;
  }
}
#newgen #newgen-interview .overflow-x-scroll {
  margin-right: 0;
  display: block !important;
  overflow-x: scroll;
  overflow-y: clip;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
#newgen .newgen-sec-05 p {
  font-size: 1.6rem !important;
  font-weight: 600;
  padding: 15px 0 !important;
  line-height: 1.5 !important;
}
#newgen .newgen-sec-06 .cts_type_d_ttl h4,
#newgen .newgen-sec-06 .cts_type_d_txt {
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  line-height: 1.75;
}
#newgen .follow-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
#newgen .follow-btn li a {
  position: relative;
  aspect-ratio: 1/1;
  width: 80px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #5D75B8, #4AB2EC);
}
@media (min-width: 768px) {
  #newgen .follow-btn li a {
    width: 100px;
  }
}
#newgen .follow-btn li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
#newgen .follow-btn li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #4AB2EC, #5D75B8);
  transition: all 1s ease-out;
}
#newgen .follow-btn li a:hover {
  opacity: 1;
}
#newgen .follow-btn li a:hover::before {
  opacity: 0;
}
#newgen .follow-btn li:last-child a {
  background: linear-gradient(90deg, #204878, #5D75B8);
}
#newgen .follow-btn li:last-child a::before {
  background: linear-gradient(90deg, #5D75B8, #204878);
}
#newgen .html-bottom {
  display: none;
}

.modal-open .modal {
  place-content: center;
}/*# sourceMappingURL=style.css.map */