@charset "utf-8";

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  width: 100%;
  color: #231815;
  background-color: #fff;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  word-wrap: break-word;
}

html,
body {
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.pos_a {
  position: absolute;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.red {
  color: #e60020;
}

.redBg {
  background-color: #e60020;
  padding: 0 2%;
}

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

.pc,
.pc_only {
  display: block;
}

.sp,
.tab_only,
.spNav {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .pc_only {
    display: none !important;
  }

  .tab_only,
  .spNav {
    display: block !important;
  }
}

@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

/* =========================

	header

=========================*/
header {
  background-color: #fff;
  width: 100%;
}

header .hdInner {
  display: flex;
  position: fixed;
  height: 88px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  background-color: #fff;
}

header .hdInner .header_logo {
  max-width: 275px;
  margin-left: 4vw;
  margin-right: auto;
  width: 100%;
}

header .hdInner .Gnav {
  margin-right: 4vw;
  width: 100%;
}

header .hdInner .Gnav ul {
  color: #595757;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 22px;
}

header .hdInner .Gnav ul li {
  position: relative;
  margin-left: 1.6rem;
}

header .hdInner .Gnav li a {
  opacity: 1;
  transition: none;
  padding: 9px 16px;
}

@media screen and (max-width: 1250px) {
  header .hdInner .header_logo {
    max-width: 200px;
  }
  header .hdInner .Gnav ul {
      font-size: 1.3rem;
  }
  header .hdInner .Gnav ul li {
    margin-left: 0.5rem;
}

}

/* ------ ボタンの設定 --------*/


header .hdInner ul .jobBtn:hover {
  position: relative;
  line-height: 41px;
  height: 41px;
  background-color: #231815;
  color: #fff;
  padding: 9px 15px;
  border-radius: 50px;
  border: solid 1px #231815;
  text-align: center;
}

header .hdInner ul .jobBtn:hover::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 34px;
  background-image: linear-gradient(-45deg, #ffffff 25%, #4b4949 25%, #4b4949 50%, #ffffff 50%, #ffffff 75%, #4b4949 75%, #4b4949 100%);
  background-size: 3px 3px;
  position: absolute;
  top: 4px;
  right: -4px;
  z-index: -1;
  border-radius: 50px;
}

@media screen and (max-width: 1024px) {
  header .hdInner {
    height: 75px;
    z-index: 2;
  }

  header .hdInner ul .jobBtn {
    width: 73%;
    max-width: 280px;
    height: 68px;
  }

  header .hdInner ul .jobBtn a {
    padding: 17px 34px;
  }


  header .hdInner ul .jobBtn a::after {
    height: 68px;
  }
}

@media screen and (max-width: 599px) {
  header .hdInner {
    height: 55px;
  }

  header .hdInner .header_logo {
    max-width: 150px;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* =========================

	ハンバーガーメニュー

=========================*/
@media screen and (max-width: 1024px) {
  .Gnav {
    display: none !important;
  }

  header .gnavInner {
    display: block;
    height: 80px;
  }

  header .gnavInner .header_logo {
    text-align: center;
    margin: 10px auto;
  }

  header .gnavInner .header_logo img {
    width: 100px;
  }

  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 4%;
    top: 17px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 35px;
    height: 4px;
    left: 6px;
    background: #595757;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 75px;
    left: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }

  nav.globalMenuSp ul {
    background: #FFF;
    width: 60.1%;
    margin-right: auto;
    padding: 4% 2% 22% 2%;
    font-size: 2.4rem;
    line-height: 2.2rem;
    height: 100%;
    overflow-y: scroll;
  }

  nav.globalMenuSp ul li {
    margin-left: 8%;
    padding-bottom: 3.6rem;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenuSp ul .topLine:before,
  nav.globalMenuSp ul .btmLine:after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 4px;
    background-color: #b2b2b2;
  }

  nav.globalMenuSp ul .topLine:before {
    margin-bottom: 20px;
  }

  nav.globalMenuSp ul .btmLine:after {
    margin-top: 20px;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #595757;
    line-height: 32px;
  }

  nav.globalMenuSp .spSub {
    padding-top: 4%;
    width: 100%;
  }

  nav.globalMenuSp .spSub .myPage {
    padding-left: 0;
    max-width: 110px;
  }

  nav.globalMenuSp .spSub .myPage a {
    color: #000;
  }

  nav.globalMenuSp .spSub .sns {
    padding-left: 0;
    justify-content: flex-start;
    margin-top: 0%;
  }

  nav.globalMenuSp .spSub .sns p {
    width: 100%;
    max-width: 48px;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(40%);
  }
}

@media screen and (max-width: 599px) {
  .hamburger {
    top: 8px
  }

  .hamburger span {
    height: 2px;
  }

  nav.globalMenuSp {
    top: 55px;
  }

  nav.globalMenuSp ul {
    font-size: 1.6rem;
  }

  nav.globalMenuSp ul li {
    padding-bottom: 2.6rem;
  }

  nav.globalMenuSp ul li a {
    line-height: 22px;
  }

  header .hdInner ul .jobBtn {
    height: 38px;
  }

  header .hdInner ul .jobBtn a {
    padding: 7px 34px;
  }


  header .hdInner ul .jobBtn a::after {
    height: 38px;
  }
}

/* =========================

	mainV

=========================*/
#hero {
  background-color: #e60020;
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding-top: 88px;
}



#hero .hero_sp {
  display: none;
}
@media (min-width: 1025px) {
  #hero .hero_fv {
    width: 100%;
    height: calc(100vh - 88px);
  }
  #hero .hero_fv picture {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #hero .hero_fv img {
    max-height: 100%;
  }
}

