@charset "UTF-8";
/*******************************************************************/
/* PC */
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	パンくずリスト */
  /*=================================================================*/
  .breadcrumb {
    background: #fff;
    padding: 6px 0;
  }
  .breadcrumb > div {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .breadcrumb > div svg {
    margin: 0 6px;
  }
  .breadcrumb > div a {
    color: #16bea8;
    text-decoration: underline;
    position: relative;
  }
  .breadcrumb > div a:hover {
    text-decoration: none;
  }
  .breadcrumb > div a.home {
    padding-left: 18px;
  }
  .breadcrumb > div a.home::before {
    content: url(../images/sec/home_mini.svg);
    position: absolute;
    top: -7px;
    left: 0px;
    bottom: 0;
    width: 15px;
    height: 13px;
    margin: auto;
  }
  .breadcrumb > div a, .breadcrumb > div span {
    font-size: 1.3rem;
  }
  /*=================================================================*/
  /*	チェックボックス */
  /*=================================================================*/
  .whiteBox1 label.checkbox {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  .whiteBox1 label.checkbox::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
  }
  .whiteBox1 input[type="checkbox"]:checked + label::after {
    content: url(../images/sec/check.svg);
    position: absolute;
    top: 0px;
    left: 2px;
  }
  /*=================================================================*/
  /*	ラジオボタン */
  /*=================================================================*/
  .whiteBox1 label.radioBtn {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  .whiteBox1 label.radioBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  .whiteBox1 input[type="radio"]:checked + label::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 4px;
  }
  /*=================================================================*/
  /*	真ん中寄せのボタンスタイル */
  /*=================================================================*/
  .btnAreaCenter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .btnAreaCenter button,
  .btnAreaCenter input[type="button"],
  .btnAreaCenter input[type="submit"],
  .btnAreaCenter a {
    background: #16bea8;
    color: #fff;
    margin: 0 5px;
    padding: 10px 60px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
  }
  .btnAreaCenter button.noEvent,
  .btnAreaCenter input[type="button"].noEvent,
  .btnAreaCenter input[type="submit"].noEvent,
  .btnAreaCenter a.noEvent {
    pointer-events: none;
    background: #ddd;
    box-shadow: 0px 4px 0px 0px #aaa;
  }
  .btnAreaCenter button:hover,
  .btnAreaCenter input[type="button"]:hover,
  .btnAreaCenter input[type="submit"]:hover,
  .btnAreaCenter a:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .btnAreaCenter button.red,
  .btnAreaCenter input[type="button"].red,
  .btnAreaCenter input[type="submit"].red,
  .btnAreaCenter a.red {
    background: #ff7d26;
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  .btnAreaCenter button.red:hover,
  .btnAreaCenter input[type="button"].red:hover,
  .btnAreaCenter input[type="submit"].red:hover,
  .btnAreaCenter a.red:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
  }
  .btnAreaCenter button.blue,
  .btnAreaCenter input[type="button"].blue,
  .btnAreaCenter input[type="submit"].blue,
  .btnAreaCenter a.blue {
    background: #49a7d0;
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px #447c96;
  }
  .btnAreaCenter button.blue:hover,
  .btnAreaCenter input[type="button"].blue:hover,
  .btnAreaCenter input[type="submit"].blue:hover,
  .btnAreaCenter a.blue:hover {
    box-shadow: 0px 1px 0px 0px #447c96;
  }
  /*=================================================================*/
  /*	フォームの中のボタンスタイル */
  /*=================================================================*/
  section.column1Form .number + .btn,
  section.column1Editor .number + .btn {
    margin-top: 10px;
    margin-bottom: 24px;
  }
  section.column1Form .number + .btn.noMargin,
  section.column1Editor .number + .btn.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .annotation,
  section.column1Editor .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 8px 0 20px;
  }
  section.column1Form .btn,
  section.column1Editor .btn {
    display: inline-block;
    text-decoration: none !important;
    background: #16bea8;
    color: #fff !important;
    margin: 0;
    padding: 5px 50px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    color: #fff;
    font-size: 1.4rem;
  }
  section.column1Form .btn:hover,
  section.column1Editor .btn:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  /*=================================================================*/
  /*	1カラム */
  /*=================================================================*/
  section.column1Form {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
  }
  section.column1Form h2 {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  section.column1Form h2 span {
    position: relative;
    font-size: 2.3rem;
    font-weight: 700;
  }
  section.column1Form h2 span::before,
  section.column1Form h2 span::after {
    content: url(../images/sec/column1header.svg);
  }
  section.column1Form h2 span::before {
    position: absolute;
    top: -7px;
    left: -25px;
  }
  section.column1Form h2 span::after {
    position: absolute;
    top: -7px;
    right: -25px;
  }
  section.column1Form h3 {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 7px;
  }
  section.column1Form .required {
    background: #e63931;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
  }
  section.column1Form .anyItem {
    background: #ddd;
    font-size: 1.2rem;
    font-weight: 500;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
  }
  section.column1Form div.txt {
    text-align: center;
    margin-bottom: 20px;
  }
  /*	ログイン
---------------------------------------------------------------*/
  section.column1Form .login {
    display: flex;
    width: 400px;
    padding: 50px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .login input[type="text"],
  section.column1Form .login input[type="password"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 277px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .login input[type="text"] {
    margin-bottom: 20px;
  }
  section.column1Form .login div.remake {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  section.column1Form .login div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
    margin-top: 20px;
  }
  section.column1Form .login a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .login a:hover {
    text-decoration: none;
  }
  /*	フォームデフォルト(お問い合わせ、ステップ型など)
---------------------------------------------------------------*/
  section.stepForm .formDefault {
    width: 800px !important;
  }
  section.stepForm .modeChange {
    width: 800px !important;
  }
  section.stepForm input[type="text"],
  section.stepForm input[type="password"],
  section.stepForm input[type="email"],
  section.stepForm textarea {
    width: 637px !important;
  }
  section.stepForm input[type="text"].p50 {
    width: 50% !important;
    display: inline-block;
  }
  section.column1Form .formDefault {
    display: flex;
    width: 600px;
    padding: 50px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .cl1Box {
    padding: 0 30px;
  }
  section.column1Form .formDefault input::placeholder {
    color: #aaa;
  }
  section.column1Form .formDefault input[type="text"],
  section.column1Form .formDefault input[type="password"],
  section.column1Form .formDefault input[type="tel"],
  section.column1Form .formDefault input[type="email"],
  section.column1Form .formDefault textarea {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 467px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .formDefault input[type="text"].error,
  section.column1Form .formDefault input[type="password"].error,
  section.column1Form .formDefault input[type="tel"].error,
  section.column1Form .formDefault input[type="email"].error,
  section.column1Form .formDefault textarea.error {
    background: #ffe9dd;
  }
  section.column1Form .formDefault select {
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    max-width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault select.error {
    background-color: #ffe9dd;
  }
  section.column1Form .formDefault select.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .radio {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .radio label.radioBtn {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  section.column1Form .formDefault .radio label.radioBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  section.column1Form .formDefault .radio label.radioBtn2 {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  section.column1Form .formDefault .radio label.radioBtn2::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  section.column1Form .formDefault .radio input[type="radio"]:checked + label::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 4px;
  }
  section.column1Form .formDefault .radio input[type="radio"]:checked + label.radioBtn2::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    left: 4px;
  }
  section.column1Form .formDefault .radio.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .checkBox {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .checkBox input[type="checkbox"]:checked + label::after {
    content: url(../images/sec/check.svg);
    position: absolute;
    top: 0px;
    left: 2px;
  }
  section.column1Form .formDefault .checkBox label {
    width: calc(100% / 3 - 1.55em);
    position: relative;
    padding-left: 1.55em;
    display: inline-block;
  }
  section.column1Form .formDefault .checkBox label:before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
  }
  section.column1Form .formDefault .checkBox.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault textarea + .error {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault input[type="text"],
  section.column1Form .formDefault input[type="password"],
  section.column1Form .formDefault input[type="tel"],
  section.column1Form .formDefault input[type="email"],
  section.column1Form .formDefault textarea {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault input[type="text"].noMargin,
  section.column1Form .formDefault input[type="password"].noMargin,
  section.column1Form .formDefault input[type="tel"].noMargin,
  section.column1Form .formDefault input[type="email"].noMargin,
  section.column1Form .formDefault textarea.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .number.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
  }
  section.column1Form .formDefault a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .formDefault a:hover {
    text-decoration: none;
  }
  section.column1Form .formDefault + .btnAreaCenter {
    margin: 0 auto;
  }
  section.column1Form .formDefault .confBox > div {
    background: #fff;
    padding: 10px 12px;
    width: 467px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .confBox > div:last-child {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .confBox p {
    margin-bottom: 20px;
  }
  section.column1Form .number {
    display: flex;
    align-items: center;
  }
  section.column1Form .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .number input[type="number"].error {
    background: #ffe9dd;
  }
  section.column1Form .number input[type="text"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .number input[type="text"].error {
    background: #ffe9dd;
  }
  section.column1Form .number input[type="tel"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .number input[type="tel"].error {
    background: #ffe9dd;
  }
  section.column1Form .number span {
    font-size: 2.0rem;
    margin: 0 10px;
  }
  section.column1Form .contactInfo {
    display: flex;
    width: 600px;
    padding: 40px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .contactInfo a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .contactInfo a:hover {
    text-decoration: none;
  }
  section.column1Form .contactInfo h3 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.0em;
  }
  section.column1Form .contactInfo h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column1Form .contactInfo dl {
    display: flex;
    margin-bottom: 15px;
  }
  section.column1Form .contactInfo dl dt {
    font-size: 1.3rem;
    color: #fff;
    background: #16bea8;
    border-radius: 20px;
    padding: 0 15px;
    margin-right: 10px;
  }
  section.column1Form .accordion {
    margin-bottom: 15px;
  }
  section.column1Form .accordion div:nth-child(2) {
    width: 637px;
    box-sizing: border-box;
    padding: 10px;
    display: none;
  }
  section.column1Form .accordion div:nth-child(2) p {
    font-family: serif;
  }
  section.column1Form .accordion div:first-child {
    position: relative;
    border: 1px solid #16bea8;
    padding: 5px 20px;
    background: #16bea8;
    color: #fff;
    cursor: pointer;
    /* 二本の横棒を作成する */
    /* 2本の横棒のうち一本は縦棒にする */
  }
  section.column1Form .accordion div:first-child::before, section.column1Form .accordion div:first-child::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(-50%);
  }
  section.column1Form .accordion div:first-child::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.3s;
  }
  section.column1Form .accordion div:first-child.active::after {
    /* プラスがクリックされたら縦棒を横にしてマイナスにする疑似要素 */
    transform: rotate(0);
    transition: 0.3s;
  }
  /*=================================================================*/
  /*	1カラムプロフィール等編集画面 */
  /*=================================================================*/
  section.column1Editor {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
  }
  section.column1Editor h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  section.column1Editor h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column1Editor .formDefault {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 50px 30px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault > div {
    width: 100%;
  }
  section.column1Editor .formDefault > div.photoBox {
    width: 400px;
    margin-left: 40px;
  }
  section.column1Editor .formDefault > div.photoBox .photo {
    width: 400px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    background-size: 200px auto;
    position: relative;
    margin-bottom: 30px;
  }
  section.column1Editor .formDefault > div.photoBox .photo:last-child {
    margin-bottom: 0;
  }
  section.column1Editor .formDefault > div.photoBox .photo a {
    background: #16bea8;
    display: flex;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -10px;
    right: -10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .2s;
  }
  section.column1Editor .formDefault > div.photoBox .photo a:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  section.column1Editor .formDefault > div.photoBox .photo a .up {
    display: none;
  }
  section.column1Editor .formDefault > div.photoBox .photo a:hover .up {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  section.column1Editor .formDefault input::placeholder {
    color: #aaa;
  }
  section.column1Editor .formDefault input[type="text"],
  section.column1Editor .formDefault input[type="password"],
  section.column1Editor .formDefault input[type="tel"],
  section.column1Editor .formDefault input[type="email"],
  section.column1Editor .formDefault textarea {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Editor .formDefault input[type="text"].error,
  section.column1Editor .formDefault input[type="password"].error,
  section.column1Editor .formDefault input[type="tel"].error,
  section.column1Editor .formDefault input[type="email"].error,
  section.column1Editor .formDefault textarea.error {
    background: #ffe9dd;
  }
  section.column1Editor .formDefault textarea + .error {
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault input[type="text"],
  section.column1Editor .formDefault input[type="password"],
  section.column1Editor .formDefault input[type="tel"],
  section.column1Editor .formDefault input[type="email"] {
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
  }
  section.column1Editor .formDefault a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Editor .formDefault a:hover {
    text-decoration: none;
  }
  section.column1Editor .formDefault + .btnAreaCenter {
    margin: 0 auto;
  }
  section.column1Editor .formDefault .confBox > div {
    background: #fff;
    padding: 10px 12px;
    width: 467px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault .confBox > div:last-child {
    margin-bottom: 0;
  }
  section.column1Editor .formDefault .confBox p {
    margin-bottom: 20px;
  }
  section.column1Editor .number {
    display: flex;
    align-items: center;
  }
  section.column1Editor .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Editor .number input[type="number"].error {
    background: #ffe9dd;
  }
  section.column1Editor .number input[type="text"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Editor .number input[type="text"].error {
    background: #ffe9dd;
  }
  section.column1Editor .number input[type="tel"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Editor .number input[type="tel"].error {
    background: #ffe9dd;
  }
  section.column1Editor .number span {
    font-size: 2.0rem;
    margin: 0 10px;
  }
  /*=================================================================*/
  /*	1カラムカードリスト */
  /*=================================================================*/
  .column1cardList {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
  }
  .column1cardList h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .column1cardList h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1cardList .listBox {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .column1cardList .listBox a {
    display: block;
    background: #fff;
    width: calc(100% / 4 - 20px);
    box-sizing: border-box;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .2s;
    margin-right: 20px;
  }
  .column1cardList .listBox a:nth-child(4n) {
    margin-right: 0;
  }
  .column1cardList .listBox a:nth-child(n+5) {
    margin-top: 25px;
  }
  .column1cardList .listBox a dl dt {
    height: 150px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  .column1cardList .listBox a dl dt div {
    font-size: 1.3rem;
    padding: 3px 14px 3px 8px;
    color: #fff;
    display: inline-block;
    border-radius: 0 20px 20px 0;
  }
  .column1cardList .listBox a dl dt div.cat01 {
    background: #2AA8CE;
  }
  .column1cardList .listBox a dl dt div.cat02 {
    background: #56B546;
  }
  .column1cardList .listBox a dl dt div.cat03 {
    background: #B59846;
  }
  .column1cardList .listBox a dl dt div.cat04 {
    background: #A5A5A5;
  }
  .column1cardList .listBox a dl dt div.cat05 {
    background: #BF7CC7;
  }
  .column1cardList .listBox a dl dt div.cat06 {
    background: #424242;
  }
  .column1cardList .listBox a dl dd {
    padding: 20px 15px;
  }
  .column1cardList .listBox a dl dd h3 {
    color: #16bea8;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .column1cardList .listBox a:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  .column1cardList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .column1cardList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .column1cardList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    margin-left: 5px;
  }
  .column1cardList .listControl .listChange {
    display: flex;
  }
  .column1cardList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .column1cardList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .column1cardList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .column1cardList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .column1cardList .listControl .pager {
    display: flex;
  }
  .column1cardList .listControl .pager a {
    background: #16bea8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .column1cardList .listControl .pager a:first-child {
    margin-left: 0;
  }
  .column1cardList .listControl .pager a:hover {
    background: #000;
  }
  .column1cardList .listControl .pager a.arrow {
    background: none;
  }
  .column1cardList .listControl .pager span {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .column1cardList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .column1cardList .listControl .pager span.arrow {
    background: none;
  }
  .column1cardList .listControl > div {
    display: flex;
    align-items: center;
  }
  /*=================================================================*/
  /*	1カラムテキストリスト */
  /*=================================================================*/
  .column1txtList {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
  }
  .column1txtList h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .column1txtList h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1txtList .listBox {
    padding: 30px 30px 20px 30px;
    background: #fff;
  }
  .column1txtList .listBox dl {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }
  .column1txtList .listBox dl dd.label {
    background: #ff7d26;
    color: #fff;
    font-size: 1.3rem;
    padding: 0 7px;
    margin: 0 20px;
  }
  .column1txtList .listBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1txtList .listBox dl dd a:hover {
    text-decoration: none;
  }
  .column1txtList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .column1txtList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .column1txtList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    margin-left: 5px;
  }
  .column1txtList .listControl .listChange {
    display: flex;
  }
  .column1txtList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .column1txtList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .column1txtList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .column1txtList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .column1txtList .listControl .pager {
    display: flex;
  }
  .column1txtList .listControl .pager a {
    background: #16bea8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .column1txtList .listControl .pager a:first-child {
    margin-left: 0;
  }
  .column1txtList .listControl .pager a:hover {
    background: #000;
  }
  .column1txtList .listControl .pager a.arrow {
    background: none;
  }
  .column1txtList .listControl .pager span {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .column1txtList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .column1txtList .listControl .pager span.arrow {
    background: none;
  }
  .column1txtList .listControl > div {
    display: flex;
    align-items: center;
  }
  /*=================================================================*/
  /*	検索条件一覧 */
  /*=================================================================*/
  .searchSaveList {
    /* FAQ一覧用スタイル */
  }
  .searchSaveList .listBox .whiteBox1 {
    background: #fff;
    padding: 30px 30px 20px 30px;
    margin-bottom: 20px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div:first-child .date {
    font-size: 1.3rem;
    color: #aaa;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div:first-child .name {
    font-size: 2.5rem;
    color: #16bea8;
    font-weight: 500;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea {
    display: flex;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a {
    text-align: center;
    background: #16bea8;
    color: #fff;
    padding: 10px 40px;
    width: auto;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    margin-bottom: 10px;
    margin-left: 7px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a.red {
    background: #ff7d26;
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a.red:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox {
    display: table;
    width: 100%;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl {
    display: table-row;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dt, .searchSaveList .listBox .whiteBox1 .tableBox dl dd {
    display: table-cell;
    vertical-align: top;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
    width: 175px;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dd a:hover {
    text-decoration: none;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  .searchSaveList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .searchSaveList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .searchSaveList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    margin-left: 5px;
  }
  .searchSaveList .listControl .listChange {
    display: flex;
  }
  .searchSaveList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .searchSaveList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .searchSaveList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .searchSaveList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .searchSaveList .listControl .pager {
    display: flex;
  }
  .searchSaveList .listControl .pager a {
    background: #16bea8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .searchSaveList .listControl .pager a:first-child {
    margin-left: 0;
  }
  .searchSaveList .listControl .pager a:hover {
    background: #000;
  }
  .searchSaveList .listControl .pager a.arrow {
    background: none;
  }
  .searchSaveList .listControl .pager span {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  .searchSaveList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .searchSaveList .listControl .pager span.arrow {
    background: none;
  }
  .searchSaveList .listControl > div {
    display: flex;
    align-items: center;
  }
  .searchSaveList .faq .shadowBox {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s;
    transition: .2s;
    display: block;
  }
  .searchSaveList .faq .shadowBox:hover {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }
  .searchSaveList .faq .headBox {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  /*=================================================================*/
  /*	1カラム詳細画面(求人・人材詳細) */
  /*=================================================================*/
  .column1detail {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
    /*ラジオボタンを全て消す*/
    /*タブ切り替えの中身のスタイル*/
    /*選択されているタブのコンテンツのみを表示*/
    /*選択されているタブのスタイルを変える*/
  }
  .column1detail .headFlex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .column1detail .headFlex .label {
    font-size: 2.0rem;
    font-weight: 400;
    background: #f18200;
    padding: 6px 38px;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    border: 4px solid #ff0000;
  }
  .column1detail .headFlex .sns {
    display: flex;
    justify-content: flex-end;
  }
  .column1detail .headFlex .sns .twitter {
    background: #00acee;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    width: 99px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
    transition: .2s;
  }
  .column1detail .headFlex .sns .twitter img {
    margin-right: 3px;
  }
  .column1detail .headFlex .sns .twitter:hover {
    background: #000;
    transition: .2s;
  }
  .column1detail .headFlex .sns .facebook {
    background: #3b5998;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    width: 99px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: .2s;
  }
  .column1detail .headFlex .sns .facebook img {
    margin-right: 3px;
  }
  .column1detail .headFlex .sns .facebook:hover {
    background: #000;
    transition: .2s;
  }
  .column1detail .headFlex .api {
    display: flex;
    justify-content: flex-end;
  }
  .column1detail .headFlex .api a {
    display: flex;
    align-items: center;
    background: #49a7d0;
    color: #fff;
    padding: 3px 23px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #447c96;
    transition: .15s;
    font-size: 1.3rem;
  }
  .column1detail .headFlex .api a svg {
    margin-left: 10px;
  }
  .column1detail .headFlex .api a:hover {
    box-shadow: 0px 1px 0px 0px #447c96;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .control {
    display: flex;
    margin-top: 10px;
  }
  .column1detail .headFlex .control .favoriteBtn, .column1detail .headFlex .control .btn {
    display: flex;
    background: #16bea8;
    color: #fff;
    padding: 10px 23px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    align-items: center;
    margin-left: 8px;
  }
  .column1detail .headFlex .control .favoriteBtn:hover, .column1detail .headFlex .control .btn:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .control .favoriteBtn svg, .column1detail .headFlex .control .btn svg {
    position: relative;
    margin-right: 5px;
  }
  .column1detail .headFlex .control .favoriteBtn svg path.heart, .column1detail .headFlex .control .btn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .column1detail .headFlex .control .favoriteBtn.check svg path.noHeart, .column1detail .headFlex .control .btn.check svg path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .column1detail .headFlex .control .favoriteBtn.check svg path.heart, .column1detail .headFlex .control .btn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .column1detail .headFlex .control .redBtn {
    display: flex;
    background: #ff7d26;
    color: #fff;
    padding: 10px 23px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #bf530a;
    transition: .15s;
    margin-left: 8px;
  }
  .column1detail .headFlex .control .redBtn:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .cont01 {
    flex-basis: 134px;
    align-self: flex-start;
  }
  .column1detail .headFlex .nd_ttl {
    flex-basis: 1000px;
  }
  .column1detail .tab_item {
    width: calc(100%/6);
    height: 60px;
    background-color: #ddd;
    line-height: 42px;
    text-align: center;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  .column1detail .tab_item:hover {
    cursor: pointer;
    background: #16bea8;
    border-color: #16bea8;
    color: #fff;
  }
  .column1detail input[name="tab_item"] {
    display: none;
  }
  .column1detail .whiteBox1 {
    display: none;
    clear: both;
  }
  .column1detail .whiteBox1.display {
    display: block;
  }
  .column1detail #job:checked ~ #job_content,
  .column1detail #campany:checked ~ #campany_content {
    display: block;
  }
  .column1detail input:checked + .tab_item {
    background-color: #fff;
    border-color: #fff;
    color: #333;
    cursor: default;
  }
  .column1detail #api {
    margin-top: 40px;
  }
  .column1detail h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .column1detail h2 span {
    display: block;
    font-size: 1.3rem;
    color: #aaa;
    font-weight: 400;
  }
  .column1detail h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1detail h2 + div {
    color: #aaa;
    font-size: 1.4rem;
  }
  .column1detail .whiteBox1 {
    padding: 30px 30px 20px 30px;
    background: #fff;
    clear: both;
  }
  .column1detail .whiteBox1 h3 {
    display: flex;
    align-items: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 40px 0 30px 0;
  }
  .column1detail .whiteBox1 h3 span {
    margin-left: 8px;
    background: linear-gradient(transparent 80%, #ffff66 80%);
  }
  .column1detail .whiteBox1 .photoBox {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .column1detail .whiteBox1 .photoBox > div {
    width: 300px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    background-size: 200px auto;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
  }
  .column1detail .whiteBox1 .photoBox > div picture {
    display: block;
    height: 100%;
    background: #ccc;
  }
  .column1detail .whiteBox1 .photoBox > div img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
  }
  .column1detail .whiteBox1 .comment {
    margin-bottom: 30px;
  }
  .column1detail .whiteBox1 .tableBox {
    display: table;
    width: 100%;
  }
  .column1detail .whiteBox1 .tableBox dl {
    display: table-row;
  }
  .column1detail .whiteBox1 .tableBox dl dt, .column1detail .whiteBox1 .tableBox dl dd {
    display: table-cell;
    vertical-align: top;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .column1detail .whiteBox1 .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
    width: 175px;
  }
  .column1detail .whiteBox1 .tableBox dl dd {
    border-bottom: 2px solid #eee;
  }
  .column1detail .whiteBox1 .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1detail .whiteBox1 .tableBox dl dd a:hover {
    text-decoration: none;
  }
  .column1detail .whiteBox1 .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  .column1detail .whiteBox1 .flexBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .column1detail .whiteBox1 .flexBox > div {
    width: 100%;
  }
  .column1detail .whiteBox1 .flexBox > div:first-child {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .column1detail .whiteBox1 .flexBox > div:last-child {
    width: 22%;
    margin-left: 40px;
  }
  .column1detail .whiteBox1 .flexBox > div:last-child.photo {
    width: 620px;
  }
  .column1detail .whiteBox1 .flexBox > div:last-child.photo img {
    width: 100%;
  }
  .column1detail .whiteBox1 .flexBox > div .peapleIcon {
    border: 1px solid #16bea8;
    padding: 20px;
  }
  .column1detail .whiteBox1 .flexBox > div .peapleIcon + div {
    color: #16bea8;
    font-size: 1.6rem;
    margin-top: 5px;
  }
  .column1detail .whiteBox1 .txtArea a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1detail .whiteBox1 .txtArea a[href$=".pdf"]:before {
    content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/sec/pdf.svg) no-repeat;
  }
  .column1detail .whiteBox1 .txtArea a:hover {
    text-decoration: none;
  }
  .nd_ttl span.nd_cat {
    font-size: 1.3rem !important;
    color: #fff !important;
    display: inline-block !important;
    margin-right: 8px;
    margin-bottom: 1px;
    vertical-align: text-bottom;
    padding: 1px 8px;
    line-height: 140%;
  }
  .nd_ttl span.cat01 {
    background: #2AA8CE;
  }
  .nd_ttl span.cat02 {
    background: #56B546;
  }
  .nd_ttl span.cat03 {
    background: #B59846;
  }
  .nd_ttl span.cat04 {
    background: #A5A5A5;
  }
  .nd_ttl span.cat05 {
    background: #BF7CC7;
  }
  .nd_ttl span.cat06 {
    background: #424242;
  }
  /*=================================================================*/
  /*	2カラム + マイページトップ大枠 */
  /*=================================================================*/
  section.column2 {
    width: 1200px;
    margin: 0 auto;
    padding: 45px 0 229px;
    display: flex;
    justify-content: space-between;
  }
  section.column2 > form#searchForm, section.column2 form#serach_condition_name {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  section.column2 .sideMenu {
    width: 241px;
  }
  section.column2 .sideMenu dl {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
  section.column2 .sideMenu dl dt {
    background: #16bea8;
    color: #fff;
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
  }
  section.column2 .sideMenu dl dt span {
    font-weight: 500;
    margin-left: 6px;
  }
  section.column2 .sideMenu dl dd {
    background: #fff;
    padding: 5px;
    border-bottom: 1px solid #d8d8d8;
  }
  section.column2 .sideMenu dl dd:last-child {
    border-bottom: 0;
  }
  section.column2 .sideMenu dl dd a {
    display: flex;
    padding: 18px 10px;
    transition: .2s;
    background: url(../images/sec/sidemenuarrow.svg) no-repeat center right 15px;
  }
  section.column2 .sideMenu dl dd a:hover {
    background: #e8f6f4 url(../images/sec/sidemenuarrow.svg) no-repeat center right 5px;
    transition: .2s;
  }
  section.column2 .mainColumn {
    width: 919px;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .whiteBox1 {
    background: #fff;
    padding: 30px;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn .whiteBox1 + .btnAreaCenter {
    margin: 0 auto 40px;
  }
  section.column2 .mainColumn h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column2 .mainColumn .errorBox {
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 3px solid #ff1d1d;
    color: #ff1d1d;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn .required {
    background: #e63931;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
    padding: 5px 10px;
  }
  section.column2 .mainColumn .tableBox {
    display: table;
    width: 100%;
  }
  section.column2 .mainColumn .tableBox textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox dl {
    display: table-row;
  }
  section.column2 .mainColumn .tableBox dl dt, section.column2 .mainColumn .tableBox dl dd {
    display: table-cell;
    vertical-align: top;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
    width: 260px;
  }
  section.column2 .mainColumn .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column2 .mainColumn .tableBox dl dd a:hover {
    text-decoration: none;
  }
  section.column2 .mainColumn .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  section.column2 .mainColumn .tableBox select {
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    max-width: 100%;
    border: 1px solid #ddd;
  }
  section.column2 .mainColumn .tableBox input[type="text"],
  section.column2 .mainColumn .tableBox input[type="password"],
  section.column2 .mainColumn .tableBox input[type="number"] {
    padding: 10px 30px 10px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox input[type="text"], section.column2 .mainColumn .tableBox input[type="password"] {
    width: 100%;
  }
  section.column2 .mainColumn .contactInfo {
    padding: 30px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column2 .mainColumn .contactInfo a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column2 .mainColumn .contactInfo a:hover {
    text-decoration: none;
  }
  section.column2 .mainColumn .contactInfo h3 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.0em;
  }
  section.column2 .mainColumn .contactInfo h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column2 .mainColumn .contactInfo dl {
    display: flex;
    margin-bottom: 15px;
  }
  section.column2 .mainColumn .contactInfo dl dt {
    font-size: 1.3rem;
    color: #fff;
    background: #ff7d26;
    border-radius: 20px;
    padding: 0 15px;
    margin-right: 10px;
  }
  section.column2 .mainColumn .contactInfo dl:last-child {
    margin-bottom: 0;
  }
  section.column2 .mainColumn .whiteList01 {
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
  }
  section.column2 .mainColumn .whiteList01 a {
    display: block;
    border-bottom: 1px solid #eee;
    transition: .2s;
  }
  section.column2 .mainColumn .whiteList01 a dl {
    display: flex;
    padding: 10px;
  }
  section.column2 .mainColumn .whiteList01 a dl dt {
    width: 300px;
    height: 144px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
  }
  section.column2 .mainColumn .whiteList01 a dl dd {
    padding-left: 20px;
  }
  section.column2 .mainColumn .whiteList01 a dl dd .date {
    font-size: 1.5rem;
  }
  section.column2 .mainColumn .whiteList01 a dl dd .type {
    color: #aaa;
    font-size: 1.5rem;
  }
  section.column2 .mainColumn .whiteList01 a dl dd h3 {
    font-size: 2.3rem;
    font-weight: 500;
    color: #16bea8;
    margin-bottom: 10px;
  }
  section.column2 .mainColumn .whiteList01 a:hover {
    background: #e8f6f4;
    transition: .2s;
  }
  section.column2 .mainColumn .whiteList01 a:last-child {
    border-bottom: 0;
  }
  section.column2 .mainColumn .cardList .nextArrow {
    position: absolute;
    right: 9px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 19px;
    height: 30px;
    filter: drop-shadow(0 4px 1px rgba(0, 0, 0, 0.1));
    cursor: pointer;
    transition: .2s;
    z-index: 1;
  }
  section.column2 .mainColumn .cardList .nextArrow:hover {
    transition: .2s;
    transform: translate3d(0, 3px, 0);
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
  }
  section.column2 .mainColumn .cardList .prevArrow {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 19px;
    height: 30px;
    filter: drop-shadow(0 4px 1px rgba(0, 0, 0, 0.1));
    cursor: pointer;
    transition: .2s;
    z-index: 1;
  }
  section.column2 .mainColumn .cardList .prevArrow:hover {
    transition: .2s;
    transform: translate3d(0, 3px, 0);
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
  }
  section.column2 .mainColumn .cardList .slick-track {
    padding-bottom: 7px;
  }
  section.column2 .mainColumn .cardList .cardEl {
    width: 202px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: .2s;
    margin: 0 10px;
  }
  section.column2 .mainColumn .cardList .cardEl a {
    display: block;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dt {
    height: 143px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dt img {
    width: auto !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd {
    padding: 16px 11px;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd h3 {
    font-size: 1.6rem;
    color: #16bea8;
    font-weight: 500;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd .about {
    font-size: 1.4rem;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 11px;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite a {
    display: block;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg {
    cursor: pointer;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg + .add, section.column2 .mainColumn .cardList .cardEl .favorite svg + span[id*="favorite_name_new"], section.column2 .mainColumn .cardList .cardEl .favorite svg + span {
    display: none;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg + .add + .list {
    display: none;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg:hover + .add, section.column2 .mainColumn .cardList .cardEl .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  section.column2 .mainColumn .cardList .cardEl:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  section.column2 .mainColumn .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  section.column2 .mainColumn .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  section.column2 .mainColumn .listControl.end {
    justify-content: flex-end;
  }
  section.column2 .mainColumn .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    margin-left: 5px;
  }
  section.column2 .mainColumn .listControl .listChange {
    display: flex;
  }
  section.column2 .mainColumn .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  section.column2 .mainColumn .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  section.column2 .mainColumn .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  section.column2 .mainColumn .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  section.column2 .mainColumn .listControl .pager {
    display: flex;
  }
  section.column2 .mainColumn .listControl .pager a {
    background: #16bea8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  section.column2 .mainColumn .listControl .pager a:first-child {
    margin-left: 0;
  }
  section.column2 .mainColumn .listControl .pager a:hover {
    background: #000;
  }
  section.column2 .mainColumn .listControl .pager a.arrow {
    background: none;
  }
  section.column2 .mainColumn .listControl .pager span {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 34px;
    margin-left: 5px;
  }
  section.column2 .mainColumn .listControl .pager span:first-child {
    margin-left: 0;
  }
  section.column2 .mainColumn .listControl .pager span.arrow {
    background: none;
  }
  section.column2 .mainColumn .listControl > div {
    display: flex;
    align-items: center;
  }
  /*=================================================================*/
  /*	マッチング履歴(企業側) */
  /*=================================================================*/
  .cp_matching .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .cp_matching .listStyle .resourceLabel1 dl {
    display: flex;
    align-items: center;
  }
  .cp_matching .listStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
  }
  .cp_matching .listStyle .resourceLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .cp_matching .listStyle .resourceLabel2 {
    display: table;
    width: 93%;
    margin: 20px 0;
  }
  .cp_matching .listStyle .resourceLabel2 dl {
    display: table-row;
  }
  .cp_matching .listStyle .resourceLabel2 dl dt, .cp_matching .listStyle .resourceLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .cp_matching .listStyle .resourceLabel2 dl dt {
    color: #16bea8;
    width: 120px;
  }
  .cp_matching .listStyle .resourceLabel2 dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .cp_matching .listStyle .resourceLabel2 dl dd a:hover {
    text-decoration: none;
  }
  .cp_matching .listStyle .resourceList {
    display: flex;
    justify-content: space-between;
  }
  .cp_matching .listStyle .resourceList > div:first-child {
    width: 100%;
  }
  .cp_matching .listStyle .resourceList .resourceIcon {
    width: 126px;
    padding: 20px;
    border: 1px solid #16bea8;
  }
  .cp_matching .listStyle .resourceList .resourceIcon img {
    width: 124px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .cp_matching .listStyle .resourceList .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    line-height: 140%;
  }
  .cp_matching .listStyle .resourceList .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
  }
  .cp_matching .listStyle .resourceList .favorite a {
    display: block;
  }
  .cp_matching .listStyle .resourceList .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .cp_matching .listStyle .resourceList .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .cp_matching .listStyle .resourceList .favorite svg + .add, .cp_matching .listStyle .resourceList .favorite svg + span[id*="favorite_name_new"], .cp_matching .listStyle .resourceList .favorite svg + span {
    display: none;
  }
  .cp_matching .listStyle .resourceList .favorite svg:hover + .add, .cp_matching .listStyle .resourceList .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .cp_matching .listStyle .resourceList .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .cp_matching .listStyle .resourceList .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .cp_matching .listStyle .resourceList .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .cp_matching .listStyle .stepBar {
    display: flex;
    position: relative;
    margin: 30px auto;
    text-align: center;
  }
  .cp_matching .listStyle .stepBar li {
    font-size: 1.4rem;
    list-style: none;
    position: relative;
    width: 33.333%;
  }
  .cp_matching .listStyle .stepBar li:after {
    background: #a6eae1;
    content: "";
    width: calc(100% - 30px);
    height: 6px;
    position: absolute;
    left: calc(-50% + 15px);
    top: 12px;
  }
  .cp_matching .listStyle .stepBar li:first-child:after {
    display: none;
  }
  .cp_matching .listStyle .stepBar li span {
    background: #a6eae1;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    width: 30px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  .cp_matching .listStyle .stepBar .visited:after {
    background: #ff7d26;
  }
  .cp_matching .listStyle .stepBar .visited span {
    background: #ff7d26;
  }
  .cp_matching .cardStyle {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .cp_matching .cardStyle .whiteBox1 {
    width: 210px;
    box-sizing: border-box;
    margin-right: 5px;
  }
  .cp_matching .cardStyle .whiteBox1:nth-child(4n) {
    margin-right: 0;
  }
  .cp_matching .cardStyle .btnAreaCenter a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
  }
  .cp_matching .cardStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .cp_matching .cardStyle .resourceLabel1 dl dd .red {
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
  }
  .cp_matching .cardStyle .resourceLabel1 dl dd .red + span {
    display: none;
  }
  .cp_matching .cardStyle .resourceLabel2 {
    display: none;
  }
  .cp_matching .cardStyle .stepBar {
    display: none;
  }
  .cp_matching .cardStyle .resourceIcon {
    padding: 10px;
  }
  .cp_matching .cardStyle .resourceIcon img {
    display: block;
    margin: 0 auto;
  }
  .cp_matching .cardStyle .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    white-space: nowrap;
    text-align: center;
  }
  .cp_matching .cardStyle .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
  }
  .cp_matching .cardStyle .favorite a {
    display: block;
  }
  .cp_matching .cardStyle .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .cp_matching .cardStyle .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .cp_matching .cardStyle .favorite svg + .add, .cp_matching .cardStyle .favorite svg + span[id*="favorite_name_new"], .cp_matching .cardStyle .favorite svg + span {
    display: none;
  }
  .cp_matching .cardStyle .favorite svg + .add + .list {
    display: none;
  }
  .cp_matching .cardStyle .favorite svg:hover + .add, .cp_matching .cardStyle .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .cp_matching .cardStyle .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .cp_matching .cardStyle .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .cp_matching .cardStyle .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  /*=================================================================*/
  /*	マッチング履歴(人材側) */
  /*=================================================================*/
  .pe_matching .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .pe_matching .listStyle .campanyLabel1 dl {
    display: flex;
    align-items: center;
  }
  .pe_matching .listStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
  }
  .pe_matching .listStyle .campanyLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .pe_matching .listStyle .campanyLabel1 dl dd .name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .pe_matching .listStyle .campanyLabel2 {
    display: table;
    width: 93%;
    margin: 20px 0;
  }
  .pe_matching .listStyle .campanyLabel2 dl {
    display: table-row;
  }
  .pe_matching .listStyle .campanyLabel2 dl dt, .pe_matching .listStyle .campanyLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .pe_matching .listStyle .campanyLabel2 dl dt {
    color: #16bea8;
    width: 120px;
  }
  .pe_matching .listStyle .campanyLabel2 dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .pe_matching .listStyle .campanyLabel2 dl dd a:hover {
    text-decoration: none;
  }
  .pe_matching .listStyle .campanyList {
    display: flex;
    justify-content: space-between;
  }
  .pe_matching .listStyle .campanyList > div:first-child {
    width: 100%;
  }
  .pe_matching .listStyle .campanyList .campanyIcon {
    width: 300px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  .pe_matching .listStyle .campanyList .campanyIcon img {
    width: 110% !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pe_matching .listStyle .campanyList .campanyIcon .campanyPhoto {
    width: 300px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
  }
  .pe_matching .listStyle .campanyList .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
    margin-top: 5px;
  }
  .pe_matching .listStyle .campanyList .favorite div {
    color: #16bea8;
    font-size: 1.4rem;
    margin-right: 8px;
  }
  .pe_matching .listStyle .campanyList .favorite a {
    display: block;
  }
  .pe_matching .listStyle .campanyList .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .pe_matching .listStyle .campanyList .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .pe_matching .listStyle .campanyList .favorite svg + .add, .pe_matching .listStyle .campanyList .favorite svg + span[id*="favorite_name_new"], .pe_matching .listStyle .campanyList .favorite svg + span {
    display: none;
  }
  .pe_matching .listStyle .campanyList .favorite svg + .add + .list {
    display: none;
  }
  .pe_matching .listStyle .campanyList .favorite svg:hover + .add, .pe_matching .listStyle .campanyList .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .pe_matching .listStyle .campanyList .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .pe_matching .listStyle .campanyList .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .pe_matching .listStyle .campanyList .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .pe_matching .listStyle .stepBar {
    display: flex;
    position: relative;
    margin: 30px auto;
    text-align: center;
  }
  .pe_matching .listStyle .stepBar li {
    font-size: 1.4rem;
    list-style: none;
    position: relative;
    width: 33.333%;
  }
  .pe_matching .listStyle .stepBar li:after {
    background: #a6eae1;
    content: "";
    width: calc(100% - 30px);
    height: 6px;
    position: absolute;
    left: calc(-50% + 15px);
    top: 12px;
  }
  .pe_matching .listStyle .stepBar li:first-child:after {
    display: none;
  }
  .pe_matching .listStyle .stepBar li span {
    background: #a6eae1;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    width: 30px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  .pe_matching .listStyle .stepBar .visited:after {
    background: #ff7d26;
  }
  .pe_matching .listStyle .stepBar .visited span {
    background: #ff7d26;
  }
  .pe_matching .cardStyle {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .pe_matching .cardStyle .btnAreaCenter a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 10px;
  }
  .pe_matching .cardStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .pe_matching .cardStyle .campanyLabel1 dl dd .red {
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
  }
  .pe_matching .cardStyle .campanyLabel1 dl dd .red + span {
    display: none;
  }
  .pe_matching .cardStyle .campanyLabel1 dl dd .name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .pe_matching .cardStyle .campanyLabel2 {
    display: none;
  }
  .pe_matching .cardStyle .stepBar {
    display: none;
  }
  .pe_matching .cardStyle .campanyIcon .campanyPhoto {
    width: 233px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    margin: 10px 0 0;
  }
  .pe_matching .cardStyle .campanyIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    white-space: nowrap;
    text-align: center;
  }
  .pe_matching .cardStyle .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
  }
  .pe_matching .cardStyle .favorite a {
    display: block;
  }
  .pe_matching .cardStyle .favorite div {
    color: #16bea8;
    font-size: 1.4rem;
    margin-right: 8px;
  }
  .pe_matching .cardStyle .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .pe_matching .cardStyle .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .pe_matching .cardStyle .favorite svg + .add, .pe_matching .cardStyle .favorite svg + span[id*="favorite_name_new"], .pe_matching .cardStyle .favorite svg + span {
    display: none;
  }
  .pe_matching .cardStyle .favorite svg + .add + .list {
    display: none;
  }
  .pe_matching .cardStyle .favorite svg:hover + .add, .pe_matching .cardStyle .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .pe_matching .cardStyle .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .pe_matching .cardStyle .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .pe_matching .cardStyle .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  /*=================================================================*/
  /*	プロフィール(企業・人材でスタイル共通) */
  /*=================================================================*/
  .profile .headFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .profile .headFlex a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff7d26;
    color: #fff;
    padding: 5px 30px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #bf530a;
    transition: .15s;
    margin-bottom: 10px;
  }
  .profile .headFlex a:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .profile .headFlex a img {
    margin-right: 5px;
  }
  .profile .secondHead {
    margin-top: 80px;
  }
  .profile .whiteBox1 h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .profile .whiteBox1 .scrollBox {
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 5px;
  }
  .profile .canvasWrap {
    position: relative;
  }
  .profile .canvasWrap .graphTxt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 30px;
    text-align: center;
  }
  .profile .canvasWrap .graphTxt .num {
    color: #16bea8;
    font-size: 5.0rem;
  }
  .profile .profLabel2 {
    display: table;
    width: 93%;
    margin: 0 0 20px;
  }
  .profile .profLabel2 dl {
    display: table-row;
  }
  .profile .profLabel2 dl dt, .profile .profLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 20px 10px 0;
  }
  .profile .profLabel2 dl dt {
    color: #16bea8;
    width: 220px;
  }
  .profile .profLabel2 dl dd a {
    display: block;
    color: #16bea8;
    text-decoration: underline;
  }
  .profile .profLabel2 dl dd a:hover {
    text-decoration: none;
  }
  .profile .profList {
    display: flex;
    justify-content: space-between;
  }
  .profile .profList.headBox > div {
    width: 100%;
    padding-left: 30px;
  }
  .profile .profList.headBox > div > div {
    margin-bottom: 10px;
  }
  .profile .profList.headBox > div:first-child {
    width: 20%;
    padding: 0;
  }
  .profile .profList.headBox .btnList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .profile .profList.headBox .btnList a {
    text-align: center;
    background: #16bea8;
    color: #fff;
    padding: 10px 0;
    width: calc(100% / 4 - 10px);
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    margin-bottom: 10px;
  }
  .profile .profList.headBox .btnList a:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .profile .profList.headBox .btnList a svg {
    margin-left: 10px;
  }
  .profile .profList > div:first-child {
    width: 100%;
  }
  .profile .profList .profIcon .profPhoto {
    width: 300px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
  }
  /*=================================================================*/
  /*	人材一覧 */
  /*=================================================================*/
  .peList a.favoriteBtn {
    display: flex;
  }
  .peList a.favoriteBtn svg {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
  }
  .peList a.favoriteBtn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .peList a.favoriteBtn.check svg path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .peList a.favoriteBtn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .peList .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .peList .listStyle .resourceLabel1 dl {
    display: flex;
    align-items: center;
  }
  .peList .listStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
  }
  .peList .listStyle .resourceLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .peList .listStyle .resourceLabel2 {
    display: table;
    width: 93%;
    margin: 20px 0;
  }
  .peList .listStyle .resourceLabel2 dl {
    display: table-row;
  }
  .peList .listStyle .resourceLabel2 dl dt, .peList .listStyle .resourceLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .peList .listStyle .resourceLabel2 dl dt {
    color: #16bea8;
    width: 120px;
  }
  .peList .listStyle .resourceLabel2 dl dd a {
    display: block;
    color: #16bea8;
    text-decoration: underline;
  }
  .peList .listStyle .resourceLabel2 dl dd a:hover {
    text-decoration: none;
  }
  .peList .listStyle .resourceList {
    display: flex;
    justify-content: space-between;
  }
  .peList .listStyle .resourceList > div:first-child {
    width: 100%;
  }
  .peList .listStyle .resourceList .resourceIcon {
    padding: 20px;
    border: 1px solid #16bea8;
    width: 130px;
  }
  .peList .listStyle .resourceList .resourceIcon img {
    display: block;
    margin: 0 auto;
  }
  .peList .listStyle .resourceList .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    white-space: nowrap;
  }
  .peList .cardStyle {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .peList .cardStyle .whiteBox1 {
    width: 210px;
    box-sizing: border-box;
    margin-right: 5px;
  }
  .peList .cardStyle .whiteBox1:nth-child(4n) {
    margin-right: 0;
  }
  .peList .cardStyle .btnAreaCenter {
    display: block;
  }
  .peList .cardStyle .btnAreaCenter a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
  }
  .peList .cardStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .peList .cardStyle .resourceLabel1 dl dd .red {
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
  }
  .peList .cardStyle .resourceLabel1 dl dd .red + span {
    display: none;
  }
  .peList .cardStyle .resourceLabel2 {
    display: none;
  }
  .peList .cardStyle .stepBar {
    display: none;
  }
  .peList .cardStyle .resourceIcon {
    padding: 10px;
  }
  .peList .cardStyle .resourceIcon img {
    display: block;
    margin: 0 auto;
  }
  .peList .cardStyle .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    white-space: nowrap;
    text-align: center;
  }
  .peList .cardStyle .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
  }
  .peList .cardStyle .favorite a {
    display: block;
  }
  .peList .cardStyle .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .peList .cardStyle .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .peList .cardStyle .favorite svg + .add, .peList .cardStyle .favorite svg + span[id*="favorite_name_new"], .peList .cardStyle .favorite svg + span {
    display: none;
  }
  .peList .cardStyle .favorite svg + .add + .list {
    display: none;
  }
  .peList .cardStyle .favorite svg:hover + .add, .peList .cardStyle .favorite svg:hover + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .peList .cardStyle .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .peList .cardStyle .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .peList .cardStyle .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  /*=================================================================*/
  /*	求人一覧 */
  /*=================================================================*/
  .camList a.favoriteBtn {
    display: flex;
  }
  .camList a.favoriteBtn svg {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
  }
  .camList a.favoriteBtn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .camList a.favoriteBtn.check svg path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .camList a.favoriteBtn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .camList .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .camList .listStyle .whiteBox1.ijuSupport {
    background: #feffd0;
  }
  .camList .listStyle .whiteBox1.ijuSupport .campanyLabel2 dt, .camList .listStyle .whiteBox1.ijuSupport .campanyLabel2 dd {
    border-bottom: 1px solid #16bea8;
  }
  .camList .listStyle .campanyLabel1 dl {
    display: flex;
    align-items: center;
  }
  .camList .listStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
  }
  .camList .listStyle .campanyLabel1 dl dd {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .camList .listStyle .campanyLabel2 {
    display: table;
    width: 93%;
    margin: 20px 0;
  }
  .camList .listStyle .campanyLabel2 dl {
    display: table-row;
  }
  .camList .listStyle .campanyLabel2 dl dt, .camList .listStyle .campanyLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .camList .listStyle .campanyLabel2 dl dt {
    color: #16bea8;
    width: 120px;
  }
  .camList .listStyle .campanyLabel2 + .tag {
    margin-bottom: 10px;
  }
  .camList .listStyle .campanyLabel2 + .tag span {
    background: #2AA8CE;
    color: #fff;
    font-size: 1.3rem;
    padding: 5px 17px;
    border-radius: 20px;
    margin-right: 4px;
  }
  .camList .listStyle .campanyList {
    display: flex;
    justify-content: space-between;
  }
  .camList .listStyle .campanyList > div:first-child {
    width: 100%;
  }
  .camList .listStyle .campanyList .campanyIcon {
    width: 300px;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  .camList .listStyle .campanyList .campanyIcon img {
    width: 110% !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .camList .listStyle .campanyList .support {
    background: #ff7d26;
    color: #fff;
    text-align: center;
    padding: 5px 0;
  }
  .camList .cardStyle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .camList .cardStyle .whiteBox1 {
    width: calc(100% / 2 - 20px);
    box-sizing: border-box;
  }
  .camList .cardStyle .whiteBox1.ijuSupport {
    background: #feffd0;
  }
  .camList .cardStyle .btnAreaCenter a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
  }
  .camList .cardStyle .campanyLabel1 dl {
    margin-bottom: 10px;
  }
  .camList .cardStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .camList .cardStyle .campanyLabel1 dl dd {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .camList .cardStyle .campanyLabel2 {
    display: none;
  }
  .camList .cardStyle .campanyLabel2 + .tag {
    margin-bottom: 10px;
  }
  .camList .cardStyle .campanyLabel2 + .tag span {
    background: #2AA8CE;
    color: #fff;
    font-size: 1.3rem;
    padding: 5px 17px;
    border-radius: 20px;
    margin-right: 4px;
  }
  .camList .cardStyle .stepBar {
    display: none;
  }
  .camList .cardStyle .campanyIcon {
    width: 100%;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    position: relative;
    overflow: hidden;
  }
  .camList .cardStyle .campanyIcon img {
    width: 110% !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .camList .cardStyle .campanyIcon + .support {
    background: #ff7d26;
    color: #fff;
    text-align: center;
    padding: 5px 0;
  }
  .camList .cardStyle .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    position: relative;
  }
  .camList .cardStyle .favorite a {
    display: block;
  }
  .camList .cardStyle .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .camList .cardStyle .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .camList .cardStyle .favorite svg.check path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .camList .cardStyle .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .camList .cardStyle .favorite svg.check:hover + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  /*=================================================================*/
  /*	2カラム共通パーツ */
  /*=================================================================*/
  /*	ステータスフィルタリング
---------------------------------------------------------------*/
  .mainColumn .listFiltering {
    display: flex;
    margin-bottom: 20px;
  }
  .mainColumn .listFiltering input[type="radio"]:checked + label {
    background: #fff;
    color: #16bea8;
    cursor: auto;
  }
  .mainColumn .listFiltering label {
    width: 100%;
    background: #16bea8;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    transition: .2s;
  }
  .mainColumn .listFiltering label:hover {
    background: #fff;
    color: #16bea8;
    transition: .2s;
  }
  /*	サイドメニュー検索要素
---------------------------------------------------------------*/
  section.column2 .sideMenu.search {
    width: 300px;
  }
  section.column2 .sideMenu.search + .mainColumn {
    width: 860px;
  }
  section.column2 .sideMenu.search dl dd {
    padding: 18px 11px;
  }
  section.column2 .sideMenu.search dl dd .searchResult {
    text-align: center;
    margin-bottom: 15px;
  }
  section.column2 .sideMenu.search dl dd .searchResult .number {
    color: #ff7d26;
    font-size: 2.5rem;
    font-weight: 500;
  }
  section.column2 .sideMenu.search dl dd.noBoder {
    border-bottom: 0;
  }
  section.column2 .sideMenu.search dl dd h4 {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
  section.column2 .sideMenu.search dl dd a {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: url(../images/sec/external.svg) no-repeat center right 15px;
  }
  section.column2 .sideMenu.search dl dd a:hover {
    background: #e8f6f4 url(../images/sec/external.svg) no-repeat center right 15px;
  }
  section.column2 .sideMenu.search dl dd a.btn {
    background: #16bea8;
    border: none;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }
  section.column2 .sideMenu.search dl dd a.btn.red {
    background: #ff7d26;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  section.column2 .sideMenu.search dl dd a.btn.red:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
  }
  section.column2 .sideMenu.search dl dd input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 80%;
    box-sizing: border-box;
  }
  section.column2 .sideMenu.search dl dd input[type="text"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 100%;
    box-sizing: border-box;
  }
  section.column2 .sideMenu.search dl dd select {
    border: 1px solid #b7b7b7;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  section.column2 .sideMenu.search dl dd span {
    margin: 0 3px;
  }
  section.column2 .sideMenu.search dl dd p {
    margin: 3px 0;
  }
  section.column2 .sideMenu.search dl dd .btnAreaCenter:last-child {
    margin-top: 15px;
  }
  /*	サイドメニューFAQ要素
---------------------------------------------------------------*/
  section.column2 .sideMenu.search.faq select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 30px 10px 20px;
  }
  /*	ポップアップ要素
---------------------------------------------------------------*/
  .mfp-auto-cursor .mfp-content {
    width: 700px !important;
  }
  div[id*="searchDetail"],
  .popup,
  #save {
    background: #fff;
    display: block;
  }
  div[id*="searchDetail"] .popHeader,
  .popup .popHeader,
  #save .popHeader {
    background: #16bea8;
    height: 40px;
    display: flex;
    justify-content: flex-end;
  }
  div[id*="searchDetail"] .popHeader .close,
  .popup .popHeader .close,
  #save .popHeader .close {
    background: #ff7d26;
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    transition: .2s;
  }
  div[id*="searchDetail"] .popHeader .close:hover,
  .popup .popHeader .close:hover,
  #save .popHeader .close:hover {
    background: #000;
    transition: .2s;
  }
  div[id*="searchDetail"] .whiteBox1,
  .popup .whiteBox1,
  #save .whiteBox1 {
    padding: 30px;
  }
  div[id*="searchDetail"] .whiteBox1 h2,
  .popup .whiteBox1 h2,
  #save .whiteBox1 h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  div[id*="searchDetail"] .whiteBox1 h2:before,
  .popup .whiteBox1 h2:before,
  #save .whiteBox1 h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  div[id*="searchDetail"] .whiteBox1 p,
  .popup .whiteBox1 p,
  #save .whiteBox1 p {
    margin-bottom: 20px;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex,
  .popup .whiteBox1 .popFlex,
  #save .whiteBox1 .popFlex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-height: 330px;
    overflow-y: auto;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex label,
  .popup .whiteBox1 .popFlex label,
  #save .whiteBox1 .popFlex label {
    width: calc(100% / 3 - 1.55em);
    margin-right: 0;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number input[type="number"],
  .popup .whiteBox1 .popFlex .number input[type="number"],
  #save .whiteBox1 .popFlex .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 80%;
    box-sizing: border-box;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number input[type="text"],
  .popup .whiteBox1 .popFlex .number input[type="text"],
  #save .whiteBox1 .popFlex .number input[type="text"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 80%;
    box-sizing: border-box;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number input[type="tel"],
  .popup .whiteBox1 .popFlex .number input[type="tel"],
  #save .whiteBox1 .popFlex .number input[type="tel"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 80%;
    box-sizing: border-box;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number span,
  .popup .whiteBox1 .popFlex .number span,
  #save .whiteBox1 .popFlex .number span {
    margin-left: 2px;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex select,
  .popup .whiteBox1 .popFlex select,
  #save .whiteBox1 .popFlex select {
    border: 1px solid #b7b7b7;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  div[id*="searchDetail"] .whiteBox1 input[type="text"],
  .popup .whiteBox1 input[type="text"],
  #save .whiteBox1 input[type="text"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  /*=================================================================*/
  /*	ステップ式入力フォーム */
  /*=================================================================*/
  /*	人材、企業切り替えボタン
---------------------------------------------------------------*/
  .modeChange {
    display: flex;
    margin: 0 auto 20px;
    width: 600px;
  }
  .modeChange input[type="radio"]:checked + label {
    background: #16bea8;
    color: #fff !important;
    color: #16bea8;
    cursor: auto;
  }
  .modeChange label {
    width: 100%;
    background: #fff;
    color: #16bea8;
    text-align: center;
    padding: 10px 0;
    transition: .2s;
  }
  .modeChange label:hover {
    background: #16bea8;
    color: #fff;
    transition: .2s;
  }
  /*=================================================================*/
  /*	ツールチップ */
  /*=================================================================*/
  .toolTip {
    position: relative;
    display: block;
    margin-left: 10px;
  }
  .toolTip img {
    display: block;
    width: 16px;
    height: 16px;
  }
  .toolTipTxt {
    background: #61899a;
    font-size: 1.3rem;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    margin: auto;
    width: 500px;
  }
  .toolTipTxt.none {
    display: none;
  }
  /*=================================================================*/
  /*	STEP用 */
  /*=================================================================*/
  .w663 {
    width: 663px !important;
  }
  .w663 .number input[type="number"] {
    width: 169px;
  }
  .w663 .number input[type="text"] {
    width: 169px;
  }
  .w663 .number input[type="tel"] {
    width: 169px !important;
  }
  section.column1Form.stepForm input[type="text"].shortTxt {
    width: 80px !important;
    display: inline-block;
  }
  section.column1Form .formDefault .checkBox label.w100 {
    width: 100%;
  }
  section.column1Form .formDefault .checkBox label.wAuto {
    width: auto !important;
    margin-right: 16px;
  }
  /*=================================================================*/
  /*	FAQ詳細 */
  /*=================================================================*/
  .q_ttl {
    flex-basis: 1000px;
    display: flex;
  }
  .q_ttl .q_icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 2.3rem;
    font-weight: 500;
    color: #fff;
    background-color: #2AA8CE;
    margin-right: 8px;
    margin-top: 2px;
  }
  .q_ttl .q_txt {
    flex-basis: 952px;
    font-size: 2.3rem;
    font-weight: 700;
  }
  .q_ttl .q_txt span.q_cat {
    font-size: 1.3rem;
    color: #aaa;
    font-weight: 400;
    display: block;
    line-height: 140%;
  }
  .faq_txtArea {
    position: relative;
    padding: 20px 0 0 20px;
  }
  .faq_txtArea .a_icon {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 2.3rem;
    font-weight: 500;
    color: #fff;
    background-color: #ff4419;
  }
  /*=================================================================*/
  /*	移住支援金について */
  /*=================================================================*/
  .txtInner {
    padding: 20px;
    background-color: #f9f9f9;
    margin: 20px 0;
  }
  dl.ijyuDescri dt {
    font-size: 1.8rem;
    font-weight: 700;
  }
  dl.ijyuDescri dd {
    margin-bottom: 10px;
  }
  dl.ijyuDescri ul {
    padding-left: 30px;
    margin: 10px 0;
  }
  dl.ijyuDescri ul li {
    list-style-type: decimal !important;
    margin-bottom: 8px;
  }
  dl.ijyuDescri ul li dl {
    display: flex;
  }
  dl.ijyuDescri ul li dl dt {
    font-weight: 500;
    margin-right: 10px;
  }
  dl.ijyuDescri .ijyuNote {
    font-size: 1.4rem;
    color: #293d86;
  }
  dl.ijyuDescri .ijyuNote dl {
    display: flex;
  }
  dl.ijyuDescri .ijyuNote dl dt {
    font-size: 1.4rem;
    font-weight: normal;
    flex-basis: 60px;
  }
  dl.ijyuDescri .ijyuNote dl dd {
    flex-basis: calc(100% - 60px);
  }
  dl.ijyuDescri .ijyuNote dl dd ul {
    padding-left: 10px;
  }
  /*=================================================================*/
  /*	関係団体リンク */
  /*=================================================================*/
  .linkList {
    width: 100% !important;
  }
  .linkList dl dt {
    font-size: 2.0rem;
    font-weight: 500;
    position: relative;
    padding-left: 12px;
    margin-bottom: 10px;
  }
  .linkList dl dt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .linkList dl dd {
    margin-bottom: 30px;
  }
  .linkList dl dd a {
    font-size: 1.8rem;
    position: relative;
    padding-left: 22px;
    margin-left: 20px;
  }
  .linkList dl dd a:before {
    content: url(../images/sec/external.svg);
    width: 22px;
    height: auto;
    position: absolute;
    top: -2px;
    left: 0;
  }
  /*=================================================================*/
  /*	注意事項 */
  /*=================================================================*/
  h3.pages {
    position: relative;
    padding-left: 12px;
  }
  h3.pages:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #ff7d26;
  }
  dl.noticeDl dt {
    font-size: 2.0rem;
    font-weight: 500;
    position: relative;
    padding-left: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  dl.noticeDl dt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  dl.noticeDl dd ul {
    padding-left: 30px;
  }
  dl.noticeDl dd ul li {
    list-style-type: decimal;
  }
  /*=================================================================*/
  /*	相談窓口 */
  /*=================================================================*/
  ul.guideList {
    padding-left: 40px;
    margin: 20px 0;
  }
  ul.guideList li {
    list-style-type: disc;
  }
  .mapH4 {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .mapBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .mapLabel2 {
    display: table;
    width: calc(100% - 500px - 50px);
  }
  .mapLabel2 dl {
    display: table-row;
  }
  .mapLabel2 dl dt {
    color: #16bea8;
    width: 120px;
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel3 {
    display: table;
    width: 100%;
    margin-bottom: 30px;
  }
  .mapLabel3 dl {
    display: table-row;
  }
  .mapLabel3 dl dt {
    color: #16bea8;
    width: 240px;
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 10px 10px 0;
  }
  .mapLabel3 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel3 dl dd ul {
    padding-left: 16px;
  }
  .mapLabel3 dl dd ul li {
    list-style-type: disc !important;
  }
  /*=================================================================*/
  /*	WAKU WAKU WORK! 宮崎 */
  /*=================================================================*/
  dl.flexDl {
    display: flex;
    margin-bottom: 10px;
  }
  dl.flexDl dt {
    width: 46px;
    margin-right: 20px;
  }
  dl.flexDl dd {
    padding-top: 8px;
  }
  ul.btFlex {
    display: flex;
    flex-wrap: wrap;
  }
  ul.btFlex li a {
    width: 200px;
    height: 50px;
    display: block;
    color: #fff;
    background: #16bea8;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    border-radius: 3px;
    text-align: center;
    line-height: 50px;
    margin-left: 35px;
    transition: .15s;
    margin-bottom: 16px;
  }
  ul.btFlex li a:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  ul.btFlex li:first-child a,
  ul.btFlex li:nth-child(6) a,
  ul.btFlex li:nth-child(11) a {
    margin-left: 0;
  }
  .coList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .coList ul {
    width: calc(30% - 20px);
    padding-left: 20px;
  }
  .coList ul li a {
    position: relative;
  }
  .coList ul li a:before {
    position: absolute;
    content: url(../images/sec/sidemenuarrow.svg);
    width: 15px;
    height: 14px;
    top: -4px;
    left: -18px;
  }
  .coList ul li a:hover {
    text-decoration: underline;
    color: #adadad;
  }
  #form input[type="hidden"] + .btnFlex .btnAreaCenter {
    margin-top: 20px;
  }
  /*=================================================================*/
  /*	404エラー */
  /*=================================================================*/
  section.column1Form .formDefault.error_404 {
    width: auto;
    padding: 50px 100px;
  }
  section.column1Form .formDefault.error_404 img {
    display: block;
    margin: 30px auto 0;
  }
  /*=================================================================*/
  /*	パスワード再発行 */
  /*=================================================================*/
  section.column1Form .login_wide_area {
    width: 500px;
    padding: 30px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
  }
  section.column1Form .login_wide_area_flex {
    display: flex;
    width: 500px;
    padding: 30px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
  }
  section.column1Form .login_wide_area input[type="text"],
  section.column1Form .login_wide_area input[type="password"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 400px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .login_wide_area input[type="text"] {
    margin-bottom: 20px;
  }
  section.column1Form .login_wide_area div.form_area {
    padding: 0 30px;
  }
  section.column1Form .login_wide_area .label_message {
    margin-bottom: 20px;
  }
  section.column1Form .login_wide_area div.remake {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  section.column1Form .login_wide_area div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
    margin-top: 20px;
  }
  section.column1Form .login_wide_area a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .login_wide_area a:hover {
    text-decoration: none;
  }
  /*=================================================================*/
  /*	追加修正 */
  /*=================================================================*/
  section.column2 .mainColumn form#form + .btnAreaCenter {
    margin: 0 auto 40px;
  }
  .rightFlex {
    display: flex;
  }
  .rightFlex > a:first-child {
    margin-right: 15px;
  }
  .nowrap {
    white-space: nowrap;
  }
  /*=================================================================*/
  /*	ふるさと宮崎人材バンクとは？！ */
  /*=================================================================*/
  .aboutlist .listbox {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 88px 0 48px;
  }
  .aboutlist .list01 {
    background: url(../images/sec/img_aboutlist01.png) no-repeat, url(../images/sec/bg_list.svg) no-repeat top 54px right 30px;
  }
  .aboutlist .list02 {
    background: url(../images/sec/img_aboutlist02.png) no-repeat, url(../images/sec/bg_list.svg) no-repeat top 54px right 30px;
  }
  .aboutlist .list03 {
    background: url(../images/sec/img_aboutlist03.png) no-repeat, url(../images/sec/bg_list.svg) no-repeat top 54px right 30px;
  }
  .aboutlist .list04 {
    background: url(../images/sec/img_aboutlist04.png) no-repeat, url(../images/sec/bg_list.svg) no-repeat top 54px right 30px;
  }
  .aboutlist .list05 {
    background: url(../images/sec/img_aboutlist05.png) no-repeat, url(../images/sec/bg_list.svg) no-repeat top 54px right 30px;
  }
  .aboutlist .listbox .box_underline {
    border-bottom: 5px solid #c3e2de;
  }
  .aboutlist .list_dots {
    text-align: center;
    padding: 45px 0 0;
  }
  .aboutlist .listbox:last-child .list_dots {
    display: none;
  }
  .aboutlist .caution {
    font-size: 1.2rem;
    line-height: 140%;
    margin: 10px 0 0;
  }
  .txtarea {
    padding: 0 18px 0 200px;
  }
  .txtarea .tag {
    display: flex;
  }
  .txtarea .tag > div {
    color: #fff;
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 1.6rem;
    margin-right: 1px;
    border-radius: 8px 8px 0 0;
  }
  .txtarea .tag .tag_kyu {
    background: #16bea8;
  }
  .txtarea .tag .tag_jigyou {
    background: #ff7d26;
  }
  .txtarea .txtbox {
    width: 100%;
    height: 104px;
    background: #fffbe0;
    display: table;
    padding: 0 60px;
    box-sizing: border-box;
  }
  .txtarea .txtbox p {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 1.8rem;
  }
  .column1detail .whiteBox1 h3.about_h3 {
    font-size: 2.6rem;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
  }
  .column1detail .whiteBox1 h3.about_h3:before {
    content: "";
    display: block;
    width: 4px;
    height: 31px;
    background: #ff7d26;
    position: absolute;
    top: -4px;
    left: 0;
    border-radius: 2px;
  }
  .column1detail .whiteBox1 .flexBox .about_photo {
    width: 403px !important;
    margin-left: 20px !important;
  }
  .column1detail .whiteBox1 .flexBox p b img {
    vertical-align: text-top;
    margin-right: 10px;
  }
  .column1detail .whiteBox1 .flexBox p b.line_y {
    position: relative;
    z-index: 1;
  }
  .column1detail .whiteBox1 .flexBox p b.line_y:before {
    content: "";
    display: block;
    width: 100%;
    height: 11px;
    background: #fff7c0;
    position: absolute;
    bottom: -4px;
    z-index: -1;
  }
  
  /*=================================================================*/
  /*	マッチング　メッセージ機能 */
  /*=================================================================*/
  .mainColumn .messageBox {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 20px;
    max-height: 500px;
    overflow: auto;
    border: solid 1px #b7b7b7;
    display: flex;
    flex-direction: column;
  }
  .mainColumn .messageBox p.sendAt {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
  }
  .mainColumn .messageBox .otherMessageContent {
    align-self: flex-start;
    margin-right: auto;
    margin-bottom: 20px;
    max-width: 80%;
  }
  
  .mainColumn .messageBox .otherMessageContent .profileIcon {
    float: left;
    margin-right: -20px;
    width: 40px;
  }
  .mainColumn .messageBox .otherMessageContent .sendAt {
    margin-left: 60px;
  }
  .mainColumn .messageBox .otherMessageContent .message {
    text-align: left;
    display: inline-block;
    position: relative; 
    margin: 0 0 0 40px;
    padding: 16px;
    border-radius: 12px;
    background: #ffffff;
  }
  .mainColumn .messageBox .otherMessageContent:last-child {
    margin-bottom: 0;
  }
  
  .mainColumn .messageBox .myMessageContent {
    align-self: flex-end;
    margin-left: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    max-width: 80%;
  }
  .mainColumn .messageBox .myMessageContent .sendAt {
    align-self: flex-end;
  }
  .mainColumn .messageBox .myMessageContent .message {
    display: inline-block;
    position: relative;
    text-align: left;
    padding: 16px;
    border-radius: 12px;
    background: #dbe4fd;
  }
  .mainColumn .messageBox .myMessageContent:last-child {
    margin-bottom: 0;
  }
  
  .mainColumn .messageForm textarea {
    background: #ffffff;
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    margin-bottom: 20px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  /*<end>============================================================*/
}

/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	パンくずリスト */
  /*=================================================================*/
  .breadcrumb {
    background: #fff;
    padding: 6px 20px;
    overflow-x: auto;
  }
  .breadcrumb > div {
    display: flex;
    align-items: center;
  }
  .breadcrumb > div svg {
    margin: 0 5px;
  }
  .breadcrumb > div a {
    color: #16bea8;
    text-decoration: underline;
    position: relative;
  }
  .breadcrumb > div a:active {
    text-decoration: none;
  }
  .breadcrumb > div a.home {
    padding-left: 18px;
  }
  .breadcrumb > div a.home::before {
    content: url(../images/sec/home_mini.svg);
    position: absolute;
    top: -7px;
    left: 0px;
    bottom: 0;
    width: 15px;
    height: 13px;
    margin: auto;
  }
  .breadcrumb > div a, .breadcrumb > div span {
    font-size: 1.2rem;
    white-space: nowrap;
  }
  /*=================================================================*/
  /*	1カラム */
  /*=================================================================*/
  section.column1Form {
    padding: 45px 20px 117px;
  }
  section.column1Form h2 {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  section.column1Form h2 span {
    position: relative;
    font-size: 2.3rem;
    font-weight: 700;
    max-width: calc(100% - 50px);
  }
  section.column1Form h2 span::before,
  section.column1Form h2 span::after {
    content: url(../images/sec/column1header.svg);
  }
  section.column1Form h2 span::before {
    position: absolute;
    top: -7px;
    left: -25px;
  }
  section.column1Form h2 span::after {
    position: absolute;
    top: -7px;
    right: -25px;
  }
  section.column1Form h3 {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 7px;
  }
  section.column1Form .required {
    background: #e63931;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
  }
  section.column1Form .anyItem {
    background: #ddd;
    font-size: 1.2rem;
    font-weight: 500;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
  }
  section.column1Form div.txt {
    text-align: center;
    margin-bottom: 20px;
  }
  /*	ログイン
---------------------------------------------------------------*/
  section.column1Form .login {
    display: flex;
    padding: 50px 20px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .login input[type="text"],
  section.column1Form .login input[type="password"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .login input[type="text"] {
    margin-bottom: 20px;
  }
  section.column1Form .login div.remake {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  section.column1Form .login div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
    margin-top: 20px;
  }
  section.column1Form .login a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .login a:active {
    text-decoration: none;
  }
  /*	フォームデフォルト(お問い合わせ、ステップ型など)
---------------------------------------------------------------*/
  section.column1Form .formDefault {
    display: flex;
    padding: 50px 20px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault > div {
    width: 100%;
  }
  section.column1Form .formDefault input::placeholder {
    color: #aaa;
  }
  section.column1Form .formDefault input[type="text"],
  section.column1Form .formDefault input[type="password"],
  section.column1Form .formDefault input[type="tel"],
  section.column1Form .formDefault input[type="email"],
  section.column1Form .formDefault textarea {
    background: #fff;
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  section.column1Form .formDefault input[type="text"].error,
  section.column1Form .formDefault input[type="password"].error,
  section.column1Form .formDefault input[type="tel"].error,
  section.column1Form .formDefault input[type="email"].error,
  section.column1Form .formDefault textarea.error {
    background: #ffe9dd;
  }
  section.column1Form .formDefault select {
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    max-width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault select.error {
    background-color: #ffe9dd;
  }
  section.column1Form .formDefault select.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault select + .annotation,
  section.column1Form .formDefault select + span + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 5px 0 20px;
  }
  section.column1Form .formDefault .radio {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .radio label.radioBtn {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  section.column1Form .formDefault .radio label.radioBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  section.column1Form .formDefault .radio label.radioBtn2 {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  section.column1Form .formDefault .radio label.radioBtn2::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  section.column1Form .formDefault .radio input[type="radio"]:checked + label::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 4px;
  }
  section.column1Form .formDefault .radio input[type="radio"]:checked + label.radioBtn2::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    left: 4px;
  }
  section.column1Form .formDefault .radio.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .radio + .annotation,
  section.column1Form .formDefault .radio + span + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 5px 0 20px;
  }
  section.column1Form .formDefault .checkBox {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .checkBox input[type="checkbox"]:checked + label::after {
    content: url(../images/sec/check.svg);
    position: absolute;
    top: 0px;
    left: 2px;
  }
  section.column1Form .formDefault .checkBox label {
    width: calc(100% / 2 - 1.55em);
    position: relative;
    padding-left: 1.55em;
    display: inline-block;
  }
  section.column1Form .formDefault .checkBox label:before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
  }
  section.column1Form .formDefault .checkBox.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .checkBox + .annotation,
  section.column1Form .formDefault .checkBox + span + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 5px 0 20px;
  }
  section.column1Form .formDefault textarea + .error {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault input[type="text"],
  section.column1Form .formDefault input[type="password"],
  section.column1Form .formDefault input[type="tel"],
  section.column1Form .formDefault input[type="email"],
  section.column1Form .formDefault textarea {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault input[type="text"].noMargin,
  section.column1Form .formDefault input[type="password"].noMargin,
  section.column1Form .formDefault input[type="tel"].noMargin,
  section.column1Form .formDefault input[type="email"].noMargin,
  section.column1Form .formDefault textarea.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault input[type="text"] + .annotation,
  section.column1Form .formDefault input[type="password"] + .annotation,
  section.column1Form .formDefault input[type="tel"] + .annotation,
  section.column1Form .formDefault input[type="email"] + .annotation,
  section.column1Form .formDefault textarea + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 5px 0 20px;
  }
  section.column1Form .formDefault div.remake {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  section.column1Form .formDefault .number.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .number + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 5px 0 20px;
  }
  section.column1Form .formDefault div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
  }
  section.column1Form .formDefault div.error.first {
    margin-bottom: 20px;
  }
  section.column1Form .formDefault a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .formDefault a:active {
    text-decoration: none;
  }
  section.column1Form .formDefault + .btnAreaCenter {
    margin: 0 auto;
  }
  section.column1Form .formDefault .confBox > div {
    background: #fff;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  section.column1Form .formDefault .confBox > div:last-child {
    margin-bottom: 0;
  }
  section.column1Form .formDefault .confBox p {
    margin-bottom: 20px;
  }
  section.column1Form .contactInfo {
    padding: 30px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .contactInfo a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .contactInfo a:active {
    text-decoration: none;
  }
  section.column1Form .contactInfo h3 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5em;
  }
  section.column1Form .contactInfo h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column1Form .contactInfo dl {
    margin-bottom: 15px;
  }
  section.column1Form .contactInfo dl dt {
    font-size: 1.3rem;
    color: #fff;
    background: #ff7d26;
    border-radius: 20px;
    padding: 0 15px;
    margin-bottom: 5px;
    display: inline-block;
  }
  section.column1Form .contactInfo dl:last-child {
    margin-bottom: 0;
  }
  section.column1Form .number {
    display: flex;
    align-items: center;
  }
  section.column1Form .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
    width: 100%;
  }
  section.column1Form .number input[type="number"].error {
    background: #ffe9dd;
  }
  section.column1Form .number span {
    font-size: 2.0rem;
    margin: 0 10px;
  }
  section.column1Form .contactInfo {
    display: flex;
    padding: 40px 20px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Form .contactInfo h3 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5em;
  }
  section.column1Form .contactInfo h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column1Form .contactInfo dl {
    margin-bottom: 15px;
  }
  section.column1Form .contactInfo dl dt {
    font-size: 1.3rem;
    color: #fff;
    background: #16bea8;
    border-radius: 20px;
    padding: 0 15px;
    margin-right: 10px;
    display: inline-block;
  }
  section.column1Form .accordion {
    margin-bottom: 15px;
  }
  section.column1Form .accordion div:nth-child(2) {
    box-sizing: border-box;
    padding: 10px;
    display: none;
  }
  section.column1Form .accordion div:nth-child(2) p {
    font-family: serif;
  }
  section.column1Form .accordion div:first-child {
    position: relative;
    border: 1px solid #16bea8;
    padding: 5px 20px;
    background: #16bea8;
    color: #fff;
    cursor: pointer;
    /* 二本の横棒を作成する */
    /* 2本の横棒のうち一本は縦棒にする */
  }
  section.column1Form .accordion div:first-child::before, section.column1Form .accordion div:first-child::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(-50%);
  }
  section.column1Form .accordion div:first-child::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.3s;
  }
  section.column1Form .accordion div:first-child.active::after {
    /* プラスがクリックされたら縦棒を横にしてマイナスにする疑似要素 */
    transform: rotate(0);
    transition: 0.3s;
  }
  /*=================================================================*/
  /*	1カラムプロフィール等編集画面 */
  /*=================================================================*/
  section.column1Editor {
    padding: 45px 20px 117px;
  }
  section.column1Editor h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  section.column1Editor h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column1Editor .formDefault {
    width: 100%;
    box-sizing: border-box;
    padding: 50px 30px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault > div {
    width: 100%;
  }
  section.column1Editor .formDefault > div.photoBox {
    width: 100%;
  }
  section.column1Editor .formDefault > div.photoBox .photo {
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    background-size: 200px auto;
    position: relative;
    margin-bottom: 30px;
  }
  section.column1Editor .formDefault > div.photoBox .photo:last-child {
    margin-bottom: 0;
  }
  section.column1Editor .formDefault > div.photoBox .photo a {
    background: #16bea8;
    display: flex;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -10px;
    right: -10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .2s;
  }
  section.column1Editor .formDefault > div.photoBox .photo a:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  section.column1Editor .formDefault > div.photoBox .photo a .up {
    display: none;
  }
  section.column1Editor .formDefault > div.photoBox .photo a:active .up {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  section.column1Editor .formDefault input::placeholder {
    color: #aaa;
  }
  section.column1Editor .formDefault input[type="text"],
  section.column1Editor .formDefault input[type="password"],
  section.column1Editor .formDefault input[type="tel"],
  section.column1Editor .formDefault input[type="email"],
  section.column1Editor .formDefault textarea {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Editor .formDefault input[type="text"].error,
  section.column1Editor .formDefault input[type="password"].error,
  section.column1Editor .formDefault input[type="tel"].error,
  section.column1Editor .formDefault input[type="email"].error,
  section.column1Editor .formDefault textarea.error {
    background: #ffe9dd;
  }
  section.column1Editor .formDefault textarea + .error {
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault input[type="text"],
  section.column1Editor .formDefault input[type="password"],
  section.column1Editor .formDefault input[type="tel"],
  section.column1Editor .formDefault input[type="email"] {
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
  }
  section.column1Editor .formDefault a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Editor .formDefault a:active {
    text-decoration: none;
  }
  section.column1Editor .formDefault + .btnAreaCenter {
    margin: 0 auto;
  }
  section.column1Editor .formDefault .confBox > div {
    background: #fff;
    padding: 10px 12px;
    width: 467px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  section.column1Editor .formDefault .confBox > div:last-child {
    margin-bottom: 0;
  }
  section.column1Editor .formDefault .confBox p {
    margin-bottom: 20px;
  }
  section.column1Editor .number {
    display: flex;
    align-items: center;
  }
  section.column1Editor .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
    width: 100%;
  }
  section.column1Editor .number input[type="number"].error {
    background: #ffe9dd;
  }
  section.column1Editor .number span {
    font-size: 2.0rem;
    margin: 0 10px;
  }
  /*=================================================================*/
  /*	1カラムカードリスト */
  /*=================================================================*/
  .column1cardList {
    padding: 45px 20px 117px;
  }
  .column1cardList h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .column1cardList h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1cardList .listBox a {
    display: block;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .2s;
  }
  .column1cardList .listBox a:nth-child(n+2) {
    margin-top: 25px;
  }
  .column1cardList .listBox a dl dt {
    height: 150px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    position: relative;
    overflow: hidden;
  }
  .column1cardList .listBox a dl dt div {
    font-size: 1.3rem;
    padding: 3px 14px 3px 8px;
    color: #fff;
    display: inline-block;
    border-radius: 0 20px 20px 0;
  }
  .column1cardList .listBox a dl dt div.cat01 {
    background: #2AA8CE;
  }
  .column1cardList .listBox a dl dt div.cat02 {
    background: #56B546;
  }
  .column1cardList .listBox a dl dt div.cat03 {
    background: #B59846;
  }
  .column1cardList .listBox a dl dt div.cat04 {
    background: #A5A5A5;
  }
  .column1cardList .listBox a dl dt div.cat05 {
    background: #BF7CC7;
  }
  .column1cardList .listBox a dl dt div.cat06 {
    background: #424242;
  }
  .column1cardList .listBox a dl dd {
    padding: 20px 15px;
  }
  .column1cardList .listBox a dl dd h3 {
    color: #16bea8;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .column1cardList .listBox a:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  .column1cardList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .column1cardList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .column1cardList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  .column1cardList .listControl .listChange {
    display: flex;
  }
  .column1cardList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .column1cardList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .column1cardList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .column1cardList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .column1cardList .listControl .pager {
    display: flex;
  }
  .column1cardList .listControl .pager a {
    display: none;
    margin: 0 5px;
    color: #16bea8;
  }
  .column1cardList .listControl .pager a.page-link {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1cardList .listControl .pager a.page-link span {
    background: none !important;
  }
  .column1cardList .listControl .pager a.page-link span svg path {
    fill: #16bea8;
  }
  .column1cardList .listControl .pager a:first-child {
    margin-left: 0;
  }
  .column1cardList .listControl .pager a:active {
    background: #000;
  }
  .column1cardList .listControl .pager a.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1cardList .listControl .pager > span:first-child {
    margin-right: 5px;
  }
  .column1cardList .listControl .pager span {
    display: none;
  }
  .column1cardList .listControl .pager span.prev, .column1cardList .listControl .pager span.next {
    display: flex;
    background: #eee;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1cardList .listControl .pager span.prev svg path, .column1cardList .listControl .pager span.next svg path {
    fill: #333;
  }
  .column1cardList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .column1cardList .listControl .pager span.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  /*=================================================================*/
  /*	1カラムテキストリスト */
  /*=================================================================*/
  .column1txtList {
    padding: 45px 20px 117px;
  }
  .column1txtList h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .column1txtList h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1txtList .listBox {
    padding: 30px 30px 20px 30px;
    background: #fff;
  }
  .column1txtList .listBox dl {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }
  .column1txtList .listBox dl dd.label {
    display: inline-block;
    background: #ff7d26;
    color: #fff;
    font-size: 1.3rem;
    padding: 0 7px;
    margin: 5px 0;
  }
  .column1txtList .listBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1txtList .listBox dl dd a:active {
    text-decoration: none;
  }
  .column1txtList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .column1txtList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .column1txtList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  .column1txtList .listControl .listChange {
    display: flex;
  }
  .column1txtList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .column1txtList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .column1txtList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .column1txtList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .column1txtList .listControl .pager {
    display: flex;
  }
  .column1txtList .listControl .pager a {
    display: none;
  }
  .column1txtList .listControl .pager a.page-link {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1txtList .listControl .pager a.page-link span {
    background: none !important;
  }
  .column1txtList .listControl .pager a.page-link span svg path {
    fill: #16bea8;
  }
  .column1txtList .listControl .pager a:first-child {
    margin-left: 0;
  }
  .column1txtList .listControl .pager a:active {
    background: #000;
  }
  .column1txtList .listControl .pager a.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1txtList .listControl .pager > span:first-child {
    margin-right: 5px;
  }
  .column1txtList .listControl .pager span {
    display: none;
  }
  .column1txtList .listControl .pager span.prev, .column1txtList .listControl .pager span.next {
    display: flex;
    background: #eee;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .column1txtList .listControl .pager span.prev svg path, .column1txtList .listControl .pager span.next svg path {
    fill: #333;
  }
  .column1txtList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .column1txtList .listControl .pager span.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  /*=================================================================*/
  /*	検索条件一覧 */
  /*=================================================================*/
  .searchSaveList {
    padding: 45px 20px 117px;
    /* FAQ一覧用スタイル */
  }
  .searchSaveList h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .searchSaveList h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .searchSaveList .listBox .whiteBox1 {
    background: #fff;
    padding: 20px 30px 30px 30px;
    margin-bottom: 20px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox {
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div:first-child {
    margin-bottom: 20px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div:first-child .date {
    font-size: 1.3rem;
    color: #aaa;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div:first-child .name {
    font-size: 2.5rem;
    color: #16bea8;
    font-weight: 500;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea {
    display: flex;
    justify-content: space-between;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a {
    display: flex;
    justify-content: center;
    background: #16bea8;
    color: #fff;
    padding: 10px 0;
    width: calc(100%/2 - 5px);
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    margin-bottom: 10px;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a.red {
    background: #ff7d26;
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  .searchSaveList .listBox .whiteBox1 .headBox > div.btnArea a.red:hover {
    box-shadow: 0px 1px 0px 0px #bf530a;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox {
    display: table;
    width: 100%;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl {
    display: table-row;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dt, .searchSaveList .listBox .whiteBox1 .tableBox dl dd {
    display: table-cell;
    vertical-align: top;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
    width: 175px;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl dd a:hover {
    text-decoration: none;
  }
  .searchSaveList .listBox .whiteBox1 .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  .searchSaveList .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .searchSaveList .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .searchSaveList .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  .searchSaveList .listControl .listChange {
    display: flex;
  }
  .searchSaveList .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  .searchSaveList .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  .searchSaveList .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  .searchSaveList .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  .searchSaveList .listControl .pager {
    display: flex;
  }
  .searchSaveList .listControl .pager a {
    display: none;
  }
  .searchSaveList .listControl .pager a.page-link {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .searchSaveList .listControl .pager a.page-link span {
    background: none !important;
  }
  .searchSaveList .listControl .pager a.page-link span svg path {
    fill: #16bea8;
  }
  .searchSaveList .listControl .pager a:first-child {
    margin-left: 0;
    margin-right: 5px;
  }
  .searchSaveList .listControl .pager a:active {
    background: #000;
  }
  .searchSaveList .listControl .pager a.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .searchSaveList .listControl .pager > span:first-child {
    margin-right: 5px;
  }
  .searchSaveList .listControl .pager span {
    display: none;
  }
  .searchSaveList .listControl .pager span.prev, .searchSaveList .listControl .pager span.next {
    display: flex;
    background: #eee;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .searchSaveList .listControl .pager span.prev svg path, .searchSaveList .listControl .pager span.next svg path {
    fill: #333;
  }
  .searchSaveList .listControl .pager span:first-child {
    margin-left: 0;
  }
  .searchSaveList .listControl .pager span.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  .searchSaveList .faq .shadowBox {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s;
    transition: .2s;
    display: block;
  }
  .searchSaveList .faq .shadowBox:active {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }
  .searchSaveList .faq .headBox {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .searchSaveList .faq .headBox .btnArea {
    justify-content: center !important;
  }
  /*=================================================================*/
  /*	1カラム求人詳細画面 */
  /*=================================================================*/
  .column1detail {
    padding: 45px 20px 117px;
    /*ラジオボタンを全て消す*/
    /*タブ切り替えの中身のスタイル*/
    /*選択されているタブのコンテンツのみを表示*/
    /*選択されているタブのスタイルを変える*/
  }
  .column1detail .headFlex {
    margin-bottom: 30px;
  }
  .column1detail .headFlex .label {
    font-size: 1.8rem;
    font-weight: 400;
    background: #f18200;
    padding: 6px 38px;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    border: 4px solid #ff0000;
  }
  .column1detail .headFlex .sns {
    display: flex;
    margin: 20px 0;
  }
  .column1detail .headFlex .sns .twitter {
    padding: 4px 0;
    background: #00acee;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    width: calc(100% / 3 - 5px);
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
    transition: .2s;
  }
  .column1detail .headFlex .sns .twitter img {
    width: auto;
    height: 12px;
    margin-right: 3px;
  }
  .column1detail .headFlex .sns .twitter:hover {
    background: #000;
    transition: .2s;
  }
  .column1detail .headFlex .sns .facebook {
    padding: 4px 0;
    background: #3b5998;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    width: calc(100% / 3 - 5px);
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: .2s;
  }
  .column1detail .headFlex .sns .facebook img {
    width: auto;
    height: 12px;
    margin-right: 3px;
  }
  .column1detail .headFlex .sns .facebook:hover {
    background: #000;
    transition: .2s;
  }
  .column1detail .headFlex .api {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
  }
  .column1detail .headFlex .api a {
    display: flex;
    align-items: center;
    background: #49a7d0;
    color: #fff;
    padding: 3px 23px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #447c96;
    transition: .15s;
    font-size: 1.3rem;
  }
  .column1detail .headFlex .api a svg {
    margin-left: 10px;
  }
  .column1detail .headFlex .api a:active {
    box-shadow: 0px 1px 0px 0px #447c96;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .control {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
  }
  .column1detail .headFlex .control .favoriteBtn, .column1detail .headFlex .control .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #16bea8;
    color: #fff;
    padding: 10px 0;
    width: calc(100% / 2 - 5px);
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
  }
  .column1detail .headFlex .control .favoriteBtn:hover, .column1detail .headFlex .control .btn:hover {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .control .favoriteBtn svg, .column1detail .headFlex .control .btn svg {
    position: relative;
    margin-right: 5px;
  }
  .column1detail .headFlex .control .favoriteBtn svg path.heart, .column1detail .headFlex .control .btn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .column1detail .headFlex .control .favoriteBtn.check svg path.noHeart, .column1detail .headFlex .control .btn.check svg path.noHeart {
    animation: checkAnime01 300ms forwards;
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .column1detail .headFlex .control .favoriteBtn.check svg path.heart, .column1detail .headFlex .control .btn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .column1detail .headFlex .control .btn {
    width: calc(100% / 3.5);
    margin-bottom: 30px;
  }
  .column1detail .headFlex .control .redBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff7d26;
    color: #fff;
    padding: 10px 0;
    width: calc(100% / 2 - 5px);
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #bf530a;
    transition: .15s;
    margin-left: 8px;
  }
  .column1detail .headFlex .control .redBtn:active {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .column1detail .headFlex .control .sp_btn {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  .column1detail .tab_item {
    width: calc(100%/2);
    height: 60px;
    background-color: #ddd;
    line-height: 42px;
    text-align: center;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  .column1detail .tab_item:hover {
    cursor: pointer;
    background: #16bea8;
    border-color: #16bea8;
    color: #fff;
  }
  .column1detail input[name="tab_item"] {
    display: none;
  }
  .column1detail .whiteBox1 {
    display: none;
    clear: both;
  }
  .column1detail .whiteBox1.display {
    display: block;
  }
  .column1detail #job:checked ~ #job_content,
  .column1detail #campany:checked ~ #campany_content {
    display: block;
  }
  .column1detail input:checked + .tab_item {
    background-color: #fff;
    border-color: #fff;
    color: #333;
    cursor: default;
  }
  .column1detail #api {
    margin-top: 40px;
  }
  .column1detail h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .column1detail h2 span {
    display: block;
    font-size: 1.3rem;
    color: #aaa;
    font-weight: 400;
  }
  .column1detail h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .column1detail h2 + div {
    color: #aaa;
    font-size: 1.4rem;
  }
  .column1detail .whiteBox1 {
    padding: 30px 30px 20px 30px;
    background: #fff;
    clear: both;
  }
  .column1detail .whiteBox1 h3 {
    display: flex;
    align-items: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 40px 0 30px 0;
  }
  .column1detail .whiteBox1 h3 img {
    width: 22px;
  }
  .column1detail .whiteBox1 h3 span {
    margin-left: 8px;
    background: linear-gradient(transparent 80%, #ffff66 80%);
  }
  .column1detail .whiteBox1 .photoBox {
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .column1detail .whiteBox1 .photoBox > div {
    width: 100%;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    background-size: 200px auto;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  .column1detail .whiteBox1 .photoBox > div picture {
    display: block;
    height: 100%;
    background: #ccc;
  }
  .column1detail .whiteBox1 .photoBox > div img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
  }
  .column1detail .whiteBox1 .comment {
    margin-bottom: 30px;
  }
  .column1detail .whiteBox1 .tableBox {
    width: 100%;
  }
  .column1detail .whiteBox1 .tableBox dl dt, .column1detail .whiteBox1 .tableBox dl dd {
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .column1detail .whiteBox1 .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
  }
  .column1detail .whiteBox1 .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1detail .whiteBox1 .tableBox dl dd a:hover {
    text-decoration: none;
  }
  .column1detail .whiteBox1 .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  .column1detail .whiteBox1 iframe {
    max-width: 100%;
    height: auto;
  }
  .column1detail .whiteBox1 .peapleIcon {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #16bea8;
    padding: 10px 0;
    color: #16bea8;
  }
  .column1detail .whiteBox1 .peapleIcon img {
    width: 40%;
  }
  .column1detail .whiteBox1 .txtArea a {
    color: #16bea8;
    text-decoration: underline;
  }
  .column1detail .whiteBox1 .txtArea a[href$=".pdf"]:before {
    content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/sec/pdf.svg) no-repeat;
  }
  .column1detail .whiteBox1 .txtArea a:hover {
    text-decoration: none;
  }
  .column1detail .whiteBox1 .photo {
    margin-top: 30px;
  }
  .nd_ttl span.nd_cat {
    font-size: 1.3rem !important;
    color: #fff !important;
    display: inline-block !important;
    margin-right: 8px;
    margin-bottom: 1px;
    vertical-align: text-bottom;
    padding: 1px 8px;
    line-height: 140%;
  }
  .nd_ttl span.cat01 {
    background: #2AA8CE;
  }
  .nd_ttl span.cat02 {
    background: #56B546;
  }
  .nd_ttl span.cat03 {
    background: #B59846;
  }
  .nd_ttl span.cat04 {
    background: #A5A5A5;
  }
  .nd_ttl span.cat05 {
    background: #BF7CC7;
  }
  .nd_ttl span.cat06 {
    background: #424242;
  }
  /*=================================================================*/
  /*	チェックボックス */
  /*=================================================================*/
  label.checkbox {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  label.checkbox::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
  }
  input[type="checkbox"]:checked + label::after {
    content: url(../images/sec/check.svg);
    position: absolute;
    top: 0px;
    left: 2px;
  }
  /*=================================================================*/
  /*	ラジオボタン */
  /*=================================================================*/
  .whiteBox1 label.radioBtn {
    position: relative;
    padding-left: 1.55em;
    margin-right: 1em;
    display: inline-block;
  }
  .whiteBox1 label.radioBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
  }
  .whiteBox1 input[type="radio"]:checked + label::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #16bea8;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 4px;
  }
  /*=================================================================*/
  /*	真ん中寄せのボタンスタイル */
  /*=================================================================*/
  .btnAreaCenter {
    display: block;
    margin-bottom: 20px;
  }
  .btnAreaCenter button,
  .btnAreaCenter input[type="button"],
  .btnAreaCenter input[type="submit"],
  .btnAreaCenter a {
    display: block;
    background: #16bea8;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin: 0 5px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    margin-bottom: 15px;
  }
  .btnAreaCenter button:last-child,
  .btnAreaCenter input[type="button"]:last-child,
  .btnAreaCenter input[type="submit"]:last-child,
  .btnAreaCenter a:last-child {
    margin-bottom: 0;
  }
  .btnAreaCenter button.noEvent,
  .btnAreaCenter input[type="button"].noEvent,
  .btnAreaCenter input[type="submit"].noEvent,
  .btnAreaCenter a.noEvent {
    pointer-events: none;
    background: #ddd;
    box-shadow: 0px 4px 0px 0px #aaa;
  }
  .btnAreaCenter button:active,
  .btnAreaCenter input[type="button"]:active,
  .btnAreaCenter input[type="submit"]:active,
  .btnAreaCenter a:active {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .btnAreaCenter button.red,
  .btnAreaCenter input[type="button"].red,
  .btnAreaCenter input[type="submit"].red,
  .btnAreaCenter a.red {
    background: #ff7d26;
    color: #fff !important;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  .btnAreaCenter button.red:active,
  .btnAreaCenter input[type="button"].red:active,
  .btnAreaCenter input[type="submit"].red:active,
  .btnAreaCenter a.red:active {
    box-shadow: 0px 1px 0px 0px #bf530a;
  }
  /*=================================================================*/
  /*	フォームの中のボタンスタイル */
  /*=================================================================*/
  section.column1Form .number + .btn,
  section.column1Editor .number + .btn {
    margin-top: 10px;
    margin-bottom: 24px;
  }
  section.column1Form .number + .btn.noMargin,
  section.column1Editor .number + .btn.noMargin {
    margin-bottom: 0;
  }
  section.column1Form .number + .btn + .annotation,
  section.column1Editor .number + .btn + .annotation {
    color: #49a7d0;
    font-size: 1.3rem;
    line-height: 1.4em;
    margin: 8px 0 20px;
  }
  section.column1Form .btn,
  section.column1Editor .btn {
    display: block;
    text-decoration: none !important;
    text-align: center;
    background: #16bea8;
    color: #fff !important;
    margin: 0;
    padding: 5px 0;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    color: #fff;
    font-size: 1.4rem;
  }
  section.column1Form .btn:active,
  section.column1Editor .btn:active {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  /*=================================================================*/
  /*	フォームの中のiframe */
  /*=================================================================*/
  .formDefault iframe {
    width: 100%;
  }
  /*=================================================================*/
  /*	2カラム + マイページトップ大枠 */
  /*=================================================================*/
  section.column2 {
    padding: 45px 20px 117px;
  }
  section.column2 .myPageMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 50px;
    box-sizing: border-box;
    border: 3px solid #16bea8;
  }
  section.column2 .myPageMenu:active {
    background: #16bea8;
  }
  section.column2 .myPageMenu:active span {
    color: #fff;
  }
  section.column2 .myPageMenu:active svg path {
    fill: #fff;
  }
  section.column2 .myPageMenu span {
    display: block;
    margin-right: 5px;
  }
  section.column2 .sideMenu {
    display: none;
  }
  section.column2 .sideMenu dl {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
  section.column2 .sideMenu dl dt {
    background: #16bea8;
    color: #fff;
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
  }
  section.column2 .sideMenu dl dt img {
    width: 15px;
  }
  section.column2 .sideMenu dl dt span {
    font-weight: 500;
    margin-left: 6px;
  }
  section.column2 .sideMenu dl dd {
    background: #fff;
    padding: 5px;
    border-bottom: 1px solid #d8d8d8;
  }
  section.column2 .sideMenu dl dd:last-child {
    border-bottom: 0;
  }
  section.column2 .sideMenu dl dd a {
    display: flex;
    padding: 18px 10px;
    transition: .2s;
    background: url(../images/sec/sidemenuarrow.svg) no-repeat center right 15px;
  }
  section.column2 .sideMenu dl dd a:active {
    background: #e8f6f4 url(../images/sec/sidemenuarrow.svg) no-repeat center right 5px;
    transition: .2s;
  }
  section.column2 .mainColumn {
    box-sizing: border-box;
    margin-top: 40px;
  }
  section.column2 .mainColumn .whiteBox1 {
    background: #fff;
    padding: 30px;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn .whiteBox1 + .btnAreaCenter {
    margin: 0 auto 40px;
    justify-content: space-between;
  }
  section.column2 .mainColumn h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column2 .mainColumn .errorBox {
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 3px solid #ff1d1d;
    color: #ff1d1d;
    margin-bottom: 30px;
  }
  section.column2 .mainColumn .required {
    background: #e63931;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    width: 50px;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
    padding: 5px 10px;
  }
  section.column2 .mainColumn .tableBox {
    width: 100%;
  }
  section.column2 .mainColumn .tableBox textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox dl dt, section.column2 .mainColumn .tableBox dl dd {
    padding: 10px;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox dl dt {
    background: #eee;
    border-bottom: 2px solid #fff;
  }
  section.column2 .mainColumn .tableBox dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column2 .mainColumn .tableBox dl dd a:active {
    text-decoration: none;
  }
  section.column2 .mainColumn .tableBox dl:last-child dt {
    border-bottom: 0;
  }
  section.column2 .mainColumn .tableBox select {
    padding: 5px 30px 5px 20px;
    box-sizing: border-box;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
    max-width: 100%;
    border: 1px solid #ddd;
  }
  section.column2 .mainColumn .tableBox input[type="text"],
  section.column2 .mainColumn .tableBox input[type="password"],
  section.column2 .mainColumn .tableBox input[type="number"] {
    padding: 10px 30px 10px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
  }
  section.column2 .mainColumn .tableBox input[type="text"], section.column2 .mainColumn .tableBox input[type="password"] {
    width: 100%;
  }
  section.column2 .mainColumn .tableBox .ui-datepicker-trigger {
    width: 27px;
    height: auto;
  }
  section.column2 .mainColumn .contactInfo {
    padding: 30px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  section.column2 .mainColumn .contactInfo a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column2 .mainColumn .contactInfo a:active {
    text-decoration: none;
  }
  section.column2 .mainColumn .contactInfo h3 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5em;
  }
  section.column2 .mainColumn .contactInfo h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  section.column2 .mainColumn .contactInfo dl {
    margin-bottom: 15px;
  }
  section.column2 .mainColumn .contactInfo dl dt {
    font-size: 1.3rem;
    color: #fff;
    background: #ff7d26;
    border-radius: 20px;
    padding: 0 15px;
    margin-bottom: 5px;
    display: inline-block;
  }
  section.column2 .mainColumn .contactInfo dl:last-child {
    margin-bottom: 0;
  }
  section.column2 .mainColumn .whiteList01 {
    border-radius: 3px;
    margin-bottom: 40px;
  }
  section.column2 .mainColumn .whiteList01 a {
    display: block;
    transition: .2s;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
  section.column2 .mainColumn .whiteList01 a dl {
    padding: 10px;
  }
  section.column2 .mainColumn .whiteList01 a dl dt {
    height: 144px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
  }
  section.column2 .mainColumn .whiteList01 a dl dd {
    padding: 10px;
  }
  section.column2 .mainColumn .whiteList01 a dl dd .date {
    font-size: 1.5rem;
  }
  section.column2 .mainColumn .whiteList01 a dl dd .type {
    color: #aaa;
    font-size: 1.5rem;
  }
  section.column2 .mainColumn .whiteList01 a dl dd h3 {
    font-size: 2.3rem;
    font-weight: 500;
    color: #16bea8;
    margin-bottom: 10px;
  }
  section.column2 .mainColumn .whiteList01 a:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  section.column2 .mainColumn .whiteList01 a:last-child {
    border-bottom: 0;
  }
  section.column2 .mainColumn .cardListScroll {
    width: 100%;
    overflow-x: scroll;
  }
  section.column2 .mainColumn .scrollGide {
    margin-top: 10px;
    display: flex;
    align-items: center;
  }
  section.column2 .mainColumn .scrollGide svg {
    width: 34px;
    height: auto;
  }
  section.column2 .mainColumn .scrollGide span {
    margin-left: 8px;
    color: #16bea8;
    font-weight: 500;
  }
  section.column2 .mainColumn .cardList {
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  section.column2 .mainColumn .cardList .cardEl {
    width: 202px;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: .2s;
    margin: 0 10px;
  }
  section.column2 .mainColumn .cardList .cardEl a {
    display: block;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dt {
    height: 143px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dt img {
    width: auto !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd {
    padding: 16px 11px;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd h3 {
    font-size: 1.6rem;
    color: #16bea8;
    font-weight: 500;
  }
  section.column2 .mainColumn .cardList .cardEl a dl dd .about {
    font-size: 1.4rem;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite {
    display: flex;
    justify-content: flex-end;
    padding: 5px 11px;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite a {
    display: block;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg {
    cursor: pointer;
    position: relative;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg + .add, section.column2 .mainColumn .cardList .cardEl .favorite svg + span[id*="favorite_name_new"], section.column2 .mainColumn .cardList .cardEl .favorite svg + span {
    display: none;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg + .add + .list {
    display: none;
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg:active + .add, section.column2 .mainColumn .cardList .cardEl .favorite svg:active + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  section.column2 .mainColumn .cardList .cardEl .favorite svg.check:active + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  section.column2 .mainColumn .cardList .cardEl:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: .2s;
    transform: translate3d(0, 4px, 0);
  }
  section.column2 .mainColumn .searchResultsNumber span:first-child {
    font-size: 2.2rem;
    font-weight: 500;
  }
  section.column2 .mainColumn .listControl {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  section.column2 .mainColumn .listControl select {
    font-size: 1.3rem;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  section.column2 .mainColumn .listControl .listChange {
    display: flex;
  }
  section.column2 .mainColumn .listControl .listChange a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    margin-left: 5px;
  }
  section.column2 .mainColumn .listControl .listChange a:first-child {
    margin-left: 20px;
  }
  section.column2 .mainColumn .listControl .listChange a.cardTypeChange.active path {
    stroke: #16bea8;
  }
  section.column2 .mainColumn .listControl .listChange a.listTypeChange.active path {
    fill: #16bea8;
  }
  section.column2 .mainColumn .listControl .pager {
    display: flex;
  }
  section.column2 .mainColumn .listControl .pager a {
    display: none;
  }
  section.column2 .mainColumn .listControl .pager a.page-link {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  section.column2 .mainColumn .listControl .pager a.page-link span {
    background: none !important;
  }
  section.column2 .mainColumn .listControl .pager a.page-link span svg path {
    fill: #16bea8;
  }
  section.column2 .mainColumn .listControl .pager a:first-child {
    margin-left: 0;
  }
  section.column2 .mainColumn .listControl .pager a:active {
    background: #000;
  }
  section.column2 .mainColumn .listControl .pager a.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  section.column2 .mainColumn .listControl .pager > span:first-child {
    margin-right: 5px;
  }
  section.column2 .mainColumn .listControl .pager span {
    display: none;
  }
  section.column2 .mainColumn .listControl .pager span.prev, section.column2 .mainColumn .listControl .pager span.next {
    display: flex;
    background: #eee;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  section.column2 .mainColumn .listControl .pager span.prev svg path, section.column2 .mainColumn .listControl .pager span.next svg path {
    fill: #333;
  }
  section.column2 .mainColumn .listControl .pager span:first-child {
    margin-left: 0;
  }
  section.column2 .mainColumn .listControl .pager span.arrow {
    display: flex;
    background: #fff;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-right: 5px;
  }
  /*=================================================================*/
  /*	マッチング履歴(企業側) */
  /*=================================================================*/
  .cp_matching .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .cp_matching .listStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-bottom: 5px;
    display: inline-block;
  }
  .cp_matching .listStyle .resourceLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .cp_matching .listStyle .resourceLabel2 {
    margin: 13px 0;
  }
  .cp_matching .listStyle .resourceLabel2 dl {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
  .cp_matching .listStyle .resourceLabel2 dl dt {
    color: #16bea8;
    margin-bottom: 5px;
  }
  .cp_matching .listStyle .resourceLabel2 dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .cp_matching .listStyle .resourceLabel2 dl dd a:active {
    text-decoration: none;
  }
  .cp_matching .listStyle .resourceList > div:first-child {
    width: 100%;
  }
  .cp_matching .listStyle .resourceList .resourceIcon {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .cp_matching .listStyle .resourceList .resourceIcon img {
    display: block;
    width: 40px;
  }
  .cp_matching .listStyle .resourceList .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    line-height: 1.0em;
  }
  .cp_matching .listStyle .resourceList .favorite {
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
  .cp_matching .listStyle .resourceList .favorite a {
    display: block;
  }
  .cp_matching .listStyle .resourceList .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .cp_matching .listStyle .resourceList .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .cp_matching .listStyle .resourceList .favorite svg + .add, .cp_matching .listStyle .resourceList .favorite svg + span[id*="favorite_name_new"], .cp_matching .listStyle .resourceList .favorite svg + span {
    display: none;
  }
  .cp_matching .listStyle .resourceList .favorite svg + .add + .list {
    display: none;
  }
  .cp_matching .listStyle .resourceList .favorite svg:active + .add, .cp_matching .listStyle .resourceList .favorite svg:active + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .cp_matching .listStyle .resourceList .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .cp_matching .listStyle .resourceList .favorite svg.check:active + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .cp_matching .listStyle .stepBar {
    display: flex;
    position: relative;
    margin: 30px auto;
    text-align: center;
  }
  .cp_matching .listStyle .stepBar li {
    font-size: 1.4rem;
    list-style: none;
    position: relative;
    width: 33.333%;
  }
  .cp_matching .listStyle .stepBar li:after {
    background: #a6eae1;
    content: "";
    width: calc(100% - 30px);
    height: 6px;
    position: absolute;
    left: calc(-50% + 15px);
    top: 12px;
  }
  .cp_matching .listStyle .stepBar li:first-child:after {
    display: none;
  }
  .cp_matching .listStyle .stepBar li span {
    background: #a6eae1;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    width: 30px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  .cp_matching .listStyle .stepBar .visited:after {
    background: #ff7d26;
  }
  .cp_matching .listStyle .stepBar .visited span {
    background: #ff7d26;
  }
  /*=================================================================*/
  /*	マッチング履歴(人材側) */
  /*=================================================================*/
  .pe_matching .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .pe_matching .listStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-bottom: 5px;
    display: inline-block;
  }
  .pe_matching .listStyle .campanyLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .pe_matching .listStyle .campanyLabel1 dl dd .name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .pe_matching .listStyle .campanyLabel2 {
    margin: 13px 0;
  }
  .pe_matching .listStyle .campanyLabel2 dl {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
  .pe_matching .listStyle .campanyLabel2 dl dt {
    color: #16bea8;
    margin-bottom: 5px;
  }
  .pe_matching .listStyle .campanyLabel2 dl dd a {
    color: #16bea8;
    text-decoration: underline;
  }
  .pe_matching .listStyle .campanyLabel2 dl dd a:active {
    text-decoration: none;
  }
  .pe_matching .listStyle .campanyList > div:first-child {
    width: 100%;
  }
  .pe_matching .listStyle .campanyList .campanyIcon {
    margin-bottom: 20px;
  }
  .pe_matching .listStyle .campanyList .campanyIcon .campanyPhoto {
    width: 100%;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
  }
  .pe_matching .listStyle .campanyList .favorite {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-top: 10px;
  }
  .pe_matching .listStyle .campanyList .favorite div {
    color: #16bea8;
    font-size: 1.4rem;
    margin-right: 8px;
  }
  .pe_matching .listStyle .campanyList .favorite a {
    display: block;
  }
  .pe_matching .listStyle .campanyList .favorite svg {
    cursor: pointer;
    position: relative;
  }
  .pe_matching .listStyle .campanyList .favorite svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  .pe_matching .listStyle .campanyList .favorite svg + .add, .pe_matching .listStyle .campanyList .favorite svg + span[id*="favorite_name_new"], .pe_matching .listStyle .campanyList .favorite svg + span {
    display: none;
  }
  .pe_matching .listStyle .campanyList .favorite svg + .add + .list {
    display: none;
  }
  .pe_matching .listStyle .campanyList .favorite svg:active + .add, .pe_matching .listStyle .campanyList .favorite svg:active + span[id*="favorite_name_new"] {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .pe_matching .listStyle .campanyList .favorite svg.check path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .pe_matching .listStyle .campanyList .favorite svg.check:active + .add + .list {
    display: block;
    position: absolute;
    top: -18px;
    right: 15px;
    background: #61899a;
    font-size: 1.0rem;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    line-height: 1.0em;
    transition: .2s;
    white-space: nowrap;
    z-index: 100;
  }
  .pe_matching .listStyle .stepBar {
    display: flex;
    position: relative;
    margin: 30px auto;
    text-align: center;
  }
  .pe_matching .listStyle .stepBar li {
    font-size: 1.4rem;
    list-style: none;
    position: relative;
    width: 33.333%;
  }
  .pe_matching .listStyle .stepBar li:after {
    background: #a6eae1;
    content: "";
    width: calc(100% - 30px);
    height: 6px;
    position: absolute;
    left: calc(-50% + 15px);
    top: 12px;
  }
  .pe_matching .listStyle .stepBar li:first-child:after {
    display: none;
  }
  .pe_matching .listStyle .stepBar li span {
    background: #a6eae1;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    width: 30px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  .pe_matching .listStyle .stepBar .visited:after {
    background: #ff7d26;
  }
  .pe_matching .listStyle .stepBar .visited span {
    background: #ff7d26;
  }
  /*=================================================================*/
  /*	プロフィール(企業・人材でスタイル共通) */
  /*=================================================================*/
  .profile .headFlex > .control:first-child {
    margin-top: 0;
  }
  .profile .headFlex a {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    background: #ff7d26;
    color: #fff;
    padding: 5px 0;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #bf530a;
    transition: .15s;
    margin-bottom: 30px;
  }
  .profile .headFlex a:active {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .profile .headFlex a img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }
  .profile .secondHead {
    margin-top: 80px;
  }
  .profile .whiteBox1 h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .profile .whiteBox1 .scrollBox {
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 5px;
  }
  .profile .whiteBox1 .scrollBox + input + .checkbox {
    margin-bottom: 20px;
  }
  .profile .canvasWrap {
    position: relative;
  }
  .profile .canvasWrap .graphTxt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 30px;
  }
  .profile .canvasWrap .graphTxt .num {
    color: #16bea8;
    font-size: 5.0rem;
  }
  .profile .profLabel2 {
    margin: 0 0 20px;
  }
  .profile .profLabel2 dl {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .profile .profLabel2 dl dt {
    color: #16bea8;
    font-weight: 500;
    padding-bottom: 5px;
  }
  .profile .profLabel2 dl dd a {
    display: block;
    color: #16bea8;
    text-decoration: underline;
  }
  .profile .profLabel2 dl dd a:active {
    text-decoration: none;
  }
  .profile .profList.headBox > div {
    width: 100%;
  }
  .profile .profList.headBox > div > div {
    margin-bottom: 10px;
  }
  .profile .profList.headBox > div:first-child {
    width: 165px;
    margin-bottom: 20px;
  }
  .profile .profList.headBox .btnList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .profile .profList.headBox .btnList a {
    text-align: center;
    background: #16bea8;
    color: #fff;
    padding: 10px 0;
    width: calc(100% / 2 - 10px);
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    transition: .15s;
    margin-bottom: 10px;
  }
  .profile .profList.headBox .btnList a:active {
    box-shadow: 0px 1px 0px 0px #0b8e7d;
    transform: translate3d(0, 3px, 0);
    transition: .15s;
  }
  .profile .profList.headBox .btnList a svg {
    margin-left: 10px;
  }
  .profile .profList > div:first-child {
    width: 100%;
  }
  .profile .profList .profIcon .profPhoto {
    width: 100%;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    margin-bottom: 20px;
  }
  /*=================================================================*/
  /*	人材一覧 */
  /*=================================================================*/
  .peList a.favoriteBtn {
    display: flex;
    justify-content: center;
  }
  .peList a.favoriteBtn svg {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
  }
  .peList a.favoriteBtn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .peList a.favoriteBtn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .peList .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .peList .listStyle .resourceLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-bottom: 5px;
    display: inline-block;
  }
  .peList .listStyle .resourceLabel1 dl dd .red {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .peList .listStyle .resourceLabel2 {
    margin: 13px 0;
  }
  .peList .listStyle .resourceLabel2 dl {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
  .peList .listStyle .resourceLabel2 dl dt {
    color: #16bea8;
    margin-bottom: 5px;
  }
  .peList .listStyle .resourceLabel2 dl dd a {
    display: block;
    color: #16bea8;
    text-decoration: underline;
  }
  .peList .listStyle .resourceLabel2 dl dd a:active {
    text-decoration: none;
  }
  .peList .listStyle .resourceList > div:first-child {
    width: 100%;
  }
  .peList .listStyle .resourceList .resourceIcon {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
  }
  .peList .listStyle .resourceList .resourceIcon img {
    display: block;
    width: 40px;
    margin-right: 10px;
  }
  .peList .listStyle .resourceList .resourceIcon .status {
    font-size: 1.3rem;
    color: #16bea8;
    line-height: 1.0em;
  }
  /*=================================================================*/
  /*	求人一覧 */
  /*=================================================================*/
  .camList a.favoriteBtn {
    display: flex;
    justify-content: center;
  }
  .camList a.favoriteBtn svg {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
  }
  .camList a.favoriteBtn svg path.heart {
    transform: translate(0, 0);
    opacity: 0;
  }
  @keyframes checkAnime01 {
    0% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
  }
  .camList a.favoriteBtn.check svg path.heart {
    animation: checkAnime02 300ms forwards;
    opacity: 1;
  }
  @keyframes checkAnime02 {
    0% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    50% {
      transform-origin: center;
      transform: scale(0);
      background: none !important;
    }
    100% {
      transform-origin: center;
      transform: scale(1);
      background: none !important;
    }
  }
  .camList .listStyle .whiteBox1 {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .camList .listStyle .whiteBox1.ijuSupport {
    background: #feffd0;
  }
  .camList .listStyle .campanyLabel1 dl dt {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-bottom: 5px;
    display: inline-block;
  }
  .camList .listStyle .campanyLabel1 dl dd {
    font-size: 2.2rem;
    font-weight: 600;
    color: #27bea8;
  }
  .camList .listStyle .campanyLabel2 {
    margin: 13px 0;
  }
  .camList .listStyle .campanyLabel2 + .tag {
    margin-bottom: 10px;
  }
  .camList .listStyle .campanyLabel2 + .tag span {
    background: #2AA8CE;
    color: #fff;
    font-size: 1.3rem;
    padding: 5px 17px;
    border-radius: 20px;
    margin-right: 4px;
  }
  .camList .listStyle .campanyLabel2 dl {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #16bea8;
  }
  .camList .listStyle .campanyLabel2 dl dt {
    color: #16bea8;
    margin-bottom: 5px;
  }
  .camList .listStyle .campanyLabel2 dl dd a {
    display: block;
    color: #16bea8;
    text-decoration: underline;
  }
  .camList .listStyle .campanyLabel2 dl dd a:active {
    text-decoration: none;
  }
  .camList .listStyle .campanyList > div:first-child {
    width: 100%;
  }
  .camList .listStyle .campanyList .campanyIcon {
    width: 100%;
    height: 200px;
    background: #ccc url(../images/sec/logo_white.svg) no-repeat center;
    overflow: hidden;
    position: relative;
  }
  .camList .listStyle .campanyList .campanyIcon img {
    width: 110% !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .camList .listStyle .campanyList .campanyIcon + .support {
    background: #ff7d26;
    color: #fff;
    text-align: center;
    padding: 5px 0;
  }
  .camList .listStyle .campanyList + .btnAreaCenter {
    margin-top: 20px;
  }
  /*=================================================================*/
  /*	2カラム共通パーツ */
  /*=================================================================*/
  /*	ステータスフィルタリング
---------------------------------------------------------------*/
  .mainColumn .listFiltering {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .mainColumn .listFiltering input[type="radio"]:checked + label {
    background: #fff;
    color: #16bea8;
    cursor: auto;
  }
  .mainColumn .listFiltering label {
    background: #16bea8;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    transition: .2s;
    box-sizing: border-box;
    border: 1px solid #E8F6F4;
  }
  .mainColumn .listFiltering label:active {
    background: #fff;
    color: #16bea8;
    transition: .2s;
  }
  .mainColumn .listFiltering label:nth-child(2) {
    width: 100%;
  }
  .mainColumn .listFiltering label:nth-child(n+3) {
    width: 50%;
  }
  /*	サイドメニュー検索要素
---------------------------------------------------------------*/
  section.column2 .sideMenu.search dl dd {
    padding: 13px;
  }
  section.column2 .sideMenu.search dl dd .searchResult {
    text-align: center;
    margin-bottom: 15px;
  }
  section.column2 .sideMenu.search dl dd .searchResult .number {
    color: #ff7d26;
    font-size: 2.5rem;
    font-weight: 500;
  }
  section.column2 .sideMenu.search dl dd.noBoder {
    border-bottom: 0;
  }
  section.column2 .sideMenu.search a {
    background: url(../images/sec/external.svg) no-repeat center right 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  section.column2 .sideMenu.search a:active {
    background: #e8f6f4 url(../images/sec/external.svg) no-repeat center right 15px;
  }
  section.column2 .sideMenu.search a.btn {
    background: #16bea8;
    border: none;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }
  section.column2 .sideMenu.search a.btn.red {
    background: #ff7d26;
    box-shadow: 0px 4px 0px 0px #bf530a;
  }
  section.column2 .sideMenu.search a.btn.red:active {
    box-shadow: 0px 1px 0px 0px #bf530a;
    transform: translate3d(0, 3px, 0);
  }
  section.column2 .sideMenu.search input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 85%;
    box-sizing: border-box;
  }
  section.column2 .sideMenu.search input[type="text"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 100%;
    box-sizing: border-box;
  }
  section.column2 .sideMenu.search select {
    border: 1px solid #b7b7b7;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  section.column2 .sideMenu.search span {
    margin: 0 3px;
  }
  section.column2 .sideMenu.search p {
    margin: 3px 0;
  }
  section.column2 .sideMenu.search .btnAreaCenter:last-child {
    margin-top: 15px;
  }
  /*	サイドメニューFAQ要素
---------------------------------------------------------------*/
  section.column2 .sideMenu.search.faq select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 30px 10px 20px;
  }
  /*	検索ポップアップ要素
---------------------------------------------------------------*/
  div[id*="searchDetail"] {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 120vh;
    transition: .3s;
    z-index: 10001;
    margin: 0 -20px;
  }
  div[id*="searchDetail"] h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  div[id*="searchDetail"] h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  div[id*="searchDetail"] .popHeader {
    background: #16bea8;
    height: 40px;
    display: flex;
    justify-content: flex-end;
  }
  div[id*="searchDetail"] .popHeader .close {
    background: #ff7d26;
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    transition: .2s;
  }
  div[id*="searchDetail"] .popHeader .close:active {
    background: #000;
    transition: .2s;
  }
  div[id*="searchDetail"].display {
    top: 0;
    transition: .3s;
  }
  div[id*="searchDetail"] .whiteBox1 {
    padding: 30px;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    max-height: 330px;
    overflow-y: auto;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex label {
    width: calc(100% / 2 - 1.55em);
    margin-right: 0;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number input[type="number"] {
    background: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    width: 80%;
    box-sizing: border-box;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex .number span {
    margin-left: 2px;
  }
  div[id*="searchDetail"] .whiteBox1 .popFlex select {
    border: 1px solid #b7b7b7;
    padding: 5px 30px 5px 20px;
    border-radius: 3px;
    background: #fff url(../images/sec/selectarrow.svg) no-repeat center right 10px;
  }
  .popup, #save {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    bottom: -100vh;
    transition: .3s;
    z-index: 10001;
    margin: 0 -20px;
  }
  .popup h2, #save h2 {
    position: relative;
    padding: 3px 0 3px 17px;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .popup h2:before, #save h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .popup .popHeader, #save .popHeader {
    background: #16bea8;
    height: 40px;
    display: flex;
    justify-content: flex-end;
  }
  .popup .popHeader .close, #save .popHeader .close {
    background: #ff7d26;
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    transition: .2s;
  }
  .popup .popHeader .close:active, #save .popHeader .close:active {
    background: #000;
    transition: .2s;
  }
  .popup.display, #save.display {
    top: 0;
    transition: .3s;
  }
  .popup .whiteBox1, #save .whiteBox1 {
    padding: 30px;
  }
  .popup .whiteBox1 p, #save .whiteBox1 p {
    margin-bottom: 20px;
  }
  .popup .whiteBox1 .popFlex, #save .whiteBox1 .popFlex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    max-height: 330px;
    overflow-y: auto;
  }
  .popup .whiteBox1 .popFlex label, #save .whiteBox1 .popFlex label {
    width: calc(100% / 2 - 1.55em);
    margin-right: 0;
  }
  .popup input[type="text"], #save input[type="text"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
  }
  .popup.display, #save.display {
    top: 0;
    transition: .3s;
  }
  /*=================================================================*/
  /*	ステップ式入力フォーム */
  /*=================================================================*/
  /*	人材、企業切り替えボタン
---------------------------------------------------------------*/
  .modeChange {
    display: flex;
    margin: 0 auto;
    width: 100%;
  }
  .modeChange input[type="radio"]:checked + label {
    background: #fff;
    color: #333;
    cursor: auto;
  }
  .modeChange label {
    width: 100%;
    background: #e6e6e6;
    color: #b3b3b3;
    text-align: center;
    padding: 10px 0;
    transition: .2s;
  }
  .modeChange label:active {
    background: #fff;
    color: #333;
    transition: .2s;
  }
  /*=================================================================*/
  /*	ツールチップ */
  /*=================================================================*/
  .toolTip {
    position: relative;
    display: block;
    margin-left: 10px;
  }
  .toolTip img {
    display: block;
    width: 16px;
    height: 16px;
  }
  .toolTipTxt {
    background: #61899a;
    font-size: 1.3rem;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    position: absolute;
    bottom: 22px;
    left: -834%;
    right: 0;
    margin: auto;
    width: 300px;
  }
  .toolTipTxt.none {
    display: none;
  }
  /*=================================================================*/
  /*	STEP用 */
  /*=================================================================*/
  section.column1Form.stepForm input[type="text"].shortTxt {
    width: 80px !important;
    display: inline-block;
  }
  section.column1Form .formDefault .checkBox label.w100 {
    width: 100%;
  }
  section.column1Form .formDefault .checkBox label.wAuto {
    width: auto !important;
    margin-right: 16px;
  }
  /*=================================================================*/
  /*	FAQ詳細 */
  /*=================================================================*/
  .q_ttl {
    display: flex;
  }
  .q_ttl .q_icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    background-color: #2AA8CE;
    margin-right: 8px;
    margin-top: 4px;
  }
  .q_ttl .q_txt {
    flex-basis: calc(100% - 40px - 8px);
    font-size: 1.8rem;
    font-weight: 700;
  }
  .q_ttl .q_txt span.q_cat {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 400;
    display: block;
    line-height: 120%;
  }
  .faq_txtArea {
    position: relative;
    padding: 10px 0 0 10px;
  }
  .faq_txtArea .a_icon {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    background-color: #ff4419;
  }
  /*=================================================================*/
  /*	移住支援金について */
  /*=================================================================*/
  .txtInner {
    padding: 10px;
    background-color: #f9f9f9;
    margin: 10px 0;
  }
  dl.ijyuDescri dt {
    font-size: 1.8rem;
    font-weight: 700;
  }
  dl.ijyuDescri dd {
    margin-bottom: 10px;
  }
  dl.ijyuDescri ul {
    padding-left: 22px;
    margin: 10px 0;
  }
  dl.ijyuDescri ul li {
    list-style-type: decimal !important;
    margin-bottom: 4px;
  }
  dl.ijyuDescri ul li dl {
    display: flex;
  }
  dl.ijyuDescri ul li dl dt {
    font-weight: 500;
    margin-right: 10px;
  }
  dl.ijyuDescri .ijyuNote {
    font-size: 1.4rem;
    color: #293d86;
  }
  dl.ijyuDescri .ijyuNote dl {
    display: flex;
  }
  dl.ijyuDescri .ijyuNote dl dt {
    font-size: 1.4rem;
    font-weight: normal;
    flex-basis: 60px;
  }
  dl.ijyuDescri .ijyuNote dl dd {
    flex-basis: calc(100% - 60px);
  }
  dl.ijyuDescri .ijyuNote dl dd ul {
    padding-left: 10px;
  }
  /*=================================================================*/
  /*	関係団体リンク */
  /*=================================================================*/
  .linkList {
    width: 100% !important;
  }
  .linkList dl dt {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    padding-left: 12px;
    margin-bottom: 10px;
  }
  .linkList dl dt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  .linkList dl dd {
    margin-bottom: 30px;
  }
  .linkList dl dd a {
    font-size: 1.6rem;
    position: relative;
    padding-left: 22px;
    margin-left: 20px;
  }
  .linkList dl dd a:before {
    content: url(../images/sec/external.svg);
    width: 22px;
    height: auto;
    position: absolute;
    top: -2px;
    left: 0;
  }
  /*=================================================================*/
  /*	注意事項 */
  /*=================================================================*/
  h3.pages {
    font-size: 1.8rem !important;
    position: relative;
    padding-left: 12px;
  }
  h3.pages:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #ff7d26;
  }
  dl.noticeDl dt {
    font-size: 2.0rem;
    font-weight: 500;
    position: relative;
    padding-left: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  dl.noticeDl dt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 5px;
    height: 100%;
    background: #16bea8;
  }
  dl.noticeDl dd ul {
    padding-left: 20px;
  }
  dl.noticeDl dd ul li {
    list-style-type: decimal;
  }
  /*=================================================================*/
  /*	相談窓口 */
  /*=================================================================*/
  ul.guideList {
    padding-left: 20px;
    margin: 20px 0;
  }
  ul.guideList li {
    list-style-type: disc;
  }
  .mapH4 {
    background: #16bea8;
    color: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .mapBox {
    margin-bottom: 30px;
  }
  .mapLabel2 {
    display: table;
    width: 100%;
    margin-top: 20px;
  }
  .mapLabel2 dl {
    display: table-row;
  }
  .mapLabel2 dl dt {
    color: #16bea8;
    width: 70px;
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel2 dl dd {
    display: table-cell;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel3 {
    display: table;
    width: 100%;
    margin-bottom: 30px;
  }
  .mapLabel3 dl dt {
    color: #16bea8;
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
    padding: 10px 10px 10px 0;
  }
  .mapLabel3 dl dd {
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .mapLabel3 dl dd ul {
    padding-left: 16px;
  }
  .mapLabel3 dl dd ul li {
    list-style-type: disc !important;
  }
  /*=================================================================*/
  /*	WAKU WAKU WORK! 宮崎 */
  /*=================================================================*/
  dl.flexDl {
    display: flex;
    margin-bottom: 10px;
  }
  dl.flexDl dt {
    width: 46px;
    margin-right: 10px;
  }
  dl.flexDl dd {
    width: calc(100% - 46px);
  }
  ul.btFlex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  ul.btFlex li {
    width: 49%;
  }
  ul.btFlex li a {
    font-size: 1.4rem;
    width: 100%;
    height: auto;
    display: block;
    color: #fff;
    background: #16bea8;
    box-shadow: 0px 4px 0px 0px #0b8e7d;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 16px;
  }
  ul.btFlex li:nth-child(even) a {
    margin-left: 0;
  }
  .coList {
    margin-bottom: 20px;
  }
  .coList ul {
    width: 100%;
    padding-left: 10px;
  }
  .coList ul li a {
    position: relative;
  }
  .coList ul li a:before {
    position: absolute;
    content: url(../images/sec/sidemenuarrow.svg);
    width: 15px;
    height: 14px;
    top: -4px;
    left: -12px;
  }
  #form input[type="hidden"] + .btnFlex .btnAreaCenter {
    margin-top: 30px;
  }
  /*=================================================================*/
  /*	パスワード再発行 */
  /*=================================================================*/
  section.column1Form .login_wide_area {
    width: 100%;
    padding: 30px 0;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
  }
  section.column1Form .login_wide_area_flex {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
  }
  section.column1Form .login_wide_area input[type="text"],
  section.column1Form .login_wide_area input[type="password"] {
    background: #fff;
    display: block;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #b7b7b7;
  }
  section.column1Form .login_wide_area input[type="text"] {
    margin-bottom: 20px;
  }
  section.column1Form .login_wide_area div.form_area {
    padding: 0 30px;
  }
  section.column1Form .login_wide_area .label_message {
    margin-bottom: 20px;
  }
  section.column1Form .login_wide_area div.remake {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  section.column1Form .login_wide_area div.error {
    font-size: 1.4rem;
    color: #e80b0b;
    font-weight: 600;
    margin-top: 20px;
  }
  section.column1Form .login_wide_area a {
    color: #16bea8;
    text-decoration: underline;
  }
  section.column1Form .login_wide_area a:hover {
    text-decoration: none;
  }
  section.column2 .mainColumn form#form + .btnAreaCenter {
    margin: 0 auto 40px;
  }
  input[type="button"].blue, .btnAreaCenter input[type="submit"].blue, .btnAreaCenter a.blue {
    background: #49a7d0;
    color: #fff !important;
    -webkit-box-shadow: 0px 4px 0px 0px #447c96;
    box-shadow: 0px 4px 0px 0px #447c96;
  }
  input[type="button"].blue:active, .btnAreaCenter input[type="submit"].blue:active, .btnAreaCenter a.blue:active {
    box-shadow: 0px 1px 0px 0px #447c96;
  }
  /*=================================================================*/
  /*	datepicker */
  /*=================================================================*/
  img.ui-datepicker-trigger {
    width: 30px;
    height: auto;
    margin-bottom: 20px;
    margin-top: -10px;
  }
  /*=================================================================*/
  /*	ふるさと宮崎人材バンクとは？！ */
  /*=================================================================*/
  .aboutlist .listbox {
    width: 100%;
    box-sizing: border-box;
    padding: 100px 0 24px;
  }
  .aboutlist .list01 {
    background: url(../images/sec/img_aboutlist01.png) no-repeat;
    background-size: 50%;
  }
  .aboutlist .list02 {
    background: url(../images/sec/img_aboutlist02.png) no-repeat;
    background-size: 50%;
  }
  .aboutlist .list03 {
    background: url(../images/sec/img_aboutlist03.png) no-repeat;
    background-size: 50%;
  }
  .aboutlist .list04 {
    background: url(../images/sec/img_aboutlist04.png) no-repeat;
    background-size: 50%;
  }
  .aboutlist .list05 {
    background: url(../images/sec/img_aboutlist05.png) no-repeat;
    background-size: 50%;
  }
  .aboutlist .listbox .box_underline {
    border-bottom: 5px solid #c3e2de;
  }
  .aboutlist .list_dots {
    text-align: center;
    padding: 25px 0 0;
  }
  .aboutlist .list_dots img {
    width: 20%;
  }
  .aboutlist .listbox:last-child .list_dots {
    display: none;
  }
  .aboutlist .caution {
    font-size: 1.2rem;
    line-height: 140%;
    margin: 10px 0 0;
  }
  .txtarea .tag {
    display: flex;
  }
  .txtarea .tag > div {
    color: #fff;
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 1.6rem;
    margin-right: 1px;
    border-radius: 8px 8px 0 0;
  }
  .txtarea .tag .tag_kyu {
    background: #16bea8;
  }
  .txtarea .tag .tag_jigyou {
    background: #ff7d26;
  }
  .txtarea .txtbox {
    width: 100%;
    background: #fffbe0;
    display: table;
    padding: 16px 8px;
    box-sizing: border-box;
  }
  .txtarea .txtbox p {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .column1detail .whiteBox1 h3.about_h3 {
    font-size: 2.0rem;
    font-weight: bold;
    padding-left: 10px;
    position: relative;
  }
  .column1detail .whiteBox1 h3.about_h3:before {
    content: "";
    display: block;
    width: 4px;
    height: 31px;
    background: #ff7d26;
    position: absolute;
    top: -4px;
    left: 0;
    border-radius: 2px;
  }
  .column1detail .whiteBox1 .flexBox .about_photo {
    width: 100% !important;
    margin-top: 20px !important;
  }
  .column1detail .whiteBox1 .flexBox .about_photo img {
    width: 100%;
    height: auto;
  }
  .column1detail .whiteBox1 .flexBox p b img {
    vertical-align: text-top;
    margin-right: 10px;
    width: 26px;
  }
  .column1detail .whiteBox1 .flexBox p b.line_y {
    border-bottom: 4px solid #fff7c0;
  }
  
  /*=================================================================*/
  /*	マッチング　メッセージ機能 */
  /*=================================================================*/
  .mainColumn .messageBox {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 20px;
    max-height: 500px;
    overflow: auto;
    border: solid 1px #b7b7b7;
    display: flex;
    flex-direction: column;
  }
  .mainColumn .messageBox p.sendAt {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
  }
  .mainColumn .messageBox .otherMessageContent {
    align-self: flex-start;
    margin-right: auto;
    margin-bottom: 20px;
  }
  
  .mainColumn .messageBox .otherMessageContent .profileIcon {
    float: left;
    margin-right: -20px;
    width: 40px;
  }
  .mainColumn .messageBox .otherMessageContent .sendAt {
    margin-left: 60px;
  }
  .mainColumn .messageBox .otherMessageContent .message {
    text-align: left;
    display: inline-block;
    position: relative; 
    margin: 0 0 0 40px;
    padding: 16px;
    border-radius: 12px;
    background: #ffffff;
  }
  .mainColumn .messageBox .otherMessageContent:last-child {
    margin-bottom: 0;
  }
  
  .mainColumn .messageBox .myMessageContent {
    align-self: flex-end;
    margin-left: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  .mainColumn .messageBox .myMessageContent .sendAt {
    align-self: flex-end;
  }
  .mainColumn .messageBox .myMessageContent .message {
    display: inline-block;
    position: relative;
    text-align: left;
    padding: 16px;
    border-radius: 12px;
    background: #dbe4fd;
  }
  .mainColumn .messageBox .myMessageContent:last-child {
    margin-bottom: 0;
  }
  
  .mainColumn .messageForm textarea {
    background: #ffffff;
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    margin-bottom: 20px;
    border: 1px solid #b7b7b7;
    box-sizing: border-box;
  }
  /*<end>============================================================*/
}
