@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ以外専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
:root {
  --color-primary: #2581C9;
  --color-accent: #efe24e;
  --color-white: #ffffff;
  --color-black: #333333;
  --color-blue-1: #4481b9;
  --color-blue-2: #1A498B;
  --color-blue-4: #045f8b;
  --color-red-1: #bf2e3c;
  --color-red-2: #D7261C;
  --color-green-1: #3c7d3a;
  --color-green-2: #4c8341;
  --color-vermilion: #d75555;
  --color-purple: #aa67b4;
  --color-yellow: #efe24e;
  --color-gray-1: #F6F6F6;
  --color-gray-2: #F5F5F5;
  --color-gray-3: #CCCCCC;
  --color-gray-4: #DFDFDF;
  --color-gray-5: #B4B4B4;
  --color-gray-7: #808080;
  --color-gray-8: #707070;
  --color-gray-9: #676767;
  --color-gray-10: #555555;
  --color-bg: var(--color-white);
  --color-text: var(--color-black);
  --color-link: var(--color-black);
  --color-footer-bg: var(--color-gray-1);
  --color-new-bg: var(--color-yellow);
  --color-btn-bg: var(--color-black);
  --color-apply-bg: var(--color-blue-4);
  --color-arbeit-bg: var(--color-vermilion);
  --color-parttimer-bg: var(--color-purple);
  --color-career-bg: var(--color-blue-1);
  --color-contract-bg: var(--color-green-2);
  --fontsize: 1.6rem;
  --fontsize-pc: 1.6rem;
  --lineheight: 1.75;
  --border-radius: 8px;
  --border-radius-pc: 16px;
  --section-padding: 48px;
  --section-padding-pc: 80px;
  --margin-s: 16px;
  --margin-m: 24px;
  --margin-l: 32px;
  --margin-s-pc: 16px;
  --margin-m-pc: 40px;
  --margin-l-pc: 64px;
  --headerH: 50px;
  --headerH-pc: 82px;
}

/******************************************************************
  ■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: var(--color-white);
  color: var(--color-black);
  font-size: var(--fontsize);
  line-height: var(--lineheight);
  letter-spacing: 1px;
  font-family: "游ゴシック体", 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.fixed {
    overflow-y: hidden;
    position: fixed;
  }
}
@media (min-width: 768px) {
  body {
    --fontsize: var(--fontsize-pc);
    --headerH: var(--headerH-pc);
  }
}

#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);
}

.align-self-center {
  align-self: center;
}

.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: var(--color-link);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: var(--color-link);
  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: var(--color-black);
  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: var(--color-primary);
}
@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: var(--color-btn-bg);
  padding: 20px 0;
  text-align: center;
  color: var(--color-white);
  box-shadow: 0 1px 0 1px var(--color-gray-3);
  border-radius: 3px;
}
@media (min-width: 768px) {
  .submitBtn li a {
    padding: 22px 0;
  }
}
.submitBtn li a:hover {
  color: var(--color-white);
}
.submitBtn li.oubo a {
  background: var(--color-apply-bg);
}
.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: var(--color-btn-bg);
  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: var(--color-primary);
}
@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: var(--color-primary);
  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: var(--color-primary);
}
@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 var(--color-gray-3);
  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: var(--color-primary);
}

/* タイトル(タイプ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 var(--color-gray-3);
  }
}
@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: var(--color-primary);
}
@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: var(--color-gray-3);
  }
}

/* タイトル(タイプ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(var(--color-primary), 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: var(--color-primary);
}
@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: var(--color-primary);
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  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: var(--color-white);
  background: var(--color-primary);
  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 var(--color-gray-3);
  }
  .link-list li:nth-child(4n), .link-list li:last-child {
    border-right: 1px solid var(--color-gray-3);
  }
}
@media (max-width: 767px) {
  .link-list li {
    border-bottom: 1px solid var(--color-gray-3);
  }
  .link-list li:nth-child(odd) {
    border-right: 1px solid var(--color-gray-3);
  }
}
.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 var(--color-gray-3);
  border-right: 2px solid var(--color-gray-3);
  transform: rotate(135deg);
  right: 20px;
}
@media (min-width: 768px) {
  .link-list li a::before {
    border-color: var(--color-gray-10);
  }
}

.block {
  border: 1px solid var(--color-primary);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block {
    border: 2px solid var(--color-primary);
  }
}

.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: var(--color-primary);
  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: var(--color-black);
  line-height: 1;
  font-size: 11px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  white-space: nowrap;
  background: var(--color-gray-3);
}
.ic li.ic-arbeit {
  background: var(--color-arbeit-bg);
  color: var(--color-white);
}
.ic li.ic-parttimer {
  background: var(--color-parttimer-bg);
  color: var(--color-white);
}
.ic li.ic-career {
  background: var(--color-career-bg);
  color: var(--color-white);
}
.ic li.ic-contract {
  background: var(--color-contract-bg);
  color: var(--color-white);
}
.ic li.ic-scd {
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.ic li.ic-style {
  background: var(--color-white);
  border: 1px solid var(--color-gray-7);
  color: var(--color-black);
}
@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 var(--color-gray-3);
    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 var(--color-gray-3);
    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 var(--color-primary);
  border-bottom: none;
  margin-top: 15px;
  background: var(--color-white);
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: var(--color-primary);
}
@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 var(--color-primary);
}
@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 var(--color-primary);
  }
}
@media (max-width: 767px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-primary);
  }
  .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 var(--color-primary);
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .guide-link-type-a {
    border: 2px solid var(--color-primary);
    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: var(--color-white);
}
@media (min-width: 768px) {
  .flex-link-type_b {
    font-size: 1.4rem;
  }
}
.flex-link-type_b .flex-center-img {
  position: relative;
  border: 1px solid var(--color-gray-3);
  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 var(--color-primary) 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 var(--color-gray-3);
    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 var(--color-gray-3);
}
@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: var(--color-gray-7);
}

@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:nth-child(odd) {
    background: #E9F1F3;
}*/
/* トップページSEOリンク
------------------------------*/
.index-seolink {
  padding: 40px 0 50px;
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/* 共通フッターコンテンツ背景色
------------------------------*/
.html-bottom {
  background: var(--color-gray-3);
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  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: var(--color-new-bg);
  padding: 0 10px;
  color: var(--color-black);
  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: var(--color-white);
}
@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 var(--color-primary);
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: var(--color-primary);
}
@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: var(--color-gray-1);
}