@media (max-width: 1024px) {
  #hero {
    padding-top: 75px;
  }

  #hero .hero_fv {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25% 0 1.25%;
  }
}

@media (max-width: 599px) {
  #hero {
    padding-top: 55px;
  }
}

/* =========================

	aboutFukusi

=========================*/
#aboutFukushi {
  background-color: #fff;
  overflow: hidden;
}

#aboutFukushi h2 {
  margin: 100px auto 80px;

}

#aboutFukushi h2 img {
  max-width: 120px;
  width: 20%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

#aboutFukushi .kittyImg {
  max-width: 400px;
  text-align: center;
  margin: 0 auto -26px;
  width: 50%;
}

#aboutFukushi .aboutBg {
  background-color: #e60020;
  padding: 0 2%;
}

#aboutFukushi .aboutTxt {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4% 0;
}

#aboutFukushi .aboutTxt p {
  line-height: 2.3;
}

#aboutFukushi .aboutTxt .big {
  font-size: 2.2rem;
  margin-top: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 40px;
}

#aboutFukushi .aboutTxt .acc01 {
  width: 22.98%;
  bottom: 48%;
  left: -4%;
}

#aboutFukushi .aboutTxt .acc02 {
  width: 14.83%;
  bottom: 9%;
  left: -4%;
}

#aboutFukushi .aboutTxt .acc03 {
  width: 15.83%;
  top: -50px;
  right: 2%;
}

#aboutFukushi .aboutTxt .acc04 {
  width: 22.16%;
  bottom: 11px;
  right: -2%;
}

@media (max-width: 1024px) {
  #aboutFukushi h2 img {
    max-width: 100px;
    width: 15%;
  }

  #aboutFukushi .kittyImg {
    max-width: 200px;
    width: 40%;
    margin-bottom: -10px;
  }

  #aboutFukushi .aboutTxt {
    padding: 50px 0;
  }

  #aboutFukushi .aboutTxt .acc01 {
    width: 26.98%;
    top: 0;
    left: -1%;
  }

  #aboutFukushi .aboutTxt .acc02 {
    width: 19.83%;
    bottom: 20px;
    left: -10px;
  }

  #aboutFukushi .aboutTxt .acc03 {
    width: 20.83%;
    top: -50px;
  }

  #aboutFukushi .aboutTxt .acc04 {
    width: 25.16%;
    bottom: 21%;
  }
}

@media (max-width: 599px) {
  #aboutFukushi h2 {
    margin: 10vh auto 8%;
  }

  #aboutFukushi h2 img {
    width: 15%;
  }

  #aboutFukushi .aboutTxt {
    font-size: 1.7rem;
    padding-bottom: 28%;
  }

  #aboutFukushi .aboutTxt .big {
    line-height: 34px;
    font-size: 2rem;
    margin-bottom: 3%;
  }

  #aboutFukushi .aboutTxt .acc01 {
    width: 28.98%;
    left: -2%;
  }

  #aboutFukushi .aboutTxt .acc02 {
    width: 26.83%;
    bottom: 20px;
    left: 0px;
  }

  #aboutFukushi .aboutTxt .acc03 {
    width: 24.83%;
    top: -10px;
    right: 0;
  }

  #aboutFukushi .aboutTxt .acc04 {
    width: 31.16%;
    bottom: 5%;

  }
}

/* =========================

	intro

=========================*/
#intro {
  margin-bottom: 80px;
  overflow: hidden;
  padding: 80px 0;
}

#intro h2 {
  width: 51.68%;
  margin: 0 auto 10px;
  text-align: center;
  max-width: 870px;
}

#intro h2+p {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  padding: 0 2%;
}

#intro .introBox {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#intro .introBox .jobBtn01 {
  top: 1%;
  right: 16%;
  width: 18%;
}

#intro .introBox .jobBtn02 {
  bottom: 27%;
  right: 8%;
  width: 18%;
}

#intro .introBox .jobBtn03 {
  bottom: 38%;
  left: 6%;
  width: 18%;
}

#intro .introBox .acc05 {
  width: 16.3%;
  top: -21px;
  left: 11%;
}

#intro .introBox .acc06 {
  width: 15.69%;
  top: 27%;
  left: 0;
}

#intro .introBox .acc07 {
  width: 13.44%;
  bottom: 4%;
  left: 0;
}

#intro .introBox .acc08 {
  width: 15.69%;
  bottom: -10%;
  left: 13%;
}

#intro .introBox .acc09 {
  width: 13.69%;
  top: -6%;
  right: 0;
}

