@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* /////////// フォント ////////// */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif, Yu Gothic, '游ゴシック', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana, sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #111111;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #111111;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.8;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #CCC;
}

th {
  white-space: nowrap;
  background-color: #EEE;
  font-weight: normal;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: 'Noto Sans JP', sans-serif, Yu Gothic, '游ゴシック', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana, sans-serif;
  font-size: 16px;
  border: 1px solid #919191;
  background-color: #EFEFEF;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 12px 20px;
}

/* ボタン */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Noto Sans JP', sans-serif, Yu Gothic, '游ゴシック', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana, sans-serif;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* テキストエリア */
textarea {
  resize: none;
  min-height: 150px;
}

/* セレクトボックス */
.select {
  position: relative;
  display: inline-block;
}

.select.block {
  display: block;
  margin-bottom: .5em;
}

.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: .4em 50px .4em .4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.select select::-ms-expand {
  display: none;
}

.select select option:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}

.select::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  content: "";
  background-color: #1B7EF4;
  border-radius: 0 2px 2px 0;
}

.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

/* チェックボックス */
input[type=checkbox] {
  display: none;
  border: none;
}

input[type=checkbox] {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 0 0 25px;
  position: relative;
}

input[type=checkbox]::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #919191;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

input[type=checkbox]::after {
  border-bottom: 3px solid #111111;
  border-left: 3px solid #111111;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 18px;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width: 999px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
  }
  header {
    position: relative;
  }
  header .header-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 1200px;
    min-height: 60px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 4vw;
    background-color: #fff;
    -webkit-filter: drop-shadow(1px 5px 3px rgba(0, 0, 0, 0.15));
            filter: drop-shadow(1px 5px 3px rgba(0, 0, 0, 0.15));
    z-index: 20;
  }
  header .header-inner h1 {
    line-height: 1.2;
    z-index: 100;
  }
  header .header-inner h1 img {
    width: 130px;
    height: auto;
  }
  header .header-inner .button-red a {
    min-width: 140px;
    height: 40px;
    font-size: 14px;
  }
  header .mainimage {
    position: relative;
    background: url("../images/mainimage_bg.png") no-repeat bottom right -220px;
    background-size: cover;
    margin: 60px 0 0 0;
    overflow: hidden;
  }
  header .mainimage .maintext {
    position: relative;
    width: calc(72% - 8vw);
    max-width: 420px;
    margin: 20px 4vw 0 0;
    padding: 5px 4vw 10px 4vw;
  }
  header .mainimage .maintext::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1B7EF4;
    opacity: 0.5;
  }
  header .mainimage .maintext img {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .mainimage .cvtext {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 0 20px 0;
  }
  header .mainimage .cvtext::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1B7EF4;
    opacity: 0.5;
  }
  header .mainimage .cvtext .button-red {
    margin: 0 4vw;
  }
  header .mainimage .cvtext .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
  }
  header .mainimage .cvtext .bubble::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 50px;
    margin: 0 10px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    background-color: #fff;
  }
  header .mainimage .cvtext .bubble::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 50px;
    margin: 0 10px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    background-color: #fff;
  }
  header .mainimage .cvtext a {
    height: 60px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 20px;
  }
  header .mainimage .authority {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: calc(100% - 8vw);
    margin: 50px 4vw 10px 4vw;
  }
  header .mainimage .authority ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 35% 5px 0;
  }
  header .mainimage .authority ul li {
    width: 48%;
    list-style: none;
  }
  header .mainimage .authority ul li img {
    width: 100%;
    height: auto;
  }
  header .mainimage .authority p {
    margin: 0;
    text-align: left;
    color: #fff;
    font-size: 10px;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 0 5px;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 20px 4vw;
    background-color: #5A5C5E;
    text-align: center;
    color: #fff;
  }
  footer p {
    margin: 0;
  }
  footer p small {
    font-size: 14px;
  }
  /* ////////////////// 共通 ////////////////// */
  main > div {
    position: relative;
    padding: 50px 4vw;
  }
  section,
  aside,
  form {
    max-width: 1200px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #D0E0F3));
    background: -webkit-linear-gradient(transparent 90%, #D0E0F3 90%);
    background: linear-gradient(transparent 90%, #D0E0F3 90%);
  }
  /* 見出し */
  .nomal-large {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  .nomal-large .sub-title {
    font-size: 16px;
  }
  .nomal-medium {
    margin-bottom: 20px;
    font-size: 21px;
    text-align: center;
  }
  .line-center {
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-size: 19px;
  }
  .line-center span {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
  }
  .line-center::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #111111;
  }
  /* ボタン */
  .button-red {
    position: relative;
  }
  .button-red a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #E85462;
    border-radius: 35px;
    background-color: #E85462;
    color: #fff;
    font-weight: bold;
    font-size: 19px;
  }
  .button-red a:hover {
    background-color: #fff;
    color: #E85462;
  }
  /* CVエリア */
  .cv-area {
    padding: 0;
  }
  .cv-area aside {
    padding: 50px 4vw;
    background-color: #78C8E6;
  }
  .cv-area h2 {
    margin-bottom: 20px;
  }
  .cv-area h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 17px;
    color: #E85462;
  }
  .cv-area .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cv-area .flex .image {
    width: 100%;
    max-width: 160px;
    margin: 0 0 15px 0;
  }
  .cv-area .flex .text {
    width: 100%;
  }
  .cv-area .flex .text p {
    line-height: 1.8;
    font-size: 14px;
  }
  .cv-area .cv-box {
    margin-top: 20px;
    padding: 20px 4vw;
    background-color: #fff;
    text-align: center;
  }
  .cv-area .cv-box .button-red a {
    margin: 0 auto;
  }
  /* ////////////////// コンテンツ ////////////////// */
  /* 長野県でジョブズゴーが選ばれている理由 */
  #reason .flex .flex-item {
    width: 100%;
    margin-bottom: 20px;
  }
  #reason .flex .flex-item:last-child {
    margin: 0;
  }
  #reason .flex .flex-item h3 {
    margin: 10px 0;
    font-size: 21px;
  }
  #reason .flex .flex-item p {
    font-size: 14px;
  }
  #reason .flex .flex-item .image {
    position: relative;
    height: 170px;
    overflow: hidden;
  }
  #reason .flex .flex-item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #reason .flex .flex-item .image .num {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 1.0;
  }
  /* ジョブズゴーは、地元最優先力で求職者と企業をつないでいます */
  #authority {
    padding: 0 4vw;
  }
  #authority section {
    padding: 20px 4vw;
    border: 9px solid #78C8E6;
  }
  #authority section > .flex .flex-item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #111111;
  }
  #authority section > .flex .flex-item:last-child {
    border: none;
  }
  #authority h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #authority h3 span {
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 19px;
    line-height: 1.4;
  }
  #authority .nomal-medium {
    margin-bottom: 0px;
  }
  #authority .text p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.0;
  }
  #authority .text p .num {
    display: inline-block;
    margin: 0 3px;
    font-weight: 900;
  }
  #authority .text .font-large {
    margin: 10px 0 0 0;
  }
  #authority .text .font-large .num {
    font-size: 50px;
  }
  #authority .text .font-middle {
    margin: 10px 0 0 0;
  }
  #authority .text .font-middle .num {
    font-size: 32px;
  }
  #authority .text .font-small {
    margin: 5px 0 0 0;
  }
  #authority .text .font-small .num {
    font-size: 24px;
  }
  /* クライアントロゴ */
  #client {
    padding: 50px 0;
  }
  #client aside {
    max-width: none;
  }
  #client .client-logo {
    overflow: hidden;
    margin: 0 0 15px 0;
  }
  #client .client-logo:last-child {
    margin: 0;
  }
  #client .client-logo .slide-item {
    margin: 0 5px;
  }
  #client .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  /* 数字で見るジョブズゴー */
  #graph .flex .flex-item {
    width: 48%;
  }
  #graph .flex .flex-item:first-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #graph .flex .flex-item:nth-child(2) {
    width: 80%;
    margin: 10px auto 0 auto;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  #graph .flex .flex-item:last-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #graph .flex .flex-item p {
    margin-top: 10px;
    text-align: center;
  }
  #graph .flex .flex-item .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  #graph .flex .flex-item .image img {
    margin: 0 auto;
  }
  /* こんなお悩み抱えていませんか？ */
  #worries {
    padding: 50px 4vw 20px 4vw;
  }
  #worries section {
    max-width: 990px;
  }
  #worries .flex {
    position: relative;
  }
  #worries .flex .bubble {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    padding: 15px 30px;
    border-radius: 35px;
    background-color: #EFEFEF;
    text-align: center;
  }
  #worries .flex .bubble p {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
  }
  #worries .flex .image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  /* ジョブズゴーなら解決出来ます！ */
  #resolution h3 {
    margin-bottom: 15px;
    font-size: 19px;
  }
  #resolution .resolution-box {
    position: relative;
    margin-bottom: 20px;
    padding: 50px 4vw 20px 4vw;
    border: 1px solid #707070;
  }
  #resolution .resolution-box:last-child {
    margin-bottom: 0;
  }
  #resolution .resolution-box .point {
    position: absolute;
    left: 0;
    top: 0;
    padding: 3px 20px;
    background-color: #78C8E6;
    font-weight: bold;
    text-align: center;
    font-size: 17px;
  }
  #resolution .resolution-box .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #resolution .resolution-box .flex .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 210px;
    margin: 0 auto 15px auto;
  }
  #resolution .resolution-box .flex .image img {
    max-height: 200px;
    margin: 0 auto;
  }
  #resolution .resolution-box .flex .text {
    width: 100%;
    margin: 0 auto;
  }
  #resolution .resolution-box .flex .text .explanation {
    line-height: 1.8;
    font-size: 14px;
  }
  #resolution .resolution-box .flex .text .note {
    line-height: 2.2;
    font-size: 14px;
  }
  /* 転職成功者の声 */
  #voice .flex .flex-item {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #707070;
  }
  #voice .flex .flex-item:last-child {
    margin-bottom: 0;
  }
  #voice .flex .flex-item .tag {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 20px;
    border-radius: 20px;
    background-color: #1B7EF4;
    color: #fff;
    font-size: 14px;
    line-height: 1.0;
  }

    #voice .flex .flex-item .tag2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 0px;
    color:  #1B7EF4;
    font-size: 24px;
    line-height: 1.0;
    font-weight: bold;
  }
  #voice .flex .flex-item .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  #voice .flex .flex-item .text h3 {
    font-size: 19px;
  }
  #voice .flex .flex-item .text .age {
    font-size: 15px;
    font-weight: bold;
  }

    #voice .flex .flex-item .text .age2 {
    font-size: 17px;
    font-weight: bold;
  }
  #voice .flex .flex-item .comment {
    font-size: 14px;
  }
  /* よく頂くご質問 */
  #faq .faq-content {
    display: none;
  }
  #faq .faq-content > div {
    border-bottom: 1.5px solid #111111;
  }
  #faq .content-active {
    display: block;
  }
  #faq .question {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 5px 0;
    padding: 20px 40px 20px 10px;
    font-weight: bold;
    font-size: 16px;
    background-color: #D0E0F3;
    line-height: 1.0;
    cursor: pointer;
  }
  #faq .question .text-blue {
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 26px;
    color: #1B7EF4;
    font-weight: 900;
  }
  #faq .question .toggle_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
    font-weight: normal;
  }
  #faq .question .toggle_button.open_icon::before {
    content: '';
    width: 23px;
    height: 12px;
    background: url("../images/open_icon.png") no-repeat center center;
    background-size: contain;
  }
  #faq .question .toggle_button.close_icon::before {
    content: '';
    width: 23px;
    height: 12px;
    background: url("../images/close_icon.png") no-repeat center center;
    background-size: contain;
  }
  #faq .anser {
    position: relative;
    display: none;
    margin: 10px 10px 20px 10px;
    padding: 0;
    background: #fff;
    word-break: break-all;
    font-size: 14px;
    text-align: left;
  }
  #faq .anser .text-pink {
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 24px;
  }
  /* 運営会社 */
  #company {
    padding: 0 4vw 40px 4vw;
  }
  #company section {
    max-width: 850px;
  }
  #company table {
    margin: 0;
  }
  #company table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #company table tr:nth-child(odd) td,
  #company table tr:nth-child(odd) th {
    background-color: #E1ECF9;
  }
  #company table tr:nth-child(even) td,
  #company table tr:nth-child(even) th {
    background-color: #fff;
  }
  #company table tr td,
  #company table tr th {
    width: 100%;
    border: none;
    text-align: left;
  }
  #company table tr th {
    padding: 10px 4vw 0px 4vw;
    font-weight: bold;
    vertical-align: top;
    font-size: 15px;
  }
  #company table tr td {
    padding: 0px 4vw 10px 4vw;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ***************************************************
 PC