/* ページネーション
------------------------------*/
.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 var(--color-gray-7);
  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 var(--color-primary);
  border-right: 1px solid var(--color-primary);
}
.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 var(--color-primary);
  border-right: 1px solid var(--color-primary);
}
.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: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.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 var(--color-gray-3);
  }
}
@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: var(--color-white);
  border-top: 2px solid var(--color-primary);
  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 var(--color-primary);
    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 var(--color-gray-3);
  }
}
@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: var(--color-white);
  border: 2px solid var(--color-primary);
  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 var(--color-primary);
    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;
  }
}

/******************************************************************
  ■ カラム表示
*****************************************************************/
/* カラム表示 タイプA
------------------------------*/
.col_type_a figure {
  margin-bottom: 0;
}
.col_type_a .col_type_a_li {
  background: var(--color-gray-1);
  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: var(--color-gray-1);
}
.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: var(--color-primary) 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: var(--color-gray-1);
}
.col_type_b_item dt {
  background: var(--color-primary);
  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: var(--color-primary);
}
.cts_type_e_item03::before {
  content: "E";
  background: var(--color-primary);
}

/* コンテンツ タイプ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 var(--color-gray-1);
  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: var(--color-primary);
  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: var(--color-primary);
  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: var(--color-primary);
}
.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 var(--color-primary);
  }
}
@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: var(--color-primary);
  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 var(--color-primary);
}
@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 var(--color-primary) 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: var(--color-primary);
  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 var(--color-gray-1);
  border-top: 1px solid var(--color-primary);
}
.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 var(--color-gray-1);
  border-bottom: 1px solid var(--color-primary);
  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 var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  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;
}

/* コンテンツリンクリスト
------------------------------*/
.cts-link-list {
  background: var(--color-gray-1);
}
.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: var(--color-black);
  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: var(--color-btn-bg);
  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: var(--color-primary);
  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: var(--color-primary);
}
.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 var(--color-primary);
  }
}
@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: var(--color-primary);
  }
  .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: var(--color-primary);
    opacity: 0.8;
    background: #a1d7ff;
    border-right: 1px solid var(--color-white);
    height: 50px;
    width: 50px;
    color: var(--color-primary);
    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: var(--color-white);
  }
  .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: var(--color-primary);
    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: var(--color-primary);
  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: var(--color-gray-7);
    color: var(--color-white);
    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: var(--color-btn-bg);
  padding: 10px;
  text-align: center;
  color: var(--color-white);
  box-shadow: 0 1px 0 1px var(--color-gray-3);
}

/******************************************************************
  ■ お知らせ
*****************************************************************/
/* news
------------------------------*/
#news .ic li,
.index-box .ic li {
  width: 130px;
}

#news .showdate {
  order: 1;
  width: 72px;
}
#news .list-block-ic {
  order: 2;
}
#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;
  }
}

.index-box.line-link-list .showdate {
  order: 2;
}
.index-box.line-link-list .list-block-ic {
  order: 1;
}
.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: var(--color-gray-1);
    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: var(--color-primary);
  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 var(--color-gray-3);
}
@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: var(--color-gray-1);
  }
}
.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: var(--color-primary);
    font-size: 13px;
    border-bottom: 1px solid var(--color-gray-1);
    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: var(--color-primary);
  }
}
.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: var(--color-white);
  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 var(--color-primary);
  }
  .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 var(--color-primary);
  }
  .select-area-tab li {
    letter-spacing: 1px;
    border: 1px solid;
    border-left: 0;
    border-color: var(--color-primary);
    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: var(--color-primary);
    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 var(--color-primary);
    border-right: 1px solid var(--color-primary);
  }
}

/* 都道府県名スタイル */
.pref-name {
  margin: auto 8px 10px;
  padding: 8px;
  line-height: 1;
  background-color: var(--color-gray-1);
}

.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: var(--color-white);
  border-radius: 3px;
  background: var(--color-btn-bg);
  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 var(--color-gray-7);
  font-size: 1.2rem;
}
.kinmuchi-link td {
  border-bottom: solid 1px var(--color-gray-1);
  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: var(--headerH);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.3); /*横方向　下方向　ぼかし　広がり　色 */
}

.header {
  display: flex;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .header {
    justify-content: space-between;
    padding-inline: 8px;
  }
}
@media (min-width: 992px) {
  .header {
    padding-inline: 16px;
  }
}
@media (min-width: 1200px) {
  .header {
    padding-inline: 32px;
  }
}