#intro .introBox .acc10 {
  width: 21.91%;
  top: 20%;
  right: -15px;
}

#intro .introBox .acc11 {
  width: 14.69%;
  bottom: -7%;
  right: 17%;
}

#intro .introBox .acc12 {
  width: 16.86%;
  bottom: -8%;
  right: 0
}

#intro .introMap {
  max-width: 680px;
  width: 47.962%;
  margin: 0 auto;
}

#intro .introMap .svgWrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

#intro .introMap .svgWrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* introMap */
.cls-1 {
  fill: #ee87b4;
}

.cls-2 {
  fill: #fff;
}

.cls-3 {
  fill: #ef93bb;
}

.cls-4 {
  fill: #f3a9c9;
}

.cls-5 {
  fill: #f39800;
}

.cls-6 {
  fill: #f6ab00;
}

.cls-7 {
  fill: #fabe00;
}

.cls-8 {
  fill: #5bb645;
}

.cls-9 {
  fill: #7dc05e;
}

.cls-10 {
  fill: #9acc7b;
}

.cls-11 {
  fill: #898989;
}

@media (max-width: 1024px) {
  #intro {
    padding-bottom: 16%;
  }

  #intro h2+p {
    margin-bottom: 100px;
  }

  #intro .introBox .acc05 {
    width: 17.3%;
    top: -17%;
  }

  #intro .introBox .acc06 {
    width: 16.69%;
    top: 20%;
    left: 2%;
  }

  #intro .introBox .acc07 {
    width: 14.44%;
    bottom: 5%;
    left: 30px;
  }

  #intro .introBox .acc08 {
    width: 16.69%;
    bottom: -18%;
    left: 16%;
  }

  #intro .introBox .acc09 {
    width: 17.69%;
    top: -29%;
    right: 10px;
  }

  #intro .introBox .acc10 {
    right: -3px;
  }

  #intro .introBox .acc11 {
    width: 16.69%;
    bottom: -10%;
    right: 15%;
  }

  #intro .introBox .acc12 {
    width: 18.86%;
    bottom: -31%;
    right: 12px;
  }
}

@media (max-width: 599px) {
  #intro {
    padding: 4vh 0 10vh;
    margin-bottom: 4%;
  }

  #intro .introBox {
    margin: 30% auto 20%;
  }

  #intro h2 {
    width: 91.68%;
  }

  #intro h2+p {
    font-size: 1.4rem;
    margin-bottom: 8vh;
  }

  #intro .introMap {
    width: 70.962%;
  }

  #intro .introBox .jobBtn01 {
    right: 2%;
    width: 32%;
    top: -10%;
    max-width: 200px;
  }

  #intro .introBox .jobBtn02 {
    right: 2%;
    bottom: -5%;
    width: 32%;
    max-width: 2000px;
  }

  #intro .introBox .jobBtn03 {
    left: 0%;
    bottom: -2%;
    width: 32%;
    max-width: 200px;
  }

  #intro .introBox .acc05 {
    left: 25%;
    width: 20.3%;
    top: -28%;
  }

  #intro .introBox .acc06 {
    width: 20.69%;
    top: -10%;
  }

  #intro .introBox .acc07 {
    width: 15.44%;
    bottom: 9%;
    left: 10px;
  }

  #intro .introBox .acc08 {
    width: 20.69%;
    bottom: -38%;
  }

  #intro .introBox .acc09 {
    top: -34%;
    width: 20.69%;
  }

  #intro .introBox .acc10 {
    top: 2%;
  }

  #intro .introBox .acc11 {
    width: 20.69%;
    bottom: -30%;
    right: 28%;
  }

  #intro .introBox .acc12 {
    width: 23.86%;
    bottom: -36%;
  }
}

/* =========================

	モーダル

=========================*/

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  max-width: 800px;
  width: 94%;
}

#modal01 .modal-content,
#modal02 .modal-content,
#modal03 .modal-content {
  background-color: #f19ec2;
}

#modal04 .modal-content,
#modal05 .modal-content,
#modal06 .modal-content {
  background-color: #f9b700;
}

#modal07 .modal-content,
#modal08 .modal-content,
#modal09 .modal-content {
  background-color: #a8c887;
}

.modal-content .modal-inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 6% 6% 2% 6%;
}

.modal-content h3 {
  margin: 0 auto 20px;
  width: 100%;
  text-align: center;
  max-width: 600px;
}

.modal-content .clearfix {
  max-width: 580px;
  margin: 0 auto;
}

.modal-content .space {
  float: right;
  /*画像の位置を右下にしたい場合はright*/
  height: 34px;
  /*画像上の余白の高さ*/
}

.modal-content .modalImg {
  float: right;
  /*画像の位置を右下にしたい場合はright*/
  clear: both;
  /*.spaceのfloat解除*/
  margin: 20px 0 0 10px;
  width: 43%;
}

/* modal03 */
#modal03 .modal-content .modalImg {
  width: 41%;
}

/* modal05 */
#modal05 .modal-content .space {
  height: 75px;
}

#modal05 .modal-content .modalImg {
  margin: 10px 0 0 10px;
  width: 44%;
}