*************************************************** */
@media all and (min-width: 1000px) {
  .sp {
    display: none !important;
  }
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 16px;
  }
  header {
    position: relative;
  }
  header .header-inner {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 40px;
    z-index: 10;
  }
  header .header-inner h1 {
    margin: 0 0 0 0;
    line-height: 1.0;
  }
  header .header-inner h1 img {
    width: 200px;
    height: auto;
  }
  header .header-inner .button-red a {
    min-width: 260px;
    height: 50px;
    font-size: 18px;
  }
  header .mainimage {
    position: relative;
    background: url("../images/mainimage_bg.png") no-repeat top center;
    background-size: cover;
    margin: 0;
    height: 730px;
    overflow: hidden;
  }
  header .mainimage::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(25deg);
            transform: translate(-50%, -50%) rotate(25deg);
    width: 480px;
    height: 180%;
    background-color: #1B7EF4;
    opacity: 0.5;
  }
  header .mainimage::after {
    content: '';
    position: absolute;
    right: -27%;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
    width: 480px;
    height: 180%;
    background-color: #1B7EF4;
    opacity: 0.5;
  }
  header .mainimage .maintext {
    position: absolute;
    left: 32.5%;
    top: 150px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 420px;
  }
  header .mainimage .maintext img {
    width: 100%;
    height: auto;
  }
  header .mainimage .cvtext {
    position: absolute;
    left: 25%;
    bottom: 60px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  header .mainimage .cvtext .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: bold;
  }
  header .mainimage .cvtext .bubble::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 60px;
    margin: 0 10px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    background-color: #fff;
  }
  header .mainimage .cvtext .bubble::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 60px;
    margin: 0 10px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    background-color: #fff;
  }
  header .mainimage .cvtext a {
    height: 70px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 23px;
  }
  header .mainimage .authority {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    position: absolute;
    right: 100px;
    bottom: 20px;
    width: 600px;
    z-index: 10;
  }
  header .mainimage .authority ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .mainimage .authority ul li {
    margin: 0 0 0 20px;
    list-style: none;
  }
  header .mainimage .authority p {
    text-align: right;
    color: #fff;
    font-size: 14px;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 0 5px;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 20px 15px;
    background-color: #5A5C5E;
    text-align: center;
    color: #fff;
  }
  footer a {
    display: none;
  }
  footer p {
    margin: 0;
  }
  footer p small {
    font-size: 14px;
  }
  /* ////////////////// 共通 ////////////////// */
  main > div {
    position: relative;
    padding: 70px 0;
  }
  section,
  aside,
  form {
    max-width: 1200px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #D0E0F3));
    background: -webkit-linear-gradient(transparent 90%, #D0E0F3 90%);
    background: linear-gradient(transparent 90%, #D0E0F3 90%);
  }
  /* 見出し */
  .nomal-large {
    margin-bottom: 50px;
    font-size: 32px;
    text-align: center;
  }
  .nomal-large .sub-title {
    font-size: 19px;
  }
  .nomal-medium {
    margin-bottom: 50px;
    font-size: 28px;
    text-align: center;
  }
  .line-center {
    position: relative;
    display: block;
    margin-bottom: 50px;
    font-size: 24px;
  }
  .line-center span {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
  }
  .line-center::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #111111;
  }
  /* ボタン */
  .button-red {
    position: relative;
  }
  .button-red a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 310px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 60px;
    padding: 0 20px;
    border: 2px solid #E85462;
    border-radius: 35px;
    background-color: #E85462;
    color: #fff;
    font-weight: bold;
    font-size: 21px;
  }
  .button-red a:hover {
    background-color: #fff;
    color: #E85462;
  }
  /* CVエリア */
  .cv-area {
    padding: 0;
  }
  .cv-area aside {
    padding: 40px 30px;
    background-color: #78C8E6;
  }
  .cv-area h2 {
    margin-bottom: 20px;
  }
  .cv-area h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 19px;
    color: #E85462;
  }
  .cv-area .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cv-area .flex .image {
    width: 200px;
  }
  .cv-area .flex .text {
    width: calc(100% - 260px);
  }
  .cv-area .flex .text p {
    line-height: 2.2;
  }
  .cv-area .cv-box {
    margin-top: 20px;
    padding: 20px 40px;
    background-color: #fff;
    text-align: center;
  }
  .cv-area .cv-box .button-red a {
    margin: 0 auto;
  }
  /* ////////////////// コンテンツ ////////////////// */
  /* 長野県でジョブズゴーが選ばれている理由 */
  #reason .flex {
    margin: 0 80px;
  }
  #reason .flex .flex-item {
    width: 290px;
  }
  #reason .flex .flex-item h3 {
    margin: 15px 0;
    font-size: 24px;
  }
  #reason .flex .flex-item .image {
    position: relative;
  }
  #reason .flex .flex-item .image img {
    position: relative;
    width: 100%;
    height: auto;
  }
  #reason .flex .flex-item .image .num {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 64px;
    font-weight: bold;
    color: #fff;
    line-height: 1.0;
  }
  /* ジョブズゴーは、地元最優先力で求職者と企業をつないでいます */
  #authority {
    padding: 0;
  }
  #authority section {
    padding: 50px 100px;
    border: 15px solid #78C8E6;
  }
  #authority section > .flex .flex-item {
    width: 33.33%;
    padding: 10px 0;
    border-right: 1px solid #111111;
  }
  #authority section > .flex .flex-item:last-child {
    border: none;
  }
  #authority h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #authority h3 span {
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 21px;
    line-height: 1.4;
  }
  #authority .nomal-medium {
    margin-bottom: 30px;
  }
  #authority .text p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.0;
  }
  #authority .text p .num {
    display: inline-block;
    margin: 0 3px;
    font-weight: 900;
  }
  #authority .text .font-large {
    margin: 15px 0 0 0;
  }
  #authority .text .font-large .num {
    font-size: 60px;
  }
  #authority .text .font-middle {
    margin: 10px 0 0 0;
  }
  #authority .text .font-middle .num {
    font-size: 42px;
  }
  #authority .text .font-small {
    margin: 5px 0 0 0;
  }
  #authority .text .font-small .num {
    font-size: 31px;
  }
  /* クライアントロゴ */
  #client {
    padding: 70px 0;
  }
  #client aside {
    max-width: none;
  }
  #client .client-logo {
    overflow: hidden;
    margin: 0 0 20px 0;
  }
  #client .client-logo:last-child {
    margin: 0;
  }
  #client .client-logo .slide-item {
    margin: 0 10px;
  }
  #client .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  /* 数字で見るジョブズゴー */
  #graph .flex .flex-item {
    width: 33%;
  }
  #graph .flex .flex-item p {
    margin-top: 10px;
    text-align: center;
  }
  #graph .flex .flex-item .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  #graph .flex .flex-item .image img {
    margin: 0 auto;
  }
  /* こんなお悩み抱えていませんか？ */
  #worries section {
    max-width: 990px;
  }
  #worries .flex {
    position: relative;
  }
  #worries .flex .bubble {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 37%;
    max-width: 350px;
    height: 100px;
    margin-bottom: 60px;
    padding: 20px 30px;
    border-radius: 35px;
    background-color: #EFEFEF;
    text-align: center;
  }
  #worries .flex .bubble p {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
  }
  #worries .flex .bubble:nth-last-child(2), #worries .flex .bubble:nth-last-child(3) {
    margin-bottom: 0px;
  }
  #worries .flex .image {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  /* ジョブズゴーなら解決出来ます！ */
  #resolution h3 {
    margin-bottom: 20px;
    font-size: 26px;
  }
  #resolution .resolution-box {
    position: relative;
    margin-bottom: 40px;
    padding: 70px 30px 30px 30px;
    border: 1px solid #707070;
  }
  #resolution .resolution-box:last-child {
    margin-bottom: 0;
  }
  #resolution .resolution-box:nth-child(odd) .flex .image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  #resolution .resolution-box:nth-child(odd) .flex .text {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  #resolution .resolution-box .point {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px 20px;
    background-color: #78C8E6;
    font-weight: bold;
    text-align: center;
    font-size: 21px;
  }
  #resolution .resolution-box .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #resolution .resolution-box .flex .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 180px;
    max-width: 210px;
  }
  #resolution .resolution-box .flex .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #resolution .resolution-box .flex .text {
    width: calc(100% - 240px);
  }
  #resolution .resolution-box .flex .text .explanation {
    line-height: 2.2;
  }
  #resolution .resolution-box .flex .text .note {
    line-height: 2.2;
    font-size: 14px;
  }
  /* 転職成功者の声 */
  #voice .flex .flex-item {
    width: 31%;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #707070;
  }
  #voice .flex .flex-item:last-child, #voice .flex .flex-item:nth-last-child(2), #voice .flex .flex-item:nth-last-child(3) {
    margin-bottom: 0;
  }
  #voice .flex .flex-item .tag {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 20px;
    border-radius: 20px;
    background-color: #1B7EF4;
    color: #fff;
    font-size: 15px;
    line-height: 1.0;
  }

  #voice .flex .flex-item .tag2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 0px;
    color:  #1B7EF4;
    font-size: 24px;
    line-height: 1.0;
    font-weight: bold;
  }
  #voice .flex .flex-item .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  #voice .flex .flex-item .text h3 {
    font-size: 19px;
  }
  #voice .flex .flex-item .text .age {
    font-size: 15px;
    font-weight: bold;
  }

    #voice .flex .flex-item .text .age2 {
    font-size: 17px;
    font-weight: bold;
  }
  #voice .flex .flex-item .comment {
    font-size: 15px;
  }


  /* よく頂くご質問 */
  #faq .faq-content {
    display: none;
  }
  #faq .faq-content > div {
    border-bottom: 1.5px solid #111111;
  }
  #faq .content-active {
    display: block;
  }
  #faq .question {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 5px 0;
    padding: 20px 20px;
    font-weight: bold;
    font-size: 18px;
    background-color: #D0E0F3;
    line-height: 1.0;
    cursor: pointer;
  }
  #faq .question .text-blue {
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 28px;
    color: #1B7EF4;
    font-weight: 900;
  }
  #faq .question .toggle_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
    font-weight: normal;
  }
  #faq .question .toggle_button.open_icon::before {
    content: '';
    width: 30px;
    height: 16px;
    background: url("../images/open_icon.png") no-repeat center center;
    background-size: contain;
  }
  #faq .question .toggle_button.close_icon::before {
    content: '';
    width: 30px;
    height: 16px;
    background: url("../images/close_icon.png") no-repeat center center;
    background-size: contain;
  }
  #faq .anser {
    position: relative;
    display: none;
    margin: 20px 70px 25px 60px;
    padding: 0;
    background: #fff;
    word-break: break-all;
    font-size: 16px;
    text-align: left;
  }
  #faq .anser .text-pink {
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 24px;
  }
  /* 運営会社 */
  #company {
    padding: 0 0 70px 0;
  }
  #company section {
    max-width: 850px;
  }
  #company table {
    margin: 0;
  }
  #company table tr:nth-child(odd) td,
  #company table tr:nth-child(odd) th {
    background-color: #E1ECF9;
  }
  #company table tr:nth-child(even) td,
  #company table tr:nth-child(even) th {
    background-color: #fff;
  }
  #company table tr td,
  #company table tr th {
    padding: 15px 20px;
    border: none;
  }
  #company table tr th {
    font-weight: bold;
    vertical-align: top;
  }
}
/*# sourceMappingURL=style.css.map */