.header-logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: var(--headerH);
  font-size: 0;
}
.header-logo .logo {
  width: 221px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .header-logo .logo {
    width: 148px;
  }
}
@media (min-width: 992px) {
  .header-logo .logo {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo {
    width: 280px;
  }
}
@media (min-width: 1400px) {
  .header-logo .logo {
    width: 378px;
  }
}
.header-logo .logo-text {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .header-logo .logo-text {
    margin-top: 8px;
    margin-left: 6px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .header-logo .logo-text {
    margin-left: 12px;
    font-size: 1.4rem;
  }
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 768px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    height: var(--headerH);
    gap: 6px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu {
    gap: 12px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu {
    gap: 20px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu {
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn {
    flex: 1 0 auto;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    position: relative;
    padding: 20px 0;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    display: grid;
    place-items: center;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 3px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    padding-inline: 40px;
  }
}
@media (min-width: 768px) {
  .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;
    font-weight: bold;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts a span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
    transform: scaleX(0);
    background-color: var(--color-primary);
  }
  .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-list {
  position: absolute;
  height: var(--headerH);
  aspect-ratio: 1/1;
  top: 0;
  right: var(--headerH);
}
.menu-list a:link, .menu-list a:visited, .menu-list a:active, .menu-list a:hover:hover {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  display: grid;
  place-items: center;
  height: 100%;
}

.menu-btn {
  position: fixed;
  height: var(--headerH);
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index: 1000;
  background: var(--color-gray-1);
  opacity: 0.8;
}
.menu-btn span {
  position: absolute;
  right: 10px;
  margin: 0 auto;
  width: 30px;
  height: 2px;
  display: block;
  background-color: var(--color-black);
}
.menu-btn span:nth-of-type(1) {
  top: 15px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 33px;
  bottom: -16px;
}

.open .menu-btn, .open-tab-a .menu-btn, .open-tab-b .menu-btn {
  background: transparent;
}
.open .menu-btn span, .open-tab-a .menu-btn span, .open-tab-b .menu-btn span {
  background-color: var(--color-primary);
  transition: all 0.4s;
}
.open .menu-btn span:nth-of-type(1), .open-tab-a .menu-btn span:nth-of-type(1), .open-tab-b .menu-btn span:nth-of-type(1) {
  top: 17px;
  transform: translateY(5px) rotate(-45deg);
}
.open .menu-btn span:nth-of-type(2), .open-tab-a .menu-btn span:nth-of-type(2), .open-tab-b .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3), .open-tab-a .menu-btn span:nth-of-type(3), .open-tab-b .menu-btn span:nth-of-type(3) {
  bottom: -21px;
  transform: translateY(-11px) rotate(45deg);
}

.menu-box {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
  background: #ffffff;
  top: 0;
  visibility: hidden;
  transition: all 1s;
  opacity: 0;
}
.menu-box .menu-link li {
  margin: 10px 0;
}
.menu-box .menu-link li a {
  border: 1px solid #cccccc;
  line-height: 1;
  padding: 15px;
  display: block;
  margin-bottom: -1px;
  position: relative;
}
.menu-box .menu-link li a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  transition: all 0.3s ease-out 0s;
  transform: rotate(-45deg);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.menu-box .menu-ttl-2 {
  background: var(--color-primary);
  color: #fff;
  padding: 8px;
}
.menu-box .menu-contact {
  margin-top: 20px;
}
.menu-box .menu-contact .menu-contact-inner {
  padding: 20px 10px;
  border: 1px solid var(--color-gray-1);
}
.menu-box .menu-contact .menu-contact-tel {
  font-size: 1.5rem;
}
.menu-box .menu-contact .menu-contact-tel a {
  display: inline-block;
}
.menu-box .menu-contact .menu-contact-tel span {
  text-decoration: underline;
}
.menu-box .menu-contact .menu-contact-btn {
  margin: 20px auto 0;
}

.close-txt {
  border: 1px solid #333333;
  padding: 10px;
  display: block;
  width: 100px;
  margin: 20px auto;
  text-align: center;
}

.open .menu-box {
  transition: all 1s;
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  background: var(--color-white);
  text-align: center;
}
#page_top a {
  font-style: italic;
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: var(--color-primary);
  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 var(--color-primary);
  border-right: 2px solid var(--color-primary);
  display: block;
}

/* footer
------------------------------*/
footer {
  background: var(--color-footer-bg);
}
@media (max-width: 767px) {
  footer .container {
    max-width: none;
    padding: 0;
  }
}
@media (min-width: 768px) {
  footer .container {
    padding: 50px 10px;
    font-size: 1.3rem;
  }
}
footer .contents-inn {
  padding: 0;
}
@media (max-width: 767px) {
  footer .contents-inn {
    max-width: none;
  }
}
footer a {
  position: relative;
  display: block;
  padding: 10px;
}
@media (max-width: 767px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@media (min-width: 768px) {
  footer a {
    padding-left: 20px;
    font-size: 1.3rem;
  }
}
footer a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}
@media (min-width: 768px) {
  footer a::before {
    width: 5px;
    height: 5px;
    left: 0;
  }
}
@media (min-width: 768px) {
  footer .home {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  footer .home a {
    display: inline;
    padding: 0 20px 0 0;
  }
  footer .home a:hover {
    display: inline;
  }
  footer .home a:before {
    margin-top: -5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    width: 7px;
    height: 7px;
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  footer nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  footer .footer-contents {
    margin-bottom: 20px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank] {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  footer .footer-contents a[target=_blank]::before {
    content: "";
    border: none;
    background: url(../img/common/icon-blank_sp.png) center/cover no-repeat;
    width: 13px;
    height: 11px;
    transform: rotate(0);
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank]::after {
    content: "";
    display: inline-block;
    background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
    width: 20px;
    height: 10px;
    transform: rotate(0);
  }
}
footer .footer-inner {
  background: var(--color-primary);
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: var(--color-white);
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}
@media (max-width: 767px) {
  footer .footer-inner {
    padding: 15px 15px 52px;
  }
}
footer .footer-inner .ga-pdf {
  margin-top: 5px;
}
footer .footer-inner .ga-pdf a {
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}

/******************************************************************
  ■ 案件別専用スタイル
*****************************************************************/
@media (min-width: 768px) {
  body {
    --border-radius: var(--border-radius-pc);
    --section-padding: var(--section-padding-pc);
    --margin-s: var(--margin-s-pc);
    --margin-m: var(--margin-m-pc);
    --margin-l: var(--margin-l-pc);
  }
}

.aspect-ratio {
  --aspect-ratio-sp: 4/3;
  --aspect-ratio-pc: 4/3;
}
.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

.html-bottom {
  background-color: var(--color-gray-1);
}
.html-bottom .contents-inn {
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .html-bottom .contents-inn {
    flex-direction: row;
    gap: 40px;
  }
}
.html-bottom__box {
  background-color: var(--color-white);
  padding: 24px;
}
@media (min-width: 768px) {
  .html-bottom__box {
    padding: 40px 24px;
    width: calc((100% - 40px) / 2);
  }
}
.html-bottom__item {
  position: relative;
  border: 1px solid var(--color-primary);
  padding: 40px 24px 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .html-bottom__item {
    padding: 40px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.html-bottom__ttl {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  background-color: var(--color-white);
  padding-inline: 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .html-bottom__ttl {
    padding-inline: 70px;
  }
}
.html-bottom__text {
  text-align: left;
  padding-inline: 24px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .html-bottom__text {
    padding-inline: 0;
    margin-bottom: 32px;
  }
}
.html-bottom .submitBtn {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 24px;
  padding: 0;
}
@media (min-width: 1200px) {
  .html-bottom .submitBtn {
    flex-direction: row;
  }
}
.html-bottom .submitBtn li {
  padding: 0 !important;
  text-align: left;
  width: 100%;
}
.html-bottom .submitBtn li a {
  padding: 16px 0;
  border-radius: 4px;
  background-color: var(--color-blue-4);
  box-shadow: none;
}
.html-bottom .submitBtn li a.btn__photo {
  background-color: var(--color-red-2);
}

.menu-tab .menu-tab-ttl {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .menu-tab .menu-tab-ttl {
    font-size: 1.4rem;
  }
}
.menu-tab .menu-tab-ttl .menu-tab-tit-single a {
  position: fixed;
  cursor: pointer;
  z-index: 998;
  color: var(--color-white);
  background: #D7261C;
}
@media (min-width: 768px) {
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a {
    right: 0;
    top: 33.5vw;
    width: 140px;
    padding: 15px 12px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a:hover {
    opacity: 0.8;
  }
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a:link, .menu-tab .menu-tab-ttl .menu-tab-tit-single a:visited, .menu-tab .menu-tab-ttl .menu-tab-tit-single a:active, .menu-tab .menu-tab-ttl .menu-tab-tit-single a:hover {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a {
    top: inherit;
    right: 0;
    bottom: -27px;
    width: 100%;
    padding: 12px 10px;
    z-index: 90;
  }
}
.menu-tab .menu-tab-ttl .menu-tab-tit-single a .menu-tab-spn01 {
  display: block;
  font-size: 2.4rem;
  margin-top: -4px;
}
@media (max-width: 767px) {
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a .menu-tab-spn01 {
    font-size: 1.7rem;
    display: inline;
    margin-top: 0;
  }
}
.menu-tab .menu-tab-ttl .menu-tab-tit-single a .menu-tab-spn02 {
  display: block;
  font-size: 1.4rem;
  color: #ffe900;
  margin-top: -4px;
}
@media (max-width: 767px) {
  .menu-tab .menu-tab-ttl .menu-tab-tit-single a .menu-tab-spn02 {
    display: inline;
    margin-top: 0;
  }
}

/******************************************************************
■ TOP
*****************************************************************/
.heroarea {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.heroarea .scrolldown {
  display: none;
}
@media (min-width: 768px) {
  .heroarea .scrolldown {
    position: absolute;
    bottom: 0;
    left: min(8%, 150px);
    display: block;
    height: clamp(60px, 15%, 120px);
  }
  .heroarea .scrolldown span {
    position: absolute;
    left: 8px;
    top: clamp(2px, 8%, 12px);
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    writing-mode: vertical-rl;
    height: 100%;
  }
  .heroarea .scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #AFAFAF;
  }
  .heroarea .scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 8px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
}
@keyframes circlemove {
  0% {
    bottom: calc(100% - 4px);
  }
  100% {
    bottom: -2px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.index {
  .margin-bottom-s: calc(var(--margin-s) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
  .margin-bottom-m: calc(var(--margin-m) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
  .margin-bottom-l: calc(var(--margin-l) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
.index p {
  margin-bottom: 1em;
}
.index .contents {
  padding: var(--section-padding) 0;
}
.index .contents-inn {
  padding: 0 var(--margin-s);
}
@media (min-width: 768px) {
  .index .contents-inn {
    padding: 0;
  }
}
.index .bg_color {
  background-color: var(--color-gray-1);
}
.index .tit_type_2nd {
  --mb: 32px;
  --lineheight: 1;
  margin-bottom: var(--mb);
}
@media (min-width: 768px) {
  .index .tit_type_2nd {
    --mb: 56px;
  }
}
.index .tit_type_2nd .ttl-en {
  --fontsize: 2.8rem;
  --margin: 8px;
  font-family: "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: var(--fontsize);
  font-weight: normal;
  line-height: var(--lineheight);
  margin-bottom: calc(var(--margin) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  .index .tit_type_2nd .ttl-en {
    --fontsize: 5.6rem;
    --margin: 16px;
  }
}
@media (min-width: 768px) {
  .index .tit_type_2nd .ttl-en {
    font-size: 5.6rem;
  }
}
.index .tit_type_2nd .ttl-jp {
  --fontsize: 1.6rem;
  font-weight: bold;
  font-size: var(--fontsize);
}
@media (min-width: 768px) {
  .index .tit_type_2nd .ttl-jp {
    --fontsize: 2.4rem;
  }
}
.index .index-btn.submitBtn {
  --fontsize: 1.8rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .index .index-btn.submitBtn {
    --fontsize: 2.4rem;
  }
}
.index .index-btn.submitBtn li {
  width: min(100%, 440px);
  padding-bottom: 0 !important;
}
.index .index-btn.submitBtn li a {
  font-size: var(--fontsize);
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50vh;
  padding: 16px 0;
  box-shadow: none;
  font-weight: bold;
}
@media (min-width: 768px) {
  .index .index-btn.submitBtn li a {
    padding: 20px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .index .index-btn.submitBtn li a:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}
.index .index-btn.submitBtn li a::before {
  border: none;
}
.index .index-btn.submitBtn.index-btn-t {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .index .index-btn.submitBtn.index-btn-t {
    margin-top: 64px;
  }
}
.index .line-link-list a::after {
  border-color: var(--color-blue-2);
}
.index-msg__box {
  gap: var(--margin-l);
}
.index-msg__img {
  text-align: center;
}
.index-msg__img img {
  max-width: 960px;
}
.index-msg__lead {
  width: 100%;
}
@media (min-width: 768px) {
  .index-msg__lead {
    max-width: 960px;
    margin: auto;
  }
}
.index-msg__text {
  width: 100%;
}
@media (min-width: 768px) {
  .index-msg__text {
    font-size: 1.8rem;
  }
}
.index-msg__text p {
  margin-bottom: 1.8em;
}
.index-news.news-design-02 .contents-inn {
  position: relative;
  display: flex;
  flex-direction: inherit;
  flex-wrap: wrap;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .index-news.news-design-02 .contents-inn {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .index-news.news-design-02 .tit_type_2nd {
    width: 200px;
    text-align: left;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .index-news.news-design-02 .tit_type_2nd .ttl-jp br {
    display: none;
  }
}
.index-news.news-design-02 .index-box {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 -15px;
}
@media (min-width: 768px) {
  .index-news.news-design-02 .index-box {
    width: calc(100% - 200px);
  }
}
.index-news.news-design-02 .index-box .line-link-item {
  border: none;
}
.index-news.news-design-02 .index-box .line-link-item a {
  border: none;
  padding: 16px 20px 16px 16px;
  background-color: var(--color-white);
}
.index-news.news-design-02 .index-box .line-link-item a .list-block-ic .ic li {
  border: none;
}
.index-news.news-design-02 .index-box .line-link-item a .showdate {
  order: 1;
  padding: 5px 0 0 0;
}
.index-news.news-design-02 .index-box .line-link-item a .line-link-tit {
  flex: none;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .index-news.news-design-02 .index-btn.submitBtn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .index-news.news-design-02 .txt-link-btn {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .index-news.news-design-02 .txt-link-btn {
    margin-top: 8px;
  }
}
.index-news.news-design-02 .txt-link-btn a {
  position: relative;
  display: block;
  padding: 10px;
  padding-left: 20px;
}
.index-news.news-design-02 .txt-link-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg) translateY(-50%);
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}
.index-news.news-design-02 .txt-link-btn a[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
  width: 30px;
  height: 10px;
  transform: rotate(0);
}
@media (max-width: 767px) {
  .index-news.news-design-02 .txt-link-btn a {
    font-size: 1.3rem;
  }
}
.index-search .search-form {
  padding-bottom: 0;
}
.index-search .search-form-btn input[type=button] {
  --color-btn-bg: var(--color-primary);
  margin: 0;
}
@media (min-width: 768px) {
  .index-search .search-form-btn input[type=button] {
    margin: 20px 0 40px;
  }
}
.index-merit {
  --width: 100%;
  --column-gap: var(--margin-m);
  --row-gap: 40px;
}
@media (min-width: 768px) {
  .index-merit {
    --width: calc((100% - var(--column-gap)) / 2);
    --row-gap: 80px;
  }
}
.index-merit__box {
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  margin-bottom: 8px;
}
.index-merit__lead {
  width: var(--width);
}
.index-merit__lead-img {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .index-merit__lead-img {
    margin-bottom: 48px;
  }
}
.index-merit__lead-text {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .index-merit__lead-text {
    margin-bottom: 48px;
  }
}
.index-merit__cts {
  --row-gap: 32px;
  width: var(--width);
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
  row-gap: var(--row-gap);
}
@media (min-width: 768px) {
  .index-merit__cts {
    --row-gap: 40px;
  }
}
.index-merit__cts-item {
  width: calc((100% - var(--column-gap)) / 2);
  background-color: var(--color-white);
}
.index-merit__cts-btn {
  --fontsize: 1.6rem;
  font-size: var(--fontsize);
  font-weight: bold;
  width: 100%;
  gap: 16px;
}
@media (min-width: 768px) {
  .index-merit__cts-btn {
    --fontsize: 2rem;
  }
}
.index-merit__cts-btn a {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  border-radius: 50vh;
  padding: 12px;
  padding-left: 44px;
  line-height: 1;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .index-merit__cts-btn a {
    padding-left: 36px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .index-merit__cts-btn a:hover {
    opacity: 1;
    border-color: var(--color-primary);
  }
}
.index-merit__cts-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .index-merit__cts-btn a::after {
    left: 16px;
  }
}
.index-merit__bnr {
  width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .index-merit__bnr {
    width: 100%;
    max-width: 760px;
  }
}
.index-works {
  --gap: 40px;
}
@media (min-width: 768px) {
  .index-works {
    --gap: 0;
  }
}
.index-works .index-btn.submitBtn li a {
  font-size: 1.6rem;
  color: var(--color-black);
  padding: 12px 0;
}
@media (min-width: 768px) {
  .index-works .index-btn.submitBtn li a {
    padding: 22px 0;
  }
}
.index-works__box {
  gap: var(--gap);
}
.index-works__item {
  --gap: 24px;
  gap: var(--gap);
}
@media (min-width: 768px) {
  .index-works__item {
    --gap: 0;
  }
}
.index-works__img {
  --bgimg: url(../img/top/workstyle-ph-001.jpg);
  width: 100%;
  height: 50vw;
  background: var(--color-primary) var(--bgimg) center/cover no-repeat;
}
@media (min-width: 768px) {
  .index-works__img {
    width: 50%;
    height: auto;
    min-height: 380px;
  }
}
.index-works__img-topix {
  width: 100%;
  height: 62vw;
}
@media (min-width: 992px) {
  .index-works__img-topix {
    width: 50%;
    height: auto;
    min-height: 650px;
  }
}
.index-works__cts {
  --margin: var(--margin-l);
  gap: var(--margin);
  width: 100%;
  padding-inline: var(--margin-s);
}
@media (min-width: 768px) {
  .index-works__cts {
    --margin: 28px;
  }
}
@media (min-width: 768px) {
  .index-works__cts {
    width: 50%;
    padding: var(--margin-m) 6vw;
    align-self: center;
  }
}
.index-works__cts-topix {
  width: 100%;
}
@media (min-width: 992px) {
  .index-works__cts-topix {
    width: 50%;
  }
}
.index-works__cts-ttl {
  --fontsize: 2rem;
  --lineheight: 1.6;
  --margin: 20px;
  position: relative;
  font-size: var(--fontsize);
  font-weight: bold;
  line-height: var(--lineheight);
  margin-bottom: calc(var(--margin) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  .index-works__cts-ttl {
    --fontsize: 3.2rem;
    --margin: 24px;
  }
}
.index-works__cts-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
}
.index-works__cts-btn {
  container: index-works__cts-btn/inline-size;
  --column-gap: 24px;
  --row-gap: 20px;
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
  row-gap: var(--row-gap);
}
.index-works__cts-btn.submitBtn.index-btn li {
  padding: 0 !important;
}
@container index-works__cts-btn (width >= 500px) {
  .index-works__cts-btn.submitBtn.index-btn li {
    width: calc((100% - 24px) / 2);
  }
}
.index-works__cts-active {
  --borderradius: 4px;
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--borderradius);
  padding: 34px 29px 42px;
}
@media (min-width: 768px) {
  .index-works__cts-active {
    padding: 32px 36px;
    margin-top: 20px;
  }
}
.index-works__cts-active-ttl {
  font-weight: bold;
  margin-bottom: calc(18px - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  .index-works__cts-active-ttl {
    font-size: 1.8rem;
    margin-bottom: calc(16px - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
  }
}
.index-works__cts-active-text {
  margin-bottom: calc(40px - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  .index-works__cts-active-text {
    margin-bottom: calc(24px - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
  }
}
.index-works__cts-active::before {
  --padding: 10px;
  content: "";
  position: absolute;
  top: var(--padding);
  left: var(--padding);
  width: calc(100% - var(--padding) * 2);
  height: calc(100% - var(--padding) * 2);
  border: 1px solid var(--color-primary);
  border-radius: var(--borderradius);
}
@media (min-width: 768px) {
  .index-works__cts-active::before {
    --padding: 8px;
  }
}
.index-works__cts-active .submitBtn.index-btn {
  padding: 4px !important;
}
.index-works__cts-active .submitBtn.index-btn li {
  padding: 0 !important;
  width: 100%;
  max-width: 438px;
}
.index-works__cts-active .submitBtn.index-btn li a {
  --lineheight: 1.6;
  line-height: var(--lineheight);
  background: var(--color-primary);
  background-size: 20px;
  color: var(--color-white);
  padding: 8px 20px;
}
@media (min-width: 768px) {
  .index-works__cts-active .submitBtn.index-btn li a {
    padding: 18px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .index-works__cts-active .submitBtn.index-btn li a:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
  .index-works__cts-active .submitBtn.index-btn li a:hover::before {
    background-color: var(--color-primary);
  }
  .index-works__cts-active .submitBtn.index-btn li a:hover::after {
    border-top: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
  }
}
.index-works__cts-active .submitBtn.index-btn li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  transform: rotate(0);
  -webkit-mask: url(../img/top/ic-announce-w.svg) center no-repeat;
          mask: url(../img/top/ic-announce-w.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.index-works__cts-active .submitBtn.index-btn li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg) translateY(-50%);
}
.index-graduate {
  --gap: 40px;
  --width: 100%;
}
@media (min-width: 768px) {
  .index-graduate {
    --gap: 64px;
    --width: calc((100% - var(--gap)) / 2);
  }
  .index-graduate .tit_type_2nd {
    --mb: 40px;
  }
}
.index-graduate__box {
  gap: var(--gap);
}
.index-graduate__img {
  width: var(--width);
}
.index-graduate__cts {
  width: var(--width);
}
.index-graduate__text {
  margin-bottom: calc(40px - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
.index-interview.interview-design-05 {
  /*pcサイズ時カラム数を指定。*/
  /*padサイズ時カラム数を指定。*/
}
@media (min-width: 768px) {
  .index-interview.interview-design-05 .contents-inn {
    max-width: 100%;
  }
}
.index-interview.interview-design-05 .tit_type_2nd {
  position: relative;
}
.index-interview.interview-design-05 .d-md-flex {
  border-top: 1px solid var(--color-primary);
}
@media (max-width: 767px) {
  .index-interview.interview-design-05 .d-md-flex {
    font-size: 0;
    border-bottom: 1px solid var(--color-primary);
    overflow-y: hidden;
    margin: 0 calc((100% - 100vw) / 2);
  }
}
@media (min-width: 768px) {
  .index-interview.interview-design-05 .d-md-flex {
    justify-content: left !important;
  }
}
.index-interview.interview-design-05 .d-md-flex li {
  position: relative;
  background: none;
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .index-interview.interview-design-05 .d-md-flex li {
    border-bottom: 1px solid var(--color-primary);
    width: calc((100% - 1px * (2 - 1)) / 2);
  }
  .index-interview.interview-design-05 .d-md-flex li:not(:nth-child(2n)) {
    border-right: 1px solid var(--color-primary);
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .index-interview.interview-design-05 .d-md-flex li {
    width: calc((100% - 1px * (4 - 1)) / 4);
  }
  .index-interview.interview-design-05 .d-md-flex li:not(:nth-child(4n)) {
    border-right: 1px solid var(--color-primary);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .index-interview.interview-design-05 .d-md-flex li::before {
    content: "";
    display: block;
    background: var(--color-primary);
    min-height: 600px;
    position: absolute;
    width: 1px;
    right: 0;
  }
}
.index-interview.interview-design-05 .d-md-flex li article {
  height: 100%;
}
.index-interview.interview-design-05 .flex-link-type_b a {
  overflow: inherit;
  overflow: hidden;
  height: 100%;
  background: #FFFFFF;
  transition: all 0.5s ease-out;
}
@media (min-width: 768px) {
  .index-interview.interview-design-05 .flex-link-type_b a {
    padding: 8vw;
  }
}
@media (min-width: 992px) {
  .index-interview.interview-design-05 .flex-link-type_b a {
    padding: 4vw;
  }
}
@media (max-width: 767px) {
  .index-interview.interview-design-05 .flex-link-type_b a {
    padding: 30px;
  }
}
.index-interview.interview-design-05 .flex-link-type_b a .flex-center-img {
  border: none;
  width: 100%;
  padding-top: 100%;
}
.index-interview.interview-design-05 .flex-link-type_b a .flex-center-img::before, .index-interview.interview-design-05 .flex-link-type_b a .flex-center-img::after {
  display: none;
}
.index-interview.interview-design-05 .flex-link-type_b a .flex-center-img img {
  transition: transform 0.3s ease;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-interview.interview-design-05 .flex-link-type_b a .flex-link-type_b-txt {
  position: relative;
  padding: 1.5em 0 0 0;
  border: none;
}
.index-interview.interview-design-05 .flex-link-type_b a .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  .index-interview.interview-design-05 .flex-link-type_b a:hover {
    opacity: 1;
  }
  .index-interview.interview-design-05 .flex-link-type_b a:hover img {
    transform: scale(1.1);
  }
}
.index-list svg.svg-icon {
  fill: var(--color-gray-9);
}
.index-announce {
  --fontsize: 2rem;
}
@media (min-width: 768px) {
  .index-announce {
    --fontsize: 2.4rem;
  }
}
.index-announce .tit_type_a {
  font-size: var(--fontsize);
}
.index-announce__box {
  width: min(100%, 890px);
  margin: auto;
}
.index-announce__table {
  --fontsize: 1.4rem;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .index-announce__table {
    --fontsize: 1.6rem;
  }
}
@media (min-width: 768px) {
  .index-announce__table {
    flex-direction: row;
  }
}
.index-announce__ttl {
  --margin: 24px;
  display: grid;
  place-items: center;
  height: 100%;
  height: auto;
  background-color: var(--color-gray-4);
  border: 1px solid var(--color-gray-5);
  font-size: var(--fontsize);
  font-weight: bold;
  padding: calc(var(--margin) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2) var(--margin);
}
@media (min-width: 768px) {
  .index-announce__ttl {
    --margin: 20px;
  }
}
@media (min-width: 768px) {
  .index-announce__ttl {
    padding: 0 var(--margin);
    width: 28%;
  }
}
@media (min-width: 768px) {
  .index-announce__cts {
    width: 24%;
  }
}
.index-announce__th {
  --margin: 16px;
  background-color: var(--color-gray-2);
  border: 1px solid var(--color-gray-5);
  border-top: none;
  border-bottom: none;
  font-size: var(--fontsize);
  font-weight: bold;
  padding: calc(var(--margin) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2) var(--margin);
}
@media (min-width: 768px) {
  .index-announce__th {
    --margin: 14px;
  }
}
@media (min-width: 768px) {
  .index-announce__th {
    border-top: 1px solid var(--color-gray-5);
    border-left: none;
  }
}
.index-announce__td {
  --margin: 14px;
  border: 1px solid var(--color-gray-5);
  border-top: none;
  padding: calc(var(--margin) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2) var(--margin);
}
@media (min-width: 768px) {
  .index-announce__td {
    --margin: 36px;
  }
}
@media (min-width: 768px) {
  .index-announce__td {
    border-left: none;
  }
}
.index-announce__sup {
  width: 100%;
  text-align: left;
}
.sliding {
  --sliding-imgW-sp: 1076px;
  --sliding-imgW-pc: 2206px;
  --sliding-imgW: var(--sliding-imgW-sp);
  --sliding-imgH: 160px;
  --margin: 40px;
  overflow: hidden;
  height: calc(var(--sliding-imgH) + var(--margin) * 2);
  background: url(../img/top/sliding-ph-001.png) repeat-x;
  background-size: var(--sliding-imgW) var(--sliding-imgH);
  animation: slider 80s linear infinite;
}
@media (min-width: 768px) {
  .sliding {
    --sliding-imgW: var(--sliding-imgW-pc);
    --sliding-imgH: 328px;
    --margin: 56px;
  }
}
@media (min-width: 768px) {
  .sliding {
    animation: slider-pc 80s linear infinite;
  }
}
@keyframes slider {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: var(--sliding-imgW-sp) 50%;
  }
}
@keyframes slider-pc {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: var(--sliding-imgW-pc) 50%;
  }
}
#graduate .sliding {
  --margin: 0;
  height: var(--sliding-imgH);
  background-image: url(../img/graduate/sliding-ph-001.jpg);
}

#graduate .main-type-a {
  aspect-ratio: var(--aspect-ratio);
}
@media (min-width: 768px) {
  #graduate .main-type-a {
    --aspect-ratio: 71/29;
  }
}
#graduate .contents {
  padding: var(--section-padding) 0;
}
#graduate .contents img {
  aspect-ratio: var(--aspect-ratio);
}
#graduate .contents-inn {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #graduate .contents-inn {
    padding: 0;
  }
}
#graduate .submitBtn.graduate-btn {
  padding: 4px !important;
}
#graduate .submitBtn.graduate-btn li {
  padding: 0 !important;
  width: calc(100% - 32px);
  max-width: 500px;
}
#graduate .submitBtn.graduate-btn li a {
  --lineheight: 1.6;
  line-height: 1;
  background: var(--color-primary);
  background-size: 20px;
  color: var(--color-white);
  padding: 22px 20px;
  font-weight: bold;
  box-shadow: none;
  border-radius: 50vh;
  border: 1px solid var(--color-primary);
}
@media (min-width: 768px) {
  #graduate .submitBtn.graduate-btn li a {
    padding: 18px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #graduate .submitBtn.graduate-btn li a:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
  #graduate .submitBtn.graduate-btn li a:hover::before {
    border-color: var(--color-primary);
  }
}
#graduate .submitBtn.graduate-btn li a::before {
  content: "";
  transform: rotate(135deg);
  border-width: 2px;
  width: 8px;
  height: 8px;
  right: 18px;
}
@media (min-width: 768px) {
  #graduate .submitBtn.graduate-btn li a::before {
    right: 12px;
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  #graduate .submitBtn.graduate-btn li a::before {
    right: 28px;
  }
}
#graduate .leadBox {
  --ttlfontsize: 1.8rem;
  --ttl-lineheight: 1.9;
  --aspect-ratio: 75/38;
  --gap: 32px;
  background: linear-gradient(180deg, #A6D8FF, #2581C9);
  color: var(--color-white);
  text-shadow: 1px 1px 1px var(--color-primary);
  font-weight: bold;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #graduate .leadBox {
    --ttlfontsize: 3.2rem;
    --ttl-lineheight: 1.75;
    --aspect-ratio: 283/340;
    --gap: 40px;
  }
}
@media (min-width: 768px) {
  #graduate .leadBox {
    padding-bottom: var(--section-padding);
  }
}
#graduate .leadBox-ttl {
  font-size: var(--ttlfontsize);
  line-height: var(--ttl-lineheight);
  letter-spacing: 0.08em;
  margin-bottom: calc(var(--gap) - (var(--ttlfontsize) * var(--ttl-lineheight) - var(--ttlfontsize)) / 2);
  font-weight: bold;
}
@media (min-width: 768px) {
  #graduate .leadBox-ttl {
    --gap: 56px;
  }
}
#graduate .leadBox-item {
  flex-direction: column;
  gap: var(--gap);
}
@media (min-width: 768px) {
  #graduate .leadBox-item {
    flex-direction: row;
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  #graduate .leadBox-item {
    margin-left: -64px;
  }
}
#graduate .leadBox-img {
  order: 2;
}
@media (min-width: 768px) {
  #graduate .leadBox-img {
    order: 1;
    width: 25%;
  }
}
#graduate .leadBox-text {
  order: 1;
}
@media (min-width: 768px) {
  #graduate .leadBox-text {
    order: 2;
    width: calc(75% - var(--gap));
  }
}
#graduate .leadBox-text p {
  margin-bottom: 1em;
}
#graduate .job {
  --aspect-ratio: 69/40;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  #graduate .job {
    --aspect-ratio: 1/1;
  }
}
#graduate .job .contents-inn {
  padding: 0;
}
#graduate .job-ph-pos {
  display: none;
  position: absolute;
}
@media (min-width: 1400px) {
  #graduate .job-ph-pos {
    display: block;
  }
}
#graduate .job-ph-pos101 {
  width: 12.8%;
  --aspect-ratio: 139/340;
  top: 22.7%;
  left: -16.3%;
}
#graduate .job-ph-pos102 {
  width: 9.3%;
  --aspect-ratio: 5/17;
  top: 55.7%;
  right: -13.9%;
  transform: translateY(-50%);
}
#graduate .job-ph-pos103 {
  width: 9.6%;
  --aspect-ratio: 5/17;
  bottom: 6.8%;
  left: -14.3%;
}
#graduate .job-ttl {
  --fontsize: 2rem;
  --lineheight: 1.75;
  --mb: 32px;
  font-size: var(--fontsize);
  line-height: var(--lineheight);
  letter-spacing: 0.08em;
  font-weight: bold;
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .job-ttl {
    --fontsize: 3.2rem;
    --mb: 54px;
  }
}
#graduate .job-ttl span {
  background: linear-gradient(transparent 60%, #FFF2BC 40%);
}
#graduate .job-text {
  --mb: 40px;
  font-size: var(--fontsize);
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .job-text {
    --fontsize: 1.8rem;
    --mb: 104px;
  }
}
#graduate .job-ph {
  --gap: 42px;
  --mb: 48px;
  gap: var(--gap);
  flex-direction: column;
  margin-bottom: var(--mb);
}
@media (min-width: 768px) {
  #graduate .job-ph {
    --gap: 9%;
    --mb: 104px;
    flex-direction: row;
  }
}
#graduate .job-ph img {
  border-radius: var(--border-radius);
}
#graduate .job-cat {
  --gap: 20px 23px;
  --mb: 48px;
  gap: var(--gap);
  border-radius: var(--border-radius);
  background-color: rgba(37, 129, 201, 0.2);
  padding: 20px 16px;
  margin-bottom: var(--mb);
}
@media (min-width: 768px) {
  #graduate .job-cat {
    --gap: 24px;
    --mb: 80px;
    padding: 40px 32px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
}
#graduate .job-cat-li {
  border-radius: 50vh;
  width: calc((100% - 23px) / 2);
  background-color: var(--color-white);
  color: var(--color-primary);
  line-height: 1;
  padding: 20px 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #graduate .job-cat-li {
    width: calc((100% - var(--gap) * 2) / 3);
    padding: 24px 10px;
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  #graduate .job-btn {
    margin-bottom: 70px;
  }
}
#graduate .work {
  --bgSize: 100% auto, 100% auto;
  --margin: 24px;
  --gap: 40px;
  background: url(../img/graduate/bg-top.png) left top no-repeat, url(../img/graduate/bg-bottom.png) right bottom no-repeat;
  background-size: var(--bgSize);
}
@media (min-width: 768px) {
  #graduate .work {
    --bgSize: 57.3% auto, 57.3% auto;
    --margin: 40px;
    --gap: 64px;
  }
}
#graduate .work-box {
  position: relative;
  gap: var(--gap);
}
#graduate .work-line {
  height: 1px;
  background: linear-gradient(to right, #A1A1A1, #A1A1A1 2px, transparent 2px, transparent 4px);
  background-size: 4px 1px;
}
#graduate .work-item {
  flex-direction: column;
  gap: var(--margin);
  position: relative;
}
@media (min-width: 768px) {
  #graduate .work-item {
    flex-direction: row;
  }
}
#graduate .work-item img {
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  #graduate .work-list1 {
    width: 50%;
  }
}
@media (min-width: 768px) {
  #graduate .work-list2 {
    width: calc(50% - var(--margin));
  }
}
#graduate .work-ttl {
  --fontsize: 1.8rem;
  --mb: 16px;
  font-size: var(--fontsize);
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .work-ttl {
    --fontsize: 2.4rem;
    --mb: 24px;
  }
}
#graduate .work-ttl span {
  color: var(--color-primary);
}
#graduate .work-text p {
  margin-bottom: 1em;
}
#graduate .work-text p:last-child {
  margin-bottom: 0;
}
#graduate .itw {
  --aspect-ratio: 15/12;
  background-color: #F6F6F6;
}
@media (min-width: 768px) {
  #graduate .itw {
    --aspect-ratio: 5/6;
  }
}
#graduate .itw .submitBtn.graduate-btn li a::before {
  transform: rotate(45deg);
}
#graduate .itw .contents-inn {
  --gap: 16px;
  flex-direction: column;
  gap: var(--gap);
}
@media (min-width: 768px) {
  #graduate .itw .contents-inn {
    --gap: 64px;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  #graduate .itw-list1 {
    order: 2;
    width: calc(50% - var(--gap));
  }
}
@media (min-width: 768px) {
  #graduate .itw-list2 {
    order: 1;
    width: 50%;
  }
}
#graduate .itw-ttl {
  --fontsize: 2rem;
  --lineheight: 1.75;
  --decoline: 3px;
  --mb: 24px;
  position: relative;
  font-weight: bold;
  line-height: var(--lineheight);
  padding-left: calc(10px + var(--decoline));
  margin-bottom: var(--mb);
}
@media (min-width: 768px) {
  #graduate .itw-ttl {
    --fontsize: 2.4rem;
    --decoline: 6px;
    --mb: 40px;
  }
}
#graduate .itw-ttl::before, #graduate .itw-ttl::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: var(--decoline);
  height: calc(50% + 5px);
  background-color: #80C7FF;
}
#graduate .itw-ttl::after {
  background-color: var(--color-primary);
  top: 50%;
}
#graduate .itw-text {
  --mb: 40px;
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .itw-text {
    --mb: 47px;
  }
}
#graduate .seminar {
  --aspect-ratio: 35/8;
  --decolineW: 30px;
  --decolineH: 2px;
  color: var(--color-white);
  padding-inline: 15px;
}
@media (min-width: 768px) {
  #graduate .seminar {
    padding-inline: 0;
    --decolineW: 50px;
    --decolineH: 4px;
  }
}
#graduate .seminar .contents-inn {
  background-image: url(../img/graduate/seminar-bg.jpg);
  padding: 48px 24px;
}
#graduate .seminar-ttl {
  --mb: 32px;
  --fontsize: 2rem;
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .seminar-ttl {
    --mb: 54px;
    --fontsize: 2.4rem;
  }
}
#graduate .seminar-ttl::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: var(--decolineW);
  height: var(--decolineH);
  transform: translateX(-50%);
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  #graduate .seminar-ttl::after {
    bottom: -16px;
  }
}
#graduate .seminar-text {
  --mb: 40px;
  font-size: var(--fontsize);
  font-weight: bold;
  margin-bottom: calc(var(--mb) - (var(--fontsize) * var(--lineheight) - var(--fontsize)) / 2);
}
@media (min-width: 768px) {
  #graduate .seminar-text {
    --fontsize: 2rem;
  }
}
#graduate .seminar-link-li {
  width: min(100%, 350px);
  margin: auto;
}/*# sourceMappingURL=style.css.map */