/* modal06 */
#modal06 .modal-content .space {
  height: 67px;
}

#modal06 .modal-content .modalImg {
  width: 28%;
}

/* modal07 */
#modal07 .modal-content .modalImg {
  width: 40%;
}

/* modal08 */
#modal08 .modal-content .modalImg {
  width: 37%;
}


.modal .toLink {
  display: block;
  background-color: #9fa0a0;
  color: #fff;
  padding: 10px 2%;
  font-size: 1.6rem;
  border-radius: 8px;
  line-height: 22px;
  margin-top: -40px;
  margin-bottom: 2%;
  margin-left: 5%;
  text-align: center;
  width: 100%;
  max-width: 250px;
}

.modal .toLink:hover {
  background-color: #231815;
  opacity: 1;
}

.modal-content .copy img {
  max-width: 354px;
  width: 70%;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* 閉じるボタン */
.closeBtn {
  position: absolute;
  top: -45px;
  right: 0px;
  width: 50px;
  height: 24px;
  z-index: 9999;
  cursor: pointer;
}

.closeBtn span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

.closeBtn span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}

.closeBtn span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}

@media (max-width: 599px) {
  .modal-content {
    padding: 5%;
  }

  .modal-content .modal-inner {
    border-radius: 10px;
  }

  .modal-content h3 {
    margin-bottom: 4%;
  }

  .modal-content .space {
    height: 50px;
  }

  .modal-content p {
    font-size: 1.1rem;
    padding: 0;
  }

  .modal-content .modalImg {
    margin-top: 0;
    width: 38%;
  }

  #modal02 .modal-content .modalImg {
    width: 36%;
    margin-top: 10px;
  }

  #modal03 .modal-content .modalImg {
    width: 38%;
  }

  #modal05 .modal-content .modalImg {
    width: 49%;
    margin: 0;
  }

  #modal06 .modal-content .modalImg {
    width: 36%;
  }

  #modal07 .modal-content .modalImg,
  #modal08 .modal-content .modalImg {
    width: 33%;
  }


  #modal09 .modal-content .modalImg {
    width: 36%;
  }

  .modal .toLink {
    width: 70%;
    font-size: 1rem;
    max-width: 160px;
    margin: 15px auto 1%;
    padding: 1%;
  }

  .closeBtn span {
    height: 2px;
  }

  .closeBtn {
    top: -32px;
    width: 30px;
    height: 22px;
  }
}

/* =========================

	jobTest

=========================*/
#jobTest {
  padding: 6% 1% 0 2%;
}

#jobTest .testBg {
  background-image: linear-gradient(-45deg, #ffffff 25%, #e60020 25%, #e60020 50%, #ffffff 50%, #ffffff 75%, #e60020 75%, #e60020 100%);
  background-size: 6px 6px;
  max-width: 1100px;
  width: 100%;
  border-radius: 40px;
  margin: 0 auto;
  text-align: center;

}

#jobTest .testInner {
  background-color: #feeab4;
  padding: 8% 6% 4%;
  border-radius: 40px;
  transform: translate(-10px, -10px);
  position: relative;
}

#jobTest .testInner h2 {
  width: 55%;
  margin: 0 auto 2rem;
  text-align: center;
}

#jobTest .testInner h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin-bottom: 1.8rem;
}

#jobTest .testInner h3+p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
}

#jobTest .jobtestBtn {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto 4%;
}

#jobTest .jobtestBtn span {
  max-width: 74px;
  width: 100%;
  height: 70px;
  background-color: #fff;
  padding: 12px 19px;
  border-radius: 10px;
  margin-right: 13px;
  box-shadow: 5px 5px 0 #4c4948;
  line-height: 45px;
}

#jobTest .jobtestBtn a {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  height: 70px;
  color: #231815;
  background: #fff;
  box-shadow: 5px 5px 0 #4c4948;
  border-radius: 10px;
  transition: .3s;
  text-align: center;
  line-height: 70px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.3rem;
}

#jobTest .jobtestBtn a::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 2px solid #231815;
  border-radius: 10px;
}

#jobTest .jobtestBtn a:hover {
  transform: translate3d(0, 4px, 0);
  box-shadow: none;
  opacity: 1;
}

#jobTest .testInner .small_att {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 8px;
}

#jobTest .testInner .editor {
  font-size: 14px;
}

#jobTest .testInner .acc01 {
  width: 15.18%;
  top: 14%;
  left: 8%;
}

#jobTest .testInner .acc02 {
  width: 9%;
  top: 37%;
  left: 6%;
}

#jobTest .testInner .acc03 {
  width: 15.18%;
  bottom: 25%;
  left: 7%;
}

#jobTest .testInner .acc04 {
  width: 9%;
  top: 8%;
  right: 12%;
  transform: rotate(39deg);
}

#jobTest .testInner .acc05 {
  width: 15.18%;
  top: 26%;
  right: 5%;
}

#jobTest .testInner .acc06 {
  width: 15.18%;
  bottom: 25%;
  right: 7%;
}

#jobTest .testInner .acc07 {
  width: 7%;
  bottom: 15%;
  right: 4%;
  transform: rotate(48deg);
}

@media (max-width: 1024px) {
  #jobTest .testInner .acc02 {
    top: 31%;
  }

  #jobTest .testInner .acc05 {
    top: 25%;
  }

  #jobTest .testInner .acc03 {
    bottom: 33%;
  }

  #jobTest .testInner .acc06 {
    bottom: 33%;
  }

  #jobTest .testInner .acc07 {
    bottom: 26%;
  }
}

@media (max-width: 599px) {
  #jobTest {
    padding: 6% 0% 0 2%;
    margin-bottom: 2vh;
  }

  #jobTest .testBg {
    border-radius: 20px;
  }

  #jobTest .testInner {
    transform: translate(-5px, -5px);
    border-radius: 20px;
  }

  #jobTest .testInner h2 {
    width: 70%;
  }

  #jobTest .testInner h3 {
    font-size: 1.8rem;
  }

  #jobTest .testInner h3+p {
    font-size: 1.4rem;
  }

  /* ボタンの設定*/
  #jobTest .jobtestBtn {
    width: 100%;
    margin-bottom: 4vh;
  }

  #jobTest .jobtestBtn span {
    max-width: 50px;
    height: 54px;
    padding: 8px 12px;
    line-height: 36px;
    border-radius: 5px;
  }

  #jobTest .jobtestBtn a {
    height: 56px;
    box-shadow: 5px 5px 0 #4c4948;
    border-radius: 5px;
    line-height: 56px;
    font-size: 1.8rem;
    letter-spacing: 1rem;
  }

  #jobTest .jobtestBtn a::after {
    border: 1px solid #231815;
    border-radius: 5px;
  }

  #jobTest .testInner .acc01 {
    top: 11%;
    left: 1.6%;
  }

  #jobTest .testInner .acc02 {
    top: 26%;
    left: 7%;
    width: 10%;
  }

  #jobTest .testInner .acc03 {
    bottom: 37%;
    left: 2%;
    width: 19%;
  }

  #jobTest .testInner .acc04 {
    width: 11%;
    right: 5%;
  }

  #jobTest .testInner .acc05 {
    width: 16.18%;
  }

  #jobTest .testInner .acc06 {
    bottom: 37%;
    right: 2%;
    width: 19%;
  }

  #jobTest .testInner .acc07 {
    bottom: 30%;
    width: 9%;
  }

  #jobTest .testInner a {
    transform: translate(0px, 0px);
    width: 90%;
  }

  #jobTest .testInner .small_att {
    font-size: 1rem;
    line-height: 16px;
    padding: 0 0 1rem;
    margin: 0 2% 0 1.2rem;
    text-align: left;
  }

  #jobTest .testInner .editor {
    font-size: 1.1rem;
    margin-bottom: 1.2%;
  }
}

/* =========================

  数字で見る福祉のお仕事

=========================*/
#jobDate {
  padding-top: 80px;
  position: relative;
}

#jobDate .dateInfo {
  margin-bottom: 6%;
}

#jobDate .graphInfo {
  position: relative;
  padding-bottom: 80px;
}

#jobDate h2 {
  background-color: #fff;
  color: #e60020;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 4%;
}

#jobDate .acc13 {
  width: 11.09%;
  top: 96px;
  right: 14%;
}

#jobDate h3 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 20px;
}

#jobDate ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #80808a;
}

#jobDate ul li {
  background-color: #FFF;
  padding: 3.4rem;
  margin-bottom: 2%;
}

#jobDate ul li h4 {
  font-size: 3.4rem;
  font-weight: bold;
  color: #e60020;
  margin-bottom: 2.2rem;
  line-height: 40px;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: -0.02rem;
}

#jobDate ul li h4 span {
  font-size: 2.4rem;
}

#jobDate ul li .dateTxt {
  margin-bottom: 20px;
  line-height: 22px;
  text-align: justify;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
}

#jobDate ul li .linkTtl {
  font-size: 1.3rem;
  text-indent: -2em;
  padding-left: 2em;
  line-height: 20px;
  margin-bottom: 0.5rem;
  color: #949495;
}

#jobDate ul li a {
  font-size: 13px;
  word-break: break-all;
  color: #e60020;
  letter-spacing: -0.03rem;
  display: block;
  line-height: 17px;
}

#jobDate ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

#jobDate ul li .att {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-top: 6px;
  letter-spacing: -0.02rem;
  text-indent: -1rem;
  padding-left: 1rem;
}

#jobDate ul .dateImg {
  margin-bottom: 20px;
}
@media (max-width: 1150px) {
  #jobDate ul li h4 {
    font-size: 2.9vw;
  }
}

@media (max-width: 1024px) {
  #jobDate .acc13 {
    right: 5%;
  }
}

@media (max-width: 599px) {
  #jobDate {
    padding-top: 3vh;
  }

  #jobDate h2 {
    font-size: 2rem;
  }

  #jobDate .acc13 {
    top: 20px;
    right: 1%;
  }

  #jobDate ul {
    display: block;
  }

  #jobDate ul li {
    margin-bottom: 4%;
    padding: 2rem;
  }

  #jobDate ul li h4 {
    font-size: 2.1rem;
    line-height: 27px;
  }

  #jobDate ul li .dateTxt {
    font-size: 1.38rem;
    line-height: 23px;
  }

  #jobDate ul li .linkTtl {
    margin-top: 2rem;
  }

  #jobDate ul li h4 span {
    font-size: 1.5rem;
  }

  #jobDate ul li .att {
    font-size: 1rem;
    line-height: 18px;
    letter-spacing: normal;
  }

}

/* =========================

  #jobDate

=========================*/
/*   date01  */
#jobDate ul .date01 {
  width: 100%;
}

#jobDate ul .date01 dl {
  display: flex;
  justify-content: space-between;
}

#jobDate ul .date01 dl .box {
  width: 49%;
}

#jobDate ul .date01 .dateImg01 {
  width: 90%;
}

/*   date02  */
#jobDate ul .date02 {
  width: 49%;
}

#jobDate ul .date02 .dateImg01 {
  width: 46.4%;
  margin-right: 2rem;
  margin-top: 8%;
}

#jobDate ul .date02 .dateImg02 {
  margin-bottom: 2rem;
}

#jobDate ul .date02 .box {
  width: 100%;
}

/*   date03  */
#jobDate ul .date03 {
  width: 49%;
}

#jobDate ul .date03 h4 {
  margin-bottom: 36px;
}

#jobDate ul .date03 .dateImg01 {
  width: 39.4%;
  margin-right: 2rem;
  margin-top: 8%;
}

#jobDate ul .date03 .dateImg02 {
  margin-bottom: 2rem;
}

#jobDate ul .date03 .box {
  width: 100%;
}

/*   date04  */
#jobDate ul .date04 {
  width: 60%;
}

#jobDate ul .date04 .dateImg01 {
  width: 40%;
  margin-right: 2rem;
  margin-top: 2rem;
}

#jobDate ul .date04 .dateImg02 {
  margin-bottom: 20px;
}

#jobDate ul .date04 .box {
  width: 100%;
}

/*   date05  */
#jobDate ul .date05 {
  width: 38%;
}

#jobDate ul .date05 .dateImg01 {
  width: 80%;
  margin: 0px auto 25px;
  text-align: center;
}

@media (max-width: 599px) {
  #jobDate ul .date01 dl {
    display: block;
  }

  #jobDate ul .date02,
  #jobDate ul .date03,
  #jobDate ul .date04,
  #jobDate ul .date05 {
    width: 100%
  }

  #jobDate ul .date01 .dateImg01 {
    width: 95%;
    margin: 0 auto 2.6rem;
  }

  #jobDate ul .date02 .dateImg01 {
    width: 89.06%;
    text-align: center;
    margin: 0 auto 2.6rem;
  }

  #jobDate ul .date03 .dateImg01 {
    width: 96.4%;
    text-align: center;
    margin: 0 auto 2.6rem;
  }

  #jobDate ul .date04 .dateImg01 {
    width: 97.46%;
    text-align: center;
    margin: 0 auto 2.6rem;
  }

  #jobDate ul .date05 .dateImg01 {
    width: 64.73%;
    text-align: center;
    margin: 0 auto 2.6rem;
  }
}

/* =========================

	graphで見る

=========================*/

#jobDate .graphInfo .ttlAtt {
  top: 7px;
  right: 0;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  background-color: #fff;
  padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 35%;

}

#jobDate .graphInfo .ttlAtt dt {
  font-size: 11px;
  text-indent: -2em;
  padding-left: 2em;
  color: #949495;
  margin-right: 12px;
  line-height: 17px;
}

#jobDate .graphInfo .ttlAtt dd a {
  font-size: 11px;
  word-break: break-all;
  color: #e60020;
  letter-spacing: -0.03rem;
  display: block;
  line-height: 17px;
}

#jobDate .graphInfo .ttlAtt dd a:hover {
  opacity: 1;
  text-decoration: underline;
}

/*   .graph01  */
#jobDate .graphInfo .graph01 {
  width: 100%;
  position: relative;
  z-index: 1;
}

#jobDate .graphInfo .graph01 .graphImg {
  width: 100%;
  margin: 0 auto;
}

#jobDate .graphInfo .graph01 .acc14 {
  width: 9%;
  bottom: 0%;
  left: -1%;
  z-index: 2;
}

/*   .graph02  */
#jobDate .graphInfo .graph02 {
  width: 56%;
  padding: 3.4rem 0.5rem 3.4rem 3.4rem;
}

/*   .graph03  */
#jobDate .graphInfo .graph03 {
  width: 44%;
  padding: 3.4rem 3.4rem 3.4rem 1rem;
}

#jobDate .graphInfo .graph03 .att {
  font-size: 12px;
  text-align: right;
  letter-spacing: -0.05rem;
  margin-top: 15px;
}


/*   .graph04  */
#jobDate .graphInfo .graph04 {
  width: 100%;
}

#jobDate .graphInfo .graph04 .acc15 {
  width: 9%;
  bottom: 72%;
  right: -1.5%;
}

#jobDate .graphInfo .graph04 .graphImg {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #jobDate .graphInfo .ttlAtt {
    bottom: 18px;
    top: auto;
    right: 0;
    left: auto;
  }
}

@media (max-width: 599px) {
  #jobDate .graphInfo {
    padding-bottom: 30%;
  }

  #jobDate .graphInfo .ttlAtt {
    padding: 1.5rem;
    width: 100%;
  }

  #jobDate .graphInfo .ttlAtt dt {
    font-size: 1.3rem;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }

  #jobDate .graphInfo .ttlAtt dd a {
    font-size: 13px;
  }

  #jobDate .graphInfo .graph02,
  #jobDate .graphInfo .graph03,
  #jobDate .graphInfo .graph04 {
    width: 100%;
  }

  #jobDate .graphInfo .graph02 {
    margin-bottom: 0;
    padding: 2rem 2rem 0;
  }

  #jobDate .graphInfo .graph03 {
    padding: 2.4rem 2rem 2.5rem;
  }

  #jobDate .graphInfo .graph01 .acc14 {
    width: 15%;
    bottom: -8%;
  }

  #jobDate .graphInfo .graph03 .att {
    text-align: right;
    letter-spacing: normal;
    font-size: 1rem;
    line-height: 18px;
  }

  #jobDate .graphInfo .graph04 .acc15 {
    width: 15%;
    bottom: 73%;
  }
}

/* =========================

  info

=========================*/
.info_title {
    text-align: center;
    margin-bottom: 1.0rem !important;
}
.info_subtitle {
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.2rem;
}
.info_btn01 {
    width: 100%;
    font-size: 2.4rem !important;
    font-weight: bold;
    color: #231815 !important;
    line-height: inherit !important;
    text-align: center;
    padding: 10px;
    margin: 10px 10px 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: #EE87B4;
    box-shadow: 0 10px 10px 0 rgba(35, 24, 21, .5);
}
.info_btn02 {
    width: 100%;
    font-size: 2.4rem !important;
    font-weight: bold;
    color: #231815 !important;
    line-height: inherit !important;
    text-align: center;
    padding: 10px;
    margin: 10px 10px 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: #F39800;
    box-shadow: 0 10px 10px 0 rgba(35, 24, 21, .5);
}
.info_btn03 {
    width: 100%;
    font-size: 2.4rem !important;
    font-weight: bold;
    color: #231815 !important;
    line-height: inherit !important;
    text-align: center;
    padding: 10px;
    margin: 10px 10px 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: #5BB645;
    box-shadow: 0 10px 10px 0 rgba(35, 24, 21, .5);
}
.info_btn01:hover , .info_btn02:hover , .info_btn03:hover {
    text-decoration: none !important;
    box-shadow: none;
}
.info_box {
    font-size: 2.4rem;
    text-align: center;
    padding: 30px;
    margin: 50px auto 0;
    border: 3px solid #80808a
}
.info_text1 {
    font-size: 2.0rem;
    margin: 1.5rem 0;
}
.info_img01 {
    width: 100%;
}
.info_img02 {
    width: 80%;
    margin: auto;
}
.info_midashi {
    font-size: 2.4rem !important;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 5px 30px;
    margin: 50px auto 15px;
    border-radius: 50px;
    background-color: #e60020;
}
.info_meritbox {
    width: 100%;
    font-size: 2.4rem;
    padding: 20px;
    margin: 10px 5px;
    background-color: #FEEAB4;
}
.info_meritmidashi {
    font-size: 2.0rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    margin-bottom: 15px;
    border-radius: 50px;
    background-color: #e60020;
}
.info_merittext1 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #e60020;
    text-align: center;
}
.info_merittext2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 auto;
}
.info_text2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 auto;
}
.info_text3 {
    font-size: 3.6rem;
    font-weight: bold;
    color: #e60020;
    margin: 0 auto;
}
.info_link {
    color: #fff;
    margin-bottom: 100px;
}
.info_link a {
    text-decoration: underline !important;
}

@media (max-width: 599px) {
    .info_title {
        margin: 2.0rem 0 1.0rem !important;
    }
    .info_subtitle {
        font-size: 1.8rem;
    }
    .info_btn01 {
        margin: 20px auto;
    }
    .info_btn02 {
        margin: 20px auto;
    }
    .info_btn03 {
        margin: 20px auto;
    }
    .info_box {
        font-size: 1.8rem;
        padding:15px;
        margin: 50px auto 30px;
        border: 1.5px solid #80808a
    }
    .info_text1 {
        font-size: 1.4rem;
    }
    .info_midashi {
        font-size: 1.8rem !important;
    }
    .info_img02 {
        margin: 10px auto 25px;
    }
    .info_meritbox {
        width: 100% !important;
        font-size: 1.8rem;
        margin: 10px auto 10px;
    }
    .info_merittext2 {
        text-align: center;
        margin-bottom: 10px;
    }
    .info_text2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px
    }
    .info_text3 {
        font-size: 3.2rem;
        text-align: center;
    }
    .info_link {
        font-size: 1.4rem;
        padding-bottom: 50px;
    }
}

/* =========================

	より詳しい求人情報はコチラ

=========================*/
#moreInfo {
  padding: 80px 2%;
}

#moreInfo h2 {
  width: 70.68%;
  margin: 0 auto 2%;
  text-align: center;
  max-width: 1100px;
}

#moreInfo ul {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#moreInfo ul .flex {
  justify-content: center;
}

#moreInfo ul h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-indent: -68px;
  padding-left: 68px;
  line-height: 15px;

}

#moreInfo ul h3:before {
  display: inline-block;
  content: "";
  background-image: url(../img/ribbon_i.png);
  width: calc(128px / 2);
  height: calc(114px / 2);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center top;
  margin-right: 1%;
  margin-top: -6px;
}

#moreInfo ul li p {
  font-size: 1.6rem;
  text-align: justify;
}

#moreInfo ul li .moreBtn {
  display: block;
  background-color: #9fa0a0;
  color: #fff;
  padding: 10px 2%;
  font-size: 1.6rem;
  border-radius: 8px;
  line-height: 22px;
  margin-top: 10px;
  text-align: center;
  width: 100%;
  max-width: 165px;
}

#moreInfo ul li .moreBtn:hover {
  background-color: #231815;
  opacity: 1;
}

#moreInfo ul li:nth-child(1) {
  border-bottom: dotted 5px #9fa0a0;
  margin-bottom: 4%;
  padding-bottom: 4%;
  width: 100%;
}

#moreInfo ul li:nth-child(2) {
  border-right: dotted 5px #9fa0a0;
  width: 50%;
  padding-right: 2%;
}

#moreInfo ul li:nth-child(3) {
  width: 48%;
  padding-left: 1%;
}

/* info01 */
#moreInfo ul .info01 .pc {
  display: flex;
  justify-content: center;
  align-items: center;
}

#moreInfo ul .info01 .box01 {
  width: 55%;
  margin-right: 4%;
}

#moreInfo ul .info01 .box02 {
  width: 15%;
  text-align: center;
}

/* info02 */
#moreInfo ul .info02 img {
  width: 43%;
  text-align: center;
  margin: 0 auto 20px;
  display: block;
}

#moreInfo ul .info02 .moreBtn {
  margin-right: 0;
  margin-left: auto;
}

/* info03 */
#moreInfo ul .info03 p {
  width: 55%;
  margin-right: 5%;
}

#moreInfo ul .info03 .box {
  width: 40%;
}

#moreInfo ul .info03 img {
  width: 90%;
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  #moreInfo {
    padding: 6vh 2% 4vh;
  }

  #moreInfo h2 {
    margin-bottom: 3rem;
    width: 95.68%;
  }

  #moreInfo ul {
    justify-content: center;
  }


  #moreInfo ul h3 {
    font-size: 1.8rem;
    text-indent: -4rem;
    padding-left: 3rem;
    line-height: 27px;
    margin-bottom: 2rem;
  }

  #moreInfo ul h3:before {
    width: calc(128px / 4);
    height: calc(114px / 4);
  }

  #moreInfo ul li:not(:last-child) {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  #moreInfo ul li:nth-child(1) {
    width: 90%;
  }

  #moreInfo ul li:nth-child(2) {
    border-right: none;
    border-bottom: dotted 5px #9fa0a0;
    width: 90%;
    padding-right: 0;
  }

  #moreInfo ul li:nth-child(3) {
    width: 90%;
    padding-left: 0;
  }

  #moreInfo ul li p {
    font-size: 1.4rem;
  }

  #moreInfo ul .info01 p {
    width: 73%;
    margin-right: 2%;
  }

  #moreInfo ul .info01 .box {
    width: 25%;
    text-align: center;
  }

  #moreInfo ul .info01 .sp .box img {
    width: 82%;
  }

  #moreInfo ul .info02 img {
    width: 72%;
  }

  #moreInfo ul .info01 .moreBtn,
  #moreInfo ul .info02 .moreBtn,
  #moreInfo ul .info03 .moreBtn {
    margin: 2rem auto 0;
    font-size: 14px;
    padding: 7px;
  }

  #moreInfo ul .info03 p {
    width: 66%;
    margin-right: 4%;
  }

  #moreInfo ul .info03 .box {
    width: 30%;
    text-align: center;
  }

  #moreInfo ul .info03 img {
    width: 100%;
  }
}


.link ,
.link:link ,
.link:hover {
  color: #0070c0;
  text-decoration: underline;
  text-underline-offset: 2px
}

/* =========================

	footer

=========================*/
footer {
  background-color: #e60020;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.08em;
}
footer .contact {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 18px;
  line-height: 1.8;
  font-size: 13px;
  padding: 0 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .contact dd:not(:last-child) {
  margin-right: 12px;
}
footer .copyright {
  line-height: 1.3;
  margin-bottom: 4px;
  font-size: 10px;
}
footer .kittyCopyright {
  line-height: 18px;

}
footer .kittyCopyright img {
  width: 90%;
  max-width: 360px;
}
@media (max-width: 599px) {
  footer .contact {
    display: block;
    text-align: left;
    font-size: 11px;
    padding: 0 10px;
  }
  footer .copyright {
    letter-spacing: 0.06em;
  }
}
